Skip to content

Commit e13fa96

Browse files
1 parent fbe4642 commit e13fa96

File tree

44 files changed

+2511
-18
lines changed

Some content is hidden

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

44 files changed

+2511
-18
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-rev20250715-2.0.0</version>
25+
<version>v1-rev20250728-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-rev20250715-2.0.0'
38+
implementation 'com.google.apis:google-api-services-aiplatform:v1-rev20250728-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: 144 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30066,6 +30066,150 @@ public Delete set(String parameterName, Object value) {
3006630066
return (Delete) super.set(parameterName, value);
3006730067
}
3006830068
}
30069+
/**
30070+
* Bidirectional streaming RPC to directly write to feature values in a feature view. Requests may
30071+
* not have a one-to-one mapping to responses and responses may be returned out-of-order to reduce
30072+
* latency.
30073+
*
30074+
* Create a request for the method "featureViews.directWrite".
30075+
*
30076+
* This request holds the parameters needed by the aiplatform server. After setting any optional
30077+
* parameters, call the {@link DirectWrite#execute()} method to invoke the remote operation.
30078+
*
30079+
* @param featureView FeatureView resource format `projects/{project}/locations/{location}/featureOnlineStores/{featureOnl
30080+
* ineStore}/featureViews/{featureView}`
30081+
* @param content the {@link com.google.api.services.aiplatform.v1.model.GoogleCloudAiplatformV1FeatureViewDirectWriteRequest}
30082+
* @return the request
30083+
*/
30084+
public DirectWrite directWrite(java.lang.String featureView, com.google.api.services.aiplatform.v1.model.GoogleCloudAiplatformV1FeatureViewDirectWriteRequest content) throws java.io.IOException {
30085+
DirectWrite result = new DirectWrite(featureView, content);
30086+
initialize(result);
30087+
return result;
30088+
}
30089+
30090+
public class DirectWrite extends AiplatformRequest<com.google.api.services.aiplatform.v1.model.GoogleCloudAiplatformV1FeatureViewDirectWriteResponse> {
30091+
30092+
private static final String REST_PATH = "v1/{+featureView}:directWrite";
30093+
30094+
private final java.util.regex.Pattern FEATURE_VIEW_PATTERN =
30095+
java.util.regex.Pattern.compile("^projects/[^/]+/locations/[^/]+/featureOnlineStores/[^/]+/featureViews/[^/]+$");
30096+
30097+
/**
30098+
* Bidirectional streaming RPC to directly write to feature values in a feature view. Requests may
30099+
* not have a one-to-one mapping to responses and responses may be returned out-of-order to reduce
30100+
* latency.
30101+
*
30102+
* Create a request for the method "featureViews.directWrite".
30103+
*
30104+
* This request holds the parameters needed by the the aiplatform server. After setting any
30105+
* optional parameters, call the {@link DirectWrite#execute()} method to invoke the remote
30106+
* operation. <p> {@link
30107+
* DirectWrite#initialize(com.google.api.client.googleapis.services.AbstractGoogleClientRequest)}
30108+
* must be called to initialize this instance immediately after invoking the constructor. </p>
30109+
*
30110+
* @param featureView FeatureView resource format `projects/{project}/locations/{location}/featureOnlineStores/{featureOnl
30111+
* ineStore}/featureViews/{featureView}`
30112+
* @param content the {@link com.google.api.services.aiplatform.v1.model.GoogleCloudAiplatformV1FeatureViewDirectWriteRequest}
30113+
* @since 1.13
30114+
*/
30115+
protected DirectWrite(java.lang.String featureView, com.google.api.services.aiplatform.v1.model.GoogleCloudAiplatformV1FeatureViewDirectWriteRequest content) {
30116+
super(Aiplatform.this, "POST", REST_PATH, content, com.google.api.services.aiplatform.v1.model.GoogleCloudAiplatformV1FeatureViewDirectWriteResponse.class);
30117+
this.featureView = com.google.api.client.util.Preconditions.checkNotNull(featureView, "Required parameter featureView must be specified.");
30118+
if (!getSuppressPatternChecks()) {
30119+
com.google.api.client.util.Preconditions.checkArgument(FEATURE_VIEW_PATTERN.matcher(featureView).matches(),
30120+
"Parameter featureView must conform to the pattern " +
30121+
"^projects/[^/]+/locations/[^/]+/featureOnlineStores/[^/]+/featureViews/[^/]+$");
30122+
}
30123+
}
30124+
30125+
@Override
30126+
public DirectWrite set$Xgafv(java.lang.String $Xgafv) {
30127+
return (DirectWrite) super.set$Xgafv($Xgafv);
30128+
}
30129+
30130+
@Override
30131+
public DirectWrite setAccessToken(java.lang.String accessToken) {
30132+
return (DirectWrite) super.setAccessToken(accessToken);
30133+
}
30134+
30135+
@Override
30136+
public DirectWrite setAlt(java.lang.String alt) {
30137+
return (DirectWrite) super.setAlt(alt);
30138+
}
30139+
30140+
@Override
30141+
public DirectWrite setCallback(java.lang.String callback) {
30142+
return (DirectWrite) super.setCallback(callback);
30143+
}
30144+
30145+
@Override
30146+
public DirectWrite setFields(java.lang.String fields) {
30147+
return (DirectWrite) super.setFields(fields);
30148+
}
30149+
30150+
@Override
30151+
public DirectWrite setKey(java.lang.String key) {
30152+
return (DirectWrite) super.setKey(key);
30153+
}
30154+
30155+
@Override
30156+
public DirectWrite setOauthToken(java.lang.String oauthToken) {
30157+
return (DirectWrite) super.setOauthToken(oauthToken);
30158+
}
30159+
30160+
@Override
30161+
public DirectWrite setPrettyPrint(java.lang.Boolean prettyPrint) {
30162+
return (DirectWrite) super.setPrettyPrint(prettyPrint);
30163+
}
30164+
30165+
@Override
30166+
public DirectWrite setQuotaUser(java.lang.String quotaUser) {
30167+
return (DirectWrite) super.setQuotaUser(quotaUser);
30168+
}
30169+
30170+
@Override
30171+
public DirectWrite setUploadType(java.lang.String uploadType) {
30172+
return (DirectWrite) super.setUploadType(uploadType);
30173+
}
30174+
30175+
@Override
30176+
public DirectWrite setUploadProtocol(java.lang.String uploadProtocol) {
30177+
return (DirectWrite) super.setUploadProtocol(uploadProtocol);
30178+
}
30179+
30180+
/**
30181+
* FeatureView resource format `projects/{project}/locations/{location}/featureOnlineSto
30182+
* res/{featureOnlineStore}/featureViews/{featureView}`
30183+
*/
30184+
@com.google.api.client.util.Key
30185+
private java.lang.String featureView;
30186+
30187+
/** FeatureView resource format `projects/{project}/locations/{location}/featureOnlineStores/{featureOn
30188+
lineStore}/featureViews/{featureView}`
30189+
*/
30190+
public java.lang.String getFeatureView() {
30191+
return featureView;
30192+
}
30193+
30194+
/**
30195+
* FeatureView resource format `projects/{project}/locations/{location}/featureOnlineSto
30196+
* res/{featureOnlineStore}/featureViews/{featureView}`
30197+
*/
30198+
public DirectWrite setFeatureView(java.lang.String featureView) {
30199+
if (!getSuppressPatternChecks()) {
30200+
com.google.api.client.util.Preconditions.checkArgument(FEATURE_VIEW_PATTERN.matcher(featureView).matches(),
30201+
"Parameter featureView must conform to the pattern " +
30202+
"^projects/[^/]+/locations/[^/]+/featureOnlineStores/[^/]+/featureViews/[^/]+$");
30203+
}
30204+
this.featureView = featureView;
30205+
return this;
30206+
}
30207+
30208+
@Override
30209+
public DirectWrite set(String parameterName, Object value) {
30210+
return (DirectWrite) super.set(parameterName, value);
30211+
}
30212+
}
3006930213
/**
3007030214
* Fetch feature values under a FeatureView.
3007130215
*

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

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

32+
/**
33+
* Output only. The deployment stage of the model. Only populated if this CreateEndpoint request
34+
* deploys a model at the same time.
35+
* The value may be {@code null}.
36+
*/
37+
@com.google.api.client.util.Key
38+
private java.lang.String deploymentStage;
39+
3240
/**
3341
* The operation generic information.
3442
* The value may be {@code null}.
3543
*/
3644
@com.google.api.client.util.Key
3745
private GoogleCloudAiplatformV1GenericOperationMetadata genericMetadata;
3846

