google-apis-dialogflow_v2 0.69.0 → 0.71.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: ae5b04f4f9714148a1526324c0527927542a0751972cebc1a57597392415d776
4
- data.tar.gz: a239118d2d402e04d4412d1709b791e0ee25e1e79bb4804a18881338dd01dbba
3
+ metadata.gz: 40572d59dd345dba727eb18e840584d5caf4ff2cc235b3c513fd7c922f4e29f3
4
+ data.tar.gz: 4e64bc9b4a987f9f19795f4011381e7ae4fb4c1cb838838703ce0f7b1b4fee8d
5
5
  SHA512:
6
- metadata.gz: 2d21c167fe8550b76fd4072efa4408928d539a583f246e88acea276ad08fe55c3d513ce4e0e32e21b72939fe96776e7d194840b51ad47339f2c826fb840734f7
7
- data.tar.gz: e793325c1f887dab3312d35d668aa702989c7d6a7492d911353287f82c9d790efda133974694cf8b67da147dcac9bc565c9a201a10cbe2c541807ec1beb311ff
6
+ metadata.gz: ea53495e799f85ec1c08ce1a7571b86da3271c9c78dd3d8ca6f5194762f3789c8dce45583864079c5643f26483867e11d515d8e513903bc3eebada2edc127c8a
7
+ data.tar.gz: 0307cb8e75213c291954a5aec9d6e7d87e71d04126c39275530bb84e9c3a19da3114d7c9b728e520ce79ff53d289e9acdd59cbc0fbc6cdaed2cd5f1f68e69a9c
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-dialogflow_v2
2
2
 
3
+ ### v0.71.0 (2023-10-29)
4
+
5
+ * Regenerated from discovery document revision 20231019
6
+
7
+ ### v0.70.0 (2023-09-24)
8
+
9
+ * Regenerated from discovery document revision 20230919
10
+
3
11
  ### v0.69.0 (2023-09-10)
4
12
 
5
13
  * 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::DialogflowV2::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::DialogflowV2::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::DialogflowV2::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::DialogflowV2::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
@@ -8831,6 +9091,37 @@ module Google
8831
9091
  end
8832
9092
  end
8833
9093
 
9094
+ # A customer-managed encryption key specification that can be applied to all
9095
+ # created resources (e.g. Conversation).
9096
+ class GoogleCloudDialogflowV2EncryptionSpec
9097
+ include Google::Apis::Core::Hashable
9098
+
9099
+ # Required. The name of customer-managed encryption key that is used to secure a
9100
+ # resource and its sub-resources. If empty, the resource is secured by the
9101
+ # default Google encryption key. Only the key in the same location as this
9102
+ # resource is allowed to be used for encryption. Format: `projects/`project`/
9103
+ # locations/`location`/keyRings/`keyRing`/cryptoKeys/`key``
9104
+ # Corresponds to the JSON property `kmsKey`
9105
+ # @return [String]
9106
+ attr_accessor :kms_key
9107
+
9108
+ # Immutable. The resource name of the encryption key specification resource.
9109
+ # Format: projects/`project`/locations/`location`/encryptionSpec
9110
+ # Corresponds to the JSON property `name`
9111
+ # @return [String]
9112
+ attr_accessor :name
9113
+
9114
+ def initialize(**args)
9115
+ update!(**args)
9116
+ end
9117
+
9118
+ # Update properties of this object
9119
+ def update!(**args)
9120
+ @kms_key = args[:kms_key] if args.key?(:kms_key)
9121
+ @name = args[:name] if args.key?(:name)
9122
+ end
9123
+ end
9124
+
8834
9125
  # Each intent parameter has a type, called the entity type, which dictates
8835
9126
  # exactly how data from an end-user expression is extracted. Dialogflow provides
8836
9127
  # predefined system entities that can match many common types of data. For
@@ -10440,6 +10731,45 @@ module Google
10440
10731
  end
10441
10732
  end
10442
10733
 
