aws-sdk-iot1clickdevicesservice 1.10.0 → 1.11.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
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ce4c92b50029a365d07ad1033142ceecd96ac2d1
|
4
|
+
data.tar.gz: f8e537b2cf42661a883069bfeaa342dc9b28aeb2
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: bd6894e8b4bb8e49bb3f192a84422b9f12edc95d423757f1f2aeb21a4d3f29c760c123b4bbc28dbd5d3010ff8d619f5e0c5bc1f3522370957a50914c46913dd4
|
7
|
+
data.tar.gz: cdbd49db292cd16ecbe153af7811ecc8a7f5a8b83d204ab1d6c8dc6750dd419bbd93f12a01fcd34e40cc449cb8a04679e87833c69ec6fb1684e7e6677efabcb7
|
@@ -199,6 +199,49 @@ module Aws::IoT1ClickDevicesService
|
|
199
199
|
# When `true`, request parameters are validated before
|
200
200
|
# sending the request.
|
201
201
|
#
|
202
|
+
# @option options [URI::HTTP,String] :http_proxy A proxy to send
|
203
|
+
# requests through. Formatted like 'http://proxy.com:123'.
|
204
|
+
#
|
205
|
+
# @option options [Float] :http_open_timeout (15) The number of
|
206
|
+
# seconds to wait when opening a HTTP session before rasing a
|
207
|
+
# `Timeout::Error`.
|
208
|
+
#
|
209
|
+
# @option options [Integer] :http_read_timeout (60) The default
|
210
|
+
# number of seconds to wait for response data. This value can
|
211
|
+
# safely be set
|
212
|
+
# per-request on the session yeidled by {#session_for}.
|
213
|
+
#
|
214
|
+
# @option options [Float] :http_idle_timeout (5) The number of
|
215
|
+
# seconds a connection is allowed to sit idble before it is
|
216
|
+
# considered stale. Stale connections are closed and removed
|
217
|
+
# from the pool before making a request.
|
218
|
+
#
|
219
|
+
# @option options [Float] :http_continue_timeout (1) The number of
|
220
|
+
# seconds to wait for a 100-continue response before sending the
|
221
|
+
# request body. This option has no effect unless the request has
|
222
|
+
# "Expect" header set to "100-continue". Defaults to `nil` which
|
223
|
+
# disables this behaviour. This value can safely be set per
|
224
|
+
# request on the session yeidled by {#session_for}.
|
225
|
+
#
|
226
|
+
# @option options [Boolean] :http_wire_trace (false) When `true`,
|
227
|
+
# HTTP debug output will be sent to the `:logger`.
|
228
|
+
#
|
229
|
+
# @option options [Boolean] :ssl_verify_peer (true) When `true`,
|
230
|
+
# SSL peer certificates are verified when establishing a
|
231
|
+
# connection.
|
232
|
+
#
|
233
|
+
# @option options [String] :ssl_ca_bundle Full path to the SSL
|
234
|
+
# certificate authority bundle file that should be used when
|
235
|
+
# verifying peer certificates. If you do not pass
|
236
|
+
# `:ssl_ca_bundle` or `:ssl_ca_directory` the the system default
|
237
|
+
# will be used if available.
|
238
|
+
#
|
239
|
+
# @option options [String] :ssl_ca_directory Full path of the
|
240
|
+
# directory that contains the unbundled SSL certificate
|
241
|
+
# authority files for verifying peer certificates. If you do
|
242
|
+
# not pass `:ssl_ca_bundle` or `:ssl_ca_directory` the the
|
243
|
+
# system default will be used if available.
|
244
|
+
#
|
202
245
|
def initialize(*args)
|
203
246
|
super
|
204
247
|
end
|
@@ -503,7 +546,7 @@ module Aws::IoT1ClickDevicesService
|
|
503
546
|
req.send_request(options)
|
504
547
|
end
|
505
548
|
|
506
|
-
#
|
549
|
+
# Lists the tags associated with the specified resource ARN.
|
507
550
|
#
|
508
551
|
# @option params [required, String] :resource_arn
|
509
552
|
#
|
@@ -531,9 +574,13 @@ module Aws::IoT1ClickDevicesService
|
|
531
574
|
req.send_request(options)
|
532
575
|
end
|
533
576
|
|
534
|
-
#
|
535
|
-
#
|
536
|
-
#
|
577
|
+
# Adds or updates the tags associated with the resource ARN. See [AWS
|
578
|
+
# IoT 1-Click Service Limits][1] for the maximum number of tags allowed
|
579
|
+
# per resource.
|
580
|
+
#
|
581
|
+
#
|
582
|
+
#
|
583
|
+
# [1]: https://docs.aws.amazon.com/iot-1-click/latest/developerguide/1click-appendix.html#1click-limits
|
537
584
|
#
|
538
585
|
# @option params [required, String] :resource_arn
|
539
586
|
#
|
@@ -586,7 +633,8 @@ module Aws::IoT1ClickDevicesService
|
|
586
633
|
req.send_request(options)
|
587
634
|
end
|
588
635
|
|
589
|
-
#
|
636
|
+
# Using tag keys, deletes the tags (key/value pairs) associated with the
|
637
|
+
# specified resource ARN.
|
590
638
|
#
|
591
639
|
# @option params [required, String] :resource_arn
|
592
640
|
#
|
@@ -649,7 +697,7 @@ module Aws::IoT1ClickDevicesService
|
|
649
697
|
params: params,
|
650
698
|
config: config)
|
651
699
|
context[:gem_name] = 'aws-sdk-iot1clickdevicesservice'
|
652
|
-
context[:gem_version] = '1.
|
700
|
+
context[:gem_version] = '1.11.0'
|
653
701
|
Seahorse::Client::Request.new(handlers, context)
|
654
702
|
end
|
655
703
|
|
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.11.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: 2019-
|
11
|
+
date: 2019-04-05 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|