Skip to content

Commit d7907e7

Browse files
1 parent 6e1eb1d commit d7907e7

21 files changed

+1276
-24
lines changed

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

clients/google-api-services-aiplatform/v1/2.0.0/com/google/api/services/aiplatform/v1/model/GoogleCloudAiplatformV1ImportRagFilesConfig.java

Lines changed: 57 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,23 @@ public final class GoogleCloudAiplatformV1ImportRagFilesConfig extends com.googl
4545
@com.google.api.client.util.Key
4646
private GoogleCloudAiplatformV1GoogleDriveSource googleDriveSource;
4747

48+
/**
49+
* The BigQuery destination to write import result to. It should be a bigquery table resource name
50+
* (e.g. "bq://projectId.bqDatasetId.bqTableId"). The dataset must exist. If the table does not
51+
* exist, it will be created with the expected schema. If the table exists, the schema will be
52+
* validated and data will be added to this existing table.
53+
* The value may be {@code null}.
54+
*/
55+
@com.google.api.client.util.Key
56+
private GoogleCloudAiplatformV1BigQueryDestination importResultBigquerySink;
57+
58+
/**
59+
* The Cloud Storage path to write import result to.
60+
* The value may be {@code null}.
61+
*/
62+
@com.google.api.client.util.Key
63+
private GoogleCloudAiplatformV1GcsDestination importResultGcsSink;
64+
4865
/**
4966
* Jira queries with their corresponding authentication.
5067
* The value may be {@code null}.
@@ -148,6 +165,46 @@ public GoogleCloudAiplatformV1ImportRagFilesConfig setGoogleDriveSource(GoogleCl
148165
return this;
149166
}
150167

168+
/**
169+
* The BigQuery destination to write import result to. It should be a bigquery table resource name
170+
* (e.g. "bq://projectId.bqDatasetId.bqTableId"). The dataset must exist. If the table does not
171+
* exist, it will be created with the expected schema. If the table exists, the schema will be
172+
* validated and data will be added to this existing table.
173+
* @return value or {@code null} for none
174+
*/
175+
public GoogleCloudAiplatformV1BigQueryDestination getImportResultBigquerySink() {
176+
return importResultBigquerySink;
177+
}
178+
179+
/**
180+
* The BigQuery destination to write import result to. It should be a bigquery table resource name
181+
* (e.g. "bq://projectId.bqDatasetId.bqTableId"). The dataset must exist. If the table does not
182+
* exist, it will be created with the expected schema. If the table exists, the schema will be
183+
* validated and data will be added to this existing table.
184+
* @param importResultBigquerySink importResultBigquerySink or {@code null} for none
185+
*/
186+
public GoogleCloudAiplatformV1ImportRagFilesConfig setImportResultBigquerySink(GoogleCloudAiplatformV1BigQueryDestination importResultBigquerySink) {
187+
this.importResultBigquerySink = importResultBigquerySink;
188+
return this;
189+
}
190+
191+
/**
192+
* The Cloud Storage path to write import result to.
193+
* @return value or {@code null} for none
194+
*/
195+
public GoogleCloudAiplatformV1GcsDestination getImportResultGcsSink() {
196+
return importResultGcsSink;
197+
}
198+
199+
/**
200+
* The Cloud Storage path to write import result to.
201+
* @param importResultGcsSink importResultGcsSink or {@code null} for none
202+
*/
203+
public GoogleCloudAiplatformV1ImportRagFilesConfig setImportResultGcsSink(GoogleCloudAiplatformV1GcsDestination importResultGcsSink) {
204+
this.importResultGcsSink = importResultGcsSink;
205+
return this;
206+
}
207+
151208
/**
152209
* Jira queries with their corresponding authentication.
153210
* @return value or {@code null} for none

clients/google-api-services-aiplatform/v1/2.0.0/com/google/api/services/aiplatform/v1/model/GoogleCloudAiplatformV1PostStartupScriptConfig.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ public final class GoogleCloudAiplatformV1PostStartupScriptConfig extends com.go
4444
private java.lang.String postStartupScriptBehavior;
4545

4646
/**
47-
* Optional. Post startup script url to download. Example: https://bucket/script.sh
47+
* Optional. Post startup script url to download. Example: `gs://bucket/script.sh`
4848
* The value may be {@code null}.
4949
*/
5050
@com.google.api.client.util.Key
@@ -85,15 +85,15 @@ public GoogleCloudAiplatformV1PostStartupScriptConfig setPostStartupScriptBehavi
8585
}
8686

