aws-sdk-dataexchange 1.24.0 → 1.27.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 +4 -4
- data/CHANGELOG.md +15 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-dataexchange/client.rb +151 -1
- data/lib/aws-sdk-dataexchange/client_api.rb +82 -34
- data/lib/aws-sdk-dataexchange/types.rb +416 -161
- data/lib/aws-sdk-dataexchange/waiters.rb +15 -0
- data/lib/aws-sdk-dataexchange.rb +2 -1
- metadata +5 -4
@@ -169,9 +169,9 @@ module Aws::DataExchange
|
|
169
169
|
# means of fulfilling data (Amazon Redshift datashare or Amazon API
|
170
170
|
# Gateway API). The asset can be a structured data file, an image file,
|
171
171
|
# or some other data file that can be stored as an S3 object, an Amazon
|
172
|
-
# API Gateway API, or an Amazon Redshift datashare
|
173
|
-
#
|
174
|
-
#
|
172
|
+
# API Gateway API, or an Amazon Redshift datashare. When you create an
|
173
|
+
# import job for your files, API Gateway APIs, or Amazon Redshift
|
174
|
+
# datashares, you create an asset in AWS Data Exchange.
|
175
175
|
#
|
176
176
|
# @!attribute [rw] arn
|
177
177
|
# The ARN for the asset.
|
@@ -341,6 +341,7 @@ module Aws::DataExchange
|
|
341
341
|
# }
|
342
342
|
#
|
343
343
|
# @!attribute [rw] job_id
|
344
|
+
# The unique identifier for a job.
|
344
345
|
# @return [String]
|
345
346
|
#
|
346
347
|
# @see http://docs.aws.amazon.com/goto/WebAPI/dataexchange-2017-07-25/CancelJobRequest AWS API Documentation
|
@@ -377,8 +378,6 @@ module Aws::DataExchange
|
|
377
378
|
include Aws::Structure
|
378
379
|
end
|
379
380
|
|
380
|
-
# A request to create a data set that contains one or more revisions.
|
381
|
-
#
|
382
381
|
# @note When making an API call, you may pass CreateDataSetRequest
|
383
382
|
# data as a hash:
|
384
383
|
#
|
@@ -424,8 +423,7 @@ module Aws::DataExchange
|
|
424
423
|
end
|
425
424
|
|
426
425
|
# @!attribute [rw] arn
|
427
|
-
#
|
428
|
-
# resource.
|
426
|
+
# The ARN for the data set.
|
429
427
|
# @return [String]
|
430
428
|
#
|
431
429
|
# @!attribute [rw] asset_type
|
@@ -433,43 +431,43 @@ module Aws::DataExchange
|
|
433
431
|
# @return [String]
|
434
432
|
#
|
435
433
|
# @!attribute [rw] created_at
|
436
|
-
#
|
437
|
-
# format.
|
434
|
+
# The date and time that the data set was created, in ISO 8601 format.
|
438
435
|
# @return [Time]
|
439
436
|
#
|
440
437
|
# @!attribute [rw] description
|
441
|
-
#
|
438
|
+
# The description for the data set.
|
442
439
|
# @return [String]
|
443
440
|
#
|
444
441
|
# @!attribute [rw] id
|
445
|
-
#
|
442
|
+
# The unique identifier for the data set.
|
446
443
|
# @return [String]
|
447
444
|
#
|
448
445
|
# @!attribute [rw] name
|
449
|
-
# The name of the
|
446
|
+
# The name of the data set.
|
450
447
|
# @return [String]
|
451
448
|
#
|
452
449
|
# @!attribute [rw] origin
|
453
450
|
# A property that defines the data set as OWNED by the account (for
|
454
|
-
# providers) or ENTITLED to the account (for subscribers).
|
455
|
-
# owned data set is published in a product, AWS Data Exchange creates
|
456
|
-
# a copy of the data set. Subscribers can access that copy of the data
|
457
|
-
# set as an entitled data set.
|
451
|
+
# providers) or ENTITLED to the account (for subscribers).
|
458
452
|
# @return [String]
|
459
453
|
#
|
460
454
|
# @!attribute [rw] origin_details
|
461
|
-
#
|
455
|
+
# If the origin of this data set is ENTITLED, includes the details for
|
456
|
+
# the product on AWS Marketplace.
|
462
457
|
# @return [Types::OriginDetails]
|
463
458
|
#
|
464
459
|
# @!attribute [rw] source_id
|
465
|
-
#
|
460
|
+
# The data set ID of the owned data set corresponding to the entitled
|
461
|
+
# data set being viewed. This parameter is returned when a data set
|
462
|
+
# owner is viewing the entitled copy of its owned data set.
|
466
463
|
# @return [String]
|
467
464
|
#
|
468
465
|
# @!attribute [rw] tags
|
466
|
+
# The tags for the data set.
|
469
467
|
# @return [Hash<String,String>]
|
470
468
|
#
|
471
469
|
# @!attribute [rw] updated_at
|
472
|
-
#
|
470
|
+
# The date and time that the data set was last updated, in ISO 8601
|
473
471
|
# format.
|
474
472
|
# @return [Time]
|
475
473
|
#
|
@@ -491,8 +489,6 @@ module Aws::DataExchange
|
|
491
489
|
include Aws::Structure
|
492
490
|
end
|
493
491
|
|
494
|
-
# A request to create an event action.
|
495
|
-
#
|
496
492
|
# @note When making an API call, you may pass CreateEventActionRequest
|
497
493
|
# data as a hash:
|
498
494
|
#
|
@@ -538,12 +534,11 @@ module Aws::DataExchange
|
|
538
534
|
# @return [Types::Action]
|
539
535
|
#
|
540
536
|
# @!attribute [rw] arn
|
541
|
-
#
|
542
|
-
# resource.
|
537
|
+
# The ARN for the event action.
|
543
538
|
# @return [String]
|
544
539
|
#
|
545
540
|
# @!attribute [rw] created_at
|
546
|
-
#
|
541
|
+
# The date and time that the event action was created, in ISO 8601
|
547
542
|
# format.
|
548
543
|
# @return [Time]
|
549
544
|
#
|
@@ -552,12 +547,12 @@ module Aws::DataExchange
|
|
552
547
|
# @return [Types::Event]
|
553
548
|
#
|
554
549
|
# @!attribute [rw] id
|
555
|
-
#
|
550
|
+
# The unique identifier for the event action.
|
556
551
|
# @return [String]
|
557
552
|
#
|
558
553
|
# @!attribute [rw] updated_at
|
559
|
-
#
|
560
|
-
# format.
|
554
|
+
# The date and time that the event action was last updated, in ISO
|
555
|
+
# 8601 format.
|
561
556
|
# @return [Time]
|
562
557
|
#
|
563
558
|
# @see http://docs.aws.amazon.com/goto/WebAPI/dataexchange-2017-07-25/CreateEventActionResponse AWS API Documentation
|
@@ -573,12 +568,6 @@ module Aws::DataExchange
|
|
573
568
|
include Aws::Structure
|
574
569
|
end
|
575
570
|
|
576
|
-
# The CreateJob request. AWS Data Exchange Jobs are asynchronous import
|
577
|
-
# or export operations used to create or copy assets. A data set owner
|
578
|
-
# can both import and export assets. A subscriber with an entitlement to
|
579
|
-
# a data set can only export. Jobs are deleted 90 days after they are
|
580
|
-
# created. Created jobs must be started with the StartJob operation.
|
581
|
-
#
|
582
571
|
# @note When making an API call, you may pass CreateJobRequest
|
583
572
|
# data as a hash:
|
584
573
|
#
|
@@ -676,35 +665,35 @@ module Aws::DataExchange
|
|
676
665
|
end
|
677
666
|
|
678
667
|
# @!attribute [rw] arn
|
679
|
-
#
|
680
|
-
# resource.
|
668
|
+
# The ARN for the job.
|
681
669
|
# @return [String]
|
682
670
|
#
|
683
671
|
# @!attribute [rw] created_at
|
684
|
-
#
|
685
|
-
# format.
|
672
|
+
# The date and time that the job was created, in ISO 8601 format.
|
686
673
|
# @return [Time]
|
687
674
|
#
|
688
675
|
# @!attribute [rw] details
|
689
|
-
# Details
|
676
|
+
# Details about the job.
|
690
677
|
# @return [Types::ResponseDetails]
|
691
678
|
#
|
692
679
|
# @!attribute [rw] errors
|
680
|
+
# The errors associated with jobs.
|
693
681
|
# @return [Array<Types::JobError>]
|
694
682
|
#
|
695
683
|
# @!attribute [rw] id
|
696
|
-
#
|
684
|
+
# The unique identifier for the job.
|
697
685
|
# @return [String]
|
698
686
|
#
|
699
687
|
# @!attribute [rw] state
|
688
|
+
# The state of the job.
|
700
689
|
# @return [String]
|
701
690
|
#
|
702
691
|
# @!attribute [rw] type
|
692
|
+
# The job type.
|
703
693
|
# @return [String]
|
704
694
|
#
|
705
695
|
# @!attribute [rw] updated_at
|
706
|
-
#
|
707
|
-
# format.
|
696
|
+
# The date and time that the job was last updated, in ISO 8601 format.
|
708
697
|
# @return [Time]
|
709
698
|
#
|
710
699
|
# @see http://docs.aws.amazon.com/goto/WebAPI/dataexchange-2017-07-25/CreateJobResponse AWS API Documentation
|
@@ -722,11 +711,6 @@ module Aws::DataExchange
|
|
722
711
|
include Aws::Structure
|
723
712
|
end
|
724
713
|
|
725
|
-
# Creates a revision for a data set. When they're created, revisions
|
726
|
-
# are not published to products, and therefore are not available to
|
727
|
-
# subscribers. To publish a revision to a data set in a product, the
|
728
|
-
# revision must first be finalized.
|
729
|
-
#
|
730
714
|
# @note When making an API call, you may pass CreateRevisionRequest
|
731
715
|
# data as a hash:
|
732
716
|
#
|
@@ -743,6 +727,7 @@ module Aws::DataExchange
|
|
743
727
|
# @return [String]
|
744
728
|
#
|
745
729
|
# @!attribute [rw] data_set_id
|
730
|
+
# The unique identifier for a data set.
|
746
731
|
# @return [String]
|
747
732
|
#
|
748
733
|
# @!attribute [rw] tags
|
@@ -764,41 +749,66 @@ module Aws::DataExchange
|
|
764
749
|
end
|
765
750
|
|
766
751
|
# @!attribute [rw] arn
|
767
|
-
#
|
768
|
-
# resource.
|
752
|
+
# The ARN for the revision.
|
769
753
|
# @return [String]
|
770
754
|
#
|
771
755
|
# @!attribute [rw] comment
|
756
|
+
# An optional comment about the revision.
|
772
757
|
# @return [String]
|
773
758
|
#
|
774
759
|
# @!attribute [rw] created_at
|
775
|
-
#
|
776
|
-
# format.
|
760
|
+
# The date and time that the revision was created, in ISO 8601 format.
|
777
761
|
# @return [Time]
|
778
762
|
#
|
779
763
|
# @!attribute [rw] data_set_id
|
780
|
-
#
|
764
|
+
# The unique identifier for the data set associated with this
|
765
|
+
# revision.
|
781
766
|
# @return [String]
|
782
767
|
#
|
783
768
|
# @!attribute [rw] finalized
|
769
|
+
# To publish a revision to a data set in a product, the revision must
|
770
|
+
# first be finalized. Finalizing a revision tells AWS Data Exchange
|
771
|
+
# that your changes to the assets in the revision are complete. After
|
772
|
+
# it's in this read-only state, you can publish the revision to your
|
773
|
+
# products. Finalized revisions can be published through the AWS Data
|
774
|
+
# Exchange console or the AWS Marketplace Catalog API, using the
|
775
|
+
# StartChangeSet AWS Marketplace Catalog API action. When using the
|
776
|
+
# API, revisions are uniquely identified by their ARN.
|
784
777
|
# @return [Boolean]
|
785
778
|
#
|
786
779
|
# @!attribute [rw] id
|
787
|
-
#
|
780
|
+
# The unique identifier for the revision.
|
788
781
|
# @return [String]
|
789
782
|
#
|
790
783
|
# @!attribute [rw] source_id
|
791
|
-
#
|
784
|
+
# The revision ID of the owned revision corresponding to the entitled
|
785
|
+
# revision being viewed. This parameter is returned when a revision
|
786
|
+
# owner is viewing the entitled copy of its owned revision.
|
792
787
|
# @return [String]
|
793
788
|
#
|
794
789
|
# @!attribute [rw] tags
|
790
|
+
# The tags for the revision.
|
795
791
|
# @return [Hash<String,String>]
|
796
792
|
#
|
797
793
|
# @!attribute [rw] updated_at
|
798
|
-
#
|
794
|
+
# The date and time that the revision was last updated, in ISO 8601
|
799
795
|
# format.
|
800
796
|
# @return [Time]
|
801
797
|
#
|
798
|
+
# @!attribute [rw] revocation_comment
|
799
|
+
# A required comment to inform subscribers of the reason their access
|
800
|
+
# to the revision was revoked.
|
801
|
+
# @return [String]
|
802
|
+
#
|
803
|
+
# @!attribute [rw] revoked
|
804
|
+
# A status indicating that subscribers' access to the revision was
|
805
|
+
# revoked.
|
806
|
+
# @return [Boolean]
|
807
|
+
#
|
808
|
+
# @!attribute [rw] revoked_at
|
809
|
+
# The date and time that the revision was revoked, in ISO 8601 format.
|
810
|
+
# @return [Time]
|
811
|
+
#
|
802
812
|
# @see http://docs.aws.amazon.com/goto/WebAPI/dataexchange-2017-07-25/CreateRevisionResponse AWS API Documentation
|
803
813
|
#
|
804
814
|
class CreateRevisionResponse < Struct.new(
|
@@ -810,7 +820,10 @@ module Aws::DataExchange
|
|
810
820
|
:id,
|
811
821
|
:source_id,
|
812
822
|
:tags,
|
813
|
-
:updated_at
|
823
|
+
:updated_at,
|
824
|
+
:revocation_comment,
|
825
|
+
:revoked,
|
826
|
+
:revoked_at)
|
814
827
|
SENSITIVE = []
|
815
828
|
include Aws::Structure
|
816
829
|
end
|
@@ -889,12 +902,15 @@ module Aws::DataExchange
|
|
889
902
|
# }
|
890
903
|
#
|
891
904
|
# @!attribute [rw] asset_id
|
905
|
+
# The unique identifier for an asset.
|
892
906
|
# @return [String]
|
893
907
|
#
|
894
908
|
# @!attribute [rw] data_set_id
|
909
|
+
# The unique identifier for a data set.
|
895
910
|
# @return [String]
|
896
911
|
#
|
897
912
|
# @!attribute [rw] revision_id
|
913
|
+
# The unique identifier for a revision.
|
898
914
|
# @return [String]
|
899
915
|
#
|
900
916
|
# @see http://docs.aws.amazon.com/goto/WebAPI/dataexchange-2017-07-25/DeleteAssetRequest AWS API Documentation
|
@@ -915,6 +931,7 @@ module Aws::DataExchange
|
|
915
931
|
# }
|
916
932
|
#
|
917
933
|
# @!attribute [rw] data_set_id
|
934
|
+
# The unique identifier for a data set.
|
918
935
|
# @return [String]
|
919
936
|
#
|
920
937
|
# @see http://docs.aws.amazon.com/goto/WebAPI/dataexchange-2017-07-25/DeleteDataSetRequest AWS API Documentation
|
@@ -933,6 +950,7 @@ module Aws::DataExchange
|
|
933
950
|
# }
|
934
951
|
#
|
935
952
|
# @!attribute [rw] event_action_id
|
953
|
+
# The unique identifier for the event action.
|
936
954
|
# @return [String]
|
937
955
|
#
|
938
956
|
# @see http://docs.aws.amazon.com/goto/WebAPI/dataexchange-2017-07-25/DeleteEventActionRequest AWS API Documentation
|
@@ -952,9 +970,11 @@ module Aws::DataExchange
|
|
952
970
|
# }
|
953
971
|
#
|
954
972
|
# @!attribute [rw] data_set_id
|
973
|
+
# The unique identifier for a data set.
|
955
974
|
# @return [String]
|
956
975
|
#
|
957
976
|
# @!attribute [rw] revision_id
|
977
|
+
# The unique identifier for a revision.
|
958
978
|
# @return [String]
|
959
979
|
#
|
960
980
|
# @see http://docs.aws.amazon.com/goto/WebAPI/dataexchange-2017-07-25/DeleteRevisionRequest AWS API Documentation
|
@@ -1279,7 +1299,7 @@ module Aws::DataExchange
|
|
1279
1299
|
|
1280
1300
|
# Encryption configuration of the export job. Includes the encryption
|
1281
1301
|
# type in addition to the AWS KMS key. The KMS key is only necessary if
|
1282
|
-
# you chose the KMS encryption
|
1302
|
+
# you chose the KMS encryption type.
|
1283
1303
|
#
|
1284
1304
|
# @note When making an API call, you may pass ExportServerSideEncryption
|
1285
1305
|
# data as a hash:
|
@@ -1319,12 +1339,15 @@ module Aws::DataExchange
|
|
1319
1339
|
# }
|
1320
1340
|
#
|
1321
1341
|
# @!attribute [rw] asset_id
|
1342
|
+
# The unique identifier for an asset.
|
1322
1343
|
# @return [String]
|
1323
1344
|
#
|
1324
1345
|
# @!attribute [rw] data_set_id
|
1346
|
+
# The unique identifier for a data set.
|
1325
1347
|
# @return [String]
|
1326
1348
|
#
|
1327
1349
|
# @!attribute [rw] revision_id
|
1350
|
+
# The unique identifier for a revision.
|
1328
1351
|
# @return [String]
|
1329
1352
|
#
|
1330
1353
|
# @see http://docs.aws.amazon.com/goto/WebAPI/dataexchange-2017-07-25/GetAssetRequest AWS API Documentation
|
@@ -1338,8 +1361,7 @@ module Aws::DataExchange
|
|
1338
1361
|
end
|
1339
1362
|
|
1340
1363
|
# @!attribute [rw] arn
|
1341
|
-
#
|
1342
|
-
# resource.
|
1364
|
+
# The ARN for the asset.
|
1343
1365
|
# @return [String]
|
1344
1366
|
#
|
1345
1367
|
# @!attribute [rw] asset_details
|
@@ -1351,16 +1373,15 @@ module Aws::DataExchange
|
|
1351
1373
|
# @return [String]
|
1352
1374
|
#
|
1353
1375
|
# @!attribute [rw] created_at
|
1354
|
-
#
|
1355
|
-
# format.
|
1376
|
+
# The date and time that the asset was created, in ISO 8601 format.
|
1356
1377
|
# @return [Time]
|
1357
1378
|
#
|
1358
1379
|
# @!attribute [rw] data_set_id
|
1359
|
-
#
|
1380
|
+
# The unique identifier for the data set associated with this asset.
|
1360
1381
|
# @return [String]
|
1361
1382
|
#
|
1362
1383
|
# @!attribute [rw] id
|
1363
|
-
#
|
1384
|
+
# The unique identifier for the asset.
|
1364
1385
|
# @return [String]
|
1365
1386
|
#
|
1366
1387
|
# @!attribute [rw] name
|
@@ -1373,15 +1394,17 @@ module Aws::DataExchange
|
|
1373
1394
|
# @return [String]
|
1374
1395
|
#
|
1375
1396
|
# @!attribute [rw] revision_id
|
1376
|
-
#
|
1397
|
+
# The unique identifier for the revision associated with this asset.
|
1377
1398
|
# @return [String]
|
1378
1399
|
#
|
1379
1400
|
# @!attribute [rw] source_id
|
1380
|
-
#
|
1401
|
+
# The asset ID of the owned asset corresponding to the entitled asset
|
1402
|
+
# being viewed. This parameter is returned when an asset owner is
|
1403
|
+
# viewing the entitled copy of its owned asset.
|
1381
1404
|
# @return [String]
|
1382
1405
|
#
|
1383
1406
|
# @!attribute [rw] updated_at
|
1384
|
-
#
|
1407
|
+
# The date and time that the asset was last updated, in ISO 8601
|
1385
1408
|
# format.
|
1386
1409
|
# @return [Time]
|
1387
1410
|
#
|
@@ -1410,6 +1433,7 @@ module Aws::DataExchange
|
|
1410
1433
|
# }
|
1411
1434
|
#
|
1412
1435
|
# @!attribute [rw] data_set_id
|
1436
|
+
# The unique identifier for a data set.
|
1413
1437
|
# @return [String]
|
1414
1438
|
#
|
1415
1439
|
# @see http://docs.aws.amazon.com/goto/WebAPI/dataexchange-2017-07-25/GetDataSetRequest AWS API Documentation
|
@@ -1421,8 +1445,7 @@ module Aws::DataExchange
|
|
1421
1445
|
end
|
1422
1446
|
|
1423
1447
|
# @!attribute [rw] arn
|
1424
|
-
#
|
1425
|
-
# resource.
|
1448
|
+
# The ARN for the data set.
|
1426
1449
|
# @return [String]
|
1427
1450
|
#
|
1428
1451
|
# @!attribute [rw] asset_type
|
@@ -1430,43 +1453,43 @@ module Aws::DataExchange
|
|
1430
1453
|
# @return [String]
|
1431
1454
|
#
|
1432
1455
|
# @!attribute [rw] created_at
|
1433
|
-
#
|
1434
|
-
# format.
|
1456
|
+
# The date and time that the data set was created, in ISO 8601 format.
|
1435
1457
|
# @return [Time]
|
1436
1458
|
#
|
1437
1459
|
# @!attribute [rw] description
|
1438
|
-
#
|
1460
|
+
# The description for the data set.
|
1439
1461
|
# @return [String]
|
1440
1462
|
#
|
1441
1463
|
# @!attribute [rw] id
|
1442
|
-
#
|
1464
|
+
# The unique identifier for the data set.
|
1443
1465
|
# @return [String]
|
1444
1466
|
#
|
1445
1467
|
# @!attribute [rw] name
|
1446
|
-
# The name of the
|
1468
|
+
# The name of the data set.
|
1447
1469
|
# @return [String]
|
1448
1470
|
#
|
1449
1471
|
# @!attribute [rw] origin
|
1450
1472
|
# A property that defines the data set as OWNED by the account (for
|
1451
|
-
# providers) or ENTITLED to the account (for subscribers).
|
1452
|
-
# owned data set is published in a product, AWS Data Exchange creates
|
1453
|
-
# a copy of the data set. Subscribers can access that copy of the data
|
1454
|
-
# set as an entitled data set.
|
1473
|
+
# providers) or ENTITLED to the account (for subscribers).
|
1455
1474
|
# @return [String]
|
1456
1475
|
#
|
1457
1476
|
# @!attribute [rw] origin_details
|
1458
|
-
#
|
1477
|
+
# If the origin of this data set is ENTITLED, includes the details for
|
1478
|
+
# the product on AWS Marketplace.
|
1459
1479
|
# @return [Types::OriginDetails]
|
1460
1480
|
#
|
1461
1481
|
# @!attribute [rw] source_id
|
1462
|
-
#
|
1482
|
+
# The data set ID of the owned data set corresponding to the entitled
|
1483
|
+
# data set being viewed. This parameter is returned when a data set
|
1484
|
+
# owner is viewing the entitled copy of its owned data set.
|
1463
1485
|
# @return [String]
|
1464
1486
|
#
|
1465
1487
|
# @!attribute [rw] tags
|
1488
|
+
# The tags for the data set.
|
1466
1489
|
# @return [Hash<String,String>]
|
1467
1490
|
#
|
1468
1491
|
# @!attribute [rw] updated_at
|
1469
|
-
#
|
1492
|
+
# The date and time that the data set was last updated, in ISO 8601
|
1470
1493
|
# format.
|
1471
1494
|
# @return [Time]
|
1472
1495
|
#
|
@@ -1496,6 +1519,7 @@ module Aws::DataExchange
|
|
1496
1519
|
# }
|
1497
1520
|
#
|
1498
1521
|
# @!attribute [rw] event_action_id
|
1522
|
+
# The unique identifier for the event action.
|
1499
1523
|
# @return [String]
|
1500
1524
|
#
|
1501
1525
|
# @see http://docs.aws.amazon.com/goto/WebAPI/dataexchange-2017-07-25/GetEventActionRequest AWS API Documentation
|
@@ -1511,12 +1535,11 @@ module Aws::DataExchange
|
|
1511
1535
|
# @return [Types::Action]
|
1512
1536
|
#
|
1513
1537
|
# @!attribute [rw] arn
|
1514
|
-
#
|
1515
|
-
# resource.
|
1538
|
+
# The ARN for the event action.
|
1516
1539
|
# @return [String]
|
1517
1540
|
#
|
1518
1541
|
# @!attribute [rw] created_at
|
1519
|
-
#
|
1542
|
+
# The date and time that the event action was created, in ISO 8601
|
1520
1543
|
# format.
|
1521
1544
|
# @return [Time]
|
1522
1545
|
#
|
@@ -1525,12 +1548,12 @@ module Aws::DataExchange
|
|
1525
1548
|
# @return [Types::Event]
|
1526
1549
|
#
|
1527
1550
|
# @!attribute [rw] id
|
1528
|
-
#
|
1551
|
+
# The unique identifier for the event action.
|
1529
1552
|
# @return [String]
|
1530
1553
|
#
|
1531
1554
|
# @!attribute [rw] updated_at
|
1532
|
-
#
|
1533
|
-
# format.
|
1555
|
+
# The date and time that the event action was last updated, in ISO
|
1556
|
+
# 8601 format.
|
1534
1557
|
# @return [Time]
|
1535
1558
|
#
|
1536
1559
|
# @see http://docs.aws.amazon.com/goto/WebAPI/dataexchange-2017-07-25/GetEventActionResponse AWS API Documentation
|
@@ -1554,6 +1577,7 @@ module Aws::DataExchange
|
|
1554
1577
|
# }
|
1555
1578
|
#
|
1556
1579
|
# @!attribute [rw] job_id
|
1580
|
+
# The unique identifier for a job.
|
1557
1581
|
# @return [String]
|
1558
1582
|
#
|
1559
1583
|
# @see http://docs.aws.amazon.com/goto/WebAPI/dataexchange-2017-07-25/GetJobRequest AWS API Documentation
|
@@ -1565,35 +1589,35 @@ module Aws::DataExchange
|
|
1565
1589
|
end
|
1566
1590
|
|
1567
1591
|
# @!attribute [rw] arn
|
1568
|
-
#
|
1569
|
-
# resource.
|
1592
|
+
# The ARN for the job.
|
1570
1593
|
# @return [String]
|
1571
1594
|
#
|
1572
1595
|
# @!attribute [rw] created_at
|
1573
|
-
#
|
1574
|
-
# format.
|
1596
|
+
# The date and time that the job was created, in ISO 8601 format.
|
1575
1597
|
# @return [Time]
|
1576
1598
|
#
|
1577
1599
|
# @!attribute [rw] details
|
1578
|
-
# Details
|
1600
|
+
# Details about the job.
|
1579
1601
|
# @return [Types::ResponseDetails]
|
1580
1602
|
#
|
1581
1603
|
# @!attribute [rw] errors
|
1604
|
+
# The errors associated with jobs.
|
1582
1605
|
# @return [Array<Types::JobError>]
|
1583
1606
|
#
|
1584
1607
|
# @!attribute [rw] id
|
1585
|
-
#
|
1608
|
+
# The unique identifier for the job.
|
1586
1609
|
# @return [String]
|
1587
1610
|
#
|
1588
1611
|
# @!attribute [rw] state
|
1612
|
+
# The state of the job.
|
1589
1613
|
# @return [String]
|
1590
1614
|
#
|
1591
1615
|
# @!attribute [rw] type
|
1616
|
+
# The job type.
|
1592
1617
|
# @return [String]
|
1593
1618
|
#
|
1594
1619
|
# @!attribute [rw] updated_at
|
1595
|
-
#
|
1596
|
-
# format.
|
1620
|
+
# The date and time that the job was last updated, in ISO 8601 format.
|
1597
1621
|
# @return [Time]
|
1598
1622
|
#
|
1599
1623
|
# @see http://docs.aws.amazon.com/goto/WebAPI/dataexchange-2017-07-25/GetJobResponse AWS API Documentation
|
@@ -1620,9 +1644,11 @@ module Aws::DataExchange
|
|
1620
1644
|
# }
|
1621
1645
|
#
|
1622
1646
|
# @!attribute [rw] data_set_id
|
1647
|
+
# The unique identifier for a data set.
|
1623
1648
|
# @return [String]
|
1624
1649
|
#
|
1625
1650
|
# @!attribute [rw] revision_id
|
1651
|
+
# The unique identifier for a revision.
|
1626
1652
|
# @return [String]
|
1627
1653
|
#
|
1628
1654
|
# @see http://docs.aws.amazon.com/goto/WebAPI/dataexchange-2017-07-25/GetRevisionRequest AWS API Documentation
|
@@ -1635,41 +1661,66 @@ module Aws::DataExchange
|
|
1635
1661
|
end
|
1636
1662
|
|
1637
1663
|
# @!attribute [rw] arn
|
1638
|
-
#
|
1639
|
-
# resource.
|
1664
|
+
# The ARN for the revision.
|
1640
1665
|
# @return [String]
|
1641
1666
|
#
|
1642
1667
|
# @!attribute [rw] comment
|
1668
|
+
# An optional comment about the revision.
|
1643
1669
|
# @return [String]
|
1644
1670
|
#
|
1645
1671
|
# @!attribute [rw] created_at
|
1646
|
-
#
|
1647
|
-
# format.
|
1672
|
+
# The date and time that the revision was created, in ISO 8601 format.
|
1648
1673
|
# @return [Time]
|
1649
1674
|
#
|
1650
1675
|
# @!attribute [rw] data_set_id
|
1651
|
-
#
|
1676
|
+
# The unique identifier for the data set associated with this
|
1677
|
+
# revision.
|
1652
1678
|
# @return [String]
|
1653
1679
|
#
|
1654
1680
|
# @!attribute [rw] finalized
|
1681
|
+
# To publish a revision to a data set in a product, the revision must
|
1682
|
+
# first be finalized. Finalizing a revision tells AWS Data Exchange
|
1683
|
+
# that your changes to the assets in the revision are complete. After
|
1684
|
+
# it's in this read-only state, you can publish the revision to your
|
1685
|
+
# products. Finalized revisions can be published through the AWS Data
|
1686
|
+
# Exchange console or the AWS Marketplace Catalog API, using the
|
1687
|
+
# StartChangeSet AWS Marketplace Catalog API action. When using the
|
1688
|
+
# API, revisions are uniquely identified by their ARN.
|
1655
1689
|
# @return [Boolean]
|
1656
1690
|
#
|
1657
1691
|
# @!attribute [rw] id
|
1658
|
-
#
|
1692
|
+
# The unique identifier for the revision.
|
1659
1693
|
# @return [String]
|
1660
1694
|
#
|
1661
1695
|
# @!attribute [rw] source_id
|
1662
|
-
#
|
1696
|
+
# The revision ID of the owned revision corresponding to the entitled
|
1697
|
+
# revision being viewed. This parameter is returned when a revision
|
1698
|
+
# owner is viewing the entitled copy of its owned revision.
|
1663
1699
|
# @return [String]
|
1664
1700
|
#
|
1665
1701
|
# @!attribute [rw] tags
|
1702
|
+
# The tags for the revision.
|
1666
1703
|
# @return [Hash<String,String>]
|
1667
1704
|
#
|
1668
1705
|
# @!attribute [rw] updated_at
|
1669
|
-
#
|
1706
|
+
# The date and time that the revision was last updated, in ISO 8601
|
1670
1707
|
# format.
|
1671
1708
|
# @return [Time]
|
1672
1709
|
#
|
1710
|
+
# @!attribute [rw] revocation_comment
|
1711
|
+
# A required comment to inform subscribers of the reason their access
|
1712
|
+
# to the revision was revoked.
|
1713
|
+
# @return [String]
|
1714
|
+
#
|
1715
|
+
# @!attribute [rw] revoked
|
1716
|
+
# A status indicating that subscribers' access to the revision was
|
1717
|
+
# revoked.
|
1718
|
+
# @return [Boolean]
|
1719
|
+
#
|
1720
|
+
# @!attribute [rw] revoked_at
|
1721
|
+
# The date and time that the revision was revoked, in ISO 8601 format.
|
1722
|
+
# @return [Time]
|
1723
|
+
#
|
1673
1724
|
# @see http://docs.aws.amazon.com/goto/WebAPI/dataexchange-2017-07-25/GetRevisionResponse AWS API Documentation
|
1674
1725
|
#
|
1675
1726
|
class GetRevisionResponse < Struct.new(
|
@@ -1681,7 +1732,10 @@ module Aws::DataExchange
|
|
1681
1732
|
:id,
|
1682
1733
|
:source_id,
|
1683
1734
|
:tags,
|
1684
|
-
:updated_at
|
1735
|
+
:updated_at,
|
1736
|
+
:revocation_comment,
|
1737
|
+
:revoked,
|
1738
|
+
:revoked_at)
|
1685
1739
|
SENSITIVE = []
|
1686
1740
|
include Aws::Structure
|
1687
1741
|
end
|
@@ -2174,12 +2228,16 @@ module Aws::DataExchange
|
|
2174
2228
|
# }
|
2175
2229
|
#
|
2176
2230
|
# @!attribute [rw] data_set_id
|
2231
|
+
# The unique identifier for a data set.
|
2177
2232
|
# @return [String]
|
2178
2233
|
#
|
2179
2234
|
# @!attribute [rw] max_results
|
2235
|
+
# The maximum number of results returned by a single call.
|
2180
2236
|
# @return [Integer]
|
2181
2237
|
#
|
2182
2238
|
# @!attribute [rw] next_token
|
2239
|
+
# The token value retrieved from a previous call to access the next
|
2240
|
+
# page of results.
|
2183
2241
|
# @return [String]
|
2184
2242
|
#
|
2185
2243
|
# @see http://docs.aws.amazon.com/goto/WebAPI/dataexchange-2017-07-25/ListDataSetRevisionsRequest AWS API Documentation
|
@@ -2198,6 +2256,7 @@ module Aws::DataExchange
|
|
2198
2256
|
# @return [String]
|
2199
2257
|
#
|
2200
2258
|
# @!attribute [rw] revisions
|
2259
|
+
# The asset objects listed by the request.
|
2201
2260
|
# @return [Array<Types::RevisionEntry>]
|
2202
2261
|
#
|
2203
2262
|
# @see http://docs.aws.amazon.com/goto/WebAPI/dataexchange-2017-07-25/ListDataSetRevisionsResponse AWS API Documentation
|
@@ -2219,12 +2278,17 @@ module Aws::DataExchange
|
|
2219
2278
|
# }
|
2220
2279
|
#
|
2221
2280
|
# @!attribute [rw] max_results
|
2281
|
+
# The maximum number of results returned by a single call.
|
2222
2282
|
# @return [Integer]
|
2223
2283
|
#
|
2224
2284
|
# @!attribute [rw] next_token
|
2285
|
+
# The token value retrieved from a previous call to access the next
|
2286
|
+
# page of results.
|
2225
2287
|
# @return [String]
|
2226
2288
|
#
|
2227
2289
|
# @!attribute [rw] origin
|
2290
|
+
# A property that defines the data set as OWNED by the account (for
|
2291
|
+
# providers) or ENTITLED to the account (for subscribers).
|
2228
2292
|
# @return [String]
|
2229
2293
|
#
|
2230
2294
|
# @see http://docs.aws.amazon.com/goto/WebAPI/dataexchange-2017-07-25/ListDataSetsRequest AWS API Documentation
|
@@ -2238,6 +2302,7 @@ module Aws::DataExchange
|
|
2238
2302
|
end
|
2239
2303
|
|
2240
2304
|
# @!attribute [rw] data_sets
|
2305
|
+
# The data set objects listed by the request.
|
2241
2306
|
# @return [Array<Types::DataSetEntry>]
|
2242
2307
|
#
|
2243
2308
|
# @!attribute [rw] next_token
|
@@ -2264,12 +2329,16 @@ module Aws::DataExchange
|
|
2264
2329
|
# }
|
2265
2330
|
#
|
2266
2331
|
# @!attribute [rw] event_source_id
|
2332
|
+
# The unique identifier for the event source.
|
2267
2333
|
# @return [String]
|
2268
2334
|
#
|
2269
2335
|
# @!attribute [rw] max_results
|
2336
|
+
# The maximum number of results returned by a single call.
|
2270
2337
|
# @return [Integer]
|
2271
2338
|
#
|
2272
2339
|
# @!attribute [rw] next_token
|
2340
|
+
# The token value retrieved from a previous call to access the next
|
2341
|
+
# page of results.
|
2273
2342
|
# @return [String]
|
2274
2343
|
#
|
2275
2344
|
# @see http://docs.aws.amazon.com/goto/WebAPI/dataexchange-2017-07-25/ListEventActionsRequest AWS API Documentation
|
@@ -2283,6 +2352,7 @@ module Aws::DataExchange
|
|
2283
2352
|
end
|
2284
2353
|
|
2285
2354
|
# @!attribute [rw] event_actions
|
2355
|
+
# The event action objects listed by the request.
|
2286
2356
|
# @return [Array<Types::EventActionEntry>]
|
2287
2357
|
#
|
2288
2358
|
# @!attribute [rw] next_token
|
@@ -2310,15 +2380,20 @@ module Aws::DataExchange
|
|
2310
2380
|
# }
|
2311
2381
|
#
|
2312
2382
|
# @!attribute [rw] data_set_id
|
2383
|
+
# The unique identifier for a data set.
|
2313
2384
|
# @return [String]
|
2314
2385
|
#
|
2315
2386
|
# @!attribute [rw] max_results
|
2387
|
+
# The maximum number of results returned by a single call.
|
2316
2388
|
# @return [Integer]
|
2317
2389
|
#
|
2318
2390
|
# @!attribute [rw] next_token
|
2391
|
+
# The token value retrieved from a previous call to access the next
|
2392
|
+
# page of results.
|
2319
2393
|
# @return [String]
|
2320
2394
|
#
|
2321
2395
|
# @!attribute [rw] revision_id
|
2396
|
+
# The unique identifier for a revision.
|
2322
2397
|
# @return [String]
|
2323
2398
|
#
|
2324
2399
|
# @see http://docs.aws.amazon.com/goto/WebAPI/dataexchange-2017-07-25/ListJobsRequest AWS API Documentation
|
@@ -2333,6 +2408,7 @@ module Aws::DataExchange
|
|
2333
2408
|
end
|
2334
2409
|
|
2335
2410
|
# @!attribute [rw] jobs
|
2411
|
+
# The jobs listed by the request.
|
2336
2412
|
# @return [Array<Types::JobEntry>]
|
2337
2413
|
#
|
2338
2414
|
# @!attribute [rw] next_token
|
@@ -2360,15 +2436,20 @@ module Aws::DataExchange
|
|
2360
2436
|
# }
|
2361
2437
|
#
|
2362
2438
|
# @!attribute [rw] data_set_id
|
2439
|
+
# The unique identifier for a data set.
|
2363
2440
|
# @return [String]
|
2364
2441
|
#
|
2365
2442
|
# @!attribute [rw] max_results
|
2443
|
+
# The maximum number of results returned by a single call.
|
2366
2444
|
# @return [Integer]
|
2367
2445
|
#
|
2368
2446
|
# @!attribute [rw] next_token
|
2447
|
+
# The token value retrieved from a previous call to access the next
|
2448
|
+
# page of results.
|
2369
2449
|
# @return [String]
|
2370
2450
|
#
|
2371
2451
|
# @!attribute [rw] revision_id
|
2452
|
+
# The unique identifier for a revision.
|
2372
2453
|
# @return [String]
|
2373
2454
|
#
|
2374
2455
|
# @see http://docs.aws.amazon.com/goto/WebAPI/dataexchange-2017-07-25/ListRevisionAssetsRequest AWS API Documentation
|
@@ -2383,6 +2464,7 @@ module Aws::DataExchange
|
|
2383
2464
|
end
|
2384
2465
|
|
2385
2466
|
# @!attribute [rw] assets
|
2467
|
+
# The asset objects listed by the request.
|
2386
2468
|
# @return [Array<Types::AssetEntry>]
|
2387
2469
|
#
|
2388
2470
|
# @!attribute [rw] next_token
|
@@ -2407,6 +2489,8 @@ module Aws::DataExchange
|
|
2407
2489
|
# }
|
2408
2490
|
#
|
2409
2491
|
# @!attribute [rw] resource_arn
|
2492
|
+
# An Amazon Resource Name (ARN) that uniquely identifies an AWS
|
2493
|
+
# resource.
|
2410
2494
|
# @return [String]
|
2411
2495
|
#
|
2412
2496
|
# @see http://docs.aws.amazon.com/goto/WebAPI/dataexchange-2017-07-25/ListTagsForResourceRequest AWS API Documentation
|
@@ -2418,6 +2502,8 @@ module Aws::DataExchange
|
|
2418
2502
|
end
|
2419
2503
|
|
2420
2504
|
# @!attribute [rw] tags
|
2505
|
+
# A label that consists of a customer-defined key and an optional
|
2506
|
+
# value.
|
2421
2507
|
# @return [Hash<String,String>]
|
2422
2508
|
#
|
2423
2509
|
# @see http://docs.aws.amazon.com/goto/WebAPI/dataexchange-2017-07-25/ListTagsForResourceResponse AWS API Documentation
|
@@ -2568,11 +2654,11 @@ module Aws::DataExchange
|
|
2568
2654
|
# @return [Types::ExportRevisionsToS3RequestDetails]
|
2569
2655
|
#
|
2570
2656
|
# @!attribute [rw] import_asset_from_signed_url
|
2571
|
-
# Details about the import from
|
2657
|
+
# Details about the import from Amazon S3 request.
|
2572
2658
|
# @return [Types::ImportAssetFromSignedUrlRequestDetails]
|
2573
2659
|
#
|
2574
2660
|
# @!attribute [rw] import_assets_from_s3
|
2575
|
-
#
|
2661
|
+
# Information about the import asset from API Gateway API request.
|
2576
2662
|
# @return [Types::ImportAssetsFromS3RequestDetails]
|
2577
2663
|
#
|
2578
2664
|
# @!attribute [rw] import_assets_from_redshift_data_shares
|
@@ -2580,7 +2666,7 @@ module Aws::DataExchange
|
|
2580
2666
|
# @return [Types::ImportAssetsFromRedshiftDataSharesRequestDetails]
|
2581
2667
|
#
|
2582
2668
|
# @!attribute [rw] import_asset_from_api_gateway_api
|
2583
|
-
#
|
2669
|
+
# Details about the import from signed URL request.
|
2584
2670
|
# @return [Types::ImportAssetFromApiGatewayApiRequestDetails]
|
2585
2671
|
#
|
2586
2672
|
# @see http://docs.aws.amazon.com/goto/WebAPI/dataexchange-2017-07-25/RequestDetails AWS API Documentation
|
@@ -2729,12 +2815,10 @@ module Aws::DataExchange
|
|
2729
2815
|
# first be finalized. Finalizing a revision tells AWS Data Exchange
|
2730
2816
|
# that your changes to the assets in the revision are complete. After
|
2731
2817
|
# it's in this read-only state, you can publish the revision to your
|
2732
|
-
# products.
|
2733
|
-
#
|
2734
|
-
#
|
2735
|
-
#
|
2736
|
-
# AWS Marketplace Catalog API action. When using the API, revisions
|
2737
|
-
# are uniquely identified by their ARN.
|
2818
|
+
# products. Finalized revisions can be published through the AWS Data
|
2819
|
+
# Exchange console or the AWS Marketplace Catalog API, using the
|
2820
|
+
# StartChangeSet AWS Marketplace Catalog API action. When using the
|
2821
|
+
# API, revisions are uniquely identified by their ARN.
|
2738
2822
|
# @return [Boolean]
|
2739
2823
|
#
|
2740
2824
|
# @!attribute [rw] id
|
@@ -2752,6 +2836,20 @@ module Aws::DataExchange
|
|
2752
2836
|
# format.
|
2753
2837
|
# @return [Time]
|
2754
2838
|
#
|
2839
|
+
# @!attribute [rw] revocation_comment
|
2840
|
+
# A required comment to inform subscribers of the reason their access
|
2841
|
+
# to the revision was revoked.
|
2842
|
+
# @return [String]
|
2843
|
+
#
|
2844
|
+
# @!attribute [rw] revoked
|
2845
|
+
# A status indicating that subscribers' access to the revision was
|
2846
|
+
# revoked.
|
2847
|
+
# @return [Boolean]
|
2848
|
+
#
|
2849
|
+
# @!attribute [rw] revoked_at
|
2850
|
+
# The date and time that the revision was revoked, in ISO 8601 format.
|
2851
|
+
# @return [Time]
|
2852
|
+
#
|
2755
2853
|
# @see http://docs.aws.amazon.com/goto/WebAPI/dataexchange-2017-07-25/RevisionEntry AWS API Documentation
|
2756
2854
|
#
|
2757
2855
|
class RevisionEntry < Struct.new(
|
@@ -2762,7 +2860,10 @@ module Aws::DataExchange
|
|
2762
2860
|
:finalized,
|
2763
2861
|
:id,
|
2764
2862
|
:source_id,
|
2765
|
-
:updated_at
|
2863
|
+
:updated_at,
|
2864
|
+
:revocation_comment,
|
2865
|
+
:revoked,
|
2866
|
+
:revoked_at)
|
2766
2867
|
SENSITIVE = []
|
2767
2868
|
include Aws::Structure
|
2768
2869
|
end
|
@@ -2788,6 +2889,113 @@ module Aws::DataExchange
|
|
2788
2889
|
include Aws::Structure
|
2789
2890
|
end
|
2790
2891
|
|
2892
|
+
# @note When making an API call, you may pass RevokeRevisionRequest
|
2893
|
+
# data as a hash:
|
2894
|
+
#
|
2895
|
+
# {
|
2896
|
+
# data_set_id: "__string", # required
|
2897
|
+
# revision_id: "__string", # required
|
2898
|
+
# revocation_comment: "__stringMin10Max512", # required
|
2899
|
+
# }
|
2900
|
+
#
|
2901
|
+
# @!attribute [rw] data_set_id
|
2902
|
+
# The unique identifier for a data set.
|
2903
|
+
# @return [String]
|
2904
|
+
#
|
2905
|
+
# @!attribute [rw] revision_id
|
2906
|
+
# The unique identifier for a revision.
|
2907
|
+
# @return [String]
|
2908
|
+
#
|
2909
|
+
# @!attribute [rw] revocation_comment
|
2910
|
+
# A required comment to inform subscribers of the reason their access
|
2911
|
+
# to the revision was revoked.
|
2912
|
+
# @return [String]
|
2913
|
+
#
|
2914
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dataexchange-2017-07-25/RevokeRevisionRequest AWS API Documentation
|
2915
|
+
#
|
2916
|
+
class RevokeRevisionRequest < Struct.new(
|
2917
|
+
:data_set_id,
|
2918
|
+
:revision_id,
|
2919
|
+
:revocation_comment)
|
2920
|
+
SENSITIVE = []
|
2921
|
+
include Aws::Structure
|
2922
|
+
end
|
2923
|
+
|
2924
|
+
# @!attribute [rw] arn
|
2925
|
+
# The ARN for the revision.
|
2926
|
+
# @return [String]
|
2927
|
+
#
|
2928
|
+
# @!attribute [rw] comment
|
2929
|
+
# An optional comment about the revision.
|
2930
|
+
# @return [String]
|
2931
|
+
#
|
2932
|
+
# @!attribute [rw] created_at
|
2933
|
+
# The date and time that the revision was created, in ISO 8601 format.
|
2934
|
+
# @return [Time]
|
2935
|
+
#
|
2936
|
+
# @!attribute [rw] data_set_id
|
2937
|
+
# The unique identifier for the data set associated with this
|
2938
|
+
# revision.
|
2939
|
+
# @return [String]
|
2940
|
+
#
|
2941
|
+
# @!attribute [rw] finalized
|
2942
|
+
# To publish a revision to a data set in a product, the revision must
|
2943
|
+
# first be finalized. Finalizing a revision tells AWS Data Exchange
|
2944
|
+
# that changes to the assets in the revision are complete. After it's
|
2945
|
+
# in this read-only state, you can publish the revision to your
|
2946
|
+
# products. Finalized revisions can be published through the AWS Data
|
2947
|
+
# Exchange console or the AWS Marketplace Catalog API, using the
|
2948
|
+
# StartChangeSet AWS Marketplace Catalog API action. When using the
|
2949
|
+
# API, revisions are uniquely identified by their ARN.
|
2950
|
+
# @return [Boolean]
|
2951
|
+
#
|
2952
|
+
# @!attribute [rw] id
|
2953
|
+
# The unique identifier for the revision.
|
2954
|
+
# @return [String]
|
2955
|
+
#
|
2956
|
+
# @!attribute [rw] source_id
|
2957
|
+
# The revision ID of the owned revision corresponding to the entitled
|
2958
|
+
# revision being viewed. This parameter is returned when a revision
|
2959
|
+
# owner is viewing the entitled copy of its owned revision.
|
2960
|
+
# @return [String]
|
2961
|
+
#
|
2962
|
+
# @!attribute [rw] updated_at
|
2963
|
+
# The date and time that the revision was last updated, in ISO 8601
|
2964
|
+
# format.
|
2965
|
+
# @return [Time]
|
2966
|
+
#
|
2967
|
+
# @!attribute [rw] revocation_comment
|
2968
|
+
# A required comment to inform subscribers of the reason their access
|
2969
|
+
# to the revision was revoked.
|
2970
|
+
# @return [String]
|
2971
|
+
#
|
2972
|
+
# @!attribute [rw] revoked
|
2973
|
+
# A status indicating that subscribers' access to the revision was
|
2974
|
+
# revoked.
|
2975
|
+
# @return [Boolean]
|
2976
|
+
#
|
2977
|
+
# @!attribute [rw] revoked_at
|
2978
|
+
# The date and time that the revision was revoked, in ISO 8601 format.
|
2979
|
+
# @return [Time]
|
2980
|
+
#
|
2981
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dataexchange-2017-07-25/RevokeRevisionResponse AWS API Documentation
|
2982
|
+
#
|
2983
|
+
class RevokeRevisionResponse < Struct.new(
|
2984
|
+
:arn,
|
2985
|
+
:comment,
|
2986
|
+
:created_at,
|
2987
|
+
:data_set_id,
|
2988
|
+
:finalized,
|
2989
|
+
:id,
|
2990
|
+
:source_id,
|
2991
|
+
:updated_at,
|
2992
|
+
:revocation_comment,
|
2993
|
+
:revoked,
|
2994
|
+
:revoked_at)
|
2995
|
+
SENSITIVE = []
|
2996
|
+
include Aws::Structure
|
2997
|
+
end
|
2998
|
+
|
2791
2999
|
# The S3 object that is the asset.
|
2792
3000
|
#
|
2793
3001
|
# @!attribute [rw] size
|
@@ -2821,27 +3029,42 @@ module Aws::DataExchange
|
|
2821
3029
|
# }
|
2822
3030
|
#
|
2823
3031
|
# @!attribute [rw] body
|
3032
|
+
# The request body.
|
2824
3033
|
# @return [String]
|
2825
3034
|
#
|
2826
3035
|
# @!attribute [rw] query_string_parameters
|
3036
|
+
# Attach query string parameters to the end of the URI (for example,
|
3037
|
+
# /v1/examplePath?exampleParam=exampleValue).
|
2827
3038
|
# @return [Hash<String,String>]
|
2828
3039
|
#
|
2829
3040
|
# @!attribute [rw] asset_id
|
3041
|
+
# Asset ID value for the API request.
|
2830
3042
|
# @return [String]
|
2831
3043
|
#
|
2832
3044
|
# @!attribute [rw] data_set_id
|
3045
|
+
# Data set ID value for the API request.
|
2833
3046
|
# @return [String]
|
2834
3047
|
#
|
2835
3048
|
# @!attribute [rw] request_headers
|
3049
|
+
# Any header value prefixed with x-amzn-dataexchange-header- will have
|
3050
|
+
# that stripped before sending the Asset API request. Use this when
|
3051
|
+
# you want to override a header that AWS Data Exchange uses.
|
3052
|
+
# Alternatively, you can use the header without a prefix to the HTTP
|
3053
|
+
# request.
|
2836
3054
|
# @return [Hash<String,String>]
|
2837
3055
|
#
|
2838
3056
|
# @!attribute [rw] method
|
3057
|
+
# HTTP method value for the API request. Alternatively, you can use
|
3058
|
+
# the appropriate verb in your request.
|
2839
3059
|
# @return [String]
|
2840
3060
|
#
|
2841
3061
|
# @!attribute [rw] path
|
3062
|
+
# URI path value for the API request. Alternatively, you can set the
|
3063
|
+
# URI path directly by invoking /v1/\\\{pathValue\\}.
|
2842
3064
|
# @return [String]
|
2843
3065
|
#
|
2844
3066
|
# @!attribute [rw] revision_id
|
3067
|
+
# Revision ID value for the API request.
|
2845
3068
|
# @return [String]
|
2846
3069
|
#
|
2847
3070
|
# @see http://docs.aws.amazon.com/goto/WebAPI/dataexchange-2017-07-25/SendApiAssetRequest AWS API Documentation
|
@@ -2859,8 +3082,6 @@ module Aws::DataExchange
|
|
2859
3082
|
include Aws::Structure
|
2860
3083
|
end
|
2861
3084
|
|
2862
|
-
# The details of the send API asset response.
|
2863
|
-
#
|
2864
3085
|
# @!attribute [rw] body
|
2865
3086
|
# The response body from the underlying API tracked by the API asset.
|
2866
3087
|
# @return [String]
|
@@ -2882,12 +3103,15 @@ module Aws::DataExchange
|
|
2882
3103
|
# The request has exceeded the quotas imposed by the service.
|
2883
3104
|
#
|
2884
3105
|
# @!attribute [rw] limit_name
|
3106
|
+
# The name of the limit that was reached.
|
2885
3107
|
# @return [String]
|
2886
3108
|
#
|
2887
3109
|
# @!attribute [rw] limit_value
|
3110
|
+
# The value of the exceeded limit.
|
2888
3111
|
# @return [Float]
|
2889
3112
|
#
|
2890
3113
|
# @!attribute [rw] message
|
3114
|
+
# The request has exceeded the quotas imposed by the service.
|
2891
3115
|
# @return [String]
|
2892
3116
|
#
|
2893
3117
|
# @see http://docs.aws.amazon.com/goto/WebAPI/dataexchange-2017-07-25/ServiceLimitExceededException AWS API Documentation
|
@@ -2908,6 +3132,7 @@ module Aws::DataExchange
|
|
2908
3132
|
# }
|
2909
3133
|
#
|
2910
3134
|
# @!attribute [rw] job_id
|
3135
|
+
# The unique identifier for a job.
|
2911
3136
|
# @return [String]
|
2912
3137
|
#
|
2913
3138
|
# @see http://docs.aws.amazon.com/goto/WebAPI/dataexchange-2017-07-25/StartJobRequest AWS API Documentation
|
@@ -2933,9 +3158,13 @@ module Aws::DataExchange
|
|
2933
3158
|
# }
|
2934
3159
|
#
|
2935
3160
|
# @!attribute [rw] resource_arn
|
3161
|
+
# An Amazon Resource Name (ARN) that uniquely identifies an AWS
|
3162
|
+
# resource.
|
2936
3163
|
# @return [String]
|
2937
3164
|
#
|
2938
3165
|
# @!attribute [rw] tags
|
3166
|
+
# A label that consists of a customer-defined key and an optional
|
3167
|
+
# value.
|
2939
3168
|
# @return [Hash<String,String>]
|
2940
3169
|
#
|
2941
3170
|
# @see http://docs.aws.amazon.com/goto/WebAPI/dataexchange-2017-07-25/TagResourceRequest AWS API Documentation
|
@@ -2970,9 +3199,12 @@ module Aws::DataExchange
|
|
2970
3199
|
# }
|
2971
3200
|
#
|
2972
3201
|
# @!attribute [rw] resource_arn
|
3202
|
+
# An Amazon Resource Name (ARN) that uniquely identifies an AWS
|
3203
|
+
# resource.
|
2973
3204
|
# @return [String]
|
2974
3205
|
#
|
2975
3206
|
# @!attribute [rw] tag_keys
|
3207
|
+
# The key tags.
|
2976
3208
|
# @return [Array<String>]
|
2977
3209
|
#
|
2978
3210
|
# @see http://docs.aws.amazon.com/goto/WebAPI/dataexchange-2017-07-25/UntagResourceRequest AWS API Documentation
|
@@ -2984,8 +3216,6 @@ module Aws::DataExchange
|
|
2984
3216
|
include Aws::Structure
|
2985
3217
|
end
|
2986
3218
|
|
2987
|
-
# The request to update an asset.
|
2988
|
-
#
|
2989
3219
|
# @note When making an API call, you may pass UpdateAssetRequest
|
2990
3220
|
# data as a hash:
|
2991
3221
|
#
|
@@ -2997,9 +3227,11 @@ module Aws::DataExchange
|
|
2997
3227
|
# }
|
2998
3228
|
#
|
2999
3229
|
# @!attribute [rw] asset_id
|
3230
|
+
# The unique identifier for an asset.
|
3000
3231
|
# @return [String]
|
3001
3232
|
#
|
3002
3233
|
# @!attribute [rw] data_set_id
|
3234
|
+
# The unique identifier for a data set.
|
3003
3235
|
# @return [String]
|
3004
3236
|
#
|
3005
3237
|
# @!attribute [rw] name
|
@@ -3012,6 +3244,7 @@ module Aws::DataExchange
|
|
3012
3244
|
# @return [String]
|
3013
3245
|
#
|
3014
3246
|
# @!attribute [rw] revision_id
|
3247
|
+
# The unique identifier for a revision.
|
3015
3248
|
# @return [String]
|
3016
3249
|
#
|
3017
3250
|
# @see http://docs.aws.amazon.com/goto/WebAPI/dataexchange-2017-07-25/UpdateAssetRequest AWS API Documentation
|
@@ -3026,8 +3259,7 @@ module Aws::DataExchange
|
|
3026
3259
|
end
|
3027
3260
|
|
3028
3261
|
# @!attribute [rw] arn
|
3029
|
-
#
|
3030
|
-
# resource.
|
3262
|
+
# The ARN for the asset.
|
3031
3263
|
# @return [String]
|
3032
3264
|
#
|
3033
3265
|
# @!attribute [rw] asset_details
|
@@ -3039,16 +3271,15 @@ module Aws::DataExchange
|
|
3039
3271
|
# @return [String]
|
3040
3272
|
#
|
3041
3273
|
# @!attribute [rw] created_at
|
3042
|
-
#
|
3043
|
-
# format.
|
3274
|
+
# The date and time that the asset was created, in ISO 8601 format.
|
3044
3275
|
# @return [Time]
|
3045
3276
|
#
|
3046
3277
|
# @!attribute [rw] data_set_id
|
3047
|
-
#
|
3278
|
+
# The unique identifier for the data set associated with this asset.
|
3048
3279
|
# @return [String]
|
3049
3280
|
#
|
3050
3281
|
# @!attribute [rw] id
|
3051
|
-
#
|
3282
|
+
# The unique identifier for the asset.
|
3052
3283
|
# @return [String]
|
3053
3284
|
#
|
3054
3285
|
# @!attribute [rw] name
|
@@ -3061,15 +3292,17 @@ module Aws::DataExchange
|
|
3061
3292
|
# @return [String]
|
3062
3293
|
#
|
3063
3294
|
# @!attribute [rw] revision_id
|
3064
|
-
#
|
3295
|
+
# The unique identifier for the revision associated with this asset.
|
3065
3296
|
# @return [String]
|
3066
3297
|
#
|
3067
3298
|
# @!attribute [rw] source_id
|
3068
|
-
#
|
3299
|
+
# The asset ID of the owned asset corresponding to the entitled asset
|
3300
|
+
# being viewed. This parameter is returned when an asset owner is
|
3301
|
+
# viewing the entitled copy of its owned asset.
|
3069
3302
|
# @return [String]
|
3070
3303
|
#
|
3071
3304
|
# @!attribute [rw] updated_at
|
3072
|
-
#
|
3305
|
+
# The date and time that the asset was last updated, in ISO 8601
|
3073
3306
|
# format.
|
3074
3307
|
# @return [Time]
|
3075
3308
|
#
|
@@ -3090,8 +3323,6 @@ module Aws::DataExchange
|
|
3090
3323
|
include Aws::Structure
|
3091
3324
|
end
|
3092
3325
|
|
3093
|
-
# The request to update a data set.
|
3094
|
-
#
|
3095
3326
|
# @note When making an API call, you may pass UpdateDataSetRequest
|
3096
3327
|
# data as a hash:
|
3097
3328
|
#
|
@@ -3102,6 +3333,7 @@ module Aws::DataExchange
|
|
3102
3333
|
# }
|
3103
3334
|
#
|
3104
3335
|
# @!attribute [rw] data_set_id
|
3336
|
+
# The unique identifier for a data set.
|
3105
3337
|
# @return [String]
|
3106
3338
|
#
|
3107
3339
|
# @!attribute [rw] description
|
@@ -3123,8 +3355,7 @@ module Aws::DataExchange
|
|
3123
3355
|
end
|
3124
3356
|
|
3125
3357
|
# @!attribute [rw] arn
|
3126
|
-
#
|
3127
|
-
# resource.
|
3358
|
+
# The ARN for the data set.
|
3128
3359
|
# @return [String]
|
3129
3360
|
#
|
3130
3361
|
# @!attribute [rw] asset_type
|
@@ -3132,40 +3363,39 @@ module Aws::DataExchange
|
|
3132
3363
|
# @return [String]
|
3133
3364
|
#
|
3134
3365
|
# @!attribute [rw] created_at
|
3135
|
-
#
|
3136
|
-
# format.
|
3366
|
+
# The date and time that the data set was created, in ISO 8601 format.
|
3137
3367
|
# @return [Time]
|
3138
3368
|
#
|
3139
3369
|
# @!attribute [rw] description
|
3140
|
-
#
|
3370
|
+
# The description for the data set.
|
3141
3371
|
# @return [String]
|
3142
3372
|
#
|
3143
3373
|
# @!attribute [rw] id
|
3144
|
-
#
|
3374
|
+
# The unique identifier for the data set.
|
3145
3375
|
# @return [String]
|
3146
3376
|
#
|
3147
3377
|
# @!attribute [rw] name
|
3148
|
-
# The name of the
|
3378
|
+
# The name of the data set.
|
3149
3379
|
# @return [String]
|
3150
3380
|
#
|
3151
3381
|
# @!attribute [rw] origin
|
3152
3382
|
# A property that defines the data set as OWNED by the account (for
|
3153
|
-
# providers) or ENTITLED to the account (for subscribers).
|
3154
|
-
# owned data set is published in a product, AWS Data Exchange creates
|
3155
|
-
# a copy of the data set. Subscribers can access that copy of the data
|
3156
|
-
# set as an entitled data set.
|
3383
|
+
# providers) or ENTITLED to the account (for subscribers).
|
3157
3384
|
# @return [String]
|
3158
3385
|
#
|
3159
3386
|
# @!attribute [rw] origin_details
|
3160
|
-
#
|
3387
|
+
# If the origin of this data set is ENTITLED, includes the details for
|
3388
|
+
# the product on AWS Marketplace.
|
3161
3389
|
# @return [Types::OriginDetails]
|
3162
3390
|
#
|
3163
3391
|
# @!attribute [rw] source_id
|
3164
|
-
#
|
3392
|
+
# The data set ID of the owned data set corresponding to the entitled
|
3393
|
+
# data set being viewed. This parameter is returned when a data set
|
3394
|
+
# owner is viewing the entitled copy of its owned data set.
|
3165
3395
|
# @return [String]
|
3166
3396
|
#
|
3167
3397
|
# @!attribute [rw] updated_at
|
3168
|
-
#
|
3398
|
+
# The date and time that the data set was last updated, in ISO 8601
|
3169
3399
|
# format.
|
3170
3400
|
# @return [Time]
|
3171
3401
|
#
|
@@ -3186,8 +3416,6 @@ module Aws::DataExchange
|
|
3186
3416
|
include Aws::Structure
|
3187
3417
|
end
|
3188
3418
|
|
3189
|
-
# The request to update an event action.
|
3190
|
-
#
|
3191
3419
|
# @note When making an API call, you may pass UpdateEventActionRequest
|
3192
3420
|
# data as a hash:
|
3193
3421
|
#
|
@@ -3212,6 +3440,7 @@ module Aws::DataExchange
|
|
3212
3440
|
# @return [Types::Action]
|
3213
3441
|
#
|
3214
3442
|
# @!attribute [rw] event_action_id
|
3443
|
+
# The unique identifier for the event action.
|
3215
3444
|
# @return [String]
|
3216
3445
|
#
|
3217
3446
|
# @see http://docs.aws.amazon.com/goto/WebAPI/dataexchange-2017-07-25/UpdateEventActionRequest AWS API Documentation
|
@@ -3228,12 +3457,11 @@ module Aws::DataExchange
|
|
3228
3457
|
# @return [Types::Action]
|
3229
3458
|
#
|
3230
3459
|
# @!attribute [rw] arn
|
3231
|
-
#
|
3232
|
-
# resource.
|
3460
|
+
# The ARN for the event action.
|
3233
3461
|
# @return [String]
|
3234
3462
|
#
|
3235
3463
|
# @!attribute [rw] created_at
|
3236
|
-
#
|
3464
|
+
# The date and time that the event action was created, in ISO 8601
|
3237
3465
|
# format.
|
3238
3466
|
# @return [Time]
|
3239
3467
|
#
|
@@ -3242,12 +3470,12 @@ module Aws::DataExchange
|
|
3242
3470
|
# @return [Types::Event]
|
3243
3471
|
#
|
3244
3472
|
# @!attribute [rw] id
|
3245
|
-
#
|
3473
|
+
# The unique identifier for the event action.
|
3246
3474
|
# @return [String]
|
3247
3475
|
#
|
3248
3476
|
# @!attribute [rw] updated_at
|
3249
|
-
#
|
3250
|
-
# format.
|
3477
|
+
# The date and time that the event action was last updated, in ISO
|
3478
|
+
# 8601 format.
|
3251
3479
|
# @return [Time]
|
3252
3480
|
#
|
3253
3481
|
# @see http://docs.aws.amazon.com/goto/WebAPI/dataexchange-2017-07-25/UpdateEventActionResponse AWS API Documentation
|
@@ -3263,8 +3491,6 @@ module Aws::DataExchange
|
|
3263
3491
|
include Aws::Structure
|
3264
3492
|
end
|
3265
3493
|
|
3266
|
-
# The request to update a revision.
|
3267
|
-
#
|
3268
3494
|
# @note When making an API call, you may pass UpdateRevisionRequest
|
3269
3495
|
# data as a hash:
|
3270
3496
|
#
|
@@ -3280,6 +3506,7 @@ module Aws::DataExchange
|
|
3280
3506
|
# @return [String]
|
3281
3507
|
#
|
3282
3508
|
# @!attribute [rw] data_set_id
|
3509
|
+
# The unique identifier for a data set.
|
3283
3510
|
# @return [String]
|
3284
3511
|
#
|
3285
3512
|
# @!attribute [rw] finalized
|
@@ -3289,6 +3516,7 @@ module Aws::DataExchange
|
|
3289
3516
|
# @return [Boolean]
|
3290
3517
|
#
|
3291
3518
|
# @!attribute [rw] revision_id
|
3519
|
+
# The unique identifier for a revision.
|
3292
3520
|
# @return [String]
|
3293
3521
|
#
|
3294
3522
|
# @see http://docs.aws.amazon.com/goto/WebAPI/dataexchange-2017-07-25/UpdateRevisionRequest AWS API Documentation
|
@@ -3303,38 +3531,62 @@ module Aws::DataExchange
|
|
3303
3531
|
end
|
3304
3532
|
|
3305
3533
|
# @!attribute [rw] arn
|
3306
|
-
#
|
3307
|
-
# resource.
|
3534
|
+
# The ARN for the revision.
|
3308
3535
|
# @return [String]
|
3309
3536
|
#
|
3310
3537
|
# @!attribute [rw] comment
|
3538
|
+
# An optional comment about the revision.
|
3311
3539
|
# @return [String]
|
3312
3540
|
#
|
3313
3541
|
# @!attribute [rw] created_at
|
3314
|
-
#
|
3315
|
-
# format.
|
3542
|
+
# The date and time that the revision was created, in ISO 8601 format.
|
3316
3543
|
# @return [Time]
|
3317
3544
|
#
|
3318
3545
|
# @!attribute [rw] data_set_id
|
3319
|
-
#
|
3546
|
+
# The unique identifier for the data set associated with this
|
3547
|
+
# revision.
|
3320
3548
|
# @return [String]
|
3321
3549
|
#
|
3322
3550
|
# @!attribute [rw] finalized
|
3551
|
+
# To publish a revision to a data set in a product, the revision must
|
3552
|
+
# first be finalized. Finalizing a revision tells AWS Data Exchange
|
3553
|
+
# that changes to the assets in the revision are complete. After it's
|
3554
|
+
# in this read-only state, you can publish the revision to your
|
3555
|
+
# products. Finalized revisions can be published through the AWS Data
|
3556
|
+
# Exchange console or the AWS Marketplace Catalog API, using the
|
3557
|
+
# StartChangeSet AWS Marketplace Catalog API action. When using the
|
3558
|
+
# API, revisions are uniquely identified by their ARN.
|
3323
3559
|
# @return [Boolean]
|
3324
3560
|
#
|
3325
3561
|
# @!attribute [rw] id
|
3326
|
-
#
|
3562
|
+
# The unique identifier for the revision.
|
3327
3563
|
# @return [String]
|
3328
3564
|
#
|
3329
3565
|
# @!attribute [rw] source_id
|
3330
|
-
#
|
3566
|
+
# The revision ID of the owned revision corresponding to the entitled
|
3567
|
+
# revision being viewed. This parameter is returned when a revision
|
3568
|
+
# owner is viewing the entitled copy of its owned revision.
|
3331
3569
|
# @return [String]
|
3332
3570
|
#
|
3333
3571
|
# @!attribute [rw] updated_at
|
3334
|
-
#
|
3572
|
+
# The date and time that the revision was last updated, in ISO 8601
|
3335
3573
|
# format.
|
3336
3574
|
# @return [Time]
|
3337
3575
|
#
|
3576
|
+
# @!attribute [rw] revocation_comment
|
3577
|
+
# A required comment to inform subscribers of the reason their access
|
3578
|
+
# to the revision was revoked.
|
3579
|
+
# @return [String]
|
3580
|
+
#
|
3581
|
+
# @!attribute [rw] revoked
|
3582
|
+
# A status indicating that subscribers' access to the revision was
|
3583
|
+
# revoked.
|
3584
|
+
# @return [Boolean]
|
3585
|
+
#
|
3586
|
+
# @!attribute [rw] revoked_at
|
3587
|
+
# The date and time that the revision was revoked, in ISO 8601 format.
|
3588
|
+
# @return [Time]
|
3589
|
+
#
|
3338
3590
|
# @see http://docs.aws.amazon.com/goto/WebAPI/dataexchange-2017-07-25/UpdateRevisionResponse AWS API Documentation
|
3339
3591
|
#
|
3340
3592
|
class UpdateRevisionResponse < Struct.new(
|
@@ -3345,7 +3597,10 @@ module Aws::DataExchange
|
|
3345
3597
|
:finalized,
|
3346
3598
|
:id,
|
3347
3599
|
:source_id,
|
3348
|
-
:updated_at
|
3600
|
+
:updated_at,
|
3601
|
+
:revocation_comment,
|
3602
|
+
:revoked,
|
3603
|
+
:revoked_at)
|
3349
3604
|
SENSITIVE = []
|
3350
3605
|
include Aws::Structure
|
3351
3606
|
end
|
@@ -3358,7 +3613,7 @@ module Aws::DataExchange
|
|
3358
3613
|
# @return [String]
|
3359
3614
|
#
|
3360
3615
|
# @!attribute [rw] exception_cause
|
3361
|
-
# The
|
3616
|
+
# The unique identifier for the resource that couldn't be found.
|
3362
3617
|
# @return [String]
|
3363
3618
|
#
|
3364
3619
|
# @see http://docs.aws.amazon.com/goto/WebAPI/dataexchange-2017-07-25/ValidationException AWS API Documentation
|