aws-sdk-iot1clickdevicesservice 1.38.0 → 1.39.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +8 -1
- data/VERSION +1 -1
- data/lib/aws-sdk-iot1clickdevicesservice/client.rb +1 -1
- data/lib/aws-sdk-iot1clickdevicesservice/endpoint_provider.rb +35 -95
- data/lib/aws-sdk-iot1clickdevicesservice/types.rb +0 -118
- data/lib/aws-sdk-iot1clickdevicesservice.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: c0ce7ae481f854b549053716cbae2b2e52cb4a4d8932e11c76185315df8c172c
|
4
|
+
data.tar.gz: 062d76bc10aeb16fa8ddbe35f2cb0a7f8f5a2086ce4a205b62da28d94f2297e1
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3e231110a9c9afbd66ffa6a6b38dcf22fdfea6ade2012a52ff40eb4d6cc3d018f550ffbf2f08ad519654260e6bb6b7390b2afc0c7b2b5fb88651a9df988003ff
|
7
|
+
data.tar.gz: b00f72b2adde35ddb41b6ee331c79e480c3d03dae59c6469075b8f19fbbb5787788b0a803968c9d00cb1f54dfa92953ea51c281e0f9c945adcae155b9e10876e
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,13 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.39.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.38.0 (2022-10-25)
|
5
12
|
------------------
|
6
13
|
|
@@ -200,4 +207,4 @@ Unreleased Changes
|
|
200
207
|
1.0.0 (2018-05-14)
|
201
208
|
------------------
|
202
209
|
|
203
|
-
* Feature - Initial release of `aws-sdk-iot1clickdevicesservice`.
|
210
|
+
* Feature - Initial release of `aws-sdk-iot1clickdevicesservice`.
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.39.0
|
@@ -817,7 +817,7 @@ module Aws::IoT1ClickDevicesService
|
|
817
817
|
params: params,
|
818
818
|
config: config)
|
819
819
|
context[:gem_name] = 'aws-sdk-iot1clickdevicesservice'
|
820
|
-
context[:gem_version] = '1.
|
820
|
+
context[:gem_version] = '1.39.0'
|
821
821
|
Seahorse::Client::Request.new(handlers, context)
|
822
822
|
end
|
823
823
|
|
@@ -9,103 +9,43 @@
|
|
9
9
|
|
10
10
|
module Aws::IoT1ClickDevicesService
|
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://devices.iot1click-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://devices.iot1click-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://devices.iot1click.#{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://devices.iot1click.#{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
|
-
dCI6eyJ1cmwiOiJodHRwczovL2RldmljZXMuaW90MWNsaWNrLWZpcHMue1Jl
|
77
|
-
Z2lvbn0ue1BhcnRpdGlvblJlc3VsdCNkdWFsU3RhY2tEbnNTdWZmaXh9Iiwi
|
78
|
-
cHJvcGVydGllcyI6e30sImhlYWRlcnMiOnt9fSwidHlwZSI6ImVuZHBvaW50
|
79
|
-
In1dfSx7ImNvbmRpdGlvbnMiOltdLCJlcnJvciI6IkZJUFMgYW5kIER1YWxT
|
80
|
-
dGFjayBhcmUgZW5hYmxlZCwgYnV0IHRoaXMgcGFydGl0aW9uIGRvZXMgbm90
|
81
|
-
IHN1cHBvcnQgb25lIG9yIGJvdGgiLCJ0eXBlIjoiZXJyb3IifV19LHsiY29u
|
82
|
-
ZGl0aW9ucyI6W3siZm4iOiJib29sZWFuRXF1YWxzIiwiYXJndiI6W3sicmVm
|
83
|
-
IjoiVXNlRklQUyJ9LHRydWVdfV0sInR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7
|
84
|
-
ImNvbmRpdGlvbnMiOlt7ImZuIjoiYm9vbGVhbkVxdWFscyIsImFyZ3YiOlt0
|
85
|
-
cnVlLHsiZm4iOiJnZXRBdHRyIiwiYXJndiI6W3sicmVmIjoiUGFydGl0aW9u
|
86
|
-
UmVzdWx0In0sInN1cHBvcnRzRklQUyJdfV19XSwidHlwZSI6InRyZWUiLCJy
|
87
|
-
dWxlcyI6W3siY29uZGl0aW9ucyI6W10sImVuZHBvaW50Ijp7InVybCI6Imh0
|
88
|
-
dHBzOi8vZGV2aWNlcy5pb3QxY2xpY2stZmlwcy57UmVnaW9ufS57UGFydGl0
|
89
|
-
aW9uUmVzdWx0I2Ruc1N1ZmZpeH0iLCJwcm9wZXJ0aWVzIjp7fSwiaGVhZGVy
|
90
|
-
cyI6e319LCJ0eXBlIjoiZW5kcG9pbnQifV19LHsiY29uZGl0aW9ucyI6W10s
|
91
|
-
ImVycm9yIjoiRklQUyBpcyBlbmFibGVkIGJ1dCB0aGlzIHBhcnRpdGlvbiBk
|
92
|
-
b2VzIG5vdCBzdXBwb3J0IEZJUFMiLCJ0eXBlIjoiZXJyb3IifV19LHsiY29u
|
93
|
-
ZGl0aW9ucyI6W3siZm4iOiJib29sZWFuRXF1YWxzIiwiYXJndiI6W3sicmVm
|
94
|
-
IjoiVXNlRHVhbFN0YWNrIn0sdHJ1ZV19XSwidHlwZSI6InRyZWUiLCJydWxl
|
95
|
-
cyI6W3siY29uZGl0aW9ucyI6W3siZm4iOiJib29sZWFuRXF1YWxzIiwiYXJn
|
96
|
-
diI6W3RydWUseyJmbiI6ImdldEF0dHIiLCJhcmd2IjpbeyJyZWYiOiJQYXJ0
|
97
|
-
aXRpb25SZXN1bHQifSwic3VwcG9ydHNEdWFsU3RhY2siXX1dfV0sInR5cGUi
|
98
|
-
OiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRpdGlvbnMiOltdLCJlbmRwb2ludCI6
|
99
|
-
eyJ1cmwiOiJodHRwczovL2RldmljZXMuaW90MWNsaWNrLntSZWdpb259LntQ
|
100
|
-
YXJ0aXRpb25SZXN1bHQjZHVhbFN0YWNrRG5zU3VmZml4fSIsInByb3BlcnRp
|
101
|
-
ZXMiOnt9LCJoZWFkZXJzIjp7fX0sInR5cGUiOiJlbmRwb2ludCJ9XX0seyJj
|
102
|
-
b25kaXRpb25zIjpbXSwiZXJyb3IiOiJEdWFsU3RhY2sgaXMgZW5hYmxlZCBi
|
103
|
-
dXQgdGhpcyBwYXJ0aXRpb24gZG9lcyBub3Qgc3VwcG9ydCBEdWFsU3RhY2si
|
104
|
-
LCJ0eXBlIjoiZXJyb3IifV19LHsiY29uZGl0aW9ucyI6W10sImVuZHBvaW50
|
105
|
-
Ijp7InVybCI6Imh0dHBzOi8vZGV2aWNlcy5pb3QxY2xpY2sue1JlZ2lvbn0u
|
106
|
-
e1BhcnRpdGlvblJlc3VsdCNkbnNTdWZmaXh9IiwicHJvcGVydGllcyI6e30s
|
107
|
-
ImhlYWRlcnMiOnt9fSwidHlwZSI6ImVuZHBvaW50In1dfV19
|
108
|
-
|
109
|
-
JSON
|
110
50
|
end
|
111
51
|
end
|
@@ -14,13 +14,6 @@ module Aws::IoT1ClickDevicesService
|
|
14
14
|
#
|
15
15
|
class Attributes < Aws::EmptyStructure; end
|
16
16
|
|
17
|
-
# @note When making an API call, you may pass ClaimDevicesByClaimCodeRequest
|
18
|
-
# data as a hash:
|
19
|
-
#
|
20
|
-
# {
|
21
|
-
# claim_code: "__string", # required
|
22
|
-
# }
|
23
|
-
#
|
24
17
|
# @!attribute [rw] claim_code
|
25
18
|
# @return [String]
|
26
19
|
#
|
@@ -50,13 +43,6 @@ module Aws::IoT1ClickDevicesService
|
|
50
43
|
include Aws::Structure
|
51
44
|
end
|
52
45
|
|
53
|
-
# @note When making an API call, you may pass DescribeDeviceRequest
|
54
|
-
# data as a hash:
|
55
|
-
#
|
56
|
-
# {
|
57
|
-
# device_id: "__string", # required
|
58
|
-
# }
|
59
|
-
#
|
60
46
|
# @!attribute [rw] device_id
|
61
47
|
# @return [String]
|
62
48
|
#
|
@@ -194,14 +180,6 @@ module Aws::IoT1ClickDevicesService
|
|
194
180
|
include Aws::Structure
|
195
181
|
end
|
196
182
|
|
197
|
-
# @note When making an API call, you may pass DeviceMethod
|
198
|
-
# data as a hash:
|
199
|
-
#
|
200
|
-
# {
|
201
|
-
# device_type: "__string",
|
202
|
-
# method_name: "__string",
|
203
|
-
# }
|
204
|
-
#
|
205
183
|
# @!attribute [rw] device_type
|
206
184
|
# The type of the device, such as "button".
|
207
185
|
# @return [String]
|
@@ -225,16 +203,6 @@ module Aws::IoT1ClickDevicesService
|
|
225
203
|
#
|
226
204
|
class Empty < Aws::EmptyStructure; end
|
227
205
|
|
228
|
-
# @note When making an API call, you may pass FinalizeDeviceClaimRequest
|
229
|
-
# data as a hash:
|
230
|
-
#
|
231
|
-
# {
|
232
|
-
# device_id: "__string", # required
|
233
|
-
# tags: {
|
234
|
-
# "__string" => "__string",
|
235
|
-
# },
|
236
|
-
# }
|
237
|
-
#
|
238
206
|
# @!attribute [rw] device_id
|
239
207
|
# @return [String]
|
240
208
|
#
|
@@ -278,13 +246,6 @@ module Aws::IoT1ClickDevicesService
|
|
278
246
|
include Aws::Structure
|
279
247
|
end
|
280
248
|
|
281
|
-
# @note When making an API call, you may pass GetDeviceMethodsRequest
|
282
|
-
# data as a hash:
|
283
|
-
#
|
284
|
-
# {
|
285
|
-
# device_id: "__string", # required
|
286
|
-
# }
|
287
|
-
#
|
288
249
|
# @!attribute [rw] device_id
|
289
250
|
# @return [String]
|
290
251
|
#
|
@@ -308,13 +269,6 @@ module Aws::IoT1ClickDevicesService
|
|
308
269
|
include Aws::Structure
|
309
270
|
end
|
310
271
|
|
311
|
-
# @note When making an API call, you may pass InitiateDeviceClaimRequest
|
312
|
-
# data as a hash:
|
313
|
-
#
|
314
|
-
# {
|
315
|
-
# device_id: "__string", # required
|
316
|
-
# }
|
317
|
-
#
|
318
272
|
# @!attribute [rw] device_id
|
319
273
|
# @return [String]
|
320
274
|
#
|
@@ -371,18 +325,6 @@ module Aws::IoT1ClickDevicesService
|
|
371
325
|
include Aws::Structure
|
372
326
|
end
|
373
327
|
|
374
|
-
# @note When making an API call, you may pass InvokeDeviceMethodRequest
|
375
|
-
# data as a hash:
|
376
|
-
#
|
377
|
-
# {
|
378
|
-
# device_id: "__string", # required
|
379
|
-
# device_method: {
|
380
|
-
# device_type: "__string",
|
381
|
-
# method_name: "__string",
|
382
|
-
# },
|
383
|
-
# device_method_parameters: "__string",
|
384
|
-
# }
|
385
|
-
#
|
386
328
|
# @!attribute [rw] device_id
|
387
329
|
# @return [String]
|
388
330
|
#
|
@@ -417,17 +359,6 @@ module Aws::IoT1ClickDevicesService
|
|
417
359
|
include Aws::Structure
|
418
360
|
end
|
419
361
|
|
420
|
-
# @note When making an API call, you may pass ListDeviceEventsRequest
|
421
|
-
# data as a hash:
|
422
|
-
#
|
423
|
-
# {
|
424
|
-
# device_id: "__string", # required
|
425
|
-
# from_time_stamp: Time.now, # required
|
426
|
-
# max_results: 1,
|
427
|
-
# next_token: "__string",
|
428
|
-
# to_time_stamp: Time.now, # required
|
429
|
-
# }
|
430
|
-
#
|
431
362
|
# @!attribute [rw] device_id
|
432
363
|
# @return [String]
|
433
364
|
#
|
@@ -470,15 +401,6 @@ module Aws::IoT1ClickDevicesService
|
|
470
401
|
include Aws::Structure
|
471
402
|
end
|
472
403
|
|
473
|
-
# @note When making an API call, you may pass ListDevicesRequest
|
474
|
-
# data as a hash:
|
475
|
-
#
|
476
|
-
# {
|
477
|
-
# device_type: "__string",
|
478
|
-
# max_results: 1,
|
479
|
-
# next_token: "__string",
|
480
|
-
# }
|
481
|
-
#
|
482
404
|
# @!attribute [rw] device_type
|
483
405
|
# @return [String]
|
484
406
|
#
|
@@ -515,13 +437,6 @@ module Aws::IoT1ClickDevicesService
|
|
515
437
|
include Aws::Structure
|
516
438
|
end
|
517
439
|
|
518
|
-
# @note When making an API call, you may pass ListTagsForResourceRequest
|
519
|
-
# data as a hash:
|
520
|
-
#
|
521
|
-
# {
|
522
|
-
# resource_arn: "__string", # required
|
523
|
-
# }
|
524
|
-
#
|
525
440
|
# @!attribute [rw] resource_arn
|
526
441
|
# @return [String]
|
527
442
|
#
|
@@ -613,16 +528,6 @@ module Aws::IoT1ClickDevicesService
|
|
613
528
|
include Aws::Structure
|
614
529
|
end
|
615
530
|
|
616
|
-
# @note When making an API call, you may pass TagResourceRequest
|
617
|
-
# data as a hash:
|
618
|
-
#
|
619
|
-
# {
|
620
|
-
# resource_arn: "__string", # required
|
621
|
-
# tags: { # required
|
622
|
-
# "__string" => "__string",
|
623
|
-
# },
|
624
|
-
# }
|
625
|
-
#
|
626
531
|
# @!attribute [rw] resource_arn
|
627
532
|
# @return [String]
|
628
533
|
#
|
@@ -638,13 +543,6 @@ module Aws::IoT1ClickDevicesService
|
|
638
543
|
include Aws::Structure
|
639
544
|
end
|
640
545
|
|
641
|
-
# @note When making an API call, you may pass UnclaimDeviceRequest
|
642
|
-
# data as a hash:
|
643
|
-
#
|
644
|
-
# {
|
645
|
-
# device_id: "__string", # required
|
646
|
-
# }
|
647
|
-
#
|
648
546
|
# @!attribute [rw] device_id
|
649
547
|
# @return [String]
|
650
548
|
#
|
@@ -667,14 +565,6 @@ module Aws::IoT1ClickDevicesService
|
|
667
565
|
include Aws::Structure
|
668
566
|
end
|
669
567
|
|
670
|
-
# @note When making an API call, you may pass UntagResourceRequest
|
671
|
-
# data as a hash:
|
672
|
-
#
|
673
|
-
# {
|
674
|
-
# resource_arn: "__string", # required
|
675
|
-
# tag_keys: ["__string"], # required
|
676
|
-
# }
|
677
|
-
#
|
678
568
|
# @!attribute [rw] resource_arn
|
679
569
|
# @return [String]
|
680
570
|
#
|
@@ -690,14 +580,6 @@ module Aws::IoT1ClickDevicesService
|
|
690
580
|
include Aws::Structure
|
691
581
|
end
|
692
582
|
|
693
|
-
# @note When making an API call, you may pass UpdateDeviceStateRequest
|
694
|
-
# data as a hash:
|
695
|
-
#
|
696
|
-
# {
|
697
|
-
# device_id: "__string", # required
|
698
|
-
# enabled: false,
|
699
|
-
# }
|
700
|
-
#
|
701
583
|
# @!attribute [rw] device_id
|
702
584
|
# @return [String]
|
703
585
|
#
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-iot1clickdevicesservice
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.39.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
|