10734
+ # Metadata for initializing a location-level encryption specification.
10735
+ class GoogleCloudDialogflowV2InitializeEncryptionSpecMetadata
10736
+ include Google::Apis::Core::Hashable
10737
+
10738
+ # The request to initialize a location-level encryption specification.
10739
+ # Corresponds to the JSON property `request`
10740
+ # @return [Google::Apis::DialogflowV2::GoogleCloudDialogflowV2InitializeEncryptionSpecRequest]
10741
+ attr_accessor :request
10742
+
10743
+ def initialize(**args)
10744
+ update!(**args)
10745
+ end
10746
+
10747
+ # Update properties of this object
10748
+ def update!(**args)
10749
+ @request = args[:request] if args.key?(:request)
10750
+ end
10751
+ end
10752
+
10753
+ # The request to initialize a location-level encryption specification.
10754
+ class GoogleCloudDialogflowV2InitializeEncryptionSpecRequest
10755
+ include Google::Apis::Core::Hashable
10756
+
10757
+ # A customer-managed encryption key specification that can be applied to all
10758
+ # created resources (e.g. Conversation).
10759
+ # Corresponds to the JSON property `encryptionSpec`
10760
+ # @return [Google::Apis::DialogflowV2::GoogleCloudDialogflowV2EncryptionSpec]
10761
+ attr_accessor :encryption_spec
10762
+
10763
+ def initialize(**args)
10764
+ update!(**args)
10765
+ end
10766
+
10767
+ # Update properties of this object
10768
+ def update!(**args)
10769
+ @encryption_spec = args[:encryption_spec] if args.key?(:encryption_spec)
10770
+ end
10771
+ end
10772
+
10443
10773
  # Instructs the speech recognizer how to process the audio content.
10444
10774
  class GoogleCloudDialogflowV2InputAudioConfig
10445
10775
  include Google::Apis::Core::Hashable
@@ -14788,6 +15118,37 @@ module Google
14788
15118
  end
14789
15119
  end
14790
15120
 
15121
+ # A customer-managed encryption key specification that can be applied to all
15122
+ # created resources (e.g. Conversation).
15123
+ class GoogleCloudDialogflowV2beta1EncryptionSpec
15124
+ include Google::Apis::Core::Hashable
15125
+
15126
+ # Required. The name of customer-managed encryption key that is used to secure a
15127
+ # resource and its sub-resources. If empty, the resource is secured by the
15128
+ # default Google encryption key. Only the key in the same location as this
15129
+ # resource is allowed to be used for encryption. Format: `projects/`project`/
15130
+ # locations/`location`/keyRings/`keyRing`/cryptoKeys/`key``
15131
+ # Corresponds to the JSON property `kmsKey`
15132
+ # @return [String]
15133
+ attr_accessor :kms_key
15134
+
15135
+ # Immutable. The resource name of the encryption key specification resource.
15136
+ # Format: projects/`project`/locations/`location`/encryptionSpec
15137
+ # Corresponds to the JSON property `name`
15138
+ # @return [String]
15139
+ attr_accessor :name
15140
+
15141
+ def initialize(**args)
15142
+ update!(**args)
15143
+ end
15144
+
15145
+ # Update properties of this object
15146
+ def update!(**args)
15147
+ @kms_key = args[:kms_key] if args.key?(:kms_key)
15148
+ @name = args[:name] if args.key?(:name)
15149
+ end
15150
+ end
15151
+
14791
15152
  # Each intent parameter has a type, called the entity type, which dictates
14792
15153
  # exactly how data from an end-user expression is extracted. Dialogflow provides
14793
15154
  # predefined system entities that can match many common types of data. For
@@ -15106,6 +15467,45 @@ module Google
15106
15467
  end
15107
15468
  end
15108
15469
 
15470
+ # Metadata for initializing a location-level encryption specification.
15471
+ class GoogleCloudDialogflowV2beta1InitializeEncryptionSpecMetadata
15472
+ include Google::Apis::Core::Hashable
15473
+
15474
+ # The request to initialize a location-level encryption specification.
15475
+ # Corresponds to the JSON property `request`
15476
+ # @return [Google::Apis::DialogflowV2::GoogleCloudDialogflowV2beta1InitializeEncryptionSpecRequest]
15477
+ attr_accessor :request
15478
+
15479
+ def initialize(**args)
15480
+ update!(**args)
15481
+ end
15482
+
15483
+ # Update properties of this object
15484
+ def update!(**args)
15485
+ @request = args[:request] if args.key?(:request)
15486
+ end
15487
+ end
15488
+
15489
+ # The request to initialize a location-level encryption specification.
15490
+ class GoogleCloudDialogflowV2beta1InitializeEncryptionSpecRequest
15491
+ include Google::Apis::Core::Hashable
15492
+
15493
+ # A customer-managed encryption key specification that can be applied to all
15494
+ # created resources (e.g. Conversation).
15495
+ # Corresponds to the JSON property `encryptionSpec`
15496
+ # @return [Google::Apis::DialogflowV2::GoogleCloudDialogflowV2beta1EncryptionSpec]
15497
+ attr_accessor :encryption_spec
15498
+
15499
+ def initialize(**args)
15500
+ update!(**args)
15501
+ end
15502
+
15503
+ # Update properties of this object
15504
+ def update!(**args)
15505
+ @encryption_spec = args[:encryption_spec] if args.key?(:encryption_spec)
15506
+ end
15507
+ end
15508
+
15109
15509
  # An intent categorizes an end-user's intention for one conversation turn. For
