google-apis-dialogflow_v3 0.108.0 → 0.110.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: c3083f993c53efe7f765319fe6167ed3196d46d109b8555eddad362886fa242f
|
4
|
+
data.tar.gz: 653474b4b3c4977d7036f71dccac042a2371bce089ccbc86a4e12b26c21b2cc7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9a6b01cb930a23c80f975c347a32202b70e9f67e00171c65de896ba9c7fef13f71d55ed8a98063991454ec890cc51c3a2af19f410838556a38a2d88c5323eb2d
|
7
|
+
data.tar.gz: 9d7a7ff03f38423b5d06b5e2b6fdc7cd650d6cc9723a0acfaa48e3ca5bdd308a55201acc22b892d25f1fcfcf9142336f9f1e8ffb09c6e5db9bd6b9027cc6f59a
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-dialogflow_v3
|
2
2
|
|
3
|
+
### v0.110.0 (2025-06-22)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20250617
|
6
|
+
|
7
|
+
### v0.109.0 (2025-06-15)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20250612
|
10
|
+
|
3
11
|
### v0.108.0 (2025-06-08)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20250602
|
@@ -3747,6 +3747,11 @@ module Google
|
|
3747
3747
|
attr_accessor :enable_generative_fallback
|
3748
3748
|
alias_method :enable_generative_fallback?, :enable_generative_fallback
|
3749
3749
|
|
3750
|
+
# A list of Generators to be called during this fulfillment.
|
3751
|
+
# Corresponds to the JSON property `generators`
|
3752
|
+
# @return [Array<Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3FulfillmentGeneratorSettings>]
|
3753
|
+
attr_accessor :generators
|
3754
|
+
|
3750
3755
|
# The list of rich message responses to present to the user.
|
3751
3756
|
# Corresponds to the JSON property `messages`
|
3752
3757
|
# @return [Array<Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3ResponseMessage>]
|
@@ -3792,6 +3797,7 @@ module Google
|
|
3792
3797
|
@advanced_settings = args[:advanced_settings] if args.key?(:advanced_settings)
|
3793
3798
|
@conditional_cases = args[:conditional_cases] if args.key?(:conditional_cases)
|
3794
3799
|
@enable_generative_fallback = args[:enable_generative_fallback] if args.key?(:enable_generative_fallback)
|
3800
|
+
@generators = args[:generators] if args.key?(:generators)
|
3795
3801
|
@messages = args[:messages] if args.key?(:messages)
|
3796
3802
|
@return_partial_responses = args[:return_partial_responses] if args.key?(:return_partial_responses)
|
3797
3803
|
@set_parameter_actions = args[:set_parameter_actions] if args.key?(:set_parameter_actions)
|
@@ -3886,6 +3892,44 @@ module Google
|
|
3886
3892
|
end
|
3887
3893
|
end
|
3888
3894
|
|
3895
|
+
# Generator settings used by the LLM to generate a text response.
|
3896
|
+
class GoogleCloudDialogflowCxV3FulfillmentGeneratorSettings
|
3897
|
+
include Google::Apis::Core::Hashable
|
3898
|
+
|
3899
|
+
# Required. The generator to call. Format: `projects//locations//agents//
|
3900
|
+
# generators/`.
|
3901
|
+
# Corresponds to the JSON property `generator`
|
3902
|
+
# @return [String]
|
3903
|
+
attr_accessor :generator
|
3904
|
+
|
3905
|
+
# Map from placeholder parameter in the Generator to corresponding session
|
3906
|
+
# parameters. By default, Dialogflow uses the session parameter with the same
|
3907
|
+
# name to fill in the generator template. e.g. If there is a placeholder
|
3908
|
+
# parameter `city` in the Generator, Dialogflow default to fill in the `$city`
|
3909
|
+
# with `$session.params.city`. However, you may choose to fill `$city` with `$
|
3910
|
+
# session.params.desination-city`. - Map key: parameter ID - Map value: session
|
3911
|
+
# parameter name
|
3912
|
+
# Corresponds to the JSON property `inputParameters`
|
3913
|
+
# @return [Hash<String,String>]
|
3914
|
+
attr_accessor :input_parameters
|
3915
|
+
|
3916
|
+
# Required. Output parameter which should contain the generator response.
|
3917
|
+
# Corresponds to the JSON property `outputParameter`
|
3918
|
+
# @return [String]
|
3919
|
+
attr_accessor :output_parameter
|
3920
|
+
|
3921
|
+
def initialize(**args)
|
3922
|
+
update!(**args)
|
3923
|
+
end
|
3924
|
+
|
3925
|
+
# Update properties of this object
|
3926
|
+
def update!(**args)
|
3927
|
+
@generator = args[:generator] if args.key?(:generator)
|
3928
|
+
@input_parameters = args[:input_parameters] if args.key?(:input_parameters)
|
3929
|
+
@output_parameter = args[:output_parameter] if args.key?(:output_parameter)
|
3930
|
+
end
|
3931
|
+
end
|
3932
|
+
|
3889
3933
|
# Setting a parameter value.
|
3890
3934
|
class GoogleCloudDialogflowCxV3FulfillmentSetParameterAction
|
3891
3935
|
include Google::Apis::Core::Hashable
|
@@ -6870,6 +6914,14 @@ module Google
|
|
6870
6914
|
# @return [Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3LlmModelSettings]
|
6871
6915
|
attr_accessor :llm_model_settings
|
6872
6916
|
|
6917
|
+
# Scope for the parameters. If not specified, parameters will be treated as
|
6918
|
+
# session parameters. Parameters with custom scope will not be put into session
|
6919
|
+
# parameters. You can reference the parameters with custom scope in the agent
|
6920
|
+
# with the following format: $parameter-scope.params.parameter-id.
|
6921
|
+
# Corresponds to the JSON property `parameterScope`
|
6922
|
+
# @return [String]
|
6923
|
+
attr_accessor :parameter_scope
|
6924
|
+
|
6873
6925
|
# Additional parameters to be put into session parameters. To remove a parameter
|
6874
6926
|
# from the session, clients should explicitly set the parameter value to null.
|
6875
6927
|
# You can reference the session parameters in the agent with the following
|
@@ -6957,6 +7009,7 @@ module Google
|
|
6957
7009
|
@flow_versions = args[:flow_versions] if args.key?(:flow_versions)
|
6958
7010
|
@geo_location = args[:geo_location] if args.key?(:geo_location)
|
6959
7011
|
@llm_model_settings = args[:llm_model_settings] if args.key?(:llm_model_settings)
|
7012
|
+
@parameter_scope = args[:parameter_scope] if args.key?(:parameter_scope)
|
6960
7013
|
@parameters = args[:parameters] if args.key?(:parameters)
|
6961
7014
|
@payload = args[:payload] if args.key?(:payload)
|
6962
7015
|
@populate_data_store_connection_signals = args[:populate_data_store_connection_signals] if args.key?(:populate_data_store_connection_signals)
|
@@ -7916,6 +7969,11 @@ module Google
|
|
7916
7969
|
# @return [String]
|
7917
7970
|
attr_accessor :default_banned_phrase_match_strategy
|
7918
7971
|
|
7972
|
+
# Settings for prompt security checks.
|
7973
|
+
# Corresponds to the JSON property `promptSecuritySettings`
|
7974
|
+
# @return [Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3SafetySettingsPromptSecuritySettings]
|
7975
|
+
attr_accessor :prompt_security_settings
|
7976
|
+
|
7919
7977
|
def initialize(**args)
|
7920
7978
|
update!(**args)
|
7921
7979
|
end
|
@@ -7924,6 +7982,7 @@ module Google
|
|
7924
7982
|
def update!(**args)
|
7925
7983
|
@banned_phrases = args[:banned_phrases] if args.key?(:banned_phrases)
|
7926
7984
|
@default_banned_phrase_match_strategy = args[:default_banned_phrase_match_strategy] if args.key?(:default_banned_phrase_match_strategy)
|
7985
|
+
@prompt_security_settings = args[:prompt_security_settings] if args.key?(:prompt_security_settings)
|
7927
7986
|
end
|
7928
7987
|
end
|
7929
7988
|
|
@@ -7952,6 +8011,26 @@ module Google
|
|
7952
8011
|
end
|
7953
8012
|
end
|
7954
8013
|
|
8014
|
+
# Settings for prompt security checks.
|
8015
|
+
class GoogleCloudDialogflowCxV3SafetySettingsPromptSecuritySettings
|
8016
|
+
include Google::Apis::Core::Hashable
|
8017
|
+
|
8018
|
+
# Optional. Enable prompt security checks.
|
8019
|
+
# Corresponds to the JSON property `enablePromptSecurity`
|
8020
|
+
# @return [Boolean]
|
8021
|
+
attr_accessor :enable_prompt_security
|
8022
|
+
alias_method :enable_prompt_security?, :enable_prompt_security
|
8023
|
+
|
8024
|
+
def initialize(**args)
|
8025
|
+
update!(**args)
|
8026
|
+
end
|
8027
|
+
|
8028
|
+
# Update properties of this object
|
8029
|
+
def update!(**args)
|
8030
|
+
@enable_prompt_security = args[:enable_prompt_security] if args.key?(:enable_prompt_security)
|
8031
|
+
end
|
8032
|
+
end
|
8033
|
+
|
7955
8034
|
# Search configuration for UCS search queries.
|
7956
8035
|
class GoogleCloudDialogflowCxV3SearchConfig
|
7957
8036
|
include Google::Apis::Core::Hashable
|
@@ -11788,6 +11867,11 @@ module Google
|
|
11788
11867
|
attr_accessor :enable_generative_fallback
|
11789
11868
|
alias_method :enable_generative_fallback?, :enable_generative_fallback
|
11790
11869
|
|
11870
|
+
# A list of Generators to be called during this fulfillment.
|
11871
|
+
# Corresponds to the JSON property `generators`
|
11872
|
+
# @return [Array<Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3beta1FulfillmentGeneratorSettings>]
|
11873
|
+
attr_accessor :generators
|
11874
|
+
|
11791
11875
|
# The list of rich message responses to present to the user.
|
11792
11876
|
# Corresponds to the JSON property `messages`
|
11793
11877
|
# @return [Array<Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3beta1ResponseMessage>]
|
@@ -11833,6 +11917,7 @@ module Google
|
|
11833
11917
|
@advanced_settings = args[:advanced_settings] if args.key?(:advanced_settings)
|
11834
11918
|
@conditional_cases = args[:conditional_cases] if args.key?(:conditional_cases)
|
11835
11919
|
@enable_generative_fallback = args[:enable_generative_fallback] if args.key?(:enable_generative_fallback)
|
11920
|
+
@generators = args[:generators] if args.key?(:generators)
|
11836
11921
|
@messages = args[:messages] if args.key?(:messages)
|
11837
11922
|
@return_partial_responses = args[:return_partial_responses] if args.key?(:return_partial_responses)
|
11838
11923
|
@set_parameter_actions = args[:set_parameter_actions] if args.key?(:set_parameter_actions)
|
@@ -11927,6 +12012,44 @@ module Google
|
|
11927
12012
|
end
|
11928
12013
|
end
|
11929
12014
|
|
12015
|
+
# Generator settings used by the LLM to generate a text response.
|
12016
|
+
class GoogleCloudDialogflowCxV3beta1FulfillmentGeneratorSettings
|
12017
|
+
include Google::Apis::Core::Hashable
|
12018
|
+
|
12019
|
+
# Required. The generator to call. Format: `projects//locations//agents//
|
12020
|
+
# generators/`.
|
12021
|
+
# Corresponds to the JSON property `generator`
|
12022
|
+
# @return [String]
|
12023
|
+
attr_accessor :generator
|
12024
|
+
|
12025
|
+
# Map from placeholder parameter in the Generator to corresponding session
|
12026
|
+
# parameters. By default, Dialogflow uses the session parameter with the same
|
12027
|
+
# name to fill in the generator template. e.g. If there is a placeholder
|
12028
|
+
# parameter `city` in the Generator, Dialogflow default to fill in the `$city`
|
12029
|
+
# with `$session.params.city`. However, you may choose to fill `$city` with `$
|
12030
|
+
# session.params.desination-city`. - Map key: parameter ID - Map value: session
|
12031
|
+
# parameter name
|
12032
|
+
# Corresponds to the JSON property `inputParameters`
|
12033
|
+
# @return [Hash<String,String>]
|
12034
|
+
attr_accessor :input_parameters
|
12035
|
+
|
12036
|
+
# Required. Output parameter which should contain the generator response.
|
12037
|
+
# Corresponds to the JSON property `outputParameter`
|
12038
|
+
# @return [String]
|
12039
|
+
attr_accessor :output_parameter
|
12040
|
+
|
12041
|
+
def initialize(**args)
|
12042
|
+
update!(**args)
|
12043
|
+
end
|
12044
|
+
|
12045
|
+
# Update properties of this object
|
12046
|
+
def update!(**args)
|
12047
|
+
@generator = args[:generator] if args.key?(:generator)
|
12048
|
+
@input_parameters = args[:input_parameters] if args.key?(:input_parameters)
|
12049
|
+
@output_parameter = args[:output_parameter] if args.key?(:output_parameter)
|
12050
|
+
end
|
12051
|
+
end
|
12052
|
+
|
11930
12053
|
# Setting a parameter value.
|
11931
12054
|
class GoogleCloudDialogflowCxV3beta1FulfillmentSetParameterAction
|
11932
12055
|
include Google::Apis::Core::Hashable
|
@@ -14928,6 +15051,11 @@ module Google
|
|
14928
15051
|
# @return [String]
|
14929
15052
|
attr_accessor :create_time
|
14930
15053
|
|
15054
|
+
# The time when the operation finished.
|
15055
|
+
# Corresponds to the JSON property `doneTime`
|
15056
|
+
# @return [String]
|
15057
|
+
attr_accessor :done_time
|
15058
|
+
|
14931
15059
|
# State of CreateConversationModel operation.
|
14932
15060
|
# Corresponds to the JSON property `state`
|
14933
15061
|
# @return [String]
|
@@ -14941,6 +15069,7 @@ module Google
|
|
14941
15069
|
def update!(**args)
|
14942
15070
|
@conversation_model = args[:conversation_model] if args.key?(:conversation_model)
|
14943
15071
|
@create_time = args[:create_time] if args.key?(:create_time)
|
15072
|
+
@done_time = args[:done_time] if args.key?(:done_time)
|
14944
15073
|
@state = args[:state] if args.key?(:state)
|
14945
15074
|
end
|
14946
15075
|
end
|
@@ -14974,6 +15103,11 @@ module Google
|
|
14974
15103
|
# @return [String]
|
14975
15104
|
attr_accessor :create_time
|
14976
15105
|
|
15106
|
+
# The time when the operation finished.
|
15107
|
+
# Corresponds to the JSON property `doneTime`
|
15108
|
+
# @return [String]
|
15109
|
+
attr_accessor :done_time
|
15110
|
+
|
14977
15111
|
def initialize(**args)
|
14978
15112
|
update!(**args)
|
14979
15113
|
end
|
@@ -14982,6 +15116,7 @@ module Google
|
|
14982
15116
|
def update!(**args)
|
14983
15117
|
@conversation_model = args[:conversation_model] if args.key?(:conversation_model)
|
14984
15118
|
@create_time = args[:create_time] if args.key?(:create_time)
|
15119
|
+
@done_time = args[:done_time] if args.key?(:done_time)
|
14985
15120
|
end
|
14986
15121
|
end
|
14987
15122
|
|
@@ -15001,6 +15136,11 @@ module Google
|
|
15001
15136
|
# @return [String]
|
15002
15137
|
attr_accessor :create_time
|
15003
15138
|
|
15139
|
+
# The time when the operation finished.
|
15140
|
+
# Corresponds to the JSON property `doneTime`
|
15141
|
+
# @return [String]
|
15142
|
+
attr_accessor :done_time
|
15143
|
+
|
15004
15144
|
def initialize(**args)
|
15005
15145
|
update!(**args)
|
15006
15146
|
end
|
@@ -15009,6 +15149,7 @@ module Google
|
|
15009
15149
|
def update!(**args)
|
15010
15150
|
@conversation_model = args[:conversation_model] if args.key?(:conversation_model)
|
15011
15151
|
@create_time = args[:create_time] if args.key?(:create_time)
|
15152
|
+
@done_time = args[:done_time] if args.key?(:done_time)
|
15012
15153
|
end
|
15013
15154
|
end
|
15014
15155
|
|
@@ -17024,6 +17165,11 @@ module Google
|
|
17024
17165
|
class GoogleCloudDialogflowV2KnowledgeOperationMetadata
|
17025
17166
|
include Google::Apis::Core::Hashable
|
17026
17167
|
|
17168
|
+
# The time when the operation finished.
|
17169
|
+
# Corresponds to the JSON property `doneTime`
|
17170
|
+
# @return [String]
|
17171
|
+
attr_accessor :done_time
|
17172
|
+
|
17027
17173
|
# Metadata related to the Export Data Operations (e.g. ExportDocument).
|
17028
17174
|
# Corresponds to the JSON property `exportOperationMetadata`
|
17029
17175
|
# @return [Google::Apis::DialogflowV3::GoogleCloudDialogflowV2ExportOperationMetadata]
|
@@ -17045,6 +17191,7 @@ module Google
|
|
17045
17191
|
|
17046
17192
|
# Update properties of this object
|
17047
17193
|
def update!(**args)
|
17194
|
+
@done_time = args[:done_time] if args.key?(:done_time)
|
17048
17195
|
@export_operation_metadata = args[:export_operation_metadata] if args.key?(:export_operation_metadata)
|
17049
17196
|
@knowledge_base = args[:knowledge_base] if args.key?(:knowledge_base)
|
17050
17197
|
@state = args[:state] if args.key?(:state)
|
@@ -17927,7 +18074,7 @@ module Google
|
|
17927
18074
|
class GoogleCloudDialogflowV2ToolCall
|
17928
18075
|
include Google::Apis::Core::Hashable
|
17929
18076
|
|
17930
|
-
#
|
18077
|
+
# Optional. The name of the tool's action associated with this call.
|
17931
18078
|
# Corresponds to the JSON property `action`
|
17932
18079
|
# @return [String]
|
17933
18080
|
attr_accessor :action
|
@@ -17942,7 +18089,7 @@ module Google
|
|
17942
18089
|
# @return [Hash<String,Object>]
|
17943
18090
|
attr_accessor :input_parameters
|
17944
18091
|
|
17945
|
-
#
|
18092
|
+
# Optional. The tool associated with this call. Format: `projects//locations//
|
17946
18093
|
# tools/`.
|
17947
18094
|
# Corresponds to the JSON property `tool`
|
17948
18095
|
# @return [String]
|
@@ -17965,7 +18112,7 @@ module Google
|
|
17965
18112
|
class GoogleCloudDialogflowV2ToolCallResult
|
17966
18113
|
include Google::Apis::Core::Hashable
|
17967
18114
|
|
17968
|
-
#
|
18115
|
+
# Optional. The name of the tool's action associated with this call.
|
17969
18116
|
# Corresponds to the JSON property `action`
|
17970
18117
|
# @return [String]
|
17971
18118
|
attr_accessor :action
|
@@ -17992,7 +18139,7 @@ module Google
|
|
17992
18139
|
# @return [String]
|
17993
18140
|
attr_accessor :raw_content
|
17994
18141
|
|
17995
|
-
#
|
18142
|
+
# Optional. The tool associated with this call. Format: `projects//locations//
|
17996
18143
|
# tools/`.
|
17997
18144
|
# Corresponds to the JSON property `tool`
|
17998
18145
|
# @return [String]
|
@@ -18048,6 +18195,11 @@ module Google
|
|
18048
18195
|
# @return [String]
|
18049
18196
|
attr_accessor :create_time
|
18050
18197
|
|
18198
|
+
# The time when the operation finished.
|
18199
|
+
# Corresponds to the JSON property `doneTime`
|
18200
|
+
# @return [String]
|
18201
|
+
attr_accessor :done_time
|
18202
|
+
|
18051
18203
|
def initialize(**args)
|
18052
18204
|
update!(**args)
|
18053
18205
|
end
|
@@ -18056,6 +18208,7 @@ module Google
|
|
18056
18208
|
def update!(**args)
|
18057
18209
|
@conversation_model = args[:conversation_model] if args.key?(:conversation_model)
|
18058
18210
|
@create_time = args[:create_time] if args.key?(:create_time)
|
18211
|
+
@done_time = args[:done_time] if args.key?(:done_time)
|
18059
18212
|
end
|
18060
18213
|
end
|
18061
18214
|
|
@@ -21027,6 +21180,11 @@ module Google
|
|
21027
21180
|
class GoogleCloudDialogflowV2beta1KnowledgeOperationMetadata
|
21028
21181
|
include Google::Apis::Core::Hashable
|
21029
21182
|
|
21183
|
+
# The time when the operation finished.
|
21184
|
+
# Corresponds to the JSON property `doneTime`
|
21185
|
+
# @return [String]
|
21186
|
+
attr_accessor :done_time
|
21187
|
+
|
21030
21188
|
# Metadata related to the Export Data Operations (e.g. ExportDocument).
|
21031
21189
|
# Corresponds to the JSON property `exportOperationMetadata`
|
21032
21190
|
# @return [Google::Apis::DialogflowV3::GoogleCloudDialogflowV2beta1ExportOperationMetadata]
|
@@ -21048,6 +21206,7 @@ module Google
|
|
21048
21206
|
|
21049
21207
|
# Update properties of this object
|
21050
21208
|
def update!(**args)
|
21209
|
+
@done_time = args[:done_time] if args.key?(:done_time)
|
21051
21210
|
@export_operation_metadata = args[:export_operation_metadata] if args.key?(:export_operation_metadata)
|
21052
21211
|
@knowledge_base = args[:knowledge_base] if args.key?(:knowledge_base)
|
21053
21212
|
@state = args[:state] if args.key?(:state)
|
@@ -22211,7 +22370,7 @@ module Google
|
|
22211
22370
|
class GoogleCloudDialogflowV2beta1ToolCall
|
22212
22371
|
include Google::Apis::Core::Hashable
|
22213
22372
|
|
22214
|
-
#
|
22373
|
+
# Optional. The name of the tool's action associated with this call.
|
22215
22374
|
# Corresponds to the JSON property `action`
|
22216
22375
|
# @return [String]
|
22217
22376
|
attr_accessor :action
|
@@ -22226,7 +22385,7 @@ module Google
|
|
22226
22385
|
# @return [Hash<String,Object>]
|
22227
22386
|
attr_accessor :input_parameters
|
22228
22387
|
|
22229
|
-
#
|
22388
|
+
# Optional. The tool associated with this call. Format: `projects//locations//
|
22230
22389
|
# tools/`.
|
22231
22390
|
# Corresponds to the JSON property `tool`
|
22232
22391
|
# @return [String]
|
@@ -22249,7 +22408,7 @@ module Google
|
|
22249
22408
|
class GoogleCloudDialogflowV2beta1ToolCallResult
|
22250
22409
|
include Google::Apis::Core::Hashable
|
22251
22410
|
|
22252
|
-
#
|
22411
|
+
# Optional. The name of the tool's action associated with this call.
|
22253
22412
|
# Corresponds to the JSON property `action`
|
22254
22413
|
# @return [String]
|
22255
22414
|
attr_accessor :action
|
@@ -22276,7 +22435,7 @@ module Google
|
|
22276
22435
|
# @return [String]
|
22277
22436
|
attr_accessor :raw_content
|
22278
22437
|
|
22279
|
-
#
|
22438
|
+
# Optional. The tool associated with this call. Format: `projects//locations//
|
22280
22439
|
# tools/`.
|
22281
22440
|
# Corresponds to the JSON property `tool`
|
22282
22441
|
# @return [String]
|
@@ -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.110.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
|
@@ -622,6 +622,12 @@ module Google
|
|
622
622
|
include Google::Apis::Core::JsonObjectSupport
|
623
623
|
end
|
624
624
|
|
625
|
+
class GoogleCloudDialogflowCxV3FulfillmentGeneratorSettings
|
626
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
627
|
+
|
628
|
+
include Google::Apis::Core::JsonObjectSupport
|
629
|
+
end
|
630
|
+
|
625
631
|
class GoogleCloudDialogflowCxV3FulfillmentSetParameterAction
|
626
632
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
627
633
|
|
@@ -1306,6 +1312,12 @@ module Google
|
|
1306
1312
|
include Google::Apis::Core::JsonObjectSupport
|
1307
1313
|
end
|
1308
1314
|
|
1315
|
+
class GoogleCloudDialogflowCxV3SafetySettingsPromptSecuritySettings
|
1316
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1317
|
+
|
1318
|
+
include Google::Apis::Core::JsonObjectSupport
|
1319
|
+
end
|
1320
|
+
|
1309
1321
|
class GoogleCloudDialogflowCxV3SearchConfig
|
1310
1322
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1311
1323
|
|
@@ -1954,6 +1966,12 @@ module Google
|
|
1954
1966
|
include Google::Apis::Core::JsonObjectSupport
|
1955
1967
|
end
|
1956
1968
|
|
1969
|
+
class GoogleCloudDialogflowCxV3beta1FulfillmentGeneratorSettings
|
1970
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1971
|
+
|
1972
|
+
include Google::Apis::Core::JsonObjectSupport
|
1973
|
+
end
|
1974
|
+
|
1957
1975
|
class GoogleCloudDialogflowCxV3beta1FulfillmentSetParameterAction
|
1958
1976
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1959
1977
|
|
@@ -4681,6 +4699,8 @@ module Google
|
|
4681
4699
|
collection :conditional_cases, as: 'conditionalCases', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3FulfillmentConditionalCases, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3FulfillmentConditionalCases::Representation
|
4682
4700
|
|
4683
4701
|
property :enable_generative_fallback, as: 'enableGenerativeFallback'
|
4702
|
+
collection :generators, as: 'generators', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3FulfillmentGeneratorSettings, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3FulfillmentGeneratorSettings::Representation
|
4703
|
+
|
4684
4704
|
collection :messages, as: 'messages', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3ResponseMessage, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3ResponseMessage::Representation
|
4685
4705
|
|
4686
4706
|
property :return_partial_responses, as: 'returnPartialResponses'
|
@@ -4718,6 +4738,15 @@ module Google
|
|
4718
4738
|
end
|
4719
4739
|
end
|
4720
4740
|
|
4741
|
+
class GoogleCloudDialogflowCxV3FulfillmentGeneratorSettings
|
4742
|
+
# @private
|
4743
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
4744
|
+
property :generator, as: 'generator'
|
4745
|
+
hash :input_parameters, as: 'inputParameters'
|
4746
|
+
property :output_parameter, as: 'outputParameter'
|
4747
|
+
end
|
4748
|
+
end
|
4749
|
+
|
4721
4750
|
class GoogleCloudDialogflowCxV3FulfillmentSetParameterAction
|
4722
4751
|
# @private
|
4723
4752
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -5548,6 +5577,7 @@ module Google
|
|
5548
5577
|
|
5549
5578
|
property :llm_model_settings, as: 'llmModelSettings', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3LlmModelSettings, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3LlmModelSettings::Representation
|
5550
5579
|
|
5580
|
+
property :parameter_scope, as: 'parameterScope'
|
5551
5581
|
hash :parameters, as: 'parameters'
|
5552
5582
|
hash :payload, as: 'payload'
|
5553
5583
|
property :populate_data_store_connection_signals, as: 'populateDataStoreConnectionSignals'
|
@@ -5830,6 +5860,8 @@ module Google
|
|
5830
5860
|
collection :banned_phrases, as: 'bannedPhrases', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3SafetySettingsPhrase, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3SafetySettingsPhrase::Representation
|
5831
5861
|
|
5832
5862
|
property :default_banned_phrase_match_strategy, as: 'defaultBannedPhraseMatchStrategy'
|
5863
|
+
property :prompt_security_settings, as: 'promptSecuritySettings', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3SafetySettingsPromptSecuritySettings, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3SafetySettingsPromptSecuritySettings::Representation
|
5864
|
+
|
5833
5865
|
end
|
5834
5866
|
end
|
5835
5867
|
|
@@ -5841,6 +5873,13 @@ module Google
|
|
5841
5873
|
end
|
5842
5874
|
end
|
5843
5875
|
|
5876
|
+
class GoogleCloudDialogflowCxV3SafetySettingsPromptSecuritySettings
|
5877
|
+
# @private
|
5878
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
5879
|
+
property :enable_prompt_security, as: 'enablePromptSecurity'
|
5880
|
+
end
|
5881
|
+
end
|
5882
|
+
|
5844
5883
|
class GoogleCloudDialogflowCxV3SearchConfig
|
5845
5884
|
# @private
|
5846
5885
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -6889,6 +6928,8 @@ module Google
|
|
6889
6928
|
collection :conditional_cases, as: 'conditionalCases', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3beta1FulfillmentConditionalCases, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3beta1FulfillmentConditionalCases::Representation
|
6890
6929
|
|
6891
6930
|
property :enable_generative_fallback, as: 'enableGenerativeFallback'
|
6931
|
+
collection :generators, as: 'generators', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3beta1FulfillmentGeneratorSettings, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3beta1FulfillmentGeneratorSettings::Representation
|
6932
|
+
|
6892
6933
|
collection :messages, as: 'messages', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3beta1ResponseMessage, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3beta1ResponseMessage::Representation
|
6893
6934
|
|
6894
6935
|
property :return_partial_responses, as: 'returnPartialResponses'
|
@@ -6926,6 +6967,15 @@ module Google
|
|
6926
6967
|
end
|
6927
6968
|
end
|
6928
6969
|
|
6970
|
+
class GoogleCloudDialogflowCxV3beta1FulfillmentGeneratorSettings
|
6971
|
+
# @private
|
6972
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
6973
|
+
property :generator, as: 'generator'
|
6974
|
+
hash :input_parameters, as: 'inputParameters'
|
6975
|
+
property :output_parameter, as: 'outputParameter'
|
6976
|
+
end
|
6977
|
+
end
|
6978
|
+
|
6929
6979
|
class GoogleCloudDialogflowCxV3beta1FulfillmentSetParameterAction
|
6930
6980
|
# @private
|
6931
6981
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -7712,6 +7762,7 @@ module Google
|
|
7712
7762
|
class Representation < Google::Apis::Core::JsonRepresentation
|
7713
7763
|
property :conversation_model, as: 'conversationModel'
|
7714
7764
|
property :create_time, as: 'createTime'
|
7765
|
+
property :done_time, as: 'doneTime'
|
7715
7766
|
property :state, as: 'state'
|
7716
7767
|
end
|
7717
7768
|
end
|
@@ -7727,6 +7778,7 @@ module Google
|
|
7727
7778
|
class Representation < Google::Apis::Core::JsonRepresentation
|
7728
7779
|
property :conversation_model, as: 'conversationModel'
|
7729
7780
|
property :create_time, as: 'createTime'
|
7781
|
+
property :done_time, as: 'doneTime'
|
7730
7782
|
end
|
7731
7783
|
end
|
7732
7784
|
|
@@ -7735,6 +7787,7 @@ module Google
|
|
7735
7787
|
class Representation < Google::Apis::Core::JsonRepresentation
|
7736
7788
|
property :conversation_model, as: 'conversationModel'
|
7737
7789
|
property :create_time, as: 'createTime'
|
7790
|
+
property :done_time, as: 'doneTime'
|
7738
7791
|
end
|
7739
7792
|
end
|
7740
7793
|
|
@@ -8336,6 +8389,7 @@ module Google
|
|
8336
8389
|
class GoogleCloudDialogflowV2KnowledgeOperationMetadata
|
8337
8390
|
# @private
|
8338
8391
|
class Representation < Google::Apis::Core::JsonRepresentation
|
8392
|
+
property :done_time, as: 'doneTime'
|
8339
8393
|
property :export_operation_metadata, as: 'exportOperationMetadata', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowV2ExportOperationMetadata, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowV2ExportOperationMetadata::Representation
|
8340
8394
|
|
8341
8395
|
property :knowledge_base, as: 'knowledgeBase'
|
@@ -8589,6 +8643,7 @@ module Google
|
|
8589
8643
|
class Representation < Google::Apis::Core::JsonRepresentation
|
8590
8644
|
property :conversation_model, as: 'conversationModel'
|
8591
8645
|
property :create_time, as: 'createTime'
|
8646
|
+
property :done_time, as: 'doneTime'
|
8592
8647
|
end
|
8593
8648
|
end
|
8594
8649
|
|
@@ -9438,6 +9493,7 @@ module Google
|
|
9438
9493
|
class GoogleCloudDialogflowV2beta1KnowledgeOperationMetadata
|
9439
9494
|
# @private
|
9440
9495
|
class Representation < Google::Apis::Core::JsonRepresentation
|
9496
|
+
property :done_time, as: 'doneTime'
|
9441
9497
|
property :export_operation_metadata, as: 'exportOperationMetadata', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowV2beta1ExportOperationMetadata, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowV2beta1ExportOperationMetadata::Representation
|
9442
9498
|
|
9443
9499
|
property :knowledge_base, as: 'knowledgeBase'
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
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.110.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_v3/CHANGELOG.md
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-dialogflow_v3/v0.
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-dialogflow_v3/v0.110.0
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-dialogflow_v3
|
62
62
|
rdoc_options: []
|
63
63
|
require_paths:
|