aws-sdk-iot1clickdevicesservice 1.19.0 → 1.24.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
- SHA1:
3
- metadata.gz: c88af130708a8e0779133dc9520afcf75b4c3b70
4
- data.tar.gz: 304660a2c40cdb36e4687eb918facb3476900bde
2
+ SHA256:
3
+ metadata.gz: 16b3ac751f117dd9a7054ae7a5c33b8e67a8ba36a1613c0d5bb6d39be184a71c
4
+ data.tar.gz: cb0834175bb6397caa91d4f555be7417995b8204edbc2a4ef78b3647862b924d
5
5
  SHA512:
6
- metadata.gz: 6a6bd039be97aa786b836488956b4af870a8ddf5ef077ff7de8201ec88af9c31b53ccaed6bb9b24037f5c7cb248e226cc45e759b8169a034a8cef1241d0b4b4d
7
- data.tar.gz: 868e535bfb74477a06595f1b63da593a2c071a7e5314fc827716e087711095ca61943e6280fd5cc217176c4c6d291f40efb5ef9bf5e98049fbd71b21e34f8672
6
+ metadata.gz: b166ff11f602e07c9c2647916f466b61c7e6a87e6415bf68cfda8496e1ada12f0e46df7965e8542dd031bc783177e26d2ad1c0b40d6c116aab2404180e30bc64
7
+ data.tar.gz: 0eddf4ae7cce0df15319b1cd6e234bb5eb29ee3931230f75df31eaf0691eda98257d9d1a0c9531422feb33aef5ce7b50da839ed7f444ff89d7c48a6c9fa2e333
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # WARNING ABOUT GENERATED CODE
2
4
  #
3
5
  # This file is generated. See the contributing guide for more information:
@@ -42,9 +44,9 @@ require_relative 'aws-sdk-iot1clickdevicesservice/customizations'
42
44
  #
43
45
  # See {Errors} for more information.
44
46
  #
45
- # @service
47
+ # @!group service
46
48
  module Aws::IoT1ClickDevicesService
47
49
 
48
- GEM_VERSION = '1.19.0'
50
+ GEM_VERSION = '1.24.0'
49
51
 
50
52
  end
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # WARNING ABOUT GENERATED CODE
2
4
  #
3
5
  # This file is generated. See the contributing guide for more information:
@@ -24,6 +26,7 @@ require 'aws-sdk-core/plugins/jsonvalue_converter.rb'
24
26
  require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
25
27
  require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
26
28
  require 'aws-sdk-core/plugins/transfer_encoding.rb'
29
+ require 'aws-sdk-core/plugins/http_checksum.rb'
27
30
  require 'aws-sdk-core/plugins/signature_v4.rb'
28
31
  require 'aws-sdk-core/plugins/protocols/rest_json.rb'
29
32
 
@@ -32,11 +35,11 @@ Aws::Plugins::GlobalConfiguration.add_identifier(:iot1clickdevicesservice)
32
35
  module Aws::IoT1ClickDevicesService
33
36
  # An API client for IoT1ClickDevicesService. To construct a client, you need to configure a `:region` and `:credentials`.
34
37
  #
35
- # client = Aws::IoT1ClickDevicesService::Client.new(
36
- # region: region_name,
37
- # credentials: credentials,
38
- # # ...
39
- # )
38
+ # client = Aws::IoT1ClickDevicesService::Client.new(
39
+ # region: region_name,
40
+ # credentials: credentials,
41
+ # # ...
42
+ # )
40
43
  #
41
44
  # For details on configuring region and credentials see
42
45
  # the [developer guide](/sdk-for-ruby/v3/developer-guide/setup-config.html).
@@ -69,6 +72,7 @@ module Aws::IoT1ClickDevicesService
69
72
  add_plugin(Aws::Plugins::ClientMetricsPlugin)
70
73
  add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
71
74
  add_plugin(Aws::Plugins::TransferEncoding)
