google-apis-dialogflow_v2beta1 0.68.0 → 0.70.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: a3730527184ec4b1aa558fbba6e05cb7635dfabea07306320079148a0fc23f5e
4
+ data.tar.gz: 349b8f5a7e28b98fd77454c75f4cf4b5c90561ef56a37ba8873fe369dbddb3f9
5
5
  SHA512:
6
- metadata.gz: '0997046ae310748260e795295c8e54522804028b45c721d5c8f9313b67b78b5007f864d766e02a3b018ebe6e9ede036b035a8032e9a09986c5d7ee5bb458df53'
7
- data.tar.gz: bc221b69be694bc987306f4c9b020ce16e2ff2c8ed06535dabd239de67db8e6d6947fd6715fba0d173751488754f184333832a9f45e1773328215968ba95a1e6
6
+ metadata.gz: 71be1898970e84c5292500e59fa4023d4fd7ace42fb305efca588e9672ad5a169dc8f1022ac51dd41544271a36d326277119795847fcf3177e41ea5e27a485c0
7
+ data.tar.gz: 340cc26665c7b9cfe4ffbf4b8b32cf16ace7b392c78c71e79c1bbf1a56a29ead2c5b3670655c58762133d9857c4c75af490e458eec020aa6d50fbd8bc23e2e60
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-dialogflow_v2beta1
2
2
 
3
+ ### v0.70.0 (2023-10-29)
4
+
5
+ * Regenerated from discovery document revision 20231019
6
+
7
+ ### v0.69.0 (2023-09-24)
8
+
9
+ * Regenerated from discovery document revision 20230919
10
+
3
11
  ### v0.68.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::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
@@ -7310,6 +7570,37 @@ module Google
7310
7570
  end
7311
7571
  end
7312
7572
 
7573
+ # A customer-managed encryption key specification that can be applied to all
7574
+ # created resources (e.g. Conversation).
7575
+ class GoogleCloudDialogflowV2EncryptionSpec
7576
+ include Google::Apis::Core::Hashable
7577
+
7578
+ # Required. The name of customer-managed encryption key that is used to secure a
7579
+ # resource and its sub-resources. If empty, the resource is secured by the
7580
+ # default Google encryption key. Only the key in the same location as this
7581
+ # resource is allowed to be used for encryption. Format: `projects/`project`/
7582
+ # locations/`location`/keyRings/`keyRing`/cryptoKeys/`key``
7583
+ # Corresponds to the JSON property `kmsKey`
7584
+ # @return [String]
7585
+ attr_accessor :kms_key
7586
+
7587
+ # Immutable. The resource name of the encryption key specification resource.
7588
+ # Format: projects/`project`/locations/`location`/encryptionSpec
7589
+ # Corresponds to the JSON property `name`
7590
+ # @return [String]
7591
+ attr_accessor :name
7592
+
7593
+ def initialize(**args)
7594
+ update!(**args)
7595
+ end
7596
+
7597
+ # Update properties of this object
7598
+ def update!(**args)
7599
+ @kms_key = args[:kms_key] if args.key?(:kms_key)
7600
+ @name = args[:name] if args.key?(:name)
7601
+ end
7602
+ end
7603
+
7313
7604
  # Each intent parameter has a type, called the entity type, which dictates
7314
7605
  # exactly how data from an end-user expression is extracted. Dialogflow provides
7315
7606
  # predefined system entities that can match many common types of data. For
@@ -7684,6 +7975,45 @@ module Google
7684
7975
  end
7685
7976
  end
7686
7977
 
