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
+24Lines changed: 24 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -44,6 +44,13 @@ public final class AuthorizationCodeLink extends com.google.api.client.json.Gene
44
44
@com.google.api.client.util.Key
45
45
privatejava.lang.BooleanenablePkce;
46
46
47
+
/**
48
+
* Optional. Omit query params from the redirect URI.
49
+
* The value may be {@code null}.
50
+
*/
51
+
@com.google.api.client.util.Key
52
+
privatejava.lang.StringomitQueryParams;
53
+
47
54
/**
48
55
* The scopes for which the user will authorize Google Cloud Connectors on the connector data
49
56
* source.
@@ -93,6 +100,23 @@ public AuthorizationCodeLink setEnablePkce(java.lang.Boolean enablePkce) {
93
100
returnthis;
94
101
}
95
102
103
+
/**
104
+
* Optional. Omit query params from the redirect URI.
105
+
* @return value or {@code null} for none
106
+
*/
107
+
publicjava.lang.StringgetOmitQueryParams() {
108
+
returnomitQueryParams;
109
+
}
110
+
111
+
/**
112
+
* Optional. Omit query params from the redirect URI.
113
+
* @param omitQueryParams omitQueryParams or {@code null} for none
0 commit comments