Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions clients/google-api-services-aiplatform/v1/2.0.0/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
<dependency>
<groupId>com.google.apis</groupId>
<artifactId>google-api-services-aiplatform</artifactId>
<version>v1-rev20260815-2.0.0</version>
<version>v1-rev20260822-2.0.0</version>
</dependency>
</dependencies>
</project>
Expand All @@ -35,7 +35,7 @@ repositories {
mavenCentral()
}
dependencies {
implementation 'com.google.apis:google-api-services-aiplatform:v1-rev20260815-2.0.0'
implementation 'com.google.apis:google-api-services-aiplatform:v1-rev20260822-2.0.0'
}
```

Expand Down

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,14 @@ public final class CloudAiLargeModelsVisionGenerateVideoExperiments extends com.
@com.google.api.client.util.Key
private CloudAiLargeModelsVisionHumanPose humanPose;

/**
* Optional. BNS override for model backend. Enabled only for local and autopush environments by
* the flag `lvm_allow_model_zoo_bns_override`.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.String modelEndpointOverride;

/**
* Model names, as defined in: xyz
* The value may be {@code null}.
Expand Down Expand Up @@ -362,6 +370,25 @@ public CloudAiLargeModelsVisionGenerateVideoExperiments setHumanPose(CloudAiLarg
return this;
}

/**
* Optional. BNS override for model backend. Enabled only for local and autopush environments by
* the flag `lvm_allow_model_zoo_bns_override`.
* @return value or {@code null} for none
*/
public java.lang.String getModelEndpointOverride() {
return modelEndpointOverride;
}

/**
* Optional. BNS override for model backend. Enabled only for local and autopush environments by
* the flag `lvm_allow_model_zoo_bns_override`.
* @param modelEndpointOverride modelEndpointOverride or {@code null} for none
*/
public CloudAiLargeModelsVisionGenerateVideoExperiments setModelEndpointOverride(java.lang.String modelEndpointOverride) {
this.modelEndpointOverride = modelEndpointOverride;
return this;
}

/**
* Model names, as defined in: xyz
* @return value or {@code null} for none
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -76,17 +76,6 @@ public final class GoogleCloudAiplatformV1AudioTranscriptionConfig extends com.g
@com.google.api.client.util.Key
private GoogleCloudAiplatformV1AudioTranscriptionConfigLanguageHints languageHints;

/**
* Optional. Configures transcription mode. Supported values: `VERBATIM`, `SMART`. If unspecified,
* defaults to `VERBATIM` transcription. In `SMART` mode, the model performs disfluency removal
* (eliminating filler words, repetitions, and false starts), light grammatical cleanup, automatic
* formatting (paragraphs, bullet points, numbered lists), and minor user edits (inline self-
* corrections). Timestamps and diarization are incompatible with mode `SMART`.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.String mode;

/**
* Optional. Configures word-level timestamp generation.
* The value may be {@code null}.
Expand Down Expand Up @@ -206,31 +195,6 @@ public GoogleCloudAiplatformV1AudioTranscriptionConfig setLanguageHints(GoogleCl
return this;
}

/**
* Optional. Configures transcription mode. Supported values: `VERBATIM`, `SMART`. If unspecified,
* defaults to `VERBATIM` transcription. In `SMART` mode, the model performs disfluency removal
* (eliminating filler words, repetitions, and false starts), light grammatical cleanup, automatic
* formatting (paragraphs, bullet points, numbered lists), and minor user edits (inline self-
* corrections). Timestamps and diarization are incompatible with mode `SMART`.
* @return value or {@code null} for none
*/
public java.lang.String getMode() {
return mode;
}

/**
* Optional. Configures transcription mode. Supported values: `VERBATIM`, `SMART`. If unspecified,
* defaults to `VERBATIM` transcription. In `SMART` mode, the model performs disfluency removal
* (eliminating filler words, repetitions, and false starts), light grammatical cleanup, automatic
* formatting (paragraphs, bullet points, numbered lists), and minor user edits (inline self-
* corrections). Timestamps and diarization are incompatible with mode `SMART`.
* @param mode mode or {@code null} for none
*/
public GoogleCloudAiplatformV1AudioTranscriptionConfig setMode(java.lang.String mode) {
this.mode = mode;
return this;
}

/**
* Optional. Configures word-level timestamp generation.
* @return value or {@code null} for none
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
/*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
* in compliance with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software distributed under the License
* is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
* or implied. See the License for the specific language governing permissions and limitations under
* the License.
*/
/*
* This code was generated by https://github.com/googleapis/google-api-java-client-services/
* Modify at your own risk.
*/

package com.google.api.services.aiplatform.v1.model;

/**
* Request message for SandboxEnvironmentExecutionService.AuthorizeSandboxEnvironmentAccess.
*
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
* transmitted over HTTP when working with the Agent Platform API. For a detailed explanation see:
* <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>
* </p>
*
* @author Google, Inc.
*/
@SuppressWarnings("javadoc")
public final class GoogleCloudAiplatformV1AuthorizeSandboxEnvironmentAccessRequest extends com.google.api.client.json.GenericJson {

@Override
public GoogleCloudAiplatformV1AuthorizeSandboxEnvironmentAccessRequest set(String fieldName, Object value) {
return (GoogleCloudAiplatformV1AuthorizeSandboxEnvironmentAccessRequest) super.set(fieldName, value);
}

@Override
public GoogleCloudAiplatformV1AuthorizeSandboxEnvironmentAccessRequest clone() {
return (GoogleCloudAiplatformV1AuthorizeSandboxEnvironmentAccessRequest) super.clone();
}

}
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
/*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
* in compliance with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software distributed under the License
* is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
* or implied. See the License for the specific language governing permissions and limitations under
* the License.
*/
/*
* This code was generated by https://github.com/googleapis/google-api-java-client-services/
* Modify at your own risk.
*/

package com.google.api.services.aiplatform.v1.model;

/**
* Response message for SandboxEnvironmentExecutionService.AuthorizeSandboxEnvironmentAccess.
* Intentionally empty: a successful response is the authorization result.
*
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
* transmitted over HTTP when working with the Agent Platform API. For a detailed explanation see:
* <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>
* </p>
*
* @author Google, Inc.
*/
@SuppressWarnings("javadoc")
public final class GoogleCloudAiplatformV1AuthorizeSandboxEnvironmentAccessResponse extends com.google.api.client.json.GenericJson {

@Override
public GoogleCloudAiplatformV1AuthorizeSandboxEnvironmentAccessResponse set(String fieldName, Object value) {
return (GoogleCloudAiplatformV1AuthorizeSandboxEnvironmentAccessResponse) super.set(fieldName, value);
}

@Override
public GoogleCloudAiplatformV1AuthorizeSandboxEnvironmentAccessResponse clone() {
return (GoogleCloudAiplatformV1AuthorizeSandboxEnvironmentAccessResponse) super.clone();
}

}
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,13 @@
@SuppressWarnings("javadoc")
public final class GoogleCloudAiplatformV1Memory extends com.google.api.client.json.GenericJson {

/**
* Optional. Represents the context of the memory.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.String context;

/**
* Output only. Represents the timestamp when this Memory was created.
* The value may be {@code null}.
Expand Down Expand Up @@ -144,6 +151,23 @@ public final class GoogleCloudAiplatformV1Memory extends com.google.api.client.j
@com.google.api.client.util.Key
private String updateTime;

/**
* Optional. Represents the context of the memory.
* @return value or {@code null} for none
*/
public java.lang.String getContext() {
return context;
}

/**
* Optional. Represents the context of the memory.
* @param context context or {@code null} for none
*/
public GoogleCloudAiplatformV1Memory setContext(java.lang.String context) {
this.context = context;
return this;
}

/**
* Output only. Represents the timestamp when this Memory was created.
* @return value or {@code null} for none
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,14 @@
@SuppressWarnings("javadoc")
public final class GoogleCloudAiplatformV1MemoryRevision extends com.google.api.client.json.GenericJson {

/**
* Output only. Represents the context of the Memory Revision. The context may include context
* from both the historical revisions and the extracted content.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.String context;

/**
* Output only. Represents the timestamp when this Memory Revision was created.
* The value may be {@code null}.
Expand Down Expand Up @@ -90,6 +98,25 @@ public final class GoogleCloudAiplatformV1MemoryRevision extends com.google.api.
@com.google.api.client.util.Key
private java.util.Map<String, java.lang.Object> structuredData;

/**
* Output only. Represents the context of the Memory Revision. The context may include context
* from both the historical revisions and the extracted content.
* @return value or {@code null} for none
*/
public java.lang.String getContext() {
return context;
}

/**
* Output only. Represents the context of the Memory Revision. The context may include context
* from both the historical revisions and the extracted content.
* @param context context or {@code null} for none
*/
public GoogleCloudAiplatformV1MemoryRevision setContext(java.lang.String context) {
this.context = context;
return this;
}

/**
* Output only. Represents the timestamp when this Memory Revision was created.
* @return value or {@code null} for none
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@
public final class GoogleCloudAiplatformV1OnlineEvaluatorCloudObservability extends com.google.api.client.json.GenericJson {

/**
* Optional. Optional log view that will be used to query logs. If empty, the `_Default` view will
* be used.
* Optional. Optional log view that will be used to query logs. If empty, the project's default
* view (`projects/{project_id}`) will be used.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
Expand Down Expand Up @@ -60,25 +60,26 @@ public final class GoogleCloudAiplatformV1OnlineEvaluatorCloudObservability exte
private GoogleCloudAiplatformV1OnlineEvaluatorCloudObservabilityTraceScope traceScope;

/**
* Optional. Optional trace view that will be used to query traces. If empty, the `_Default` view
* will be used. NOTE: This field is not supported yet and will be ignored if set.
* Optional. Optional trace view that will be used to query traces. If empty, the `_AllSpans` view
* from `_Trace` US bucket will be used, i.e.
* `projects/{project_id}/locations/us/buckets/_Trace/datasets/Spans/views/_AllSpans`.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.String traceView;

/**
* Optional. Optional log view that will be used to query logs. If empty, the `_Default` view will
* be used.
* Optional. Optional log view that will be used to query logs. If empty, the project's default
* view (`projects/{project_id}`) will be used.
* @return value or {@code null} for none
*/
public java.lang.String getLogView() {
return logView;
}

/**
* Optional. Optional log view that will be used to query logs. If empty, the `_Default` view will
* be used.
* Optional. Optional log view that will be used to query logs. If empty, the project's default
* view (`projects/{project_id}`) will be used.
* @param logView logView or {@code null} for none
*/
public GoogleCloudAiplatformV1OnlineEvaluatorCloudObservability setLogView(java.lang.String logView) {
Expand Down Expand Up @@ -138,17 +139,19 @@ public GoogleCloudAiplatformV1OnlineEvaluatorCloudObservability setTraceScope(Go
}

/**
* Optional. Optional trace view that will be used to query traces. If empty, the `_Default` view
* will be used. NOTE: This field is not supported yet and will be ignored if set.
* Optional. Optional trace view that will be used to query traces. If empty, the `_AllSpans` view
* from `_Trace` US bucket will be used, i.e.
* `projects/{project_id}/locations/us/buckets/_Trace/datasets/Spans/views/_AllSpans`.
* @return value or {@code null} for none
*/
public java.lang.String getTraceView() {
return traceView;
}

/**
* Optional. Optional trace view that will be used to query traces. If empty, the `_Default` view
* will be used. NOTE: This field is not supported yet and will be ignored if set.
* Optional. Optional trace view that will be used to query traces. If empty, the `_AllSpans` view
* from `_Trace` US bucket will be used, i.e.
* `projects/{project_id}/locations/us/buckets/_Trace/datasets/Spans/views/_AllSpans`.
* @param traceView traceView or {@code null} for none
*/
public GoogleCloudAiplatformV1OnlineEvaluatorCloudObservability setTraceView(java.lang.String traceView) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,13 +29,6 @@
@SuppressWarnings("javadoc")
public final class GoogleCloudAiplatformV1SandboxEnvironmentTemplateEgressControlConfig extends com.google.api.client.json.GenericJson {

/**
* Optional. The customer VPC network that sandbox egress is routed into.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.String customerVpcNetwork;

/**
* Optional. DNS peering configurations that allow sandbox egress to resolve customer-internal
* domains via the customer VPC.
Expand All @@ -59,23 +52,6 @@ public final class GoogleCloudAiplatformV1SandboxEnvironmentTemplateEgressContro
@com.google.api.client.util.Key
private java.lang.String networkAttachment;

/**
* Optional. The customer VPC network that sandbox egress is routed into.
* @return value or {@code null} for none
*/
public java.lang.String getCustomerVpcNetwork() {
return customerVpcNetwork;
}

/**
* Optional. The customer VPC network that sandbox egress is routed into.
* @param customerVpcNetwork customerVpcNetwork or {@code null} for none
*/
public GoogleCloudAiplatformV1SandboxEnvironmentTemplateEgressControlConfig setCustomerVpcNetwork(java.lang.String customerVpcNetwork) {
this.customerVpcNetwork = customerVpcNetwork;
return this;
}

/**
* Optional. DNS peering configurations that allow sandbox egress to resolve customer-internal
* domains via the customer VPC.
Expand Down
4 changes: 2 additions & 2 deletions clients/google-api-services-aiplatform/v1/2.0.0/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@

<groupId>com.google.apis</groupId>
<artifactId>google-api-services-aiplatform</artifactId>
<version>v1-rev20260815-2.0.0</version>
<name>Agent Platform API v1-rev20260815-2.0.0</name>
<version>v1-rev20260822-2.0.0</version>
<name>Agent Platform API v1-rev20260822-2.0.0</name>
<packaging>jar</packaging>

<inceptionYear>2011</inceptionYear>
Expand Down
Loading
Loading