google-apis-dialogflow_v3 0.49.0 → 0.50.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: c7498fbeb083674d1cfdd8d1d3905ffe494d6ea31871205262271533119d9f6e
|
|
4
|
+
data.tar.gz: 9b2a8f0062043f4cd774e2f2a3a862c619268f1b53a31f521945394883bd9e98
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 6dcfa84a45b534c649bcf89c24840a38bc66ac958c8f0c8d4a33f457c05111fb20aa44612b799bfe00bb0304c6d1cedaa1aab15f47633cfe2e62a4c5cd16db38
|
|
7
|
+
data.tar.gz: 5e5db7d007a28b841c9f921209a81de926a633b0e2cbc976ed4a85e6ff739f1385c70badfd28a1a321bd06ce22d1bccb33166eaa83c1808ae64c20708389041b
|
data/CHANGELOG.md
CHANGED
|
@@ -33,6 +33,12 @@ module Google
|
|
|
33
33
|
class GoogleCloudDialogflowCxV3AdvancedSettings
|
|
34
34
|
include Google::Apis::Core::Hashable
|
|
35
35
|
|
|
36
|
+
# Google Cloud Storage location for a Dialogflow operation that writes or
|
|
37
|
+
# exports objects (e.g. exported agent or transcripts) outside of Dialogflow.
|
|
38
|
+
# Corresponds to the JSON property `audioExportGcsDestination`
|
|
39
|
+
# @return [Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3GcsDestination]
|
|
40
|
+
attr_accessor :audio_export_gcs_destination
|
|
41
|
+
|
|
36
42
|
# Define behaviors on logging.
|
|
37
43
|
# Corresponds to the JSON property `loggingSettings`
|
|
38
44
|
# @return [Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3AdvancedSettingsLoggingSettings]
|
|
@@ -44,6 +50,7 @@ module Google
|
|
|
44
50
|
|
|
45
51
|
# Update properties of this object
|
|
46
52
|
def update!(**args)
|
|
53
|
+
@audio_export_gcs_destination = args[:audio_export_gcs_destination] if args.key?(:audio_export_gcs_destination)
|
|
47
54
|
@logging_settings = args[:logging_settings] if args.key?(:logging_settings)
|
|
48
55
|
end
|
|
49
56
|
end
|
|
@@ -172,6 +179,11 @@ module Google
|
|
|
172
179
|
# @return [Array<String>]
|
|
173
180
|
attr_accessor :supported_language_codes
|
|
174
181
|
|
|
182
|
+
# Settings related to speech generating.
|
|
183
|
+
# Corresponds to the JSON property `textToSpeechSettings`
|
|
184
|
+
# @return [Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3TextToSpeechSettings]
|
|
185
|
+
attr_accessor :text_to_speech_settings
|
|
186
|
+
|
|
175
187
|
# Required. The time zone of the agent from the [time zone database](https://www.
|
|
176
188
|
# iana.org/time-zones), e.g., America/New_York, Europe/Paris.
|
|
177
189
|
# Corresponds to the JSON property `timeZone`
|
|
@@ -197,6 +209,7 @@ module Google
|
|
|
197
209
|
@speech_to_text_settings = args[:speech_to_text_settings] if args.key?(:speech_to_text_settings)
|
|
198
210
|
@start_flow = args[:start_flow] if args.key?(:start_flow)
|
|
199
211
|
@supported_language_codes = args[:supported_language_codes] if args.key?(:supported_language_codes)
|
|
212
|
+
@text_to_speech_settings = args[:text_to_speech_settings] if args.key?(:text_to_speech_settings)
|
|
200
213
|
@time_zone = args[:time_zone] if args.key?(:time_zone)
|
|
201
214
|
end
|
|
202
215
|
end
|
|
@@ -2395,6 +2408,28 @@ module Google
|
|
|
2395
2408
|
end
|
|
2396
2409
|
end
|
|
2397
2410
|
|
|
2411
|
+
# Google Cloud Storage location for a Dialogflow operation that writes or
|
|
2412
|
+
# exports objects (e.g. exported agent or transcripts) outside of Dialogflow.
|
|
2413
|
+
class GoogleCloudDialogflowCxV3GcsDestination
|
|
2414
|
+
include Google::Apis::Core::Hashable
|
|
2415
|
+
|
|
2416
|
+
# Required. The Google Cloud Storage URI for the exported objects. A URI is of
|
|
2417
|
+
# the form: gs://bucket/object-name-or-prefix Whether a full object name, or
|
|
2418
|
+
# just a prefix, its usage depends on the Dialogflow operation.
|
|
2419
|
+
# Corresponds to the JSON property `uri`
|
|
2420
|
+
# @return [String]
|
|
2421
|
+
attr_accessor :uri
|
|
2422
|
+
|
|
2423
|
+
def initialize(**args)
|
|
2424
|
+
update!(**args)
|
|
2425
|
+
end
|
|
2426
|
+
|
|
2427
|
+
# Update properties of this object
|
|
2428
|
+
def update!(**args)
|
|
2429
|
+
@uri = args[:uri] if args.key?(:uri)
|
|
2430
|
+
end
|
|
2431
|
+
end
|
|
2432
|
+
|
|
2398
2433
|
# Metadata in google::longrunning::Operation for Knowledge operations.
|
|
2399
2434
|
class GoogleCloudDialogflowCxV3GenericKnowledgeOperationMetadata
|
|
2400
2435
|
include Google::Apis::Core::Hashable
|
|
@@ -5475,6 +5510,26 @@ module Google
|
|
|
5475
5510
|
end
|
|
5476
5511
|
end
|
|
5477
5512
|
|
|
5513
|
+
# Settings related to speech generating.
|
|
5514
|
+
class GoogleCloudDialogflowCxV3TextToSpeechSettings
|
|
5515
|
+
include Google::Apis::Core::Hashable
|
|
5516
|
+
|
|
5517
|
+
# Configuration of how speech should be synthesized, mapping from language (
|
|
5518
|
+
# https://dialogflow.com/docs/reference/language) to SynthesizeSpeechConfig.
|
|
5519
|
+
# Corresponds to the JSON property `synthesizeSpeechConfigs`
|
|
5520
|
+
# @return [Hash<String,Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3SynthesizeSpeechConfig>]
|
|
5521
|
+
attr_accessor :synthesize_speech_configs
|
|
5522
|
+
|
|
5523
|
+
def initialize(**args)
|
|
5524
|
+
update!(**args)
|
|
5525
|
+
end
|
|
5526
|
+
|
|
5527
|
+
# Update properties of this object
|
|
5528
|
+
def update!(**args)
|
|
5529
|
+
@synthesize_speech_configs = args[:synthesize_speech_configs] if args.key?(:synthesize_speech_configs)
|
|
5530
|
+
end
|
|
5531
|
+
end
|
|
5532
|
+
|
|
5478
5533
|
# The request message for Flows.TrainFlow.
|
|
5479
5534
|
class GoogleCloudDialogflowCxV3TrainFlowRequest
|
|
5480
5535
|
include Google::Apis::Core::Hashable
|
|
@@ -16,13 +16,13 @@ module Google
|
|
|
16
16
|
module Apis
|
|
17
17
|
module DialogflowV3
|
|
18
18
|
# Version of the google-apis-dialogflow_v3 gem
|
|
19
|
-
GEM_VERSION = "0.
|
|
19
|
+
GEM_VERSION = "0.50.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
22
|
GENERATOR_VERSION = "0.11.1"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20230209"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -400,6 +400,12 @@ module Google
|
|
|
400
400
|
include Google::Apis::Core::JsonObjectSupport
|
|
401
401
|
end
|
|
402
402
|
|
|
403
|
+
class GoogleCloudDialogflowCxV3GcsDestination
|
|
404
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
405
|
+
|
|
406
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
407
|
+
end
|
|
408
|
+
|
|
403
409
|
class GoogleCloudDialogflowCxV3GenericKnowledgeOperationMetadata
|
|
404
410
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
405
411
|
|
|
@@ -916,6 +922,12 @@ module Google
|
|
|
916
922
|
include Google::Apis::Core::JsonObjectSupport
|
|
917
923
|
end
|
|
918
924
|
|
|
925
|
+
class GoogleCloudDialogflowCxV3TextToSpeechSettings
|
|
926
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
927
|
+
|
|
928
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
929
|
+
end
|
|
930
|
+
|
|
919
931
|
class GoogleCloudDialogflowCxV3TrainFlowRequest
|
|
920
932
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
921
933
|
|
|
@@ -2653,6 +2665,8 @@ module Google
|
|
|
2653
2665
|
class GoogleCloudDialogflowCxV3AdvancedSettings
|
|
2654
2666
|
# @private
|
|
2655
2667
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
2668
|
+
property :audio_export_gcs_destination, as: 'audioExportGcsDestination', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3GcsDestination, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3GcsDestination::Representation
|
|
2669
|
+
|
|
2656
2670
|
property :logging_settings, as: 'loggingSettings', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3AdvancedSettingsLoggingSettings, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3AdvancedSettingsLoggingSettings::Representation
|
|
2657
2671
|
|
|
2658
2672
|
end
|
|
@@ -2684,6 +2698,8 @@ module Google
|
|
|
2684
2698
|
|
|
2685
2699
|
property :start_flow, as: 'startFlow'
|
|
2686
2700
|
collection :supported_language_codes, as: 'supportedLanguageCodes'
|
|
2701
|
+
property :text_to_speech_settings, as: 'textToSpeechSettings', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3TextToSpeechSettings, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3TextToSpeechSettings::Representation
|
|
2702
|
+
|
|
2687
2703
|
property :time_zone, as: 'timeZone'
|
|
2688
2704
|
end
|
|
2689
2705
|
end
|
|
@@ -3293,6 +3309,13 @@ module Google
|
|
|
3293
3309
|
end
|
|
3294
3310
|
end
|
|
3295
3311
|
|
|
3312
|
+
class GoogleCloudDialogflowCxV3GcsDestination
|
|
3313
|
+
# @private
|
|
3314
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
3315
|
+
property :uri, as: 'uri'
|
|
3316
|
+
end
|
|
3317
|
+
end
|
|
3318
|
+
|
|
3296
3319
|
class GoogleCloudDialogflowCxV3GenericKnowledgeOperationMetadata
|
|
3297
3320
|
# @private
|
|
3298
3321
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -4126,6 +4149,14 @@ module Google
|
|
|
4126
4149
|
end
|
|
4127
4150
|
end
|
|
4128
4151
|
|
|
4152
|
+
class GoogleCloudDialogflowCxV3TextToSpeechSettings
|
|
4153
|
+
# @private
|
|
4154
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
4155
|
+
hash :synthesize_speech_configs, as: 'synthesizeSpeechConfigs', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3SynthesizeSpeechConfig, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3SynthesizeSpeechConfig::Representation
|
|
4156
|
+
|
|
4157
|
+
end
|
|
4158
|
+
end
|
|
4159
|
+
|
|
4129
4160
|
class GoogleCloudDialogflowCxV3TrainFlowRequest
|
|
4130
4161
|
# @private
|
|
4131
4162
|
class Representation < Google::Apis::Core::JsonRepresentation
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-apis-dialogflow_v3
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.50.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Google LLC
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2023-
|
|
11
|
+
date: 2023-02-12 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: google-apis-core
|
|
@@ -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-dialogflow_v3/CHANGELOG.md
|
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-dialogflow_v3/v0.
|
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-dialogflow_v3/v0.50.0
|
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-dialogflow_v3
|
|
63
63
|
post_install_message:
|
|
64
64
|
rdoc_options: []
|