google-apis-dialogflow_v3beta1 0.103.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: c8dcfcacdef471895300a546d2a5c283bbb781596414e2481e2e11a58f27d109
4
- data.tar.gz: acaf99f2a7519ae200448153f438b9262521288b1ba1cae531021c9741987cab
3
+ metadata.gz: 4ce0d86c919bfab9428cfd4829a5d2b0883eb83a4c9f45494379c5d1e5218240
4
+ data.tar.gz: 7c18bf008b419bef33ba30d3a83cd879c6bf4914faeb3944792a18b0b93b722e
5
5
  SHA512:
6
- metadata.gz: e999bc1cff7048691dff46ed92cbeb56a0dc9c3a8f1e5fc69e08cf182e52423eb1a963ad657e6af677603b2bb270bbc14a90060c8a84e68ccba9139aa3660b6d
7
- data.tar.gz: f34f43e75cac0ce45399c090d1972063864275cb53690297c6c581be3e08c6ea72f8e993eff887e1b3793be8d6b1fdee5baec53015372776eeb3bb95de023339
6
+ metadata.gz: 62aa574098fe160ea32f23825db298b88a2c5758cdeff72d25fbda1758def972d0934f98a348ad6a055729a0de64f1f0c2e5d3bc6300b053edab8c471c776810
7
+ data.tar.gz: ea39749e9917b3ce89c962c288242915e5d5a73352dee2a3fb9173f6f573ddce67e31060834c8f1477d282a642f13f4bf2e5f75387470c3b17e64e9633ac6def
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
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
+
3
7
  ### v0.103.0 (2025-06-15)
4
8
 
5
9
  * Regenerated from discovery document revision 20250612
@@ -1241,6 +1241,11 @@ module Google
1241
1241
  attr_accessor :enable_generative_fallback
1242
1242
  alias_method :enable_generative_fallback?, :enable_generative_fallback
1243
1243
 
1244
+ # A list of Generators to be called during this fulfillment.
1245
+ # Corresponds to the JSON property `generators`
1246
+ # @return [Array<Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3FulfillmentGeneratorSettings>]
1247
+ attr_accessor :generators
1248
+
1244
1249
  # The list of rich message responses to present to the user.
1245
1250
  # Corresponds to the JSON property `messages`
1246
1251
  # @return [Array<Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3ResponseMessage>]
@@ -1286,6 +1291,7 @@ module Google
1286
1291
  @advanced_settings = args[:advanced_settings] if args.key?(:advanced_settings)
1287
1292
  @conditional_cases = args[:conditional_cases] if args.key?(:conditional_cases)
1288
1293
  @enable_generative_fallback = args[:enable_generative_fallback] if args.key?(:enable_generative_fallback)
1294
+ @generators = args[:generators] if args.key?(:generators)
1289
1295
  @messages = args[:messages] if args.key?(:messages)
1290
1296
  @return_partial_responses = args[:return_partial_responses] if args.key?(:return_partial_responses)
1291
1297
  @set_parameter_actions = args[:set_parameter_actions] if args.key?(:set_parameter_actions)
@@ -1380,6 +1386,44 @@ module Google
1380
1386
  end
1381
1387
  end
1382
1388
 
1389
+ # Generator settings used by the LLM to generate a text response.
1390
+ class GoogleCloudDialogflowCxV3FulfillmentGeneratorSettings
1391
+ include Google::Apis::Core::Hashable
1392
+
1393
+ # Required. The generator to call. Format: `projects//locations//agents//
1394
+ # generators/`.
1395
+ # Corresponds to the JSON property `generator`
1396
+ # @return [String]
1397
+ attr_accessor :generator
1398
+
1399
+ # Map from placeholder parameter in the Generator to corresponding session
1400
+ # parameters. By default, Dialogflow uses the session parameter with the same
1401
+ # name to fill in the generator template. e.g. If there is a placeholder
1402
+ # parameter `city` in the Generator, Dialogflow default to fill in the `$city`
1403
+ # with `$session.params.city`. However, you may choose to fill `$city` with `$
1404
+ # session.params.desination-city`. - Map key: parameter ID - Map value: session
1405
+ # parameter name
1406
+ # Corresponds to the JSON property `inputParameters`
1407
+ # @return [Hash<String,String>]
1408
+ attr_accessor :input_parameters
1409
+
1410
+ # Required. Output parameter which should contain the generator response.
1411
+ # Corresponds to the JSON property `outputParameter`
1412
+ # @return [String]
1413
+ attr_accessor :output_parameter
1414
+
1415
+ def initialize(**args)
1416
+ update!(**args)
1417
+ end
1418
+
1419
+ # Update properties of this object
1420
+ def update!(**args)
1421
+ @generator = args[:generator] if args.key?(:generator)
1422
+ @input_parameters = args[:input_parameters] if args.key?(:input_parameters)
1423
+ @output_parameter = args[:output_parameter] if args.key?(:output_parameter)
1424
+ end
1425
+ end
1426
+
1383
1427
  # Setting a parameter value.