75
+ add_plugin(Aws::Plugins::HttpChecksum)
72
76
  add_plugin(Aws::Plugins::SignatureV4)
73
77
  add_plugin(Aws::Plugins::Protocols::RestJson)
74
78
 
@@ -81,13 +85,28 @@ module Aws::IoT1ClickDevicesService
81
85
  # * `Aws::Credentials` - Used for configuring static, non-refreshing
82
86
  # credentials.
83
87
  #
88
+ # * `Aws::SharedCredentials` - Used for loading static credentials from a
89
+ # shared file, such as `~/.aws/config`.
90
+ #
91
+ # * `Aws::AssumeRoleCredentials` - Used when you need to assume a role.
92
+ #
93
+ # * `Aws::AssumeRoleWebIdentityCredentials` - Used when you need to
94
+ # assume a role after providing credentials via the web.
95
+ #
96
+ # * `Aws::SSOCredentials` - Used for loading credentials from AWS SSO using an
97
+ # access token generated from `aws login`.
98
+ #
99
+ # * `Aws::ProcessCredentials` - Used for loading credentials from a
100
+ # process that outputs to stdout.
101
+ #
84
102
  # * `Aws::InstanceProfileCredentials` - Used for loading credentials
85
103
  # from an EC2 IMDS on an EC2 instance.
86
104
  #
87
- # * `Aws::SharedCredentials` - Used for loading credentials from a
88
- # shared file, such as `~/.aws/config`.
105
+ # * `Aws::ECSCredentials` - Used for loading credentials from
106
+ # instances running in ECS.
89
107
  #
90
- # * `Aws::AssumeRoleCredentials` - Used when you need to assume a role.
108
+ # * `Aws::CognitoIdentityCredentials` - Used for loading credentials
109
+ # from the Cognito Identity service.
91
110
  #
92
111
  # When `:credentials` are not configured directly, the following
93
112
  # locations will be searched for credentials:
@@ -97,15 +116,15 @@ module Aws::IoT1ClickDevicesService
97
116
  # * ENV['AWS_ACCESS_KEY_ID'], ENV['AWS_SECRET_ACCESS_KEY']
98
117
  # * `~/.aws/credentials`
99
118
  # * `~/.aws/config`
100
- # * EC2 IMDS instance profile - When used by default, the timeouts are
101
- # very aggressive. Construct and pass an instance of
102
- # `Aws::InstanceProfileCredentails` to enable retries and extended
103
- # timeouts.
119
+ # * EC2/ECS IMDS instance profile - When used by default, the timeouts
120
+ # are very aggressive. Construct and pass an instance of
121
+ # `Aws::InstanceProfileCredentails` or `Aws::ECSCredentials` to
122
+ # enable retries and extended timeouts.
104
123
  #
105
124
  # @option options [required, String] :region
106
125
  # The AWS region to connect to. The configured `:region` is
107
126
  # used to determine the service `:endpoint`. When not passed,
108
- # a default `:region` is search for in the following locations:
127
+ # a default `:region` is searched for in the following locations:
109
128
  #
110
129
  # * `Aws.config[:region]`
111
130
  # * `ENV['AWS_REGION']`
@@ -161,7 +180,7 @@ module Aws::IoT1ClickDevicesService
161
180
  # @option options [String] :endpoint
162
181
  # The client endpoint is normally constructed from the `:region`
163
182
  # option. You should only configure an `:endpoint` when connecting
164
- # to test endpoints. This should be avalid HTTP(S) URI.
183
+ # to test or custom endpoints. This should be a valid HTTP(S) URI.
165
184
  #
166
185
  # @option options [Integer] :endpoint_cache_max_entries (1000)
167
186
  # Used for the maximum size limit of the LRU cache storing endpoints data
@@ -176,7 +195,7 @@ module Aws::IoT1ClickDevicesService
176
195
  # requests fetching endpoints information. Defaults to 60 sec.
177
196
  #
178
197
  # @option options [Boolean] :endpoint_discovery (false)
