google-apis-dialogflow_v3 0.109.0 → 0.111.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: 6a54a3f4aa2502146d66e8409b3bb16beea3d906cb3c7855c4ec65919c3a5615
4
- data.tar.gz: d9216afb7fe495416434555d70e40d4fb5d263fa07f650859b66428955d8e7bf
3
+ metadata.gz: eecc1ffeb70e52021085ff518e9ed4eda42ffbda3b815643d7683fefcd7dbfa7
4
+ data.tar.gz: f3bee55776d01933d927717b6e591315441a19d35a3098f88278768bbd7f7e43
5
5
  SHA512:
6
- metadata.gz: 8100855da8657edb20853c6a49d8a493560dada6487e60ff3a002d1e6f91e8cb8294b649d6f1279eba4633b00e1488d8ea27d1a0d1055f13c9cd28f5e1bd3006
7
- data.tar.gz: 5aeea72663691e20195a7deb017858719dca86db0028031df66caf51da974dac14e48993ac3e62f7a7ade62a66f7a15ba9a2bec0e116aefcf488b32ee33fc03b
6
+ metadata.gz: 75c9c2cb2beb22bf2c2c67a88dd11218cecebdf2b1bf1818eefc1c55a9c6d68429da9d52db1556575c2ce48a6239a2e440976e73f100f07ee5412130b5ef80c2
7
+ data.tar.gz: 2006f52681c1f2e94fa77f3c3c7bba588e15d3dea03881eef45cc5c892192340497efd9947cb148ae6dbdc21484d7ccf031e223a6f23298e78d24a095883448c
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-dialogflow_v3
2
2
 
3
+ ### v0.111.0 (2025-06-29)
4
+
5
+ * Regenerated from discovery document revision 20250625
6
+
7
+ ### v0.110.0 (2025-06-22)
8
+
9
+ * Regenerated from discovery document revision 20250617
10
+
3
11
  ### v0.109.0 (2025-06-15)
4
12
 
5
13
  * Regenerated from discovery document revision 20250612
@@ -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
@@ -9987,6 +10057,12 @@ module Google
9987
10057
  # @return [String]
9988
10058
  attr_accessor :name
9989
10059
 
10060
+ # Optional. The name of the second voice (non-English) if language detection is
10061
+ # supported.
10062
+ # Corresponds to the JSON property `secondLanguageModel`
10063
+ # @return [String]
10064
+ attr_accessor :second_language_model
10065
+
9990
10066
  # Optional. The preferred gender of the voice. If not set, the service will
9991
10067
  # choose a voice based on the other parameters such as language_code and name.
9992
10068
  # Note that this is only a preference, not requirement. If a voice of the
@@ -10003,6 +10079,7 @@ module Google
10003
10079
  # Update properties of this object
10004
10080
  def update!(**args)
10005
10081
  @name = args[:name] if args.key?(:name)
10082
+ @second_language_model = args[:second_language_model] if args.key?(:second_language_model)
10006
10083
  @ssml_gender = args[:ssml_gender] if args.key?(:ssml_gender)
10007
10084
  end
10008
10085
  end
@@ -11797,6 +11874,11 @@ module Google
11797
11874
  attr_accessor :enable_generative_fallback
11798
11875
  alias_method :enable_generative_fallback?, :enable_generative_fallback
11799
11876
 
11877
+ # A list of Generators to be called during this fulfillment.
11878
+ # Corresponds to the JSON property `generators`
11879
+ # @return [Array<Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3beta1FulfillmentGeneratorSettings>]
11880
+ attr_accessor :generators
11881
+
11800
11882
  # The list of rich message responses to present to the user.
11801
11883
  # Corresponds to the JSON property `messages`
11802
11884
  # @return [Array<Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3beta1ResponseMessage>]
@@ -11842,6 +11924,7 @@ module Google
11842
11924
  @advanced_settings = args[:advanced_settings] if args.key?(:advanced_settings)
11843
11925
  @conditional_cases = args[:conditional_cases] if args.key?(:conditional_cases)
11844
11926
  @enable_generative_fallback = args[:enable_generative_fallback] if args.key?(:enable_generative_fallback)
11927
+ @generators = args[:generators] if args.key?(:generators)
11845
11928
  @messages = args[:messages] if args.key?(:messages)