1384
1428
  class GoogleCloudDialogflowCxV3FulfillmentSetParameterAction
1385
1429
  include Google::Apis::Core::Hashable
@@ -8535,6 +8579,11 @@ module Google
8535
8579
  attr_accessor :enable_generative_fallback
8536
8580
  alias_method :enable_generative_fallback?, :enable_generative_fallback
8537
8581
 
8582
+ # A list of Generators to be called during this fulfillment.
8583
+ # Corresponds to the JSON property `generators`
8584
+ # @return [Array<Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1FulfillmentGeneratorSettings>]
8585
+ attr_accessor :generators
8586
+
8538
8587
  # The list of rich message responses to present to the user.
8539
8588
  # Corresponds to the JSON property `messages`
8540
8589
  # @return [Array<Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1ResponseMessage>]
@@ -8580,6 +8629,7 @@ module Google
8580
8629
  @advanced_settings = args[:advanced_settings] if args.key?(:advanced_settings)
8581
8630
  @conditional_cases = args[:conditional_cases] if args.key?(:conditional_cases)
8582
8631
  @enable_generative_fallback = args[:enable_generative_fallback] if args.key?(:enable_generative_fallback)
8632
+ @generators = args[:generators] if args.key?(:generators)
8583
8633
  @messages = args[:messages] if args.key?(:messages)
8584
8634
  @return_partial_responses = args[:return_partial_responses] if args.key?(:return_partial_responses)
8585
8635
  @set_parameter_actions = args[:set_parameter_actions] if args.key?(:set_parameter_actions)
@@ -8674,6 +8724,44 @@ module Google
8674
8724
  end
8675
8725
  end
8676
8726
 
8727
+ # Generator settings used by the LLM to generate a text response.
8728
+ class GoogleCloudDialogflowCxV3beta1FulfillmentGeneratorSettings
8729
+ include Google::Apis::Core::Hashable
8730
+
8731
+ # Required. The generator to call. Format: `projects//locations//agents//
8732
+ # generators/`.
8733
+ # Corresponds to the JSON property `generator`
8734
+ # @return [String]
8735
+ attr_accessor :generator
8736
+
8737
+ # Map from placeholder parameter in the Generator to corresponding session
8738
+ # parameters. By default, Dialogflow uses the session parameter with the same
8739
+ # name to fill in the generator template. e.g. If there is a placeholder
8740
+ # parameter `city` in the Generator, Dialogflow default to fill in the `$city`
8741
+ # with `$session.params.city`. However, you may choose to fill `$city` with `$
8742
+ # session.params.desination-city`. - Map key: parameter ID - Map value: session
8743
+ # parameter name
8744
+ # Corresponds to the JSON property `inputParameters`
8745
+ # @return [Hash<String,String>]
8746
+ attr_accessor :input_parameters
8747
+
8748
+ # Required. Output parameter which should contain the generator response.
8749
+ # Corresponds to the JSON property `outputParameter`
8750
+ # @return [String]
8751
+ attr_accessor :output_parameter
8752
+
8753
+ def initialize(**args)
8754
+ update!(**args)
8755
+ end
8756
+
8757
+ # Update properties of this object
8758
+ def update!(**args)
8759
+ @generator = args[:generator] if args.key?(:generator)
8760
+ @input_parameters = args[:input_parameters] if args.key?(:input_parameters)
8761
+ @output_parameter = args[:output_parameter] if args.key?(:output_parameter)
8762
+ end
8763
+ end
8764
+
8677
8765
  # Setting a parameter value.
