google-apis-dialogflow_v2beta1 0.68.0 → 0.69.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: 609c3840d8ba36e08f298917b08a00cad99ddbb935afb861150002e0e4e6ef64
4
- data.tar.gz: e9b631fca5c45074317826af77e088cc16ccf0dc77a5f9fcd2453d0ed794669b
3
+ metadata.gz: cc48e1b1757561bdf6e1d745f73d8c19da90d2c957cd7350e793a8a7ee7b87b6
4
+ data.tar.gz: 771ffb473dd0532bd9a17acbb129fd3442d45856ccdeaf7b10752ba4c368b423
5
5
  SHA512:
6
- metadata.gz: '0997046ae310748260e795295c8e54522804028b45c721d5c8f9313b67b78b5007f864d766e02a3b018ebe6e9ede036b035a8032e9a09986c5d7ee5bb458df53'
7
- data.tar.gz: bc221b69be694bc987306f4c9b020ce16e2ff2c8ed06535dabd239de67db8e6d6947fd6715fba0d173751488754f184333832a9f45e1773328215968ba95a1e6
6
+ metadata.gz: 315aae6b53dd7eccf635969218a0463624e6fa2a0cbd6e689cd94ee0ff8672ffbbeeb290de49cbc610f4fc84e241cb92902e3024fa31e4a144da2c1978cd4333
7
+ data.tar.gz: 02d0f4551d21a8efbd97d2cdead0a3de6acaab2d5da08421ef6765f1daab123e467a3d8d7b1506de8dd26a86ab1ae03e1335a6aba830a26cfbfa35c035faddf4
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-dialogflow_v2beta1
2
2
 
3
+ ### v0.69.0 (2023-09-24)
4
+
5
+ * Regenerated from discovery document revision 20230919
6
+
3
7
  ### v0.68.0 (2023-09-10)
4
8
 
5
9
  * Regenerated from discovery document revision 20230906
@@ -841,6 +841,46 @@ module Google
841
841
  end
842
842
  end
843
843
 
844
+ # Metadata returned for the Intents.ExportIntents long running operation.
845
+ class GoogleCloudDialogflowCxV3ExportIntentsMetadata
846
+ include Google::Apis::Core::Hashable
847
+
848
+ def initialize(**args)
849
+ update!(**args)
850
+ end
851
+
852
+ # Update properties of this object
853
+ def update!(**args)
854
+ end
855
+ end
856
+
857
+ # The response message for Intents.ExportIntents.
858
+ class GoogleCloudDialogflowCxV3ExportIntentsResponse
859
+ include Google::Apis::Core::Hashable
860
+
861
+ # Inline destination for a Dialogflow operation that writes or exports objects (
862
+ # e.g. intents) outside of Dialogflow.
863
+ # Corresponds to the JSON property `intentsContent`
864
+ # @return [Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3InlineDestination]
865
+ attr_accessor :intents_content
866
+
867
+ # The URI to a file containing the exported intents. This field is populated
868
+ # only if `intents_uri` is specified in ExportIntentsRequest.
869
+ # Corresponds to the JSON property `intentsUri`
870
+ # @return [String]
871
+ attr_accessor :intents_uri
872
+
873
+ def initialize(**args)
874
+ update!(**args)
875
+ end
876
+
877
+ # Update properties of this object
878
+ def update!(**args)
879
+ @intents_content = args[:intents_content] if args.key?(:intents_content)
880
+ @intents_uri = args[:intents_uri] if args.key?(:intents_uri)
881
+ end
882
+ end
883
+
844
884
  # Metadata returned for the TestCases.ExportTestCases long running operation.
845
885
  # This message currently has no fields.
846
886
  class GoogleCloudDialogflowCxV3ExportTestCasesMetadata
@@ -1334,6 +1374,74 @@ module Google
1334
1374
  end
1335
1375
  end
1336
1376
 