11846
11929
  @return_partial_responses = args[:return_partial_responses] if args.key?(:return_partial_responses)
11847
11930
  @set_parameter_actions = args[:set_parameter_actions] if args.key?(:set_parameter_actions)
@@ -11936,6 +12019,44 @@ module Google
11936
12019
  end
11937
12020
  end
11938
12021
 
12022
+ # Generator settings used by the LLM to generate a text response.
12023
+ class GoogleCloudDialogflowCxV3beta1FulfillmentGeneratorSettings
12024
+ include Google::Apis::Core::Hashable
12025
+
12026
+ # Required. The generator to call. Format: `projects//locations//agents//
12027
+ # generators/`.
12028
+ # Corresponds to the JSON property `generator`
12029
+ # @return [String]
12030
+ attr_accessor :generator
12031
+
12032
+ # Map from placeholder parameter in the Generator to corresponding session
12033
+ # parameters. By default, Dialogflow uses the session parameter with the same
12034
+ # name to fill in the generator template. e.g. If there is a placeholder
12035
+ # parameter `city` in the Generator, Dialogflow default to fill in the `$city`
12036
+ # with `$session.params.city`. However, you may choose to fill `$city` with `$
12037
+ # session.params.desination-city`. - Map key: parameter ID - Map value: session
12038
+ # parameter name
12039
+ # Corresponds to the JSON property `inputParameters`
12040
+ # @return [Hash<String,String>]
12041
+ attr_accessor :input_parameters
12042
+
12043
+ # Required. Output parameter which should contain the generator response.
12044
+ # Corresponds to the JSON property `outputParameter`
12045
+ # @return [String]
12046
+ attr_accessor :output_parameter
12047
+
12048
+ def initialize(**args)
12049
+ update!(**args)
12050
+ end
12051
+
12052
+ # Update properties of this object
12053
+ def update!(**args)
12054
+ @generator = args[:generator] if args.key?(:generator)
12055
+ @input_parameters = args[:input_parameters] if args.key?(:input_parameters)
12056
+ @output_parameter = args[:output_parameter] if args.key?(:output_parameter)
12057
+ end
12058
+ end
12059
+
11939
12060
  # Setting a parameter value.
11940
12061
  class GoogleCloudDialogflowCxV3beta1FulfillmentSetParameterAction
11941
12062
  include Google::Apis::Core::Hashable
@@ -14937,6 +15058,11 @@ module Google
14937
15058
  # @return [String]
14938
15059
  attr_accessor :create_time
14939
15060
 
15061
+ # The time when the operation finished.
15062
+ # Corresponds to the JSON property `doneTime`
15063
+ # @return [String]
15064
+ attr_accessor :done_time
15065
+
14940
15066
  # State of CreateConversationModel operation.
14941
15067
  # Corresponds to the JSON property `state`
14942
15068
  # @return [String]
@@ -14950,6 +15076,7 @@ module Google
14950
15076
  def update!(**args)
14951
15077
  @conversation_model = args[:conversation_model] if args.key?(:conversation_model)
14952
15078
  @create_time = args[:create_time] if args.key?(:create_time)
15079
+ @done_time = args[:done_time] if args.key?(:done_time)
14953
15080
  @state = args[:state] if args.key?(:state)
14954
15081
  end
14955
15082
  end
@@ -14983,6 +15110,11 @@ module Google
14983
15110
  # @return [String]
14984
15111
  attr_accessor :create_time
14985
15112
 
15113
+ # The time when the operation finished.
15114
+ # Corresponds to the JSON property `doneTime`
15115
+ # @return [String]
15116
+ attr_accessor :done_time
15117
+
14986
15118
  def initialize(**args)
14987
15119
  update!(**args)
14988
15120
  end
@@ -14991,6 +15123,7 @@ module Google
14991
15123
  def update!(**args)
14992
15124
  @conversation_model = args[:conversation_model] if args.key?(:conversation_model)
14993
15125
  @create_time = args[:create_time] if args.key?(:create_time)
15126
+ @done_time = args[:done_time] if args.key?(:done_time)
14994
15127
  end
14995
15128
  end
14996
15129
 
@@ -15010,6 +15143,11 @@ module Google
15010
15143
  # @return [String]
15011
15144
  attr_accessor :create_time
15012
15145
 