8678
8766
  class GoogleCloudDialogflowCxV3beta1FulfillmentSetParameterAction
8679
8767
  include Google::Apis::Core::Hashable
@@ -13093,6 +13181,11 @@ module Google
13093
13181
  # @return [String]
13094
13182
  attr_accessor :default_banned_phrase_match_strategy
13095
13183
 
13184
+ # Settings for prompt security checks.
13185
+ # Corresponds to the JSON property `promptSecuritySettings`
13186
+ # @return [Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1SafetySettingsPromptSecuritySettings]
13187
+ attr_accessor :prompt_security_settings
13188
+
13096
13189
  def initialize(**args)
13097
13190
  update!(**args)
13098
13191
  end
@@ -13101,6 +13194,7 @@ module Google
13101
13194
  def update!(**args)
13102
13195
  @banned_phrases = args[:banned_phrases] if args.key?(:banned_phrases)
13103
13196
  @default_banned_phrase_match_strategy = args[:default_banned_phrase_match_strategy] if args.key?(:default_banned_phrase_match_strategy)
13197
+ @prompt_security_settings = args[:prompt_security_settings] if args.key?(:prompt_security_settings)
13104
13198
  end
13105
13199
  end
13106
13200
 
@@ -13129,6 +13223,26 @@ module Google
13129
13223
  end
13130
13224
  end
13131
13225
 
13226
+ # Settings for prompt security checks.
13227
+ class GoogleCloudDialogflowCxV3beta1SafetySettingsPromptSecuritySettings
13228
+ include Google::Apis::Core::Hashable
13229
+
13230
+ # Optional. Enable prompt security checks.
13231
+ # Corresponds to the JSON property `enablePromptSecurity`
13232
+ # @return [Boolean]
13233
+ attr_accessor :enable_prompt_security
13234
+ alias_method :enable_prompt_security?, :enable_prompt_security
13235
+
13236
+ def initialize(**args)
13237
+ update!(**args)
13238
+ end
13239
+
13240
+ # Update properties of this object
13241
+ def update!(**args)
13242
+ @enable_prompt_security = args[:enable_prompt_security] if args.key?(:enable_prompt_security)
13243
+ end
13244
+ end
13245
+
13132
13246
  # Search configuration for UCS search queries.
13133
13247
  class GoogleCloudDialogflowCxV3beta1SearchConfig
13134
13248
  include Google::Apis::Core::Hashable
@@ -16627,6 +16741,11 @@ module Google
16627
16741
  # @return [String]
16628
16742
  attr_accessor :create_time
16629
16743
 
16744
+ # The time when the operation finished.
16745
+ # Corresponds to the JSON property `doneTime`
16746
+ # @return [String]
16747
+ attr_accessor :done_time
16748
+
16630
16749
  # State of CreateConversationModel operation.
16631
16750
  # Corresponds to the JSON property `state`
16632
16751
  # @return [String]
@@ -16640,6 +16759,7 @@ module Google
16640
16759
  def update!(**args)
16641
16760
  @conversation_model = args[:conversation_model] if args.key?(:conversation_model)
16642
16761
  @create_time = args[:create_time] if args.key?(:create_time)
16762
+ @done_time = args[:done_time] if args.key?(:done_time)
16643
16763
  @state = args[:state] if args.key?(:state)
16644
16764
  end
16645
16765
  end
@@ -16673,6 +16793,11 @@ module Google
16673
16793
  # @return [String]
16674
16794
  attr_accessor :create_time
16675
16795
 
16796
+ # The time when the operation finished.
16797
+ # Corresponds to the JSON property `doneTime`
16798
+ # @return [String]
16799
+ attr_accessor :done_time
16800
+
16676
16801
  def initialize(**args)
16677
16802
  update!(**args)
16678
16803
  end
@@ -16681,6 +16806,7 @@ module Google
16681
16806
  def update!(**args)