1377
+ # Metadata returned for the Intents.ImportIntents long running operation.
1378
+ class GoogleCloudDialogflowCxV3ImportIntentsMetadata
1379
+ include Google::Apis::Core::Hashable
1380
+
1381
+ def initialize(**args)
1382
+ update!(**args)
1383
+ end
1384
+
1385
+ # Update properties of this object
1386
+ def update!(**args)
1387
+ end
1388
+ end
1389
+
1390
+ # The response message for Intents.ImportIntents.
1391
+ class GoogleCloudDialogflowCxV3ImportIntentsResponse
1392
+ include Google::Apis::Core::Hashable
1393
+
1394
+ # Conflicting resources detected during the import process. Only filled when
1395
+ # REPORT_CONFLICT is set in the request and there are conflicts in the display
1396
+ # names.
1397
+ # Corresponds to the JSON property `conflictingResources`
1398
+ # @return [Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3ImportIntentsResponseConflictingResources]
1399
+ attr_accessor :conflicting_resources
1400
+
1401
+ # The unique identifier of the imported intents. Format: `projects//locations//
1402
+ # agents//intents/`.
1403
+ # Corresponds to the JSON property `intents`
1404
+ # @return [Array<String>]
1405
+ attr_accessor :intents
1406
+
1407
+ def initialize(**args)
1408
+ update!(**args)
1409
+ end
1410
+
1411
+ # Update properties of this object
1412
+ def update!(**args)
1413
+ @conflicting_resources = args[:conflicting_resources] if args.key?(:conflicting_resources)
1414
+ @intents = args[:intents] if args.key?(:intents)
1415
+ end
1416
+ end
1417
+
1418
+ # Conflicting resources detected during the import process. Only filled when
1419
+ # REPORT_CONFLICT is set in the request and there are conflicts in the display
1420
+ # names.
1421
+ class GoogleCloudDialogflowCxV3ImportIntentsResponseConflictingResources
1422
+ include Google::Apis::Core::Hashable
1423
+
1424
+ # Display names of conflicting entities.
1425
+ # Corresponds to the JSON property `entityDisplayNames`
1426
+ # @return [Array<String>]
1427
+ attr_accessor :entity_display_names
1428
+
1429
+ # Display names of conflicting intents.
1430
+ # Corresponds to the JSON property `intentDisplayNames`
1431
+ # @return [Array<String>]
1432
+ attr_accessor :intent_display_names
1433
+
1434
+ def initialize(**args)
1435
+ update!(**args)
1436
+ end
1437
+
1438
+ # Update properties of this object
1439
+ def update!(**args)
1440
+ @entity_display_names = args[:entity_display_names] if args.key?(:entity_display_names)
1441
+ @intent_display_names = args[:intent_display_names] if args.key?(:intent_display_names)
1442
+ end
1443
+ end
1444
+
1337
1445
  # Metadata returned for the TestCases.ImportTestCases long running operation.
1338
1446
  class GoogleCloudDialogflowCxV3ImportTestCasesMetadata
1339
1447
  include Google::Apis::Core::Hashable
@@ -1373,6 +1481,28 @@ module Google
1373
1481
  end
1374
1482
  end
1375
1483
 
1484
+ # Inline destination for a Dialogflow operation that writes or exports objects (
1485
+ # e.g. intents) outside of Dialogflow.
1486
+ class GoogleCloudDialogflowCxV3InlineDestination
1487
+ include Google::Apis::Core::Hashable
1488
+
1489
+ # Output only. The uncompressed byte content for the objects. Only populated in
1490
+ # responses.
1491
+ # Corresponds to the JSON property `content`
1492
+ # NOTE: Values are automatically base64 encoded/decoded in the client library.
1493
+ # @return [String]
1494
+ attr_accessor :content
1495
+
1496
+ def initialize(**args)
1497
+ update!(**args)
1498
+ end
1499
+
1500
+ # Update properties of this object
1501
+ def update!(**args)
1502
+ @content = args[:content] if args.key?(:content)
1503
+ end
1504
+ end
1505
+
1376
1506
  # Instructs the speech recognizer on how to process the audio content.
1377
1507
  class GoogleCloudDialogflowCxV3InputAudioConfig
1378
1508
  include Google::Apis::Core::Hashable
@@ -4229,6 +4359,46 @@ module Google
4229
4359
  end
4230
4360
  end
4231
4361
 
