aws-sdk-snowdevicemanagement 1.8.0 → 1.9.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 1341b30ea06c62e83023e46aa19b804711970213c0078ac1399cd67482611add
4
- data.tar.gz: 74a08a609ff897ddb24ccab0e3503e83d05d8e439237f6487404e7126b30416d
3
+ metadata.gz: b4b883c6220970b81a3b7e82b68e29decefa25aeed5d543c5ce4cea3a9feed90
4
+ data.tar.gz: ff0dc9560e25cade2b6de515ff905b6db3d77239614dc89723d7fc53e14fd9e5
5
5
  SHA512:
6
- metadata.gz: 5a86029e9fd1931fb9668011d9c61022222df7b635b9879fc487b6cd51b46fe133126954caf1cc4b236a75d14b44cb859d787a143077b2b6028a5903a206d5d2
7
- data.tar.gz: 8aa45108d78c2148e5fb058190b5380a2b2650954ba05b16611b25e088037d9a30d75a70552d2edb081ae459a1536ee3985de56042f142c9167e43581d814c3e
6
+ metadata.gz: d7949e7e254b70dead806ba1bb35fd0709d382365cb8ed91df47e9bf82139cff8422c516ab0a9639e6d1bdab74fa7716cc4e7ffe022c4490504e2924892e0ed7
7
+ data.tar.gz: 2640c6bb95ead6be6a18f4127e2eb5e93ed312ba4f7e49300db02fbaab83f416d0e39aa24ec3af94ddfdc09004bced72a20e87092434ba1589d2ae86a9a06310
data/CHANGELOG.md CHANGED
@@ -1,6 +1,13 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.9.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.8.0 (2022-10-25)
5
12
  ------------------
6
13
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.8.0
1
+ 1.9.0
@@ -965,7 +965,7 @@ module Aws::SnowDeviceManagement
965
965
  params: params,
966
966
  config: config)
967
967
  context[:gem_name] = 'aws-sdk-snowdevicemanagement'
968
- context[:gem_version] = '1.8.0'
968
+ context[:gem_version] = '1.9.0'
969
969
  Seahorse::Client::Request.new(handlers, context)
970
970
  end
971
971
 
@@ -9,104 +9,43 @@
9
9
 
10
10
  module Aws::SnowDeviceManagement
11
11
  class EndpointProvider
12
- def initialize(rule_set = nil)
13
- @@rule_set ||= begin
14
- endpoint_rules = Aws::Json.load(Base64.decode64(RULES))
15
- Aws::Endpoints::RuleSet.new(
16
- version: endpoint_rules['version'],
17
- service_id: endpoint_rules['serviceId'],
18
- parameters: endpoint_rules['parameters'],
19
- rules: endpoint_rules['rules']
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
- @provider = Aws::Endpoints::RulesProvider.new(rule_set || @@rule_set)
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]
@@ -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]
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-snowdevicemanagement/customizations'
52
52
  # @!group service
53
53
  module Aws::SnowDeviceManagement
54
54
 
55
- GEM_VERSION = '1.8.0'
55
+ GEM_VERSION = '1.9.0'
56
56
 
57
57
  end
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.8.0
4
+ version: 1.9.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: 2022-10-25 00:00:00.000000000 Z
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