47+
/**
48+
* Output only. The deployment stage of the model. Only populated if this CreateEndpoint request
49+
* deploys a model at the same time.
50+
* @return value or {@code null} for none
51+
*/
52+
public java.lang.String getDeploymentStage() {
53+
return deploymentStage;
54+
}
55+
56+
/**
57+
* Output only. The deployment stage of the model. Only populated if this CreateEndpoint request
58+
* deploys a model at the same time.
59+
* @param deploymentStage deploymentStage or {@code null} for none
60+
*/
61+
public GoogleCloudAiplatformV1CreateEndpointOperationMetadata setDeploymentStage(java.lang.String deploymentStage) {
62+
this.deploymentStage = deploymentStage;
63+
return this;
64+
}
65+
3966
/**
4067
* The operation generic information.
4168
* @return value or {@code null} for none

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

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

32+
/**
33+
* Output only. The deployment stage of the model.
34+
* The value may be {@code null}.
35+
*/
36+
@com.google.api.client.util.Key
37+
private java.lang.String deploymentStage;
38+
3239
/**
3340
* The operation generic information.
3441
* The value may be {@code null}.
3542
*/
3643
@com.google.api.client.util.Key
3744
private GoogleCloudAiplatformV1GenericOperationMetadata genericMetadata;
3845