15146
+ # The time when the operation finished.
15147
+ # Corresponds to the JSON property `doneTime`
15148
+ # @return [String]
15149
+ attr_accessor :done_time
15150
+
15013
15151
  def initialize(**args)
15014
15152
  update!(**args)
15015
15153
  end
@@ -15018,6 +15156,7 @@ module Google
15018
15156
  def update!(**args)
15019
15157
  @conversation_model = args[:conversation_model] if args.key?(:conversation_model)
15020
15158
  @create_time = args[:create_time] if args.key?(:create_time)
15159
+ @done_time = args[:done_time] if args.key?(:done_time)
15021
15160
  end
15022
15161
  end
15023
15162
 
@@ -17033,6 +17172,11 @@ module Google
17033
17172
  class GoogleCloudDialogflowV2KnowledgeOperationMetadata
17034
17173
  include Google::Apis::Core::Hashable
17035
17174
 
17175
+ # The time when the operation finished.
17176
+ # Corresponds to the JSON property `doneTime`
17177
+ # @return [String]
17178
+ attr_accessor :done_time
17179
+
17036
17180
  # Metadata related to the Export Data Operations (e.g. ExportDocument).
17037
17181
  # Corresponds to the JSON property `exportOperationMetadata`
17038
17182
  # @return [Google::Apis::DialogflowV3::GoogleCloudDialogflowV2ExportOperationMetadata]
@@ -17054,6 +17198,7 @@ module Google
17054
17198
 
17055
17199
  # Update properties of this object
17056
17200
  def update!(**args)
17201
+ @done_time = args[:done_time] if args.key?(:done_time)
17057
17202
  @export_operation_metadata = args[:export_operation_metadata] if args.key?(:export_operation_metadata)
17058
17203
  @knowledge_base = args[:knowledge_base] if args.key?(:knowledge_base)
17059
17204
  @state = args[:state] if args.key?(:state)
@@ -18057,6 +18202,11 @@ module Google
18057
18202
  # @return [String]
18058
18203
  attr_accessor :create_time
18059
18204
 
18205
+ # The time when the operation finished.
18206
+ # Corresponds to the JSON property `doneTime`
18207
+ # @return [String]
18208
+ attr_accessor :done_time
18209
+
18060
18210
  def initialize(**args)
18061
18211
  update!(**args)
18062
18212
  end
@@ -18065,6 +18215,7 @@ module Google
18065
18215
  def update!(**args)
18066
18216
  @conversation_model = args[:conversation_model] if args.key?(:conversation_model)
18067
18217
  @create_time = args[:create_time] if args.key?(:create_time)
18218
+ @done_time = args[:done_time] if args.key?(:done_time)
18068
18219
  end
18069
18220
  end
18070
18221
 
@@ -21036,6 +21187,11 @@ module Google
21036
21187
  class GoogleCloudDialogflowV2beta1KnowledgeOperationMetadata
21037
21188
  include Google::Apis::Core::Hashable
21038
21189
 
21190
+ # The time when the operation finished.
21191
+ # Corresponds to the JSON property `doneTime`
21192
+ # @return [String]
21193
+ attr_accessor :done_time
21194
+
21039
21195
  # Metadata related to the Export Data Operations (e.g. ExportDocument).
21040
21196
  # Corresponds to the JSON property `exportOperationMetadata`
21041
21197
  # @return [Google::Apis::DialogflowV3::GoogleCloudDialogflowV2beta1ExportOperationMetadata]
@@ -21057,6 +21213,7 @@ module Google
21057
21213
 
21058
21214
  # Update properties of this object
21059
21215
  def update!(**args)
21216
+ @done_time = args[:done_time] if args.key?(:done_time)
21060
21217
  @export_operation_metadata = args[:export_operation_metadata] if args.key?(:export_operation_metadata)
21061
21218
  @knowledge_base = args[:knowledge_base] if args.key?(:knowledge_base)
21062
21219
  @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.109.0"
19
+ GEM_VERSION = "0.111.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 = "20250612"
25
+ REVISION = "20250625"
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
@@ -6400,6 +6438,7 @@ module Google
6400
6438
  # @private
6401
6439
  class Representation < Google::Apis::Core::JsonRepresentation
6402
6440
  property :name, as: 'name'
