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-connectors/v1/2.0.0/com/google/api/services/connectors/v1/model/AuthorizationCodeLink.java
+27Lines changed: 27 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -37,6 +37,14 @@ public final class AuthorizationCodeLink extends com.google.api.client.json.Gene
37
37
@com.google.api.client.util.Key
38
38
privatejava.lang.StringclientId;
39
39
40
+
/**
41
+
* Optional. The client secret assigned to the Google Cloud Connectors OAuth app for the connector
42
+
* data source.
43
+
* The value may be {@code null}.
44
+
*/
45
+
@com.google.api.client.util.Key
46
+
privateSecretclientSecret;
47
+
40
48
/**
41
49
* Whether to enable PKCE for the auth code flow.
42
50
* The value may be {@code null}.
@@ -83,6 +91,25 @@ public AuthorizationCodeLink setClientId(java.lang.String clientId) {
83
91
returnthis;
84
92
}
85
93
94
+
/**
95
+
* Optional. The client secret assigned to the Google Cloud Connectors OAuth app for the connector
96
+
* data source.
97
+
* @return value or {@code null} for none
98
+
*/
99
+
publicSecretgetClientSecret() {
100
+
returnclientSecret;
101
+
}
102
+
103
+
/**
104
+
* Optional. The client secret assigned to the Google Cloud Connectors OAuth app for the connector
105
+
* data source.
106
+
* @param clientSecret clientSecret or {@code null} for none
0 commit comments