4362
+ # Metadata returned for the Intents.ExportIntents long running operation.
4363
+ class GoogleCloudDialogflowCxV3beta1ExportIntentsMetadata
4364
+ include Google::Apis::Core::Hashable
4365
+
4366
+ def initialize(**args)
4367
+ update!(**args)
4368
+ end
4369
+
4370
+ # Update properties of this object
4371
+ def update!(**args)
4372
+ end
4373
+ end
4374
+
4375
+ # The response message for Intents.ExportIntents.
4376
+ class GoogleCloudDialogflowCxV3beta1ExportIntentsResponse
4377
+ include Google::Apis::Core::Hashable
4378
+
4379
+ # Inline destination for a Dialogflow operation that writes or exports objects (
4380
+ # e.g. intents) outside of Dialogflow.
4381
+ # Corresponds to the JSON property `intentsContent`
4382
+ # @return [Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3beta1InlineDestination]
4383
+ attr_accessor :intents_content
4384
+
4385
+ # The URI to a file containing the exported intents. This field is populated
4386
+ # only if `intents_uri` is specified in ExportIntentsRequest.
4387
+ # Corresponds to the JSON property `intentsUri`
4388
+ # @return [String]
4389
+ attr_accessor :intents_uri
4390
+
4391
+ def initialize(**args)
4392
+ update!(**args)
4393
+ end
4394
+
4395
+ # Update properties of this object
4396
+ def update!(**args)
4397
+ @intents_content = args[:intents_content] if args.key?(:intents_content)
4398
+ @intents_uri = args[:intents_uri] if args.key?(:intents_uri)
4399
+ end
4400
+ end
4401
+
4232
4402
  # Metadata returned for the TestCases.ExportTestCases long running operation.
4233
4403
  # This message currently has no fields.
4234
4404
  class GoogleCloudDialogflowCxV3beta1ExportTestCasesMetadata
@@ -4722,6 +4892,74 @@ module Google
4722
4892
  end
4723
4893
  end
4724
4894
 
4895
+ # Metadata returned for the Intents.ImportIntents long running operation.
4896
+ class GoogleCloudDialogflowCxV3beta1ImportIntentsMetadata
4897
+ include Google::Apis::Core::Hashable
4898
+
4899
+ def initialize(**args)
4900
+ update!(**args)
4901
+ end
4902
+
4903
+ # Update properties of this object
4904
+ def update!(**args)
4905
+ end
4906
+ end
4907
+
4908
+ # The response message for Intents.ImportIntents.
4909
+ class GoogleCloudDialogflowCxV3beta1ImportIntentsResponse
4910
+ include Google::Apis::Core::Hashable
4911
+
4912
+ # Conflicting resources detected during the import process. Only filled when
4913
+ # REPORT_CONFLICT is set in the request and there are conflicts in the display
4914
+ # names.
4915
+ # Corresponds to the JSON property `conflictingResources`
4916
+ # @return [Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3beta1ImportIntentsResponseConflictingResources]
4917
+ attr_accessor :conflicting_resources
4918
+
4919
+ # The unique identifier of the imported intents. Format: `projects//locations//
4920
+ # agents//intents/`.
4921
+ # Corresponds to the JSON property `intents`
4922
+ # @return [Array<String>]
4923
+ attr_accessor :intents
4924
+
4925
+ def initialize(**args)
4926
+ update!(**args)
4927
+ end
4928
+
4929
+ # Update properties of this object
4930
+ def update!(**args)
4931
+ @conflicting_resources = args[:conflicting_resources] if args.key?(:conflicting_resources)
4932
+ @intents = args[:intents] if args.key?(:intents)
4933
+ end
4934
+ end
4935
+
4936
+ # Conflicting resources detected during the import process. Only filled when
4937
+ # REPORT_CONFLICT is set in the request and there are conflicts in the display
4938
+ # names.
4939
+ class GoogleCloudDialogflowCxV3beta1ImportIntentsResponseConflictingResources
4940
+ include Google::Apis::Core::Hashable
4941
+
4942
+ # Display names of conflicting entities.
4943
+ # Corresponds to the JSON property `entityDisplayNames`
4944
+ # @return [Array<String>]
4945
+ attr_accessor :entity_display_names
4946
+
4947
+ # Display names of conflicting intents.
4948
+ # Corresponds to the JSON property `intentDisplayNames`
4949
+ # @return [Array<String>]
4950
+ attr_accessor :intent_display_names
4951
+
4952
+ def initialize(**args)
4953
+ update!(**args)
4954
+ end
4955
+
4956
+ # Update properties of this object
4957
+ def update!(**args)
4958
+ @entity_display_names = args[:entity_display_names] if args.key?(:entity_display_names)
4959
+ @intent_display_names = args[:intent_display_names] if args.key?(:intent_display_names)
4960
+ end
4961
+ end
4962
+
4725
4963
  # Metadata returned for the TestCases.ImportTestCases long running operation.
