Skip to content

Commit 541ab7e

Browse files
1 parent 21021bd commit 541ab7e

File tree

109 files changed

+4397
-1399
lines changed

Some content is hidden

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

109 files changed

+4397
-1399
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-rev20251027-2.0.0</version>
25+
<version>v1-rev20251028-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-rev20251027-2.0.0'
38+
implementation 'com.google.apis:google-api-services-aiplatform:v1-rev20251028-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: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -32894,22 +32894,22 @@ public List setName(java.lang.String name) {
3289432894
}
3289532895

3289632896
/**
32897-
* Optional. Unless explicitly documented otherwise, don't use this unsupported field which
32898-
* is primarily intended for internal usage.
32897+
* Optional. Do not use this field. It is unsupported and is ignored unless explicitly
32898+
* documented otherwise. This is primarily for internal usage.
3289932899
*/
3290032900
@com.google.api.client.util.Key
3290132901
private java.util.List<java.lang.String> extraLocationTypes;
3290232902

32903-
/** Optional. Unless explicitly documented otherwise, don't use this unsupported field which is
32904-
primarily intended for internal usage.
32903+
/** Optional. Do not use this field. It is unsupported and is ignored unless explicitly documented
32904+
otherwise. This is primarily for internal usage.
3290532905
*/
3290632906
public java.util.List<java.lang.String> getExtraLocationTypes() {
3290732907
return extraLocationTypes;
3290832908
}
3290932909

3291032910
/**
32911-
* Optional. Unless explicitly documented otherwise, don't use this unsupported field which
32912-
* is primarily intended for internal usage.
32911+
* Optional. Do not use this field. It is unsupported and is ignored unless explicitly
32912+
* documented otherwise. This is primarily for internal usage.
3291332913
*/
3291432914
public List setExtraLocationTypes(java.util.List<java.lang.String> extraLocationTypes) {
3291532915
this.extraLocationTypes = extraLocationTypes;

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

Lines changed: 19 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,8 @@
1717
package com.google.api.services.aiplatform.v1.model;
1818

1919
/**
20-
* Content blob.
20+
* A content blob. A Blob contains data of a specific media type. It is used to represent images,
21+
* audio, and video.
2122
*
2223
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
2324
* transmitted over HTTP when working with the Vertex AI API. For a detailed explanation see:
@@ -30,17 +31,17 @@
3031
public final class GoogleCloudAiplatformV1Blob extends com.google.api.client.json.GenericJson {
3132

3233
/**
33-
* Required. Raw bytes.
34+
* Required. The raw bytes of the data.
3435
* The value may be {@code null}.
3536
*/
3637
@com.google.api.client.util.Key
3738
private java.lang.String data;
3839

3940
/**
40-
* Optional. Display name of the blob. Used to provide a label or filename to distinguish blobs.
41-
* This field is only returned in PromptMessage for prompt management. It is currently used in the
42-
* Gemini GenerateContent calls only when server side tools (code_execution, google_search, and
43-
* url_context) are enabled.
41+
* Optional. The display name of the blob. Used to provide a label or filename to distinguish
42+
* blobs. This field is only returned in `PromptMessage` for prompt management. It is used in the
43+
* Gemini calls only when server-side tools (`code_execution`, `google_search`, and `url_context`)
44+
* are enabled.
4445
* The value may be {@code null}.
4546
*/
4647
@com.google.api.client.util.Key
@@ -54,7 +55,7 @@ public final class GoogleCloudAiplatformV1Blob extends com.google.api.client.jso
5455
private java.lang.String mimeType;
5556

5657
/**
57-
* Required. Raw bytes.
58+
* Required. The raw bytes of the data.
5859
* @see #decodeData()
5960
* @return value or {@code null} for none
6061
*/
@@ -63,7 +64,7 @@ public java.lang.String getData() {
6364
}
6465

6566
/**
66-
* Required. Raw bytes.
67+
* Required. The raw bytes of the data.
6768
* @see #getData()
6869
* @return Base64 decoded value or {@code null} for none
6970
*
@@ -74,7 +75,7 @@ public byte[] decodeData() {
7475
}
7576

7677
/**
77-
* Required. Raw bytes.
78+
* Required. The raw bytes of the data.
7879
* @see #encodeData()
7980
* @param data data or {@code null} for none
8081
*/
@@ -84,7 +85,7 @@ public GoogleCloudAiplatformV1Blob setData(java.lang.String data) {
8485
}
8586

8687
/**
87-
* Required. Raw bytes.
88+
* Required. The raw bytes of the data.
8889
* @see #setData()
8990
*
9091
* <p>
@@ -99,21 +100,21 @@ public GoogleCloudAiplatformV1Blob encodeData(byte[] data) {
99100
}
100101

101102
/**
102-
* Optional. Display name of the blob. Used to provide a label or filename to distinguish blobs.
103-
* This field is only returned in PromptMessage for prompt management. It is currently used in the
104-
* Gemini GenerateContent calls only when server side tools (code_execution, google_search, and
105-
* url_context) are enabled.
103+
* Optional. The display name of the blob. Used to provide a label or filename to distinguish
104+
* blobs. This field is only returned in `PromptMessage` for prompt management. It is used in the
105+
* Gemini calls only when server-side tools (`code_execution`, `google_search`, and `url_context`)
106+
* are enabled.
106107
* @return value or {@code null} for none
107108
*/
108109
public java.lang.String getDisplayName() {
109110
return displayName;
110111
}
111112

112113
/**
113-
* Optional. Display name of the blob. Used to provide a label or filename to distinguish blobs.
114-
* This field is only returned in PromptMessage for prompt management. It is currently used in the
115-
* Gemini GenerateContent calls only when server side tools (code_execution, google_search, and
116-
* url_context) are enabled.
114+
* Optional. The display name of the blob. Used to provide a label or filename to distinguish
115+
* blobs. This field is only returned in `PromptMessage` for prompt management. It is used in the
116+
* Gemini calls only when server-side tools (`code_execution`, `google_search`, and `url_context`)
117+
* are enabled.
117118
* @param displayName displayName or {@code null} for none
118119
*/
119120
public GoogleCloudAiplatformV1Blob setDisplayName(java.lang.String displayName) {

0 commit comments

Comments
 (0)