aws-sdk-snowball 1.29.0 → 1.34.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-snowball.rb +3 -2
- data/lib/aws-sdk-snowball/client.rb +23 -8
- data/lib/aws-sdk-snowball/customizations.rb +1 -0
- data/lib/aws-sdk-snowball/types.rb +64 -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: 638096bae5af776d2e9af1c80ae9c88fc5b0ab172137a24232c835b34bbeb51a
|
4
|
+
data.tar.gz: 51e619c03b7923dba99c873d4cffcce27d750ea02cb8eafa54ad7b07065cf77f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 48b6742761f332f20890d57b8f328471d168e7f38ea107bee5285512b854b1124fe32297489f42d2bac73b55194374f5377570d04fba2c27b5a83a9717757618
|
7
|
+
data.tar.gz: d43bc347fdc3a04a8dba18fc89797edb5c21943fd74d089b570f046b81994881b349713624c16a31382274087c5ebc053f53e5c6feac5a9fa2655e200311694d
|
data/lib/aws-sdk-snowball.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-snowball/customizations'
|
|
44
45
|
#
|
45
46
|
# See {Errors} for more information.
|
46
47
|
#
|
47
|
-
#
|
48
|
+
# @!group service
|
48
49
|
module Aws::Snowball
|
49
50
|
|
50
|
-
GEM_VERSION = '1.
|
51
|
+
GEM_VERSION = '1.34.0'
|
51
52
|
|
52
53
|
end
|
@@ -85,13 +85,28 @@ module Aws::Snowball
|
|
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::Snowball
|
|
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
|
@@ -1999,7 +2014,7 @@ module Aws::Snowball
|
|
1999
2014
|
params: params,
|
2000
2015
|
config: config)
|
2001
2016
|
context[:gem_name] = 'aws-sdk-snowball'
|
2002
|
-
context[:gem_version] = '1.
|
2017
|
+
context[:gem_version] = '1.34.0'
|
2003
2018
|
Seahorse::Client::Request.new(handlers, context)
|
2004
2019
|
end
|
2005
2020
|
|
@@ -116,6 +116,7 @@ module Aws::Snowball
|
|
116
116
|
:postal_code,
|
117
117
|
:phone_number,
|
118
118
|
:is_restricted)
|
119
|
+
SENSITIVE = []
|
119
120
|
include Aws::Structure
|
120
121
|
end
|
121
122
|
|
@@ -135,6 +136,7 @@ module Aws::Snowball
|
|
135
136
|
#
|
136
137
|
class CancelClusterRequest < Struct.new(
|
137
138
|
:cluster_id)
|
139
|
+
SENSITIVE = []
|
138
140
|
include Aws::Structure
|
139
141
|
end
|
140
142
|
|
@@ -158,6 +160,7 @@ module Aws::Snowball
|
|
158
160
|
#
|
159
161
|
class CancelJobRequest < Struct.new(
|
160
162
|
:job_id)
|
163
|
+
SENSITIVE = []
|
161
164
|
include Aws::Structure
|
162
165
|
end
|
163
166
|
|
@@ -177,6 +180,7 @@ module Aws::Snowball
|
|
177
180
|
#
|
178
181
|
class ClusterLimitExceededException < Struct.new(
|
179
182
|
:message)
|
183
|
+
SENSITIVE = []
|
180
184
|
include Aws::Structure
|
181
185
|
end
|
182
186
|
|
@@ -209,6 +213,7 @@ module Aws::Snowball
|
|
209
213
|
:cluster_state,
|
210
214
|
:creation_date,
|
211
215
|
:description)
|
216
|
+
SENSITIVE = []
|
212
217
|
include Aws::Structure
|
213
218
|
end
|
214
219
|
|
@@ -326,6 +331,7 @@ module Aws::Snowball
|
|
326
331
|
:notification,
|
327
332
|
:forwarding_address_id,
|
328
333
|
:tax_documents)
|
334
|
+
SENSITIVE = []
|
329
335
|
include Aws::Structure
|
330
336
|
end
|
331
337
|
|
@@ -347,6 +353,7 @@ module Aws::Snowball
|
|
347
353
|
class CompatibleImage < Struct.new(
|
348
354
|
:ami_id,
|
349
355
|
:name)
|
356
|
+
SENSITIVE = []
|
350
357
|
include Aws::Structure
|
351
358
|
end
|
352
359
|
|
@@ -380,6 +387,7 @@ module Aws::Snowball
|
|
380
387
|
#
|
381
388
|
class CreateAddressRequest < Struct.new(
|
382
389
|
:address)
|
390
|
+
SENSITIVE = []
|
383
391
|
include Aws::Structure
|
384
392
|
end
|
385
393
|
|
@@ -393,6 +401,7 @@ module Aws::Snowball
|
|
393
401
|
#
|
394
402
|
class CreateAddressResult < Struct.new(
|
395
403
|
:address_id)
|
404
|
+
SENSITIVE = []
|
396
405
|
include Aws::Structure
|
397
406
|
end
|
398
407
|
|
@@ -559,6 +568,7 @@ module Aws::Snowball
|
|
559
568
|
:notification,
|
560
569
|
:forwarding_address_id,
|
561
570
|
:tax_documents)
|
571
|
+
SENSITIVE = []
|
562
572
|
include Aws::Structure
|
563
573
|
end
|
564
574
|
|
@@ -570,6 +580,7 @@ module Aws::Snowball
|
|
570
580
|
#
|
571
581
|
class CreateClusterResult < Struct.new(
|
572
582
|
:cluster_id)
|
583
|
+
SENSITIVE = []
|
573
584
|
include Aws::Structure
|
574
585
|
end
|
575
586
|
|
@@ -766,6 +777,7 @@ module Aws::Snowball
|
|
766
777
|
:forwarding_address_id,
|
767
778
|
:tax_documents,
|
768
779
|
:device_configuration)
|
780
|
+
SENSITIVE = []
|
769
781
|
include Aws::Structure
|
770
782
|
end
|
771
783
|
|
@@ -778,6 +790,7 @@ module Aws::Snowball
|
|
778
790
|
#
|
779
791
|
class CreateJobResult < Struct.new(
|
780
792
|
:job_id)
|
793
|
+
SENSITIVE = []
|
781
794
|
include Aws::Structure
|
782
795
|
end
|
783
796
|
|
@@ -812,6 +825,7 @@ module Aws::Snowball
|
|
812
825
|
:objects_transferred,
|
813
826
|
:total_bytes,
|
814
827
|
:total_objects)
|
828
|
+
SENSITIVE = []
|
815
829
|
include Aws::Structure
|
816
830
|
end
|
817
831
|
|
@@ -830,6 +844,7 @@ module Aws::Snowball
|
|
830
844
|
#
|
831
845
|
class DescribeAddressRequest < Struct.new(
|
832
846
|
:address_id)
|
847
|
+
SENSITIVE = []
|
833
848
|
include Aws::Structure
|
834
849
|
end
|
835
850
|
|
@@ -842,6 +857,7 @@ module Aws::Snowball
|
|
842
857
|
#
|
843
858
|
class DescribeAddressResult < Struct.new(
|
844
859
|
:address)
|
860
|
+
SENSITIVE = []
|
845
861
|
include Aws::Structure
|
846
862
|
end
|
847
863
|
|
@@ -869,6 +885,7 @@ module Aws::Snowball
|
|
869
885
|
class DescribeAddressesRequest < Struct.new(
|
870
886
|
:max_results,
|
871
887
|
:next_token)
|
888
|
+
SENSITIVE = []
|
872
889
|
include Aws::Structure
|
873
890
|
end
|
874
891
|
|
@@ -887,6 +904,7 @@ module Aws::Snowball
|
|
887
904
|
class DescribeAddressesResult < Struct.new(
|
888
905
|
:addresses,
|
889
906
|
:next_token)
|
907
|
+
SENSITIVE = []
|
890
908
|
include Aws::Structure
|
891
909
|
end
|
892
910
|
|
@@ -905,6 +923,7 @@ module Aws::Snowball
|
|
905
923
|
#
|
906
924
|
class DescribeClusterRequest < Struct.new(
|
907
925
|
:cluster_id)
|
926
|
+
SENSITIVE = []
|
908
927
|
include Aws::Structure
|
909
928
|
end
|
910
929
|
|
@@ -917,6 +936,7 @@ module Aws::Snowball
|
|
917
936
|
#
|
918
937
|
class DescribeClusterResult < Struct.new(
|
919
938
|
:cluster_metadata)
|
939
|
+
SENSITIVE = []
|
920
940
|
include Aws::Structure
|
921
941
|
end
|
922
942
|
|
@@ -936,6 +956,7 @@ module Aws::Snowball
|
|
936
956
|
#
|
937
957
|
class DescribeJobRequest < Struct.new(
|
938
958
|
:job_id)
|
959
|
+
SENSITIVE = []
|
939
960
|
include Aws::Structure
|
940
961
|
end
|
941
962
|
|
@@ -955,6 +976,7 @@ module Aws::Snowball
|
|
955
976
|
class DescribeJobResult < Struct.new(
|
956
977
|
:job_metadata,
|
957
978
|
:sub_job_metadata)
|
979
|
+
SENSITIVE = []
|
958
980
|
include Aws::Structure
|
959
981
|
end
|
960
982
|
|
@@ -980,6 +1002,7 @@ module Aws::Snowball
|
|
980
1002
|
#
|
981
1003
|
class DeviceConfiguration < Struct.new(
|
982
1004
|
:snowcone_device_configuration)
|
1005
|
+
SENSITIVE = []
|
983
1006
|
include Aws::Structure
|
984
1007
|
end
|
985
1008
|
|
@@ -1009,6 +1032,7 @@ module Aws::Snowball
|
|
1009
1032
|
class Ec2AmiResource < Struct.new(
|
1010
1033
|
:ami_id,
|
1011
1034
|
:snowball_ami_id)
|
1035
|
+
SENSITIVE = []
|
1012
1036
|
include Aws::Structure
|
1013
1037
|
end
|
1014
1038
|
|
@@ -1022,6 +1046,7 @@ module Aws::Snowball
|
|
1022
1046
|
#
|
1023
1047
|
class Ec2RequestFailedException < Struct.new(
|
1024
1048
|
:message)
|
1049
|
+
SENSITIVE = []
|
1025
1050
|
include Aws::Structure
|
1026
1051
|
end
|
1027
1052
|
|
@@ -1043,6 +1068,7 @@ module Aws::Snowball
|
|
1043
1068
|
#
|
1044
1069
|
class EventTriggerDefinition < Struct.new(
|
1045
1070
|
:event_resource_arn)
|
1071
|
+
SENSITIVE = []
|
1046
1072
|
include Aws::Structure
|
1047
1073
|
end
|
1048
1074
|
|
@@ -1062,6 +1088,7 @@ module Aws::Snowball
|
|
1062
1088
|
#
|
1063
1089
|
class GetJobManifestRequest < Struct.new(
|
1064
1090
|
:job_id)
|
1091
|
+
SENSITIVE = []
|
1065
1092
|
include Aws::Structure
|
1066
1093
|
end
|
1067
1094
|
|
@@ -1074,6 +1101,7 @@ module Aws::Snowball
|
|
1074
1101
|
#
|
1075
1102
|
class GetJobManifestResult < Struct.new(
|
1076
1103
|
:manifest_uri)
|
1104
|
+
SENSITIVE = []
|
1077
1105
|
include Aws::Structure
|
1078
1106
|
end
|
1079
1107
|
|
@@ -1093,6 +1121,7 @@ module Aws::Snowball
|
|
1093
1121
|
#
|
1094
1122
|
class GetJobUnlockCodeRequest < Struct.new(
|
1095
1123
|
:job_id)
|
1124
|
+
SENSITIVE = []
|
1096
1125
|
include Aws::Structure
|
1097
1126
|
end
|
1098
1127
|
|
@@ -1105,6 +1134,7 @@ module Aws::Snowball
|
|
1105
1134
|
#
|
1106
1135
|
class GetJobUnlockCodeResult < Struct.new(
|
1107
1136
|
:unlock_code)
|
1137
|
+
SENSITIVE = []
|
1108
1138
|
include Aws::Structure
|
1109
1139
|
end
|
1110
1140
|
|
@@ -1128,6 +1158,7 @@ module Aws::Snowball
|
|
1128
1158
|
class GetSnowballUsageResult < Struct.new(
|
1129
1159
|
:snowball_limit,
|
1130
1160
|
:snowballs_in_use)
|
1161
|
+
SENSITIVE = []
|
1131
1162
|
include Aws::Structure
|
1132
1163
|
end
|
1133
1164
|
|
@@ -1147,6 +1178,7 @@ module Aws::Snowball
|
|
1147
1178
|
#
|
1148
1179
|
class GetSoftwareUpdatesRequest < Struct.new(
|
1149
1180
|
:job_id)
|
1181
|
+
SENSITIVE = []
|
1150
1182
|
include Aws::Structure
|
1151
1183
|
end
|
1152
1184
|
|
@@ -1162,6 +1194,7 @@ module Aws::Snowball
|
|
1162
1194
|
#
|
1163
1195
|
class GetSoftwareUpdatesResult < Struct.new(
|
1164
1196
|
:updates_uri)
|
1197
|
+
SENSITIVE = []
|
1165
1198
|
include Aws::Structure
|
1166
1199
|
end
|
1167
1200
|
|
@@ -1183,6 +1216,7 @@ module Aws::Snowball
|
|
1183
1216
|
#
|
1184
1217
|
class INDTaxDocuments < Struct.new(
|
1185
1218
|
:gstin)
|
1219
|
+
SENSITIVE = []
|
1186
1220
|
include Aws::Structure
|
1187
1221
|
end
|
1188
1222
|
|
@@ -1196,6 +1230,7 @@ module Aws::Snowball
|
|
1196
1230
|
#
|
1197
1231
|
class InvalidAddressException < Struct.new(
|
1198
1232
|
:message)
|
1233
|
+
SENSITIVE = []
|
1199
1234
|
include Aws::Structure
|
1200
1235
|
end
|
1201
1236
|
|
@@ -1210,6 +1245,7 @@ module Aws::Snowball
|
|
1210
1245
|
#
|
1211
1246
|
class InvalidInputCombinationException < Struct.new(
|
1212
1247
|
:message)
|
1248
|
+
SENSITIVE = []
|
1213
1249
|
include Aws::Structure
|
1214
1250
|
end
|
1215
1251
|
|
@@ -1223,6 +1259,7 @@ module Aws::Snowball
|
|
1223
1259
|
#
|
1224
1260
|
class InvalidJobStateException < Struct.new(
|
1225
1261
|
:message)
|
1262
|
+
SENSITIVE = []
|
1226
1263
|
include Aws::Structure
|
1227
1264
|
end
|
1228
1265
|
|
@@ -1237,6 +1274,7 @@ module Aws::Snowball
|
|
1237
1274
|
#
|
1238
1275
|
class InvalidNextTokenException < Struct.new(
|
1239
1276
|
:message)
|
1277
|
+
SENSITIVE = []
|
1240
1278
|
include Aws::Structure
|
1241
1279
|
end
|
1242
1280
|
|
@@ -1255,6 +1293,7 @@ module Aws::Snowball
|
|
1255
1293
|
class InvalidResourceException < Struct.new(
|
1256
1294
|
:message,
|
1257
1295
|
:resource_type)
|
1296
|
+
SENSITIVE = []
|
1258
1297
|
include Aws::Structure
|
1259
1298
|
end
|
1260
1299
|
|
@@ -1308,6 +1347,7 @@ module Aws::Snowball
|
|
1308
1347
|
:snowball_type,
|
1309
1348
|
:creation_date,
|
1310
1349
|
:description)
|
1350
|
+
SENSITIVE = []
|
1311
1351
|
include Aws::Structure
|
1312
1352
|
end
|
1313
1353
|
|
@@ -1355,6 +1395,7 @@ module Aws::Snowball
|
|
1355
1395
|
:job_completion_report_uri,
|
1356
1396
|
:job_success_log_uri,
|
1357
1397
|
:job_failure_log_uri)
|
1398
|
+
SENSITIVE = []
|
1358
1399
|
include Aws::Structure
|
1359
1400
|
end
|
1360
1401
|
|
@@ -1493,6 +1534,7 @@ module Aws::Snowball
|
|
1493
1534
|
:forwarding_address_id,
|
1494
1535
|
:tax_documents,
|
1495
1536
|
:device_configuration)
|
1537
|
+
SENSITIVE = []
|
1496
1538
|
include Aws::Structure
|
1497
1539
|
end
|
1498
1540
|
|
@@ -1549,6 +1591,7 @@ module Aws::Snowball
|
|
1549
1591
|
:s3_resources,
|
1550
1592
|
:lambda_resources,
|
1551
1593
|
:ec2_ami_resources)
|
1594
|
+
SENSITIVE = []
|
1552
1595
|
include Aws::Structure
|
1553
1596
|
end
|
1554
1597
|
|
@@ -1562,6 +1605,7 @@ module Aws::Snowball
|
|
1562
1605
|
#
|
1563
1606
|
class KMSRequestFailedException < Struct.new(
|
1564
1607
|
:message)
|
1608
|
+
SENSITIVE = []
|
1565
1609
|
include Aws::Structure
|
1566
1610
|
end
|
1567
1611
|
|
@@ -1593,6 +1637,7 @@ module Aws::Snowball
|
|
1593
1637
|
class KeyRange < Struct.new(
|
1594
1638
|
:begin_marker,
|
1595
1639
|
:end_marker)
|
1640
|
+
SENSITIVE = []
|
1596
1641
|
include Aws::Structure
|
1597
1642
|
end
|
1598
1643
|
|
@@ -1626,6 +1671,7 @@ module Aws::Snowball
|
|
1626
1671
|
class LambdaResource < Struct.new(
|
1627
1672
|
:lambda_arn,
|
1628
1673
|
:event_triggers)
|
1674
|
+
SENSITIVE = []
|
1629
1675
|
include Aws::Structure
|
1630
1676
|
end
|
1631
1677
|
|
@@ -1659,6 +1705,7 @@ module Aws::Snowball
|
|
1659
1705
|
:cluster_id,
|
1660
1706
|
:max_results,
|
1661
1707
|
:next_token)
|
1708
|
+
SENSITIVE = []
|
1662
1709
|
include Aws::Structure
|
1663
1710
|
end
|
1664
1711
|
|
@@ -1679,6 +1726,7 @@ module Aws::Snowball
|
|
1679
1726
|
class ListClusterJobsResult < Struct.new(
|
1680
1727
|
:job_list_entries,
|
1681
1728
|
:next_token)
|
1729
|
+
SENSITIVE = []
|
1682
1730
|
include Aws::Structure
|
1683
1731
|
end
|
1684
1732
|
|
@@ -1705,6 +1753,7 @@ module Aws::Snowball
|
|
1705
1753
|
class ListClustersRequest < Struct.new(
|
1706
1754
|
:max_results,
|
1707
1755
|
:next_token)
|
1756
|
+
SENSITIVE = []
|
1708
1757
|
include Aws::Structure
|
1709
1758
|
end
|
1710
1759
|
|
@@ -1724,6 +1773,7 @@ module Aws::Snowball
|
|
1724
1773
|
class ListClustersResult < Struct.new(
|
1725
1774
|
:cluster_list_entries,
|
1726
1775
|
:next_token)
|
1776
|
+
SENSITIVE = []
|
1727
1777
|
include Aws::Structure
|
1728
1778
|
end
|
1729
1779
|
|
@@ -1751,6 +1801,7 @@ module Aws::Snowball
|
|
1751
1801
|
class ListCompatibleImagesRequest < Struct.new(
|
1752
1802
|
:max_results,
|
1753
1803
|
:next_token)
|
1804
|
+
SENSITIVE = []
|
1754
1805
|
include Aws::Structure
|
1755
1806
|
end
|
1756
1807
|
|
@@ -1769,6 +1820,7 @@ module Aws::Snowball
|
|
1769
1820
|
class ListCompatibleImagesResult < Struct.new(
|
1770
1821
|
:compatible_images,
|
1771
1822
|
:next_token)
|
1823
|
+
SENSITIVE = []
|
1772
1824
|
include Aws::Structure
|
1773
1825
|
end
|
1774
1826
|
|
@@ -1795,6 +1847,7 @@ module Aws::Snowball
|
|
1795
1847
|
class ListJobsRequest < Struct.new(
|
1796
1848
|
:max_results,
|
1797
1849
|
:next_token)
|
1850
|
+
SENSITIVE = []
|
1798
1851
|
include Aws::Structure
|
1799
1852
|
end
|
1800
1853
|
|
@@ -1815,6 +1868,7 @@ module Aws::Snowball
|
|
1815
1868
|
class ListJobsResult < Struct.new(
|
1816
1869
|
:job_list_entries,
|
1817
1870
|
:next_token)
|
1871
|
+
SENSITIVE = []
|
1818
1872
|
include Aws::Structure
|
1819
1873
|
end
|
1820
1874
|
|
@@ -1868,6 +1922,7 @@ module Aws::Snowball
|
|
1868
1922
|
:sns_topic_arn,
|
1869
1923
|
:job_states_to_notify,
|
1870
1924
|
:notify_all)
|
1925
|
+
SENSITIVE = []
|
1871
1926
|
include Aws::Structure
|
1872
1927
|
end
|
1873
1928
|
|
@@ -1905,6 +1960,7 @@ module Aws::Snowball
|
|
1905
1960
|
class S3Resource < Struct.new(
|
1906
1961
|
:bucket_arn,
|
1907
1962
|
:key_range)
|
1963
|
+
SENSITIVE = []
|
1908
1964
|
include Aws::Structure
|
1909
1965
|
end
|
1910
1966
|
|
@@ -1929,6 +1985,7 @@ module Aws::Snowball
|
|
1929
1985
|
class Shipment < Struct.new(
|
1930
1986
|
:status,
|
1931
1987
|
:tracking_number)
|
1988
|
+
SENSITIVE = []
|
1932
1989
|
include Aws::Structure
|
1933
1990
|
end
|
1934
1991
|
|
@@ -1971,6 +2028,7 @@ module Aws::Snowball
|
|
1971
2028
|
:shipping_option,
|
1972
2029
|
:inbound_shipment,
|
1973
2030
|
:outbound_shipment)
|
2031
|
+
SENSITIVE = []
|
1974
2032
|
include Aws::Structure
|
1975
2033
|
end
|
1976
2034
|
|
@@ -1993,6 +2051,7 @@ module Aws::Snowball
|
|
1993
2051
|
#
|
1994
2052
|
class SnowconeDeviceConfiguration < Struct.new(
|
1995
2053
|
:wireless_connection)
|
2054
|
+
SENSITIVE = []
|
1996
2055
|
include Aws::Structure
|
1997
2056
|
end
|
1998
2057
|
|
@@ -2015,6 +2074,7 @@ module Aws::Snowball
|
|
2015
2074
|
#
|
2016
2075
|
class TaxDocuments < Struct.new(
|
2017
2076
|
:ind)
|
2077
|
+
SENSITIVE = []
|
2018
2078
|
include Aws::Structure
|
2019
2079
|
end
|
2020
2080
|
|
@@ -2029,6 +2089,7 @@ module Aws::Snowball
|
|
2029
2089
|
#
|
2030
2090
|
class UnsupportedAddressException < Struct.new(
|
2031
2091
|
:message)
|
2092
|
+
SENSITIVE = []
|
2032
2093
|
include Aws::Structure
|
2033
2094
|
end
|
2034
2095
|
|
@@ -2129,6 +2190,7 @@ module Aws::Snowball
|
|
2129
2190
|
:shipping_option,
|
2130
2191
|
:notification,
|
2131
2192
|
:forwarding_address_id)
|
2193
|
+
SENSITIVE = []
|
2132
2194
|
include Aws::Structure
|
2133
2195
|
end
|
2134
2196
|
|
@@ -2239,6 +2301,7 @@ module Aws::Snowball
|
|
2239
2301
|
:description,
|
2240
2302
|
:snowball_capacity_preference,
|
2241
2303
|
:forwarding_address_id)
|
2304
|
+
SENSITIVE = []
|
2242
2305
|
include Aws::Structure
|
2243
2306
|
end
|
2244
2307
|
|
@@ -2263,6 +2326,7 @@ module Aws::Snowball
|
|
2263
2326
|
#
|
2264
2327
|
class WirelessConnection < Struct.new(
|
2265
2328
|
:is_wifi_enabled)
|
2329
|
+
SENSITIVE = []
|
2266
2330
|
include Aws::Structure
|
2267
2331
|
end
|
2268
2332
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-snowball
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.34.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: 2020-
|
11
|
+
date: 2020-09-30 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.109.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.109.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|