google-apis-dialogflow_v2 0.69.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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e0cbc7f4ae70c245c4a337b5c7ec9602e3bfbff450ddf07a52fb14846528404f
|
4
|
+
data.tar.gz: a91f54904407968b8fd878b0fe69f5de358b2dd607fb5727bb83713977ef74f8
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c72f5e0dc20076fd40314edae733e9c432a676e9786853c1187574fa86d347e3d70f9b16f191d82c13ddcb701516b20f8e607366111478957e5bccbff5632211
|
7
|
+
data.tar.gz: 9f82bc14518436edbddbcedaf93ef9b2b3ae2f87fb4bd2305d14eb0afa8c49bd9dba1eb82676bd8bf083dedb948c6536d3ad55b51d377730ae3a93fb6eabc148
|
data/CHANGELOG.md
CHANGED
@@ -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
|
@@ -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.
|
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 = "
|
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
|
|
@@ -3217,6 +3289,21 @@ module Google
|
|
3217
3289
|
end
|
3218
3290
|
end
|
3219
3291
|
|
3292
|
+
class GoogleCloudDialogflowCxV3ExportIntentsMetadata
|
3293
|
+
# @private
|
3294
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
3295
|
+
end
|
3296
|
+
end
|
3297
|
+
|
3298
|
+
class GoogleCloudDialogflowCxV3ExportIntentsResponse
|
3299
|
+
# @private
|
3300
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
3301
|
+
property :intents_content, as: 'intentsContent', class: Google::Apis::DialogflowV2::GoogleCloudDialogflowCxV3InlineDestination, decorator: Google::Apis::DialogflowV2::GoogleCloudDialogflowCxV3InlineDestination::Representation
|
3302
|
+
|
3303
|
+
property :intents_uri, as: 'intentsUri'
|
3304
|
+
end
|
3305
|
+
end
|
3306
|
+
|
3220
3307
|
class GoogleCloudDialogflowCxV3ExportTestCasesMetadata
|
3221
3308
|
# @private
|
3222
3309
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -3355,6 +3442,29 @@ module Google
|
|
3355
3442
|
end
|
3356
3443
|
end
|
3357
3444
|
|
3445
|
+
class GoogleCloudDialogflowCxV3ImportIntentsMetadata
|
3446
|
+
# @private
|
3447
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
3448
|
+
end
|
3449
|
+
end
|
3450
|
+
|
3451
|
+
class GoogleCloudDialogflowCxV3ImportIntentsResponse
|
3452
|
+
# @private
|
3453
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
3454
|
+
property :conflicting_resources, as: 'conflictingResources', class: Google::Apis::DialogflowV2::GoogleCloudDialogflowCxV3ImportIntentsResponseConflictingResources, decorator: Google::Apis::DialogflowV2::GoogleCloudDialogflowCxV3ImportIntentsResponseConflictingResources::Representation
|
3455
|
+
|
3456
|
+
collection :intents, as: 'intents'
|
3457
|
+
end
|
3458
|
+
end
|
3459
|
+
|
3460
|
+
class GoogleCloudDialogflowCxV3ImportIntentsResponseConflictingResources
|
3461
|
+
# @private
|
3462
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
3463
|
+
collection :entity_display_names, as: 'entityDisplayNames'
|
3464
|
+
collection :intent_display_names, as: 'intentDisplayNames'
|
3465
|
+
end
|
3466
|
+
end
|
3467
|
+
|
3358
3468
|
class GoogleCloudDialogflowCxV3ImportTestCasesMetadata
|
3359
3469
|
# @private
|
3360
3470
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -3370,6 +3480,13 @@ module Google
|
|
3370
3480
|
end
|
3371
3481
|
end
|
3372
3482
|
|
3483
|
+
class GoogleCloudDialogflowCxV3InlineDestination
|
3484
|
+
# @private
|
3485
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
3486
|
+
property :content, :base64 => true, as: 'content'
|
3487
|
+
end
|
3488
|
+
end
|
3489
|
+
|
3373
3490
|
class GoogleCloudDialogflowCxV3InputAudioConfig
|
3374
3491
|
# @private
|
3375
3492
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -4138,6 +4255,21 @@ module Google
|
|
4138
4255
|
end
|
4139
4256
|
end
|
4140
4257
|
|
4258
|
+
class GoogleCloudDialogflowCxV3beta1ExportIntentsMetadata
|
4259
|
+
# @private
|
4260
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
4261
|
+
end
|
4262
|
+
end
|
4263
|
+
|
4264
|
+
class GoogleCloudDialogflowCxV3beta1ExportIntentsResponse
|
4265
|
+
# @private
|
4266
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
4267
|
+
property :intents_content, as: 'intentsContent', class: Google::Apis::DialogflowV2::GoogleCloudDialogflowCxV3beta1InlineDestination, decorator: Google::Apis::DialogflowV2::GoogleCloudDialogflowCxV3beta1InlineDestination::Representation
|
4268
|
+
|
4269
|
+
property :intents_uri, as: 'intentsUri'
|
4270
|
+
end
|
4271
|
+
end
|
4272
|
+
|
4141
4273
|
class GoogleCloudDialogflowCxV3beta1ExportTestCasesMetadata
|
4142
4274
|
# @private
|
4143
4275
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -4276,6 +4408,29 @@ module Google
|
|
4276
4408
|
end
|
4277
4409
|
end
|
4278
4410
|
|
4411
|
+
class GoogleCloudDialogflowCxV3beta1ImportIntentsMetadata
|
4412
|
+
# @private
|
4413
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
4414
|
+
end
|
4415
|
+
end
|
4416
|
+
|
4417
|
+
class GoogleCloudDialogflowCxV3beta1ImportIntentsResponse
|
4418
|
+
# @private
|
4419
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
4420
|
+
property :conflicting_resources, as: 'conflictingResources', class: Google::Apis::DialogflowV2::GoogleCloudDialogflowCxV3beta1ImportIntentsResponseConflictingResources, decorator: Google::Apis::DialogflowV2::GoogleCloudDialogflowCxV3beta1ImportIntentsResponseConflictingResources::Representation
|
4421
|
+
|
4422
|
+
collection :intents, as: 'intents'
|
4423
|
+
end
|
4424
|
+
end
|
4425
|
+
|
4426
|
+
class GoogleCloudDialogflowCxV3beta1ImportIntentsResponseConflictingResources
|
4427
|
+
# @private
|
4428
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
4429
|
+
collection :entity_display_names, as: 'entityDisplayNames'
|
4430
|
+
collection :intent_display_names, as: 'intentDisplayNames'
|
4431
|
+
end
|
4432
|
+
end
|
4433
|
+
|
4279
4434
|
class GoogleCloudDialogflowCxV3beta1ImportTestCasesMetadata
|
4280
4435
|
# @private
|
4281
4436
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -4291,6 +4446,13 @@ module Google
|
|
4291
4446
|
end
|
4292
4447
|
end
|
4293
4448
|
|
4449
|
+
class GoogleCloudDialogflowCxV3beta1InlineDestination
|
4450
|
+
# @private
|
4451
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
4452
|
+
property :content, :base64 => true, as: 'content'
|
4453
|
+
end
|
4454
|
+
end
|
4455
|
+
|
4294
4456
|
class GoogleCloudDialogflowCxV3beta1InputAudioConfig
|
4295
4457
|
# @private
|
4296
4458
|
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.
|
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-
|
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_v2/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-dialogflow_v2/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-dialogflow_v2/v0.70.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: []
|