Skip to content

Commit 5bb7563

Browse files
1 parent cb09b60 commit 5bb7563

File tree

4 files changed

+34
-7
lines changed

4 files changed

+34
-7
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-rev20250521-2.0.0</version>
25+
<version>v1-rev20250604-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-rev20250521-2.0.0'
38+
implementation 'com.google.apis:google-api-services-connectors:v1-rev20250604-2.0.0'
3939
}
4040
```
4141

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

Lines changed: 28 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
package com.google.api.services.connectors.v1.model;
1818

1919
/**
20-
* Eventing Configuration of a connection next: 18
20+
* Eventing Configuration of a connection next: 19
2121
*
2222
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
2323
* transmitted over HTTP when working with the Connectors API. For a detailed explanation see:
@@ -85,6 +85,14 @@ public final class EventingConfig extends com.google.api.client.json.GenericJson
8585
@com.google.api.client.util.Key
8686
private AuthConfig listenerAuthConfig;
8787

88+
/**
89+
* Optional. List of projects to be allowlisted for the service attachment created in the tenant
90+
* project for eventing ingress.
91+
* The value may be {@code null}.
92+
*/
93+
@com.google.api.client.util.Key
94+
private java.util.List<java.lang.String> privateConnectivityAllowlistedProjects;
95+
8896
/**
8997
* Optional. Private Connectivity Enabled.
9098
* The value may be {@code null}.
@@ -234,6 +242,25 @@ public EventingConfig setListenerAuthConfig(AuthConfig listenerAuthConfig) {
234242
return this;
235243
}
236244

245+
/**
246+
* Optional. List of projects to be allowlisted for the service attachment created in the tenant
247+
* project for eventing ingress.
248+
* @return value or {@code null} for none
249+
*/
250+
public java.util.List<java.lang.String> getPrivateConnectivityAllowlistedProjects() {
251+
return privateConnectivityAllowlistedProjects;
252+
}
253+
254+
/**
255+
* Optional. List of projects to be allowlisted for the service attachment created in the tenant
256+
* project for eventing ingress.
257+
* @param privateConnectivityAllowlistedProjects privateConnectivityAllowlistedProjects or {@code null} for none
258+
*/
259+
public EventingConfig setPrivateConnectivityAllowlistedProjects(java.util.List<java.lang.String> privateConnectivityAllowlistedProjects) {
260+
this.privateConnectivityAllowlistedProjects = privateConnectivityAllowlistedProjects;
261+
return this;
262+
}
263+
237264
/**
238265
* Optional. Private Connectivity Enabled.
239266
* @return value or {@code null} for none

clients/google-api-services-connectors/v1/2.0.0/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88

99
<groupId>com.google.apis</groupId>
1010
<artifactId>google-api-services-connectors</artifactId>
11-
<version>v1-rev20250521-2.0.0</version>
12-
<name>Connectors API v1-rev20250521-2.0.0</name>
11+
<version>v1-rev20250604-2.0.0</version>
12+
<name>Connectors API v1-rev20250604-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

clients/google-api-services-connectors/v1/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-rev20250521-2.0.0</version>
25+
<version>v1-rev20250604-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-rev20250521-2.0.0'
38+
implementation 'com.google.apis:google-api-services-connectors:v1-rev20250604-2.0.0'
3939
}
4040
```
4141

0 commit comments

Comments
 (0)