179
- # When set to `true`, endpoint discovery will be enabled for operations when available. Defaults to `false`.
198
+ # When set to `true`, endpoint discovery will be enabled for operations when available.
180
199
  #
181
200
  # @option options [Aws::Log::Formatter] :log_formatter (Aws::Log::Formatter.default)
182
201
  # The log formatter.
@@ -229,15 +248,19 @@ module Aws::IoT1ClickDevicesService
229
248
  #
230
249
  # @option options [String] :retry_mode ("legacy")
231
250
  # Specifies which retry algorithm to use. Values are:
232
- # * `legacy` - The pre-existing retry behavior. This is default value if
233
- # no retry mode is provided.
234
- # * `standard` - A standardized set of retry rules across the AWS SDKs.
235
- # This includes support for retry quotas, which limit the number of
236
- # unsuccessful retries a client can make.
237
- # * `adaptive` - An experimental retry mode that includes all the
238
- # functionality of `standard` mode along with automatic client side
239
- # throttling. This is a provisional mode that may change behavior
240
- # in the future.
251
+ #
252
+ # * `legacy` - The pre-existing retry behavior. This is default value if
253
+ # no retry mode is provided.
254
+ #
255
+ # * `standard` - A standardized set of retry rules across the AWS SDKs.
256
+ # This includes support for retry quotas, which limit the number of
257
+ # unsuccessful retries a client can make.
258
+ #
259
+ # * `adaptive` - An experimental retry mode that includes all the
260
+ # functionality of `standard` mode along with automatic client side
261
+ # throttling. This is a provisional mode that may change behavior
262
+ # in the future.
263
+ #
241
264
  #
242
265
  # @option options [String] :secret_access_key
243
266
  #
@@ -265,8 +288,7 @@ module Aws::IoT1ClickDevicesService
265
288
  #
266
289
  # @option options [Integer] :http_read_timeout (60) The default
267
290
  # number of seconds to wait for response data. This value can
268
- # safely be set
269
- # per-request on the session yielded by {#session_for}.
291
+ # safely be set per-request on the session.
270
292
  #
271
293
  # @option options [Float] :http_idle_timeout (5) The number of
272
294
  # seconds a connection is allowed to sit idle before it is
@@ -278,7 +300,7 @@ module Aws::IoT1ClickDevicesService
278
300
  # request body. This option has no effect unless the request has
279
301
  # "Expect" header set to "100-continue". Defaults to `nil` which
280
302
  # disables this behaviour. This value can safely be set per
281
- # request on the session yielded by {#session_for}.
303
+ # request on the session.
282
304
  #
283
305
  # @option options [Boolean] :http_wire_trace (false) When `true`,
284
306
  # HTTP debug output will be sent to the `:logger`.
@@ -754,7 +776,7 @@ module Aws::IoT1ClickDevicesService
754
776
  params: params,
755
777
  config: config)
756
778
  context[:gem_name] = 'aws-sdk-iot1clickdevicesservice'
757
- context[:gem_version] = '1.19.0'
779
+ context[:gem_version] = '1.24.0'
758
780
  Seahorse::Client::Request.new(handlers, context)
759
781
  end
760
782
 
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # WARNING ABOUT GENERATED CODE
2
4
  #
3
5
  # This file is generated. See the contributing guide for more information:
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # WARNING ABOUT GENERATED CODE
2
4
  #
3
5
  # This file is generated. See the contributing guide for more information:
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # WARNING ABOUT GENERATED CODE
2
4
  #
3
5
  # This file is generated. See the contributing guide for more information:
@@ -6,13 +8,7 @@
6
8
  # WARNING ABOUT GENERATED CODE
7
9
 
8
10
  module Aws::IoT1ClickDevicesService