16682
16807
  @conversation_model = args[:conversation_model] if args.key?(:conversation_model)
16683
16808
  @create_time = args[:create_time] if args.key?(:create_time)
16809
+ @done_time = args[:done_time] if args.key?(:done_time)
16684
16810
  end
16685
16811
  end
16686
16812
 
@@ -16700,6 +16826,11 @@ module Google
16700
16826
  # @return [String]
16701
16827
  attr_accessor :create_time
16702
16828
 
16829
+ # The time when the operation finished.
16830
+ # Corresponds to the JSON property `doneTime`
16831
+ # @return [String]
16832
+ attr_accessor :done_time
16833
+
16703
16834
  def initialize(**args)
16704
16835
  update!(**args)
16705
16836
  end
@@ -16708,6 +16839,7 @@ module Google
16708
16839
  def update!(**args)
16709
16840
  @conversation_model = args[:conversation_model] if args.key?(:conversation_model)
16710
16841
  @create_time = args[:create_time] if args.key?(:create_time)
16842
+ @done_time = args[:done_time] if args.key?(:done_time)
16711
16843
  end
16712
16844
  end
16713
16845
 
@@ -18723,6 +18855,11 @@ module Google
18723
18855
  class GoogleCloudDialogflowV2KnowledgeOperationMetadata
18724
18856
  include Google::Apis::Core::Hashable
18725
18857
 
18858
+ # The time when the operation finished.
18859
+ # Corresponds to the JSON property `doneTime`
18860
+ # @return [String]
18861
+ attr_accessor :done_time
18862
+
18726
18863
  # Metadata related to the Export Data Operations (e.g. ExportDocument).
18727
18864
  # Corresponds to the JSON property `exportOperationMetadata`
18728
18865
  # @return [Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2ExportOperationMetadata]
@@ -18744,6 +18881,7 @@ module Google
18744
18881
 
18745
18882
  # Update properties of this object
18746
18883
  def update!(**args)
18884
+ @done_time = args[:done_time] if args.key?(:done_time)
18747
18885
  @export_operation_metadata = args[:export_operation_metadata] if args.key?(:export_operation_metadata)
18748
18886
  @knowledge_base = args[:knowledge_base] if args.key?(:knowledge_base)
18749
18887
  @state = args[:state] if args.key?(:state)
@@ -19747,6 +19885,11 @@ module Google
19747
19885
  # @return [String]
19748
19886
  attr_accessor :create_time
19749
19887
 
19888
+ # The time when the operation finished.
19889
+ # Corresponds to the JSON property `doneTime`
19890
+ # @return [String]
19891
+ attr_accessor :done_time
19892
+
19750
19893
  def initialize(**args)
19751
19894
  update!(**args)
19752
19895
  end
@@ -19755,6 +19898,7 @@ module Google
19755
19898
  def update!(**args)
19756
19899
  @conversation_model = args[:conversation_model] if args.key?(:conversation_model)
19757
19900
  @create_time = args[:create_time] if args.key?(:create_time)
19901
+ @done_time = args[:done_time] if args.key?(:done_time)
19758
19902
  end
19759
19903
  end
19760
19904
 
@@ -22726,6 +22870,11 @@ module Google
22726
22870
  class GoogleCloudDialogflowV2beta1KnowledgeOperationMetadata
22727
22871
  include Google::Apis::Core::Hashable
22728
22872
 
22873
+ # The time when the operation finished.
22874
+ # Corresponds to the JSON property `doneTime`
22875
+ # @return [String]
22876
+ attr_accessor :done_time
22877
+
22729
22878
  # Metadata related to the Export Data Operations (e.g. ExportDocument).
22730
22879
  # Corresponds to the JSON property `exportOperationMetadata`
22731
22880
  # @return [Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2beta1ExportOperationMetadata]
@@ -22747,6 +22896,7 @@ module Google
22747
22896
 
22748
22897
  # Update properties of this object
22749
22898
  def update!(**args)
22899
+ @done_time = args[:done_time] if args.key?(:done_time)
22750
22900
  @export_operation_metadata = args[:export_operation_metadata] if args.key?(:export_operation_metadata)
