Skip to content

Commit 057c532

Browse files
1 parent 83b2a1f commit 057c532

File tree

5 files changed

+66
-7
lines changed

5 files changed

+66
-7
lines changed

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

clients/google-api-services-integrations/v1/2.0.0/com/google/api/services/integrations/v1/Integrations.java

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22749,6 +22749,22 @@ public Search setParent(java.lang.String parent) {
2274922749
return this;
2275022750
}
2275122751

22752+
/** Optional. Whether to enable natural language query understanding. */
22753+
@com.google.api.client.util.Key
22754+
private java.lang.Boolean enableNaturalLanguageQueryUnderstanding;
22755+
22756+
/** Optional. Whether to enable natural language query understanding.
22757+
*/
22758+
public java.lang.Boolean getEnableNaturalLanguageQueryUnderstanding() {
22759+
return enableNaturalLanguageQueryUnderstanding;
22760+
}
22761+
22762+
/** Optional. Whether to enable natural language query understanding. */
22763+
public Search setEnableNaturalLanguageQueryUnderstanding(java.lang.Boolean enableNaturalLanguageQueryUnderstanding) {
22764+
this.enableNaturalLanguageQueryUnderstanding = enableNaturalLanguageQueryUnderstanding;
22765+
return this;
22766+
}
22767+
2275222768
/**
2275322769
* Optional. Standard filter field to filter templates. client_id filter won't be
2275422770
* supported and will restrict to templates belonging to the current client only. Return
@@ -22833,6 +22849,22 @@ public Search setPageToken(java.lang.String pageToken) {
2283322849
return this;
2283422850
}
2283522851

22852+
/** Optional. The search query that will be passed to Vertex search service. */
22853+
@com.google.api.client.util.Key
22854+
private java.lang.String query;
22855+
22856+
/** Optional. The search query that will be passed to Vertex search service.
22857+
*/
22858+
public java.lang.String getQuery() {
22859+
return query;
22860+
}
22861+
22862+
/** Optional. The search query that will be passed to Vertex search service. */
22863+
public Search setQuery(java.lang.String query) {
22864+
this.query = query;
22865+
return this;
22866+
}
22867+
2283622868
/**
2283722869
* Optional. The mask which specifies fields that need to be returned in the template's
2283822870
* response.

clients/google-api-services-integrations/v1/2.0.0/com/google/api/services/integrations/v1/model/GoogleCloudConnectorsV1EventingConfig.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.integrations.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 Application Integration API. For a detailed
@@ -86,6 +86,14 @@ public final class GoogleCloudConnectorsV1EventingConfig extends com.google.api.
8686
@com.google.api.client.util.Key
8787
private GoogleCloudConnectorsV1AuthConfig listenerAuthConfig;
8888

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

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

clients/google-api-services-integrations/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-integrations</artifactId>
11-
<version>v1-rev20250521-2.0.0</version>
12-
<name>Application Integration API v1-rev20250521-2.0.0</name>
11+
<version>v1-rev20250610-2.0.0</version>
12+
<name>Application Integration API v1-rev20250610-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

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

0 commit comments

Comments
 (0)