9
- # This class provides a resource oriented interface for IoT1ClickDevicesService.
10
- # To create a resource object:
11
- # resource = Aws::IoT1ClickDevicesService::Resource.new(region: 'us-west-2')
12
- # You can supply a client object with custom configuration that will be used for all resource operations.
13
- # If you do not pass +:client+, a default client will be constructed.
14
- # client = Aws::IoT1ClickDevicesService::Client.new(region: 'us-west-2')
15
- # resource = Aws::IoT1ClickDevicesService::Resource.new(client: client)
11
+
16
12
  class Resource
17
13
 
18
14
  # @param options ({})
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # WARNING ABOUT GENERATED CODE
2
4
  #
3
5
  # This file is generated. See the contributing guide for more information:
@@ -26,6 +28,7 @@ module Aws::IoT1ClickDevicesService
26
28
  #
27
29
  class ClaimDevicesByClaimCodeRequest < Struct.new(
28
30
  :claim_code)
31
+ SENSITIVE = []
29
32
  include Aws::Structure
30
33
  end
31
34
 
@@ -43,6 +46,7 @@ module Aws::IoT1ClickDevicesService
43
46
  class ClaimDevicesByClaimCodeResponse < Struct.new(
44
47
  :claim_code,
45
48
  :total)
49
+ SENSITIVE = []
46
50
  include Aws::Structure
47
51
  end
48
52
 
@@ -60,6 +64,7 @@ module Aws::IoT1ClickDevicesService
60
64
  #
61
65
  class DescribeDeviceRequest < Struct.new(
62
66
  :device_id)
67
+ SENSITIVE = []
63
68
  include Aws::Structure
64
69
  end
65
70
 
@@ -71,6 +76,7 @@ module Aws::IoT1ClickDevicesService
71
76
  #
72
77
  class DescribeDeviceResponse < Struct.new(
73
78
  :device_description)
79
+ SENSITIVE = []
74
80
  include Aws::Structure
75
81
  end
76
82
 
@@ -93,6 +99,7 @@ module Aws::IoT1ClickDevicesService
93
99
  :attributes,
94
100
  :device_id,
95
101
  :type)
102
+ SENSITIVE = []
96
103
  include Aws::Structure
97
104
  end
98
105
 
@@ -104,6 +111,7 @@ module Aws::IoT1ClickDevicesService
104
111
  #
105
112
  class DeviceClaimResponse < Struct.new(
106
113
  :state)
114
+ SENSITIVE = []
107
115
  include Aws::Structure
108
116
  end
109
117
 
@@ -146,6 +154,7 @@ module Aws::IoT1ClickDevicesService
146
154
  :remaining_life,
147
155
  :type,
148
156
  :tags)
157
+ SENSITIVE = []
149
158
  include Aws::Structure
150
159
  end
151
160
 
@@ -163,6 +172,7 @@ module Aws::IoT1ClickDevicesService
163
172
  class DeviceEvent < Struct.new(
164
173
  :device,
165
174
  :std_event)
175
+ SENSITIVE = []
166
176
  include Aws::Structure
167
177
  end
168
178
 
@@ -180,6 +190,7 @@ module Aws::IoT1ClickDevicesService
180
190
  class DeviceEventsResponse < Struct.new(
181
191
  :events,
182
192
  :next_token)
193
+ SENSITIVE = []
183
194
  include Aws::Structure
184
195
  end
185
196
 
@@ -204,6 +215,7 @@ module Aws::IoT1ClickDevicesService
204
215
  class DeviceMethod < Struct.new(
205
216
  :device_type,
206
217
  :method_name)
218
+ SENSITIVE = []
207
219
  include Aws::Structure
208
220
  end
209
221
 
@@ -234,6 +246,7 @@ module Aws::IoT1ClickDevicesService
234
246
  class FinalizeDeviceClaimRequest < Struct.new(
235
247
  :device_id,
236
248
  :tags)
249
+ SENSITIVE = []
237
250
  include Aws::Structure
238
251
  end
239
252
 
@@ -244,6 +257,7 @@ module Aws::IoT1ClickDevicesService
244
257
  #
