aws-sdk-snowball 1.51.0 → 1.52.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 +8 -1
- data/VERSION +1 -1
- data/lib/aws-sdk-snowball/client.rb +1 -1
- data/lib/aws-sdk-snowball/endpoint_provider.rb +35 -95
- data/lib/aws-sdk-snowball/types.rb +0 -634
- data/lib/aws-sdk-snowball.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 314f5d60486b7777ddc7f7c4f3ad92711f9b056c679fcf4f87e2dd5099205a52
|
4
|
+
data.tar.gz: 2d6c0468c1be8321c6be1a4579369721ec2870f316d35085bf3d927af029ef45
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b450beb0103821493a3e41427eb28825fc5ddb2e22bcbc9aff7d2d595d07346610f34f7dabb2bc6bfa74d03a7dd77220d1ab5219e18d418c7ba24ab6ecb8aeb7
|
7
|
+
data.tar.gz: 1cf56aff7b06adca4b65cdff1fed77b62d11ab624182574132603e9da72df7c5650cf21ab5567079fa2472da9e5e5ea3639d034dedb1e42d987ddcd3df875de4
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,13 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.52.0 (2023-01-18)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
8
|
+
|
9
|
+
* Issue - Replace runtime endpoint resolution approach with generated ruby code.
|
10
|
+
|
4
11
|
1.51.0 (2022-10-25)
|
5
12
|
------------------
|
6
13
|
|
@@ -330,4 +337,4 @@ Unreleased Changes
|
|
330
337
|
1.0.0.rc1 (2016-12-05)
|
331
338
|
------------------
|
332
339
|
|
333
|
-
* Feature - Initial preview release of the `aws-sdk-snowball` gem.
|
340
|
+
* Feature - Initial preview release of the `aws-sdk-snowball` gem.
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.52.0
|
@@ -2563,7 +2563,7 @@ module Aws::Snowball
|
|
2563
2563
|
params: params,
|
2564
2564
|
config: config)
|
2565
2565
|
context[:gem_name] = 'aws-sdk-snowball'
|
2566
|
-
context[:gem_version] = '1.
|
2566
|
+
context[:gem_version] = '1.52.0'
|
2567
2567
|
Seahorse::Client::Request.new(handlers, context)
|
2568
2568
|
end
|
2569
2569
|
|
@@ -9,103 +9,43 @@
|
|
9
9
|
|
10
10
|
module Aws::Snowball
|
11
11
|
class EndpointProvider
|
12
|
-
def
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
12
|
+
def resolve_endpoint(parameters)
|
13
|
+
region = parameters.region
|
14
|
+
use_dual_stack = parameters.use_dual_stack
|
15
|
+
use_fips = parameters.use_fips
|
16
|
+
endpoint = parameters.endpoint
|
17
|
+
if (partition_result = Aws::Endpoints::Matchers.aws_partition(region))
|
18
|
+
if Aws::Endpoints::Matchers.set?(endpoint) && (url = Aws::Endpoints::Matchers.parse_url(endpoint))
|
19
|
+
if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
|
20
|
+
raise ArgumentError, "Invalid Configuration: FIPS and custom endpoint are not supported"
|
21
|
+
end
|
22
|
+
if Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
|
23
|
+
raise ArgumentError, "Invalid Configuration: Dualstack and custom endpoint are not supported"
|
24
|
+
end
|
25
|
+
return Aws::Endpoints::Endpoint.new(url: endpoint, headers: {}, properties: {})
|
26
|
+
end
|
27
|
+
if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true) && Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
|
28
|
+
if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS")) && Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
|
29
|
+
return Aws::Endpoints::Endpoint.new(url: "https://snowball-fips.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
|
30
|
+
end
|
31
|
+
raise ArgumentError, "FIPS and DualStack are enabled, but this partition does not support one or both"
|
32
|
+
end
|
33
|
+
if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
|
34
|
+
if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"))
|
35
|
+
return Aws::Endpoints::Endpoint.new(url: "https://snowball-fips.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
|
36
|
+
end
|
37
|
+
raise ArgumentError, "FIPS is enabled but this partition does not support FIPS"
|
38
|
+
end
|
39
|
+
if Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
|
40
|
+
if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
|
41
|
+
return Aws::Endpoints::Endpoint.new(url: "https://snowball.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
|
42
|
+
end
|
43
|
+
raise ArgumentError, "DualStack is enabled but this partition does not support DualStack"
|
44
|
+
end
|
45
|
+
return Aws::Endpoints::Endpoint.new(url: "https://snowball.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
|
21
46
|
end
|
22
|
-
|
23
|
-
end
|
47
|
+
raise ArgumentError, 'No endpoint could be resolved'
|
24
48
|
|
25
|
-
def resolve_endpoint(parameters)
|
26
|
-
@provider.resolve_endpoint(parameters)
|
27
49
|
end
|
28
|
-
|
29
|
-
# @api private
|
30
|
-
RULES = <<-JSON
|
31
|
-
eyJ2ZXJzaW9uIjoiMS4wIiwicGFyYW1ldGVycyI6eyJSZWdpb24iOnsiYnVp
|
32
|
-
bHRJbiI6IkFXUzo6UmVnaW9uIiwicmVxdWlyZWQiOmZhbHNlLCJkb2N1bWVu
|
33
|
-
dGF0aW9uIjoiVGhlIEFXUyByZWdpb24gdXNlZCB0byBkaXNwYXRjaCB0aGUg
|
34
|
-
cmVxdWVzdC4iLCJ0eXBlIjoiU3RyaW5nIn0sIlVzZUR1YWxTdGFjayI6eyJi
|
35
|
-
dWlsdEluIjoiQVdTOjpVc2VEdWFsU3RhY2siLCJyZXF1aXJlZCI6dHJ1ZSwi
|
36
|
-
ZGVmYXVsdCI6ZmFsc2UsImRvY3VtZW50YXRpb24iOiJXaGVuIHRydWUsIHVz
|
37
|
-
ZSB0aGUgZHVhbC1zdGFjayBlbmRwb2ludC4gSWYgdGhlIGNvbmZpZ3VyZWQg
|
38
|
-
ZW5kcG9pbnQgZG9lcyBub3Qgc3VwcG9ydCBkdWFsLXN0YWNrLCBkaXNwYXRj
|
39
|
-
aGluZyB0aGUgcmVxdWVzdCBNQVkgcmV0dXJuIGFuIGVycm9yLiIsInR5cGUi
|
40
|
-
OiJCb29sZWFuIn0sIlVzZUZJUFMiOnsiYnVpbHRJbiI6IkFXUzo6VXNlRklQ
|
41
|
-
UyIsInJlcXVpcmVkIjp0cnVlLCJkZWZhdWx0IjpmYWxzZSwiZG9jdW1lbnRh
|
42
|
-
dGlvbiI6IldoZW4gdHJ1ZSwgc2VuZCB0aGlzIHJlcXVlc3QgdG8gdGhlIEZJ
|
43
|
-
UFMtY29tcGxpYW50IHJlZ2lvbmFsIGVuZHBvaW50LiBJZiB0aGUgY29uZmln
|
44
|
-
dXJlZCBlbmRwb2ludCBkb2VzIG5vdCBoYXZlIGEgRklQUyBjb21wbGlhbnQg
|
45
|
-
ZW5kcG9pbnQsIGRpc3BhdGNoaW5nIHRoZSByZXF1ZXN0IHdpbGwgcmV0dXJu
|
46
|
-
IGFuIGVycm9yLiIsInR5cGUiOiJCb29sZWFuIn0sIkVuZHBvaW50Ijp7ImJ1
|
47
|
-
aWx0SW4iOiJTREs6OkVuZHBvaW50IiwicmVxdWlyZWQiOmZhbHNlLCJkb2N1
|
48
|
-
bWVudGF0aW9uIjoiT3ZlcnJpZGUgdGhlIGVuZHBvaW50IHVzZWQgdG8gc2Vu
|
49
|
-
ZCB0aGlzIHJlcXVlc3QiLCJ0eXBlIjoiU3RyaW5nIn19LCJydWxlcyI6W3si
|
50
|
-
Y29uZGl0aW9ucyI6W3siZm4iOiJhd3MucGFydGl0aW9uIiwiYXJndiI6W3si
|
51
|
-
cmVmIjoiUmVnaW9uIn1dLCJhc3NpZ24iOiJQYXJ0aXRpb25SZXN1bHQifV0s
|
52
|
-
InR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRpdGlvbnMiOlt7ImZuIjoi
|
53
|
-
aXNTZXQiLCJhcmd2IjpbeyJyZWYiOiJFbmRwb2ludCJ9XX0seyJmbiI6InBh
|
54
|
-
cnNlVVJMIiwiYXJndiI6W3sicmVmIjoiRW5kcG9pbnQifV0sImFzc2lnbiI6
|
55
|
-
InVybCJ9XSwidHlwZSI6InRyZWUiLCJydWxlcyI6W3siY29uZGl0aW9ucyI6
|
56
|
-
W3siZm4iOiJib29sZWFuRXF1YWxzIiwiYXJndiI6W3sicmVmIjoiVXNlRklQ
|
57
|
-
UyJ9LHRydWVdfV0sImVycm9yIjoiSW52YWxpZCBDb25maWd1cmF0aW9uOiBG
|
58
|
-
SVBTIGFuZCBjdXN0b20gZW5kcG9pbnQgYXJlIG5vdCBzdXBwb3J0ZWQiLCJ0
|
59
|
-
eXBlIjoiZXJyb3IifSx7ImNvbmRpdGlvbnMiOltdLCJ0eXBlIjoidHJlZSIs
|
60
|
-
InJ1bGVzIjpbeyJjb25kaXRpb25zIjpbeyJmbiI6ImJvb2xlYW5FcXVhbHMi
|
61
|
-
LCJhcmd2IjpbeyJyZWYiOiJVc2VEdWFsU3RhY2sifSx0cnVlXX1dLCJlcnJv
|
62
|
-
ciI6IkludmFsaWQgQ29uZmlndXJhdGlvbjogRHVhbHN0YWNrIGFuZCBjdXN0
|
63
|
-
b20gZW5kcG9pbnQgYXJlIG5vdCBzdXBwb3J0ZWQiLCJ0eXBlIjoiZXJyb3Ii
|
64
|
-
fSx7ImNvbmRpdGlvbnMiOltdLCJlbmRwb2ludCI6eyJ1cmwiOnsicmVmIjoi
|
65
|
-
RW5kcG9pbnQifSwicHJvcGVydGllcyI6e30sImhlYWRlcnMiOnt9fSwidHlw
|
66
|
-
ZSI6ImVuZHBvaW50In1dfV19LHsiY29uZGl0aW9ucyI6W3siZm4iOiJib29s
|
67
|
-
ZWFuRXF1YWxzIiwiYXJndiI6W3sicmVmIjoiVXNlRklQUyJ9LHRydWVdfSx7
|
68
|
-
ImZuIjoiYm9vbGVhbkVxdWFscyIsImFyZ3YiOlt7InJlZiI6IlVzZUR1YWxT
|
69
|
-
dGFjayJ9LHRydWVdfV0sInR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRp
|
70
|
-
dGlvbnMiOlt7ImZuIjoiYm9vbGVhbkVxdWFscyIsImFyZ3YiOlt0cnVlLHsi
|
71
|
-
Zm4iOiJnZXRBdHRyIiwiYXJndiI6W3sicmVmIjoiUGFydGl0aW9uUmVzdWx0
|
72
|
-
In0sInN1cHBvcnRzRklQUyJdfV19LHsiZm4iOiJib29sZWFuRXF1YWxzIiwi
|
73
|
-
YXJndiI6W3RydWUseyJmbiI6ImdldEF0dHIiLCJhcmd2IjpbeyJyZWYiOiJQ
|
74
|
-
YXJ0aXRpb25SZXN1bHQifSwic3VwcG9ydHNEdWFsU3RhY2siXX1dfV0sInR5
|
75
|
-
cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRpdGlvbnMiOltdLCJlbmRwb2lu
|
76
|
-
dCI6eyJ1cmwiOiJodHRwczovL3Nub3diYWxsLWZpcHMue1JlZ2lvbn0ue1Bh
|
77
|
-
cnRpdGlvblJlc3VsdCNkdWFsU3RhY2tEbnNTdWZmaXh9IiwicHJvcGVydGll
|
78
|
-
cyI6e30sImhlYWRlcnMiOnt9fSwidHlwZSI6ImVuZHBvaW50In1dfSx7ImNv
|
79
|
-
bmRpdGlvbnMiOltdLCJlcnJvciI6IkZJUFMgYW5kIER1YWxTdGFjayBhcmUg
|
80
|
-
ZW5hYmxlZCwgYnV0IHRoaXMgcGFydGl0aW9uIGRvZXMgbm90IHN1cHBvcnQg
|
81
|
-
b25lIG9yIGJvdGgiLCJ0eXBlIjoiZXJyb3IifV19LHsiY29uZGl0aW9ucyI6
|
82
|
-
W3siZm4iOiJib29sZWFuRXF1YWxzIiwiYXJndiI6W3sicmVmIjoiVXNlRklQ
|
83
|
-
UyJ9LHRydWVdfV0sInR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRpdGlv
|
84
|
-
bnMiOlt7ImZuIjoiYm9vbGVhbkVxdWFscyIsImFyZ3YiOlt0cnVlLHsiZm4i
|
85
|
-
OiJnZXRBdHRyIiwiYXJndiI6W3sicmVmIjoiUGFydGl0aW9uUmVzdWx0In0s
|
86
|
-
InN1cHBvcnRzRklQUyJdfV19XSwidHlwZSI6InRyZWUiLCJydWxlcyI6W3si
|
87
|
-
Y29uZGl0aW9ucyI6W10sInR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRp
|
88
|
-
dGlvbnMiOltdLCJlbmRwb2ludCI6eyJ1cmwiOiJodHRwczovL3Nub3diYWxs
|
89
|
-
LWZpcHMue1JlZ2lvbn0ue1BhcnRpdGlvblJlc3VsdCNkbnNTdWZmaXh9Iiwi
|
90
|
-
cHJvcGVydGllcyI6e30sImhlYWRlcnMiOnt9fSwidHlwZSI6ImVuZHBvaW50
|
91
|
-
In1dfV19LHsiY29uZGl0aW9ucyI6W10sImVycm9yIjoiRklQUyBpcyBlbmFi
|
92
|
-
bGVkIGJ1dCB0aGlzIHBhcnRpdGlvbiBkb2VzIG5vdCBzdXBwb3J0IEZJUFMi
|
93
|
-
LCJ0eXBlIjoiZXJyb3IifV19LHsiY29uZGl0aW9ucyI6W3siZm4iOiJib29s
|
94
|
-
ZWFuRXF1YWxzIiwiYXJndiI6W3sicmVmIjoiVXNlRHVhbFN0YWNrIn0sdHJ1
|
95
|
-
ZV19XSwidHlwZSI6InRyZWUiLCJydWxlcyI6W3siY29uZGl0aW9ucyI6W3si
|
96
|
-
Zm4iOiJib29sZWFuRXF1YWxzIiwiYXJndiI6W3RydWUseyJmbiI6ImdldEF0
|
97
|
-
dHIiLCJhcmd2IjpbeyJyZWYiOiJQYXJ0aXRpb25SZXN1bHQifSwic3VwcG9y
|
98
|
-
dHNEdWFsU3RhY2siXX1dfV0sInR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNv
|
99
|
-
bmRpdGlvbnMiOltdLCJlbmRwb2ludCI6eyJ1cmwiOiJodHRwczovL3Nub3di
|
100
|
-
YWxsLntSZWdpb259LntQYXJ0aXRpb25SZXN1bHQjZHVhbFN0YWNrRG5zU3Vm
|
101
|
-
Zml4fSIsInByb3BlcnRpZXMiOnt9LCJoZWFkZXJzIjp7fX0sInR5cGUiOiJl
|
102
|
-
bmRwb2ludCJ9XX0seyJjb25kaXRpb25zIjpbXSwiZXJyb3IiOiJEdWFsU3Rh
|
103
|
-
Y2sgaXMgZW5hYmxlZCBidXQgdGhpcyBwYXJ0aXRpb24gZG9lcyBub3Qgc3Vw
|
104
|
-
cG9ydCBEdWFsU3RhY2siLCJ0eXBlIjoiZXJyb3IifV19LHsiY29uZGl0aW9u
|
105
|
-
cyI6W10sImVuZHBvaW50Ijp7InVybCI6Imh0dHBzOi8vc25vd2JhbGwue1Jl
|
106
|
-
Z2lvbn0ue1BhcnRpdGlvblJlc3VsdCNkbnNTdWZmaXh9IiwicHJvcGVydGll
|
107
|
-
cyI6e30sImhlYWRlcnMiOnt9fSwidHlwZSI6ImVuZHBvaW50In1dfV19
|
108
|
-
|
109
|
-
JSON
|
110
50
|
end
|
111
51
|
end
|
@@ -17,26 +17,6 @@ module Aws::Snowball
|
|
17
17
|
# the `Address` are required, if the address is invalid or unsupported,
|
18
18
|
# then an exception is thrown.
|
19
19
|
#
|
20
|
-
# @note When making an API call, you may pass Address
|
21
|
-
# data as a hash:
|
22
|
-
#
|
23
|
-
# {
|
24
|
-
# address_id: "AddressId",
|
25
|
-
# name: "String",
|
26
|
-
# company: "String",
|
27
|
-
# street_1: "String",
|
28
|
-
# street_2: "String",
|
29
|
-
# street_3: "String",
|
30
|
-
# city: "String",
|
31
|
-
# state_or_province: "String",
|
32
|
-
# prefecture_or_district: "String",
|
33
|
-
# landmark: "String",
|
34
|
-
# country: "String",
|
35
|
-
# postal_code: "String",
|
36
|
-
# phone_number: "String",
|
37
|
-
# is_restricted: false,
|
38
|
-
# }
|
39
|
-
#
|
40
20
|
# @!attribute [rw] address_id
|
41
21
|
# The unique ID for an address.
|
42
22
|
# @return [String]
|
@@ -121,13 +101,6 @@ module Aws::Snowball
|
|
121
101
|
include Aws::Structure
|
122
102
|
end
|
123
103
|
|
124
|
-
# @note When making an API call, you may pass CancelClusterRequest
|
125
|
-
# data as a hash:
|
126
|
-
#
|
127
|
-
# {
|
128
|
-
# cluster_id: "ClusterId", # required
|
129
|
-
# }
|
130
|
-
#
|
131
104
|
# @!attribute [rw] cluster_id
|
132
105
|
# The 39-character ID for the cluster that you want to cancel, for
|
133
106
|
# example `CID123e4567-e89b-12d3-a456-426655440000`.
|
@@ -145,13 +118,6 @@ module Aws::Snowball
|
|
145
118
|
#
|
146
119
|
class CancelClusterResult < Aws::EmptyStructure; end
|
147
120
|
|
148
|
-
# @note When making an API call, you may pass CancelJobRequest
|
149
|
-
# data as a hash:
|
150
|
-
#
|
151
|
-
# {
|
152
|
-
# job_id: "JobId", # required
|
153
|
-
# }
|
154
|
-
#
|
155
121
|
# @!attribute [rw] job_id
|
156
122
|
# The 39-character job ID for the job that you want to cancel, for
|
157
123
|
# example `JID123e4567-e89b-12d3-a456-426655440000`.
|
@@ -383,28 +349,6 @@ module Aws::Snowball
|
|
383
349
|
include Aws::Structure
|
384
350
|
end
|
385
351
|
|
386
|
-
# @note When making an API call, you may pass CreateAddressRequest
|
387
|
-
# data as a hash:
|
388
|
-
#
|
389
|
-
# {
|
390
|
-
# address: { # required
|
391
|
-
# address_id: "AddressId",
|
392
|
-
# name: "String",
|
393
|
-
# company: "String",
|
394
|
-
# street_1: "String",
|
395
|
-
# street_2: "String",
|
396
|
-
# street_3: "String",
|
397
|
-
# city: "String",
|
398
|
-
# state_or_province: "String",
|
399
|
-
# prefecture_or_district: "String",
|
400
|
-
# landmark: "String",
|
401
|
-
# country: "String",
|
402
|
-
# postal_code: "String",
|
403
|
-
# phone_number: "String",
|
404
|
-
# is_restricted: false,
|
405
|
-
# },
|
406
|
-
# }
|
407
|
-
#
|
408
352
|
# @!attribute [rw] address
|
409
353
|
# The address that you want the Snow device shipped to.
|
410
354
|
# @return [Types::Address]
|
@@ -431,74 +375,6 @@ module Aws::Snowball
|
|
431
375
|
include Aws::Structure
|
432
376
|
end
|
433
377
|
|
434
|
-
# @note When making an API call, you may pass CreateClusterRequest
|
435
|
-
# data as a hash:
|
436
|
-
#
|
437
|
-
# {
|
438
|
-
# job_type: "IMPORT", # required, accepts IMPORT, EXPORT, LOCAL_USE
|
439
|
-
# resources: { # required
|
440
|
-
# s3_resources: [
|
441
|
-
# {
|
442
|
-
# bucket_arn: "ResourceARN",
|
443
|
-
# key_range: {
|
444
|
-
# begin_marker: "String",
|
445
|
-
# end_marker: "String",
|
446
|
-
# },
|
447
|
-
# target_on_device_services: [
|
448
|
-
# {
|
449
|
-
# service_name: "NFS_ON_DEVICE_SERVICE", # accepts NFS_ON_DEVICE_SERVICE, S3_ON_DEVICE_SERVICE
|
450
|
-
# transfer_option: "IMPORT", # accepts IMPORT, EXPORT, LOCAL_USE
|
451
|
-
# },
|
452
|
-
# ],
|
453
|
-
# },
|
454
|
-
# ],
|
455
|
-
# lambda_resources: [
|
456
|
-
# {
|
457
|
-
# lambda_arn: "ResourceARN",
|
458
|
-
# event_triggers: [
|
459
|
-
# {
|
460
|
-
# event_resource_arn: "ResourceARN",
|
461
|
-
# },
|
462
|
-
# ],
|
463
|
-
# },
|
464
|
-
# ],
|
465
|
-
# ec2_ami_resources: [
|
466
|
-
# {
|
467
|
-
# ami_id: "AmiId", # required
|
468
|
-
# snowball_ami_id: "String",
|
469
|
-
# },
|
470
|
-
# ],
|
471
|
-
# },
|
472
|
-
# on_device_service_configuration: {
|
473
|
-
# nfs_on_device_service: {
|
474
|
-
# storage_limit: 1,
|
475
|
-
# storage_unit: "TB", # accepts TB
|
476
|
-
# },
|
477
|
-
# tgw_on_device_service: {
|
478
|
-
# storage_limit: 1,
|
479
|
-
# storage_unit: "TB", # accepts TB
|
480
|
-
# },
|
481
|
-
# },
|
482
|
-
# description: "String",
|
483
|
-
# address_id: "AddressId", # required
|
484
|
-
# kms_key_arn: "KmsKeyARN",
|
485
|
-
# role_arn: "RoleARN", # required
|
486
|
-
# snowball_type: "STANDARD", # required, accepts STANDARD, EDGE, EDGE_C, EDGE_CG, EDGE_S, SNC1_HDD, SNC1_SSD, V3_5C
|
487
|
-
# shipping_option: "SECOND_DAY", # required, accepts SECOND_DAY, NEXT_DAY, EXPRESS, STANDARD
|
488
|
-
# notification: {
|
489
|
-
# sns_topic_arn: "SnsTopicARN",
|
490
|
-
# job_states_to_notify: ["New"], # accepts New, PreparingAppliance, PreparingShipment, InTransitToCustomer, WithCustomer, InTransitToAWS, WithAWSSortingFacility, WithAWS, InProgress, Complete, Cancelled, Listing, Pending
|
491
|
-
# notify_all: false,
|
492
|
-
# },
|
493
|
-
# forwarding_address_id: "AddressId",
|
494
|
-
# tax_documents: {
|
495
|
-
# ind: {
|
496
|
-
# gstin: "GSTIN",
|
497
|
-
# },
|
498
|
-
# },
|
499
|
-
# remote_management: "INSTALLED_ONLY", # accepts INSTALLED_ONLY, INSTALLED_AUTOSTART
|
500
|
-
# }
|
501
|
-
#
|
502
378
|
# @!attribute [rw] job_type
|
503
379
|
# The type of job for this cluster. Currently, the only job type
|
504
380
|
# supported for clusters is `LOCAL_USE`.
|
@@ -656,84 +532,6 @@ module Aws::Snowball
|
|
656
532
|
include Aws::Structure
|
657
533
|
end
|
658
534
|
|
659
|
-
# @note When making an API call, you may pass CreateJobRequest
|
660
|
-
# data as a hash:
|
661
|
-
#
|
662
|
-
# {
|
663
|
-
# job_type: "IMPORT", # accepts IMPORT, EXPORT, LOCAL_USE
|
664
|
-
# resources: {
|
665
|
-
# s3_resources: [
|
666
|
-
# {
|
667
|
-
# bucket_arn: "ResourceARN",
|
668
|
-
# key_range: {
|
669
|
-
# begin_marker: "String",
|
670
|
-
# end_marker: "String",
|
671
|
-
# },
|
672
|
-
# target_on_device_services: [
|
673
|
-
# {
|
674
|
-
# service_name: "NFS_ON_DEVICE_SERVICE", # accepts NFS_ON_DEVICE_SERVICE, S3_ON_DEVICE_SERVICE
|
675
|
-
# transfer_option: "IMPORT", # accepts IMPORT, EXPORT, LOCAL_USE
|
676
|
-
# },
|
677
|
-
# ],
|
678
|
-
# },
|
679
|
-
# ],
|
680
|
-
# lambda_resources: [
|
681
|
-
# {
|
682
|
-
# lambda_arn: "ResourceARN",
|
683
|
-
# event_triggers: [
|
684
|
-
# {
|
685
|
-
# event_resource_arn: "ResourceARN",
|
686
|
-
# },
|
687
|
-
# ],
|
688
|
-
# },
|
689
|
-
# ],
|
690
|
-
# ec2_ami_resources: [
|
691
|
-
# {
|
692
|
-
# ami_id: "AmiId", # required
|
693
|
-
# snowball_ami_id: "String",
|
694
|
-
# },
|
695
|
-
# ],
|
696
|
-
# },
|
697
|
-
# on_device_service_configuration: {
|
698
|
-
# nfs_on_device_service: {
|
699
|
-
# storage_limit: 1,
|
700
|
-
# storage_unit: "TB", # accepts TB
|
701
|
-
# },
|
702
|
-
# tgw_on_device_service: {
|
703
|
-
# storage_limit: 1,
|
704
|
-
# storage_unit: "TB", # accepts TB
|
705
|
-
# },
|
706
|
-
# },
|
707
|
-
# description: "String",
|
708
|
-
# address_id: "AddressId",
|
709
|
-
# kms_key_arn: "KmsKeyARN",
|
710
|
-
# role_arn: "RoleARN",
|
711
|
-
# snowball_capacity_preference: "T50", # accepts T50, T80, T100, T42, T98, T8, T14, NoPreference, T32
|
712
|
-
# shipping_option: "SECOND_DAY", # accepts SECOND_DAY, NEXT_DAY, EXPRESS, STANDARD
|
713
|
-
# notification: {
|
714
|
-
# sns_topic_arn: "SnsTopicARN",
|
715
|
-
# job_states_to_notify: ["New"], # accepts New, PreparingAppliance, PreparingShipment, InTransitToCustomer, WithCustomer, InTransitToAWS, WithAWSSortingFacility, WithAWS, InProgress, Complete, Cancelled, Listing, Pending
|
716
|
-
# notify_all: false,
|
717
|
-
# },
|
718
|
-
# cluster_id: "ClusterId",
|
719
|
-
# snowball_type: "STANDARD", # accepts STANDARD, EDGE, EDGE_C, EDGE_CG, EDGE_S, SNC1_HDD, SNC1_SSD, V3_5C
|
720
|
-
# forwarding_address_id: "AddressId",
|
721
|
-
# tax_documents: {
|
722
|
-
# ind: {
|
723
|
-
# gstin: "GSTIN",
|
724
|
-
# },
|
725
|
-
# },
|
726
|
-
# device_configuration: {
|
727
|
-
# snowcone_device_configuration: {
|
728
|
-
# wireless_connection: {
|
729
|
-
# is_wifi_enabled: false,
|
730
|
-
# },
|
731
|
-
# },
|
732
|
-
# },
|
733
|
-
# remote_management: "INSTALLED_ONLY", # accepts INSTALLED_ONLY, INSTALLED_AUTOSTART
|
734
|
-
# long_term_pricing_id: "LongTermPricingId",
|
735
|
-
# }
|
736
|
-
#
|
737
535
|
# @!attribute [rw] job_type
|
738
536
|
# Defines the type of job that you're creating.
|
739
537
|
# @return [String]
|
@@ -926,15 +724,6 @@ module Aws::Snowball
|
|
926
724
|
include Aws::Structure
|
927
725
|
end
|
928
726
|
|
929
|
-
# @note When making an API call, you may pass CreateLongTermPricingRequest
|
930
|
-
# data as a hash:
|
931
|
-
#
|
932
|
-
# {
|
933
|
-
# long_term_pricing_type: "OneYear", # required, accepts OneYear, ThreeYear
|
934
|
-
# is_long_term_pricing_auto_renew: false,
|
935
|
-
# snowball_type: "STANDARD", # accepts STANDARD, EDGE, EDGE_C, EDGE_CG, EDGE_S, SNC1_HDD, SNC1_SSD, V3_5C
|
936
|
-
# }
|
937
|
-
#
|
938
727
|
# @!attribute [rw] long_term_pricing_type
|
939
728
|
# The type of long-term pricing option you want for the device, either
|
940
729
|
# 1-year or 3-year long-term pricing.
|
@@ -974,14 +763,6 @@ module Aws::Snowball
|
|
974
763
|
include Aws::Structure
|
975
764
|
end
|
976
765
|
|
977
|
-
# @note When making an API call, you may pass CreateReturnShippingLabelRequest
|
978
|
-
# data as a hash:
|
979
|
-
#
|
980
|
-
# {
|
981
|
-
# job_id: "JobId", # required
|
982
|
-
# shipping_option: "SECOND_DAY", # accepts SECOND_DAY, NEXT_DAY, EXPRESS, STANDARD
|
983
|
-
# }
|
984
|
-
#
|
985
766
|
# @!attribute [rw] job_id
|
986
767
|
# The ID for a job that you want to create the return shipping label
|
987
768
|
# for; for example, `JID123e4567-e89b-12d3-a456-426655440000`.
|
@@ -1053,13 +834,6 @@ module Aws::Snowball
|
|
1053
834
|
include Aws::Structure
|
1054
835
|
end
|
1055
836
|
|
1056
|
-
# @note When making an API call, you may pass DescribeAddressRequest
|
1057
|
-
# data as a hash:
|
1058
|
-
#
|
1059
|
-
# {
|
1060
|
-
# address_id: "AddressId", # required
|
1061
|
-
# }
|
1062
|
-
#
|
1063
837
|
# @!attribute [rw] address_id
|
1064
838
|
# The automatically generated ID for a specific address.
|
1065
839
|
# @return [String]
|
@@ -1085,14 +859,6 @@ module Aws::Snowball
|
|
1085
859
|
include Aws::Structure
|
1086
860
|
end
|
1087
861
|
|
1088
|
-
# @note When making an API call, you may pass DescribeAddressesRequest
|
1089
|
-
# data as a hash:
|
1090
|
-
#
|
1091
|
-
# {
|
1092
|
-
# max_results: 1,
|
1093
|
-
# next_token: "String",
|
1094
|
-
# }
|
1095
|
-
#
|
1096
862
|
# @!attribute [rw] max_results
|
1097
863
|
# The number of `ADDRESS` objects to return.
|
1098
864
|
# @return [Integer]
|
@@ -1133,13 +899,6 @@ module Aws::Snowball
|
|
1133
899
|
include Aws::Structure
|
1134
900
|
end
|
1135
901
|
|
1136
|
-
# @note When making an API call, you may pass DescribeClusterRequest
|
1137
|
-
# data as a hash:
|
1138
|
-
#
|
1139
|
-
# {
|
1140
|
-
# cluster_id: "ClusterId", # required
|
1141
|
-
# }
|
1142
|
-
#
|
1143
902
|
# @!attribute [rw] cluster_id
|
1144
903
|
# The automatically generated ID for a cluster.
|
1145
904
|
# @return [String]
|
@@ -1165,13 +924,6 @@ module Aws::Snowball
|
|
1165
924
|
include Aws::Structure
|
1166
925
|
end
|
1167
926
|
|
1168
|
-
# @note When making an API call, you may pass DescribeJobRequest
|
1169
|
-
# data as a hash:
|
1170
|
-
#
|
1171
|
-
# {
|
1172
|
-
# job_id: "JobId", # required
|
1173
|
-
# }
|
1174
|
-
#
|
1175
927
|
# @!attribute [rw] job_id
|
1176
928
|
# The automatically generated ID for a job, for example
|
1177
929
|
# `JID123e4567-e89b-12d3-a456-426655440000`.
|
@@ -1205,13 +957,6 @@ module Aws::Snowball
|
|
1205
957
|
include Aws::Structure
|
1206
958
|
end
|
1207
959
|
|
1208
|
-
# @note When making an API call, you may pass DescribeReturnShippingLabelRequest
|
1209
|
-
# data as a hash:
|
1210
|
-
#
|
1211
|
-
# {
|
1212
|
-
# job_id: "JobId", # required
|
1213
|
-
# }
|
1214
|
-
#
|
1215
960
|
# @!attribute [rw] job_id
|
1216
961
|
# The automatically generated ID for a job, for example
|
1217
962
|
# `JID123e4567-e89b-12d3-a456-426655440000`.
|
@@ -1251,17 +996,6 @@ module Aws::Snowball
|
|
1251
996
|
|
1252
997
|
# The container for `SnowconeDeviceConfiguration`.
|
1253
998
|
#
|
1254
|
-
# @note When making an API call, you may pass DeviceConfiguration
|
1255
|
-
# data as a hash:
|
1256
|
-
#
|
1257
|
-
# {
|
1258
|
-
# snowcone_device_configuration: {
|
1259
|
-
# wireless_connection: {
|
1260
|
-
# is_wifi_enabled: false,
|
1261
|
-
# },
|
1262
|
-
# },
|
1263
|
-
# }
|
1264
|
-
#
|
1265
999
|
# @!attribute [rw] snowcone_device_configuration
|
1266
1000
|
# Returns information about the device configuration for an Snowcone
|
1267
1001
|
# job.
|
@@ -1280,14 +1014,6 @@ module Aws::Snowball
|
|
1280
1014
|
# ID. Each AMI has these two IDs to simplify identifying the AMI in both
|
1281
1015
|
# the Amazon Web Services Cloud and on the device.
|
1282
1016
|
#
|
1283
|
-
# @note When making an API call, you may pass Ec2AmiResource
|
1284
|
-
# data as a hash:
|
1285
|
-
#
|
1286
|
-
# {
|
1287
|
-
# ami_id: "AmiId", # required
|
1288
|
-
# snowball_ami_id: "String",
|
1289
|
-
# }
|
1290
|
-
#
|
1291
1017
|
# @!attribute [rw] ami_id
|
1292
1018
|
# The ID of the AMI in Amazon EC2.
|
1293
1019
|
# @return [String]
|
@@ -1321,13 +1047,6 @@ module Aws::Snowball
|
|
1321
1047
|
|
1322
1048
|
# The container for the EventTriggerDefinition$EventResourceARN.
|
1323
1049
|
#
|
1324
|
-
# @note When making an API call, you may pass EventTriggerDefinition
|
1325
|
-
# data as a hash:
|
1326
|
-
#
|
1327
|
-
# {
|
1328
|
-
# event_resource_arn: "ResourceARN",
|
1329
|
-
# }
|
1330
|
-
#
|
1331
1050
|
# @!attribute [rw] event_resource_arn
|
1332
1051
|
# The Amazon Resource Name (ARN) for any local Amazon S3 resource that
|
1333
1052
|
# is an Lambda function's event trigger associated with this job.
|
@@ -1341,13 +1060,6 @@ module Aws::Snowball
|
|
1341
1060
|
include Aws::Structure
|
1342
1061
|
end
|
1343
1062
|
|
1344
|
-
# @note When making an API call, you may pass GetJobManifestRequest
|
1345
|
-
# data as a hash:
|
1346
|
-
#
|
1347
|
-
# {
|
1348
|
-
# job_id: "JobId", # required
|
1349
|
-
# }
|
1350
|
-
#
|
1351
1063
|
# @!attribute [rw] job_id
|
1352
1064
|
# The ID for a job that you want to get the manifest file for, for
|
1353
1065
|
# example `JID123e4567-e89b-12d3-a456-426655440000`.
|
@@ -1374,13 +1086,6 @@ module Aws::Snowball
|
|
1374
1086
|
include Aws::Structure
|
1375
1087
|
end
|
1376
1088
|
|
1377
|
-
# @note When making an API call, you may pass GetJobUnlockCodeRequest
|
1378
|
-
# data as a hash:
|
1379
|
-
#
|
1380
|
-
# {
|
1381
|
-
# job_id: "JobId", # required
|
1382
|
-
# }
|
1383
|
-
#
|
1384
1089
|
# @!attribute [rw] job_id
|
1385
1090
|
# The ID for the job that you want to get the `UnlockCode` value for,
|
1386
1091
|
# for example `JID123e4567-e89b-12d3-a456-426655440000`.
|
@@ -1431,13 +1136,6 @@ module Aws::Snowball
|
|
1431
1136
|
include Aws::Structure
|
1432
1137
|
end
|
1433
1138
|
|
1434
|
-
# @note When making an API call, you may pass GetSoftwareUpdatesRequest
|
1435
|
-
# data as a hash:
|
1436
|
-
#
|
1437
|
-
# {
|
1438
|
-
# job_id: "JobId", # required
|
1439
|
-
# }
|
1440
|
-
#
|
1441
1139
|
# @!attribute [rw] job_id
|
1442
1140
|
# The ID for a job that you want to get the software update file for,
|
1443
1141
|
# for example `JID123e4567-e89b-12d3-a456-426655440000`.
|
@@ -1469,13 +1167,6 @@ module Aws::Snowball
|
|
1469
1167
|
|
1470
1168
|
# The tax documents required in Amazon Web Services Region in India.
|
1471
1169
|
#
|
1472
|
-
# @note When making an API call, you may pass INDTaxDocuments
|
1473
|
-
# data as a hash:
|
1474
|
-
#
|
1475
|
-
# {
|
1476
|
-
# gstin: "GSTIN",
|
1477
|
-
# }
|
1478
|
-
#
|
1479
1170
|
# @!attribute [rw] gstin
|
1480
1171
|
# The Goods and Services Tax (GST) documents required in Amazon Web
|
1481
1172
|
# Services Region in India.
|
@@ -1838,43 +1529,6 @@ module Aws::Snowball
|
|
1838
1529
|
# Machine Image (AMI) based on Amazon EC2 that is associated with a
|
1839
1530
|
# particular job.
|
1840
1531
|
#
|
1841
|
-
# @note When making an API call, you may pass JobResource
|
1842
|
-
# data as a hash:
|
1843
|
-
#
|
1844
|
-
# {
|
1845
|
-
# s3_resources: [
|
1846
|
-
# {
|
1847
|
-
# bucket_arn: "ResourceARN",
|
1848
|
-
# key_range: {
|
1849
|
-
# begin_marker: "String",
|
1850
|
-
# end_marker: "String",
|
1851
|
-
# },
|
1852
|
-
# target_on_device_services: [
|
1853
|
-
# {
|
1854
|
-
# service_name: "NFS_ON_DEVICE_SERVICE", # accepts NFS_ON_DEVICE_SERVICE, S3_ON_DEVICE_SERVICE
|
1855
|
-
# transfer_option: "IMPORT", # accepts IMPORT, EXPORT, LOCAL_USE
|
1856
|
-
# },
|
1857
|
-
# ],
|
1858
|
-
# },
|
1859
|
-
# ],
|
1860
|
-
# lambda_resources: [
|
1861
|
-
# {
|
1862
|
-
# lambda_arn: "ResourceARN",
|
1863
|
-
# event_triggers: [
|
1864
|
-
# {
|
1865
|
-
# event_resource_arn: "ResourceARN",
|
1866
|
-
# },
|
1867
|
-
# ],
|
1868
|
-
# },
|
1869
|
-
# ],
|
1870
|
-
# ec2_ami_resources: [
|
1871
|
-
# {
|
1872
|
-
# ami_id: "AmiId", # required
|
1873
|
-
# snowball_ami_id: "String",
|
1874
|
-
# },
|
1875
|
-
# ],
|
1876
|
-
# }
|
1877
|
-
#
|
1878
1532
|
# @!attribute [rw] s3_resources
|
1879
1533
|
# An array of `S3Resource` objects.
|
1880
1534
|
# @return [Array<Types::S3Resource>]
|
@@ -1916,14 +1570,6 @@ module Aws::Snowball
|
|
1916
1570
|
# job creation, and has either an inclusive `BeginMarker`, an inclusive
|
1917
1571
|
# `EndMarker`, or both. Ranges are UTF-8 binary sorted.
|
1918
1572
|
#
|
1919
|
-
# @note When making an API call, you may pass KeyRange
|
1920
|
-
# data as a hash:
|
1921
|
-
#
|
1922
|
-
# {
|
1923
|
-
# begin_marker: "String",
|
1924
|
-
# end_marker: "String",
|
1925
|
-
# }
|
1926
|
-
#
|
1927
1573
|
# @!attribute [rw] begin_marker
|
1928
1574
|
# The key that starts an optional key range for an export job. Ranges
|
1929
1575
|
# are inclusive and UTF-8 binary sorted.
|
@@ -1945,18 +1591,6 @@ module Aws::Snowball
|
|
1945
1591
|
|
1946
1592
|
# Identifies
|
1947
1593
|
#
|
1948
|
-
# @note When making an API call, you may pass LambdaResource
|
1949
|
-
# data as a hash:
|
1950
|
-
#
|
1951
|
-
# {
|
1952
|
-
# lambda_arn: "ResourceARN",
|
1953
|
-
# event_triggers: [
|
1954
|
-
# {
|
1955
|
-
# event_resource_arn: "ResourceARN",
|
1956
|
-
# },
|
1957
|
-
# ],
|
1958
|
-
# }
|
1959
|
-
#
|
1960
1594
|
# @!attribute [rw] lambda_arn
|
1961
1595
|
# An Amazon Resource Name (ARN) that represents an Lambda function to
|
1962
1596
|
# be triggered by PUT object actions on the associated local Amazon S3
|
@@ -1977,15 +1611,6 @@ module Aws::Snowball
|
|
1977
1611
|
include Aws::Structure
|
1978
1612
|
end
|
1979
1613
|
|
1980
|
-
# @note When making an API call, you may pass ListClusterJobsRequest
|
1981
|
-
# data as a hash:
|
1982
|
-
#
|
1983
|
-
# {
|
1984
|
-
# cluster_id: "ClusterId", # required
|
1985
|
-
# max_results: 1,
|
1986
|
-
# next_token: "String",
|
1987
|
-
# }
|
1988
|
-
#
|
1989
1614
|
# @!attribute [rw] cluster_id
|
1990
1615
|
# The 39-character ID for the cluster that you want to list, for
|
1991
1616
|
# example `CID123e4567-e89b-12d3-a456-426655440000`.
|
@@ -2032,14 +1657,6 @@ module Aws::Snowball
|
|
2032
1657
|
include Aws::Structure
|
2033
1658
|
end
|
2034
1659
|
|
2035
|
-
# @note When making an API call, you may pass ListClustersRequest
|
2036
|
-
# data as a hash:
|
2037
|
-
#
|
2038
|
-
# {
|
2039
|
-
# max_results: 1,
|
2040
|
-
# next_token: "String",
|
2041
|
-
# }
|
2042
|
-
#
|
2043
1660
|
# @!attribute [rw] max_results
|
2044
1661
|
# The number of `ClusterListEntry` objects to return.
|
2045
1662
|
# @return [Integer]
|
@@ -2079,14 +1696,6 @@ module Aws::Snowball
|
|
2079
1696
|
include Aws::Structure
|
2080
1697
|
end
|
2081
1698
|
|
2082
|
-
# @note When making an API call, you may pass ListCompatibleImagesRequest
|
2083
|
-
# data as a hash:
|
2084
|
-
#
|
2085
|
-
# {
|
2086
|
-
# max_results: 1,
|
2087
|
-
# next_token: "String",
|
2088
|
-
# }
|
2089
|
-
#
|
2090
1699
|
# @!attribute [rw] max_results
|
2091
1700
|
# The maximum number of results for the list of compatible images.
|
2092
1701
|
# Currently, a Snowball Edge device can store 10 AMIs.
|
@@ -2126,14 +1735,6 @@ module Aws::Snowball
|
|
2126
1735
|
include Aws::Structure
|
2127
1736
|
end
|
2128
1737
|
|
2129
|
-
# @note When making an API call, you may pass ListJobsRequest
|
2130
|
-
# data as a hash:
|
2131
|
-
#
|
2132
|
-
# {
|
2133
|
-
# max_results: 1,
|
2134
|
-
# next_token: "String",
|
2135
|
-
# }
|
2136
|
-
#
|
2137
1738
|
# @!attribute [rw] max_results
|
2138
1739
|
# The number of `JobListEntry` objects to return.
|
2139
1740
|
# @return [Integer]
|
@@ -2174,14 +1775,6 @@ module Aws::Snowball
|
|
2174
1775
|
include Aws::Structure
|
2175
1776
|
end
|
2176
1777
|
|
2177
|
-
# @note When making an API call, you may pass ListLongTermPricingRequest
|
2178
|
-
# data as a hash:
|
2179
|
-
#
|
2180
|
-
# {
|
2181
|
-
# max_results: 1,
|
2182
|
-
# next_token: "String",
|
2183
|
-
# }
|
2184
|
-
#
|
2185
1778
|
# @!attribute [rw] max_results
|
2186
1779
|
# The maximum number of `ListLongTermPricing` objects to return.
|
2187
1780
|
# @return [Integer]
|
@@ -2288,14 +1881,6 @@ module Aws::Snowball
|
|
2288
1881
|
# the NFS (Network File System) service on an Amazon Web Services Snow
|
2289
1882
|
# Family device.
|
2290
1883
|
#
|
2291
|
-
# @note When making an API call, you may pass NFSOnDeviceServiceConfiguration
|
2292
|
-
# data as a hash:
|
2293
|
-
#
|
2294
|
-
# {
|
2295
|
-
# storage_limit: 1,
|
2296
|
-
# storage_unit: "TB", # accepts TB
|
2297
|
-
# }
|
2298
|
-
#
|
2299
1884
|
# @!attribute [rw] storage_limit
|
2300
1885
|
# The maximum NFS storage for one Snow Family device.
|
2301
1886
|
# @return [Integer]
|
@@ -2326,15 +1911,6 @@ module Aws::Snowball
|
|
2326
1911
|
# to have Amazon SNS notifications sent out for all job states with
|
2327
1912
|
# `NotifyAll` set to true.
|
2328
1913
|
#
|
2329
|
-
# @note When making an API call, you may pass Notification
|
2330
|
-
# data as a hash:
|
2331
|
-
#
|
2332
|
-
# {
|
2333
|
-
# sns_topic_arn: "SnsTopicARN",
|
2334
|
-
# job_states_to_notify: ["New"], # accepts New, PreparingAppliance, PreparingShipment, InTransitToCustomer, WithCustomer, InTransitToAWS, WithAWSSortingFacility, WithAWS, InProgress, Complete, Cancelled, Listing, Pending
|
2335
|
-
# notify_all: false,
|
2336
|
-
# }
|
2337
|
-
#
|
2338
1914
|
# @!attribute [rw] sns_topic_arn
|
2339
1915
|
# The new SNS `TopicArn` that you want to associate with this job. You
|
2340
1916
|
# can create Amazon Resource Names (ARNs) for topics by using the
|
@@ -2373,20 +1949,6 @@ module Aws::Snowball
|
|
2373
1949
|
# An object that represents the metadata and configuration settings for
|
2374
1950
|
# services on an Amazon Web Services Snow Family device.
|
2375
1951
|
#
|
2376
|
-
# @note When making an API call, you may pass OnDeviceServiceConfiguration
|
2377
|
-
# data as a hash:
|
2378
|
-
#
|
2379
|
-
# {
|
2380
|
-
# nfs_on_device_service: {
|
2381
|
-
# storage_limit: 1,
|
2382
|
-
# storage_unit: "TB", # accepts TB
|
2383
|
-
# },
|
2384
|
-
# tgw_on_device_service: {
|
2385
|
-
# storage_limit: 1,
|
2386
|
-
# storage_unit: "TB", # accepts TB
|
2387
|
-
# },
|
2388
|
-
# }
|
2389
|
-
#
|
2390
1952
|
# @!attribute [rw] nfs_on_device_service
|
2391
1953
|
# Represents the NFS (Network File System) service on a Snow Family
|
2392
1954
|
# device.
|
@@ -2428,23 +1990,6 @@ module Aws::Snowball
|
|
2428
1990
|
# `BeginMarker`, an inclusive `EndMarker`, or both. Ranges are UTF-8
|
2429
1991
|
# binary sorted.
|
2430
1992
|
#
|
2431
|
-
# @note When making an API call, you may pass S3Resource
|
2432
|
-
# data as a hash:
|
2433
|
-
#
|
2434
|
-
# {
|
2435
|
-
# bucket_arn: "ResourceARN",
|
2436
|
-
# key_range: {
|
2437
|
-
# begin_marker: "String",
|
2438
|
-
# end_marker: "String",
|
2439
|
-
# },
|
2440
|
-
# target_on_device_services: [
|
2441
|
-
# {
|
2442
|
-
# service_name: "NFS_ON_DEVICE_SERVICE", # accepts NFS_ON_DEVICE_SERVICE, S3_ON_DEVICE_SERVICE
|
2443
|
-
# transfer_option: "IMPORT", # accepts IMPORT, EXPORT, LOCAL_USE
|
2444
|
-
# },
|
2445
|
-
# ],
|
2446
|
-
# }
|
2447
|
-
#
|
2448
1993
|
# @!attribute [rw] bucket_arn
|
2449
1994
|
# The Amazon Resource Name (ARN) of an Amazon S3 bucket.
|
2450
1995
|
# @return [String]
|
@@ -2543,15 +2088,6 @@ module Aws::Snowball
|
|
2543
2088
|
|
2544
2089
|
# Specifies the device configuration for an Snowcone job.
|
2545
2090
|
#
|
2546
|
-
# @note When making an API call, you may pass SnowconeDeviceConfiguration
|
2547
|
-
# data as a hash:
|
2548
|
-
#
|
2549
|
-
# {
|
2550
|
-
# wireless_connection: {
|
2551
|
-
# is_wifi_enabled: false,
|
2552
|
-
# },
|
2553
|
-
# }
|
2554
|
-
#
|
2555
2091
|
# @!attribute [rw] wireless_connection
|
2556
2092
|
# Configures the wireless connection for the Snowcone device.
|
2557
2093
|
# @return [Types::WirelessConnection]
|
@@ -2568,14 +2104,6 @@ module Aws::Snowball
|
|
2568
2104
|
# the Storage Gateway service Tape Gateway type on an Amazon Web
|
2569
2105
|
# Services Snow Family device.
|
2570
2106
|
#
|
2571
|
-
# @note When making an API call, you may pass TGWOnDeviceServiceConfiguration
|
2572
|
-
# data as a hash:
|
2573
|
-
#
|
2574
|
-
# {
|
2575
|
-
# storage_limit: 1,
|
2576
|
-
# storage_unit: "TB", # accepts TB
|
2577
|
-
# }
|
2578
|
-
#
|
2579
2107
|
# @!attribute [rw] storage_limit
|
2580
2108
|
# The maximum number of virtual tapes to store on one Snow Family
|
2581
2109
|
# device. Due to physical resource limitations, this value must be set
|
@@ -2600,14 +2128,6 @@ module Aws::Snowball
|
|
2600
2128
|
# into. Amazon Web Services Snow Family supports Amazon S3 and NFS
|
2601
2129
|
# (Network File System).
|
2602
2130
|
#
|
2603
|
-
# @note When making an API call, you may pass TargetOnDeviceService
|
2604
|
-
# data as a hash:
|
2605
|
-
#
|
2606
|
-
# {
|
2607
|
-
# service_name: "NFS_ON_DEVICE_SERVICE", # accepts NFS_ON_DEVICE_SERVICE, S3_ON_DEVICE_SERVICE
|
2608
|
-
# transfer_option: "IMPORT", # accepts IMPORT, EXPORT, LOCAL_USE
|
2609
|
-
# }
|
2610
|
-
#
|
2611
2131
|
# @!attribute [rw] service_name
|
2612
2132
|
# Specifies the name of the service on the Snow Family device that
|
2613
2133
|
# your transferred data will be exported from or imported into.
|
@@ -2629,15 +2149,6 @@ module Aws::Snowball
|
|
2629
2149
|
|
2630
2150
|
# The tax documents required in your Amazon Web Services Region.
|
2631
2151
|
#
|
2632
|
-
# @note When making an API call, you may pass TaxDocuments
|
2633
|
-
# data as a hash:
|
2634
|
-
#
|
2635
|
-
# {
|
2636
|
-
# ind: {
|
2637
|
-
# gstin: "GSTIN",
|
2638
|
-
# },
|
2639
|
-
# }
|
2640
|
-
#
|
2641
2152
|
# @!attribute [rw] ind
|
2642
2153
|
# The tax documents required in Amazon Web Services Region in India.
|
2643
2154
|
# @return [Types::INDTaxDocuments]
|
@@ -2665,66 +2176,6 @@ module Aws::Snowball
|
|
2665
2176
|
include Aws::Structure
|
2666
2177
|
end
|
2667
2178
|
|
2668
|
-
# @note When making an API call, you may pass UpdateClusterRequest
|
2669
|
-
# data as a hash:
|
2670
|
-
#
|
2671
|
-
# {
|
2672
|
-
# cluster_id: "ClusterId", # required
|
2673
|
-
# role_arn: "RoleARN",
|
2674
|
-
# description: "String",
|
2675
|
-
# resources: {
|
2676
|
-
# s3_resources: [
|
2677
|
-
# {
|
2678
|
-
# bucket_arn: "ResourceARN",
|
2679
|
-
# key_range: {
|
2680
|
-
# begin_marker: "String",
|
2681
|
-
# end_marker: "String",
|
2682
|
-
# },
|
2683
|
-
# target_on_device_services: [
|
2684
|
-
# {
|
2685
|
-
# service_name: "NFS_ON_DEVICE_SERVICE", # accepts NFS_ON_DEVICE_SERVICE, S3_ON_DEVICE_SERVICE
|
2686
|
-
# transfer_option: "IMPORT", # accepts IMPORT, EXPORT, LOCAL_USE
|
2687
|
-
# },
|
2688
|
-
# ],
|
2689
|
-
# },
|
2690
|
-
# ],
|
2691
|
-
# lambda_resources: [
|
2692
|
-
# {
|
2693
|
-
# lambda_arn: "ResourceARN",
|
2694
|
-
# event_triggers: [
|
2695
|
-
# {
|
2696
|
-
# event_resource_arn: "ResourceARN",
|
2697
|
-
# },
|
2698
|
-
# ],
|
2699
|
-
# },
|
2700
|
-
# ],
|
2701
|
-
# ec2_ami_resources: [
|
2702
|
-
# {
|
2703
|
-
# ami_id: "AmiId", # required
|
2704
|
-
# snowball_ami_id: "String",
|
2705
|
-
# },
|
2706
|
-
# ],
|
2707
|
-
# },
|
2708
|
-
# on_device_service_configuration: {
|
2709
|
-
# nfs_on_device_service: {
|
2710
|
-
# storage_limit: 1,
|
2711
|
-
# storage_unit: "TB", # accepts TB
|
2712
|
-
# },
|
2713
|
-
# tgw_on_device_service: {
|
2714
|
-
# storage_limit: 1,
|
2715
|
-
# storage_unit: "TB", # accepts TB
|
2716
|
-
# },
|
2717
|
-
# },
|
2718
|
-
# address_id: "AddressId",
|
2719
|
-
# shipping_option: "SECOND_DAY", # accepts SECOND_DAY, NEXT_DAY, EXPRESS, STANDARD
|
2720
|
-
# notification: {
|
2721
|
-
# sns_topic_arn: "SnsTopicARN",
|
2722
|
-
# job_states_to_notify: ["New"], # accepts New, PreparingAppliance, PreparingShipment, InTransitToCustomer, WithCustomer, InTransitToAWS, WithAWSSortingFacility, WithAWS, InProgress, Complete, Cancelled, Listing, Pending
|
2723
|
-
# notify_all: false,
|
2724
|
-
# },
|
2725
|
-
# forwarding_address_id: "AddressId",
|
2726
|
-
# }
|
2727
|
-
#
|
2728
2179
|
# @!attribute [rw] cluster_id
|
2729
2180
|
# The cluster ID of the cluster that you want to update, for example
|
2730
2181
|
# `CID123e4567-e89b-12d3-a456-426655440000`.
|
@@ -2794,67 +2245,6 @@ module Aws::Snowball
|
|
2794
2245
|
#
|
2795
2246
|
class UpdateClusterResult < Aws::EmptyStructure; end
|
2796
2247
|
|
2797
|
-
# @note When making an API call, you may pass UpdateJobRequest
|
2798
|
-
# data as a hash:
|
2799
|
-
#
|
2800
|
-
# {
|
2801
|
-
# job_id: "JobId", # required
|
2802
|
-
# role_arn: "RoleARN",
|
2803
|
-
# notification: {
|
2804
|
-
# sns_topic_arn: "SnsTopicARN",
|
2805
|
-
# job_states_to_notify: ["New"], # accepts New, PreparingAppliance, PreparingShipment, InTransitToCustomer, WithCustomer, InTransitToAWS, WithAWSSortingFacility, WithAWS, InProgress, Complete, Cancelled, Listing, Pending
|
2806
|
-
# notify_all: false,
|
2807
|
-
# },
|
2808
|
-
# resources: {
|
2809
|
-
# s3_resources: [
|
2810
|
-
# {
|
2811
|
-
# bucket_arn: "ResourceARN",
|
2812
|
-
# key_range: {
|
2813
|
-
# begin_marker: "String",
|
2814
|
-
# end_marker: "String",
|
2815
|
-
# },
|
2816
|
-
# target_on_device_services: [
|
2817
|
-
# {
|
2818
|
-
# service_name: "NFS_ON_DEVICE_SERVICE", # accepts NFS_ON_DEVICE_SERVICE, S3_ON_DEVICE_SERVICE
|
2819
|
-
# transfer_option: "IMPORT", # accepts IMPORT, EXPORT, LOCAL_USE
|
2820
|
-
# },
|
2821
|
-
# ],
|
2822
|
-
# },
|
2823
|
-
# ],
|
2824
|
-
# lambda_resources: [
|
2825
|
-
# {
|
2826
|
-
# lambda_arn: "ResourceARN",
|
2827
|
-
# event_triggers: [
|
2828
|
-
# {
|
2829
|
-
# event_resource_arn: "ResourceARN",
|
2830
|
-
# },
|
2831
|
-
# ],
|
2832
|
-
# },
|
2833
|
-
# ],
|
2834
|
-
# ec2_ami_resources: [
|
2835
|
-
# {
|
2836
|
-
# ami_id: "AmiId", # required
|
2837
|
-
# snowball_ami_id: "String",
|
2838
|
-
# },
|
2839
|
-
# ],
|
2840
|
-
# },
|
2841
|
-
# on_device_service_configuration: {
|
2842
|
-
# nfs_on_device_service: {
|
2843
|
-
# storage_limit: 1,
|
2844
|
-
# storage_unit: "TB", # accepts TB
|
2845
|
-
# },
|
2846
|
-
# tgw_on_device_service: {
|
2847
|
-
# storage_limit: 1,
|
2848
|
-
# storage_unit: "TB", # accepts TB
|
2849
|
-
# },
|
2850
|
-
# },
|
2851
|
-
# address_id: "AddressId",
|
2852
|
-
# shipping_option: "SECOND_DAY", # accepts SECOND_DAY, NEXT_DAY, EXPRESS, STANDARD
|
2853
|
-
# description: "String",
|
2854
|
-
# snowball_capacity_preference: "T50", # accepts T50, T80, T100, T42, T98, T8, T14, NoPreference, T32
|
2855
|
-
# forwarding_address_id: "AddressId",
|
2856
|
-
# }
|
2857
|
-
#
|
2858
2248
|
# @!attribute [rw] job_id
|
2859
2249
|
# The job ID of the job that you want to update, for example
|
2860
2250
|
# `JID123e4567-e89b-12d3-a456-426655440000`.
|
@@ -2936,14 +2326,6 @@ module Aws::Snowball
|
|
2936
2326
|
#
|
2937
2327
|
class UpdateJobResult < Aws::EmptyStructure; end
|
2938
2328
|
|
2939
|
-
# @note When making an API call, you may pass UpdateJobShipmentStateRequest
|
2940
|
-
# data as a hash:
|
2941
|
-
#
|
2942
|
-
# {
|
2943
|
-
# job_id: "JobId", # required
|
2944
|
-
# shipment_state: "RECEIVED", # required, accepts RECEIVED, RETURNED
|
2945
|
-
# }
|
2946
|
-
#
|
2947
2329
|
# @!attribute [rw] job_id
|
2948
2330
|
# The job ID of the job whose shipment date you want to update, for
|
2949
2331
|
# example `JID123e4567-e89b-12d3-a456-426655440000`.
|
@@ -2971,15 +2353,6 @@ module Aws::Snowball
|
|
2971
2353
|
#
|
2972
2354
|
class UpdateJobShipmentStateResult < Aws::EmptyStructure; end
|
2973
2355
|
|
2974
|
-
# @note When making an API call, you may pass UpdateLongTermPricingRequest
|
2975
|
-
# data as a hash:
|
2976
|
-
#
|
2977
|
-
# {
|
2978
|
-
# long_term_pricing_id: "LongTermPricingId", # required
|
2979
|
-
# replacement_job: "JobId",
|
2980
|
-
# is_long_term_pricing_auto_renew: false,
|
2981
|
-
# }
|
2982
|
-
#
|
2983
2356
|
# @!attribute [rw] long_term_pricing_id
|
2984
2357
|
# The ID of the long-term pricing type for the device.
|
2985
2358
|
# @return [String]
|
@@ -3011,13 +2384,6 @@ module Aws::Snowball
|
|
3011
2384
|
|
3012
2385
|
# Configures the wireless connection on an Snowcone device.
|
3013
2386
|
#
|
3014
|
-
# @note When making an API call, you may pass WirelessConnection
|
3015
|
-
# data as a hash:
|
3016
|
-
#
|
3017
|
-
# {
|
3018
|
-
# is_wifi_enabled: false,
|
3019
|
-
# }
|
3020
|
-
#
|
3021
2387
|
# @!attribute [rw] is_wifi_enabled
|
3022
2388
|
# Enables the Wi-Fi adapter on an Snowcone device.
|
3023
2389
|
# @return [Boolean]
|
data/lib/aws-sdk-snowball.rb
CHANGED
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.52.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: 2023-01-18 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|