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-rev20260718-2.0.0</version>
<version>v1-rev20260725-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-rev20260718-2.0.0'
implementation 'com.google.apis:google-api-services-aiplatform:v1-rev20260725-2.0.0'
}
```

Expand Down

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,13 @@ public final class CloudAiLargeModelsVisionGenerateVideoExperiments extends com.
@com.google.api.client.util.Key
private java.util.Map<String, java.lang.Object> customParameters;

/**
* Optional. Colorspace to be used for all EXR inputs.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.String exrColorSpaceOverride;

/**
* Human pose parameters for Pose Control
* The value may be {@code null}.
Expand Down Expand Up @@ -283,6 +290,23 @@ public CloudAiLargeModelsVisionGenerateVideoExperiments setCustomParameters(java
return this;
}

/**
* Optional. Colorspace to be used for all EXR inputs.
* @return value or {@code null} for none
*/
public java.lang.String getExrColorSpaceOverride() {
return exrColorSpaceOverride;
}

/**
* Optional. Colorspace to be used for all EXR inputs.
* @param exrColorSpaceOverride exrColorSpaceOverride or {@code null} for none
*/
public CloudAiLargeModelsVisionGenerateVideoExperiments setExrColorSpaceOverride(java.lang.String exrColorSpaceOverride) {
this.exrColorSpaceOverride = exrColorSpaceOverride;
return this;
}

/**
* Human pose parameters for Pose Control
* @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 GoogleCloudAiplatformV1CodeExecutionResult extends com.google.api.client.json.GenericJson {

/**
* Optional. The identifier of the `ExecutableCode` part this result is for. Only populated if the
* corresponding `ExecutableCode` has an id.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.String id;

/**
* Required. Outcome of the code execution.
* The value may be {@code null}.
Expand All @@ -44,6 +52,25 @@ public final class GoogleCloudAiplatformV1CodeExecutionResult extends com.google
@com.google.api.client.util.Key
private java.lang.String output;

/**
* Optional. The identifier of the `ExecutableCode` part this result is for. Only populated if the
* corresponding `ExecutableCode` has an id.
* @return value or {@code null} for none
*/
public java.lang.String getId() {
return id;
}

/**
* Optional. The identifier of the `ExecutableCode` part this result is for. Only populated if the
* corresponding `ExecutableCode` has an id.
* @param id id or {@code null} for none
*/
public GoogleCloudAiplatformV1CodeExecutionResult setId(java.lang.String id) {
this.id = id;
return this;
}

/**
* Required. Outcome of the code execution.
* @return value or {@code null} for none
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,14 @@ public final class GoogleCloudAiplatformV1ExecutableCode extends com.google.api.
@com.google.api.client.util.Key
private java.lang.String code;

/**
* Optional. Unique identifier of the `ExecutableCode` part. The server returns the
* `CodeExecutionResult` with the matching `id`.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.String id;

/**
* Required. Programming language of the `code`.
* The value may be {@code null}.
Expand All @@ -62,6 +70,25 @@ public GoogleCloudAiplatformV1ExecutableCode setCode(java.lang.String code) {
return this;
}

/**
* Optional. Unique identifier of the `ExecutableCode` part. The server returns the
* `CodeExecutionResult` with the matching `id`.
* @return value or {@code null} for none
*/
public java.lang.String getId() {
return id;
}

/**
* Optional. Unique identifier of the `ExecutableCode` part. The server returns the
* `CodeExecutionResult` with the matching `id`.
* @param id id or {@code null} for none
*/
public GoogleCloudAiplatformV1ExecutableCode setId(java.lang.String id) {
this.id = id;
return this;
}

/**
* Required. Programming language of the `code`.
* @return value or {@code null} for none
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,14 @@ public final class GoogleCloudAiplatformV1FunctionCall extends com.google.api.cl
@com.google.api.client.util.Key
private java.util.Map<String, java.lang.Object> args;

/**
* Optional. The unique id of the function call. If populated, the client to execute the
* `function_call` and return the response with the matching `id`.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.String id;

/**
* Optional. The name of the function to call. Matches FunctionDeclaration.name.
* The value may be {@code null}.
Expand Down Expand Up @@ -80,6 +88,25 @@ public GoogleCloudAiplatformV1FunctionCall setArgs(java.util.Map<String, java.la
return this;
}

/**
* Optional. The unique id of the function call. If populated, the client to execute the
* `function_call` and return the response with the matching `id`.
* @return value or {@code null} for none
*/
public java.lang.String getId() {
return id;
}

/**
* Optional. The unique id of the function call. If populated, the client to execute the
* `function_call` and return the response with the matching `id`.
* @param id id or {@code null} for none
*/
public GoogleCloudAiplatformV1FunctionCall setId(java.lang.String id) {
this.id = id;
return this;
}

/**
* Optional. The name of the function to call. Matches FunctionDeclaration.name.
* @return value or {@code null} for none
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,14 @@
@SuppressWarnings("javadoc")
public final class GoogleCloudAiplatformV1FunctionResponse extends com.google.api.client.json.GenericJson {

/**
* Optional. The id of the function call this response is for. Populated by the client to match
* the corresponding function call `id`.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.String id;

/**
* Required. The name of the function to call. Matches FunctionDeclaration.name and
* FunctionCall.name.
Expand Down Expand Up @@ -65,6 +73,25 @@ public final class GoogleCloudAiplatformV1FunctionResponse extends com.google.ap
@com.google.api.client.util.Key
private java.lang.String scheduling;

/**
* Optional. The id of the function call this response is for. Populated by the client to match
* the corresponding function call `id`.
* @return value or {@code null} for none
*/
public java.lang.String getId() {
return id;
}

/**
* Optional. The id of the function call this response is for. Populated by the client to match
* the corresponding function call `id`.
* @param id id or {@code null} for none
*/
public GoogleCloudAiplatformV1FunctionResponse setId(java.lang.String id) {
this.id = id;
return this;
}

/**
* Required. The name of the function to call. Matches FunctionDeclaration.name and
* FunctionCall.name.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,14 @@ public final class GoogleCloudAiplatformV1GoogleMaps extends com.google.api.clie
@com.google.api.client.util.Key
private java.lang.Boolean enableWidget;

/**
* Optional. Specifies the types of Google Maps grounding to enable. Defaults to `places` when
* unset.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private GoogleCloudAiplatformV1GoogleMapsGroundingTypes groundingTypes;

/**
* Optional. Deprecated: The Google Maps contextual widget behavior in Grounding with Google Maps
* is being deprecated; this field is planned for removal and no longer has any effect once
Expand All @@ -59,6 +67,25 @@ public GoogleCloudAiplatformV1GoogleMaps setEnableWidget(java.lang.Boolean enabl
return this;
}

/**
* Optional. Specifies the types of Google Maps grounding to enable. Defaults to `places` when
* unset.
* @return value or {@code null} for none
*/
public GoogleCloudAiplatformV1GoogleMapsGroundingTypes getGroundingTypes() {
return groundingTypes;
}

/**
* Optional. Specifies the types of Google Maps grounding to enable. Defaults to `places` when
* unset.
* @param groundingTypes groundingTypes or {@code null} for none
*/
public GoogleCloudAiplatformV1GoogleMaps setGroundingTypes(GoogleCloudAiplatformV1GoogleMapsGroundingTypes groundingTypes) {
this.groundingTypes = groundingTypes;
return this;
}

@Override
public GoogleCloudAiplatformV1GoogleMaps set(String fieldName, Object value) {
return (GoogleCloudAiplatformV1GoogleMaps) super.set(fieldName, value);
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,93 @@
/*
* 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;

/**
* Defines the types of Google Maps grounding that can be enabled and their configurations.
*
* <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 GoogleCloudAiplatformV1GoogleMapsGroundingTypes extends com.google.api.client.json.GenericJson {

/**
* Optional. Enables grounding with Google Maps Places. This is the default grounding type when no
* `GroundingTypes` are specified.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private GoogleCloudAiplatformV1GoogleMapsPlaces places;

/**
* Optional. Enables grounding with Google Maps Routing APIs (ComputeRoutes and SearchAlongRoute).
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private GoogleCloudAiplatformV1GoogleMapsRouting routing;

/**
* Optional. Enables grounding with Google Maps Places. This is the default grounding type when no
* `GroundingTypes` are specified.
* @return value or {@code null} for none
*/
public GoogleCloudAiplatformV1GoogleMapsPlaces getPlaces() {
return places;
}

/**
* Optional. Enables grounding with Google Maps Places. This is the default grounding type when no
* `GroundingTypes` are specified.
* @param places places or {@code null} for none
*/
public GoogleCloudAiplatformV1GoogleMapsGroundingTypes setPlaces(GoogleCloudAiplatformV1GoogleMapsPlaces places) {
this.places = places;
return this;
}

/**
* Optional. Enables grounding with Google Maps Routing APIs (ComputeRoutes and SearchAlongRoute).
* @return value or {@code null} for none
*/
public GoogleCloudAiplatformV1GoogleMapsRouting getRouting() {
return routing;
}

/**
* Optional. Enables grounding with Google Maps Routing APIs (ComputeRoutes and SearchAlongRoute).
* @param routing routing or {@code null} for none
*/
public GoogleCloudAiplatformV1GoogleMapsGroundingTypes setRouting(GoogleCloudAiplatformV1GoogleMapsRouting routing) {
this.routing = routing;
return this;
}

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

@Override
public GoogleCloudAiplatformV1GoogleMapsGroundingTypes clone() {
return (GoogleCloudAiplatformV1GoogleMapsGroundingTypes) 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;

/**
* Grounding with Google Maps Places data (e.g. QueryPlaces). This is the default Google Maps
* grounding type when no other type is specified.
*
* <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 GoogleCloudAiplatformV1GoogleMapsPlaces extends com.google.api.client.json.GenericJson {

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

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

}
Loading
Loading