4726
4964
  class GoogleCloudDialogflowCxV3beta1ImportTestCasesMetadata
4727
4965
  include Google::Apis::Core::Hashable
@@ -4761,6 +4999,28 @@ module Google
4761
4999
  end
4762
5000
  end
4763
5001
 
5002
+ # Inline destination for a Dialogflow operation that writes or exports objects (
5003
+ # e.g. intents) outside of Dialogflow.
5004
+ class GoogleCloudDialogflowCxV3beta1InlineDestination
5005
+ include Google::Apis::Core::Hashable
5006
+
5007
+ # Output only. The uncompressed byte content for the objects. Only populated in
5008
+ # responses.
5009
+ # Corresponds to the JSON property `content`
5010
+ # NOTE: Values are automatically base64 encoded/decoded in the client library.
5011
+ # @return [String]
5012
+ attr_accessor :content
5013
+
5014
+ def initialize(**args)
5015
+ update!(**args)
5016
+ end
5017
+
5018
+ # Update properties of this object
5019
+ def update!(**args)
5020
+ @content = args[:content] if args.key?(:content)
5021
+ end
5022
+ end
5023
+
4764
5024
  # Instructs the speech recognizer on how to process the audio content.
4765
5025
  class GoogleCloudDialogflowCxV3beta1InputAudioConfig
4766
5026
  include Google::Apis::Core::Hashable
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module DialogflowV2beta1
18
18
  # Version of the google-apis-dialogflow_v2beta1 gem
19
- GEM_VERSION = "0.68.0"
19
+ GEM_VERSION = "0.69.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.12.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20230906"
25
+ REVISION = "20230919"
26
26
  end
27
27
  end
28
28
  end
@@ -178,6 +178,18 @@ module Google
178
178
  include Google::Apis::Core::JsonObjectSupport
179
179
  end
180
180
 
181
+ class GoogleCloudDialogflowCxV3ExportIntentsMetadata
182
+ class Representation < Google::Apis::Core::JsonRepresentation; end
183
+
184
+ include Google::Apis::Core::JsonObjectSupport
185
+ end
186
+
187
+ class GoogleCloudDialogflowCxV3ExportIntentsResponse
188
+ class Representation < Google::Apis::Core::JsonRepresentation; end
189
+
190
+ include Google::Apis::Core::JsonObjectSupport
191
+ end
192
+
181
193
  class GoogleCloudDialogflowCxV3ExportTestCasesMetadata
182
194
  class Representation < Google::Apis::Core::JsonRepresentation; end
183
195
 
@@ -268,6 +280,24 @@ module Google
268
280
  include Google::Apis::Core::JsonObjectSupport
269
281
  end
270
282
 
283
+ class GoogleCloudDialogflowCxV3ImportIntentsMetadata
284
+ class Representation < Google::Apis::Core::JsonRepresentation; end
285
+
286
+ include Google::Apis::Core::JsonObjectSupport
287
+ end
288
+
289
+ class GoogleCloudDialogflowCxV3ImportIntentsResponse
290
+ class Representation < Google::Apis::Core::JsonRepresentation; end
291
+
292
+ include Google::Apis::Core::JsonObjectSupport
293
+ end
294
+
295
+ class GoogleCloudDialogflowCxV3ImportIntentsResponseConflictingResources
296
+ class Representation < Google::Apis::Core::JsonRepresentation; end
297
+
298
+ include Google::Apis::Core::JsonObjectSupport
299
+ end
300
+
271
301
  class GoogleCloudDialogflowCxV3ImportTestCasesMetadata
272
302
  class Representation < Google::Apis::Core::JsonRepresentation; end
273
303
 
@@ -280,6 +310,12 @@ module Google
280
310
  include Google::Apis::Core::JsonObjectSupport
281
311
  end
282
312
 
313
+ class GoogleCloudDialogflowCxV3InlineDestination
314
+ class Representation < Google::Apis::Core::JsonRepresentation; end
315
+
316
+ include Google::Apis::Core::JsonObjectSupport
317
+ end
318
+
283
319
  class GoogleCloudDialogflowCxV3InputAudioConfig
284
320
  class Representation < Google::Apis::Core::JsonRepresentation; end
285
321
 
