Skip to content
Open
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-ces/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-ces</artifactId>
<version>v1-rev20260708-2.0.0</version>
<version>v1-rev20260715-2.0.0</version>
</dependency>
</dependencies>
</project>
Expand All @@ -35,7 +35,7 @@ repositories {
mavenCentral()
}
dependencies {
implementation 'com.google.apis:google-api-services-ces:v1-rev20260708-2.0.0'
implementation 'com.google.apis:google-api-services-ces:v1-rev20260715-2.0.0'
}
```

Expand Down

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,23 @@ public final class Deployment extends com.google.api.client.json.GenericJson {
@com.google.api.client.util.Key
private InstagramCredentials instagramCredentials;

/**
* Optional. The modality of the deployment. Note: Deployment-level modality override is gated
* behind an allowlist. Contact the CXAS team to enable this field.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.String modality;

/**
* Optional. Model settings for the deployment. Overrides model settings configured at the
* app/agent levels. Note: Deployment-level model settings override is gated behind an allowlist.
* Contact the CXAS team to enable this field.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private ModelSettings modelSettings;

/**
* Identifier. The resource name of the deployment. Format:
* `projects/{project}/locations/{location}/apps/{app}/deployments/{deployment}`
Expand Down Expand Up @@ -234,6 +251,46 @@ public Deployment setInstagramCredentials(InstagramCredentials instagramCredenti
return this;
}

/**
* Optional. The modality of the deployment. Note: Deployment-level modality override is gated
* behind an allowlist. Contact the CXAS team to enable this field.
* @return value or {@code null} for none
*/
public java.lang.String getModality() {
return modality;
}

/**
* Optional. The modality of the deployment. Note: Deployment-level modality override is gated
* behind an allowlist. Contact the CXAS team to enable this field.
* @param modality modality or {@code null} for none
*/
public Deployment setModality(java.lang.String modality) {
this.modality = modality;
return this;
}

/**
* Optional. Model settings for the deployment. Overrides model settings configured at the
* app/agent levels. Note: Deployment-level model settings override is gated behind an allowlist.
* Contact the CXAS team to enable this field.
* @return value or {@code null} for none
*/
public ModelSettings getModelSettings() {
return modelSettings;
}

/**
* Optional. Model settings for the deployment. Overrides model settings configured at the
* app/agent levels. Note: Deployment-level model settings override is gated behind an allowlist.
* Contact the CXAS team to enable this field.
* @param modelSettings modelSettings or {@code null} for none
*/
public Deployment setModelSettings(ModelSettings modelSettings) {
this.modelSettings = modelSettings;
return this;
}

/**
* Identifier. The resource name of the deployment. Format:
* `projects/{project}/locations/{location}/apps/{app}/deployments/{deployment}`
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,11 @@ public final class LfA2aV1AgentInterface extends com.google.api.client.json.Gene
private java.lang.String protocolVersion;

/**
* Tenant ID to be used in the request when calling the agent.
* Optional. An opaque string used for routing requests to a specific agent or tenant when
* multiple agents are served behind a single A2A endpoint. When set, clients MUST include this
* value in the `tenant` field of all request messages sent to this interface. The server is
* responsible for interpreting the value and routing requests accordingly; the protocol does not
* define its format or semantics.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
Expand Down Expand Up @@ -105,15 +109,23 @@ public LfA2aV1AgentInterface setProtocolVersion(java.lang.String protocolVersion
}

/**
* Tenant ID to be used in the request when calling the agent.
* Optional. An opaque string used for routing requests to a specific agent or tenant when
* multiple agents are served behind a single A2A endpoint. When set, clients MUST include this
* value in the `tenant` field of all request messages sent to this interface. The server is
* responsible for interpreting the value and routing requests accordingly; the protocol does not
* define its format or semantics.
* @return value or {@code null} for none
*/
public java.lang.String getTenant() {
return tenant;
}

/**
* Tenant ID to be used in the request when calling the agent.
* Optional. An opaque string used for routing requests to a specific agent or tenant when
* multiple agents are served behind a single A2A endpoint. When set, clients MUST include this
* value in the `tenant` field of all request messages sent to this interface. The server is
* responsible for interpreting the value and routing requests accordingly; the protocol does not
* define its format or semantics.
* @param tenant tenant or {@code null} for none
*/
public LfA2aV1AgentInterface setTenant(java.lang.String tenant) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,8 @@ public final class LfA2aV1TaskPushNotificationConfig extends com.google.api.clie
private java.lang.String taskId;

/**
* Optional. Tenant ID.
* Optional. Opaque routing identifier. Must match the `tenant` value from the selected
* `AgentInterface` in the Agent Card when that field is set.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
Expand Down Expand Up @@ -127,15 +128,17 @@ public LfA2aV1TaskPushNotificationConfig setTaskId(java.lang.String taskId) {
}

/**
* Optional. Tenant ID.
* Optional. Opaque routing identifier. Must match the `tenant` value from the selected
* `AgentInterface` in the Agent Card when that field is set.
* @return value or {@code null} for none
*/
public java.lang.String getTenant() {
return tenant;
}

/**
* Optional. Tenant ID.
* Optional. Opaque routing identifier. Must match the `tenant` value from the selected
* `AgentInterface` in the Agent Card when that field is set.
* @param tenant tenant or {@code null} for none
*/
public LfA2aV1TaskPushNotificationConfig setTenant(java.lang.String tenant) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,13 @@
@SuppressWarnings("javadoc")
public final class SynthesizeSpeechConfig extends com.google.api.client.json.GenericJson {

/**
* Optional. The Cloud Storage URI to the consent audio for voice cloning.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.String consentAudioGcsUri;

/**
* Optional. The instruction used to synthesize speech when using a generative model.
* The value may be {@code null}.
Expand Down Expand Up @@ -74,6 +81,23 @@ public final class SynthesizeSpeechConfig extends com.google.api.client.json.Gen
@com.google.api.client.util.Key
private java.lang.String voiceSampleGcsUri;

/**
* Optional. The Cloud Storage URI to the consent audio for voice cloning.
* @return value or {@code null} for none
*/
public java.lang.String getConsentAudioGcsUri() {
return consentAudioGcsUri;
}

/**
* Optional. The Cloud Storage URI to the consent audio for voice cloning.
* @param consentAudioGcsUri consentAudioGcsUri or {@code null} for none
*/
public SynthesizeSpeechConfig setConsentAudioGcsUri(java.lang.String consentAudioGcsUri) {
this.consentAudioGcsUri = consentAudioGcsUri;
return this;
}

/**
* Optional. The instruction used to synthesize speech when using a generative model.
* @return value or {@code null} for none
Expand Down
4 changes: 2 additions & 2 deletions clients/google-api-services-ces/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-ces</artifactId>
<version>v1-rev20260708-2.0.0</version>
<name>Gemini Enterprise for Customer Experience API v1-rev20260708-2.0.0</name>
<version>v1-rev20260715-2.0.0</version>
<name>Gemini Enterprise for Customer Experience API v1-rev20260715-2.0.0</name>
<packaging>jar</packaging>

<inceptionYear>2011</inceptionYear>
Expand Down
4 changes: 2 additions & 2 deletions clients/google-api-services-ces/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-ces</artifactId>
<version>v1-rev20260708-2.0.0</version>
<version>v1-rev20260715-2.0.0</version>
</dependency>
</dependencies>
</project>
Expand All @@ -35,7 +35,7 @@ repositories {
mavenCentral()
}
dependencies {
implementation 'com.google.apis:google-api-services-ces:v1-rev20260708-2.0.0'
implementation 'com.google.apis:google-api-services-ces:v1-rev20260715-2.0.0'
}
```

Expand Down
Loading