46+
/**
47+
* Output only. The deployment stage of the model.
48+
* @return value or {@code null} for none
49+
*/
50+
public java.lang.String getDeploymentStage() {
51+
return deploymentStage;
52+
}
53+
54+
/**
55+
* Output only. The deployment stage of the model.
56+
* @param deploymentStage deploymentStage or {@code null} for none
57+
*/
58+
public GoogleCloudAiplatformV1DeployModelOperationMetadata setDeploymentStage(java.lang.String deploymentStage) {
59+
this.deploymentStage = deploymentStage;
60+
return this;
61+
}
62+
3963
/**
4064
* The operation generic information.
4165
* @return value or {@code null} for none
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,66 @@
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+
* Request message for FeatureOnlineStoreService.FeatureViewDirectWrite.
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 GoogleCloudAiplatformV1FeatureViewDirectWriteRequest extends com.google.api.client.json.GenericJson {
31+
32+
/**
33+
* Required. The data keys and associated feature values.
34+
* The value may be {@code null}.
35+
*/
36+
@com.google.api.client.util.Key
37+
private java.util.List<GoogleCloudAiplatformV1FeatureViewDirectWriteRequestDataKeyAndFeatureValues> dataKeyAndFeatureValues;
38+
39+
/**
40+
* Required. The data keys and associated feature values.
41+
* @return value or {@code null} for none
42+
*/
43+
public java.util.List<GoogleCloudAiplatformV1FeatureViewDirectWriteRequestDataKeyAndFeatureValues> getDataKeyAndFeatureValues() {
44+
return dataKeyAndFeatureValues;
45+
}
46+
47+
/**
48+
* Required. The data keys and associated feature values.
49+
* @param dataKeyAndFeatureValues dataKeyAndFeatureValues or {@code null} for none
50+
*/
51+
public GoogleCloudAiplatformV1FeatureViewDirectWriteRequest setDataKeyAndFeatureValues(java.util.List<GoogleCloudAiplatformV1FeatureViewDirectWriteRequestDataKeyAndFeatureValues> dataKeyAndFeatureValues) {
52+
this.dataKeyAndFeatureValues = dataKeyAndFeatureValues;
53+
return this;
54+
}
55+
56+
@Override
57+
public GoogleCloudAiplatformV1FeatureViewDirectWriteRequest set(String fieldName, Object value) {
58+
return (GoogleCloudAiplatformV1FeatureViewDirectWriteRequest) super.set(fieldName, value);
59+
}
60+
61+
@Override
62+
public GoogleCloudAiplatformV1FeatureViewDirectWriteRequest clone() {
63+
return (GoogleCloudAiplatformV1FeatureViewDirectWriteRequest) super.clone();
64+
}
65+
66+
}

0 commit comments

Comments
 (0)