google-apis-dialogflow_v3 0.109.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
@@ -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
|
@@ -7925,6 +7969,11 @@ module Google
|
|
7925
7969
|
# @return [String]
|
7926
7970
|
attr_accessor :default_banned_phrase_match_strategy
|
7927
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
|
+
|
7928
7977
|
def initialize(**args)
|
7929
7978
|
update!(**args)
|
7930
7979
|
end
|
@@ -7933,6 +7982,7 @@ module Google
|
|
7933
7982
|
def update!(**args)
|
7934
7983
|
@banned_phrases = args[:banned_phrases] if args.key?(:banned_phrases)
|
7935
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)
|
7936
7986
|
end
|
7937
7987
|
end
|
7938
7988
|
|
@@ -7961,6 +8011,26 @@ module Google
|
|
7961
8011
|
end
|
7962
8012
|
end
|
7963
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
|
+
|
7964
8034
|
# Search configuration for UCS search queries.
|
7965
8035
|
class GoogleCloudDialogflowCxV3SearchConfig
|
7966
8036
|
include Google::Apis::Core::Hashable
|
@@ -11797,6 +11867,11 @@ module Google
|
|
11797
11867
|
attr_accessor :enable_generative_fallback
|
11798
11868
|
alias_method :enable_generative_fallback?, :enable_generative_fallback
|
11799
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
|
+
|
11800
11875
|
# The list of rich message responses to present to the user.
|
11801
11876
|
# Corresponds to the JSON property `messages`
|
11802
11877
|
# @return [Array<Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3beta1ResponseMessage>]
|
@@ -11842,6 +11917,7 @@ module Google
|
|
11842
11917
|
@advanced_settings = args[:advanced_settings] if args.key?(:advanced_settings)
|
11843
11918
|
@conditional_cases = args[:conditional_cases] if args.key?(:conditional_cases)
|
11844
11919
|
@enable_generative_fallback = args[:enable_generative_fallback] if args.key?(:enable_generative_fallback)
|
11920
|
+
@generators = args[:generators] if args.key?(:generators)
|
11845
11921
|
@messages = args[:messages] if args.key?(:messages)
|
11846
11922
|
@return_partial_responses = args[:return_partial_responses] if args.key?(:return_partial_responses)
|
11847
11923
|
@set_parameter_actions = args[:set_parameter_actions] if args.key?(:set_parameter_actions)
|
@@ -11936,6 +12012,44 @@ module Google
|
|
11936
12012
|
end
|
11937
12013
|
end
|
11938
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
|
+
|
11939
12053
|
# Setting a parameter value.
|
11940
12054
|
class GoogleCloudDialogflowCxV3beta1FulfillmentSetParameterAction
|
11941
12055
|
include Google::Apis::Core::Hashable
|
@@ -14937,6 +15051,11 @@ module Google
|
|
14937
15051
|
# @return [String]
|
14938
15052
|
attr_accessor :create_time
|
14939
15053
|
|
15054
|
+
# The time when the operation finished.
|
15055
|
+
# Corresponds to the JSON property `doneTime`
|
15056
|
+
# @return [String]
|
15057
|
+
attr_accessor :done_time
|
15058
|
+
|
14940
15059
|
# State of CreateConversationModel operation.
|
14941
15060
|
# Corresponds to the JSON property `state`
|
14942
15061
|
# @return [String]
|
@@ -14950,6 +15069,7 @@ module Google
|
|
14950
15069
|
def update!(**args)
|
14951
15070
|
@conversation_model = args[:conversation_model] if args.key?(:conversation_model)
|
14952
15071
|
@create_time = args[:create_time] if args.key?(:create_time)
|
15072
|
+
@done_time = args[:done_time] if args.key?(:done_time)
|
14953
15073
|
@state = args[:state] if args.key?(:state)
|
14954
15074
|
end
|
14955
15075
|
end
|
@@ -14983,6 +15103,11 @@ module Google
|
|
14983
15103
|
# @return [String]
|
14984
15104
|
attr_accessor :create_time
|
14985
15105
|
|
15106
|
+
# The time when the operation finished.
|
15107
|
+
# Corresponds to the JSON property `doneTime`
|
15108
|
+
# @return [String]
|
15109
|
+
attr_accessor :done_time
|
15110
|
+
|
14986
15111
|
def initialize(**args)
|
14987
15112
|
update!(**args)
|
14988
15113
|
end
|
@@ -14991,6 +15116,7 @@ module Google
|
|
14991
15116
|
def update!(**args)
|
14992
15117
|
@conversation_model = args[:conversation_model] if args.key?(:conversation_model)
|
14993
15118
|
@create_time = args[:create_time] if args.key?(:create_time)
|
15119
|
+
@done_time = args[:done_time] if args.key?(:done_time)
|
14994
15120
|
end
|
14995
15121
|
end
|
14996
15122
|
|
@@ -15010,6 +15136,11 @@ module Google
|
|
15010
15136
|
# @return [String]
|
15011
15137
|
attr_accessor :create_time
|
15012
15138
|
|
15139
|
+
# The time when the operation finished.
|
15140
|
+
# Corresponds to the JSON property `doneTime`
|
15141
|
+
# @return [String]
|
15142
|
+
attr_accessor :done_time
|
15143
|
+
|
15013
15144
|
def initialize(**args)
|
15014
15145
|
update!(**args)
|
15015
15146
|
end
|
@@ -15018,6 +15149,7 @@ module Google
|
|
15018
15149
|
def update!(**args)
|
15019
15150
|
@conversation_model = args[:conversation_model] if args.key?(:conversation_model)
|
15020
15151
|
@create_time = args[:create_time] if args.key?(:create_time)
|
15152
|
+
@done_time = args[:done_time] if args.key?(:done_time)
|
15021
15153
|
end
|
15022
15154
|
end
|
15023
15155
|
|
@@ -17033,6 +17165,11 @@ module Google
|
|
17033
17165
|
class GoogleCloudDialogflowV2KnowledgeOperationMetadata
|
17034
17166
|
include Google::Apis::Core::Hashable
|
17035
17167
|
|
17168
|
+
# The time when the operation finished.
|
17169
|
+
# Corresponds to the JSON property `doneTime`
|
17170
|
+
# @return [String]
|
17171
|
+
attr_accessor :done_time
|
17172
|
+
|
17036
17173
|
# Metadata related to the Export Data Operations (e.g. ExportDocument).
|
17037
17174
|
# Corresponds to the JSON property `exportOperationMetadata`
|
17038
17175
|
# @return [Google::Apis::DialogflowV3::GoogleCloudDialogflowV2ExportOperationMetadata]
|
@@ -17054,6 +17191,7 @@ module Google
|
|
17054
17191
|
|
17055
17192
|
# Update properties of this object
|
17056
17193
|
def update!(**args)
|
17194
|
+
@done_time = args[:done_time] if args.key?(:done_time)
|
17057
17195
|
@export_operation_metadata = args[:export_operation_metadata] if args.key?(:export_operation_metadata)
|
17058
17196
|
@knowledge_base = args[:knowledge_base] if args.key?(:knowledge_base)
|
17059
17197
|
@state = args[:state] if args.key?(:state)
|
@@ -18057,6 +18195,11 @@ module Google
|
|
18057
18195
|
# @return [String]
|
18058
18196
|
attr_accessor :create_time
|
18059
18197
|
|
18198
|
+
# The time when the operation finished.
|
18199
|
+
# Corresponds to the JSON property `doneTime`
|
18200
|
+
# @return [String]
|
18201
|
+
attr_accessor :done_time
|
18202
|
+
|
18060
18203
|
def initialize(**args)
|
18061
18204
|
update!(**args)
|
18062
18205
|
end
|
@@ -18065,6 +18208,7 @@ module Google
|
|
18065
18208
|
def update!(**args)
|
18066
18209
|
@conversation_model = args[:conversation_model] if args.key?(:conversation_model)
|
18067
18210
|
@create_time = args[:create_time] if args.key?(:create_time)
|
18211
|
+
@done_time = args[:done_time] if args.key?(:done_time)
|
18068
18212
|
end
|
18069
18213
|
end
|
18070
18214
|
|
@@ -21036,6 +21180,11 @@ module Google
|
|
21036
21180
|
class GoogleCloudDialogflowV2beta1KnowledgeOperationMetadata
|
21037
21181
|
include Google::Apis::Core::Hashable
|
21038
21182
|
|
21183
|
+
# The time when the operation finished.
|
21184
|
+
# Corresponds to the JSON property `doneTime`
|
21185
|
+
# @return [String]
|
21186
|
+
attr_accessor :done_time
|
21187
|
+
|
21039
21188
|
# Metadata related to the Export Data Operations (e.g. ExportDocument).
|
21040
21189
|
# Corresponds to the JSON property `exportOperationMetadata`
|
21041
21190
|
# @return [Google::Apis::DialogflowV3::GoogleCloudDialogflowV2beta1ExportOperationMetadata]
|
@@ -21057,6 +21206,7 @@ module Google
|
|
21057
21206
|
|
21058
21207
|
# Update properties of this object
|
21059
21208
|
def update!(**args)
|
21209
|
+
@done_time = args[:done_time] if args.key?(:done_time)
|
21060
21210
|
@export_operation_metadata = args[:export_operation_metadata] if args.key?(:export_operation_metadata)
|
21061
21211
|
@knowledge_base = args[:knowledge_base] if args.key?(:knowledge_base)
|
21062
21212
|
@state = args[:state] if args.key?(:state)
|
@@ -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
|
@@ -5831,6 +5860,8 @@ module Google
|
|
5831
5860
|
collection :banned_phrases, as: 'bannedPhrases', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3SafetySettingsPhrase, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3SafetySettingsPhrase::Representation
|
5832
5861
|
|
5833
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
|
+
|
5834
5865
|
end
|
5835
5866
|
end
|
5836
5867
|
|
@@ -5842,6 +5873,13 @@ module Google
|
|
5842
5873
|
end
|
5843
5874
|
end
|
5844
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
|
+
|
5845
5883
|
class GoogleCloudDialogflowCxV3SearchConfig
|
5846
5884
|
# @private
|
5847
5885
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -6890,6 +6928,8 @@ module Google
|
|
6890
6928
|
collection :conditional_cases, as: 'conditionalCases', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3beta1FulfillmentConditionalCases, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3beta1FulfillmentConditionalCases::Representation
|
6891
6929
|
|
6892
6930
|
property :enable_generative_fallback, as: 'enableGenerativeFallback'
|
6931
|
+
collection :generators, as: 'generators', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3beta1FulfillmentGeneratorSettings, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3beta1FulfillmentGeneratorSettings::Representation
|
6932
|
+
|
6893
6933
|
collection :messages, as: 'messages', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3beta1ResponseMessage, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3beta1ResponseMessage::Representation
|
6894
6934
|
|
6895
6935
|
property :return_partial_responses, as: 'returnPartialResponses'
|
@@ -6927,6 +6967,15 @@ module Google
|
|
6927
6967
|
end
|
6928
6968
|
end
|
6929
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
|
+
|
6930
6979
|
class GoogleCloudDialogflowCxV3beta1FulfillmentSetParameterAction
|
6931
6980
|
# @private
|
6932
6981
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -7713,6 +7762,7 @@ module Google
|
|
7713
7762
|
class Representation < Google::Apis::Core::JsonRepresentation
|
7714
7763
|
property :conversation_model, as: 'conversationModel'
|
7715
7764
|
property :create_time, as: 'createTime'
|
7765
|
+
property :done_time, as: 'doneTime'
|
7716
7766
|
property :state, as: 'state'
|
7717
7767
|
end
|
7718
7768
|
end
|
@@ -7728,6 +7778,7 @@ module Google
|
|
7728
7778
|
class Representation < Google::Apis::Core::JsonRepresentation
|
7729
7779
|
property :conversation_model, as: 'conversationModel'
|
7730
7780
|
property :create_time, as: 'createTime'
|
7781
|
+
property :done_time, as: 'doneTime'
|
7731
7782
|
end
|
7732
7783
|
end
|
7733
7784
|
|
@@ -7736,6 +7787,7 @@ module Google
|
|
7736
7787
|
class Representation < Google::Apis::Core::JsonRepresentation
|
7737
7788
|
property :conversation_model, as: 'conversationModel'
|
7738
7789
|
property :create_time, as: 'createTime'
|
7790
|
+
property :done_time, as: 'doneTime'
|
7739
7791
|
end
|
7740
7792
|
end
|
7741
7793
|
|
@@ -8337,6 +8389,7 @@ module Google
|
|
8337
8389
|
class GoogleCloudDialogflowV2KnowledgeOperationMetadata
|
8338
8390
|
# @private
|
8339
8391
|
class Representation < Google::Apis::Core::JsonRepresentation
|
8392
|
+
property :done_time, as: 'doneTime'
|
8340
8393
|
property :export_operation_metadata, as: 'exportOperationMetadata', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowV2ExportOperationMetadata, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowV2ExportOperationMetadata::Representation
|
8341
8394
|
|
8342
8395
|
property :knowledge_base, as: 'knowledgeBase'
|
@@ -8590,6 +8643,7 @@ module Google
|
|
8590
8643
|
class Representation < Google::Apis::Core::JsonRepresentation
|
8591
8644
|
property :conversation_model, as: 'conversationModel'
|
8592
8645
|
property :create_time, as: 'createTime'
|
8646
|
+
property :done_time, as: 'doneTime'
|
8593
8647
|
end
|
8594
8648
|
end
|
8595
8649
|
|
@@ -9439,6 +9493,7 @@ module Google
|
|
9439
9493
|
class GoogleCloudDialogflowV2beta1KnowledgeOperationMetadata
|
9440
9494
|
# @private
|
9441
9495
|
class Representation < Google::Apis::Core::JsonRepresentation
|
9496
|
+
property :done_time, as: 'doneTime'
|
9442
9497
|
property :export_operation_metadata, as: 'exportOperationMetadata', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowV2beta1ExportOperationMetadata, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowV2beta1ExportOperationMetadata::Representation
|
9443
9498
|
|
9444
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:
|