google-apis-dialogflow_v3beta1 0.103.0 → 0.105.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: 1cf8b2582f08904d57401840b84d479f9c755cb3e3c51f107e54974bffee16cf
|
4
|
+
data.tar.gz: ba0e7cf4d6d3e8ab4952b80b3cd732f86f237cd98e406c7e5c299c4ac1ac37ae
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1ffee547893445956f9152c77720f6220de007c61c5ca0099524dc66a5a372674def24504426e3f5f895764789979f040aa7609f2cea0337ccbe9ecd0eeab195
|
7
|
+
data.tar.gz: 333e212aca968d31a7bced5005009389e39c959d14bcf766363ee7b561c97fc586d8927cf05ff4ad7c43afc2885c337f3573e357f2b6dcf25ab79dac240a46e1
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-dialogflow_v3beta1
|
2
2
|
|
3
|
+
### v0.105.0 (2025-06-29)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20250625
|
6
|
+
|
7
|
+
### v0.104.0 (2025-06-22)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20250617
|
10
|
+
|
3
11
|
### v0.103.0 (2025-06-15)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20250612
|
@@ -1241,6 +1241,11 @@ module Google
|
|
1241
1241
|
attr_accessor :enable_generative_fallback
|
1242
1242
|
alias_method :enable_generative_fallback?, :enable_generative_fallback
|
1243
1243
|
|
1244
|
+
# A list of Generators to be called during this fulfillment.
|
1245
|
+
# Corresponds to the JSON property `generators`
|
1246
|
+
# @return [Array<Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3FulfillmentGeneratorSettings>]
|
1247
|
+
attr_accessor :generators
|
1248
|
+
|
1244
1249
|
# The list of rich message responses to present to the user.
|
1245
1250
|
# Corresponds to the JSON property `messages`
|
1246
1251
|
# @return [Array<Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3ResponseMessage>]
|
@@ -1286,6 +1291,7 @@ module Google
|
|
1286
1291
|
@advanced_settings = args[:advanced_settings] if args.key?(:advanced_settings)
|
1287
1292
|
@conditional_cases = args[:conditional_cases] if args.key?(:conditional_cases)
|
1288
1293
|
@enable_generative_fallback = args[:enable_generative_fallback] if args.key?(:enable_generative_fallback)
|
1294
|
+
@generators = args[:generators] if args.key?(:generators)
|
1289
1295
|
@messages = args[:messages] if args.key?(:messages)
|
1290
1296
|
@return_partial_responses = args[:return_partial_responses] if args.key?(:return_partial_responses)
|
1291
1297
|
@set_parameter_actions = args[:set_parameter_actions] if args.key?(:set_parameter_actions)
|
@@ -1380,6 +1386,44 @@ module Google
|
|
1380
1386
|
end
|
1381
1387
|
end
|
1382
1388
|
|
1389
|
+
# Generator settings used by the LLM to generate a text response.
|
1390
|
+
class GoogleCloudDialogflowCxV3FulfillmentGeneratorSettings
|
1391
|
+
include Google::Apis::Core::Hashable
|
1392
|
+
|
1393
|
+
# Required. The generator to call. Format: `projects//locations//agents//
|
1394
|
+
# generators/`.
|
1395
|
+
# Corresponds to the JSON property `generator`
|
1396
|
+
# @return [String]
|
1397
|
+
attr_accessor :generator
|
1398
|
+
|
1399
|
+
# Map from placeholder parameter in the Generator to corresponding session
|
1400
|
+
# parameters. By default, Dialogflow uses the session parameter with the same
|
1401
|
+
# name to fill in the generator template. e.g. If there is a placeholder
|
1402
|
+
# parameter `city` in the Generator, Dialogflow default to fill in the `$city`
|
1403
|
+
# with `$session.params.city`. However, you may choose to fill `$city` with `$
|
1404
|
+
# session.params.desination-city`. - Map key: parameter ID - Map value: session
|
1405
|
+
# parameter name
|
1406
|
+
# Corresponds to the JSON property `inputParameters`
|
1407
|
+
# @return [Hash<String,String>]
|
1408
|
+
attr_accessor :input_parameters
|
1409
|
+
|
1410
|
+
# Required. Output parameter which should contain the generator response.
|
1411
|
+
# Corresponds to the JSON property `outputParameter`
|
1412
|
+
# @return [String]
|
1413
|
+
attr_accessor :output_parameter
|
1414
|
+
|
1415
|
+
def initialize(**args)
|
1416
|
+
update!(**args)
|
1417
|
+
end
|
1418
|
+
|
1419
|
+
# Update properties of this object
|
1420
|
+
def update!(**args)
|
1421
|
+
@generator = args[:generator] if args.key?(:generator)
|
1422
|
+
@input_parameters = args[:input_parameters] if args.key?(:input_parameters)
|
1423
|
+
@output_parameter = args[:output_parameter] if args.key?(:output_parameter)
|
1424
|
+
end
|
1425
|
+
end
|
1426
|
+
|
1383
1427
|
# Setting a parameter value.
|
1384
1428
|
class GoogleCloudDialogflowCxV3FulfillmentSetParameterAction
|
1385
1429
|
include Google::Apis::Core::Hashable
|
@@ -8535,6 +8579,11 @@ module Google
|
|
8535
8579
|
attr_accessor :enable_generative_fallback
|
8536
8580
|
alias_method :enable_generative_fallback?, :enable_generative_fallback
|
8537
8581
|
|
8582
|
+
# A list of Generators to be called during this fulfillment.
|
8583
|
+
# Corresponds to the JSON property `generators`
|
8584
|
+
# @return [Array<Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1FulfillmentGeneratorSettings>]
|
8585
|
+
attr_accessor :generators
|
8586
|
+
|
8538
8587
|
# The list of rich message responses to present to the user.
|
8539
8588
|
# Corresponds to the JSON property `messages`
|
8540
8589
|
# @return [Array<Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1ResponseMessage>]
|
@@ -8580,6 +8629,7 @@ module Google
|
|
8580
8629
|
@advanced_settings = args[:advanced_settings] if args.key?(:advanced_settings)
|
8581
8630
|
@conditional_cases = args[:conditional_cases] if args.key?(:conditional_cases)
|
8582
8631
|
@enable_generative_fallback = args[:enable_generative_fallback] if args.key?(:enable_generative_fallback)
|
8632
|
+
@generators = args[:generators] if args.key?(:generators)
|
8583
8633
|
@messages = args[:messages] if args.key?(:messages)
|
8584
8634
|
@return_partial_responses = args[:return_partial_responses] if args.key?(:return_partial_responses)
|
8585
8635
|
@set_parameter_actions = args[:set_parameter_actions] if args.key?(:set_parameter_actions)
|
@@ -8674,6 +8724,44 @@ module Google
|
|
8674
8724
|
end
|
8675
8725
|
end
|
8676
8726
|
|
8727
|
+
# Generator settings used by the LLM to generate a text response.
|
8728
|
+
class GoogleCloudDialogflowCxV3beta1FulfillmentGeneratorSettings
|
8729
|
+
include Google::Apis::Core::Hashable
|
8730
|
+
|
8731
|
+
# Required. The generator to call. Format: `projects//locations//agents//
|
8732
|
+
# generators/`.
|
8733
|
+
# Corresponds to the JSON property `generator`
|
8734
|
+
# @return [String]
|
8735
|
+
attr_accessor :generator
|
8736
|
+
|
8737
|
+
# Map from placeholder parameter in the Generator to corresponding session
|
8738
|
+
# parameters. By default, Dialogflow uses the session parameter with the same
|
8739
|
+
# name to fill in the generator template. e.g. If there is a placeholder
|
8740
|
+
# parameter `city` in the Generator, Dialogflow default to fill in the `$city`
|
8741
|
+
# with `$session.params.city`. However, you may choose to fill `$city` with `$
|
8742
|
+
# session.params.desination-city`. - Map key: parameter ID - Map value: session
|
8743
|
+
# parameter name
|
8744
|
+
# Corresponds to the JSON property `inputParameters`
|
8745
|
+
# @return [Hash<String,String>]
|
8746
|
+
attr_accessor :input_parameters
|
8747
|
+
|
8748
|
+
# Required. Output parameter which should contain the generator response.
|
8749
|
+
# Corresponds to the JSON property `outputParameter`
|
8750
|
+
# @return [String]
|
8751
|
+
attr_accessor :output_parameter
|
8752
|
+
|
8753
|
+
def initialize(**args)
|
8754
|
+
update!(**args)
|
8755
|
+
end
|
8756
|
+
|
8757
|
+
# Update properties of this object
|
8758
|
+
def update!(**args)
|
8759
|
+
@generator = args[:generator] if args.key?(:generator)
|
8760
|
+
@input_parameters = args[:input_parameters] if args.key?(:input_parameters)
|
8761
|
+
@output_parameter = args[:output_parameter] if args.key?(:output_parameter)
|
8762
|
+
end
|
8763
|
+
end
|
8764
|
+
|
8677
8765
|
# Setting a parameter value.
|
8678
8766
|
class GoogleCloudDialogflowCxV3beta1FulfillmentSetParameterAction
|
8679
8767
|
include Google::Apis::Core::Hashable
|
@@ -13093,6 +13181,11 @@ module Google
|
|
13093
13181
|
# @return [String]
|
13094
13182
|
attr_accessor :default_banned_phrase_match_strategy
|
13095
13183
|
|
13184
|
+
# Settings for prompt security checks.
|
13185
|
+
# Corresponds to the JSON property `promptSecuritySettings`
|
13186
|
+
# @return [Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1SafetySettingsPromptSecuritySettings]
|
13187
|
+
attr_accessor :prompt_security_settings
|
13188
|
+
|
13096
13189
|
def initialize(**args)
|
13097
13190
|
update!(**args)
|
13098
13191
|
end
|
@@ -13101,6 +13194,7 @@ module Google
|
|
13101
13194
|
def update!(**args)
|
13102
13195
|
@banned_phrases = args[:banned_phrases] if args.key?(:banned_phrases)
|
13103
13196
|
@default_banned_phrase_match_strategy = args[:default_banned_phrase_match_strategy] if args.key?(:default_banned_phrase_match_strategy)
|
13197
|
+
@prompt_security_settings = args[:prompt_security_settings] if args.key?(:prompt_security_settings)
|
13104
13198
|
end
|
13105
13199
|
end
|
13106
13200
|
|
@@ -13129,6 +13223,26 @@ module Google
|
|
13129
13223
|
end
|
13130
13224
|
end
|
13131
13225
|
|
13226
|
+
# Settings for prompt security checks.
|
13227
|
+
class GoogleCloudDialogflowCxV3beta1SafetySettingsPromptSecuritySettings
|
13228
|
+
include Google::Apis::Core::Hashable
|
13229
|
+
|
13230
|
+
# Optional. Enable prompt security checks.
|
13231
|
+
# Corresponds to the JSON property `enablePromptSecurity`
|
13232
|
+
# @return [Boolean]
|
13233
|
+
attr_accessor :enable_prompt_security
|
13234
|
+
alias_method :enable_prompt_security?, :enable_prompt_security
|
13235
|
+
|
13236
|
+
def initialize(**args)
|
13237
|
+
update!(**args)
|
13238
|
+
end
|
13239
|
+
|
13240
|
+
# Update properties of this object
|
13241
|
+
def update!(**args)
|
13242
|
+
@enable_prompt_security = args[:enable_prompt_security] if args.key?(:enable_prompt_security)
|
13243
|
+
end
|
13244
|
+
end
|
13245
|
+
|
13132
13246
|
# Search configuration for UCS search queries.
|
13133
13247
|
class GoogleCloudDialogflowCxV3beta1SearchConfig
|
13134
13248
|
include Google::Apis::Core::Hashable
|
@@ -15558,6 +15672,12 @@ module Google
|
|
15558
15672
|
# @return [String]
|
15559
15673
|
attr_accessor :name
|
15560
15674
|
|
15675
|
+
# Optional. The name of the second voice (non-English) if language detection is
|
15676
|
+
# supported.
|
15677
|
+
# Corresponds to the JSON property `secondLanguageModel`
|
15678
|
+
# @return [String]
|
15679
|
+
attr_accessor :second_language_model
|
15680
|
+
|
15561
15681
|
# Optional. The preferred gender of the voice. If not set, the service will
|
15562
15682
|
# choose a voice based on the other parameters such as language_code and name.
|
15563
15683
|
# Note that this is only a preference, not requirement. If a voice of the
|
@@ -15574,6 +15694,7 @@ module Google
|
|
15574
15694
|
# Update properties of this object
|
15575
15695
|
def update!(**args)
|
15576
15696
|
@name = args[:name] if args.key?(:name)
|
15697
|
+
@second_language_model = args[:second_language_model] if args.key?(:second_language_model)
|
15577
15698
|
@ssml_gender = args[:ssml_gender] if args.key?(:ssml_gender)
|
15578
15699
|
end
|
15579
15700
|
end
|
@@ -16627,6 +16748,11 @@ module Google
|
|
16627
16748
|
# @return [String]
|
16628
16749
|
attr_accessor :create_time
|
16629
16750
|
|
16751
|
+
# The time when the operation finished.
|
16752
|
+
# Corresponds to the JSON property `doneTime`
|
16753
|
+
# @return [String]
|
16754
|
+
attr_accessor :done_time
|
16755
|
+
|
16630
16756
|
# State of CreateConversationModel operation.
|
16631
16757
|
# Corresponds to the JSON property `state`
|
16632
16758
|
# @return [String]
|
@@ -16640,6 +16766,7 @@ module Google
|
|
16640
16766
|
def update!(**args)
|
16641
16767
|
@conversation_model = args[:conversation_model] if args.key?(:conversation_model)
|
16642
16768
|
@create_time = args[:create_time] if args.key?(:create_time)
|
16769
|
+
@done_time = args[:done_time] if args.key?(:done_time)
|
16643
16770
|
@state = args[:state] if args.key?(:state)
|
16644
16771
|
end
|
16645
16772
|
end
|
@@ -16673,6 +16800,11 @@ module Google
|
|
16673
16800
|
# @return [String]
|
16674
16801
|
attr_accessor :create_time
|
16675
16802
|
|
16803
|
+
# The time when the operation finished.
|
16804
|
+
# Corresponds to the JSON property `doneTime`
|
16805
|
+
# @return [String]
|
16806
|
+
attr_accessor :done_time
|
16807
|
+
|
16676
16808
|
def initialize(**args)
|
16677
16809
|
update!(**args)
|
16678
16810
|
end
|
@@ -16681,6 +16813,7 @@ module Google
|
|
16681
16813
|
def update!(**args)
|
16682
16814
|
@conversation_model = args[:conversation_model] if args.key?(:conversation_model)
|
16683
16815
|
@create_time = args[:create_time] if args.key?(:create_time)
|
16816
|
+
@done_time = args[:done_time] if args.key?(:done_time)
|
16684
16817
|
end
|
16685
16818
|
end
|
16686
16819
|
|
@@ -16700,6 +16833,11 @@ module Google
|
|
16700
16833
|
# @return [String]
|
16701
16834
|
attr_accessor :create_time
|
16702
16835
|
|
16836
|
+
# The time when the operation finished.
|
16837
|
+
# Corresponds to the JSON property `doneTime`
|
16838
|
+
# @return [String]
|
16839
|
+
attr_accessor :done_time
|
16840
|
+
|
16703
16841
|
def initialize(**args)
|
16704
16842
|
update!(**args)
|
16705
16843
|
end
|
@@ -16708,6 +16846,7 @@ module Google
|
|
16708
16846
|
def update!(**args)
|
16709
16847
|
@conversation_model = args[:conversation_model] if args.key?(:conversation_model)
|
16710
16848
|
@create_time = args[:create_time] if args.key?(:create_time)
|
16849
|
+
@done_time = args[:done_time] if args.key?(:done_time)
|
16711
16850
|
end
|
16712
16851
|
end
|
16713
16852
|
|
@@ -18723,6 +18862,11 @@ module Google
|
|
18723
18862
|
class GoogleCloudDialogflowV2KnowledgeOperationMetadata
|
18724
18863
|
include Google::Apis::Core::Hashable
|
18725
18864
|
|
18865
|
+
# The time when the operation finished.
|
18866
|
+
# Corresponds to the JSON property `doneTime`
|
18867
|
+
# @return [String]
|
18868
|
+
attr_accessor :done_time
|
18869
|
+
|
18726
18870
|
# Metadata related to the Export Data Operations (e.g. ExportDocument).
|
18727
18871
|
# Corresponds to the JSON property `exportOperationMetadata`
|
18728
18872
|
# @return [Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2ExportOperationMetadata]
|
@@ -18744,6 +18888,7 @@ module Google
|
|
18744
18888
|
|
18745
18889
|
# Update properties of this object
|
18746
18890
|
def update!(**args)
|
18891
|
+
@done_time = args[:done_time] if args.key?(:done_time)
|
18747
18892
|
@export_operation_metadata = args[:export_operation_metadata] if args.key?(:export_operation_metadata)
|
18748
18893
|
@knowledge_base = args[:knowledge_base] if args.key?(:knowledge_base)
|
18749
18894
|
@state = args[:state] if args.key?(:state)
|
@@ -19747,6 +19892,11 @@ module Google
|
|
19747
19892
|
# @return [String]
|
19748
19893
|
attr_accessor :create_time
|
19749
19894
|
|
19895
|
+
# The time when the operation finished.
|
19896
|
+
# Corresponds to the JSON property `doneTime`
|
19897
|
+
# @return [String]
|
19898
|
+
attr_accessor :done_time
|
19899
|
+
|
19750
19900
|
def initialize(**args)
|
19751
19901
|
update!(**args)
|
19752
19902
|
end
|
@@ -19755,6 +19905,7 @@ module Google
|
|
19755
19905
|
def update!(**args)
|
19756
19906
|
@conversation_model = args[:conversation_model] if args.key?(:conversation_model)
|
19757
19907
|
@create_time = args[:create_time] if args.key?(:create_time)
|
19908
|
+
@done_time = args[:done_time] if args.key?(:done_time)
|
19758
19909
|
end
|
19759
19910
|
end
|
19760
19911
|
|
@@ -22726,6 +22877,11 @@ module Google
|
|
22726
22877
|
class GoogleCloudDialogflowV2beta1KnowledgeOperationMetadata
|
22727
22878
|
include Google::Apis::Core::Hashable
|
22728
22879
|
|
22880
|
+
# The time when the operation finished.
|
22881
|
+
# Corresponds to the JSON property `doneTime`
|
22882
|
+
# @return [String]
|
22883
|
+
attr_accessor :done_time
|
22884
|
+
|
22729
22885
|
# Metadata related to the Export Data Operations (e.g. ExportDocument).
|
22730
22886
|
# Corresponds to the JSON property `exportOperationMetadata`
|
22731
22887
|
# @return [Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2beta1ExportOperationMetadata]
|
@@ -22747,6 +22903,7 @@ module Google
|
|
22747
22903
|
|
22748
22904
|
# Update properties of this object
|
22749
22905
|
def update!(**args)
|
22906
|
+
@done_time = args[:done_time] if args.key?(:done_time)
|
22750
22907
|
@export_operation_metadata = args[:export_operation_metadata] if args.key?(:export_operation_metadata)
|
22751
22908
|
@knowledge_base = args[:knowledge_base] if args.key?(:knowledge_base)
|
22752
22909
|
@state = args[:state] if args.key?(:state)
|
@@ -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.105.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.18.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20250625"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -256,6 +256,12 @@ module Google
|
|
256
256
|
include Google::Apis::Core::JsonObjectSupport
|
257
257
|
end
|
258
258
|
|
259
|
+
class GoogleCloudDialogflowCxV3FulfillmentGeneratorSettings
|
260
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
261
|
+
|
262
|
+
include Google::Apis::Core::JsonObjectSupport
|
263
|
+
end
|
264
|
+
|
259
265
|
class GoogleCloudDialogflowCxV3FulfillmentSetParameterAction
|
260
266
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
261
267
|
|
@@ -1366,6 +1372,12 @@ module Google
|
|
1366
1372
|
include Google::Apis::Core::JsonObjectSupport
|
1367
1373
|
end
|
1368
1374
|
|
1375
|
+
class GoogleCloudDialogflowCxV3beta1FulfillmentGeneratorSettings
|
1376
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1377
|
+
|
1378
|
+
include Google::Apis::Core::JsonObjectSupport
|
1379
|
+
end
|
1380
|
+
|
1369
1381
|
class GoogleCloudDialogflowCxV3beta1FulfillmentSetParameterAction
|
1370
1382
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1371
1383
|
|
@@ -2104,6 +2116,12 @@ module Google
|
|
2104
2116
|
include Google::Apis::Core::JsonObjectSupport
|
2105
2117
|
end
|
2106
2118
|
|
2119
|
+
class GoogleCloudDialogflowCxV3beta1SafetySettingsPromptSecuritySettings
|
2120
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
2121
|
+
|
2122
|
+
include Google::Apis::Core::JsonObjectSupport
|
2123
|
+
end
|
2124
|
+
|
2107
2125
|
class GoogleCloudDialogflowCxV3beta1SearchConfig
|
2108
2126
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
2109
2127
|
|
@@ -4272,6 +4290,8 @@ module Google
|
|
4272
4290
|
collection :conditional_cases, as: 'conditionalCases', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3FulfillmentConditionalCases, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3FulfillmentConditionalCases::Representation
|
4273
4291
|
|
4274
4292
|
property :enable_generative_fallback, as: 'enableGenerativeFallback'
|
4293
|
+
collection :generators, as: 'generators', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3FulfillmentGeneratorSettings, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3FulfillmentGeneratorSettings::Representation
|
4294
|
+
|
4275
4295
|
collection :messages, as: 'messages', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3ResponseMessage, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3ResponseMessage::Representation
|
4276
4296
|
|
4277
4297
|
property :return_partial_responses, as: 'returnPartialResponses'
|
@@ -4309,6 +4329,15 @@ module Google
|
|
4309
4329
|
end
|
4310
4330
|
end
|
4311
4331
|
|
4332
|
+
class GoogleCloudDialogflowCxV3FulfillmentGeneratorSettings
|
4333
|
+
# @private
|
4334
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
4335
|
+
property :generator, as: 'generator'
|
4336
|
+
hash :input_parameters, as: 'inputParameters'
|
4337
|
+
property :output_parameter, as: 'outputParameter'
|
4338
|
+
end
|
4339
|
+
end
|
4340
|
+
|
4312
4341
|
class GoogleCloudDialogflowCxV3FulfillmentSetParameterAction
|
4313
4342
|
# @private
|
4314
4343
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -6222,6 +6251,8 @@ module Google
|
|
6222
6251
|
collection :conditional_cases, as: 'conditionalCases', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1FulfillmentConditionalCases, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1FulfillmentConditionalCases::Representation
|
6223
6252
|
|
6224
6253
|
property :enable_generative_fallback, as: 'enableGenerativeFallback'
|
6254
|
+
collection :generators, as: 'generators', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1FulfillmentGeneratorSettings, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1FulfillmentGeneratorSettings::Representation
|
6255
|
+
|
6225
6256
|
collection :messages, as: 'messages', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1ResponseMessage, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1ResponseMessage::Representation
|
6226
6257
|
|
6227
6258
|
property :return_partial_responses, as: 'returnPartialResponses'
|
@@ -6259,6 +6290,15 @@ module Google
|
|
6259
6290
|
end
|
6260
6291
|
end
|
6261
6292
|
|
6293
|
+
class GoogleCloudDialogflowCxV3beta1FulfillmentGeneratorSettings
|
6294
|
+
# @private
|
6295
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
6296
|
+
property :generator, as: 'generator'
|
6297
|
+
hash :input_parameters, as: 'inputParameters'
|
6298
|
+
property :output_parameter, as: 'outputParameter'
|
6299
|
+
end
|
6300
|
+
end
|
6301
|
+
|
6262
6302
|
class GoogleCloudDialogflowCxV3beta1FulfillmentSetParameterAction
|
6263
6303
|
# @private
|
6264
6304
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -7477,6 +7517,8 @@ module Google
|
|
7477
7517
|
collection :banned_phrases, as: 'bannedPhrases', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1SafetySettingsPhrase, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1SafetySettingsPhrase::Representation
|
7478
7518
|
|
7479
7519
|
property :default_banned_phrase_match_strategy, as: 'defaultBannedPhraseMatchStrategy'
|
7520
|
+
property :prompt_security_settings, as: 'promptSecuritySettings', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1SafetySettingsPromptSecuritySettings, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1SafetySettingsPromptSecuritySettings::Representation
|
7521
|
+
|
7480
7522
|
end
|
7481
7523
|
end
|
7482
7524
|
|
@@ -7488,6 +7530,13 @@ module Google
|
|
7488
7530
|
end
|
7489
7531
|
end
|
7490
7532
|
|
7533
|
+
class GoogleCloudDialogflowCxV3beta1SafetySettingsPromptSecuritySettings
|
7534
|
+
# @private
|
7535
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
7536
|
+
property :enable_prompt_security, as: 'enablePromptSecurity'
|
7537
|
+
end
|
7538
|
+
end
|
7539
|
+
|
7491
7540
|
class GoogleCloudDialogflowCxV3beta1SearchConfig
|
7492
7541
|
# @private
|
7493
7542
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -8173,6 +8222,7 @@ module Google
|
|
8173
8222
|
# @private
|
8174
8223
|
class Representation < Google::Apis::Core::JsonRepresentation
|
8175
8224
|
property :name, as: 'name'
|
8225
|
+
property :second_language_model, as: 'secondLanguageModel'
|
8176
8226
|
property :ssml_gender, as: 'ssmlGender'
|
8177
8227
|
end
|
8178
8228
|
end
|
@@ -8443,6 +8493,7 @@ module Google
|
|
8443
8493
|
class Representation < Google::Apis::Core::JsonRepresentation
|
8444
8494
|
property :conversation_model, as: 'conversationModel'
|
8445
8495
|
property :create_time, as: 'createTime'
|
8496
|
+
property :done_time, as: 'doneTime'
|
8446
8497
|
property :state, as: 'state'
|
8447
8498
|
end
|
8448
8499
|
end
|
@@ -8458,6 +8509,7 @@ module Google
|
|
8458
8509
|
class Representation < Google::Apis::Core::JsonRepresentation
|
8459
8510
|
property :conversation_model, as: 'conversationModel'
|
8460
8511
|
property :create_time, as: 'createTime'
|
8512
|
+
property :done_time, as: 'doneTime'
|
8461
8513
|
end
|
8462
8514
|
end
|
8463
8515
|
|
@@ -8466,6 +8518,7 @@ module Google
|
|
8466
8518
|
class Representation < Google::Apis::Core::JsonRepresentation
|
8467
8519
|
property :conversation_model, as: 'conversationModel'
|
8468
8520
|
property :create_time, as: 'createTime'
|
8521
|
+
property :done_time, as: 'doneTime'
|
8469
8522
|
end
|
8470
8523
|
end
|
8471
8524
|
|
@@ -9067,6 +9120,7 @@ module Google
|
|
9067
9120
|
class GoogleCloudDialogflowV2KnowledgeOperationMetadata
|
9068
9121
|
# @private
|
9069
9122
|
class Representation < Google::Apis::Core::JsonRepresentation
|
9123
|
+
property :done_time, as: 'doneTime'
|
9070
9124
|
property :export_operation_metadata, as: 'exportOperationMetadata', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2ExportOperationMetadata, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2ExportOperationMetadata::Representation
|
9071
9125
|
|
9072
9126
|
property :knowledge_base, as: 'knowledgeBase'
|
@@ -9320,6 +9374,7 @@ module Google
|
|
9320
9374
|
class Representation < Google::Apis::Core::JsonRepresentation
|
9321
9375
|
property :conversation_model, as: 'conversationModel'
|
9322
9376
|
property :create_time, as: 'createTime'
|
9377
|
+
property :done_time, as: 'doneTime'
|
9323
9378
|
end
|
9324
9379
|
end
|
9325
9380
|
|
@@ -10169,6 +10224,7 @@ module Google
|
|
10169
10224
|
class GoogleCloudDialogflowV2beta1KnowledgeOperationMetadata
|
10170
10225
|
# @private
|
10171
10226
|
class Representation < Google::Apis::Core::JsonRepresentation
|
10227
|
+
property :done_time, as: 'doneTime'
|
10172
10228
|
property :export_operation_metadata, as: 'exportOperationMetadata', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2beta1ExportOperationMetadata, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2beta1ExportOperationMetadata::Representation
|
10173
10229
|
|
10174
10230
|
property :knowledge_base, as: 'knowledgeBase'
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
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.105.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
@@ -57,7 +57,7 @@ licenses:
|
|
57
57
|
metadata:
|
58
58
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
59
59
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-dialogflow_v3beta1/CHANGELOG.md
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-dialogflow_v3beta1/v0.
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-dialogflow_v3beta1/v0.105.0
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-dialogflow_v3beta1
|
62
62
|
rdoc_options: []
|
63
63
|
require_paths:
|