245
258
  class FinalizeDeviceClaimResponse < Struct.new(
246
259
  :state)
260
+ SENSITIVE = []
247
261
  include Aws::Structure
248
262
  end
249
263
 
@@ -260,6 +274,7 @@ module Aws::IoT1ClickDevicesService
260
274
  class ForbiddenException < Struct.new(
261
275
  :code,
262
276
  :message)
277
+ SENSITIVE = []
263
278
  include Aws::Structure
264
279
  end
265
280
 
@@ -277,6 +292,7 @@ module Aws::IoT1ClickDevicesService
277
292
  #
278
293
  class GetDeviceMethodsRequest < Struct.new(
279
294
  :device_id)
295
+ SENSITIVE = []
280
296
  include Aws::Structure
281
297
  end
282
298
 
@@ -288,6 +304,7 @@ module Aws::IoT1ClickDevicesService
288
304
  #
289
305
  class GetDeviceMethodsResponse < Struct.new(
290
306
  :device_methods)
307
+ SENSITIVE = []
291
308
  include Aws::Structure
292
309
  end
293
310
 
@@ -305,6 +322,7 @@ module Aws::IoT1ClickDevicesService
305
322
  #
306
323
  class InitiateDeviceClaimRequest < Struct.new(
307
324
  :device_id)
325
+ SENSITIVE = []
308
326
  include Aws::Structure
309
327
  end
310
328
 
@@ -315,6 +333,7 @@ module Aws::IoT1ClickDevicesService
315
333
  #
316
334
  class InitiateDeviceClaimResponse < Struct.new(
317
335
  :state)
336
+ SENSITIVE = []
318
337
  include Aws::Structure
319
338
  end
320
339
 
@@ -331,6 +350,7 @@ module Aws::IoT1ClickDevicesService
331
350
  class InternalFailureException < Struct.new(
332
351
  :code,
333
352
  :message)
353
+ SENSITIVE = []
334
354
  include Aws::Structure
335
355
  end
336
356
 
@@ -347,6 +367,7 @@ module Aws::IoT1ClickDevicesService
347
367
  class InvalidRequestException < Struct.new(
348
368
  :code,
349
369
  :message)
370
+ SENSITIVE = []
350
371
  include Aws::Structure
351
372
  end
352
373
 
@@ -380,6 +401,7 @@ module Aws::IoT1ClickDevicesService
380
401
  :device_id,
381
402
  :device_method,
382
403
  :device_method_parameters)
404
+ SENSITIVE = []
383
405
  include Aws::Structure
384
406
  end
385
407
 
@@ -391,6 +413,7 @@ module Aws::IoT1ClickDevicesService
391
413
  #
392
414
  class InvokeDeviceMethodResponse < Struct.new(
393
415
  :device_method_response)
416
+ SENSITIVE = []
394
417
  include Aws::Structure
395
418
  end
396
419
 
@@ -428,6 +451,7 @@ module Aws::IoT1ClickDevicesService
428
451
  :max_results,
429
452
  :next_token,
430
453
  :to_time_stamp)
454
+ SENSITIVE = []
431
455
  include Aws::Structure
432
456
  end
433
457
 
@@ -442,6 +466,7 @@ module Aws::IoT1ClickDevicesService
442
466
  class ListDeviceEventsResponse < Struct.new(
443
467
  :events,
444
468
  :next_token)
469
+ SENSITIVE = []
445
470
  include Aws::Structure
446
471
  end
447
472
 
@@ -469,6 +494,7 @@ module Aws::IoT1ClickDevicesService
469
494
  :device_type,
470
495
  :max_results,
471
496
  :next_token)
497
+ SENSITIVE = []
472
498
  include Aws::Structure
473
499
  end
474
500
 
@@ -485,6 +511,7 @@ module Aws::IoT1ClickDevicesService
485
511
  class ListDevicesResponse < Struct.new(
486
512
  :devices,
487
513
  :next_token)
514
+ SENSITIVE = []
488
515
  include Aws::Structure
