aws-sdk-dataexchange 1.6.0 → 1.11.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/aws-sdk-dataexchange.rb +3 -2
- data/lib/aws-sdk-dataexchange/client.rb +23 -8
- data/lib/aws-sdk-dataexchange/types.rb +67 -0
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: aebcaa9654fc3b6ecc297de08adf1a7f82c1a33382dc0c973e913ce4acd58362
|
4
|
+
data.tar.gz: 683bd2f56e99f2a1f9df10dec7f851c6b6bf2ad837268ff2abe323e8cb418247
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f9cb5a90bf4856153d46fd0a5568a369fcd72b724691327a1879b361205cac2b160f298de0e3a5219a4b98a9a99af507b832ab9d1b31b37bc657a3b4d1e20370
|
7
|
+
data.tar.gz: 5e37ad73af522e9126accfb15ef11faf319d4bda155e76096e7b7ac5d7e553cd559867a38fd8adc3c1627e5dbe97075abd3e76436450063ce136c5009fcb7afa
|
data/lib/aws-sdk-dataexchange.rb
CHANGED
@@ -7,6 +7,7 @@
|
|
7
7
|
#
|
8
8
|
# WARNING ABOUT GENERATED CODE
|
9
9
|
|
10
|
+
|
10
11
|
require 'aws-sdk-core'
|
11
12
|
require 'aws-sigv4'
|
12
13
|
|
@@ -44,9 +45,9 @@ require_relative 'aws-sdk-dataexchange/customizations'
|
|
44
45
|
#
|
45
46
|
# See {Errors} for more information.
|
46
47
|
#
|
47
|
-
#
|
48
|
+
# @!group service
|
48
49
|
module Aws::DataExchange
|
49
50
|
|
50
|
-
GEM_VERSION = '1.
|
51
|
+
GEM_VERSION = '1.11.0'
|
51
52
|
|
52
53
|
end
|
@@ -85,13 +85,28 @@ module Aws::DataExchange
|
|
85
85
|
# * `Aws::Credentials` - Used for configuring static, non-refreshing
|
86
86
|
# credentials.
|
87
87
|
#
|
88
|
+
# * `Aws::SharedCredentials` - Used for loading static credentials from a
|
89
|
+
# shared file, such as `~/.aws/config`.
|
90
|
+
#
|
91
|
+
# * `Aws::AssumeRoleCredentials` - Used when you need to assume a role.
|
92
|
+
#
|
93
|
+
# * `Aws::AssumeRoleWebIdentityCredentials` - Used when you need to
|
94
|
+
# assume a role after providing credentials via the web.
|
95
|
+
#
|
96
|
+
# * `Aws::SSOCredentials` - Used for loading credentials from AWS SSO using an
|
97
|
+
# access token generated from `aws login`.
|
98
|
+
#
|
99
|
+
# * `Aws::ProcessCredentials` - Used for loading credentials from a
|
100
|
+
# process that outputs to stdout.
|
101
|
+
#
|
88
102
|
# * `Aws::InstanceProfileCredentials` - Used for loading credentials
|
89
103
|
# from an EC2 IMDS on an EC2 instance.
|
90
104
|
#
|
91
|
-
# * `Aws::
|
92
|
-
#
|
105
|
+
# * `Aws::ECSCredentials` - Used for loading credentials from
|
106
|
+
# instances running in ECS.
|
93
107
|
#
|
94
|
-
# * `Aws::
|
108
|
+
# * `Aws::CognitoIdentityCredentials` - Used for loading credentials
|
109
|
+
# from the Cognito Identity service.
|
95
110
|
#
|
96
111
|
# When `:credentials` are not configured directly, the following
|
97
112
|
# locations will be searched for credentials:
|
@@ -101,10 +116,10 @@ module Aws::DataExchange
|
|
101
116
|
# * ENV['AWS_ACCESS_KEY_ID'], ENV['AWS_SECRET_ACCESS_KEY']
|
102
117
|
# * `~/.aws/credentials`
|
103
118
|
# * `~/.aws/config`
|
104
|
-
# * EC2 IMDS instance profile - When used by default, the timeouts
|
105
|
-
# very aggressive. Construct and pass an instance of
|
106
|
-
# `Aws::InstanceProfileCredentails`
|
107
|
-
# timeouts.
|
119
|
+
# * EC2/ECS IMDS instance profile - When used by default, the timeouts
|
120
|
+
# are very aggressive. Construct and pass an instance of
|
121
|
+
# `Aws::InstanceProfileCredentails` or `Aws::ECSCredentials` to
|
122
|
+
# enable retries and extended timeouts.
|
108
123
|
#
|
109
124
|
# @option options [required, String] :region
|
110
125
|
# The AWS region to connect to. The configured `:region` is
|
@@ -1374,7 +1389,7 @@ module Aws::DataExchange
|
|
1374
1389
|
params: params,
|
1375
1390
|
config: config)
|
1376
1391
|
context[:gem_name] = 'aws-sdk-dataexchange'
|
1377
|
-
context[:gem_version] = '1.
|
1392
|
+
context[:gem_version] = '1.11.0'
|
1378
1393
|
Seahorse::Client::Request.new(handlers, context)
|
1379
1394
|
end
|
1380
1395
|
|
@@ -20,6 +20,7 @@ module Aws::DataExchange
|
|
20
20
|
#
|
21
21
|
class AccessDeniedException < Struct.new(
|
22
22
|
:message)
|
23
|
+
SENSITIVE = []
|
23
24
|
include Aws::Structure
|
24
25
|
end
|
25
26
|
|
@@ -52,6 +53,7 @@ module Aws::DataExchange
|
|
52
53
|
:asset_id,
|
53
54
|
:bucket,
|
54
55
|
:key)
|
56
|
+
SENSITIVE = []
|
55
57
|
include Aws::Structure
|
56
58
|
end
|
57
59
|
|
@@ -63,6 +65,7 @@ module Aws::DataExchange
|
|
63
65
|
#
|
64
66
|
class AssetDetails < Struct.new(
|
65
67
|
:s3_snapshot_asset)
|
68
|
+
SENSITIVE = []
|
66
69
|
include Aws::Structure
|
67
70
|
end
|
68
71
|
|
@@ -130,6 +133,7 @@ module Aws::DataExchange
|
|
130
133
|
:revision_id,
|
131
134
|
:source_id,
|
132
135
|
:updated_at)
|
136
|
+
SENSITIVE = []
|
133
137
|
include Aws::Structure
|
134
138
|
end
|
135
139
|
|
@@ -156,6 +160,7 @@ module Aws::DataExchange
|
|
156
160
|
class AssetSourceEntry < Struct.new(
|
157
161
|
:bucket,
|
158
162
|
:key)
|
163
|
+
SENSITIVE = []
|
159
164
|
include Aws::Structure
|
160
165
|
end
|
161
166
|
|
@@ -173,6 +178,7 @@ module Aws::DataExchange
|
|
173
178
|
#
|
174
179
|
class CancelJobRequest < Struct.new(
|
175
180
|
:job_id)
|
181
|
+
SENSITIVE = []
|
176
182
|
include Aws::Structure
|
177
183
|
end
|
178
184
|
|
@@ -198,6 +204,7 @@ module Aws::DataExchange
|
|
198
204
|
:message,
|
199
205
|
:resource_id,
|
200
206
|
:resource_type)
|
207
|
+
SENSITIVE = []
|
201
208
|
include Aws::Structure
|
202
209
|
end
|
203
210
|
|
@@ -244,6 +251,7 @@ module Aws::DataExchange
|
|
244
251
|
:description,
|
245
252
|
:name,
|
246
253
|
:tags)
|
254
|
+
SENSITIVE = []
|
247
255
|
include Aws::Structure
|
248
256
|
end
|
249
257
|
|
@@ -311,6 +319,7 @@ module Aws::DataExchange
|
|
311
319
|
:source_id,
|
312
320
|
:tags,
|
313
321
|
:updated_at)
|
322
|
+
SENSITIVE = []
|
314
323
|
include Aws::Structure
|
315
324
|
end
|
316
325
|
|
@@ -379,6 +388,7 @@ module Aws::DataExchange
|
|
379
388
|
class CreateJobRequest < Struct.new(
|
380
389
|
:details,
|
381
390
|
:type)
|
391
|
+
SENSITIVE = []
|
382
392
|
include Aws::Structure
|
383
393
|
end
|
384
394
|
|
@@ -425,6 +435,7 @@ module Aws::DataExchange
|
|
425
435
|
:state,
|
426
436
|
:type,
|
427
437
|
:updated_at)
|
438
|
+
SENSITIVE = []
|
428
439
|
include Aws::Structure
|
429
440
|
end
|
430
441
|
|
@@ -465,6 +476,7 @@ module Aws::DataExchange
|
|
465
476
|
:comment,
|
466
477
|
:data_set_id,
|
467
478
|
:tags)
|
479
|
+
SENSITIVE = []
|
468
480
|
include Aws::Structure
|
469
481
|
end
|
470
482
|
|
@@ -516,6 +528,7 @@ module Aws::DataExchange
|
|
516
528
|
:source_id,
|
517
529
|
:tags,
|
518
530
|
:updated_at)
|
531
|
+
SENSITIVE = []
|
519
532
|
include Aws::Structure
|
520
533
|
end
|
521
534
|
|
@@ -580,6 +593,7 @@ module Aws::DataExchange
|
|
580
593
|
:origin_details,
|
581
594
|
:source_id,
|
582
595
|
:updated_at)
|
596
|
+
SENSITIVE = []
|
583
597
|
include Aws::Structure
|
584
598
|
end
|
585
599
|
|
@@ -607,6 +621,7 @@ module Aws::DataExchange
|
|
607
621
|
:asset_id,
|
608
622
|
:data_set_id,
|
609
623
|
:revision_id)
|
624
|
+
SENSITIVE = []
|
610
625
|
include Aws::Structure
|
611
626
|
end
|
612
627
|
|
@@ -624,6 +639,7 @@ module Aws::DataExchange
|
|
624
639
|
#
|
625
640
|
class DeleteDataSetRequest < Struct.new(
|
626
641
|
:data_set_id)
|
642
|
+
SENSITIVE = []
|
627
643
|
include Aws::Structure
|
628
644
|
end
|
629
645
|
|
@@ -646,6 +662,7 @@ module Aws::DataExchange
|
|
646
662
|
class DeleteRevisionRequest < Struct.new(
|
647
663
|
:data_set_id,
|
648
664
|
:revision_id)
|
665
|
+
SENSITIVE = []
|
649
666
|
include Aws::Structure
|
650
667
|
end
|
651
668
|
|
@@ -661,6 +678,7 @@ module Aws::DataExchange
|
|
661
678
|
class Details < Struct.new(
|
662
679
|
:import_asset_from_signed_url_job_error_details,
|
663
680
|
:import_assets_from_s3_job_error_details)
|
681
|
+
SENSITIVE = []
|
664
682
|
include Aws::Structure
|
665
683
|
end
|
666
684
|
|
@@ -696,6 +714,7 @@ module Aws::DataExchange
|
|
696
714
|
:asset_id,
|
697
715
|
:data_set_id,
|
698
716
|
:revision_id)
|
717
|
+
SENSITIVE = []
|
699
718
|
include Aws::Structure
|
700
719
|
end
|
701
720
|
|
@@ -731,6 +750,7 @@ module Aws::DataExchange
|
|
731
750
|
:revision_id,
|
732
751
|
:signed_url,
|
733
752
|
:signed_url_expires_at)
|
753
|
+
SENSITIVE = []
|
734
754
|
include Aws::Structure
|
735
755
|
end
|
736
756
|
|
@@ -780,6 +800,7 @@ module Aws::DataExchange
|
|
780
800
|
:data_set_id,
|
781
801
|
:encryption,
|
782
802
|
:revision_id)
|
803
|
+
SENSITIVE = []
|
783
804
|
include Aws::Structure
|
784
805
|
end
|
785
806
|
|
@@ -810,6 +831,7 @@ module Aws::DataExchange
|
|
810
831
|
:data_set_id,
|
811
832
|
:encryption,
|
812
833
|
:revision_id)
|
834
|
+
SENSITIVE = []
|
813
835
|
include Aws::Structure
|
814
836
|
end
|
815
837
|
|
@@ -841,6 +863,7 @@ module Aws::DataExchange
|
|
841
863
|
class ExportServerSideEncryption < Struct.new(
|
842
864
|
:kms_key_arn,
|
843
865
|
:type)
|
866
|
+
SENSITIVE = []
|
844
867
|
include Aws::Structure
|
845
868
|
end
|
846
869
|
|
@@ -868,6 +891,7 @@ module Aws::DataExchange
|
|
868
891
|
:asset_id,
|
869
892
|
:data_set_id,
|
870
893
|
:revision_id)
|
894
|
+
SENSITIVE = []
|
871
895
|
include Aws::Structure
|
872
896
|
end
|
873
897
|
|
@@ -929,6 +953,7 @@ module Aws::DataExchange
|
|
929
953
|
:revision_id,
|
930
954
|
:source_id,
|
931
955
|
:updated_at)
|
956
|
+
SENSITIVE = []
|
932
957
|
include Aws::Structure
|
933
958
|
end
|
934
959
|
|
@@ -946,6 +971,7 @@ module Aws::DataExchange
|
|
946
971
|
#
|
947
972
|
class GetDataSetRequest < Struct.new(
|
948
973
|
:data_set_id)
|
974
|
+
SENSITIVE = []
|
949
975
|
include Aws::Structure
|
950
976
|
end
|
951
977
|
|
@@ -1013,6 +1039,7 @@ module Aws::DataExchange
|
|
1013
1039
|
:source_id,
|
1014
1040
|
:tags,
|
1015
1041
|
:updated_at)
|
1042
|
+
SENSITIVE = []
|
1016
1043
|
include Aws::Structure
|
1017
1044
|
end
|
1018
1045
|
|
@@ -1030,6 +1057,7 @@ module Aws::DataExchange
|
|
1030
1057
|
#
|
1031
1058
|
class GetJobRequest < Struct.new(
|
1032
1059
|
:job_id)
|
1060
|
+
SENSITIVE = []
|
1033
1061
|
include Aws::Structure
|
1034
1062
|
end
|
1035
1063
|
|
@@ -1076,6 +1104,7 @@ module Aws::DataExchange
|
|
1076
1104
|
:state,
|
1077
1105
|
:type,
|
1078
1106
|
:updated_at)
|
1107
|
+
SENSITIVE = []
|
1079
1108
|
include Aws::Structure
|
1080
1109
|
end
|
1081
1110
|
|
@@ -1098,6 +1127,7 @@ module Aws::DataExchange
|
|
1098
1127
|
class GetRevisionRequest < Struct.new(
|
1099
1128
|
:data_set_id,
|
1100
1129
|
:revision_id)
|
1130
|
+
SENSITIVE = []
|
1101
1131
|
include Aws::Structure
|
1102
1132
|
end
|
1103
1133
|
|
@@ -1149,6 +1179,7 @@ module Aws::DataExchange
|
|
1149
1179
|
:source_id,
|
1150
1180
|
:tags,
|
1151
1181
|
:updated_at)
|
1182
|
+
SENSITIVE = []
|
1152
1183
|
include Aws::Structure
|
1153
1184
|
end
|
1154
1185
|
|
@@ -1162,6 +1193,7 @@ module Aws::DataExchange
|
|
1162
1193
|
#
|
1163
1194
|
class ImportAssetFromSignedUrlJobErrorDetails < Struct.new(
|
1164
1195
|
:asset_name)
|
1196
|
+
SENSITIVE = []
|
1165
1197
|
include Aws::Structure
|
1166
1198
|
end
|
1167
1199
|
|
@@ -1204,6 +1236,7 @@ module Aws::DataExchange
|
|
1204
1236
|
:data_set_id,
|
1205
1237
|
:md_5_hash,
|
1206
1238
|
:revision_id)
|
1239
|
+
SENSITIVE = []
|
1207
1240
|
include Aws::Structure
|
1208
1241
|
end
|
1209
1242
|
|
@@ -1247,6 +1280,7 @@ module Aws::DataExchange
|
|
1247
1280
|
:revision_id,
|
1248
1281
|
:signed_url,
|
1249
1282
|
:signed_url_expires_at)
|
1283
|
+
SENSITIVE = []
|
1250
1284
|
include Aws::Structure
|
1251
1285
|
end
|
1252
1286
|
|
@@ -1286,6 +1320,7 @@ module Aws::DataExchange
|
|
1286
1320
|
:asset_sources,
|
1287
1321
|
:data_set_id,
|
1288
1322
|
:revision_id)
|
1323
|
+
SENSITIVE = []
|
1289
1324
|
include Aws::Structure
|
1290
1325
|
end
|
1291
1326
|
|
@@ -1311,6 +1346,7 @@ module Aws::DataExchange
|
|
1311
1346
|
:asset_sources,
|
1312
1347
|
:data_set_id,
|
1313
1348
|
:revision_id)
|
1349
|
+
SENSITIVE = []
|
1314
1350
|
include Aws::Structure
|
1315
1351
|
end
|
1316
1352
|
|
@@ -1324,6 +1360,7 @@ module Aws::DataExchange
|
|
1324
1360
|
#
|
1325
1361
|
class InternalServerException < Struct.new(
|
1326
1362
|
:message)
|
1363
|
+
SENSITIVE = []
|
1327
1364
|
include Aws::Structure
|
1328
1365
|
end
|
1329
1366
|
|
@@ -1376,6 +1413,7 @@ module Aws::DataExchange
|
|
1376
1413
|
:state,
|
1377
1414
|
:type,
|
1378
1415
|
:updated_at)
|
1416
|
+
SENSITIVE = []
|
1379
1417
|
include Aws::Structure
|
1380
1418
|
end
|
1381
1419
|
|
@@ -1418,6 +1456,7 @@ module Aws::DataExchange
|
|
1418
1456
|
:message,
|
1419
1457
|
:resource_id,
|
1420
1458
|
:resource_type)
|
1459
|
+
SENSITIVE = []
|
1421
1460
|
include Aws::Structure
|
1422
1461
|
end
|
1423
1462
|
|
@@ -1445,6 +1484,7 @@ module Aws::DataExchange
|
|
1445
1484
|
:data_set_id,
|
1446
1485
|
:max_results,
|
1447
1486
|
:next_token)
|
1487
|
+
SENSITIVE = []
|
1448
1488
|
include Aws::Structure
|
1449
1489
|
end
|
1450
1490
|
|
@@ -1461,6 +1501,7 @@ module Aws::DataExchange
|
|
1461
1501
|
class ListDataSetRevisionsResponse < Struct.new(
|
1462
1502
|
:next_token,
|
1463
1503
|
:revisions)
|
1504
|
+
SENSITIVE = []
|
1464
1505
|
include Aws::Structure
|
1465
1506
|
end
|
1466
1507
|
|
@@ -1488,6 +1529,7 @@ module Aws::DataExchange
|
|
1488
1529
|
:max_results,
|
1489
1530
|
:next_token,
|
1490
1531
|
:origin)
|
1532
|
+
SENSITIVE = []
|
1491
1533
|
include Aws::Structure
|
1492
1534
|
end
|
1493
1535
|
|
@@ -1504,6 +1546,7 @@ module Aws::DataExchange
|
|
1504
1546
|
class ListDataSetsResponse < Struct.new(
|
1505
1547
|
:data_sets,
|
1506
1548
|
:next_token)
|
1549
|
+
SENSITIVE = []
|
1507
1550
|
include Aws::Structure
|
1508
1551
|
end
|
1509
1552
|
|
@@ -1536,6 +1579,7 @@ module Aws::DataExchange
|
|
1536
1579
|
:max_results,
|
1537
1580
|
:next_token,
|
1538
1581
|
:revision_id)
|
1582
|
+
SENSITIVE = []
|
1539
1583
|
include Aws::Structure
|
1540
1584
|
end
|
1541
1585
|
|
@@ -1552,6 +1596,7 @@ module Aws::DataExchange
|
|
1552
1596
|
class ListJobsResponse < Struct.new(
|
1553
1597
|
:jobs,
|
1554
1598
|
:next_token)
|
1599
|
+
SENSITIVE = []
|
1555
1600
|
include Aws::Structure
|
1556
1601
|
end
|
1557
1602
|
|
@@ -1584,6 +1629,7 @@ module Aws::DataExchange
|
|
1584
1629
|
:max_results,
|
1585
1630
|
:next_token,
|
1586
1631
|
:revision_id)
|
1632
|
+
SENSITIVE = []
|
1587
1633
|
include Aws::Structure
|
1588
1634
|
end
|
1589
1635
|
|
@@ -1600,6 +1646,7 @@ module Aws::DataExchange
|
|
1600
1646
|
class ListRevisionAssetsResponse < Struct.new(
|
1601
1647
|
:assets,
|
1602
1648
|
:next_token)
|
1649
|
+
SENSITIVE = []
|
1603
1650
|
include Aws::Structure
|
1604
1651
|
end
|
1605
1652
|
|
@@ -1617,6 +1664,7 @@ module Aws::DataExchange
|
|
1617
1664
|
#
|
1618
1665
|
class ListTagsForResourceRequest < Struct.new(
|
1619
1666
|
:resource_arn)
|
1667
|
+
SENSITIVE = []
|
1620
1668
|
include Aws::Structure
|
1621
1669
|
end
|
1622
1670
|
|
@@ -1627,6 +1675,7 @@ module Aws::DataExchange
|
|
1627
1675
|
#
|
1628
1676
|
class ListTagsForResourceResponse < Struct.new(
|
1629
1677
|
:tags)
|
1678
|
+
SENSITIVE = []
|
1630
1679
|
include Aws::Structure
|
1631
1680
|
end
|
1632
1681
|
|
@@ -1637,6 +1686,7 @@ module Aws::DataExchange
|
|
1637
1686
|
#
|
1638
1687
|
class OriginDetails < Struct.new(
|
1639
1688
|
:product_id)
|
1689
|
+
SENSITIVE = []
|
1640
1690
|
include Aws::Structure
|
1641
1691
|
end
|
1642
1692
|
|
@@ -1707,6 +1757,7 @@ module Aws::DataExchange
|
|
1707
1757
|
:export_assets_to_s3,
|
1708
1758
|
:import_asset_from_signed_url,
|
1709
1759
|
:import_assets_from_s3)
|
1760
|
+
SENSITIVE = []
|
1710
1761
|
include Aws::Structure
|
1711
1762
|
end
|
1712
1763
|
|
@@ -1730,6 +1781,7 @@ module Aws::DataExchange
|
|
1730
1781
|
:message,
|
1731
1782
|
:resource_id,
|
1732
1783
|
:resource_type)
|
1784
|
+
SENSITIVE = []
|
1733
1785
|
include Aws::Structure
|
1734
1786
|
end
|
1735
1787
|
|
@@ -1758,6 +1810,7 @@ module Aws::DataExchange
|
|
1758
1810
|
:export_assets_to_s3,
|
1759
1811
|
:import_asset_from_signed_url,
|
1760
1812
|
:import_assets_from_s3)
|
1813
|
+
SENSITIVE = []
|
1761
1814
|
include Aws::Structure
|
1762
1815
|
end
|
1763
1816
|
|
@@ -1819,6 +1872,7 @@ module Aws::DataExchange
|
|
1819
1872
|
:id,
|
1820
1873
|
:source_id,
|
1821
1874
|
:updated_at)
|
1875
|
+
SENSITIVE = []
|
1822
1876
|
include Aws::Structure
|
1823
1877
|
end
|
1824
1878
|
|
@@ -1832,6 +1886,7 @@ module Aws::DataExchange
|
|
1832
1886
|
#
|
1833
1887
|
class S3SnapshotAsset < Struct.new(
|
1834
1888
|
:size)
|
1889
|
+
SENSITIVE = []
|
1835
1890
|
include Aws::Structure
|
1836
1891
|
end
|
1837
1892
|
|
@@ -1852,6 +1907,7 @@ module Aws::DataExchange
|
|
1852
1907
|
:limit_name,
|
1853
1908
|
:limit_value,
|
1854
1909
|
:message)
|
1910
|
+
SENSITIVE = []
|
1855
1911
|
include Aws::Structure
|
1856
1912
|
end
|
1857
1913
|
|
@@ -1869,6 +1925,7 @@ module Aws::DataExchange
|
|
1869
1925
|
#
|
1870
1926
|
class StartJobRequest < Struct.new(
|
1871
1927
|
:job_id)
|
1928
|
+
SENSITIVE = []
|
1872
1929
|
include Aws::Structure
|
1873
1930
|
end
|
1874
1931
|
|
@@ -1897,6 +1954,7 @@ module Aws::DataExchange
|
|
1897
1954
|
class TagResourceRequest < Struct.new(
|
1898
1955
|
:resource_arn,
|
1899
1956
|
:tags)
|
1957
|
+
SENSITIVE = []
|
1900
1958
|
include Aws::Structure
|
1901
1959
|
end
|
1902
1960
|
|
@@ -1910,6 +1968,7 @@ module Aws::DataExchange
|
|
1910
1968
|
#
|
1911
1969
|
class ThrottlingException < Struct.new(
|
1912
1970
|
:message)
|
1971
|
+
SENSITIVE = []
|
1913
1972
|
include Aws::Structure
|
1914
1973
|
end
|
1915
1974
|
|
@@ -1932,6 +1991,7 @@ module Aws::DataExchange
|
|
1932
1991
|
class UntagResourceRequest < Struct.new(
|
1933
1992
|
:resource_arn,
|
1934
1993
|
:tag_keys)
|
1994
|
+
SENSITIVE = []
|
1935
1995
|
include Aws::Structure
|
1936
1996
|
end
|
1937
1997
|
|
@@ -1969,6 +2029,7 @@ module Aws::DataExchange
|
|
1969
2029
|
:data_set_id,
|
1970
2030
|
:name,
|
1971
2031
|
:revision_id)
|
2032
|
+
SENSITIVE = []
|
1972
2033
|
include Aws::Structure
|
1973
2034
|
end
|
1974
2035
|
|
@@ -2030,6 +2091,7 @@ module Aws::DataExchange
|
|
2030
2091
|
:revision_id,
|
2031
2092
|
:source_id,
|
2032
2093
|
:updated_at)
|
2094
|
+
SENSITIVE = []
|
2033
2095
|
include Aws::Structure
|
2034
2096
|
end
|
2035
2097
|
|
@@ -2061,6 +2123,7 @@ module Aws::DataExchange
|
|
2061
2123
|
:data_set_id,
|
2062
2124
|
:description,
|
2063
2125
|
:name)
|
2126
|
+
SENSITIVE = []
|
2064
2127
|
include Aws::Structure
|
2065
2128
|
end
|
2066
2129
|
|
@@ -2124,6 +2187,7 @@ module Aws::DataExchange
|
|
2124
2187
|
:origin_details,
|
2125
2188
|
:source_id,
|
2126
2189
|
:updated_at)
|
2190
|
+
SENSITIVE = []
|
2127
2191
|
include Aws::Structure
|
2128
2192
|
end
|
2129
2193
|
|
@@ -2162,6 +2226,7 @@ module Aws::DataExchange
|
|
2162
2226
|
:data_set_id,
|
2163
2227
|
:finalized,
|
2164
2228
|
:revision_id)
|
2229
|
+
SENSITIVE = []
|
2165
2230
|
include Aws::Structure
|
2166
2231
|
end
|
2167
2232
|
|
@@ -2209,6 +2274,7 @@ module Aws::DataExchange
|
|
2209
2274
|
:id,
|
2210
2275
|
:source_id,
|
2211
2276
|
:updated_at)
|
2277
|
+
SENSITIVE = []
|
2212
2278
|
include Aws::Structure
|
2213
2279
|
end
|
2214
2280
|
|
@@ -2223,6 +2289,7 @@ module Aws::DataExchange
|
|
2223
2289
|
#
|
2224
2290
|
class ValidationException < Struct.new(
|
2225
2291
|
:message)
|
2292
|
+
SENSITIVE = []
|
2226
2293
|
include Aws::Structure
|
2227
2294
|
end
|
2228
2295
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-dataexchange
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.11.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2021-02-02 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|
@@ -19,7 +19,7 @@ dependencies:
|
|
19
19
|
version: '3'
|
20
20
|
- - ">="
|
21
21
|
- !ruby/object:Gem::Version
|
22
|
-
version: 3.
|
22
|
+
version: 3.112.0
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -29,7 +29,7 @@ dependencies:
|
|
29
29
|
version: '3'
|
30
30
|
- - ">="
|
31
31
|
- !ruby/object:Gem::Version
|
32
|
-
version: 3.
|
32
|
+
version: 3.112.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|