15110
15510
  # each agent, you define many intents, where your combined intents can handle a
15111
15511
  # complete conversation. When an end-user writes or says something, referred to
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module DialogflowV2
18
18
  # Version of the google-apis-dialogflow_v2 gem
19
- GEM_VERSION = "0.69.0"
19
+ GEM_VERSION = "0.71.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 = "20231019"
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
 
@@ -1426,6 +1498,12 @@ module Google
1426
1498
  include Google::Apis::Core::JsonObjectSupport
1427
1499
  end
1428
1500
 
1501
+ class GoogleCloudDialogflowV2EncryptionSpec
1502
+ class Representation < Google::Apis::Core::JsonRepresentation; end
1503
+
1504
+ include Google::Apis::Core::JsonObjectSupport
1505
+ end
1506
+
1429
1507
  class GoogleCloudDialogflowV2EntityType
1430
1508
  class Representation < Google::Apis::Core::JsonRepresentation; end
1431
1509
 
@@ -1714,6 +1792,18 @@ module Google
1714
1792
  include Google::Apis::Core::JsonObjectSupport
1715
1793
  end
1716
1794
 
1795
+ class GoogleCloudDialogflowV2InitializeEncryptionSpecMetadata
1796
+ class Representation < Google::Apis::Core::JsonRepresentation; end
1797
+
1798
+ include Google::Apis::Core::JsonObjectSupport
1799
+ end
1800
+
1801
+ class GoogleCloudDialogflowV2InitializeEncryptionSpecRequest
1802
+ class Representation < Google::Apis::Core::JsonRepresentation; end
1803
+
1804
+ include Google::Apis::Core::JsonObjectSupport
1805
+ end
1806
+
1717
1807
  class GoogleCloudDialogflowV2InputAudioConfig
1718
1808
  class Representation < Google::Apis::Core::JsonRepresentation; end
1719
1809
 
@@ -2422,6 +2512,12 @@ module Google
2422
2512
  include Google::Apis::Core::JsonObjectSupport
2423
2513
  end
2424
2514
 
2515
+ class GoogleCloudDialogflowV2beta1EncryptionSpec
2516
+ class Representation < Google::Apis::Core::JsonRepresentation; end
2517
+
2518
+ include Google::Apis::Core::JsonObjectSupport
2519
+ end
2520
+
2425
2521
  class GoogleCloudDialogflowV2beta1EntityType
2426
2522
  class Representation < Google::Apis::Core::JsonRepresentation; end
2427
2523
 
@@ -2476,6 +2572,18 @@ module Google
2476
2572
  include Google::Apis::Core::JsonObjectSupport
2477
2573
  end
2478
2574
 
2575
+ class GoogleCloudDialogflowV2beta1InitializeEncryptionSpecMetadata
2576
+ class Representation < Google::Apis::Core::JsonRepresentation; end
2577
+
2578
+ include Google::Apis::Core::JsonObjectSupport
2579
+ end
2580
+
2581
+ class GoogleCloudDialogflowV2beta1InitializeEncryptionSpecRequest
2582
+ class Representation < Google::Apis::Core::JsonRepresentation; end
2583
+
2584
+ include Google::Apis::Core::JsonObjectSupport
2585
+ end
2586
+
2479
2587
  class GoogleCloudDialogflowV2beta1Intent
2480
2588
  class Representation < Google::Apis::Core::JsonRepresentation; end
2481
2589
 
@@ -3217,6 +3325,21 @@ module Google
3217
3325
  end
3218
3326
  end
3219
3327
 
3328
+ class GoogleCloudDialogflowCxV3ExportIntentsMetadata
3329
+ # @private
3330
+ class Representation < Google::Apis::Core::JsonRepresentation
3331
+ end
3332
+ end
3333
+
3334
+ class GoogleCloudDialogflowCxV3ExportIntentsResponse
3335
+ # @private
3336
+ class Representation < Google::Apis::Core::JsonRepresentation
3337
+ property :intents_content, as: 'intentsContent', class: Google::Apis::DialogflowV2::GoogleCloudDialogflowCxV3InlineDestination, decorator: Google::Apis::DialogflowV2::GoogleCloudDialogflowCxV3InlineDestination::Representation
3338
+
3339
+ property :intents_uri, as: 'intentsUri'
3340
+ end
3341
+ end
3342
+
3220
3343
  class GoogleCloudDialogflowCxV3ExportTestCasesMetadata