@@ -730,6 +766,18 @@ module Google
730
766
  include Google::Apis::Core::JsonObjectSupport
731
767
  end
732
768
 
769
+ class GoogleCloudDialogflowCxV3beta1ExportIntentsMetadata
770
+ class Representation < Google::Apis::Core::JsonRepresentation; end
771
+
772
+ include Google::Apis::Core::JsonObjectSupport
773
+ end
774
+
775
+ class GoogleCloudDialogflowCxV3beta1ExportIntentsResponse
776
+ class Representation < Google::Apis::Core::JsonRepresentation; end
777
+
778
+ include Google::Apis::Core::JsonObjectSupport
779
+ end
780
+
733
781
  class GoogleCloudDialogflowCxV3beta1ExportTestCasesMetadata
734
782
  class Representation < Google::Apis::Core::JsonRepresentation; end
735
783
 
@@ -820,6 +868,24 @@ module Google
820
868
  include Google::Apis::Core::JsonObjectSupport
821
869
  end
822
870
 
871
+ class GoogleCloudDialogflowCxV3beta1ImportIntentsMetadata
872
+ class Representation < Google::Apis::Core::JsonRepresentation; end
873
+
874
+ include Google::Apis::Core::JsonObjectSupport
875
+ end
876
+
877
+ class GoogleCloudDialogflowCxV3beta1ImportIntentsResponse
878
+ class Representation < Google::Apis::Core::JsonRepresentation; end
879
+
880
+ include Google::Apis::Core::JsonObjectSupport
881
+ end
882
+
883
+ class GoogleCloudDialogflowCxV3beta1ImportIntentsResponseConflictingResources
884
+ class Representation < Google::Apis::Core::JsonRepresentation; end
885
+
886
+ include Google::Apis::Core::JsonObjectSupport
887
+ end
888
+
823
889
  class GoogleCloudDialogflowCxV3beta1ImportTestCasesMetadata
824
890
  class Representation < Google::Apis::Core::JsonRepresentation; end
825
891
 
@@ -832,6 +898,12 @@ module Google
832
898
  include Google::Apis::Core::JsonObjectSupport
833
899
  end
834
900
 
901
+ class GoogleCloudDialogflowCxV3beta1InlineDestination
902
+ class Representation < Google::Apis::Core::JsonRepresentation; end
903
+
904
+ include Google::Apis::Core::JsonObjectSupport
905
+ end
906
+
835
907
  class GoogleCloudDialogflowCxV3beta1InputAudioConfig
836
908
  class Representation < Google::Apis::Core::JsonRepresentation; end
837
909
 
@@ -3235,6 +3307,21 @@ module Google
3235
3307
  end
3236
3308
  end
3237
3309
 
3310
+ class GoogleCloudDialogflowCxV3ExportIntentsMetadata
3311
+ # @private
3312
+ class Representation < Google::Apis::Core::JsonRepresentation
3313
+ end
3314
+ end
3315
+
3316
+ class GoogleCloudDialogflowCxV3ExportIntentsResponse
3317
+ # @private
3318
+ class Representation < Google::Apis::Core::JsonRepresentation
3319
+ property :intents_content, as: 'intentsContent', class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3InlineDestination, decorator: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3InlineDestination::Representation
3320
+
3321
+ property :intents_uri, as: 'intentsUri'
3322
+ end
3323
+ end
3324
+
3238
3325
  class GoogleCloudDialogflowCxV3ExportTestCasesMetadata
3239
3326
  # @private
3240
3327
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -3373,6 +3460,29 @@ module Google
3373
3460
  end
3374
3461
  end
3375
3462
 
3463
+ class GoogleCloudDialogflowCxV3ImportIntentsMetadata
3464
+ # @private
3465
+ class Representation < Google::Apis::Core::JsonRepresentation
3466
+ end
3467
+ end
3468
+
3469
+ class GoogleCloudDialogflowCxV3ImportIntentsResponse
3470
+ # @private
3471
+ class Representation < Google::Apis::Core::JsonRepresentation
3472
+ property :conflicting_resources, as: 'conflictingResources', class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3ImportIntentsResponseConflictingResources, decorator: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3ImportIntentsResponseConflictingResources::Representation
3473
+
3474
+ collection :intents, as: 'intents'
3475
+ end
3476
+ end
3477
+
3478
+ class GoogleCloudDialogflowCxV3ImportIntentsResponseConflictingResources
3479
+ # @private
3480
+ class Representation < Google::Apis::Core::JsonRepresentation
3481
+ collection :entity_display_names, as: 'entityDisplayNames'
3482
+ collection :intent_display_names, as: 'intentDisplayNames'
3483
+ end
3484
+ end
3485
+
3376
3486
  class GoogleCloudDialogflowCxV3ImportTestCasesMetadata
