aws-sdk-dataexchange 1.26.0 → 1.28.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 +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-dataexchange/client.rb +96 -7
- data/lib/aws-sdk-dataexchange/client_api.rb +40 -40
- data/lib/aws-sdk-dataexchange/endpoint_parameters.rb +66 -0
- data/lib/aws-sdk-dataexchange/endpoint_provider.rb +112 -0
- data/lib/aws-sdk-dataexchange/endpoints.rb +421 -0
- data/lib/aws-sdk-dataexchange/plugins/endpoints.rb +126 -0
- data/lib/aws-sdk-dataexchange/types.rb +284 -182
- data/lib/aws-sdk-dataexchange/waiters.rb +15 -0
- data/lib/aws-sdk-dataexchange.rb +6 -1
- metadata +9 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f8080bb1fbea877a30be7b469380781d2e10e58b6e309b27d3129c287cb6bcf1
|
4
|
+
data.tar.gz: fdda51f261c2ddd17065b6d053327771b10e06904a2ea9326be8bcd66bf82764
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5b9ac7dbaebf426ad1835134002edc0f9e27d3e313044e5acb617a448e69cc1a9622e4e38da368349517f86cee6a521f43c838306a7d9b814485365dc8212653
|
7
|
+
data.tar.gz: 4e47ca873b20b293f97a0ca5ea5e4009f6b8b17886d65d480c7c08c74aab56063ecdbf081273e92f82d0e02ff3bfed22d6f5b613a8780f1ae5475e263a118ff0
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.28.0 (2022-10-25)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
8
|
+
|
9
|
+
1.27.0 (2022-09-07)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Documentation updates for AWS Data Exchange.
|
13
|
+
|
4
14
|
1.26.0 (2022-03-15)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.28.0
|
@@ -30,7 +30,7 @@ require 'aws-sdk-core/plugins/http_checksum.rb'
|
|
30
30
|
require 'aws-sdk-core/plugins/checksum_algorithm.rb'
|
31
31
|
require 'aws-sdk-core/plugins/defaults_mode.rb'
|
32
32
|
require 'aws-sdk-core/plugins/recursion_detection.rb'
|
33
|
-
require 'aws-sdk-core/plugins/
|
33
|
+
require 'aws-sdk-core/plugins/sign.rb'
|
34
34
|
require 'aws-sdk-core/plugins/protocols/rest_json.rb'
|
35
35
|
|
36
36
|
Aws::Plugins::GlobalConfiguration.add_identifier(:dataexchange)
|
@@ -79,8 +79,9 @@ module Aws::DataExchange
|
|
79
79
|
add_plugin(Aws::Plugins::ChecksumAlgorithm)
|
80
80
|
add_plugin(Aws::Plugins::DefaultsMode)
|
81
81
|
add_plugin(Aws::Plugins::RecursionDetection)
|
82
|
-
add_plugin(Aws::Plugins::
|
82
|
+
add_plugin(Aws::Plugins::Sign)
|
83
83
|
add_plugin(Aws::Plugins::Protocols::RestJson)
|
84
|
+
add_plugin(Aws::DataExchange::Plugins::Endpoints)
|
84
85
|
|
85
86
|
# @overload initialize(options)
|
86
87
|
# @param [Hash] options
|
@@ -287,6 +288,19 @@ module Aws::DataExchange
|
|
287
288
|
# ** Please note ** When response stubbing is enabled, no HTTP
|
288
289
|
# requests are made, and retries are disabled.
|
289
290
|
#
|
291
|
+
# @option options [Aws::TokenProvider] :token_provider
|
292
|
+
# A Bearer Token Provider. This can be an instance of any one of the
|
293
|
+
# following classes:
|
294
|
+
#
|
295
|
+
# * `Aws::StaticTokenProvider` - Used for configuring static, non-refreshing
|
296
|
+
# tokens.
|
297
|
+
#
|
298
|
+
# * `Aws::SSOTokenProvider` - Used for loading tokens from AWS SSO using an
|
299
|
+
# access token generated from `aws login`.
|
300
|
+
#
|
301
|
+
# When `:token_provider` is not configured directly, the `Aws::TokenProviderChain`
|
302
|
+
# will be used to search for tokens configured for your profile in shared configuration files.
|
303
|
+
#
|
290
304
|
# @option options [Boolean] :use_dualstack_endpoint
|
291
305
|
# When set to `true`, dualstack enabled endpoints (with `.aws` TLD)
|
292
306
|
# will be used if available.
|
@@ -300,6 +314,9 @@ module Aws::DataExchange
|
|
300
314
|
# When `true`, request parameters are validated before
|
301
315
|
# sending the request.
|
302
316
|
#
|
317
|
+
# @option options [Aws::DataExchange::EndpointProvider] :endpoint_provider
|
318
|
+
# The endpoint provider used to resolve endpoints. Any object that responds to `#resolve_endpoint(parameters)` where `parameters` is a Struct similar to `Aws::DataExchange::EndpointParameters`
|
319
|
+
#
|
303
320
|
# @option options [URI::HTTP,String] :http_proxy A proxy to send
|
304
321
|
# requests through. Formatted like 'http://proxy.com:123'.
|
305
322
|
#
|
@@ -355,6 +372,7 @@ module Aws::DataExchange
|
|
355
372
|
# in the WAITING state.
|
356
373
|
#
|
357
374
|
# @option params [required, String] :job_id
|
375
|
+
# The unique identifier for a job.
|
358
376
|
#
|
359
377
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
360
378
|
#
|
@@ -680,6 +698,7 @@ module Aws::DataExchange
|
|
680
698
|
# An optional comment about the revision.
|
681
699
|
#
|
682
700
|
# @option params [required, String] :data_set_id
|
701
|
+
# The unique identifier for a data set.
|
683
702
|
#
|
684
703
|
# @option params [Hash<String,String>] :tags
|
685
704
|
# A revision tag is an optional label that you can assign to a revision
|
@@ -741,10 +760,13 @@ module Aws::DataExchange
|
|
741
760
|
# This operation deletes an asset.
|
742
761
|
#
|
743
762
|
# @option params [required, String] :asset_id
|
763
|
+
# The unique identifier for an asset.
|
744
764
|
#
|
745
765
|
# @option params [required, String] :data_set_id
|
766
|
+
# The unique identifier for a data set.
|
746
767
|
#
|
747
768
|
# @option params [required, String] :revision_id
|
769
|
+
# The unique identifier for a revision.
|
748
770
|
#
|
749
771
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
750
772
|
#
|
@@ -768,6 +790,7 @@ module Aws::DataExchange
|
|
768
790
|
# This operation deletes a data set.
|
769
791
|
#
|
770
792
|
# @option params [required, String] :data_set_id
|
793
|
+
# The unique identifier for a data set.
|
771
794
|
#
|
772
795
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
773
796
|
#
|
@@ -789,6 +812,7 @@ module Aws::DataExchange
|
|
789
812
|
# This operation deletes the event action.
|
790
813
|
#
|
791
814
|
# @option params [required, String] :event_action_id
|
815
|
+
# The unique identifier for the event action.
|
792
816
|
#
|
793
817
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
794
818
|
#
|
@@ -810,8 +834,10 @@ module Aws::DataExchange
|
|
810
834
|
# This operation deletes a revision.
|
811
835
|
#
|
812
836
|
# @option params [required, String] :data_set_id
|
837
|
+
# The unique identifier for a data set.
|
813
838
|
#
|
814
839
|
# @option params [required, String] :revision_id
|
840
|
+
# The unique identifier for a revision.
|
815
841
|
#
|
816
842
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
817
843
|
#
|
@@ -834,10 +860,13 @@ module Aws::DataExchange
|
|
834
860
|
# This operation returns information about an asset.
|
835
861
|
#
|
836
862
|
# @option params [required, String] :asset_id
|
863
|
+
# The unique identifier for an asset.
|
837
864
|
#
|
838
865
|
# @option params [required, String] :data_set_id
|
866
|
+
# The unique identifier for a data set.
|
839
867
|
#
|
840
868
|
# @option params [required, String] :revision_id
|
869
|
+
# The unique identifier for a revision.
|
841
870
|
#
|
842
871
|
# @return [Types::GetAssetResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
843
872
|
#
|
@@ -895,6 +924,7 @@ module Aws::DataExchange
|
|
895
924
|
# This operation returns information about a data set.
|
896
925
|
#
|
897
926
|
# @option params [required, String] :data_set_id
|
927
|
+
# The unique identifier for a data set.
|
898
928
|
#
|
899
929
|
# @return [Types::GetDataSetResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
900
930
|
#
|
@@ -943,6 +973,7 @@ module Aws::DataExchange
|
|
943
973
|
# This operation retrieves information about an event action.
|
944
974
|
#
|
945
975
|
# @option params [required, String] :event_action_id
|
976
|
+
# The unique identifier for the event action.
|
946
977
|
#
|
947
978
|
# @return [Types::GetEventActionResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
948
979
|
#
|
@@ -983,6 +1014,7 @@ module Aws::DataExchange
|
|
983
1014
|
# This operation returns information about a job.
|
984
1015
|
#
|
985
1016
|
# @option params [required, String] :job_id
|
1017
|
+
# The unique identifier for a job.
|
986
1018
|
#
|
987
1019
|
# @return [Types::GetJobResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
988
1020
|
#
|
@@ -1080,8 +1112,10 @@ module Aws::DataExchange
|
|
1080
1112
|
# This operation returns information about a revision.
|
1081
1113
|
#
|
1082
1114
|
# @option params [required, String] :data_set_id
|
1115
|
+
# The unique identifier for a data set.
|
1083
1116
|
#
|
1084
1117
|
# @option params [required, String] :revision_id
|
1118
|
+
# The unique identifier for a revision.
|
1085
1119
|
#
|
1086
1120
|
# @return [Types::GetRevisionResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1087
1121
|
#
|
@@ -1134,10 +1168,14 @@ module Aws::DataExchange
|
|
1134
1168
|
# descending order.
|
1135
1169
|
#
|
1136
1170
|
# @option params [required, String] :data_set_id
|
1171
|
+
# The unique identifier for a data set.
|
1137
1172
|
#
|
1138
1173
|
# @option params [Integer] :max_results
|
1174
|
+
# The maximum number of results returned by a single call.
|
1139
1175
|
#
|
1140
1176
|
# @option params [String] :next_token
|
1177
|
+
# The token value retrieved from a previous call to access the next page
|
1178
|
+
# of results.
|
1141
1179
|
#
|
1142
1180
|
# @return [Types::ListDataSetRevisionsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1143
1181
|
#
|
@@ -1185,10 +1223,15 @@ module Aws::DataExchange
|
|
1185
1223
|
# ignored.
|
1186
1224
|
#
|
1187
1225
|
# @option params [Integer] :max_results
|
1226
|
+
# The maximum number of results returned by a single call.
|
1188
1227
|
#
|
1189
1228
|
# @option params [String] :next_token
|
1229
|
+
# The token value retrieved from a previous call to access the next page
|
1230
|
+
# of results.
|
1190
1231
|
#
|
1191
1232
|
# @option params [String] :origin
|
1233
|
+
# A property that defines the data set as OWNED by the account (for
|
1234
|
+
# providers) or ENTITLED to the account (for subscribers).
|
1192
1235
|
#
|
1193
1236
|
# @return [Types::ListDataSetsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1194
1237
|
#
|
@@ -1232,10 +1275,14 @@ module Aws::DataExchange
|
|
1232
1275
|
# This operation lists your event actions.
|
1233
1276
|
#
|
1234
1277
|
# @option params [String] :event_source_id
|
1278
|
+
# The unique identifier for the event source.
|
1235
1279
|
#
|
1236
1280
|
# @option params [Integer] :max_results
|
1281
|
+
# The maximum number of results returned by a single call.
|
1237
1282
|
#
|
1238
1283
|
# @option params [String] :next_token
|
1284
|
+
# The token value retrieved from a previous call to access the next page
|
1285
|
+
# of results.
|
1239
1286
|
#
|
1240
1287
|
# @return [Types::ListEventActionsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1241
1288
|
#
|
@@ -1279,12 +1326,17 @@ module Aws::DataExchange
|
|
1279
1326
|
# order.
|
1280
1327
|
#
|
1281
1328
|
# @option params [String] :data_set_id
|
1329
|
+
# The unique identifier for a data set.
|
1282
1330
|
#
|
1283
1331
|
# @option params [Integer] :max_results
|
1332
|
+
# The maximum number of results returned by a single call.
|
1284
1333
|
#
|
1285
1334
|
# @option params [String] :next_token
|
1335
|
+
# The token value retrieved from a previous call to access the next page
|
1336
|
+
# of results.
|
1286
1337
|
#
|
1287
1338
|
# @option params [String] :revision_id
|
1339
|
+
# The unique identifier for a revision.
|
1288
1340
|
#
|
1289
1341
|
# @return [Types::ListJobsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1290
1342
|
#
|
@@ -1384,12 +1436,17 @@ module Aws::DataExchange
|
|
1384
1436
|
# descending order.
|
1385
1437
|
#
|
1386
1438
|
# @option params [required, String] :data_set_id
|
1439
|
+
# The unique identifier for a data set.
|
1387
1440
|
#
|
1388
1441
|
# @option params [Integer] :max_results
|
1442
|
+
# The maximum number of results returned by a single call.
|
1389
1443
|
#
|
1390
1444
|
# @option params [String] :next_token
|
1445
|
+
# The token value retrieved from a previous call to access the next page
|
1446
|
+
# of results.
|
1391
1447
|
#
|
1392
1448
|
# @option params [required, String] :revision_id
|
1449
|
+
# The unique identifier for a revision.
|
1393
1450
|
#
|
1394
1451
|
# @return [Types::ListRevisionAssetsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1395
1452
|
#
|
@@ -1444,6 +1501,8 @@ module Aws::DataExchange
|
|
1444
1501
|
# This operation lists the tags on the resource.
|
1445
1502
|
#
|
1446
1503
|
# @option params [required, String] :resource_arn
|
1504
|
+
# An Amazon Resource Name (ARN) that uniquely identifies an AWS
|
1505
|
+
# resource.
|
1447
1506
|
#
|
1448
1507
|
# @return [Types::ListTagsForResourceResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1449
1508
|
#
|
@@ -1472,8 +1531,10 @@ module Aws::DataExchange
|
|
1472
1531
|
# This operation revokes subscribers' access to a revision.
|
1473
1532
|
#
|
1474
1533
|
# @option params [required, String] :data_set_id
|
1534
|
+
# The unique identifier for a data set.
|
1475
1535
|
#
|
1476
1536
|
# @option params [required, String] :revision_id
|
1537
|
+
# The unique identifier for a revision.
|
1477
1538
|
#
|
1478
1539
|
# @option params [required, String] :revocation_comment
|
1479
1540
|
# A required comment to inform subscribers of the reason their access to
|
@@ -1487,11 +1548,11 @@ module Aws::DataExchange
|
|
1487
1548
|
# * {Types::RevokeRevisionResponse#data_set_id #data_set_id} => String
|
1488
1549
|
# * {Types::RevokeRevisionResponse#finalized #finalized} => Boolean
|
1489
1550
|
# * {Types::RevokeRevisionResponse#id #id} => String
|
1551
|
+
# * {Types::RevokeRevisionResponse#source_id #source_id} => String
|
1552
|
+
# * {Types::RevokeRevisionResponse#updated_at #updated_at} => Time
|
1490
1553
|
# * {Types::RevokeRevisionResponse#revocation_comment #revocation_comment} => String
|
1491
1554
|
# * {Types::RevokeRevisionResponse#revoked #revoked} => Boolean
|
1492
1555
|
# * {Types::RevokeRevisionResponse#revoked_at #revoked_at} => Time
|
1493
|
-
# * {Types::RevokeRevisionResponse#source_id #source_id} => String
|
1494
|
-
# * {Types::RevokeRevisionResponse#updated_at #updated_at} => Time
|
1495
1556
|
#
|
1496
1557
|
# @example Request syntax with placeholder values
|
1497
1558
|
#
|
@@ -1509,11 +1570,11 @@ module Aws::DataExchange
|
|
1509
1570
|
# resp.data_set_id #=> String
|
1510
1571
|
# resp.finalized #=> Boolean
|
1511
1572
|
# resp.id #=> String
|
1573
|
+
# resp.source_id #=> String
|
1574
|
+
# resp.updated_at #=> Time
|
1512
1575
|
# resp.revocation_comment #=> String
|
1513
1576
|
# resp.revoked #=> Boolean
|
1514
1577
|
# resp.revoked_at #=> Time
|
1515
|
-
# resp.source_id #=> String
|
1516
|
-
# resp.updated_at #=> Time
|
1517
1578
|
#
|
1518
1579
|
# @see http://docs.aws.amazon.com/goto/WebAPI/dataexchange-2017-07-25/RevokeRevision AWS API Documentation
|
1519
1580
|
#
|
@@ -1528,20 +1589,34 @@ module Aws::DataExchange
|
|
1528
1589
|
# proxied to the provider’s API Gateway API.
|
1529
1590
|
#
|
1530
1591
|
# @option params [String] :body
|
1592
|
+
# The request body.
|
1531
1593
|
#
|
1532
1594
|
# @option params [Hash<String,String>] :query_string_parameters
|
1595
|
+
# Attach query string parameters to the end of the URI (for example,
|
1596
|
+
# /v1/examplePath?exampleParam=exampleValue).
|
1533
1597
|
#
|
1534
1598
|
# @option params [required, String] :asset_id
|
1599
|
+
# Asset ID value for the API request.
|
1535
1600
|
#
|
1536
1601
|
# @option params [required, String] :data_set_id
|
1602
|
+
# Data set ID value for the API request.
|
1537
1603
|
#
|
1538
1604
|
# @option params [Hash<String,String>] :request_headers
|
1605
|
+
# Any header value prefixed with x-amzn-dataexchange-header- will have
|
1606
|
+
# that stripped before sending the Asset API request. Use this when you
|
1607
|
+
# want to override a header that AWS Data Exchange uses. Alternatively,
|
1608
|
+
# you can use the header without a prefix to the HTTP request.
|
1539
1609
|
#
|
1540
1610
|
# @option params [String] :method
|
1611
|
+
# HTTP method value for the API request. Alternatively, you can use the
|
1612
|
+
# appropriate verb in your request.
|
1541
1613
|
#
|
1542
1614
|
# @option params [String] :path
|
1615
|
+
# URI path value for the API request. Alternatively, you can set the URI
|
1616
|
+
# path directly by invoking /v1/\\\{pathValue\\}.
|
1543
1617
|
#
|
1544
1618
|
# @option params [required, String] :revision_id
|
1619
|
+
# Revision ID value for the API request.
|
1545
1620
|
#
|
1546
1621
|
# @return [Types::SendApiAssetResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1547
1622
|
#
|
@@ -1583,6 +1658,7 @@ module Aws::DataExchange
|
|
1583
1658
|
# This operation starts a job.
|
1584
1659
|
#
|
1585
1660
|
# @option params [required, String] :job_id
|
1661
|
+
# The unique identifier for a job.
|
1586
1662
|
#
|
1587
1663
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
1588
1664
|
#
|
@@ -1604,8 +1680,11 @@ module Aws::DataExchange
|
|
1604
1680
|
# This operation tags a resource.
|
1605
1681
|
#
|
1606
1682
|
# @option params [required, String] :resource_arn
|
1683
|
+
# An Amazon Resource Name (ARN) that uniquely identifies an AWS
|
1684
|
+
# resource.
|
1607
1685
|
#
|
1608
1686
|
# @option params [required, Hash<String,String>] :tags
|
1687
|
+
# A label that consists of a customer-defined key and an optional value.
|
1609
1688
|
#
|
1610
1689
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
1611
1690
|
#
|
@@ -1630,8 +1709,11 @@ module Aws::DataExchange
|
|
1630
1709
|
# This operation removes one or more tags from a resource.
|
1631
1710
|
#
|
1632
1711
|
# @option params [required, String] :resource_arn
|
1712
|
+
# An Amazon Resource Name (ARN) that uniquely identifies an AWS
|
1713
|
+
# resource.
|
1633
1714
|
#
|
1634
1715
|
# @option params [required, Array<String>] :tag_keys
|
1716
|
+
# The key tags.
|
1635
1717
|
#
|
1636
1718
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
1637
1719
|
#
|
@@ -1654,8 +1736,10 @@ module Aws::DataExchange
|
|
1654
1736
|
# This operation updates an asset.
|
1655
1737
|
#
|
1656
1738
|
# @option params [required, String] :asset_id
|
1739
|
+
# The unique identifier for an asset.
|
1657
1740
|
#
|
1658
1741
|
# @option params [required, String] :data_set_id
|
1742
|
+
# The unique identifier for a data set.
|
1659
1743
|
#
|
1660
1744
|
# @option params [required, String] :name
|
1661
1745
|
# The name of the asset. When importing from Amazon S3, the S3 object
|
@@ -1666,6 +1750,7 @@ module Aws::DataExchange
|
|
1666
1750
|
# asset name.
|
1667
1751
|
#
|
1668
1752
|
# @option params [required, String] :revision_id
|
1753
|
+
# The unique identifier for a revision.
|
1669
1754
|
#
|
1670
1755
|
# @return [Types::UpdateAssetResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1671
1756
|
#
|
@@ -1724,6 +1809,7 @@ module Aws::DataExchange
|
|
1724
1809
|
# This operation updates a data set.
|
1725
1810
|
#
|
1726
1811
|
# @option params [required, String] :data_set_id
|
1812
|
+
# The unique identifier for a data set.
|
1727
1813
|
#
|
1728
1814
|
# @option params [String] :description
|
1729
1815
|
# The description for the data set.
|
@@ -1780,6 +1866,7 @@ module Aws::DataExchange
|
|
1780
1866
|
# What occurs after a certain event.
|
1781
1867
|
#
|
1782
1868
|
# @option params [required, String] :event_action_id
|
1869
|
+
# The unique identifier for the event action.
|
1783
1870
|
#
|
1784
1871
|
# @return [Types::UpdateEventActionResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1785
1872
|
#
|
@@ -1835,6 +1922,7 @@ module Aws::DataExchange
|
|
1835
1922
|
# An optional comment about the revision.
|
1836
1923
|
#
|
1837
1924
|
# @option params [required, String] :data_set_id
|
1925
|
+
# The unique identifier for a data set.
|
1838
1926
|
#
|
1839
1927
|
# @option params [Boolean] :finalized
|
1840
1928
|
# Finalizing a revision tells AWS Data Exchange that your changes to the
|
@@ -1842,6 +1930,7 @@ module Aws::DataExchange
|
|
1842
1930
|
# state, you can publish the revision to your products.
|
1843
1931
|
#
|
1844
1932
|
# @option params [required, String] :revision_id
|
1933
|
+
# The unique identifier for a revision.
|
1845
1934
|
#
|
1846
1935
|
# @return [Types::UpdateRevisionResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1847
1936
|
#
|
@@ -1902,7 +1991,7 @@ module Aws::DataExchange
|
|
1902
1991
|
params: params,
|
1903
1992
|
config: config)
|
1904
1993
|
context[:gem_name] = 'aws-sdk-dataexchange'
|
1905
|
-
context[:gem_version] = '1.
|
1994
|
+
context[:gem_version] = '1.28.0'
|
1906
1995
|
Seahorse::Client::Request.new(handlers, context)
|
1907
1996
|
end
|
1908
1997
|
|