Skip to content

Commit 7a50be0

Browse files
1 parent 862eddf commit 7a50be0

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

42 files changed

+3834
-271
lines changed

clients/google-api-services-connectors/v1/2.0.0/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
2222
<dependency>
2323
<groupId>com.google.apis</groupId>
2424
<artifactId>google-api-services-connectors</artifactId>
25-
<version>v1-rev20250423-2.0.0</version>
25+
<version>v1-rev20250507-2.0.0</version>
2626
</dependency>
2727
</dependencies>
2828
</project>
@@ -35,7 +35,7 @@ repositories {
3535
mavenCentral()
3636
}
3737
dependencies {
38-
implementation 'com.google.apis:google-api-services-connectors:v1-rev20250423-2.0.0'
38+
implementation 'com.google.apis:google-api-services-connectors:v1-rev20250507-2.0.0'
3939
}
4040
```
4141

clients/google-api-services-connectors/v1/2.0.0/com/google/api/services/connectors/v1/Connectors.java

Lines changed: 1051 additions & 136 deletions
Large diffs are not rendered by default.

clients/google-api-services-connectors/v1/2.0.0/com/google/api/services/connectors/v1/model/AuthConfig.java

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -30,21 +30,21 @@
3030
public final class AuthConfig extends com.google.api.client.json.GenericJson {
3131

3232
/**
33-
* List containing additional auth configs.
33+
* Optional. List containing additional auth configs.
3434
* The value may be {@code null}.
3535
*/
3636
@com.google.api.client.util.Key
3737
private java.util.List<ConfigVariable> additionalVariables;
3838

3939
/**
40-
* Identifier key for auth config
40+
* Optional. Identifier key for auth config
4141
* The value may be {@code null}.
4242
*/
4343
@com.google.api.client.util.Key
4444
private java.lang.String authKey;
4545

4646
/**
47-
* The type of authentication configured.
47+
* Optional. The type of authentication configured.
4848
* The value may be {@code null}.
4949
*/
5050
@com.google.api.client.util.Key
@@ -93,15 +93,15 @@ public final class AuthConfig extends com.google.api.client.json.GenericJson {
9393
private UserPassword userPassword;
9494

9595
/**
96-
* List containing additional auth configs.
96+
* Optional. List containing additional auth configs.
9797
* @return value or {@code null} for none
9898
*/
9999
public java.util.List<ConfigVariable> getAdditionalVariables() {
100100
return additionalVariables;
101101
}
102102

103103
/**
104-
* List containing additional auth configs.
104+
* Optional. List containing additional auth configs.
105105
* @param additionalVariables additionalVariables or {@code null} for none
106106
*/
107107
public AuthConfig setAdditionalVariables(java.util.List<ConfigVariable> additionalVariables) {
@@ -110,15 +110,15 @@ public AuthConfig setAdditionalVariables(java.util.List<ConfigVariable> addition
110110
}
111111

112112
/**
113-
* Identifier key for auth config
113+
* Optional. Identifier key for auth config
114114
* @return value or {@code null} for none
115115
*/
116116
public java.lang.String getAuthKey() {
117117
return authKey;
118118
}
119119

120120
/**
121-
* Identifier key for auth config
121+
* Optional. Identifier key for auth config
122122
* @param authKey authKey or {@code null} for none
123123
*/
124124
public AuthConfig setAuthKey(java.lang.String authKey) {
@@ -127,15 +127,15 @@ public AuthConfig setAuthKey(java.lang.String authKey) {
127127
}
128128

129129
/**
130-
* The type of authentication configured.
130+
* Optional. The type of authentication configured.
131131
* @return value or {@code null} for none
132132
*/
133133
public java.lang.String getAuthType() {
134134
return authType;
135135
}
136136

137137
/**
138-
* The type of authentication configured.
138+
* Optional. The type of authentication configured.
139139
* @param authType authType or {@code null} for none
140140
*/
141141
public AuthConfig setAuthType(java.lang.String authType) {

clients/google-api-services-connectors/v1/2.0.0/com/google/api/services/connectors/v1/model/ConfigVariable.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ public final class ConfigVariable extends com.google.api.client.json.GenericJson
5151
private java.lang.Long intValue;
5252

5353
/**
54-
* Key of the config variable.
54+
* Optional. Key of the config variable.
5555
* The value may be {@code null}.
5656
*/
5757
@com.google.api.client.util.Key
@@ -123,15 +123,15 @@ public ConfigVariable setIntValue(java.lang.Long intValue) {
123123
}
124124

125125
/**
126-
* Key of the config variable.
126+
* Optional. Key of the config variable.
127127
* @return value or {@code null} for none
128128
*/
129129
public java.lang.String getKey() {
130130
return key;
131131
}
132132

133133
/**
134-
* Key of the config variable.
134+
* Optional. Key of the config variable.
135135
* @param key key or {@code null} for none
136136
*/
137137
public ConfigVariable setKey(java.lang.String key) {

clients/google-api-services-connectors/v1/2.0.0/com/google/api/services/connectors/v1/model/Connection.java

Lines changed: 60 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -135,6 +135,15 @@ public final class Connection extends com.google.api.client.json.GenericJson {
135135
@com.google.api.client.util.Key
136136
private java.lang.String envoyImageLocation;
137137

138+
/**
139+
* Optional. Additional Oauth2.0 Auth config for EUA. If the connection is configured using non-
140+
* OAuth authentication but OAuth needs to be used for EUA, this field can be populated with the
141+
* OAuth config. This should be a OAuth2AuthCodeFlow Auth type only.
142+
* The value may be {@code null}.
143+
*/
144+
@com.google.api.client.util.Key
145+
private AuthConfig euaOauthAuthConfig;
146+
138147
/**
139148
* Optional. Eventing config of a connection
140149
* The value may be {@code null}.
@@ -156,6 +165,15 @@ public final class Connection extends com.google.api.client.json.GenericJson {
156165
@com.google.api.client.util.Key
157166
private EventingRuntimeData eventingRuntimeData;
158167

168+
/**
169+
* Optional. Fallback on admin credentials for the connection. If this both auth_override_enabled
170+
* and fallback_on_admin_credentials are set to true, the connection will use the admin
171+
* credentials if the dynamic auth header is not present during auth override.
172+
* The value may be {@code null}.
173+
*/
174+
@com.google.api.client.util.Key
175+
private java.lang.Boolean fallbackOnAdminCredentials;
176+
159177
/**
160178
* Output only. The name of the Hostname of the Service Directory service with TLS.
161179
* The value may be {@code null}.
@@ -519,6 +537,27 @@ public Connection setEnvoyImageLocation(java.lang.String envoyImageLocation) {
519537
return this;
520538
}
521539

540+
/**
541+
* Optional. Additional Oauth2.0 Auth config for EUA. If the connection is configured using non-
542+
* OAuth authentication but OAuth needs to be used for EUA, this field can be populated with the
543+
* OAuth config. This should be a OAuth2AuthCodeFlow Auth type only.
544+
* @return value or {@code null} for none
545+
*/
546+
public AuthConfig getEuaOauthAuthConfig() {
547+
return euaOauthAuthConfig;
548+
}
549+
550+
/**
551+
* Optional. Additional Oauth2.0 Auth config for EUA. If the connection is configured using non-
552+
* OAuth authentication but OAuth needs to be used for EUA, this field can be populated with the
553+
* OAuth config. This should be a OAuth2AuthCodeFlow Auth type only.
554+
* @param euaOauthAuthConfig euaOauthAuthConfig or {@code null} for none
555+
*/
556+
public Connection setEuaOauthAuthConfig(AuthConfig euaOauthAuthConfig) {
557+
this.euaOauthAuthConfig = euaOauthAuthConfig;
558+
return this;
559+
}
560+
522561
/**
523562
* Optional. Eventing config of a connection
524563
* @return value or {@code null} for none
@@ -570,6 +609,27 @@ public Connection setEventingRuntimeData(EventingRuntimeData eventingRuntimeData
570609
return this;
571610
}
572611

612+
/**
613+
* Optional. Fallback on admin credentials for the connection. If this both auth_override_enabled
614+
* and fallback_on_admin_credentials are set to true, the connection will use the admin
615+
* credentials if the dynamic auth header is not present during auth override.
616+
* @return value or {@code null} for none
617+
*/
618+
public java.lang.Boolean getFallbackOnAdminCredentials() {
619+
return fallbackOnAdminCredentials;
620+
}
621+
622+
/**
623+
* Optional. Fallback on admin credentials for the connection. If this both auth_override_enabled
624+
* and fallback_on_admin_credentials are set to true, the connection will use the admin
625+
* credentials if the dynamic auth header is not present during auth override.
626+
* @param fallbackOnAdminCredentials fallbackOnAdminCredentials or {@code null} for none
627+
*/
628+
public Connection setFallbackOnAdminCredentials(java.lang.Boolean fallbackOnAdminCredentials) {
629+
this.fallbackOnAdminCredentials = fallbackOnAdminCredentials;
630+
return this;
631+
}
632+
573633
/**
574634
* Output only. The name of the Hostname of the Service Directory service with TLS.
575635
* @return value or {@code null} for none

clients/google-api-services-connectors/v1/2.0.0/com/google/api/services/connectors/v1/model/ConnectorInfraConfig.java

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -93,6 +93,13 @@ public final class ConnectorInfraConfig extends com.google.api.client.json.Gener
9393
@com.google.api.client.util.Key
9494
private java.lang.Boolean migrateTls;
9595

96+
/**
97+
* Indicate whether connector is being migrated to use direct VPC egress.
98+
* The value may be {@code null}.
99+
*/
100+
@com.google.api.client.util.Key
101+
private java.lang.String networkEgressMode;
102+
96103
/**
97104
* Indicate whether cloud spanner is required for connector job.
98105
* The value may be {@code null}.
@@ -288,6 +295,23 @@ public ConnectorInfraConfig setMigrateTls(java.lang.Boolean migrateTls) {
288295
return this;
289296
}
290297

298+
/**
299+
* Indicate whether connector is being migrated to use direct VPC egress.
300+
* @return value or {@code null} for none
301+
*/
302+
public java.lang.String getNetworkEgressMode() {
303+
return networkEgressMode;
304+
}
305+
306+
/**
307+
* Indicate whether connector is being migrated to use direct VPC egress.
308+
* @param networkEgressMode networkEgressMode or {@code null} for none
309+
*/
310+
public ConnectorInfraConfig setNetworkEgressMode(java.lang.String networkEgressMode) {
311+
this.networkEgressMode = networkEgressMode;
312+
return this;
313+
}
314+
291315
/**
292316
* Indicate whether cloud spanner is required for connector job.
293317
* @return value or {@code null} for none

clients/google-api-services-connectors/v1/2.0.0/com/google/api/services/connectors/v1/model/ConnectorVersion.java

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -142,6 +142,13 @@ public final class ConnectorVersion extends com.google.api.client.json.GenericJs
142142
@com.google.api.client.util.Key
143143
private java.lang.String name;
144144

145+
/**
146+
* Optional. The priority entity types for the connector version.
147+
* The value may be {@code null}.
148+
*/
149+
@com.google.api.client.util.Key
150+
private java.util.List<PriorityEntityType> priorityEntityTypes;
151+
145152
/**
146153
* Output only. ReleaseVersion of the connector, for example: "1.0.1-alpha".
147154
* The value may be {@code null}.
@@ -456,6 +463,23 @@ public ConnectorVersion setName(java.lang.String name) {
456463
return this;
457464
}
458465

466+
/**
467+
* Optional. The priority entity types for the connector version.
468+
* @return value or {@code null} for none
469+
*/
470+
public java.util.List<PriorityEntityType> getPriorityEntityTypes() {
471+
return priorityEntityTypes;
472+
}
473+
474+
/**
475+
* Optional. The priority entity types for the connector version.
476+
* @param priorityEntityTypes priorityEntityTypes or {@code null} for none
477+
*/
478+
public ConnectorVersion setPriorityEntityTypes(java.util.List<PriorityEntityType> priorityEntityTypes) {
479+
this.priorityEntityTypes = priorityEntityTypes;
480+
return this;
481+
}
482+
459483
/**
460484
* Output only. ReleaseVersion of the connector, for example: "1.0.1-alpha".
461485
* @return value or {@code null} for none

clients/google-api-services-connectors/v1/2.0.0/com/google/api/services/connectors/v1/model/ConnectorsLogConfig.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
public final class ConnectorsLogConfig extends com.google.api.client.json.GenericJson {
3131

3232
/**
33-
* Enabled represents whether logging is enabled or not for a connection.
33+
* Optional. Enabled represents whether logging is enabled or not for a connection.
3434
* The value may be {@code null}.
3535
*/
3636
@com.google.api.client.util.Key
@@ -44,15 +44,15 @@ public final class ConnectorsLogConfig extends com.google.api.client.json.Generi
4444
private java.lang.String level;
4545

4646
/**
47-
* Enabled represents whether logging is enabled or not for a connection.
47+
* Optional. Enabled represents whether logging is enabled or not for a connection.
4848
* @return value or {@code null} for none
4949
*/
5050
public java.lang.Boolean getEnabled() {
5151
return enabled;
5252
}
5353

5454
/**
55-
* Enabled represents whether logging is enabled or not for a connection.
55+
* Optional. Enabled represents whether logging is enabled or not for a connection.
5656
* @param enabled enabled or {@code null} for none
5757
*/
5858
public ConnectorsLogConfig setEnabled(java.lang.Boolean enabled) {

0 commit comments

Comments
 (0)