google-apis-dialogflow_v3beta1 0.102.0 → 0.104.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: 4ce0d86c919bfab9428cfd4829a5d2b0883eb83a4c9f45494379c5d1e5218240
|
4
|
+
data.tar.gz: 7c18bf008b419bef33ba30d3a83cd879c6bf4914faeb3944792a18b0b93b722e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 62aa574098fe160ea32f23825db298b88a2c5758cdeff72d25fbda1758def972d0934f98a348ad6a055729a0de64f1f0c2e5d3bc6300b053edab8c471c776810
|
7
|
+
data.tar.gz: ea39749e9917b3ce89c962c288242915e5d5a73352dee2a3fb9173f6f573ddce67e31060834c8f1477d282a642f13f4bf2e5f75387470c3b17e64e9633ac6def
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-dialogflow_v3beta1
|
2
2
|
|
3
|
+
### v0.104.0 (2025-06-22)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20250617
|
6
|
+
|
7
|
+
### v0.103.0 (2025-06-15)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20250612
|
10
|
+
|
3
11
|
### v0.102.0 (2025-06-08)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20250602
|
@@ -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
|
@@ -11998,6 +12086,14 @@ module Google
|
|
11998
12086
|
# @return [Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1LlmModelSettings]
|
11999
12087
|
attr_accessor :llm_model_settings
|
12000
12088
|
|
12089
|
+
# Scope for the parameters. If not specified, parameters will be treated as
|
12090
|
+
# session parameters. Parameters with custom scope will not be put into session
|
12091
|
+
# parameters. You can reference the parameters with custom scope in the agent
|
12092
|
+
# with the following format: $parameter-scope.params.parameter-id.
|
12093
|
+
# Corresponds to the JSON property `parameterScope`
|
12094
|
+
# @return [String]
|
12095
|
+
attr_accessor :parameter_scope
|
12096
|
+
|
12001
12097
|
# Additional parameters to be put into session parameters. To remove a parameter
|
12002
12098
|
# from the session, clients should explicitly set the parameter value to null.
|
12003
12099
|
# You can reference the session parameters in the agent with the following
|
@@ -12085,6 +12181,7 @@ module Google
|
|
12085
12181
|
@flow_versions = args[:flow_versions] if args.key?(:flow_versions)
|
12086
12182
|
@geo_location = args[:geo_location] if args.key?(:geo_location)
|
12087
12183
|
@llm_model_settings = args[:llm_model_settings] if args.key?(:llm_model_settings)
|
12184
|
+
@parameter_scope = args[:parameter_scope] if args.key?(:parameter_scope)
|
12088
12185
|
@parameters = args[:parameters] if args.key?(:parameters)
|
12089
12186
|
@payload = args[:payload] if args.key?(:payload)
|
12090
12187
|
@populate_data_store_connection_signals = args[:populate_data_store_connection_signals] if args.key?(:populate_data_store_connection_signals)
|
@@ -13084,6 +13181,11 @@ module Google
|
|
13084
13181
|
# @return [String]
|
13085
13182
|
attr_accessor :default_banned_phrase_match_strategy
|
13086
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
|
+
|
13087
13189
|
def initialize(**args)
|
13088
13190
|
update!(**args)
|
13089
13191
|
end
|
@@ -13092,6 +13194,7 @@ module Google
|
|
13092
13194
|
def update!(**args)
|
13093
13195
|
@banned_phrases = args[:banned_phrases] if args.key?(:banned_phrases)
|
13094
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)
|
13095
13198
|
end
|
13096
13199
|
end
|
13097
13200
|
|
@@ -13120,6 +13223,26 @@ module Google
|
|
13120
13223
|
end
|
13121
13224
|
end
|
13122
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
|
+
|
13123
13246
|
# Search configuration for UCS search queries.
|
13124
13247
|
class GoogleCloudDialogflowCxV3beta1SearchConfig
|
13125
13248
|
include Google::Apis::Core::Hashable
|
@@ -16618,6 +16741,11 @@ module Google
|
|
16618
16741
|
# @return [String]
|
16619
16742
|
attr_accessor :create_time
|
16620
16743
|
|
16744
|
+
# The time when the operation finished.
|
16745
|
+
# Corresponds to the JSON property `doneTime`
|
16746
|
+
# @return [String]
|
16747
|
+
attr_accessor :done_time
|
16748
|
+
|
16621
16749
|
# State of CreateConversationModel operation.
|
16622
16750
|
# Corresponds to the JSON property `state`
|
16623
16751
|
# @return [String]
|
@@ -16631,6 +16759,7 @@ module Google
|
|
16631
16759
|
def update!(**args)
|
16632
16760
|
@conversation_model = args[:conversation_model] if args.key?(:conversation_model)
|
16633
16761
|
@create_time = args[:create_time] if args.key?(:create_time)
|
16762
|
+
@done_time = args[:done_time] if args.key?(:done_time)
|
16634
16763
|
@state = args[:state] if args.key?(:state)
|
16635
16764
|
end
|
16636
16765
|
end
|
@@ -16664,6 +16793,11 @@ module Google
|
|
16664
16793
|
# @return [String]
|
16665
16794
|
attr_accessor :create_time
|
16666
16795
|
|
16796
|
+
# The time when the operation finished.
|
16797
|
+
# Corresponds to the JSON property `doneTime`
|
16798
|
+
# @return [String]
|
16799
|
+
attr_accessor :done_time
|
16800
|
+
|
16667
16801
|
def initialize(**args)
|
16668
16802
|
update!(**args)
|
16669
16803
|
end
|
@@ -16672,6 +16806,7 @@ module Google
|
|
16672
16806
|
def update!(**args)
|
16673
16807
|
@conversation_model = args[:conversation_model] if args.key?(:conversation_model)
|
16674
16808
|
@create_time = args[:create_time] if args.key?(:create_time)
|
16809
|
+
@done_time = args[:done_time] if args.key?(:done_time)
|
16675
16810
|
end
|
16676
16811
|
end
|
16677
16812
|
|
@@ -16691,6 +16826,11 @@ module Google
|
|
16691
16826
|
# @return [String]
|
16692
16827
|
attr_accessor :create_time
|
16693
16828
|
|
16829
|
+
# The time when the operation finished.
|
16830
|
+
# Corresponds to the JSON property `doneTime`
|
16831
|
+
# @return [String]
|
16832
|
+
attr_accessor :done_time
|
16833
|
+
|
16694
16834
|
def initialize(**args)
|
16695
16835
|
update!(**args)
|
16696
16836
|
end
|
@@ -16699,6 +16839,7 @@ module Google
|
|
16699
16839
|
def update!(**args)
|
16700
16840
|
@conversation_model = args[:conversation_model] if args.key?(:conversation_model)
|
16701
16841
|
@create_time = args[:create_time] if args.key?(:create_time)
|
16842
|
+
@done_time = args[:done_time] if args.key?(:done_time)
|
16702
16843
|
end
|
16703
16844
|
end
|
16704
16845
|
|
@@ -18714,6 +18855,11 @@ module Google
|
|
18714
18855
|
class GoogleCloudDialogflowV2KnowledgeOperationMetadata
|
18715
18856
|
include Google::Apis::Core::Hashable
|
18716
18857
|
|
18858
|
+
# The time when the operation finished.
|
18859
|
+
# Corresponds to the JSON property `doneTime`
|
18860
|
+
# @return [String]
|
18861
|
+
attr_accessor :done_time
|
18862
|
+
|
18717
18863
|
# Metadata related to the Export Data Operations (e.g. ExportDocument).
|
18718
18864
|
# Corresponds to the JSON property `exportOperationMetadata`
|
18719
18865
|
# @return [Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2ExportOperationMetadata]
|
@@ -18735,6 +18881,7 @@ module Google
|
|
18735
18881
|
|
18736
18882
|
# Update properties of this object
|
18737
18883
|
def update!(**args)
|
18884
|
+
@done_time = args[:done_time] if args.key?(:done_time)
|
18738
18885
|
@export_operation_metadata = args[:export_operation_metadata] if args.key?(:export_operation_metadata)
|
18739
18886
|
@knowledge_base = args[:knowledge_base] if args.key?(:knowledge_base)
|
18740
18887
|
@state = args[:state] if args.key?(:state)
|
@@ -19617,7 +19764,7 @@ module Google
|
|
19617
19764
|
class GoogleCloudDialogflowV2ToolCall
|
19618
19765
|
include Google::Apis::Core::Hashable
|
19619
19766
|
|
19620
|
-
#
|
19767
|
+
# Optional. The name of the tool's action associated with this call.
|
19621
19768
|
# Corresponds to the JSON property `action`
|
19622
19769
|
# @return [String]
|
19623
19770
|
attr_accessor :action
|
@@ -19632,7 +19779,7 @@ module Google
|
|
19632
19779
|
# @return [Hash<String,Object>]
|
19633
19780
|
attr_accessor :input_parameters
|
19634
19781
|
|
19635
|
-
#
|
19782
|
+
# Optional. The tool associated with this call. Format: `projects//locations//
|
19636
19783
|
# tools/`.
|
19637
19784
|
# Corresponds to the JSON property `tool`
|
19638
19785
|
# @return [String]
|
@@ -19655,7 +19802,7 @@ module Google
|
|
19655
19802
|
class GoogleCloudDialogflowV2ToolCallResult
|
19656
19803
|
include Google::Apis::Core::Hashable
|
19657
19804
|
|
19658
|
-
#
|
19805
|
+
# Optional. The name of the tool's action associated with this call.
|
19659
19806
|
# Corresponds to the JSON property `action`
|
19660
19807
|
# @return [String]
|
19661
19808
|
attr_accessor :action
|
@@ -19682,7 +19829,7 @@ module Google
|
|
19682
19829
|
# @return [String]
|
19683
19830
|
attr_accessor :raw_content
|
19684
19831
|
|
19685
|
-
#
|
19832
|
+
# Optional. The tool associated with this call. Format: `projects//locations//
|
19686
19833
|
# tools/`.
|
19687
19834
|
# Corresponds to the JSON property `tool`
|
19688
19835
|
# @return [String]
|
@@ -19738,6 +19885,11 @@ module Google
|
|
19738
19885
|
# @return [String]
|
19739
19886
|
attr_accessor :create_time
|
19740
19887
|
|
19888
|
+
# The time when the operation finished.
|
19889
|
+
# Corresponds to the JSON property `doneTime`
|
19890
|
+
# @return [String]
|
19891
|
+
attr_accessor :done_time
|
19892
|
+
|
19741
19893
|
def initialize(**args)
|
19742
19894
|
update!(**args)
|
19743
19895
|
end
|
@@ -19746,6 +19898,7 @@ module Google
|
|
19746
19898
|
def update!(**args)
|
19747
19899
|
@conversation_model = args[:conversation_model] if args.key?(:conversation_model)
|
19748
19900
|
@create_time = args[:create_time] if args.key?(:create_time)
|
19901
|
+
@done_time = args[:done_time] if args.key?(:done_time)
|
19749
19902
|
end
|
19750
19903
|
end
|
19751
19904
|
|
@@ -22717,6 +22870,11 @@ module Google
|
|
22717
22870
|
class GoogleCloudDialogflowV2beta1KnowledgeOperationMetadata
|
22718
22871
|
include Google::Apis::Core::Hashable
|
22719
22872
|
|
22873
|
+
# The time when the operation finished.
|
22874
|
+
# Corresponds to the JSON property `doneTime`
|
22875
|
+
# @return [String]
|
22876
|
+
attr_accessor :done_time
|
22877
|
+
|
22720
22878
|
# Metadata related to the Export Data Operations (e.g. ExportDocument).
|
22721
22879
|
# Corresponds to the JSON property `exportOperationMetadata`
|
22722
22880
|
# @return [Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2beta1ExportOperationMetadata]
|
@@ -22738,6 +22896,7 @@ module Google
|
|
22738
22896
|
|
22739
22897
|
# Update properties of this object
|
22740
22898
|
def update!(**args)
|
22899
|
+
@done_time = args[:done_time] if args.key?(:done_time)
|
22741
22900
|
@export_operation_metadata = args[:export_operation_metadata] if args.key?(:export_operation_metadata)
|
22742
22901
|
@knowledge_base = args[:knowledge_base] if args.key?(:knowledge_base)
|
22743
22902
|
@state = args[:state] if args.key?(:state)
|
@@ -23901,7 +24060,7 @@ module Google
|
|
23901
24060
|
class GoogleCloudDialogflowV2beta1ToolCall
|
23902
24061
|
include Google::Apis::Core::Hashable
|
23903
24062
|
|
23904
|
-
#
|
24063
|
+
# Optional. The name of the tool's action associated with this call.
|
23905
24064
|
# Corresponds to the JSON property `action`
|
23906
24065
|
# @return [String]
|
23907
24066
|
attr_accessor :action
|
@@ -23916,7 +24075,7 @@ module Google
|
|
23916
24075
|
# @return [Hash<String,Object>]
|
23917
24076
|
attr_accessor :input_parameters
|
23918
24077
|
|
23919
|
-
#
|
24078
|
+
# Optional. The tool associated with this call. Format: `projects//locations//
|
23920
24079
|
# tools/`.
|
23921
24080
|
# Corresponds to the JSON property `tool`
|
23922
24081
|
# @return [String]
|
@@ -23939,7 +24098,7 @@ module Google
|
|
23939
24098
|
class GoogleCloudDialogflowV2beta1ToolCallResult
|
23940
24099
|
include Google::Apis::Core::Hashable
|
23941
24100
|
|
23942
|
-
#
|
24101
|
+
# Optional. The name of the tool's action associated with this call.
|
23943
24102
|
# Corresponds to the JSON property `action`
|
23944
24103
|
# @return [String]
|
23945
24104
|
attr_accessor :action
|
@@ -23966,7 +24125,7 @@ module Google
|
|
23966
24125
|
# @return [String]
|
23967
24126
|
attr_accessor :raw_content
|
23968
24127
|
|
23969
|
-
#
|
24128
|
+
# Optional. The tool associated with this call. Format: `projects//locations//
|
23970
24129
|
# tools/`.
|
23971
24130
|
# Corresponds to the JSON property `tool`
|
23972
24131
|
# @return [String]
|
@@ -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.104.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 = "20250617"
|
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
|
@@ -7187,6 +7227,7 @@ module Google
|
|
7187
7227
|
|
7188
7228
|
property :llm_model_settings, as: 'llmModelSettings', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1LlmModelSettings, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1LlmModelSettings::Representation
|
7189
7229
|
|
7230
|
+
property :parameter_scope, as: 'parameterScope'
|
7190
7231
|
hash :parameters, as: 'parameters'
|
7191
7232
|
hash :payload, as: 'payload'
|
7192
7233
|
property :populate_data_store_connection_signals, as: 'populateDataStoreConnectionSignals'
|
@@ -7476,6 +7517,8 @@ module Google
|
|
7476
7517
|
collection :banned_phrases, as: 'bannedPhrases', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1SafetySettingsPhrase, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1SafetySettingsPhrase::Representation
|
7477
7518
|
|
7478
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
|
+
|
7479
7522
|
end
|
7480
7523
|
end
|
7481
7524
|
|
@@ -7487,6 +7530,13 @@ module Google
|
|
7487
7530
|
end
|
7488
7531
|
end
|
7489
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
|
+
|
7490
7540
|
class GoogleCloudDialogflowCxV3beta1SearchConfig
|
7491
7541
|
# @private
|
7492
7542
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -8442,6 +8492,7 @@ module Google
|
|
8442
8492
|
class Representation < Google::Apis::Core::JsonRepresentation
|
8443
8493
|
property :conversation_model, as: 'conversationModel'
|
8444
8494
|
property :create_time, as: 'createTime'
|
8495
|
+
property :done_time, as: 'doneTime'
|
8445
8496
|
property :state, as: 'state'
|
8446
8497
|
end
|
8447
8498
|
end
|
@@ -8457,6 +8508,7 @@ module Google
|
|
8457
8508
|
class Representation < Google::Apis::Core::JsonRepresentation
|
8458
8509
|
property :conversation_model, as: 'conversationModel'
|
8459
8510
|
property :create_time, as: 'createTime'
|
8511
|
+
property :done_time, as: 'doneTime'
|
8460
8512
|
end
|
8461
8513
|
end
|
8462
8514
|
|
@@ -8465,6 +8517,7 @@ module Google
|
|
8465
8517
|
class Representation < Google::Apis::Core::JsonRepresentation
|
8466
8518
|
property :conversation_model, as: 'conversationModel'
|
8467
8519
|
property :create_time, as: 'createTime'
|
8520
|
+
property :done_time, as: 'doneTime'
|
8468
8521
|
end
|
8469
8522
|
end
|
8470
8523
|
|
@@ -9066,6 +9119,7 @@ module Google
|
|
9066
9119
|
class GoogleCloudDialogflowV2KnowledgeOperationMetadata
|
9067
9120
|
# @private
|
9068
9121
|
class Representation < Google::Apis::Core::JsonRepresentation
|
9122
|
+
property :done_time, as: 'doneTime'
|
9069
9123
|
property :export_operation_metadata, as: 'exportOperationMetadata', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2ExportOperationMetadata, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2ExportOperationMetadata::Representation
|
9070
9124
|
|
9071
9125
|
property :knowledge_base, as: 'knowledgeBase'
|
@@ -9319,6 +9373,7 @@ module Google
|
|
9319
9373
|
class Representation < Google::Apis::Core::JsonRepresentation
|
9320
9374
|
property :conversation_model, as: 'conversationModel'
|
9321
9375
|
property :create_time, as: 'createTime'
|
9376
|
+
property :done_time, as: 'doneTime'
|
9322
9377
|
end
|
9323
9378
|
end
|
9324
9379
|
|
@@ -10168,6 +10223,7 @@ module Google
|
|
10168
10223
|
class GoogleCloudDialogflowV2beta1KnowledgeOperationMetadata
|
10169
10224
|
# @private
|
10170
10225
|
class Representation < Google::Apis::Core::JsonRepresentation
|
10226
|
+
property :done_time, as: 'doneTime'
|
10171
10227
|
property :export_operation_metadata, as: 'exportOperationMetadata', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2beta1ExportOperationMetadata, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2beta1ExportOperationMetadata::Representation
|
10172
10228
|
|
10173
10229
|
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.104.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.104.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:
|