6441
+ property :second_language_model, as: 'secondLanguageModel'
6403
6442
  property :ssml_gender, as: 'ssmlGender'
6404
6443
  end
6405
6444
  end
@@ -6890,6 +6929,8 @@ module Google
6890
6929
  collection :conditional_cases, as: 'conditionalCases', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3beta1FulfillmentConditionalCases, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3beta1FulfillmentConditionalCases::Representation
6891
6930
 
6892
6931
  property :enable_generative_fallback, as: 'enableGenerativeFallback'
6932
+ collection :generators, as: 'generators', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3beta1FulfillmentGeneratorSettings, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3beta1FulfillmentGeneratorSettings::Representation
6933
+
6893
6934
  collection :messages, as: 'messages', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3beta1ResponseMessage, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3beta1ResponseMessage::Representation
6894
6935
 
6895
6936
  property :return_partial_responses, as: 'returnPartialResponses'
@@ -6927,6 +6968,15 @@ module Google
6927
6968
  end
6928
6969
  end
6929
6970
 
6971
+ class GoogleCloudDialogflowCxV3beta1FulfillmentGeneratorSettings
6972
+ # @private
6973
+ class Representation < Google::Apis::Core::JsonRepresentation
6974
+ property :generator, as: 'generator'
6975
+ hash :input_parameters, as: 'inputParameters'
6976
+ property :output_parameter, as: 'outputParameter'
6977
+ end
6978
+ end
6979
+
6930
6980
  class GoogleCloudDialogflowCxV3beta1FulfillmentSetParameterAction
6931
6981
  # @private
6932
6982
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -7713,6 +7763,7 @@ module Google
7713
7763
  class Representation < Google::Apis::Core::JsonRepresentation
7714
7764
  property :conversation_model, as: 'conversationModel'
7715
7765
  property :create_time, as: 'createTime'
7766
+ property :done_time, as: 'doneTime'
7716
7767
  property :state, as: 'state'
7717
7768
  end
7718
7769
  end
@@ -7728,6 +7779,7 @@ module Google
7728
7779
  class Representation < Google::Apis::Core::JsonRepresentation
7729
7780
  property :conversation_model, as: 'conversationModel'
7730
7781
  property :create_time, as: 'createTime'
7782
+ property :done_time, as: 'doneTime'
7731
7783
  end
7732
7784
  end
7733
7785
 
@@ -7736,6 +7788,7 @@ module Google
7736
7788
  class Representation < Google::Apis::Core::JsonRepresentation
7737
7789
  property :conversation_model, as: 'conversationModel'
7738
7790
  property :create_time, as: 'createTime'
7791
+ property :done_time, as: 'doneTime'
7739
7792
  end
7740
7793
  end
7741
7794
 
@@ -8337,6 +8390,7 @@ module Google
8337
8390
  class GoogleCloudDialogflowV2KnowledgeOperationMetadata
8338
8391
  # @private
8339
8392
  class Representation < Google::Apis::Core::JsonRepresentation
8393
+ property :done_time, as: 'doneTime'
8340
8394
  property :export_operation_metadata, as: 'exportOperationMetadata', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowV2ExportOperationMetadata, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowV2ExportOperationMetadata::Representation
8341
8395
 
8342
8396
  property :knowledge_base, as: 'knowledgeBase'
@@ -8590,6 +8644,7 @@ module Google
8590
8644
  class Representation < Google::Apis::Core::JsonRepresentation
8591
8645
  property :conversation_model, as: 'conversationModel'
8592
8646
  property :create_time, as: 'createTime'
8647
+ property :done_time, as: 'doneTime'
8593
8648
  end
8594
8649
  end
8595
8650
 
@@ -9439,6 +9494,7 @@ module Google
9439
9494
  class GoogleCloudDialogflowV2beta1KnowledgeOperationMetadata
9440
9495
  # @private
9441
9496
  class Representation < Google::Apis::Core::JsonRepresentation
9497
+ property :done_time, as: 'doneTime'
9442
9498
  property :export_operation_metadata, as: 'exportOperationMetadata', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowV2beta1ExportOperationMetadata, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowV2beta1ExportOperationMetadata::Representation
9443
9499
 
9444
9500
  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.109.0
4
+ version: 0.111.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.109.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-dialogflow_v3/v0.111.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: