google-apis-dialogflow_v3beta1 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: 9f0fe456ad9c00471c36db31cc346ad069c0d2b496c844e5eb5606e7aba05f79
|
4
|
+
data.tar.gz: 2f0827f4e0b52974a162c762cac9a7fabc018c8e7f81d7cb4872132a73ce2278
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 066a56977a0954a9c3d2b0ba66ba57b13a237338dc655e48ed85bb00d29f71c5eeb98417915edbb447eabfe9c391aa9f9b4365e84a6a3b21e780c4b309ed5e50
|
7
|
+
data.tar.gz: '094028113d60fd8ccbb28a410eb55eefef65315907f460e2fc32a6dbb3532576fcdb81ff3595d8b3f8efbb3ec34b79713bde8db228a5de836ea20bd1e9a22ef2'
|
data/CHANGELOG.md
CHANGED
@@ -3058,6 +3058,12 @@ module Google
|
|
3058
3058
|
class GoogleCloudDialogflowCxV3beta1AdvancedSettings
|
3059
3059
|
include Google::Apis::Core::Hashable
|
3060
3060
|
|
3061
|
+
# Google Cloud Storage location for a Dialogflow operation that writes or
|
3062
|
+
# exports objects (e.g. exported agent or transcripts) outside of Dialogflow.
|
3063
|
+
# Corresponds to the JSON property `audioExportGcsDestination`
|
3064
|
+
# @return [Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1GcsDestination]
|
3065
|
+
attr_accessor :audio_export_gcs_destination
|
3066
|
+
|
3061
3067
|
# Define behaviors on logging.
|
3062
3068
|
# Corresponds to the JSON property `loggingSettings`
|
3063
3069
|
# @return [Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1AdvancedSettingsLoggingSettings]
|
@@ -3069,6 +3075,7 @@ module Google
|
|
3069
3075
|
|
3070
3076
|
# Update properties of this object
|
3071
3077
|
def update!(**args)
|
3078
|
+
@audio_export_gcs_destination = args[:audio_export_gcs_destination] if args.key?(:audio_export_gcs_destination)
|
3072
3079
|
@logging_settings = args[:logging_settings] if args.key?(:logging_settings)
|
3073
3080
|
end
|
3074
3081
|
end
|
@@ -3197,6 +3204,11 @@ module Google
|
|
3197
3204
|
# @return [Array<String>]
|
3198
3205
|
attr_accessor :supported_language_codes
|
3199
3206
|
|
3207
|
+
# Settings related to speech generating.
|
3208
|
+
# Corresponds to the JSON property `textToSpeechSettings`
|
3209
|
+
# @return [Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1TextToSpeechSettings]
|
3210
|
+
attr_accessor :text_to_speech_settings
|
3211
|
+
|
3200
3212
|
# Required. The time zone of the agent from the [time zone database](https://www.
|
3201
3213
|
# iana.org/time-zones), e.g., America/New_York, Europe/Paris.
|
3202
3214
|
# Corresponds to the JSON property `timeZone`
|
@@ -3222,6 +3234,7 @@ module Google
|
|
3222
3234
|
@speech_to_text_settings = args[:speech_to_text_settings] if args.key?(:speech_to_text_settings)
|
3223
3235
|
@start_flow = args[:start_flow] if args.key?(:start_flow)
|
3224
3236
|
@supported_language_codes = args[:supported_language_codes] if args.key?(:supported_language_codes)
|
3237
|
+
@text_to_speech_settings = args[:text_to_speech_settings] if args.key?(:text_to_speech_settings)
|
3225
3238
|
@time_zone = args[:time_zone] if args.key?(:time_zone)
|
3226
3239
|
end
|
3227
3240
|
end
|
@@ -5420,6 +5433,28 @@ module Google
|
|
5420
5433
|
end
|
5421
5434
|
end
|
5422
5435
|
|
5436
|
+
# Google Cloud Storage location for a Dialogflow operation that writes or
|
5437
|
+
# exports objects (e.g. exported agent or transcripts) outside of Dialogflow.
|
5438
|
+
class GoogleCloudDialogflowCxV3beta1GcsDestination
|
5439
|
+
include Google::Apis::Core::Hashable
|
5440
|
+
|
5441
|
+
# Required. The Google Cloud Storage URI for the exported objects. A URI is of
|
5442
|
+
# the form: gs://bucket/object-name-or-prefix Whether a full object name, or
|
5443
|
+
# just a prefix, its usage depends on the Dialogflow operation.
|
5444
|
+
# Corresponds to the JSON property `uri`
|
5445
|
+
# @return [String]
|
5446
|
+
attr_accessor :uri
|
5447
|
+
|
5448
|
+
def initialize(**args)
|
5449
|
+
update!(**args)
|
5450
|
+
end
|
5451
|
+
|
5452
|
+
# Update properties of this object
|
5453
|
+
def update!(**args)
|
5454
|
+
@uri = args[:uri] if args.key?(:uri)
|
5455
|
+
end
|
5456
|
+
end
|
5457
|
+
|
5423
5458
|
# Metadata in google::longrunning::Operation for Knowledge operations.
|
5424
5459
|
class GoogleCloudDialogflowCxV3beta1GenericKnowledgeOperationMetadata
|
5425
5460
|
include Google::Apis::Core::Hashable
|
@@ -8502,6 +8537,26 @@ module Google
|
|
8502
8537
|
end
|
8503
8538
|
end
|
8504
8539
|
|
8540
|
+
# Settings related to speech generating.
|
8541
|
+
class GoogleCloudDialogflowCxV3beta1TextToSpeechSettings
|
8542
|
+
include Google::Apis::Core::Hashable
|
8543
|
+
|
8544
|
+
# Configuration of how speech should be synthesized, mapping from language (
|
8545
|
+
# https://dialogflow.com/docs/reference/language) to SynthesizeSpeechConfig.
|
8546
|
+
# Corresponds to the JSON property `synthesizeSpeechConfigs`
|
8547
|
+
# @return [Hash<String,Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1SynthesizeSpeechConfig>]
|
8548
|
+
attr_accessor :synthesize_speech_configs
|
8549
|
+
|
8550
|
+
def initialize(**args)
|
8551
|
+
update!(**args)
|
8552
|
+
end
|
8553
|
+
|
8554
|
+
# Update properties of this object
|
8555
|
+
def update!(**args)
|
8556
|
+
@synthesize_speech_configs = args[:synthesize_speech_configs] if args.key?(:synthesize_speech_configs)
|
8557
|
+
end
|
8558
|
+
end
|
8559
|
+
|
8505
8560
|
# The request message for Flows.TrainFlow.
|
8506
8561
|
class GoogleCloudDialogflowCxV3beta1TrainFlowRequest
|
8507
8562
|
include Google::Apis::Core::Hashable
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module DialogflowV3beta1
|
18
18
|
# Version of the google-apis-dialogflow_v3beta1 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
|
@@ -910,6 +910,12 @@ module Google
|
|
910
910
|
include Google::Apis::Core::JsonObjectSupport
|
911
911
|
end
|
912
912
|
|
913
|
+
class GoogleCloudDialogflowCxV3beta1GcsDestination
|
914
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
915
|
+
|
916
|
+
include Google::Apis::Core::JsonObjectSupport
|
917
|
+
end
|
918
|
+
|
913
919
|
class GoogleCloudDialogflowCxV3beta1GenericKnowledgeOperationMetadata
|
914
920
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
915
921
|
|
@@ -1426,6 +1432,12 @@ module Google
|
|
1426
1432
|
include Google::Apis::Core::JsonObjectSupport
|
1427
1433
|
end
|
1428
1434
|
|
1435
|
+
class GoogleCloudDialogflowCxV3beta1TextToSpeechSettings
|
1436
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1437
|
+
|
1438
|
+
include Google::Apis::Core::JsonObjectSupport
|
1439
|
+
end
|
1440
|
+
|
1429
1441
|
class GoogleCloudDialogflowCxV3beta1TrainFlowRequest
|
1430
1442
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1431
1443
|
|
@@ -3490,6 +3502,8 @@ module Google
|
|
3490
3502
|
class GoogleCloudDialogflowCxV3beta1AdvancedSettings
|
3491
3503
|
# @private
|
3492
3504
|
class Representation < Google::Apis::Core::JsonRepresentation
|
3505
|
+
property :audio_export_gcs_destination, as: 'audioExportGcsDestination', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1GcsDestination, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1GcsDestination::Representation
|
3506
|
+
|
3493
3507
|
property :logging_settings, as: 'loggingSettings', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1AdvancedSettingsLoggingSettings, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1AdvancedSettingsLoggingSettings::Representation
|
3494
3508
|
|
3495
3509
|
end
|
@@ -3521,6 +3535,8 @@ module Google
|
|
3521
3535
|
|
3522
3536
|
property :start_flow, as: 'startFlow'
|
3523
3537
|
collection :supported_language_codes, as: 'supportedLanguageCodes'
|
3538
|
+
property :text_to_speech_settings, as: 'textToSpeechSettings', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1TextToSpeechSettings, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1TextToSpeechSettings::Representation
|
3539
|
+
|
3524
3540
|
property :time_zone, as: 'timeZone'
|
3525
3541
|
end
|
3526
3542
|
end
|
@@ -4130,6 +4146,13 @@ module Google
|
|
4130
4146
|
end
|
4131
4147
|
end
|
4132
4148
|
|
4149
|
+
class GoogleCloudDialogflowCxV3beta1GcsDestination
|
4150
|
+
# @private
|
4151
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
4152
|
+
property :uri, as: 'uri'
|
4153
|
+
end
|
4154
|
+
end
|
4155
|
+
|
4133
4156
|
class GoogleCloudDialogflowCxV3beta1GenericKnowledgeOperationMetadata
|
4134
4157
|
# @private
|
4135
4158
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -4963,6 +4986,14 @@ module Google
|
|
4963
4986
|
end
|
4964
4987
|
end
|
4965
4988
|
|
4989
|
+
class GoogleCloudDialogflowCxV3beta1TextToSpeechSettings
|
4990
|
+
# @private
|
4991
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
4992
|
+
hash :synthesize_speech_configs, as: 'synthesizeSpeechConfigs', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1SynthesizeSpeechConfig, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1SynthesizeSpeechConfig::Representation
|
4993
|
+
|
4994
|
+
end
|
4995
|
+
end
|
4996
|
+
|
4966
4997
|
class GoogleCloudDialogflowCxV3beta1TrainFlowRequest
|
4967
4998
|
# @private
|
4968
4999
|
class Representation < Google::Apis::Core::JsonRepresentation
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-dialogflow_v3beta1
|
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_v3beta1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-dialogflow_v3beta1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-dialogflow_v3beta1/v0.50.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-dialogflow_v3beta1
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|