7978
+ # Metadata for initializing a location-level encryption specification.
7979
+ class GoogleCloudDialogflowV2InitializeEncryptionSpecMetadata
7980
+ include Google::Apis::Core::Hashable
7981
+
7982
+ # The request to initialize a location-level encryption specification.
7983
+ # Corresponds to the JSON property `request`
7984
+ # @return [Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2InitializeEncryptionSpecRequest]
7985
+ attr_accessor :request
7986
+
7987
+ def initialize(**args)
7988
+ update!(**args)
7989
+ end
7990
+
7991
+ # Update properties of this object
7992
+ def update!(**args)
7993
+ @request = args[:request] if args.key?(:request)
7994
+ end
7995
+ end
7996
+
7997
+ # The request to initialize a location-level encryption specification.
7998
+ class GoogleCloudDialogflowV2InitializeEncryptionSpecRequest
7999
+ include Google::Apis::Core::Hashable
8000
+
8001
+ # A customer-managed encryption key specification that can be applied to all
8002
+ # created resources (e.g. Conversation).
8003
+ # Corresponds to the JSON property `encryptionSpec`
8004
+ # @return [Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2EncryptionSpec]
8005
+ attr_accessor :encryption_spec
8006
+
8007
+ def initialize(**args)
8008
+ update!(**args)
8009
+ end
8010
+
8011
+ # Update properties of this object
8012
+ def update!(**args)
8013
+ @encryption_spec = args[:encryption_spec] if args.key?(:encryption_spec)
8014
+ end
8015
+ end
8016
+
7687
8017
  # InputDataset used to create model or do evaluation. NextID:5
7688
8018
  class GoogleCloudDialogflowV2InputDataset
7689
8019
  include Google::Apis::Core::Hashable
@@ -11698,6 +12028,37 @@ module Google
11698
12028
  end
11699
12029
  end
11700
12030
 
12031
+ # A customer-managed encryption key specification that can be applied to all
12032
+ # created resources (e.g. Conversation).
12033
+ class GoogleCloudDialogflowV2beta1EncryptionSpec
12034
+ include Google::Apis::Core::Hashable
12035
+
12036
+ # Required. The name of customer-managed encryption key that is used to secure a
12037
+ # resource and its sub-resources. If empty, the resource is secured by the
12038
+ # default Google encryption key. Only the key in the same location as this
12039
+ # resource is allowed to be used for encryption. Format: `projects/`project`/
12040
+ # locations/`location`/keyRings/`keyRing`/cryptoKeys/`key``
12041
+ # Corresponds to the JSON property `kmsKey`
12042
+ # @return [String]
12043
+ attr_accessor :kms_key
12044
+
12045
+ # Immutable. The resource name of the encryption key specification resource.
12046
+ # Format: projects/`project`/locations/`location`/encryptionSpec
12047
+ # Corresponds to the JSON property `name`
12048
+ # @return [String]
12049
+ attr_accessor :name
12050
+
12051
+ def initialize(**args)
12052
+ update!(**args)
12053
+ end
12054
+
12055
+ # Update properties of this object
12056
+ def update!(**args)
12057
+ @kms_key = args[:kms_key] if args.key?(:kms_key)
12058
+ @name = args[:name] if args.key?(:name)
12059
+ end
12060
+ end
12061
+
11701
12062
  # Each intent parameter has a type, called the entity type, which dictates
11702
12063
  # exactly how data from an end-user expression is extracted. Dialogflow provides
11703
12064
  # predefined system entities that can match many common types of data. For
@@ -13130,6 +13491,45 @@ module Google
13130
13491
  end
13131
13492
  end
13132
13493
 
13494
+ # Metadata for initializing a location-level encryption specification.
13495
+ class GoogleCloudDialogflowV2beta1InitializeEncryptionSpecMetadata
13496
+ include Google::Apis::Core::Hashable
13497
+
13498
+ # The request to initialize a location-level encryption specification.
13499
+ # Corresponds to the JSON property `request`
13500
+ # @return [Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1InitializeEncryptionSpecRequest]
13501
+ attr_accessor :request
13502
+
13503
+ def initialize(**args)
13504
+ update!(**args)
13505
+ end
13506
+
13507
+ # Update properties of this object
13508
+ def update!(**args)
13509
+ @request = args[:request] if args.key?(:request)
13510
+ end
13511
+ end
13512
+
13513
+ # The request to initialize a location-level encryption specification.
13514
+ class GoogleCloudDialogflowV2beta1InitializeEncryptionSpecRequest
13515
+ include Google::Apis::Core::Hashable
13516
+
13517
+ # A customer-managed encryption key specification that can be applied to all
13518
+ # created resources (e.g. Conversation).
13519
+ # Corresponds to the JSON property `encryptionSpec`
13520
+ # @return [Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1EncryptionSpec]
13521
+ attr_accessor :encryption_spec
13522
+
13523
+ def initialize(**args)
13524
+ update!(**args)
13525
+ end
13526
+
13527
+ # Update properties of this object
13528
+ def update!(**args)
13529
+ @encryption_spec = args[:encryption_spec] if args.key?(:encryption_spec)
13530
+ end
13531
+ end
13532
+
13133
13533
  # Instructs the speech recognizer on how to process the audio content.
