google-apis-dialogflow_v3 0.49.0 → 0.51.0
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e2fd88aa3c391fff89f13dfadcf666421853ccdb167214b346f07c92e7b46807
|
4
|
+
data.tar.gz: 21f792eaeab1722678b2bc67d8374db275d04fbcb7454368dba5ac31605b4c88
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ad18d476fac85a2782d2d94cf72e4d0159dca3d5f961440341f2ab949690c9e16d07e9a0de14b8f45806cd915fe3ededf191ce1c7dfb21e9a8f09f19218be5b8
|
7
|
+
data.tar.gz: 820646093a3493c7f7ab91bb4d83c97054459581c0a7123fe574c3276922450e97756d11f743d2ab2381ec6c53b5c5e9bf9e21d7995d9dd49f3bab9fc3956a5b
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,14 @@
|
|
1
1
|
# Release history for google-apis-dialogflow_v3
|
2
2
|
|
3
|
+
### v0.51.0 (2023-02-19)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20230214
|
6
|
+
* Regenerated using generator version 0.12.0
|
7
|
+
|
8
|
+
### v0.50.0 (2023-02-12)
|
9
|
+
|
10
|
+
* Regenerated from discovery document revision 20230209
|
11
|
+
|
3
12
|
### v0.49.0 (2023-01-15)
|
4
13
|
|
5
14
|
* Regenerated from discovery document revision 20230110
|
@@ -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
|
@@ -1214,9 +1227,9 @@ module Google
|
|
1214
1227
|
# @return [String]
|
1215
1228
|
attr_accessor :update_time
|
1216
1229
|
|
1217
|
-
#
|
1218
|
-
#
|
1219
|
-
#
|
1230
|
+
# A list of configurations for flow versions. You should include version configs
|
1231
|
+
# for all flows that are reachable from `Start Flow` in the agent. Otherwise, an
|
1232
|
+
# error will be returned.
|
1220
1233
|
# Corresponds to the JSON property `versionConfigs`
|
1221
1234
|
# @return [Array<Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3EnvironmentVersionConfig>]
|
1222
1235
|
attr_accessor :version_configs
|
@@ -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
|
@@ -7031,9 +7086,9 @@ module Google
|
|
7031
7086
|
# @return [String]
|
7032
7087
|
attr_accessor :update_time
|
7033
7088
|
|
7034
|
-
#
|
7035
|
-
#
|
7036
|
-
#
|
7089
|
+
# A list of configurations for flow versions. You should include version configs
|
7090
|
+
# for all flows that are reachable from `Start Flow` in the agent. Otherwise, an
|
7091
|
+
# error will be returned.
|
7037
7092
|
# Corresponds to the JSON property `versionConfigs`
|
7038
7093
|
# @return [Array<Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3beta1EnvironmentVersionConfig>]
|
7039
7094
|
attr_accessor :version_configs
|
@@ -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.51.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.
|
22
|
+
GENERATOR_VERSION = "0.12.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20230214"
|
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.51.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-19 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
@@ -16,7 +16,7 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - ">="
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: 0.
|
19
|
+
version: 0.11.0
|
20
20
|
- - "<"
|
21
21
|
- !ruby/object:Gem::Version
|
22
22
|
version: 2.a
|
@@ -26,7 +26,7 @@ dependencies:
|
|
26
26
|
requirements:
|
27
27
|
- - ">="
|
28
28
|
- !ruby/object:Gem::Version
|
29
|
-
version: 0.
|
29
|
+
version: 0.11.0
|
30
30
|
- - "<"
|
31
31
|
- !ruby/object:Gem::Version
|
32
32
|
version: 2.a
|
@@ -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.51.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: []
|