Skip to content

Commit 901ddf6

Browse files
1 parent e5b86f8 commit 901ddf6

File tree

11 files changed

+77
-67
lines changed

11 files changed

+77
-67
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-rev20240923-2.0.0</version>
25+
<version>v1-rev20240925-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-rev20240923-2.0.0'
38+
implementation 'com.google.apis:google-api-services-aiplatform:v1-rev20240925-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: 17 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -33015,9 +33015,9 @@ public class Features {
3301533015
* This request holds the parameters needed by the aiplatform server. After setting any optional
3301633016
* parameters, call the {@link BatchCreate#execute()} method to invoke the remote operation.
3301733017
*
33018-
* @param parent Required. The resource name of the EntityType to create the batch of Features under. Format:
33019-
* `projects/{project}/locations/{location}/featurestores/{featurestore}/entityTypes/{entity_
33020-
* type}`
33018+
* @param parent Required. The resource name of the EntityType/FeatureGroup to create the batch of Features under.
33019+
* Format: `projects/{project}/locations/{location}/featurestores/{featurestore}/entityTypes/
33020+
* {entity_type}` `projects/{project}/locations/{location}/featureGroups/{feature_group}`
3302133021
* @param content the {@link com.google.api.services.aiplatform.v1.model.GoogleCloudAiplatformV1BatchCreateFeaturesRequest}
3302233022
* @return the request
3302333023
*/
@@ -33045,9 +33045,9 @@ public class BatchCreate extends AiplatformRequest<com.google.api.services.aipla
3304533045
* BatchCreate#initialize(com.google.api.client.googleapis.services.AbstractGoogleClientRequest)}
3304633046
* must be called to initialize this instance immediately after invoking the constructor. </p>
3304733047
*
33048-
* @param parent Required. The resource name of the EntityType to create the batch of Features under. Format:
33049-
* `projects/{project}/locations/{location}/featurestores/{featurestore}/entityTypes/{entity_
33050-
* type}`
33048+
* @param parent Required. The resource name of the EntityType/FeatureGroup to create the batch of Features under.
33049+
* Format: `projects/{project}/locations/{location}/featurestores/{featurestore}/entityTypes/
33050+
* {entity_type}` `projects/{project}/locations/{location}/featureGroups/{feature_group}`
3305133051
* @param content the {@link com.google.api.services.aiplatform.v1.model.GoogleCloudAiplatformV1BatchCreateFeaturesRequest}
3305233052
* @since 1.13
3305333053
*/
@@ -33117,24 +33117,28 @@ public BatchCreate setUploadProtocol(java.lang.String uploadProtocol) {
3311733117
}
3311833118

3311933119
/**
33120-
* Required. The resource name of the EntityType to create the batch of Features
33121-
* under. Format: `projects/{project}/locations/{location}/featurestores/{featurestore
33122-
* }/entityTypes/{entity_type}`
33120+
* Required. The resource name of the EntityType/FeatureGroup to create the batch of
33121+
* Features under. Format: `projects/{project}/locations/{location}/featurestores/{fea
33122+
* turestore}/entityTypes/{entity_type}`
33123+
* `projects/{project}/locations/{location}/featureGroups/{feature_group}`
3312333124
*/
3312433125
@com.google.api.client.util.Key
3312533126
private java.lang.String parent;
3312633127

33127-
/** Required. The resource name of the EntityType to create the batch of Features under. Format:
33128+
/** Required. The resource name of the EntityType/FeatureGroup to create the batch of Features under.
33129+
Format:
3312833130
`projects/{project}/locations/{location}/featurestores/{featurestore}/entityTypes/{entity_type}`
33131+
`projects/{project}/locations/{location}/featureGroups/{feature_group}`
3312933132
*/
3313033133
public java.lang.String getParent() {
3313133134
return parent;
3313233135
}
3313333136

3313433137
/**
33135-
* Required. The resource name of the EntityType to create the batch of Features
33136-
* under. Format: `projects/{project}/locations/{location}/featurestores/{featurestore
33137-
* }/entityTypes/{entity_type}`
33138+
* Required. The resource name of the EntityType/FeatureGroup to create the batch of
33139+
* Features under. Format: `projects/{project}/locations/{location}/featurestores/{fea
33140+
* turestore}/entityTypes/{entity_type}`
33141+
* `projects/{project}/locations/{location}/featureGroups/{feature_group}`
3313833142
*/
3313933143
public BatchCreate setParent(java.lang.String parent) {
3314033144
if (!getSuppressPatternChecks()) {

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

Lines changed: 11 additions & 10 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-
* Request message for FeaturestoreService.BatchCreateFeatures.
20+
* Request message for FeaturestoreService.BatchCreateFeatures. Request message for
21+
* FeatureRegistryService.BatchCreateFeatures.
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:
@@ -31,19 +32,19 @@ public final class GoogleCloudAiplatformV1BatchCreateFeaturesRequest extends com
3132

3233
/**
3334
* Required. The request message specifying the Features to create. All Features must be created
34-
* under the same parent EntityType. The `parent` field in each child request message can be
35-
* omitted. If `parent` is set in a child request, then the value must match the `parent` value in
36-
* this request message.
35+
* under the same parent EntityType / FeatureGroup. The `parent` field in each child request
36+
* message can be omitted. If `parent` is set in a child request, then the value must match the
37+
* `parent` value in this request message.
3738
* The value may be {@code null}.
3839
*/
3940
@com.google.api.client.util.Key
4041
private java.util.List<GoogleCloudAiplatformV1CreateFeatureRequest> requests;
4142

4243
/**
4344
* Required. The request message specifying the Features to create. All Features must be created
44-
* under the same parent EntityType. The `parent` field in each child request message can be
45-
* omitted. If `parent` is set in a child request, then the value must match the `parent` value in
46-
* this request message.
45+
* under the same parent EntityType / FeatureGroup. The `parent` field in each child request
46+
* message can be omitted. If `parent` is set in a child request, then the value must match the
47+
* `parent` value in this request message.
4748
* @return value or {@code null} for none
4849
*/
4950
public java.util.List<GoogleCloudAiplatformV1CreateFeatureRequest> getRequests() {
@@ -52,9 +53,9 @@ public java.util.List<GoogleCloudAiplatformV1CreateFeatureRequest> getRequests()
5253

5354
/**
5455
* Required. The request message specifying the Features to create. All Features must be created
55-
* under the same parent EntityType. The `parent` field in each child request message can be
56-
* omitted. If `parent` is set in a child request, then the value must match the `parent` value in
57-
* this request message.
56+
* under the same parent EntityType / FeatureGroup. The `parent` field in each child request
57+
* message can be omitted. If `parent` is set in a child request, then the value must match the
58+
* `parent` value in this request message.
5859
* @param requests requests or {@code null} for none
5960
*/
6061
public GoogleCloudAiplatformV1BatchCreateFeaturesRequest setRequests(java.util.List<GoogleCloudAiplatformV1CreateFeatureRequest> requests) {

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-rev20240923-2.0.0</version>
12-
<name>Vertex AI API v1-rev20240923-2.0.0</name>
11+
<version>v1-rev20240925-2.0.0</version>
12+
<name>Vertex AI API v1-rev20240925-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-rev20240923-2.0.0</version>
25+
<version>v1-rev20240925-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-rev20240923-2.0.0'
38+
implementation 'com.google.apis:google-api-services-aiplatform:v1-rev20240925-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-rev20240916-2.0.0</version>
25+
<version>v1beta1-rev20240925-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-rev20240916-2.0.0'
38+
implementation 'com.google.apis:google-api-services-aiplatform:v1beta1-rev20240925-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: 17 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -42050,9 +42050,9 @@ public class Features {
4205042050
* This request holds the parameters needed by the aiplatform server. After setting any optional
4205142051
* parameters, call the {@link BatchCreate#execute()} method to invoke the remote operation.
4205242052
*
42053-
* @param parent Required. The resource name of the EntityType to create the batch of Features under. Format:
42054-
* `projects/{project}/locations/{location}/featurestores/{featurestore}/entityTypes/{entity_
42055-
* type}`
42053+
* @param parent Required. The resource name of the EntityType/FeatureGroup to create the batch of Features under.
42054+
* Format: `projects/{project}/locations/{location}/featurestores/{featurestore}/entityTypes/
42055+
* {entity_type}` `projects/{project}/locations/{location}/featureGroups/{feature_group}`
4205642056
* @param content the {@link com.google.api.services.aiplatform.v1beta1.model.GoogleCloudAiplatformV1beta1BatchCreateFeaturesRequest}
4205742057
* @return the request
4205842058
*/
@@ -42080,9 +42080,9 @@ public class BatchCreate extends AiplatformRequest<com.google.api.services.aipla
4208042080
* BatchCreate#initialize(com.google.api.client.googleapis.services.AbstractGoogleClientRequest)}
4208142081
* must be called to initialize this instance immediately after invoking the constructor. </p>
4208242082
*
42083-
* @param parent Required. The resource name of the EntityType to create the batch of Features under. Format:
42084-
* `projects/{project}/locations/{location}/featurestores/{featurestore}/entityTypes/{entity_
42085-
* type}`
42083+
* @param parent Required. The resource name of the EntityType/FeatureGroup to create the batch of Features under.
42084+
* Format: `projects/{project}/locations/{location}/featurestores/{featurestore}/entityTypes/
42085+
* {entity_type}` `projects/{project}/locations/{location}/featureGroups/{feature_group}`
4208642086
* @param content the {@link com.google.api.services.aiplatform.v1beta1.model.GoogleCloudAiplatformV1beta1BatchCreateFeaturesRequest}
4208742087
* @since 1.13
4208842088
*/
@@ -42152,24 +42152,28 @@ public BatchCreate setUploadProtocol(java.lang.String uploadProtocol) {
4215242152
}
4215342153

4215442154
/**
42155-
* Required. The resource name of the EntityType to create the batch of Features
42156-
* under. Format: `projects/{project}/locations/{location}/featurestores/{featurestore
42157-
* }/entityTypes/{entity_type}`
42155+
* Required. The resource name of the EntityType/FeatureGroup to create the batch of
42156+
* Features under. Format: `projects/{project}/locations/{location}/featurestores/{fea
42157+
* turestore}/entityTypes/{entity_type}`
42158+
* `projects/{project}/locations/{location}/featureGroups/{feature_group}`
4215842159
*/
4215942160
@com.google.api.client.util.Key
4216042161
private java.lang.String parent;
4216142162

42162-
/** Required. The resource name of the EntityType to create the batch of Features under. Format:
42163+
/** Required. The resource name of the EntityType/FeatureGroup to create the batch of Features under.
42164+
Format:
4216342165
`projects/{project}/locations/{location}/featurestores/{featurestore}/entityTypes/{entity_type}`
42166+
`projects/{project}/locations/{location}/featureGroups/{feature_group}`
4216442167
*/
4216542168
public java.lang.String getParent() {
4216642169
return parent;
4216742170
}
4216842171

4216942172
/**
42170-
* Required. The resource name of the EntityType to create the batch of Features
42171-
* under. Format: `projects/{project}/locations/{location}/featurestores/{featurestore
42172-
* }/entityTypes/{entity_type}`
42173+
* Required. The resource name of the EntityType/FeatureGroup to create the batch of
42174+
* Features under. Format: `projects/{project}/locations/{location}/featurestores/{fea
42175+
* turestore}/entityTypes/{entity_type}`
42176+
* `projects/{project}/locations/{location}/featureGroups/{feature_group}`
4217342177
*/
4217442178
public BatchCreate setParent(java.lang.String parent) {
4217542179
if (!getSuppressPatternChecks()) {

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

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

1919
/**
20-
* Request message for FeaturestoreService.BatchCreateFeatures.
20+
* Request message for FeaturestoreService.BatchCreateFeatures. Request message for
21+
* FeatureRegistryService.BatchCreateFeatures.
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:
@@ -31,19 +32,19 @@ public final class GoogleCloudAiplatformV1beta1BatchCreateFeaturesRequest extend
3132

3233
/**
3334
* Required. The request message specifying the Features to create. All Features must be created
34-
* under the same parent EntityType. The `parent` field in each child request message can be
35-
* omitted. If `parent` is set in a child request, then the value must match the `parent` value in
36-
* this request message.
35+
* under the same parent EntityType / FeatureGroup. The `parent` field in each child request
36+
* message can be omitted. If `parent` is set in a child request, then the value must match the
37+
* `parent` value in this request message.
3738
* The value may be {@code null}.
3839
*/
3940
@com.google.api.client.util.Key
4041
private java.util.List<GoogleCloudAiplatformV1beta1CreateFeatureRequest> requests;
4142

4243
/**
4344
* Required. The request message specifying the Features to create. All Features must be created
44-
* under the same parent EntityType. The `parent` field in each child request message can be
45-
* omitted. If `parent` is set in a child request, then the value must match the `parent` value in
46-
* this request message.
45+
* under the same parent EntityType / FeatureGroup. The `parent` field in each child request
46+
* message can be omitted. If `parent` is set in a child request, then the value must match the
47+
* `parent` value in this request message.
4748
* @return value or {@code null} for none
4849
*/
4950
public java.util.List<GoogleCloudAiplatformV1beta1CreateFeatureRequest> getRequests() {
@@ -52,9 +53,9 @@ public java.util.List<GoogleCloudAiplatformV1beta1CreateFeatureRequest> getReque
5253

5354
/**
5455
* Required. The request message specifying the Features to create. All Features must be created
55-
* under the same parent EntityType. The `parent` field in each child request message can be
56-
* omitted. If `parent` is set in a child request, then the value must match the `parent` value in
57-
* this request message.
56+
* under the same parent EntityType / FeatureGroup. The `parent` field in each child request
57+
* message can be omitted. If `parent` is set in a child request, then the value must match the
58+
* `parent` value in this request message.
5859
* @param requests requests or {@code null} for none
5960
*/
6061
public GoogleCloudAiplatformV1beta1BatchCreateFeaturesRequest setRequests(java.util.List<GoogleCloudAiplatformV1beta1CreateFeatureRequest> requests) {

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

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -37,9 +37,9 @@ public final class GoogleCloudAiplatformV1beta1RagContextsContext extends com.go
3737
private java.lang.Double distance;
3838

3939
/**
40-
* For vertex RagStore, if the file is imported from Cloud Storage or Google Drive, source_uri
41-
* will be original file URI in Cloud Storage or Google Drive; if file is uploaded, source_uri
42-
* will be file display name.
40+
* If the file is imported from Cloud Storage or Google Drive, source_uri will be original file
41+
* URI in Cloud Storage or Google Drive; if file is uploaded, source_uri will be file display
42+
* name.
4343
* The value may be {@code null}.
4444
*/
4545
@com.google.api.client.util.Key
@@ -77,19 +77,19 @@ public GoogleCloudAiplatformV1beta1RagContextsContext setDistance(java.lang.Doub
7777
}
7878

7979
/**
80-
* For vertex RagStore, if the file is imported from Cloud Storage or Google Drive, source_uri
81-
* will be original file URI in Cloud Storage or Google Drive; if file is uploaded, source_uri
82-
* will be file display name.
80+
* If the file is imported from Cloud Storage or Google Drive, source_uri will be original file
81+
* URI in Cloud Storage or Google Drive; if file is uploaded, source_uri will be file display
82+
* name.
8383
* @return value or {@code null} for none
8484
*/
8585
public java.lang.String getSourceUri() {
8686
return sourceUri;
8787
}
8888

8989
/**
90-
* For vertex RagStore, if the file is imported from Cloud Storage or Google Drive, source_uri
91-
* will be original file URI in Cloud Storage or Google Drive; if file is uploaded, source_uri
92-
* will be file display name.
90+
* If the file is imported from Cloud Storage or Google Drive, source_uri will be original file
91+
* URI in Cloud Storage or Google Drive; if file is uploaded, source_uri will be file display
92+
* name.
9393
* @param sourceUri sourceUri or {@code null} for none
9494
*/
9595
public GoogleCloudAiplatformV1beta1RagContextsContext setSourceUri(java.lang.String sourceUri) {

clients/google-api-services-aiplatform/v1beta1/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>v1beta1-rev20240916-2.0.0</version>
12-
<name>Vertex AI API v1beta1-rev20240916-2.0.0</name>
11+
<version>v1beta1-rev20240925-2.0.0</version>
12+
<name>Vertex AI API v1beta1-rev20240925-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

0 commit comments

Comments
 (0)