13134
13534
  class GoogleCloudDialogflowV2beta1InputAudioConfig
13135
13535
  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.70.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
 
@@ -1216,6 +1288,12 @@ module Google
1216
1288
  include Google::Apis::Core::JsonObjectSupport
1217
1289
  end
1218
1290
 
1291
+ class GoogleCloudDialogflowV2EncryptionSpec
1292
+ class Representation < Google::Apis::Core::JsonRepresentation; end
1293
+
1294
+ include Google::Apis::Core::JsonObjectSupport
1295
+ end
1296
+
1219
1297
  class GoogleCloudDialogflowV2EntityType
1220
1298
  class Representation < Google::Apis::Core::JsonRepresentation; end
1221
1299
 
@@ -1282,6 +1360,18 @@ module Google
1282
1360
  include Google::Apis::Core::JsonObjectSupport
1283
1361
  end
1284
1362
 
1363
+ class GoogleCloudDialogflowV2InitializeEncryptionSpecMetadata
1364
+ class Representation < Google::Apis::Core::JsonRepresentation; end
1365
+
1366
+ include Google::Apis::Core::JsonObjectSupport
1367
+ end
1368
+
1369
+ class GoogleCloudDialogflowV2InitializeEncryptionSpecRequest
1370
+ class Representation < Google::Apis::Core::JsonRepresentation; end
1371
+
1372
+ include Google::Apis::Core::JsonObjectSupport
1373
+ end
1374
+
1285
1375
  class GoogleCloudDialogflowV2InputDataset
1286
1376
  class Representation < Google::Apis::Core::JsonRepresentation; end
1287
1377
 
@@ -1858,6 +1948,12 @@ module Google
1858
1948
  include Google::Apis::Core::JsonObjectSupport
1859
1949
  end
1860
1950
 
1951
+ class GoogleCloudDialogflowV2beta1EncryptionSpec
1952
+ class Representation < Google::Apis::Core::JsonRepresentation; end
1953
+
1954
+ include Google::Apis::Core::JsonObjectSupport
1955
+ end
1956
+
1861
1957
  class GoogleCloudDialogflowV2beta1EntityType
1862
1958
  class Representation < Google::Apis::Core::JsonRepresentation; end
1863
1959
 
@@ -2110,6 +2206,18 @@ module Google
2110
2206
  include Google::Apis::Core::JsonObjectSupport
2111
2207
  end
2112
2208
 
2209
+ class GoogleCloudDialogflowV2beta1InitializeEncryptionSpecMetadata
2210
+ class Representation < Google::Apis::Core::JsonRepresentation; end
2211
+
2212
+ include Google::Apis::Core::JsonObjectSupport
2213
+ end
2214
+
2215
+ class GoogleCloudDialogflowV2beta1InitializeEncryptionSpecRequest
2216
+ class Representation < Google::Apis::Core::JsonRepresentation; end
2217
+
2218
+ include Google::Apis::Core::JsonObjectSupport
2219
+ end
2220
+
2113
2221
  class GoogleCloudDialogflowV2beta1InputAudioConfig
2114
2222
  class Representation < Google::Apis::Core::JsonRepresentation; end
2115
2223
 
@@ -3235,6 +3343,21 @@ module Google
3235
3343
  end
3236
3344
  end
3237
3345
 
3346
+ class GoogleCloudDialogflowCxV3ExportIntentsMetadata
3347
+ # @private
3348
+ class Representation < Google::Apis::Core::JsonRepresentation
3349
+ end
3350
+ end
3351
+
3352
+ class GoogleCloudDialogflowCxV3ExportIntentsResponse
3353
+ # @private
3354
+ class Representation < Google::Apis::Core::JsonRepresentation
3355
+ property :intents_content, as: 'intentsContent', class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3InlineDestination, decorator: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3InlineDestination::Representation
3356
+
3357
+ property :intents_uri, as: 'intentsUri'
3358
+ end
3359
+ end
3360
+
3238
3361
  class GoogleCloudDialogflowCxV3ExportTestCasesMetadata