489
516
  end
490
517
 
@@ -502,6 +529,7 @@ module Aws::IoT1ClickDevicesService
502
529
  #
503
530
  class ListTagsForResourceRequest < Struct.new(
504
531
  :resource_arn)
532
+ SENSITIVE = []
505
533
  include Aws::Structure
506
534
  end
507
535
 
@@ -512,6 +540,7 @@ module Aws::IoT1ClickDevicesService
512
540
  #
513
541
  class ListTagsForResourceResponse < Struct.new(
514
542
  :tags)
543
+ SENSITIVE = []
515
544
  include Aws::Structure
516
545
  end
517
546
 
@@ -528,6 +557,7 @@ module Aws::IoT1ClickDevicesService
528
557
  class PreconditionFailedException < Struct.new(
529
558
  :code,
530
559
  :message)
560
+ SENSITIVE = []
531
561
  include Aws::Structure
532
562
  end
533
563
 
@@ -545,6 +575,7 @@ module Aws::IoT1ClickDevicesService
545
575
  class RangeNotSatisfiableException < Struct.new(
546
576
  :code,
547
577
  :message)
578
+ SENSITIVE = []
548
579
  include Aws::Structure
549
580
  end
550
581
 
@@ -561,6 +592,7 @@ module Aws::IoT1ClickDevicesService
561
592
  class ResourceConflictException < Struct.new(
562
593
  :code,
563
594
  :message)
595
+ SENSITIVE = []
564
596
  include Aws::Structure
565
597
  end
566
598
 
@@ -577,6 +609,7 @@ module Aws::IoT1ClickDevicesService
577
609
  class ResourceNotFoundException < Struct.new(
578
610
  :code,
579
611
  :message)
612
+ SENSITIVE = []
580
613
  include Aws::Structure
581
614
  end
582
615
 
@@ -601,6 +634,7 @@ module Aws::IoT1ClickDevicesService
601
634
  class TagResourceRequest < Struct.new(
602
635
  :resource_arn,
603
636
  :tags)
637
+ SENSITIVE = []
604
638
  include Aws::Structure
605
639
  end
606
640
 
@@ -618,6 +652,7 @@ module Aws::IoT1ClickDevicesService
618
652
  #
619
653
  class UnclaimDeviceRequest < Struct.new(
620
654
  :device_id)
655
+ SENSITIVE = []
621
656
  include Aws::Structure
622
657
  end
623
658
 
@@ -628,6 +663,7 @@ module Aws::IoT1ClickDevicesService
628
663
  #
629
664
  class UnclaimDeviceResponse < Struct.new(
630
665
  :state)
666
+ SENSITIVE = []
631
667
  include Aws::Structure
632
668
  end
633
669
 
@@ -650,6 +686,7 @@ module Aws::IoT1ClickDevicesService
650
686
  class UntagResourceRequest < Struct.new(
651
687
  :resource_arn,
652
688
  :tag_keys)
689
+ SENSITIVE = []
653
690
  include Aws::Structure
654
691
  end
655
692
 
@@ -673,6 +710,7 @@ module Aws::IoT1ClickDevicesService
673
710
  class UpdateDeviceStateRequest < Struct.new(
674
711
  :device_id,
675
712
  :enabled)
713
+ SENSITIVE = []
676
714
  include Aws::Structure
677
715
  end
678
716
 
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.19.0
4
+ version: 1.24.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: 2020-03-09 00:00:00.000000000 Z
11
+ date: 2020-08-25 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.71.0
22
+ version: 3.99.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.71.0
32
+ version: 3.99.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement
@@ -81,7 +81,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
81
81
  version: '0'
82
82
  requirements: []
83
83
  rubyforge_project:
84
- rubygems_version: 2.5.2.3
84
+ rubygems_version: 2.7.6.2
85
85
  signing_key:
86
86
  specification_version: 4
87
87
  summary: AWS SDK for Ruby - AWS IoT 1-Click Devices Service