aws-sdk-dataexchange 1.24.0 → 1.27.0
Sign up to get free protection for your applications and to get access to all the features.
- 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
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 961acffaf103316b8e776a038aa326ce07d1cae76a95b1f97e6980564b4dd653
|
4
|
+
data.tar.gz: 79a320616584e305eb28d0682da476186d35172da66c6e9c97a5349dd4710d1c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6ca03f91d132da0f28ed18f649b59988f7ac0b0a8e7fcb0068ebc80cc0cde7995c778dbd3d104b349e065a1fd6d83e3573727a1a4b700a8f300cc410cdb13caa
|
7
|
+
data.tar.gz: c8eb5ca28408331155c498b7f3ecc6fbc3a0c6a197b9c941fb28c6964e2e8721f13f9175c23701eecc7bc3f663d1b159f484c1a73880972db9f0999ec62ad999
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,21 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.27.0 (2022-09-07)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Documentation updates for AWS Data Exchange.
|
8
|
+
|
9
|
+
1.26.0 (2022-03-15)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - This feature enables data providers to use the RevokeRevision operation to revoke subscriber access to a given revision. Subscribers are unable to interact with assets within a revoked revision.
|
13
|
+
|
14
|
+
1.25.0 (2022-02-24)
|
15
|
+
------------------
|
16
|
+
|
17
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
18
|
+
|
4
19
|
1.24.0 (2022-02-03)
|
5
20
|
------------------
|
6
21
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.27.0
|
@@ -27,6 +27,7 @@ require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
|
|
27
27
|
require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
|
28
28
|
require 'aws-sdk-core/plugins/transfer_encoding.rb'
|
29
29
|
require 'aws-sdk-core/plugins/http_checksum.rb'
|
30
|
+
require 'aws-sdk-core/plugins/checksum_algorithm.rb'
|
30
31
|
require 'aws-sdk-core/plugins/defaults_mode.rb'
|
31
32
|
require 'aws-sdk-core/plugins/recursion_detection.rb'
|
32
33
|
require 'aws-sdk-core/plugins/signature_v4.rb'
|
@@ -75,6 +76,7 @@ module Aws::DataExchange
|
|
75
76
|
add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
|
76
77
|
add_plugin(Aws::Plugins::TransferEncoding)
|
77
78
|
add_plugin(Aws::Plugins::HttpChecksum)
|
79
|
+
add_plugin(Aws::Plugins::ChecksumAlgorithm)
|
78
80
|
add_plugin(Aws::Plugins::DefaultsMode)
|
79
81
|
add_plugin(Aws::Plugins::RecursionDetection)
|
80
82
|
add_plugin(Aws::Plugins::SignatureV4)
|
@@ -353,6 +355,7 @@ module Aws::DataExchange
|
|
353
355
|
# in the WAITING state.
|
354
356
|
#
|
355
357
|
# @option params [required, String] :job_id
|
358
|
+
# The unique identifier for a job.
|
356
359
|
#
|
357
360
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
358
361
|
#
|
@@ -678,6 +681,7 @@ module Aws::DataExchange
|
|
678
681
|
# An optional comment about the revision.
|
679
682
|
#
|
680
683
|
# @option params [required, String] :data_set_id
|
684
|
+
# The unique identifier for a data set.
|
681
685
|
#
|
682
686
|
# @option params [Hash<String,String>] :tags
|
683
687
|
# A revision tag is an optional label that you can assign to a revision
|
@@ -697,6 +701,9 @@ module Aws::DataExchange
|
|
697
701
|
# * {Types::CreateRevisionResponse#source_id #source_id} => String
|
698
702
|
# * {Types::CreateRevisionResponse#tags #tags} => Hash<String,String>
|
699
703
|
# * {Types::CreateRevisionResponse#updated_at #updated_at} => Time
|
704
|
+
# * {Types::CreateRevisionResponse#revocation_comment #revocation_comment} => String
|
705
|
+
# * {Types::CreateRevisionResponse#revoked #revoked} => Boolean
|
706
|
+
# * {Types::CreateRevisionResponse#revoked_at #revoked_at} => Time
|
700
707
|
#
|
701
708
|
# @example Request syntax with placeholder values
|
702
709
|
#
|
@@ -720,6 +727,9 @@ module Aws::DataExchange
|
|
720
727
|
# resp.tags #=> Hash
|
721
728
|
# resp.tags["__string"] #=> String
|
722
729
|
# resp.updated_at #=> Time
|
730
|
+
# resp.revocation_comment #=> String
|
731
|
+
# resp.revoked #=> Boolean
|
732
|
+
# resp.revoked_at #=> Time
|
723
733
|
#
|
724
734
|
# @see http://docs.aws.amazon.com/goto/WebAPI/dataexchange-2017-07-25/CreateRevision AWS API Documentation
|
725
735
|
#
|
@@ -733,10 +743,13 @@ module Aws::DataExchange
|
|
733
743
|
# This operation deletes an asset.
|
734
744
|
#
|
735
745
|
# @option params [required, String] :asset_id
|
746
|
+
# The unique identifier for an asset.
|
736
747
|
#
|
737
748
|
# @option params [required, String] :data_set_id
|
749
|
+
# The unique identifier for a data set.
|
738
750
|
#
|
739
751
|
# @option params [required, String] :revision_id
|
752
|
+
# The unique identifier for a revision.
|
740
753
|
#
|
741
754
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
742
755
|
#
|
@@ -760,6 +773,7 @@ module Aws::DataExchange
|
|
760
773
|
# This operation deletes a data set.
|
761
774
|
#
|
762
775
|
# @option params [required, String] :data_set_id
|
776
|
+
# The unique identifier for a data set.
|
763
777
|
#
|
764
778
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
765
779
|
#
|
@@ -781,6 +795,7 @@ module Aws::DataExchange
|
|
781
795
|
# This operation deletes the event action.
|
782
796
|
#
|
783
797
|
# @option params [required, String] :event_action_id
|
798
|
+
# The unique identifier for the event action.
|
784
799
|
#
|
785
800
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
786
801
|
#
|
@@ -802,8 +817,10 @@ module Aws::DataExchange
|
|
802
817
|
# This operation deletes a revision.
|
803
818
|
#
|
804
819
|
# @option params [required, String] :data_set_id
|
820
|
+
# The unique identifier for a data set.
|
805
821
|
#
|
806
822
|
# @option params [required, String] :revision_id
|
823
|
+
# The unique identifier for a revision.
|
807
824
|
#
|
808
825
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
809
826
|
#
|
@@ -826,10 +843,13 @@ module Aws::DataExchange
|
|
826
843
|
# This operation returns information about an asset.
|
827
844
|
#
|
828
845
|
# @option params [required, String] :asset_id
|
846
|
+
# The unique identifier for an asset.
|
829
847
|
#
|
830
848
|
# @option params [required, String] :data_set_id
|
849
|
+
# The unique identifier for a data set.
|
831
850
|
#
|
832
851
|
# @option params [required, String] :revision_id
|
852
|
+
# The unique identifier for a revision.
|
833
853
|
#
|
834
854
|
# @return [Types::GetAssetResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
835
855
|
#
|
@@ -887,6 +907,7 @@ module Aws::DataExchange
|
|
887
907
|
# This operation returns information about a data set.
|
888
908
|
#
|
889
909
|
# @option params [required, String] :data_set_id
|
910
|
+
# The unique identifier for a data set.
|
890
911
|
#
|
891
912
|
# @return [Types::GetDataSetResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
892
913
|
#
|
@@ -935,6 +956,7 @@ module Aws::DataExchange
|
|
935
956
|
# This operation retrieves information about an event action.
|
936
957
|
#
|
937
958
|
# @option params [required, String] :event_action_id
|
959
|
+
# The unique identifier for the event action.
|
938
960
|
#
|
939
961
|
# @return [Types::GetEventActionResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
940
962
|
#
|
@@ -975,6 +997,7 @@ module Aws::DataExchange
|
|
975
997
|
# This operation returns information about a job.
|
976
998
|
#
|
977
999
|
# @option params [required, String] :job_id
|
1000
|
+
# The unique identifier for a job.
|
978
1001
|
#
|
979
1002
|
# @return [Types::GetJobResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
980
1003
|
#
|
@@ -1072,8 +1095,10 @@ module Aws::DataExchange
|
|
1072
1095
|
# This operation returns information about a revision.
|
1073
1096
|
#
|
1074
1097
|
# @option params [required, String] :data_set_id
|
1098
|
+
# The unique identifier for a data set.
|
1075
1099
|
#
|
1076
1100
|
# @option params [required, String] :revision_id
|
1101
|
+
# The unique identifier for a revision.
|
1077
1102
|
#
|
1078
1103
|
# @return [Types::GetRevisionResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1079
1104
|
#
|
@@ -1086,6 +1111,9 @@ module Aws::DataExchange
|
|
1086
1111
|
# * {Types::GetRevisionResponse#source_id #source_id} => String
|
1087
1112
|
# * {Types::GetRevisionResponse#tags #tags} => Hash<String,String>
|
1088
1113
|
# * {Types::GetRevisionResponse#updated_at #updated_at} => Time
|
1114
|
+
# * {Types::GetRevisionResponse#revocation_comment #revocation_comment} => String
|
1115
|
+
# * {Types::GetRevisionResponse#revoked #revoked} => Boolean
|
1116
|
+
# * {Types::GetRevisionResponse#revoked_at #revoked_at} => Time
|
1089
1117
|
#
|
1090
1118
|
# @example Request syntax with placeholder values
|
1091
1119
|
#
|
@@ -1106,6 +1134,9 @@ module Aws::DataExchange
|
|
1106
1134
|
# resp.tags #=> Hash
|
1107
1135
|
# resp.tags["__string"] #=> String
|
1108
1136
|
# resp.updated_at #=> Time
|
1137
|
+
# resp.revocation_comment #=> String
|
1138
|
+
# resp.revoked #=> Boolean
|
1139
|
+
# resp.revoked_at #=> Time
|
1109
1140
|
#
|
1110
1141
|
# @see http://docs.aws.amazon.com/goto/WebAPI/dataexchange-2017-07-25/GetRevision AWS API Documentation
|
1111
1142
|
#
|
@@ -1120,10 +1151,14 @@ module Aws::DataExchange
|
|
1120
1151
|
# descending order.
|
1121
1152
|
#
|
1122
1153
|
# @option params [required, String] :data_set_id
|
1154
|
+
# The unique identifier for a data set.
|
1123
1155
|
#
|
1124
1156
|
# @option params [Integer] :max_results
|
1157
|
+
# The maximum number of results returned by a single call.
|
1125
1158
|
#
|
1126
1159
|
# @option params [String] :next_token
|
1160
|
+
# The token value retrieved from a previous call to access the next page
|
1161
|
+
# of results.
|
1127
1162
|
#
|
1128
1163
|
# @return [Types::ListDataSetRevisionsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1129
1164
|
#
|
@@ -1152,6 +1187,9 @@ module Aws::DataExchange
|
|
1152
1187
|
# resp.revisions[0].id #=> String
|
1153
1188
|
# resp.revisions[0].source_id #=> String
|
1154
1189
|
# resp.revisions[0].updated_at #=> Time
|
1190
|
+
# resp.revisions[0].revocation_comment #=> String
|
1191
|
+
# resp.revisions[0].revoked #=> Boolean
|
1192
|
+
# resp.revisions[0].revoked_at #=> Time
|
1155
1193
|
#
|
1156
1194
|
# @see http://docs.aws.amazon.com/goto/WebAPI/dataexchange-2017-07-25/ListDataSetRevisions AWS API Documentation
|
1157
1195
|
#
|
@@ -1168,10 +1206,15 @@ module Aws::DataExchange
|
|
1168
1206
|
# ignored.
|
1169
1207
|
#
|
1170
1208
|
# @option params [Integer] :max_results
|
1209
|
+
# The maximum number of results returned by a single call.
|
1171
1210
|
#
|
1172
1211
|
# @option params [String] :next_token
|
1212
|
+
# The token value retrieved from a previous call to access the next page
|
1213
|
+
# of results.
|
1173
1214
|
#
|
1174
1215
|
# @option params [String] :origin
|
1216
|
+
# A property that defines the data set as OWNED by the account (for
|
1217
|
+
# providers) or ENTITLED to the account (for subscribers).
|
1175
1218
|
#
|
1176
1219
|
# @return [Types::ListDataSetsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1177
1220
|
#
|
@@ -1215,10 +1258,14 @@ module Aws::DataExchange
|
|
1215
1258
|
# This operation lists your event actions.
|
1216
1259
|
#
|
1217
1260
|
# @option params [String] :event_source_id
|
1261
|
+
# The unique identifier for the event source.
|
1218
1262
|
#
|
1219
1263
|
# @option params [Integer] :max_results
|
1264
|
+
# The maximum number of results returned by a single call.
|
1220
1265
|
#
|
1221
1266
|
# @option params [String] :next_token
|
1267
|
+
# The token value retrieved from a previous call to access the next page
|
1268
|
+
# of results.
|
1222
1269
|
#
|
1223
1270
|
# @return [Types::ListEventActionsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1224
1271
|
#
|
@@ -1262,12 +1309,17 @@ module Aws::DataExchange
|
|
1262
1309
|
# order.
|
1263
1310
|
#
|
1264
1311
|
# @option params [String] :data_set_id
|
1312
|
+
# The unique identifier for a data set.
|
1265
1313
|
#
|
1266
1314
|
# @option params [Integer] :max_results
|
1315
|
+
# The maximum number of results returned by a single call.
|
1267
1316
|
#
|
1268
1317
|
# @option params [String] :next_token
|
1318
|
+
# The token value retrieved from a previous call to access the next page
|
1319
|
+
# of results.
|
1269
1320
|
#
|
1270
1321
|
# @option params [String] :revision_id
|
1322
|
+
# The unique identifier for a revision.
|
1271
1323
|
#
|
1272
1324
|
# @return [Types::ListJobsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1273
1325
|
#
|
@@ -1367,12 +1419,17 @@ module Aws::DataExchange
|
|
1367
1419
|
# descending order.
|
1368
1420
|
#
|
1369
1421
|
# @option params [required, String] :data_set_id
|
1422
|
+
# The unique identifier for a data set.
|
1370
1423
|
#
|
1371
1424
|
# @option params [Integer] :max_results
|
1425
|
+
# The maximum number of results returned by a single call.
|
1372
1426
|
#
|
1373
1427
|
# @option params [String] :next_token
|
1428
|
+
# The token value retrieved from a previous call to access the next page
|
1429
|
+
# of results.
|
1374
1430
|
#
|
1375
1431
|
# @option params [required, String] :revision_id
|
1432
|
+
# The unique identifier for a revision.
|
1376
1433
|
#
|
1377
1434
|
# @return [Types::ListRevisionAssetsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1378
1435
|
#
|
@@ -1427,6 +1484,8 @@ module Aws::DataExchange
|
|
1427
1484
|
# This operation lists the tags on the resource.
|
1428
1485
|
#
|
1429
1486
|
# @option params [required, String] :resource_arn
|
1487
|
+
# An Amazon Resource Name (ARN) that uniquely identifies an AWS
|
1488
|
+
# resource.
|
1430
1489
|
#
|
1431
1490
|
# @return [Types::ListTagsForResourceResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1432
1491
|
#
|
@@ -1452,24 +1511,95 @@ module Aws::DataExchange
|
|
1452
1511
|
req.send_request(options)
|
1453
1512
|
end
|
1454
1513
|
|
1514
|
+
# This operation revokes subscribers' access to a revision.
|
1515
|
+
#
|
1516
|
+
# @option params [required, String] :data_set_id
|
1517
|
+
# The unique identifier for a data set.
|
1518
|
+
#
|
1519
|
+
# @option params [required, String] :revision_id
|
1520
|
+
# The unique identifier for a revision.
|
1521
|
+
#
|
1522
|
+
# @option params [required, String] :revocation_comment
|
1523
|
+
# A required comment to inform subscribers of the reason their access to
|
1524
|
+
# the revision was revoked.
|
1525
|
+
#
|
1526
|
+
# @return [Types::RevokeRevisionResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1527
|
+
#
|
1528
|
+
# * {Types::RevokeRevisionResponse#arn #arn} => String
|
1529
|
+
# * {Types::RevokeRevisionResponse#comment #comment} => String
|
1530
|
+
# * {Types::RevokeRevisionResponse#created_at #created_at} => Time
|
1531
|
+
# * {Types::RevokeRevisionResponse#data_set_id #data_set_id} => String
|
1532
|
+
# * {Types::RevokeRevisionResponse#finalized #finalized} => Boolean
|
1533
|
+
# * {Types::RevokeRevisionResponse#id #id} => String
|
1534
|
+
# * {Types::RevokeRevisionResponse#source_id #source_id} => String
|
1535
|
+
# * {Types::RevokeRevisionResponse#updated_at #updated_at} => Time
|
1536
|
+
# * {Types::RevokeRevisionResponse#revocation_comment #revocation_comment} => String
|
1537
|
+
# * {Types::RevokeRevisionResponse#revoked #revoked} => Boolean
|
1538
|
+
# * {Types::RevokeRevisionResponse#revoked_at #revoked_at} => Time
|
1539
|
+
#
|
1540
|
+
# @example Request syntax with placeholder values
|
1541
|
+
#
|
1542
|
+
# resp = client.revoke_revision({
|
1543
|
+
# data_set_id: "__string", # required
|
1544
|
+
# revision_id: "__string", # required
|
1545
|
+
# revocation_comment: "__stringMin10Max512", # required
|
1546
|
+
# })
|
1547
|
+
#
|
1548
|
+
# @example Response structure
|
1549
|
+
#
|
1550
|
+
# resp.arn #=> String
|
1551
|
+
# resp.comment #=> String
|
1552
|
+
# resp.created_at #=> Time
|
1553
|
+
# resp.data_set_id #=> String
|
1554
|
+
# resp.finalized #=> Boolean
|
1555
|
+
# resp.id #=> String
|
1556
|
+
# resp.source_id #=> String
|
1557
|
+
# resp.updated_at #=> Time
|
1558
|
+
# resp.revocation_comment #=> String
|
1559
|
+
# resp.revoked #=> Boolean
|
1560
|
+
# resp.revoked_at #=> Time
|
1561
|
+
#
|
1562
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dataexchange-2017-07-25/RevokeRevision AWS API Documentation
|
1563
|
+
#
|
1564
|
+
# @overload revoke_revision(params = {})
|
1565
|
+
# @param [Hash] params ({})
|
1566
|
+
def revoke_revision(params = {}, options = {})
|
1567
|
+
req = build_request(:revoke_revision, params)
|
1568
|
+
req.send_request(options)
|
1569
|
+
end
|
1570
|
+
|
1455
1571
|
# This operation invokes an API Gateway API asset. The request is
|
1456
1572
|
# proxied to the provider’s API Gateway API.
|
1457
1573
|
#
|
1458
1574
|
# @option params [String] :body
|
1575
|
+
# The request body.
|
1459
1576
|
#
|
1460
1577
|
# @option params [Hash<String,String>] :query_string_parameters
|
1578
|
+
# Attach query string parameters to the end of the URI (for example,
|
1579
|
+
# /v1/examplePath?exampleParam=exampleValue).
|
1461
1580
|
#
|
1462
1581
|
# @option params [required, String] :asset_id
|
1582
|
+
# Asset ID value for the API request.
|
1463
1583
|
#
|
1464
1584
|
# @option params [required, String] :data_set_id
|
1585
|
+
# Data set ID value for the API request.
|
1465
1586
|
#
|
1466
1587
|
# @option params [Hash<String,String>] :request_headers
|
1588
|
+
# Any header value prefixed with x-amzn-dataexchange-header- will have
|
1589
|
+
# that stripped before sending the Asset API request. Use this when you
|
1590
|
+
# want to override a header that AWS Data Exchange uses. Alternatively,
|
1591
|
+
# you can use the header without a prefix to the HTTP request.
|
1467
1592
|
#
|
1468
1593
|
# @option params [String] :method
|
1594
|
+
# HTTP method value for the API request. Alternatively, you can use the
|
1595
|
+
# appropriate verb in your request.
|
1469
1596
|
#
|
1470
1597
|
# @option params [String] :path
|
1598
|
+
# URI path value for the API request. Alternatively, you can set the URI
|
1599
|
+
# path directly by invoking /v1/\\\{pathValue\\}.
|
1471
1600
|
#
|
1472
1601
|
# @option params [required, String] :revision_id
|
1602
|
+
# Revision ID value for the API request.
|
1473
1603
|
#
|
1474
1604
|
# @return [Types::SendApiAssetResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1475
1605
|
#
|
@@ -1511,6 +1641,7 @@ module Aws::DataExchange
|
|
1511
1641
|
# This operation starts a job.
|
1512
1642
|
#
|
1513
1643
|
# @option params [required, String] :job_id
|
1644
|
+
# The unique identifier for a job.
|
1514
1645
|
#
|
1515
1646
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
1516
1647
|
#
|
@@ -1532,8 +1663,11 @@ module Aws::DataExchange
|
|
1532
1663
|
# This operation tags a resource.
|
1533
1664
|
#
|
1534
1665
|
# @option params [required, String] :resource_arn
|
1666
|
+
# An Amazon Resource Name (ARN) that uniquely identifies an AWS
|
1667
|
+
# resource.
|
1535
1668
|
#
|
1536
1669
|
# @option params [required, Hash<String,String>] :tags
|
1670
|
+
# A label that consists of a customer-defined key and an optional value.
|
1537
1671
|
#
|
1538
1672
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
1539
1673
|
#
|
@@ -1558,8 +1692,11 @@ module Aws::DataExchange
|
|
1558
1692
|
# This operation removes one or more tags from a resource.
|
1559
1693
|
#
|
1560
1694
|
# @option params [required, String] :resource_arn
|
1695
|
+
# An Amazon Resource Name (ARN) that uniquely identifies an AWS
|
1696
|
+
# resource.
|
1561
1697
|
#
|
1562
1698
|
# @option params [required, Array<String>] :tag_keys
|
1699
|
+
# The key tags.
|
1563
1700
|
#
|
1564
1701
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
1565
1702
|
#
|
@@ -1582,8 +1719,10 @@ module Aws::DataExchange
|
|
1582
1719
|
# This operation updates an asset.
|
1583
1720
|
#
|
1584
1721
|
# @option params [required, String] :asset_id
|
1722
|
+
# The unique identifier for an asset.
|
1585
1723
|
#
|
1586
1724
|
# @option params [required, String] :data_set_id
|
1725
|
+
# The unique identifier for a data set.
|
1587
1726
|
#
|
1588
1727
|
# @option params [required, String] :name
|
1589
1728
|
# The name of the asset. When importing from Amazon S3, the S3 object
|
@@ -1594,6 +1733,7 @@ module Aws::DataExchange
|
|
1594
1733
|
# asset name.
|
1595
1734
|
#
|
1596
1735
|
# @option params [required, String] :revision_id
|
1736
|
+
# The unique identifier for a revision.
|
1597
1737
|
#
|
1598
1738
|
# @return [Types::UpdateAssetResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1599
1739
|
#
|
@@ -1652,6 +1792,7 @@ module Aws::DataExchange
|
|
1652
1792
|
# This operation updates a data set.
|
1653
1793
|
#
|
1654
1794
|
# @option params [required, String] :data_set_id
|
1795
|
+
# The unique identifier for a data set.
|
1655
1796
|
#
|
1656
1797
|
# @option params [String] :description
|
1657
1798
|
# The description for the data set.
|
@@ -1708,6 +1849,7 @@ module Aws::DataExchange
|
|
1708
1849
|
# What occurs after a certain event.
|
1709
1850
|
#
|
1710
1851
|
# @option params [required, String] :event_action_id
|
1852
|
+
# The unique identifier for the event action.
|
1711
1853
|
#
|
1712
1854
|
# @return [Types::UpdateEventActionResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1713
1855
|
#
|
@@ -1763,6 +1905,7 @@ module Aws::DataExchange
|
|
1763
1905
|
# An optional comment about the revision.
|
1764
1906
|
#
|
1765
1907
|
# @option params [required, String] :data_set_id
|
1908
|
+
# The unique identifier for a data set.
|
1766
1909
|
#
|
1767
1910
|
# @option params [Boolean] :finalized
|
1768
1911
|
# Finalizing a revision tells AWS Data Exchange that your changes to the
|
@@ -1770,6 +1913,7 @@ module Aws::DataExchange
|
|
1770
1913
|
# state, you can publish the revision to your products.
|
1771
1914
|
#
|
1772
1915
|
# @option params [required, String] :revision_id
|
1916
|
+
# The unique identifier for a revision.
|
1773
1917
|
#
|
1774
1918
|
# @return [Types::UpdateRevisionResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1775
1919
|
#
|
@@ -1781,6 +1925,9 @@ module Aws::DataExchange
|
|
1781
1925
|
# * {Types::UpdateRevisionResponse#id #id} => String
|
1782
1926
|
# * {Types::UpdateRevisionResponse#source_id #source_id} => String
|
1783
1927
|
# * {Types::UpdateRevisionResponse#updated_at #updated_at} => Time
|
1928
|
+
# * {Types::UpdateRevisionResponse#revocation_comment #revocation_comment} => String
|
1929
|
+
# * {Types::UpdateRevisionResponse#revoked #revoked} => Boolean
|
1930
|
+
# * {Types::UpdateRevisionResponse#revoked_at #revoked_at} => Time
|
1784
1931
|
#
|
1785
1932
|
# @example Request syntax with placeholder values
|
1786
1933
|
#
|
@@ -1801,6 +1948,9 @@ module Aws::DataExchange
|
|
1801
1948
|
# resp.id #=> String
|
1802
1949
|
# resp.source_id #=> String
|
1803
1950
|
# resp.updated_at #=> Time
|
1951
|
+
# resp.revocation_comment #=> String
|
1952
|
+
# resp.revoked #=> Boolean
|
1953
|
+
# resp.revoked_at #=> Time
|
1804
1954
|
#
|
1805
1955
|
# @see http://docs.aws.amazon.com/goto/WebAPI/dataexchange-2017-07-25/UpdateRevision AWS API Documentation
|
1806
1956
|
#
|
@@ -1824,7 +1974,7 @@ module Aws::DataExchange
|
|
1824
1974
|
params: params,
|
1825
1975
|
config: config)
|
1826
1976
|
context[:gem_name] = 'aws-sdk-dataexchange'
|
1827
|
-
context[:gem_version] = '1.
|
1977
|
+
context[:gem_version] = '1.27.0'
|
1828
1978
|
Seahorse::Client::Request.new(handlers, context)
|
1829
1979
|
end
|
1830
1980
|
|