3239
3362
  # @private
3240
3363
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -3373,6 +3496,29 @@ module Google
3373
3496
  end
3374
3497
  end
3375
3498
 
3499
+ class GoogleCloudDialogflowCxV3ImportIntentsMetadata
3500
+ # @private
3501
+ class Representation < Google::Apis::Core::JsonRepresentation
3502
+ end
3503
+ end
3504
+
3505
+ class GoogleCloudDialogflowCxV3ImportIntentsResponse
3506
+ # @private
3507
+ class Representation < Google::Apis::Core::JsonRepresentation
3508
+ property :conflicting_resources, as: 'conflictingResources', class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3ImportIntentsResponseConflictingResources, decorator: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3ImportIntentsResponseConflictingResources::Representation
3509
+
3510
+ collection :intents, as: 'intents'
3511
+ end
3512
+ end
3513
+
3514
+ class GoogleCloudDialogflowCxV3ImportIntentsResponseConflictingResources
3515
+ # @private
3516
+ class Representation < Google::Apis::Core::JsonRepresentation
3517
+ collection :entity_display_names, as: 'entityDisplayNames'
3518
+ collection :intent_display_names, as: 'intentDisplayNames'
3519
+ end
3520
+ end
3521
+
3376
3522
  class GoogleCloudDialogflowCxV3ImportTestCasesMetadata
3377
3523
  # @private
3378
3524
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -3388,6 +3534,13 @@ module Google
3388
3534
  end
3389
3535
  end
3390
3536
 
3537
+ class GoogleCloudDialogflowCxV3InlineDestination
3538
+ # @private
3539
+ class Representation < Google::Apis::Core::JsonRepresentation
3540
+ property :content, :base64 => true, as: 'content'
3541
+ end
3542
+ end
3543
+
3391
3544
  class GoogleCloudDialogflowCxV3InputAudioConfig
3392
3545
  # @private
3393
3546
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -4156,6 +4309,21 @@ module Google
4156
4309
  end
4157
4310
  end
4158
4311
 
4312
+ class GoogleCloudDialogflowCxV3beta1ExportIntentsMetadata
4313
+ # @private
4314
+ class Representation < Google::Apis::Core::JsonRepresentation
4315
+ end
4316
+ end
4317
+
4318
+ class GoogleCloudDialogflowCxV3beta1ExportIntentsResponse
4319
+ # @private
4320
+ class Representation < Google::Apis::Core::JsonRepresentation
4321
+ property :intents_content, as: 'intentsContent', class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3beta1InlineDestination, decorator: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3beta1InlineDestination::Representation
4322
+
4323
+ property :intents_uri, as: 'intentsUri'
4324
+ end
4325
+ end
4326
+
4159
4327
  class GoogleCloudDialogflowCxV3beta1ExportTestCasesMetadata
4160
4328
  # @private
4161
4329
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -4294,6 +4462,29 @@ module Google
4294
4462
  end
4295
4463
  end
4296
4464
 
4465
+ class GoogleCloudDialogflowCxV3beta1ImportIntentsMetadata
4466
+ # @private
4467
+ class Representation < Google::Apis::Core::JsonRepresentation
4468
+ end
4469
+ end
4470
+
4471
+ class GoogleCloudDialogflowCxV3beta1ImportIntentsResponse
4472
+ # @private
4473
+ class Representation < Google::Apis::Core::JsonRepresentation
4474
+ property :conflicting_resources, as: 'conflictingResources', class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3beta1ImportIntentsResponseConflictingResources, decorator: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3beta1ImportIntentsResponseConflictingResources::Representation
4475
+
4476
+ collection :intents, as: 'intents'
4477
+ end
4478
+ end
4479
+
4480
+ class GoogleCloudDialogflowCxV3beta1ImportIntentsResponseConflictingResources
4481
+ # @private
4482
+ class Representation < Google::Apis::Core::JsonRepresentation
4483
+ collection :entity_display_names, as: 'entityDisplayNames'
4484
+ collection :intent_display_names, as: 'intentDisplayNames'
4485
+ end
4486
+ end
4487
+
4297
4488
  class GoogleCloudDialogflowCxV3beta1ImportTestCasesMetadata