8787
/**
88-
* Optional. Post startup script url to download. Example: https://bucket/script.sh
88+
* Optional. Post startup script url to download. Example: `gs://bucket/script.sh`
8989
* @return value or {@code null} for none
9090
*/
9191
public java.lang.String getPostStartupScriptUrl() {
9292
return postStartupScriptUrl;
9393
}
9494

9595
/**
96-
* Optional. Post startup script url to download. Example: https://bucket/script.sh
96+
* Optional. Post startup script url to download. Example: `gs://bucket/script.sh`
9797
* @param postStartupScriptUrl postStartupScriptUrl or {@code null} for none
9898
*/
9999
public GoogleCloudAiplatformV1PostStartupScriptConfig setPostStartupScriptUrl(java.lang.String postStartupScriptUrl) {

clients/google-api-services-aiplatform/v1/2.0.0/com/google/api/services/aiplatform/v1/model/GoogleCloudAiplatformV1ReasoningEngineSpec.java

Lines changed: 36 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,14 @@
2929
@SuppressWarnings("javadoc")
3030
public final class GoogleCloudAiplatformV1ReasoningEngineSpec extends com.google.api.client.json.GenericJson {
3131

32+
/**
33+
* Optional. The OSS agent framework used to develop the agent. Currently supported values:
34+
* "langchain", "langgraph", "ag2", "custom".
35+
* The value may be {@code null}.
36+
*/
37+
@com.google.api.client.util.Key
38+
private java.lang.String agentFramework;
39+
3240
/**
3341
* Optional. Declarations for object class methods in OpenAPI specification format.
3442
* The value may be {@code null}.
@@ -44,12 +52,33 @@ public final class GoogleCloudAiplatformV1ReasoningEngineSpec extends com.google
4452
private GoogleCloudAiplatformV1ReasoningEngineSpecDeploymentSpec deploymentSpec;
4553

4654
/**
47-
* Required. User provided package spec of the ReasoningEngine.
55+
* Required. User provided package spec of the ReasoningEngine. Ignored when users directly
56+
* specify a deployment image through `deployment_spec.first_party_image_override`, but keeping
57+
* the field_behavior to avoid introducing breaking changes.
4858
* The value may be {@code null}.
4959
*/
5060
@com.google.api.client.util.Key
5161
private GoogleCloudAiplatformV1ReasoningEngineSpecPackageSpec packageSpec;
5262

63+
/**
64+
* Optional. The OSS agent framework used to develop the agent. Currently supported values:
65+
* "langchain", "langgraph", "ag2", "custom".
66+
* @return value or {@code null} for none
67+
*/
68+
public java.lang.String getAgentFramework() {
69+
return agentFramework;
70+
}
71+
72+
/**
73+
* Optional. The OSS agent framework used to develop the agent. Currently supported values:
74+
* "langchain", "langgraph", "ag2", "custom".
75+
* @param agentFramework agentFramework or {@code null} for none
76+
*/
77+
public GoogleCloudAiplatformV1ReasoningEngineSpec setAgentFramework(java.lang.String agentFramework) {
78+
this.agentFramework = agentFramework;
79+
return this;
80+
}
81+
5382
/**
5483
* Optional. Declarations for object class methods in OpenAPI specification format.
5584
* @return value or {@code null} for none
@@ -85,15 +114,19 @@ public GoogleCloudAiplatformV1ReasoningEngineSpec setDeploymentSpec(GoogleCloudA
85114
}
86115

87116
/**
88-
* Required. User provided package spec of the ReasoningEngine.
117+
* Required. User provided package spec of the ReasoningEngine. Ignored when users directly
118+
* specify a deployment image through `deployment_spec.first_party_image_override`, but keeping
119+
* the field_behavior to avoid introducing breaking changes.
89120
* @return value or {@code null} for none
90121
*/
91122
public GoogleCloudAiplatformV1ReasoningEngineSpecPackageSpec getPackageSpec() {
92123
return packageSpec;
93124
}
94125

95126
/**
96-
* Required. User provided package spec of the ReasoningEngine.
127+
* Required. User provided package spec of the ReasoningEngine. Ignored when users directly
128+
* specify a deployment image through `deployment_spec.first_party_image_override`, but keeping
129+
* the field_behavior to avoid introducing breaking changes.
97130
* @param packageSpec packageSpec or {@code null} for none
98131
*/
99132
public GoogleCloudAiplatformV1ReasoningEngineSpec setPackageSpec(GoogleCloudAiplatformV1ReasoningEngineSpecPackageSpec packageSpec) {

clients/google-api-services-aiplatform/v1/2.0.0/com/google/api/services/aiplatform/v1/model/GoogleCloudAiplatformV1VertexAISearch.java

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,14 @@ public final class GoogleCloudAiplatformV1VertexAISearch extends com.google.api.
3838
@com.google.api.client.util.Key
3939
private java.lang.String datastore;
4040

41+
/**
42+
* Optional. Fully-qualified Vertex AI Search engine resource ID. Format:
43+
* `projects/{project}/locations/{location}/collections/{collection}/engines/{engine}`
44+
* The value may be {@code null}.
45+
*/
46+
@com.google.api.client.util.Key
47+
private java.lang.String engine;
48+
4149
/**
4250
* Optional. Fully-qualified Vertex AI Search data store resource ID. Format:
4351
* `projects/{project}/locations/{location}/collections/{collection}/dataStores/{dataStore}`
@@ -57,6 +65,25 @@ public GoogleCloudAiplatformV1VertexAISearch setDatastore(java.lang.String datas
5765
return this;
5866
}
5967

68+
/**
69+
* Optional. Fully-qualified Vertex AI Search engine resource ID. Format:
70+
* `projects/{project}/locations/{location}/collections/{collection}/engines/{engine}`
71+
* @return value or {@code null} for none
72+
*/
73+
public java.lang.String getEngine() {
74+
return engine;
75+
}
76+
77+
/**
78+
* Optional. Fully-qualified Vertex AI Search engine resource ID. Format:
79+
* `projects/{project}/locations/{location}/collections/{collection}/engines/{engine}`
80+
* @param engine engine or {@code null} for none
81+
*/
82+
public GoogleCloudAiplatformV1VertexAISearch setEngine(java.lang.String engine) {
83+
this.engine = engine;
84+
return this;
85+
}
86+
6087
@Override
6188
public GoogleCloudAiplatformV1VertexAISearch set(String fieldName, Object value) {
6289
return (GoogleCloudAiplatformV1VertexAISearch) super.set(fieldName, value);

clients/google-api-services-aiplatform/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-aiplatform</artifactId>
11-
<version>v1-rev20250304-2.0.0</version>
12-
<name>Vertex AI API v1-rev20250304-2.0.0</name>
11+
<version>v1-rev20250307-2.0.0</version>
12+
<name>Vertex AI API v1-rev20250307-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

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

clients/google-api-services-aiplatform/v1beta1/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-aiplatform</artifactId>
25-
<version>v1beta1-rev20250304-2.0.0</version>
25+
<version>v1beta1-rev20250307-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-aiplatform:v1beta1-rev20250304-2.0.0'
38+
implementation 'com.google.apis:google-api-services-aiplatform:v1beta1-rev20250307-2.0.0'
3939
}
4040
```
4141

0 commit comments

Comments
 (0)