Skip to content

Commit 023517d

Browse files
1 parent dc1dc83 commit 023517d

43 files changed

Lines changed: 4176 additions & 129 deletions

File tree

Some content is hidden

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

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

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

Lines changed: 0 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -9842,8 +9842,6 @@ public GenerateContent set(String parameterName, Object value) {
98429842
}
98439843
}
98449844
/**
9845-
* Perform an online prediction.
9846-
*
98479845
* Create a request for the method "endpoints.predict".
98489846
*
98499847
* This request holds the parameters needed by the aiplatform server. After setting any optional
@@ -9868,8 +9866,6 @@ public class Predict extends AiplatformRequest<com.google.api.services.aiplatfor
98689866
java.util.regex.Pattern.compile("^endpoints/[^/]+$");
98699867

98709868
/**
9871-
* Perform an online prediction.
9872-
*
98739869
* Create a request for the method "endpoints.predict".
98749870
*
98759871
* This request holds the parameters needed by the the aiplatform server. After setting any
@@ -50956,8 +50952,6 @@ public Patch set(String parameterName, Object value) {
5095650952
}
5095750953
}
5095850954
/**
50959-
* Perform an online prediction.
50960-
*
5096150955
* Create a request for the method "endpoints.predict".
5096250956
*
5096350957
* This request holds the parameters needed by the aiplatform server. After setting any optional
@@ -50982,8 +50976,6 @@ public class Predict extends AiplatformRequest<com.google.api.services.aiplatfor
5098250976
java.util.regex.Pattern.compile("^projects/[^/]+/locations/[^/]+/endpoints/[^/]+$");
5098350977

5098450978
/**
50985-
* Perform an online prediction.
50986-
*
5098750979
* Create a request for the method "endpoints.predict".
5098850980
*
5098950981
* This request holds the parameters needed by the the aiplatform server. After setting any
@@ -110013,8 +110005,6 @@ public GenerateContent set(String parameterName, Object value) {
110013110005
}
110014110006
}
110015110007
/**
110016-
* Perform an online prediction.
110017-
*
110018110008
* Create a request for the method "models.predict".
110019110009
*
110020110010
* This request holds the parameters needed by the aiplatform server. After setting any optional
@@ -110039,8 +110029,6 @@ public class Predict extends AiplatformRequest<com.google.api.services.aiplatfor
110039110029
java.util.regex.Pattern.compile("^projects/[^/]+/locations/[^/]+/publishers/[^/]+/models/[^/]+$");
110040110030

110041110031
/**
110042-
* Perform an online prediction.
110043-
*
110044110032
* Create a request for the method "models.predict".
110045110033
*
110046110034
* This request holds the parameters needed by the the aiplatform server. After setting any
@@ -143786,8 +143774,6 @@ public Get set(String parameterName, Object value) {
143786143774
}
143787143775
}
143788143776
/**
143789-
* Perform an online prediction.
143790-
*
143791143777
* Create a request for the method "models.predict".
143792143778
*
143793143779
* This request holds the parameters needed by the aiplatform server. After setting any optional
@@ -143812,8 +143798,6 @@ public class Predict extends AiplatformRequest<com.google.api.services.aiplatfor
143812143798
java.util.regex.Pattern.compile("^publishers/[^/]+/models/[^/]+$");
143813143799

143814143800
/**
143815-
* Perform an online prediction.
143816-
*
143817143801
* Create a request for the method "models.predict".
143818143802
*
143819143803
* This request holds the parameters needed by the the aiplatform server. After setting any

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

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

32+
/**
33+
* Conditioning frames for veo experimental models ONLY, not to be confused with keyframes (ID:31)
34+
* in GenerateVideoRequest.
35+
* The value may be {@code null}.
36+
*/
37+
@com.google.api.client.util.Key
38+
private java.util.List<CloudAiLargeModelsVisionGenerateVideoExperimentsConditioningFrame> conditioningFrames;
39+
3240
/**
3341
* Human pose parameters for Pose Control
3442
* The value may be {@code null}.
@@ -73,6 +81,25 @@ public final class CloudAiLargeModelsVisionGenerateVideoExperiments extends com.
7381
@com.google.api.client.util.Key
7482
private java.lang.Float videoTransformStrength;
7583

84+
/**
85+
* Conditioning frames for veo experimental models ONLY, not to be confused with keyframes (ID:31)
86+
* in GenerateVideoRequest.
87+
* @return value or {@code null} for none
88+
*/
89+
public java.util.List<CloudAiLargeModelsVisionGenerateVideoExperimentsConditioningFrame> getConditioningFrames() {
90+
return conditioningFrames;
91+
}
92+
93+
/**
94+
* Conditioning frames for veo experimental models ONLY, not to be confused with keyframes (ID:31)
95+
* in GenerateVideoRequest.
96+
* @param conditioningFrames conditioningFrames or {@code null} for none
97+
*/
98+
public CloudAiLargeModelsVisionGenerateVideoExperiments setConditioningFrames(java.util.List<CloudAiLargeModelsVisionGenerateVideoExperimentsConditioningFrame> conditioningFrames) {
99+
this.conditioningFrames = conditioningFrames;
100+
return this;
101+
}
102+
76103
/**
77104
* Human pose parameters for Pose Control
78105
* @return value or {@code null} for none
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,90 @@
1+
/*
2+
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
3+
* in compliance with the License. You may obtain a copy of the License at
4+
*
5+
* http://www.apache.org/licenses/LICENSE-2.0
6+
*
7+
* Unless required by applicable law or agreed to in writing, software distributed under the License
8+
* is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
9+
* or implied. See the License for the specific language governing permissions and limitations under
10+
* the License.
11+
*/
12+
/*
13+
* This code was generated by https://github.com/googleapis/google-api-java-client-services/
14+
* Modify at your own risk.
15+
*/
16+
17+
package com.google.api.services.aiplatform.v1.model;
18+
19+
/**
20+
* Model definition for CloudAiLargeModelsVisionGenerateVideoExperimentsConditioningFrame.
21+
*
22+
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
23+
* transmitted over HTTP when working with the Vertex AI API. For a detailed explanation see:
24+
* <a href="https://developers.google.com/api-client-library/java/google-http-java-client/json">https://developers.google.com/api-client-library/java/google-http-java-client/json</a>
25+
* </p>
26+
*
27+
* @author Google, Inc.
28+
*/
29+
@SuppressWarnings("javadoc")
30+
public final class CloudAiLargeModelsVisionGenerateVideoExperimentsConditioningFrame extends com.google.api.client.json.GenericJson {
31+
32+
/**
33+
* The index of the frame, starts with zero and must be a multiple of 8.
34+
* The value may be {@code null}.
35+
*/
36+
@com.google.api.client.util.Key
37+
private java.lang.Integer frameNum;
38+
39+
/**
40+
* The image data for this conditioning frame.
41+
* The value may be {@code null}.
42+
*/
43+
@com.google.api.client.util.Key
44+
private CloudAiLargeModelsVisionGenerateVideoRequestImage image;
45+
46+
/**
47+
* The index of the frame, starts with zero and must be a multiple of 8.
48+
* @return value or {@code null} for none
49+
*/
50+
public java.lang.Integer getFrameNum() {
51+
return frameNum;
52+
}
53+
54+
/**
55+
* The index of the frame, starts with zero and must be a multiple of 8.
56+
* @param frameNum frameNum or {@code null} for none
57+
*/
58+
public CloudAiLargeModelsVisionGenerateVideoExperimentsConditioningFrame setFrameNum(java.lang.Integer frameNum) {
59+
this.frameNum = frameNum;
60+
return this;
61+
}
62+
63+
/**
64+
* The image data for this conditioning frame.
65+
* @return value or {@code null} for none
66+
*/
67+
public CloudAiLargeModelsVisionGenerateVideoRequestImage getImage() {
68+
return image;
69+
}
70+
71+
/**
72+
* The image data for this conditioning frame.
73+
* @param image image or {@code null} for none
74+
*/
75+
public CloudAiLargeModelsVisionGenerateVideoExperimentsConditioningFrame setImage(CloudAiLargeModelsVisionGenerateVideoRequestImage image) {
76+
this.image = image;
77+
return this;
78+
}
79+
80+
@Override
81+
public CloudAiLargeModelsVisionGenerateVideoExperimentsConditioningFrame set(String fieldName, Object value) {
82+
return (CloudAiLargeModelsVisionGenerateVideoExperimentsConditioningFrame) super.set(fieldName, value);
83+
}
84+
85+
@Override
86+
public CloudAiLargeModelsVisionGenerateVideoExperimentsConditioningFrame clone() {
87+
return (CloudAiLargeModelsVisionGenerateVideoExperimentsConditioningFrame) super.clone();
88+
}
89+
90+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,138 @@
1+
/*
2+
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
3+
* in compliance with the License. You may obtain a copy of the License at
4+
*
5+
* http://www.apache.org/licenses/LICENSE-2.0
6+
*
7+
* Unless required by applicable law or agreed to in writing, software distributed under the License
8+
* is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
9+
* or implied. See the License for the specific language governing permissions and limitations under
10+
* the License.
11+
*/
12+
/*
13+
* This code was generated by https://github.com/googleapis/google-api-java-client-services/
14+
* Modify at your own risk.
15+
*/
16+
17+
package com.google.api.services.aiplatform.v1.model;
18+
19+
/**
20+
* The image bytes or Cloud Storage URI to make the prediction on.
21+
*
22+
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
23+
* transmitted over HTTP when working with the Vertex AI API. For a detailed explanation see:
24+
* <a href="https://developers.google.com/api-client-library/java/google-http-java-client/json">https://developers.google.com/api-client-library/java/google-http-java-client/json</a>
25+
* </p>
26+
*
27+
* @author Google, Inc.
28+
*/
29+
@SuppressWarnings("javadoc")
30+
public final class CloudAiLargeModelsVisionGenerateVideoRequestImage extends com.google.api.client.json.GenericJson {
31+
32+
/**
33+
* Blob ID of the image. This is used for storing the large images in the request.
34+
* The value may be {@code null}.
35+
*/
36+
@com.google.api.client.util.Key
37+
private java.lang.String blobId;
38+
39+
/**
40+
* Base64 encoded bytes string representing the image.
41+
* The value may be {@code null}.
42+
*/
43+
@com.google.api.client.util.Key
44+
private java.lang.String bytesBase64Encoded;
45+
46+
/**
47+
* The value may be {@code null}.
48+
*/
49+
@com.google.api.client.util.Key
50+
private java.lang.String gcsUri;
51+
52+
/**
53+
* The MIME type of the content of the image. Only the images in below listed MIME types are
54+
* supported. - image/jpeg - image/png
55+
* The value may be {@code null}.
56+
*/
57+
@com.google.api.client.util.Key
58+
private java.lang.String mimeType;
59+
60+
/**
61+
* Blob ID of the image. This is used for storing the large images in the request.
62+
* @return value or {@code null} for none
63+
*/
64+
public java.lang.String getBlobId() {
65+
return blobId;
66+
}
67+
68+
/**
69+
* Blob ID of the image. This is used for storing the large images in the request.
70+
* @param blobId blobId or {@code null} for none
71+
*/
72+
public CloudAiLargeModelsVisionGenerateVideoRequestImage setBlobId(java.lang.String blobId) {
73+
this.blobId = blobId;
74+
return this;
75+
}
76+
77+
/**
78+
* Base64 encoded bytes string representing the image.
79+
* @return value or {@code null} for none
80+
*/
81+
public java.lang.String getBytesBase64Encoded() {
82+
return bytesBase64Encoded;
83+
}
84+
85+
/**
86+
* Base64 encoded bytes string representing the image.
87+
* @param bytesBase64Encoded bytesBase64Encoded or {@code null} for none
88+
*/
89+
public CloudAiLargeModelsVisionGenerateVideoRequestImage setBytesBase64Encoded(java.lang.String bytesBase64Encoded) {
90+
this.bytesBase64Encoded = bytesBase64Encoded;
91+
return this;
92+
}
93+
94+
/**
95+
* @return value or {@code null} for none
96+
*/
97+
public java.lang.String getGcsUri() {
98+
return gcsUri;
99+
}
100+
101+
/**
102+
* @param gcsUri gcsUri or {@code null} for none
103+
*/
104+
public CloudAiLargeModelsVisionGenerateVideoRequestImage setGcsUri(java.lang.String gcsUri) {
105+
this.gcsUri = gcsUri;
106+
return this;
107+
}
108+
109+
/**
110+
* The MIME type of the content of the image. Only the images in below listed MIME types are
111+
* supported. - image/jpeg - image/png
112+
* @return value or {@code null} for none
113+
*/
114+
public java.lang.String getMimeType() {
115+
return mimeType;
116+
}
117+
118+
/**
119+
* The MIME type of the content of the image. Only the images in below listed MIME types are
120+
* supported. - image/jpeg - image/png
121+
* @param mimeType mimeType or {@code null} for none
122+
*/
123+
public CloudAiLargeModelsVisionGenerateVideoRequestImage setMimeType(java.lang.String mimeType) {
124+
this.mimeType = mimeType;
125+
return this;
126+
}
127+
128+
@Override
129+
public CloudAiLargeModelsVisionGenerateVideoRequestImage set(String fieldName, Object value) {
130+
return (CloudAiLargeModelsVisionGenerateVideoRequestImage) super.set(fieldName, value);
131+
}
132+
133+
@Override
134+
public CloudAiLargeModelsVisionGenerateVideoRequestImage clone() {
135+
return (CloudAiLargeModelsVisionGenerateVideoRequestImage) super.clone();
136+
}
137+
138+
}

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

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,13 @@ public final class CloudAiLargeModelsVisionHumanPose extends com.google.api.clie
4343
@com.google.api.client.util.Key
4444
private java.lang.String faceLandmarksGcsUri;
4545

46+
/**
47+
* GCS URI of the performance mesh to condition video generation.
48+
* The value may be {@code null}.
49+
*/
50+
@com.google.api.client.util.Key
51+
private java.lang.String perfMeshGcsUri;
52+
4653
/**
4754
* GCS URI of the human pose video to condition video generation.
4855
* @return value or {@code null} for none
@@ -77,6 +84,23 @@ public CloudAiLargeModelsVisionHumanPose setFaceLandmarksGcsUri(java.lang.String
7784
return this;
7885
}
7986

87+
/**
88+
* GCS URI of the performance mesh to condition video generation.
89+
* @return value or {@code null} for none
90+
*/
91+
public java.lang.String getPerfMeshGcsUri() {
92+
return perfMeshGcsUri;
93+
}
94+
95+
/**
96+
* GCS URI of the performance mesh to condition video generation.
97+
* @param perfMeshGcsUri perfMeshGcsUri or {@code null} for none
98+
*/
99+
public CloudAiLargeModelsVisionHumanPose setPerfMeshGcsUri(java.lang.String perfMeshGcsUri) {
100+
this.perfMeshGcsUri = perfMeshGcsUri;
101+
return this;
102+
}
103+
80104
@Override
81105
public CloudAiLargeModelsVisionHumanPose set(String fieldName, Object value) {
82106
return (CloudAiLargeModelsVisionHumanPose) super.set(fieldName, value);

0 commit comments

Comments
 (0)