3221
3344
  # @private
3222
3345
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -3355,6 +3478,29 @@ module Google
3355
3478
  end
3356
3479
  end
3357
3480
 
3481
+ class GoogleCloudDialogflowCxV3ImportIntentsMetadata
3482
+ # @private
3483
+ class Representation < Google::Apis::Core::JsonRepresentation
3484
+ end
3485
+ end
3486
+
3487
+ class GoogleCloudDialogflowCxV3ImportIntentsResponse
3488
+ # @private
3489
+ class Representation < Google::Apis::Core::JsonRepresentation
3490
+ property :conflicting_resources, as: 'conflictingResources', class: Google::Apis::DialogflowV2::GoogleCloudDialogflowCxV3ImportIntentsResponseConflictingResources, decorator: Google::Apis::DialogflowV2::GoogleCloudDialogflowCxV3ImportIntentsResponseConflictingResources::Representation
3491
+
3492
+ collection :intents, as: 'intents'
3493
+ end
3494
+ end
3495
+
3496
+ class GoogleCloudDialogflowCxV3ImportIntentsResponseConflictingResources
3497
+ # @private
3498
+ class Representation < Google::Apis::Core::JsonRepresentation
3499
+ collection :entity_display_names, as: 'entityDisplayNames'
3500
+ collection :intent_display_names, as: 'intentDisplayNames'
3501
+ end
3502
+ end
3503
+
3358
3504
  class GoogleCloudDialogflowCxV3ImportTestCasesMetadata
3359
3505
  # @private
3360
3506
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -3370,6 +3516,13 @@ module Google
3370
3516
  end
3371
3517
  end
3372
3518
 
3519
+ class GoogleCloudDialogflowCxV3InlineDestination
3520
+ # @private
3521
+ class Representation < Google::Apis::Core::JsonRepresentation
3522
+ property :content, :base64 => true, as: 'content'
3523
+ end
3524
+ end
3525
+
3373
3526
  class GoogleCloudDialogflowCxV3InputAudioConfig
3374
3527
  # @private
3375
3528
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -4138,6 +4291,21 @@ module Google
4138
4291
  end
4139
4292
  end
4140
4293
 
4294
+ class GoogleCloudDialogflowCxV3beta1ExportIntentsMetadata
4295
+ # @private
4296
+ class Representation < Google::Apis::Core::JsonRepresentation
4297
+ end
4298
+ end
4299
+
4300
+ class GoogleCloudDialogflowCxV3beta1ExportIntentsResponse
4301
+ # @private
4302
+ class Representation < Google::Apis::Core::JsonRepresentation
4303
+ property :intents_content, as: 'intentsContent', class: Google::Apis::DialogflowV2::GoogleCloudDialogflowCxV3beta1InlineDestination, decorator: Google::Apis::DialogflowV2::GoogleCloudDialogflowCxV3beta1InlineDestination::Representation
4304
+
4305
+ property :intents_uri, as: 'intentsUri'
4306
+ end
4307
+ end
4308
+
4141
4309
  class GoogleCloudDialogflowCxV3beta1ExportTestCasesMetadata
4142
4310
  # @private
4143
4311
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -4276,6 +4444,29 @@ module Google
4276
4444
  end
4277
4445
  end
4278
4446
 
4447
+ class GoogleCloudDialogflowCxV3beta1ImportIntentsMetadata
4448
+ # @private
4449
+ class Representation < Google::Apis::Core::JsonRepresentation
4450
+ end
4451
+ end
4452
+
4453
+ class GoogleCloudDialogflowCxV3beta1ImportIntentsResponse
4454
+ # @private
4455
+ class Representation < Google::Apis::Core::JsonRepresentation
4456
+ property :conflicting_resources, as: 'conflictingResources', class: Google::Apis::DialogflowV2::GoogleCloudDialogflowCxV3beta1ImportIntentsResponseConflictingResources, decorator: Google::Apis::DialogflowV2::GoogleCloudDialogflowCxV3beta1ImportIntentsResponseConflictingResources::Representation
4457
+
4458
+ collection :intents, as: 'intents'
4459
+ end
4460
+ end
4461
+
4462
+ class GoogleCloudDialogflowCxV3beta1ImportIntentsResponseConflictingResources
4463
+ # @private
4464
+ class Representation < Google::Apis::Core::JsonRepresentation
4465
+ collection :entity_display_names, as: 'entityDisplayNames'
4466
+ collection :intent_display_names, as: 'intentDisplayNames'
4467
+ end
4468
+ end
4469
+
4279
4470
  class GoogleCloudDialogflowCxV3beta1ImportTestCasesMetadata
4280
4471
  # @private
