diff --git a/clients/google-api-services-ces/v1/2.0.0/README.md b/clients/google-api-services-ces/v1/2.0.0/README.md index 55d3c7f67a0..327e608f036 100644 --- a/clients/google-api-services-ces/v1/2.0.0/README.md +++ b/clients/google-api-services-ces/v1/2.0.0/README.md @@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file: com.google.apis google-api-services-ces - v1-rev20260730-2.0.0 + v1-rev20260806-2.0.0 @@ -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' } ``` diff --git a/clients/google-api-services-ces/v1/2.0.0/com/google/api/services/ces/v1/CustomerEngagementSuite.java b/clients/google-api-services-ces/v1/2.0.0/com/google/api/services/ces/v1/CustomerEngagementSuite.java index 678879fbecc..f7ce6c1f914 100644 --- a/clients/google-api-services-ces/v1/2.0.0/com/google/api/services/ces/v1/CustomerEngagementSuite.java +++ b/clients/google-api-services-ces/v1/2.0.0/com/google/api/services/ces/v1/CustomerEngagementSuite.java @@ -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); diff --git a/clients/google-api-services-ces/v1/2.0.0/com/google/api/services/ces/v1/model/ConversationTurn.java b/clients/google-api-services-ces/v1/2.0.0/com/google/api/services/ces/v1/model/ConversationTurn.java index 9f320519efe..da0eb46f2e6 100644 --- a/clients/google-api-services-ces/v1/2.0.0/com/google/api/services/ces/v1/model/ConversationTurn.java +++ b/clients/google-api-services-ces/v1/2.0.0/com/google/api/services/ces/v1/model/ConversationTurn.java @@ -38,6 +38,14 @@ public final class ConversationTurn extends com.google.api.client.json.GenericJs @com.google.api.client.util.Key private java.util.List 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}. @@ -45,6 +53,14 @@ public final class ConversationTurn extends com.google.api.client.json.GenericJs @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 templateAttributes; + /** * Optional. The intended ground-truth text from the Simulated Caller (Polysynth). Only populated * when word error rate metrics are enabled. @@ -72,6 +88,25 @@ public ConversationTurn setMessages(java.util.List 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 @@ -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 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 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. diff --git a/clients/google-api-services-ces/v1/2.0.0/pom.xml b/clients/google-api-services-ces/v1/2.0.0/pom.xml index 41278f4cfcc..7a0c8a0f8dc 100644 --- a/clients/google-api-services-ces/v1/2.0.0/pom.xml +++ b/clients/google-api-services-ces/v1/2.0.0/pom.xml @@ -8,8 +8,8 @@ com.google.apis google-api-services-ces - v1-rev20260730-2.0.0 - Gemini Enterprise for Customer Experience API v1-rev20260730-2.0.0 + v1-rev20260806-2.0.0 + Gemini Enterprise for Customer Experience API v1-rev20260806-2.0.0 jar 2011 diff --git a/clients/google-api-services-ces/v1/README.md b/clients/google-api-services-ces/v1/README.md index 55d3c7f67a0..327e608f036 100644 --- a/clients/google-api-services-ces/v1/README.md +++ b/clients/google-api-services-ces/v1/README.md @@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file: com.google.apis google-api-services-ces - v1-rev20260730-2.0.0 + v1-rev20260806-2.0.0 @@ -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' } ```