google-apis-ces_v1 0.10.0 → 0.11.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 628f6410acc68e771f1c519a9955f51b959976b1010dc74a21fd5ed60d851345
|
|
4
|
+
data.tar.gz: 7f2ea6cfe122b7a0d98965aa731fa18f3475938d4e8383f94785d7076e5acb04
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 319fecd9f314e634497d2553cbc171b7c06613f5757bfa5c16d2667046a8302af431c0c3ef0e05c709e53cdf3f17e31d13f79908a035f045dfc8712e3a5c93d4
|
|
7
|
+
data.tar.gz: 750ee3638c1a2800a55fd23010aca80016f4d30d41af91888024ff852838c80701d14fcd7618bbc5867569fe0cc55a4b6e0b514f782763fcaa9a31bd3086b1a2
|
data/CHANGELOG.md
CHANGED
|
@@ -2775,6 +2775,18 @@ module Google
|
|
|
2775
2775
|
# @return [Google::Apis::CesV1::InstagramCredentials]
|
|
2776
2776
|
attr_accessor :instagram_credentials
|
|
2777
2777
|
|
|
2778
|
+
# Optional. The modality of the deployment. Note: Deployment-level modality
|
|
2779
|
+
# override is gated behind an allowlist. Contact the CXAS team to enable this
|
|
2780
|
+
# field.
|
|
2781
|
+
# Corresponds to the JSON property `modality`
|
|
2782
|
+
# @return [String]
|
|
2783
|
+
attr_accessor :modality
|
|
2784
|
+
|
|
2785
|
+
# Model settings contains various configurations for the LLM model.
|
|
2786
|
+
# Corresponds to the JSON property `modelSettings`
|
|
2787
|
+
# @return [Google::Apis::CesV1::ModelSettings]
|
|
2788
|
+
attr_accessor :model_settings
|
|
2789
|
+
|
|
2778
2790
|
# Identifier. The resource name of the deployment. Format: `projects/`project`/
|
|
2779
2791
|
# locations/`location`/apps/`app`/deployments/`deployment``
|
|
2780
2792
|
# Corresponds to the JSON property `name`
|
|
@@ -2804,6 +2816,8 @@ module Google
|
|
|
2804
2816
|
@etag = args[:etag] if args.key?(:etag)
|
|
2805
2817
|
@experiment_config = args[:experiment_config] if args.key?(:experiment_config)
|
|
2806
2818
|
@instagram_credentials = args[:instagram_credentials] if args.key?(:instagram_credentials)
|
|
2819
|
+
@modality = args[:modality] if args.key?(:modality)
|
|
2820
|
+
@model_settings = args[:model_settings] if args.key?(:model_settings)
|
|
2807
2821
|
@name = args[:name] if args.key?(:name)
|
|
2808
2822
|
@update_time = args[:update_time] if args.key?(:update_time)
|
|
2809
2823
|
@whatsapp_credentials = args[:whatsapp_credentials] if args.key?(:whatsapp_credentials)
|
|
@@ -4611,7 +4625,12 @@ module Google
|
|
|
4611
4625
|
# @return [String]
|
|
4612
4626
|
attr_accessor :protocol_version
|
|
4613
4627
|
|
|
4614
|
-
#
|
|
4628
|
+
# Optional. An opaque string used for routing requests to a specific agent or
|
|
4629
|
+
# tenant when multiple agents are served behind a single A2A endpoint. When set,
|
|
4630
|
+
# clients MUST include this value in the `tenant` field of all request messages
|
|
4631
|
+
# sent to this interface. The server is responsible for interpreting the value
|
|
4632
|
+
# and routing requests accordingly; the protocol does not define its format or
|
|
4633
|
+
# semantics.
|
|
4615
4634
|
# Corresponds to the JSON property `tenant`
|
|
4616
4635
|
# @return [String]
|
|
4617
4636
|
attr_accessor :tenant
|
|
@@ -5545,7 +5564,8 @@ module Google
|
|
|
5545
5564
|
# @return [String]
|
|
5546
5565
|
attr_accessor :task_id
|
|
5547
5566
|
|
|
5548
|
-
# Optional.
|
|
5567
|
+
# Optional. Opaque routing identifier. Must match the `tenant` value from the
|
|
5568
|
+
# selected `AgentInterface` in the Agent Card when that field is set.
|
|
5549
5569
|
# Corresponds to the JSON property `tenant`
|
|
5550
5570
|
# @return [String]
|
|
5551
5571
|
attr_accessor :tenant
|
|
@@ -7691,6 +7711,11 @@ module Google
|
|
|
7691
7711
|
class SynthesizeSpeechConfig
|
|
7692
7712
|
include Google::Apis::Core::Hashable
|
|
7693
7713
|
|
|
7714
|
+
# Optional. The Cloud Storage URI to the consent audio for voice cloning.
|
|
7715
|
+
# Corresponds to the JSON property `consentAudioGcsUri`
|
|
7716
|
+
# @return [String]
|
|
7717
|
+
attr_accessor :consent_audio_gcs_uri
|
|
7718
|
+
|
|
7694
7719
|
# Optional. The instruction used to synthesize speech when using a generative
|
|
7695
7720
|
# model.
|
|
7696
7721
|
# Corresponds to the JSON property `instruction`
|
|
@@ -7732,6 +7757,7 @@ module Google
|
|
|
7732
7757
|
|
|
7733
7758
|
# Update properties of this object
|
|
7734
7759
|
def update!(**args)
|
|
7760
|
+
@consent_audio_gcs_uri = args[:consent_audio_gcs_uri] if args.key?(:consent_audio_gcs_uri)
|
|
7735
7761
|
@instruction = args[:instruction] if args.key?(:instruction)
|
|
7736
7762
|
@model = args[:model] if args.key?(:model)
|
|
7737
7763
|
@speaking_rate = args[:speaking_rate] if args.key?(:speaking_rate)
|
|
@@ -16,13 +16,13 @@ module Google
|
|
|
16
16
|
module Apis
|
|
17
17
|
module CesV1
|
|
18
18
|
# Version of the google-apis-ces_v1 gem
|
|
19
|
-
GEM_VERSION = "0.
|
|
19
|
+
GEM_VERSION = "0.11.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
22
|
GENERATOR_VERSION = "0.19.0"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20260715"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -2067,6 +2067,9 @@ module Google
|
|
|
2067
2067
|
|
|
2068
2068
|
property :instagram_credentials, as: 'instagramCredentials', class: Google::Apis::CesV1::InstagramCredentials, decorator: Google::Apis::CesV1::InstagramCredentials::Representation
|
|
2069
2069
|
|
|
2070
|
+
property :modality, as: 'modality'
|
|
2071
|
+
property :model_settings, as: 'modelSettings', class: Google::Apis::CesV1::ModelSettings, decorator: Google::Apis::CesV1::ModelSettings::Representation
|
|
2072
|
+
|
|
2070
2073
|
property :name, as: 'name'
|
|
2071
2074
|
property :update_time, as: 'updateTime'
|
|
2072
2075
|
property :whatsapp_credentials, as: 'whatsappCredentials', class: Google::Apis::CesV1::WhatsAppCredentials, decorator: Google::Apis::CesV1::WhatsAppCredentials::Representation
|
|
@@ -3450,6 +3453,7 @@ module Google
|
|
|
3450
3453
|
class SynthesizeSpeechConfig
|
|
3451
3454
|
# @private
|
|
3452
3455
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
3456
|
+
property :consent_audio_gcs_uri, as: 'consentAudioGcsUri'
|
|
3453
3457
|
property :instruction, as: 'instruction'
|
|
3454
3458
|
property :model, as: 'model'
|
|
3455
3459
|
property :speaking_rate, as: 'speakingRate'
|
|
@@ -310,7 +310,8 @@ module Google
|
|
|
310
310
|
|
|
311
311
|
# Gets the extended agent card for the authenticated agent.
|
|
312
312
|
# @param [String] tenant
|
|
313
|
-
# Optional.
|
|
313
|
+
# Optional. Opaque routing identifier. Must match the `tenant` value from the
|
|
314
|
+
# selected `AgentInterface` in the Agent Card when that field is set.
|
|
314
315
|
# @param [String] fields
|
|
315
316
|
# Selector specifying which fields to include in a partial response.
|
|
316
317
|
# @param [String] quota_user
|
|
@@ -1027,7 +1028,8 @@ module Google
|
|
|
1027
1028
|
|
|
1028
1029
|
# Gets the extended agent card for the authenticated agent.
|
|
1029
1030
|
# @param [String] tenant
|
|
1030
|
-
# Optional.
|
|
1031
|
+
# Optional. Opaque routing identifier. Must match the `tenant` value from the
|
|
1032
|
+
# selected `AgentInterface` in the Agent Card when that field is set.
|
|
1031
1033
|
# @param [String] fields
|
|
1032
1034
|
# Selector specifying which fields to include in a partial response.
|
|
1033
1035
|
# @param [String] quota_user
|
|
@@ -1140,7 +1142,8 @@ module Google
|
|
|
1140
1142
|
|
|
1141
1143
|
# Sends a message to an agent.
|
|
1142
1144
|
# @param [String] tenant
|
|
1143
|
-
# Optional.
|
|
1145
|
+
# Optional. Opaque routing identifier. Must match the `tenant` value from the
|
|
1146
|
+
# selected `AgentInterface` in the Agent Card when that field is set.
|
|
1144
1147
|
# @param [Google::Apis::CesV1::LfA2aV1SendMessageRequest] lf_a2a_v1_send_message_request_object
|
|
1145
1148
|
# @param [String] fields
|
|
1146
1149
|
# Selector specifying which fields to include in a partial response.
|
|
@@ -1556,7 +1559,8 @@ module Google
|
|
|
1556
1559
|
|
|
1557
1560
|
# Sends a message to an agent.
|
|
1558
1561
|
# @param [String] tenant
|
|
1559
|
-
# Optional.
|
|
1562
|
+
# Optional. Opaque routing identifier. Must match the `tenant` value from the
|
|
1563
|
+
# selected `AgentInterface` in the Agent Card when that field is set.
|
|
1560
1564
|
# @param [Google::Apis::CesV1::LfA2aV1SendMessageRequest] lf_a2a_v1_send_message_request_object
|
|
1561
1565
|
# @param [String] fields
|
|
1562
1566
|
# Selector specifying which fields to include in a partial response.
|
|
@@ -2227,7 +2231,8 @@ module Google
|
|
|
2227
2231
|
|
|
2228
2232
|
# Gets the extended agent card for the authenticated agent.
|
|
2229
2233
|
# @param [String] tenant
|
|
2230
|
-
# Optional.
|
|
2234
|
+
# Optional. Opaque routing identifier. Must match the `tenant` value from the
|
|
2235
|
+
# selected `AgentInterface` in the Agent Card when that field is set.
|
|
2231
2236
|
# @param [String] fields
|
|
2232
2237
|
# Selector specifying which fields to include in a partial response.
|
|
2233
2238
|
# @param [String] quota_user
|
|
@@ -2338,7 +2343,8 @@ module Google
|
|
|
2338
2343
|
|
|
2339
2344
|
# Sends a message to an agent.
|
|
2340
2345
|
# @param [String] tenant
|
|
2341
|
-
# Optional.
|
|
2346
|
+
# Optional. Opaque routing identifier. Must match the `tenant` value from the
|
|
2347
|
+
# selected `AgentInterface` in the Agent Card when that field is set.
|
|
2342
2348
|
# @param [Google::Apis::CesV1::LfA2aV1SendMessageRequest] lf_a2a_v1_send_message_request_object
|
|
2343
2349
|
# @param [String] fields
|
|
2344
2350
|
# Selector specifying which fields to include in a partial response.
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-apis-ces_v1
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.11.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Google LLC
|
|
@@ -58,7 +58,7 @@ licenses:
|
|
|
58
58
|
metadata:
|
|
59
59
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
|
60
60
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-ces_v1/CHANGELOG.md
|
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-ces_v1/v0.
|
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-ces_v1/v0.11.0
|
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-ces_v1
|
|
63
63
|
rdoc_options: []
|
|
64
64
|
require_paths:
|