aws-sdk-snowdevicemanagement 1.8.0 → 1.10.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 +12 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-snowdevicemanagement/client.rb +6 -1
- data/lib/aws-sdk-snowdevicemanagement/endpoint_provider.rb +35 -96
- data/lib/aws-sdk-snowdevicemanagement/types.rb +6 -124
- data/lib/aws-sdk-snowdevicemanagement.rb +1 -1
- 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: c17ba04e2a3a1adb2b75e39ff7ce937f714836aeff230ef05c4872c6ff10122d
|
4
|
+
data.tar.gz: 4471ab98c1ab98689febe4656e35d503cf4ffd7104d9362d25d337a83078292c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f89b379b4786ebb0c5425db331d238d27eb22846bf9c428fad27f71637c9f230735a3934d1227238bd625ce1164219e32ecc0f0c1c7abf1c4fdb511d03e1593d
|
7
|
+
data.tar.gz: 80545c1c5f515d7312177759d8787775a4bfe5b689e2be3089fc55289314dc2d3da7298371ad79d38a07d1a467573fb9e3e8c063d8b4b0a9ab0bface045be1d3
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,18 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.10.0 (2023-05-31)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
8
|
+
|
9
|
+
1.9.0 (2023-01-18)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
13
|
+
|
14
|
+
* Issue - Replace runtime endpoint resolution approach with generated ruby code.
|
15
|
+
|
4
16
|
1.8.0 (2022-10-25)
|
5
17
|
------------------
|
6
18
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.10.0
|
@@ -275,6 +275,11 @@ module Aws::SnowDeviceManagement
|
|
275
275
|
# in the future.
|
276
276
|
#
|
277
277
|
#
|
278
|
+
# @option options [String] :sdk_ua_app_id
|
279
|
+
# A unique and opaque application ID that is appended to the
|
280
|
+
# User-Agent header as app/<sdk_ua_app_id>. It should have a
|
281
|
+
# maximum length of 50.
|
282
|
+
#
|
278
283
|
# @option options [String] :secret_access_key
|
279
284
|
#
|
280
285
|
# @option options [String] :session_token
|
@@ -965,7 +970,7 @@ module Aws::SnowDeviceManagement
|
|
965
970
|
params: params,
|
966
971
|
config: config)
|
967
972
|
context[:gem_name] = 'aws-sdk-snowdevicemanagement'
|
968
|
-
context[:gem_version] = '1.
|
973
|
+
context[:gem_version] = '1.10.0'
|
969
974
|
Seahorse::Client::Request.new(handlers, context)
|
970
975
|
end
|
971
976
|
|
@@ -9,104 +9,43 @@
|
|
9
9
|
|
10
10
|
module Aws::SnowDeviceManagement
|
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://snow-device-management-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://snow-device-management-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://snow-device-management.#{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://snow-device-management.#{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
|
-
dCI6eyJ1cmwiOiJodHRwczovL3Nub3ctZGV2aWNlLW1hbmFnZW1lbnQtZmlw
|
77
|
-
cy57UmVnaW9ufS57UGFydGl0aW9uUmVzdWx0I2R1YWxTdGFja0Ruc1N1ZmZp
|
78
|
-
eH0iLCJwcm9wZXJ0aWVzIjp7fSwiaGVhZGVycyI6e319LCJ0eXBlIjoiZW5k
|
79
|
-
cG9pbnQifV19LHsiY29uZGl0aW9ucyI6W10sImVycm9yIjoiRklQUyBhbmQg
|
80
|
-
RHVhbFN0YWNrIGFyZSBlbmFibGVkLCBidXQgdGhpcyBwYXJ0aXRpb24gZG9l
|
81
|
-
cyBub3Qgc3VwcG9ydCBvbmUgb3IgYm90aCIsInR5cGUiOiJlcnJvciJ9XX0s
|
82
|
-
eyJjb25kaXRpb25zIjpbeyJmbiI6ImJvb2xlYW5FcXVhbHMiLCJhcmd2Ijpb
|
83
|
-
eyJyZWYiOiJVc2VGSVBTIn0sdHJ1ZV19XSwidHlwZSI6InRyZWUiLCJydWxl
|
84
|
-
cyI6W3siY29uZGl0aW9ucyI6W3siZm4iOiJib29sZWFuRXF1YWxzIiwiYXJn
|
85
|
-
diI6W3RydWUseyJmbiI6ImdldEF0dHIiLCJhcmd2IjpbeyJyZWYiOiJQYXJ0
|
86
|
-
aXRpb25SZXN1bHQifSwic3VwcG9ydHNGSVBTIl19XX1dLCJ0eXBlIjoidHJl
|
87
|
-
ZSIsInJ1bGVzIjpbeyJjb25kaXRpb25zIjpbXSwiZW5kcG9pbnQiOnsidXJs
|
88
|
-
IjoiaHR0cHM6Ly9zbm93LWRldmljZS1tYW5hZ2VtZW50LWZpcHMue1JlZ2lv
|
89
|
-
bn0ue1BhcnRpdGlvblJlc3VsdCNkbnNTdWZmaXh9IiwicHJvcGVydGllcyI6
|
90
|
-
e30sImhlYWRlcnMiOnt9fSwidHlwZSI6ImVuZHBvaW50In1dfSx7ImNvbmRp
|
91
|
-
dGlvbnMiOltdLCJlcnJvciI6IkZJUFMgaXMgZW5hYmxlZCBidXQgdGhpcyBw
|
92
|
-
YXJ0aXRpb24gZG9lcyBub3Qgc3VwcG9ydCBGSVBTIiwidHlwZSI6ImVycm9y
|
93
|
-
In1dfSx7ImNvbmRpdGlvbnMiOlt7ImZuIjoiYm9vbGVhbkVxdWFscyIsImFy
|
94
|
-
Z3YiOlt7InJlZiI6IlVzZUR1YWxTdGFjayJ9LHRydWVdfV0sInR5cGUiOiJ0
|
95
|
-
cmVlIiwicnVsZXMiOlt7ImNvbmRpdGlvbnMiOlt7ImZuIjoiYm9vbGVhbkVx
|
96
|
-
dWFscyIsImFyZ3YiOlt0cnVlLHsiZm4iOiJnZXRBdHRyIiwiYXJndiI6W3si
|
97
|
-
cmVmIjoiUGFydGl0aW9uUmVzdWx0In0sInN1cHBvcnRzRHVhbFN0YWNrIl19
|
98
|
-
XX1dLCJ0eXBlIjoidHJlZSIsInJ1bGVzIjpbeyJjb25kaXRpb25zIjpbXSwi
|
99
|
-
ZW5kcG9pbnQiOnsidXJsIjoiaHR0cHM6Ly9zbm93LWRldmljZS1tYW5hZ2Vt
|
100
|
-
ZW50LntSZWdpb259LntQYXJ0aXRpb25SZXN1bHQjZHVhbFN0YWNrRG5zU3Vm
|
101
|
-
Zml4fSIsInByb3BlcnRpZXMiOnt9LCJoZWFkZXJzIjp7fX0sInR5cGUiOiJl
|
102
|
-
bmRwb2ludCJ9XX0seyJjb25kaXRpb25zIjpbXSwiZXJyb3IiOiJEdWFsU3Rh
|
103
|
-
Y2sgaXMgZW5hYmxlZCBidXQgdGhpcyBwYXJ0aXRpb24gZG9lcyBub3Qgc3Vw
|
104
|
-
cG9ydCBEdWFsU3RhY2siLCJ0eXBlIjoiZXJyb3IifV19LHsiY29uZGl0aW9u
|
105
|
-
cyI6W10sImVuZHBvaW50Ijp7InVybCI6Imh0dHBzOi8vc25vdy1kZXZpY2Ut
|
106
|
-
bWFuYWdlbWVudC57UmVnaW9ufS57UGFydGl0aW9uUmVzdWx0I2Ruc1N1ZmZp
|
107
|
-
eH0iLCJwcm9wZXJ0aWVzIjp7fSwiaGVhZGVycyI6e319LCJ0eXBlIjoiZW5k
|
108
|
-
cG9pbnQifV19XX0=
|
109
|
-
|
110
|
-
JSON
|
111
50
|
end
|
112
51
|
end
|
@@ -23,13 +23,6 @@ module Aws::SnowDeviceManagement
|
|
23
23
|
include Aws::Structure
|
24
24
|
end
|
25
25
|
|
26
|
-
# @note When making an API call, you may pass CancelTaskInput
|
27
|
-
# data as a hash:
|
28
|
-
#
|
29
|
-
# {
|
30
|
-
# task_id: "TaskId", # required
|
31
|
-
# }
|
32
|
-
#
|
33
26
|
# @!attribute [rw] task_id
|
34
27
|
# The ID of the task that you are attempting to cancel. You can
|
35
28
|
# retrieve a task ID by using the `ListTasks` operation.
|
@@ -135,24 +128,6 @@ module Aws::SnowDeviceManagement
|
|
135
128
|
include Aws::Structure
|
136
129
|
end
|
137
130
|
|
138
|
-
# @note When making an API call, you may pass CreateTaskInput
|
139
|
-
# data as a hash:
|
140
|
-
#
|
141
|
-
# {
|
142
|
-
# client_token: "IdempotencyToken",
|
143
|
-
# command: { # required
|
144
|
-
# reboot: {
|
145
|
-
# },
|
146
|
-
# unlock: {
|
147
|
-
# },
|
148
|
-
# },
|
149
|
-
# description: "TaskDescriptionString",
|
150
|
-
# tags: {
|
151
|
-
# "String" => "String",
|
152
|
-
# },
|
153
|
-
# targets: ["String"], # required
|
154
|
-
# }
|
155
|
-
#
|
156
131
|
# @!attribute [rw] client_token
|
157
132
|
# A token ensuring that the action is called only once with the
|
158
133
|
# specified details.
|
@@ -209,14 +184,6 @@ module Aws::SnowDeviceManagement
|
|
209
184
|
include Aws::Structure
|
210
185
|
end
|
211
186
|
|
212
|
-
# @note When making an API call, you may pass DescribeDeviceEc2Input
|
213
|
-
# data as a hash:
|
214
|
-
#
|
215
|
-
# {
|
216
|
-
# instance_ids: ["String"], # required
|
217
|
-
# managed_device_id: "ManagedDeviceId", # required
|
218
|
-
# }
|
219
|
-
#
|
220
187
|
# @!attribute [rw] instance_ids
|
221
188
|
# A list of instance IDs associated with the managed device.
|
222
189
|
# @return [Array<String>]
|
@@ -246,13 +213,6 @@ module Aws::SnowDeviceManagement
|
|
246
213
|
include Aws::Structure
|
247
214
|
end
|
248
215
|
|
249
|
-
# @note When making an API call, you may pass DescribeDeviceInput
|
250
|
-
# data as a hash:
|
251
|
-
#
|
252
|
-
# {
|
253
|
-
# managed_device_id: "ManagedDeviceId", # required
|
254
|
-
# }
|
255
|
-
#
|
256
216
|
# @!attribute [rw] managed_device_id
|
257
217
|
# The ID of the device that you are checking the information of.
|
258
218
|
# @return [String]
|
@@ -331,14 +291,6 @@ module Aws::SnowDeviceManagement
|
|
331
291
|
include Aws::Structure
|
332
292
|
end
|
333
293
|
|
334
|
-
# @note When making an API call, you may pass DescribeExecutionInput
|
335
|
-
# data as a hash:
|
336
|
-
#
|
337
|
-
# {
|
338
|
-
# managed_device_id: "ManagedDeviceId", # required
|
339
|
-
# task_id: "TaskId", # required
|
340
|
-
# }
|
341
|
-
#
|
342
294
|
# @!attribute [rw] managed_device_id
|
343
295
|
# The ID of the managed device.
|
344
296
|
# @return [String]
|
@@ -393,13 +345,6 @@ module Aws::SnowDeviceManagement
|
|
393
345
|
include Aws::Structure
|
394
346
|
end
|
395
347
|
|
396
|
-
# @note When making an API call, you may pass DescribeTaskInput
|
397
|
-
# data as a hash:
|
398
|
-
#
|
399
|
-
# {
|
400
|
-
# task_id: "TaskId", # required
|
401
|
-
# }
|
402
|
-
#
|
403
348
|
# @!attribute [rw] task_id
|
404
349
|
# The ID of the task to be described.
|
405
350
|
# @return [String]
|
@@ -669,17 +614,17 @@ module Aws::SnowDeviceManagement
|
|
669
614
|
# The valid values for the instance state code are all in the range of
|
670
615
|
# the low byte. These values are:
|
671
616
|
#
|
672
|
-
# * `0
|
617
|
+
# * `0` : `pending`
|
673
618
|
#
|
674
|
-
# * `16
|
619
|
+
# * `16` : `running`
|
675
620
|
#
|
676
|
-
# * `32
|
621
|
+
# * `32` : `shutting-down`
|
677
622
|
#
|
678
|
-
# * `48
|
623
|
+
# * `48` : `terminated`
|
679
624
|
#
|
680
|
-
# * `64
|
625
|
+
# * `64` : `stopping`
|
681
626
|
#
|
682
|
-
# * `80
|
627
|
+
# * `80` : `stopped`
|
683
628
|
#
|
684
629
|
# You can ignore the high byte value by zeroing out all of the bits
|
685
630
|
# above 2^8 or 256 in decimal.
|
@@ -730,16 +675,6 @@ module Aws::SnowDeviceManagement
|
|
730
675
|
include Aws::Structure
|
731
676
|
end
|
732
677
|
|
733
|
-
# @note When making an API call, you may pass ListDeviceResourcesInput
|
734
|
-
# data as a hash:
|
735
|
-
#
|
736
|
-
# {
|
737
|
-
# managed_device_id: "ManagedDeviceId", # required
|
738
|
-
# max_results: 1,
|
739
|
-
# next_token: "NextToken",
|
740
|
-
# type: "ListDeviceResourcesInputTypeString",
|
741
|
-
# }
|
742
|
-
#
|
743
678
|
# @!attribute [rw] managed_device_id
|
744
679
|
# The ID of the managed device that you are listing the resources of.
|
745
680
|
# @return [String]
|
@@ -785,15 +720,6 @@ module Aws::SnowDeviceManagement
|
|
785
720
|
include Aws::Structure
|
786
721
|
end
|
787
722
|
|
788
|
-
# @note When making an API call, you may pass ListDevicesInput
|
789
|
-
# data as a hash:
|
790
|
-
#
|
791
|
-
# {
|
792
|
-
# job_id: "JobId",
|
793
|
-
# max_results: 1,
|
794
|
-
# next_token: "NextToken",
|
795
|
-
# }
|
796
|
-
#
|
797
723
|
# @!attribute [rw] job_id
|
798
724
|
# The ID of the job used to order the device.
|
799
725
|
# @return [String]
|
@@ -834,16 +760,6 @@ module Aws::SnowDeviceManagement
|
|
834
760
|
include Aws::Structure
|
835
761
|
end
|
836
762
|
|
837
|
-
# @note When making an API call, you may pass ListExecutionsInput
|
838
|
-
# data as a hash:
|
839
|
-
#
|
840
|
-
# {
|
841
|
-
# max_results: 1,
|
842
|
-
# next_token: "NextToken",
|
843
|
-
# state: "QUEUED", # accepts QUEUED, IN_PROGRESS, CANCELED, FAILED, SUCCEEDED, REJECTED, TIMED_OUT
|
844
|
-
# task_id: "TaskId", # required
|
845
|
-
# }
|
846
|
-
#
|
847
763
|
# @!attribute [rw] max_results
|
848
764
|
# The maximum number of tasks to list per page.
|
849
765
|
# @return [Integer]
|
@@ -890,13 +806,6 @@ module Aws::SnowDeviceManagement
|
|
890
806
|
include Aws::Structure
|
891
807
|
end
|
892
808
|
|
893
|
-
# @note When making an API call, you may pass ListTagsForResourceInput
|
894
|
-
# data as a hash:
|
895
|
-
#
|
896
|
-
# {
|
897
|
-
# resource_arn: "String", # required
|
898
|
-
# }
|
899
|
-
#
|
900
809
|
# @!attribute [rw] resource_arn
|
901
810
|
# The Amazon Resource Name (ARN) of the device or task.
|
902
811
|
# @return [String]
|
@@ -921,15 +830,6 @@ module Aws::SnowDeviceManagement
|
|
921
830
|
include Aws::Structure
|
922
831
|
end
|
923
832
|
|
924
|
-
# @note When making an API call, you may pass ListTasksInput
|
925
|
-
# data as a hash:
|
926
|
-
#
|
927
|
-
# {
|
928
|
-
# max_results: 1,
|
929
|
-
# next_token: "NextToken",
|
930
|
-
# state: "IN_PROGRESS", # accepts IN_PROGRESS, CANCELED, COMPLETED
|
931
|
-
# }
|
932
|
-
#
|
933
833
|
# @!attribute [rw] max_results
|
934
834
|
# The maximum number of tasks per page.
|
935
835
|
# @return [Integer]
|
@@ -1116,16 +1016,6 @@ module Aws::SnowDeviceManagement
|
|
1116
1016
|
include Aws::Structure
|
1117
1017
|
end
|
1118
1018
|
|
1119
|
-
# @note When making an API call, you may pass TagResourceInput
|
1120
|
-
# data as a hash:
|
1121
|
-
#
|
1122
|
-
# {
|
1123
|
-
# resource_arn: "String", # required
|
1124
|
-
# tags: { # required
|
1125
|
-
# "String" => "String",
|
1126
|
-
# },
|
1127
|
-
# }
|
1128
|
-
#
|
1129
1019
|
# @!attribute [rw] resource_arn
|
1130
1020
|
# The Amazon Resource Name (ARN) of the device or task.
|
1131
1021
|
# @return [String]
|
@@ -1197,14 +1087,6 @@ module Aws::SnowDeviceManagement
|
|
1197
1087
|
#
|
1198
1088
|
class Unlock < Aws::EmptyStructure; end
|
1199
1089
|
|
1200
|
-
# @note When making an API call, you may pass UntagResourceInput
|
1201
|
-
# data as a hash:
|
1202
|
-
#
|
1203
|
-
# {
|
1204
|
-
# resource_arn: "String", # required
|
1205
|
-
# tag_keys: ["String"], # required
|
1206
|
-
# }
|
1207
|
-
#
|
1208
1090
|
# @!attribute [rw] resource_arn
|
1209
1091
|
# The Amazon Resource Name (ARN) of the device or task.
|
1210
1092
|
# @return [String]
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-snowdevicemanagement
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.10.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-05-31 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.174.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.174.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|