4281
4472
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -4291,6 +4482,13 @@ module Google
4291
4482
  end
4292
4483
  end
4293
4484
 
4485
+ class GoogleCloudDialogflowCxV3beta1InlineDestination
4486
+ # @private
4487
+ class Representation < Google::Apis::Core::JsonRepresentation
4488
+ property :content, :base64 => true, as: 'content'
4489
+ end
4490
+ end
4491
+
4294
4492
  class GoogleCloudDialogflowCxV3beta1InputAudioConfig
4295
4493
  # @private
4296
4494
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -5355,6 +5553,14 @@ module Google
5355
5553
  end
5356
5554
  end
5357
5555
 
5556
+ class GoogleCloudDialogflowV2EncryptionSpec
5557
+ # @private
5558
+ class Representation < Google::Apis::Core::JsonRepresentation
5559
+ property :kms_key, as: 'kmsKey'
5560
+ property :name, as: 'name'
5561
+ end
5562
+ end
5563
+
5358
5564
  class GoogleCloudDialogflowV2EntityType
5359
5565
  # @private
5360
5566
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -5810,6 +6016,22 @@ module Google
5810
6016
  end
5811
6017
  end
5812
6018
 
6019
+ class GoogleCloudDialogflowV2InitializeEncryptionSpecMetadata
6020
+ # @private
6021
+ class Representation < Google::Apis::Core::JsonRepresentation
6022
+ property :request, as: 'request', class: Google::Apis::DialogflowV2::GoogleCloudDialogflowV2InitializeEncryptionSpecRequest, decorator: Google::Apis::DialogflowV2::GoogleCloudDialogflowV2InitializeEncryptionSpecRequest::Representation
6023
+
6024
+ end
6025
+ end
6026
+
6027
+ class GoogleCloudDialogflowV2InitializeEncryptionSpecRequest
6028
+ # @private
6029
+ class Representation < Google::Apis::Core::JsonRepresentation
6030
+ property :encryption_spec, as: 'encryptionSpec', class: Google::Apis::DialogflowV2::GoogleCloudDialogflowV2EncryptionSpec, decorator: Google::Apis::DialogflowV2::GoogleCloudDialogflowV2EncryptionSpec::Representation
6031
+
6032
+ end
6033
+ end
6034
+
5813
6035
  class GoogleCloudDialogflowV2InputAudioConfig
5814
6036
  # @private
5815
6037
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -7003,6 +7225,14 @@ module Google
7003
7225
  end
7004
7226
  end
7005
7227
 
7228
+ class GoogleCloudDialogflowV2beta1EncryptionSpec
7229
+ # @private
7230
+ class Representation < Google::Apis::Core::JsonRepresentation
7231
+ property :kms_key, as: 'kmsKey'
7232
+ property :name, as: 'name'
7233
+ end
7234
+ end
7235
+
7006
7236
  class GoogleCloudDialogflowV2beta1EntityType
7007
7237
  # @private
7008
7238
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -7086,6 +7316,22 @@ module Google
7086
7316
  end
7087
7317
  end
7088
7318
 
7319
+ class GoogleCloudDialogflowV2beta1InitializeEncryptionSpecMetadata
7320
+ # @private
7321
+ class Representation < Google::Apis::Core::JsonRepresentation
7322
+ property :request, as: 'request', class: Google::Apis::DialogflowV2::GoogleCloudDialogflowV2beta1InitializeEncryptionSpecRequest, decorator: Google::Apis::DialogflowV2::GoogleCloudDialogflowV2beta1InitializeEncryptionSpecRequest::Representation
7323
+
7324
+ end
7325
+ end
7326
+
7327
+ class GoogleCloudDialogflowV2beta1InitializeEncryptionSpecRequest
7328
+ # @private
7329
+ class Representation < Google::Apis::Core::JsonRepresentation
7330
+ property :encryption_spec, as: 'encryptionSpec', class: Google::Apis::DialogflowV2::GoogleCloudDialogflowV2beta1EncryptionSpec, decorator: Google::Apis::DialogflowV2::GoogleCloudDialogflowV2beta1EncryptionSpec::Representation
7331
+
7332
+ end
7333
+ end
7334
+
7089
7335
  class GoogleCloudDialogflowV2beta1Intent
7090
7336
  # @private
7091
7337
  class Representation < Google::Apis::Core::JsonRepresentation
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-dialogflow_v2
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.69.0
4
+ version: 0.71.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-10-29 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_v2/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-dialogflow_v2/v0.69.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-dialogflow_v2/v0.71.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-dialogflow_v2
63
63
  post_install_message:
64
64
  rdoc_options: []