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

Expand Down

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,13 @@ public final class CloudAiLargeModelsVisionGenerateVideoExperiments extends com.
@com.google.api.client.util.Key
private java.lang.Boolean anchorLastFrame;

/**
* CFG scale for video-transform, perf-generation, a2v, video-textures models.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.Float cfgScale;

/**
* Optional. Video codec to use for output.
* The value may be {@code null}.
Expand Down Expand Up @@ -166,6 +173,23 @@ public CloudAiLargeModelsVisionGenerateVideoExperiments setAnchorLastFrame(java.
return this;
}

/**
* CFG scale for video-transform, perf-generation, a2v, video-textures models.
* @return value or {@code null} for none
*/
public java.lang.Float getCfgScale() {
return cfgScale;
}

/**
* CFG scale for video-transform, perf-generation, a2v, video-textures models.
* @param cfgScale cfgScale or {@code null} for none
*/
public CloudAiLargeModelsVisionGenerateVideoExperiments setCfgScale(java.lang.Float cfgScale) {
this.cfgScale = cfgScale;
return this;
}

/**
* Optional. Video codec to use for output.
* @return value or {@code null} for none
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,14 @@ public final class GoogleCloudAiplatformV1EvaluationMetric extends com.google.ap
@com.google.api.client.util.Key
private java.lang.String displayName;

/**
* Optional. Customer-managed encryption key spec for this EvaluationMetric. If set, this
* EvaluationMetric will be secured by this key.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private GoogleCloudAiplatformV1EncryptionSpec encryptionSpec;

/**
* Optional. The Google Cloud Storage URI that stores the metric specification..
* The value may be {@code null}.
Expand Down Expand Up @@ -137,6 +145,25 @@ public GoogleCloudAiplatformV1EvaluationMetric setDisplayName(java.lang.String d
return this;
}

/**
* Optional. Customer-managed encryption key spec for this EvaluationMetric. If set, this
* EvaluationMetric will be secured by this key.
* @return value or {@code null} for none
*/
public GoogleCloudAiplatformV1EncryptionSpec getEncryptionSpec() {
return encryptionSpec;
}

/**
* Optional. Customer-managed encryption key spec for this EvaluationMetric. If set, this
* EvaluationMetric will be secured by this key.
* @param encryptionSpec encryptionSpec or {@code null} for none
*/
public GoogleCloudAiplatformV1EvaluationMetric setEncryptionSpec(GoogleCloudAiplatformV1EncryptionSpec encryptionSpec) {
this.encryptionSpec = encryptionSpec;
return this;
}

/**
* Optional. The Google Cloud Storage URI that stores the metric specification..
* @return value or {@code null} for none
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-rev20260703-2.0.0</version>
<name>Agent Platform API v1-rev20260703-2.0.0</name>
<version>v1-rev20260704-2.0.0</version>
<name>Agent Platform API v1-rev20260704-2.0.0</name>
<packaging>jar</packaging>

<inceptionYear>2011</inceptionYear>
Expand Down
4 changes: 2 additions & 2 deletions clients/google-api-services-aiplatform/v1/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-rev20260703-2.0.0</version>
<version>v1-rev20260704-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-rev20260703-2.0.0'
implementation 'com.google.apis:google-api-services-aiplatform:v1-rev20260704-2.0.0'
}
```

Expand Down
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>v1beta1-rev20260703-2.0.0</version>
<version>v1beta1-rev20260704-2.0.0</version>
</dependency>
</dependencies>
</project>
Expand All @@ -35,7 +35,7 @@ repositories {
mavenCentral()
}
dependencies {
implementation 'com.google.apis:google-api-services-aiplatform:v1beta1-rev20260703-2.0.0'
implementation 'com.google.apis:google-api-services-aiplatform:v1beta1-rev20260704-2.0.0'
}
```

Expand Down
Loading
Loading