22751
22901
  @knowledge_base = args[:knowledge_base] if args.key?(:knowledge_base)
22752
22902
  @state = args[:state] if args.key?(:state)
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module DialogflowV3beta1
18
18
  # Version of the google-apis-dialogflow_v3beta1 gem
19
- GEM_VERSION = "0.103.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 = "20250612"
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
@@ -7477,6 +7517,8 @@ module Google
7477
7517
  collection :banned_phrases, as: 'bannedPhrases', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1SafetySettingsPhrase, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1SafetySettingsPhrase::Representation
7478
7518
 
7479
7519
  property :default_banned_phrase_match_strategy, as: 'defaultBannedPhraseMatchStrategy'
7520
+ property :prompt_security_settings, as: 'promptSecuritySettings', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1SafetySettingsPromptSecuritySettings, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1SafetySettingsPromptSecuritySettings::Representation
7521
+
7480
7522
  end
7481
7523
  end
7482
7524
 
@@ -7488,6 +7530,13 @@ module Google
7488
7530
  end
7489
7531
  end
7490
7532
 
7533
+ class GoogleCloudDialogflowCxV3beta1SafetySettingsPromptSecuritySettings
7534
+ # @private
7535
+ class Representation < Google::Apis::Core::JsonRepresentation
7536
+ property :enable_prompt_security, as: 'enablePromptSecurity'
7537
+ end
7538
+ end
7539
+
7491
7540
  class GoogleCloudDialogflowCxV3beta1SearchConfig
7492
7541
  # @private
7493
7542
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -8443,6 +8492,7 @@ module Google
8443
8492
  class Representation < Google::Apis::Core::JsonRepresentation
8444
8493
  property :conversation_model, as: 'conversationModel'
8445
8494
  property :create_time, as: 'createTime'
8495
+ property :done_time, as: 'doneTime'
8446
8496
  property :state, as: 'state'
8447
8497
  end
8448
8498
  end
@@ -8458,6 +8508,7 @@ module Google
8458
8508
  class Representation < Google::Apis::Core::JsonRepresentation
8459
8509
  property :conversation_model, as: 'conversationModel'
8460
8510
  property :create_time, as: 'createTime'
8511
+ property :done_time, as: 'doneTime'
8461
8512
  end
8462
8513
  end
8463
8514
 
@@ -8466,6 +8517,7 @@ module Google
8466
8517
  class Representation < Google::Apis::Core::JsonRepresentation
8467
8518
  property :conversation_model, as: 'conversationModel'
8468
8519
  property :create_time, as: 'createTime'
8520
+ property :done_time, as: 'doneTime'
8469
8521
  end
8470
8522
  end
8471
8523
 
@@ -9067,6 +9119,7 @@ module Google
9067
9119
  class GoogleCloudDialogflowV2KnowledgeOperationMetadata
9068
9120
  # @private
9069
9121
  class Representation < Google::Apis::Core::JsonRepresentation
9122
+ property :done_time, as: 'doneTime'
9070
9123
  property :export_operation_metadata, as: 'exportOperationMetadata', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2ExportOperationMetadata, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2ExportOperationMetadata::Representation
9071
9124
 
9072
9125
  property :knowledge_base, as: 'knowledgeBase'
@@ -9320,6 +9373,7 @@ module Google
9320
9373
  class Representation < Google::Apis::Core::JsonRepresentation
9321
9374
  property :conversation_model, as: 'conversationModel'
9322
9375
  property :create_time, as: 'createTime'
9376
+ property :done_time, as: 'doneTime'
9323
9377
  end
9324
9378
  end
9325
9379
 
@@ -10169,6 +10223,7 @@ module Google
10169
10223
  class GoogleCloudDialogflowV2beta1KnowledgeOperationMetadata
10170
10224
  # @private
10171
10225
  class Representation < Google::Apis::Core::JsonRepresentation
10226
+ property :done_time, as: 'doneTime'
10172
10227
  property :export_operation_metadata, as: 'exportOperationMetadata', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2beta1ExportOperationMetadata, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2beta1ExportOperationMetadata::Representation
10173
10228
 
10174
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.103.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.103.0
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: