Skip to content

Commit 6b6ca6b

Browse files
1 parent 971d242 commit 6b6ca6b

20 files changed

+301
-44
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-rev20250625-2.0.0</version>
25+
<version>v1-rev20250701-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-rev20250625-2.0.0'
38+
implementation 'com.google.apis:google-api-services-aiplatform:v1-rev20250701-2.0.0'
3939
}
4040
```
4141

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

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,8 @@ public final class GoogleCloudAiplatformV1FeatureValueMetadata extends com.googl
3232
/**
3333
* Feature generation timestamp. Typically, it is provided by user at feature ingestion time. If
3434
* not, feature store will use the system timestamp when the data is ingested into feature store.
35-
* For streaming ingestion, the time, aligned by days, must be no older than five years (1825
36-
* days) and no later than one year (366 days) in the future.
35+
* Legacy Feature Store: For streaming ingestion, the time, aligned by days, must be no older than
36+
* five years (1825 days) and no later than one year (366 days) in the future.
3737
* The value may be {@code null}.
3838
*/
3939
@com.google.api.client.util.Key
@@ -42,8 +42,8 @@ public final class GoogleCloudAiplatformV1FeatureValueMetadata extends com.googl
4242
/**
4343
* Feature generation timestamp. Typically, it is provided by user at feature ingestion time. If
4444
* not, feature store will use the system timestamp when the data is ingested into feature store.
45-
* For streaming ingestion, the time, aligned by days, must be no older than five years (1825
46-
* days) and no later than one year (366 days) in the future.
45+
* Legacy Feature Store: For streaming ingestion, the time, aligned by days, must be no older than
46+
* five years (1825 days) and no later than one year (366 days) in the future.
4747
* @return value or {@code null} for none
4848
*/
4949
public String getGenerateTime() {
@@ -53,8 +53,8 @@ public String getGenerateTime() {
5353
/**
5454
* Feature generation timestamp. Typically, it is provided by user at feature ingestion time. If
5555
* not, feature store will use the system timestamp when the data is ingested into feature store.
56-
* For streaming ingestion, the time, aligned by days, must be no older than five years (1825
57-
* days) and no later than one year (366 days) in the future.
56+
* Legacy Feature Store: For streaming ingestion, the time, aligned by days, must be no older than
57+
* five years (1825 days) and no later than one year (366 days) in the future.
5858
* @param generateTime generateTime or {@code null} for none
5959
*/
6060
public GoogleCloudAiplatformV1FeatureValueMetadata setGenerateTime(String generateTime) {

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

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

1919
/**
20-
* The metric used for dataset level evaluation.
20+
* The metric used for running evaluations.
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 Vertex AI API. For a detailed explanation see:

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

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -123,6 +123,17 @@ public final class GoogleCloudAiplatformV1PipelineTaskDetail extends com.google.
123123
@com.google.api.client.util.Key
124124
private java.lang.String taskName;
125125

126+
/**
127+
* Output only. The unique name of a task. This field is used by rerun pipeline job. Console UI
128+
* and Vertex AI SDK will support triggering pipeline job reruns. The name is constructed by
129+
* concatenating all the parent tasks name with the task name. For example, if a task named
130+
* "child_task" has a parent task named "parent_task_1" and parent task 1 has a parent task named
131+
* "parent_task_2", the task unique name will be "parent_task_2.parent_task_1.child_task".
132+
* The value may be {@code null}.
133+
*/
134+
@com.google.api.client.util.Key
135+
private java.lang.String taskUniqueName;
136+
126137
/**
127138
* Output only. Task create time.
128139
* @return value or {@code null} for none
@@ -350,6 +361,31 @@ public GoogleCloudAiplatformV1PipelineTaskDetail setTaskName(java.lang.String ta
350361
return this;
351362
}
352363

364+
/**
365+
* Output only. The unique name of a task. This field is used by rerun pipeline job. Console UI
366+
* and Vertex AI SDK will support triggering pipeline job reruns. The name is constructed by
367+
* concatenating all the parent tasks name with the task name. For example, if a task named
368+
* "child_task" has a parent task named "parent_task_1" and parent task 1 has a parent task named
369+
* "parent_task_2", the task unique name will be "parent_task_2.parent_task_1.child_task".
370+
* @return value or {@code null} for none
371+
*/
372+
public java.lang.String getTaskUniqueName() {
373+
return taskUniqueName;
374+
}
375+
376+
/**
377+
* Output only. The unique name of a task. This field is used by rerun pipeline job. Console UI
378+
* and Vertex AI SDK will support triggering pipeline job reruns. The name is constructed by
379+
* concatenating all the parent tasks name with the task name. For example, if a task named
380+
* "child_task" has a parent task named "parent_task_1" and parent task 1 has a parent task named
381+
* "parent_task_2", the task unique name will be "parent_task_2.parent_task_1.child_task".
382+
* @param taskUniqueName taskUniqueName or {@code null} for none
383+
*/
384+
public GoogleCloudAiplatformV1PipelineTaskDetail setTaskUniqueName(java.lang.String taskUniqueName) {
385+
this.taskUniqueName = taskUniqueName;
386+
return this;
387+
}
388+
353389
@Override
354390
public GoogleCloudAiplatformV1PipelineTaskDetail set(String fieldName, Object value) {
355391
return (GoogleCloudAiplatformV1PipelineTaskDetail) super.set(fieldName, value);

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

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,10 @@ public final class GoogleCloudAiplatformV1TunedModel extends com.google.api.clie
4747

4848
/**
4949
* Output only. The resource name of the TunedModel. Format:
50-
* `projects/{project}/locations/{location}/models/{model}`.
50+
* `projects/{project}/locations/{location}/models/{model}@{version_id}` When tuning from a base
51+
* model, the version_id will be 1. For continuous tuning, the version id will be incremented by 1
52+
* from the last version id in the parent model. E.g.,
53+
* `projects/{project}/locations/{location}/models/{model}@{last_version_id + 1}`
5154
* The value may be {@code null}.
5255
*/
5356
@com.google.api.client.util.Key
@@ -93,7 +96,10 @@ public GoogleCloudAiplatformV1TunedModel setEndpoint(java.lang.String endpoint)
9396

9497
/**
9598
* Output only. The resource name of the TunedModel. Format:
96-
* `projects/{project}/locations/{location}/models/{model}`.
99+
* `projects/{project}/locations/{location}/models/{model}@{version_id}` When tuning from a base
100+
* model, the version_id will be 1. For continuous tuning, the version id will be incremented by 1
101+
* from the last version id in the parent model. E.g.,
102+
* `projects/{project}/locations/{location}/models/{model}@{last_version_id + 1}`
97103
* @return value or {@code null} for none
98104
*/
99105
public java.lang.String getModel() {
@@ -102,7 +108,10 @@ public java.lang.String getModel() {
102108

103109
/**
104110
* Output only. The resource name of the TunedModel. Format:
105-
* `projects/{project}/locations/{location}/models/{model}`.
111+
* `projects/{project}/locations/{location}/models/{model}@{version_id}` When tuning from a base
112+
* model, the version_id will be 1. For continuous tuning, the version id will be incremented by 1
113+
* from the last version id in the parent model. E.g.,
114+
* `projects/{project}/locations/{location}/models/{model}@{last_version_id + 1}`
106115
* @param model model or {@code null} for none
107116
*/
108117
public GoogleCloudAiplatformV1TunedModel setModel(java.lang.String model) {

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-rev20250625-2.0.0</version>
12-
<name>Vertex AI API v1-rev20250625-2.0.0</name>
11+
<version>v1-rev20250701-2.0.0</version>
12+
<name>Vertex AI API v1-rev20250701-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-rev20250625-2.0.0</version>
25+
<version>v1-rev20250701-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-rev20250625-2.0.0'
38+
implementation 'com.google.apis:google-api-services-aiplatform:v1-rev20250701-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-rev20250625-2.0.0</version>
25+
<version>v1beta1-rev20250701-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-rev20250625-2.0.0'
38+
implementation 'com.google.apis:google-api-services-aiplatform:v1beta1-rev20250701-2.0.0'
3939
}
4040
```
4141

clients/google-api-services-aiplatform/v1beta1/2.0.0/com/google/api/services/aiplatform/v1beta1/Aiplatform.java

Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -105058,6 +105058,32 @@ public List setParent(java.lang.String parent) {
105058105058
return this;
105059105059
}
105060105060

105061+
/**
105062+
* Optional. The standard list filter. Supported fields: * `timestamp` range (i.e.
105063+
* `timestamp>="2025-01-31T11:30:00-04:00"` where the timestamp is in RFC 3339 format)
105064+
* More detail in [AIP-160](https://google.aip.dev/160).
105065+
*/
105066+
@com.google.api.client.util.Key
105067+
private java.lang.String filter;
105068+
105069+
/** Optional. The standard list filter. Supported fields: * `timestamp` range (i.e.
105070+
`timestamp>="2025-01-31T11:30:00-04:00"` where the timestamp is in RFC 3339 format) More detail in
105071+
[AIP-160](https://google.aip.dev/160).
105072+
*/
105073+
public java.lang.String getFilter() {
105074+
return filter;
105075+
}
105076+
105077+
/**
105078+
* Optional. The standard list filter. Supported fields: * `timestamp` range (i.e.
105079+
* `timestamp>="2025-01-31T11:30:00-04:00"` where the timestamp is in RFC 3339 format)
105080+
* More detail in [AIP-160](https://google.aip.dev/160).
105081+
*/
105082+
public List setFilter(java.lang.String filter) {
105083+
this.filter = filter;
105084+
return this;
105085+
}
105086+
105061105087
/**
105062105088
* Optional. The maximum number of events to return. The service may return fewer than
105063105089
* this value. If unspecified, at most 100 events will be returned. These events are
@@ -129937,6 +129963,32 @@ public List setParent(java.lang.String parent) {
129937129963
return this;
129938129964
}
129939129965

129966+
/**
129967+
* Optional. The standard list filter. Supported fields: * `timestamp` range (i.e.
129968+
* `timestamp>="2025-01-31T11:30:00-04:00"` where the timestamp is in RFC 3339 format)
129969+
* More detail in [AIP-160](https://google.aip.dev/160).
129970+
*/
129971+
@com.google.api.client.util.Key
129972+
private java.lang.String filter;
129973+
129974+
/** Optional. The standard list filter. Supported fields: * `timestamp` range (i.e.
129975+
`timestamp>="2025-01-31T11:30:00-04:00"` where the timestamp is in RFC 3339 format) More detail in
129976+
[AIP-160](https://google.aip.dev/160).
129977+
*/
129978+
public java.lang.String getFilter() {
129979+
return filter;
129980+
}
129981+
129982+
/**
129983+
* Optional. The standard list filter. Supported fields: * `timestamp` range (i.e.
129984+
* `timestamp>="2025-01-31T11:30:00-04:00"` where the timestamp is in RFC 3339 format)
129985+
* More detail in [AIP-160](https://google.aip.dev/160).
129986+
*/
129987+
public List setFilter(java.lang.String filter) {
129988+
this.filter = filter;
129989+
return this;
129990+
}
129991+
129940129992
/**
129941129993
* Optional. The maximum number of events to return. The service may return fewer than
129942129994
* this value. If unspecified, at most 100 events will be returned. These events are

clients/google-api-services-aiplatform/v1beta1/2.0.0/com/google/api/services/aiplatform/v1beta1/model/GoogleCloudAiplatformV1beta1DedicatedResources.java

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,14 @@ public final class GoogleCloudAiplatformV1beta1DedicatedResources extends com.go
5454
com.google.api.client.util.Data.nullOf(GoogleCloudAiplatformV1beta1AutoscalingMetricSpec.class);
5555
}
5656

57+
/**
58+
* Optional. Immutable. If set, use DWS resource to schedule the deployment workload. reference:
59+
* (https://cloud.google.com/blog/products/compute/introducing-dynamic-workload-scheduler)
60+
* The value may be {@code null}.
61+
*/
62+
@com.google.api.client.util.Key
63+
private GoogleCloudAiplatformV1beta1FlexStart flexStart;
64+
5765
/**
5866
* Required. Immutable. The specification of a single machine being used.
5967
* The value may be {@code null}.
@@ -144,6 +152,25 @@ public GoogleCloudAiplatformV1beta1DedicatedResources setAutoscalingMetricSpecs(
144152
return this;
145153
}
146154

155+
/**
156+
* Optional. Immutable. If set, use DWS resource to schedule the deployment workload. reference:
157+
* (https://cloud.google.com/blog/products/compute/introducing-dynamic-workload-scheduler)
158+
* @return value or {@code null} for none
159+
*/
160+
public GoogleCloudAiplatformV1beta1FlexStart getFlexStart() {
161+
return flexStart;
162+
}
163+
164+
/**
165+
* Optional. Immutable. If set, use DWS resource to schedule the deployment workload. reference:
166+
* (https://cloud.google.com/blog/products/compute/introducing-dynamic-workload-scheduler)
167+
* @param flexStart flexStart or {@code null} for none
168+
*/
169+
public GoogleCloudAiplatformV1beta1DedicatedResources setFlexStart(GoogleCloudAiplatformV1beta1FlexStart flexStart) {
170+
this.flexStart = flexStart;
171+
return this;
172+
}
173+
147174
/**
148175
* Required. Immutable. The specification of a single machine being used.
149176
* @return value or {@code null} for none

0 commit comments

Comments
 (0)