You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: clients/google-api-services-developerconnect/v1/2.0.0/com/google/api/services/developerconnect/v1/DeveloperConnect.java
this.accountConnector = com.google.api.client.util.Preconditions.checkNotNull(accountConnector, "Required parameter accountConnector must be specified.");
Copy file name to clipboardExpand all lines: clients/google-api-services-developerconnect/v1/2.0.0/com/google/api/services/developerconnect/v1/model/AccountConnector.java
+48Lines changed: 48 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -46,6 +46,13 @@ public final class AccountConnector extends com.google.api.client.json.GenericJs
46
46
@com.google.api.client.util.Key
47
47
privateStringcreateTime;
48
48
49
+
/**
50
+
* Custom OAuth config.
51
+
* The value may be {@code null}.
52
+
*/
53
+
@com.google.api.client.util.Key
54
+
privateCustomOAuthConfigcustomOauthConfig;
55
+
49
56
/**
50
57
* Optional. This checksum is computed by the server based on the value of other fields, and may
51
58
* be sent on update and delete requests to ensure the client has an up-to-date value before
@@ -84,6 +91,13 @@ public final class AccountConnector extends com.google.api.client.json.GenericJs
84
91
@com.google.api.client.util.Key
85
92
privateProviderOAuthConfigproviderOauthConfig;
86
93
94
+
/**
95
+
* Optional. Configuration for the http and git proxy features.
96
+
* The value may be {@code null}.
97
+
*/
98
+
@com.google.api.client.util.Key
99
+
privateProxyConfigproxyConfig;
100
+
87
101
/**
88
102
* Output only. The timestamp when the accountConnector was updated.
89
103
* The value may be {@code null}.
@@ -125,6 +139,23 @@ public AccountConnector setCreateTime(String createTime) {
125
139
returnthis;
126
140
}
127
141
142
+
/**
143
+
* Custom OAuth config.
144
+
* @return value or {@code null} for none
145
+
*/
146
+
publicCustomOAuthConfiggetCustomOauthConfig() {
147
+
returncustomOauthConfig;
148
+
}
149
+
150
+
/**
151
+
* Custom OAuth config.
152
+
* @param customOauthConfig customOauthConfig or {@code null} for none
0 commit comments