4298
4489
  # @private
4299
4490
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -4309,6 +4500,13 @@ module Google
4309
4500
  end
4310
4501
  end
4311
4502
 
4503
+ class GoogleCloudDialogflowCxV3beta1InlineDestination
4504
+ # @private
4505
+ class Representation < Google::Apis::Core::JsonRepresentation
4506
+ property :content, :base64 => true, as: 'content'
4507
+ end
4508
+ end
4509
+
4312
4510
  class GoogleCloudDialogflowCxV3beta1InputAudioConfig
4313
4511
  # @private
4314
4512
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -4973,6 +5171,14 @@ module Google
4973
5171
  end
4974
5172
  end
4975
5173
 
5174
+ class GoogleCloudDialogflowV2EncryptionSpec
5175
+ # @private
5176
+ class Representation < Google::Apis::Core::JsonRepresentation
5177
+ property :kms_key, as: 'kmsKey'
5178
+ property :name, as: 'name'
5179
+ end
5180
+ end
5181
+
4976
5182
  class GoogleCloudDialogflowV2EntityType
4977
5183
  # @private
4978
5184
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -5074,6 +5280,22 @@ module Google
5074
5280
  end
5075
5281
  end
5076
5282
 
5283
+ class GoogleCloudDialogflowV2InitializeEncryptionSpecMetadata
5284
+ # @private
5285
+ class Representation < Google::Apis::Core::JsonRepresentation
5286
+ property :request, as: 'request', class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2InitializeEncryptionSpecRequest, decorator: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2InitializeEncryptionSpecRequest::Representation
5287
+
5288
+ end
5289
+ end
5290
+
5291
+ class GoogleCloudDialogflowV2InitializeEncryptionSpecRequest
5292
+ # @private
5293
+ class Representation < Google::Apis::Core::JsonRepresentation
5294
+ property :encryption_spec, as: 'encryptionSpec', class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2EncryptionSpec, decorator: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2EncryptionSpec::Representation
5295
+
5296
+ end
5297
+ end
5298
+
5077
5299
  class GoogleCloudDialogflowV2InputDataset
5078
5300
  # @private
5079
5301
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -6137,6 +6359,14 @@ module Google
6137
6359
  end
6138
6360
  end
6139
6361
 
6362
+ class GoogleCloudDialogflowV2beta1EncryptionSpec
6363
+ # @private
6364
+ class Representation < Google::Apis::Core::JsonRepresentation
6365
+ property :kms_key, as: 'kmsKey'
6366
+ property :name, as: 'name'
6367
+ end
6368
+ end
6369
+
6140
6370
  class GoogleCloudDialogflowV2beta1EntityType
6141
6371
  # @private
6142
6372
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -6535,6 +6765,22 @@ module Google
6535
6765
  end
6536
6766
  end
6537
6767
 
6768
+ class GoogleCloudDialogflowV2beta1InitializeEncryptionSpecMetadata
6769
+ # @private
6770
+ class Representation < Google::Apis::Core::JsonRepresentation
6771
+ property :request, as: 'request', class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1InitializeEncryptionSpecRequest, decorator: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1InitializeEncryptionSpecRequest::Representation
6772
+
6773
+ end
6774
+ end
6775
+
6776
+ class GoogleCloudDialogflowV2beta1InitializeEncryptionSpecRequest
6777
+ # @private
6778
+ class Representation < Google::Apis::Core::JsonRepresentation
6779
+ property :encryption_spec, as: 'encryptionSpec', class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1EncryptionSpec, decorator: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1EncryptionSpec::Representation
6780
+
6781
+ end
6782
+ end
6783
+
6538
6784
  class GoogleCloudDialogflowV2beta1InputAudioConfig
6539
6785
  # @private
6540
6786
  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.70.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_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.70.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: []