3377
3487
  # @private
3378
3488
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -3388,6 +3498,13 @@ module Google
3388
3498
  end
3389
3499
  end
3390
3500
 
3501
+ class GoogleCloudDialogflowCxV3InlineDestination
3502
+ # @private
3503
+ class Representation < Google::Apis::Core::JsonRepresentation
3504
+ property :content, :base64 => true, as: 'content'
3505
+ end
3506
+ end
3507
+
3391
3508
  class GoogleCloudDialogflowCxV3InputAudioConfig
3392
3509
  # @private
3393
3510
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -4156,6 +4273,21 @@ module Google
4156
4273
  end
4157
4274
  end
4158
4275
 
4276
+ class GoogleCloudDialogflowCxV3beta1ExportIntentsMetadata
4277
+ # @private
4278
+ class Representation < Google::Apis::Core::JsonRepresentation
4279
+ end
4280
+ end
4281
+
4282
+ class GoogleCloudDialogflowCxV3beta1ExportIntentsResponse
4283
+ # @private
4284
+ class Representation < Google::Apis::Core::JsonRepresentation
4285
+ property :intents_content, as: 'intentsContent', class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3beta1InlineDestination, decorator: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3beta1InlineDestination::Representation
4286
+
4287
+ property :intents_uri, as: 'intentsUri'
4288
+ end
4289
+ end
4290
+
4159
4291
  class GoogleCloudDialogflowCxV3beta1ExportTestCasesMetadata
4160
4292
  # @private
4161
4293
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -4294,6 +4426,29 @@ module Google
4294
4426
  end
4295
4427
  end
4296
4428
 
4429
+ class GoogleCloudDialogflowCxV3beta1ImportIntentsMetadata
4430
+ # @private
4431
+ class Representation < Google::Apis::Core::JsonRepresentation
4432
+ end
4433
+ end
4434
+
4435
+ class GoogleCloudDialogflowCxV3beta1ImportIntentsResponse
4436
+ # @private
4437
+ class Representation < Google::Apis::Core::JsonRepresentation
4438
+ property :conflicting_resources, as: 'conflictingResources', class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3beta1ImportIntentsResponseConflictingResources, decorator: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3beta1ImportIntentsResponseConflictingResources::Representation
4439
+
4440
+ collection :intents, as: 'intents'
4441
+ end
4442
+ end
4443
+
4444
+ class GoogleCloudDialogflowCxV3beta1ImportIntentsResponseConflictingResources
4445
+ # @private
4446
+ class Representation < Google::Apis::Core::JsonRepresentation
4447
+ collection :entity_display_names, as: 'entityDisplayNames'
4448
+ collection :intent_display_names, as: 'intentDisplayNames'
4449
+ end
4450
+ end
4451
+
4297
4452
  class GoogleCloudDialogflowCxV3beta1ImportTestCasesMetadata
4298
4453
  # @private
4299
4454
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -4309,6 +4464,13 @@ module Google
4309
4464
  end
4310
4465
  end
4311
4466
 
4467
+ class GoogleCloudDialogflowCxV3beta1InlineDestination
4468
+ # @private
4469
+ class Representation < Google::Apis::Core::JsonRepresentation
4470
+ property :content, :base64 => true, as: 'content'
4471
+ end
4472
+ end
4473
+
4312
4474
  class GoogleCloudDialogflowCxV3beta1InputAudioConfig
4313
4475
  # @private
4314
4476
  class Representation < Google::Apis::Core::JsonRepresentation
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-dialogflow_v2beta1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.68.0
4
+ version: 0.69.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-09-10 00:00:00.000000000 Z
11
+ date: 2023-09-24 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -58,7 +58,7 @@ licenses:
58
58
  metadata:
59
59
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
60
60
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-dialogflow_v2beta1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-dialogflow_v2beta1/v0.68.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-dialogflow_v2beta1/v0.69.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-dialogflow_v2beta1
63
63
  post_install_message:
64
64
  rdoc_options: []