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-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-rev20260730-2.0.0</version>
<version>v1-rev20260806-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-rev20260730-2.0.0'
implementation 'com.google.apis:google-api-services-ces:v1-rev20260806-2.0.0'
}
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3866,6 +3866,22 @@ public Get setSource(java.lang.String source) {
return this;
}

/** Optional. The view specifying which fields in the response should be populated. */
@com.google.api.client.util.Key
private java.lang.String view;

/** Optional. The view specifying which fields in the response should be populated.
*/
public java.lang.String getView() {
return view;
}

/** Optional. The view specifying which fields in the response should be populated. */
public Get setView(java.lang.String view) {
this.view = view;
return this;
}

@Override
public Get set(String parameterName, Object value) {
return (Get) super.set(parameterName, value);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,13 +38,29 @@ public final class ConversationTurn extends com.google.api.client.json.GenericJs
@com.google.api.client.util.Key
private java.util.List<Message> messages;

/**
* Output only. The full dynamically resolved developer instruction generated from templates. This
* field is only populated on-demand when requested during history retrieval. It is not persisted.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.String resolvedDeveloperInstruction;

/**
* Optional. The root span of the action processing.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private Span rootSpan;

/**
* Optional. Variables or configurations referenced by the template engine during dynamic prompt
* generation. This allows reconstructing the exact prompt sent to the model for this turn.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.util.Map<String, java.lang.Object> templateAttributes;

/**
* Optional. The intended ground-truth text from the Simulated Caller (Polysynth). Only populated
* when word error rate metrics are enabled.
Expand Down Expand Up @@ -72,6 +88,25 @@ public ConversationTurn setMessages(java.util.List<Message> messages) {
return this;
}

/**
* Output only. The full dynamically resolved developer instruction generated from templates. This
* field is only populated on-demand when requested during history retrieval. It is not persisted.
* @return value or {@code null} for none
*/
public java.lang.String getResolvedDeveloperInstruction() {
return resolvedDeveloperInstruction;
}

/**
* Output only. The full dynamically resolved developer instruction generated from templates. This
* field is only populated on-demand when requested during history retrieval. It is not persisted.
* @param resolvedDeveloperInstruction resolvedDeveloperInstruction or {@code null} for none
*/
public ConversationTurn setResolvedDeveloperInstruction(java.lang.String resolvedDeveloperInstruction) {
this.resolvedDeveloperInstruction = resolvedDeveloperInstruction;
return this;
}

/**
* Optional. The root span of the action processing.
* @return value or {@code null} for none
Expand All @@ -89,6 +124,25 @@ public ConversationTurn setRootSpan(Span rootSpan) {
return this;
}

/**
* Optional. Variables or configurations referenced by the template engine during dynamic prompt
* generation. This allows reconstructing the exact prompt sent to the model for this turn.
* @return value or {@code null} for none
*/
public java.util.Map<String, java.lang.Object> getTemplateAttributes() {
return templateAttributes;
}

/**
* Optional. Variables or configurations referenced by the template engine during dynamic prompt
* generation. This allows reconstructing the exact prompt sent to the model for this turn.
* @param templateAttributes templateAttributes or {@code null} for none
*/
public ConversationTurn setTemplateAttributes(java.util.Map<String, java.lang.Object> templateAttributes) {
this.templateAttributes = templateAttributes;
return this;
}

/**
* Optional. The intended ground-truth text from the Simulated Caller (Polysynth). Only populated
* when word error rate metrics are enabled.
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-rev20260730-2.0.0</version>
<name>Gemini Enterprise for Customer Experience API v1-rev20260730-2.0.0</name>
<version>v1-rev20260806-2.0.0</version>
<name>Gemini Enterprise for Customer Experience API v1-rev20260806-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-rev20260730-2.0.0</version>
<version>v1-rev20260806-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-rev20260730-2.0.0'
implementation 'com.google.apis:google-api-services-ces:v1-rev20260806-2.0.0'
}
```

Expand Down
Loading