aws-sdk-iot1clickprojects 1.19.0 → 1.24.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- data/lib/aws-sdk-iot1clickprojects.rb +4 -2
- data/lib/aws-sdk-iot1clickprojects/client.rb +54 -28
- data/lib/aws-sdk-iot1clickprojects/client_api.rb +2 -0
- data/lib/aws-sdk-iot1clickprojects/errors.rb +2 -0
- data/lib/aws-sdk-iot1clickprojects/resource.rb +3 -7
- data/lib/aws-sdk-iot1clickprojects/types.rb +35 -0
- metadata +5 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 17303f75a0a121dedd8ab682391d343129161cde202dbad2d44d64a5e60eb224
|
4
|
+
data.tar.gz: d0100d8765385662d2f019e0b59455e9f32b4a95763d0c87d18af352a9fa0d63
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f42537f137d2576bea42fa712ed542c468f25b060af345dc204335982959c583e5bc9669026e34385640201d3a1833e8d03b81d480b925373d0d3e4fc124db1d
|
7
|
+
data.tar.gz: e4e406fb8c1636c001e323b6f0836ed7e4313d8226b25c57df2994fdb161068fa42e28ca632fe91fb1329fcd4be889f2b0dae77a4ac2b0bd3fd6b98b5e415e8b
|
@@ -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-iot1clickprojects/customizations'
|
|
42
44
|
#
|
43
45
|
# See {Errors} for more information.
|
44
46
|
#
|
45
|
-
#
|
47
|
+
# @!group service
|
46
48
|
module Aws::IoT1ClickProjects
|
47
49
|
|
48
|
-
GEM_VERSION = '1.
|
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(:iot1clickprojects)
|
|
32
35
|
module Aws::IoT1ClickProjects
|
33
36
|
# An API client for IoT1ClickProjects. To construct a client, you need to configure a `:region` and `:credentials`.
|
34
37
|
#
|
35
|
-
#
|
36
|
-
#
|
37
|
-
#
|
38
|
-
#
|
39
|
-
#
|
38
|
+
# client = Aws::IoT1ClickProjects::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::IoT1ClickProjects
|
|
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::IoT1ClickProjects
|
|
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::
|
88
|
-
#
|
105
|
+
# * `Aws::ECSCredentials` - Used for loading credentials from
|
106
|
+
# instances running in ECS.
|
89
107
|
#
|
90
|
-
# * `Aws::
|
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::IoT1ClickProjects
|
|
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
|
101
|
-
# very aggressive. Construct and pass an instance of
|
102
|
-
# `Aws::InstanceProfileCredentails`
|
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
|
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::IoT1ClickProjects
|
|
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
|
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::IoT1ClickProjects
|
|
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.
|
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::IoT1ClickProjects
|
|
229
248
|
#
|
230
249
|
# @option options [String] :retry_mode ("legacy")
|
231
250
|
# Specifies which retry algorithm to use. Values are:
|
232
|
-
#
|
233
|
-
#
|
234
|
-
#
|
235
|
-
#
|
236
|
-
#
|
237
|
-
#
|
238
|
-
#
|
239
|
-
#
|
240
|
-
#
|
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::IoT1ClickProjects
|
|
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::IoT1ClickProjects
|
|
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
|
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`.
|
@@ -633,6 +655,8 @@ module Aws::IoT1ClickProjects
|
|
633
655
|
# * {Types::ListPlacementsResponse#placements #placements} => Array<Types::PlacementSummary>
|
634
656
|
# * {Types::ListPlacementsResponse#next_token #next_token} => String
|
635
657
|
#
|
658
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
659
|
+
#
|
636
660
|
# @example Request syntax with placeholder values
|
637
661
|
#
|
638
662
|
# resp = client.list_placements({
|
@@ -672,6 +696,8 @@ module Aws::IoT1ClickProjects
|
|
672
696
|
# * {Types::ListProjectsResponse#projects #projects} => Array<Types::ProjectSummary>
|
673
697
|
# * {Types::ListProjectsResponse#next_token #next_token} => String
|
674
698
|
#
|
699
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
700
|
+
#
|
675
701
|
# @example Request syntax with placeholder values
|
676
702
|
#
|
677
703
|
# resp = client.list_projects({
|
@@ -879,7 +905,7 @@ module Aws::IoT1ClickProjects
|
|
879
905
|
params: params,
|
880
906
|
config: config)
|
881
907
|
context[:gem_name] = 'aws-sdk-iot1clickprojects'
|
882
|
-
context[:gem_version] = '1.
|
908
|
+
context[:gem_version] = '1.24.0'
|
883
909
|
Seahorse::Client::Request.new(handlers, context)
|
884
910
|
end
|
885
911
|
|
@@ -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::IoT1ClickProjects
|
9
|
-
|
10
|
-
# To create a resource object:
|
11
|
-
# resource = Aws::IoT1ClickProjects::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::IoT1ClickProjects::Client.new(region: 'us-west-2')
|
15
|
-
# resource = Aws::IoT1ClickProjects::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:
|
@@ -42,6 +44,7 @@ module Aws::IoT1ClickProjects
|
|
42
44
|
:placement_name,
|
43
45
|
:device_id,
|
44
46
|
:device_template_name)
|
47
|
+
SENSITIVE = []
|
45
48
|
include Aws::Structure
|
46
49
|
end
|
47
50
|
|
@@ -75,6 +78,7 @@ module Aws::IoT1ClickProjects
|
|
75
78
|
:placement_name,
|
76
79
|
:project_name,
|
77
80
|
:attributes)
|
81
|
+
SENSITIVE = []
|
78
82
|
include Aws::Structure
|
79
83
|
end
|
80
84
|
|
@@ -135,6 +139,7 @@ module Aws::IoT1ClickProjects
|
|
135
139
|
:description,
|
136
140
|
:placement_template,
|
137
141
|
:tags)
|
142
|
+
SENSITIVE = []
|
138
143
|
include Aws::Structure
|
139
144
|
end
|
140
145
|
|
@@ -159,6 +164,7 @@ module Aws::IoT1ClickProjects
|
|
159
164
|
class DeletePlacementRequest < Struct.new(
|
160
165
|
:placement_name,
|
161
166
|
:project_name)
|
167
|
+
SENSITIVE = []
|
162
168
|
include Aws::Structure
|
163
169
|
end
|
164
170
|
|
@@ -177,6 +183,7 @@ module Aws::IoT1ClickProjects
|
|
177
183
|
#
|
178
184
|
class DeleteProjectRequest < Struct.new(
|
179
185
|
:project_name)
|
186
|
+
SENSITIVE = []
|
180
187
|
include Aws::Structure
|
181
188
|
end
|
182
189
|
|
@@ -201,6 +208,7 @@ module Aws::IoT1ClickProjects
|
|
201
208
|
class DescribePlacementRequest < Struct.new(
|
202
209
|
:placement_name,
|
203
210
|
:project_name)
|
211
|
+
SENSITIVE = []
|
204
212
|
include Aws::Structure
|
205
213
|
end
|
206
214
|
|
@@ -210,6 +218,7 @@ module Aws::IoT1ClickProjects
|
|
210
218
|
#
|
211
219
|
class DescribePlacementResponse < Struct.new(
|
212
220
|
:placement)
|
221
|
+
SENSITIVE = []
|
213
222
|
include Aws::Structure
|
214
223
|
end
|
215
224
|
|
@@ -226,6 +235,7 @@ module Aws::IoT1ClickProjects
|
|
226
235
|
#
|
227
236
|
class DescribeProjectRequest < Struct.new(
|
228
237
|
:project_name)
|
238
|
+
SENSITIVE = []
|
229
239
|
include Aws::Structure
|
230
240
|
end
|
231
241
|
|
@@ -235,6 +245,7 @@ module Aws::IoT1ClickProjects
|
|
235
245
|
#
|
236
246
|
class DescribeProjectResponse < Struct.new(
|
237
247
|
:project)
|
248
|
+
SENSITIVE = []
|
238
249
|
include Aws::Structure
|
239
250
|
end
|
240
251
|
|
@@ -263,6 +274,7 @@ module Aws::IoT1ClickProjects
|
|
263
274
|
class DeviceTemplate < Struct.new(
|
264
275
|
:device_type,
|
265
276
|
:callback_overrides)
|
277
|
+
SENSITIVE = []
|
266
278
|
include Aws::Structure
|
267
279
|
end
|
268
280
|
|
@@ -291,6 +303,7 @@ module Aws::IoT1ClickProjects
|
|
291
303
|
:project_name,
|
292
304
|
:placement_name,
|
293
305
|
:device_template_name)
|
306
|
+
SENSITIVE = []
|
294
307
|
include Aws::Structure
|
295
308
|
end
|
296
309
|
|
@@ -315,6 +328,7 @@ module Aws::IoT1ClickProjects
|
|
315
328
|
class GetDevicesInPlacementRequest < Struct.new(
|
316
329
|
:project_name,
|
317
330
|
:placement_name)
|
331
|
+
SENSITIVE = []
|
318
332
|
include Aws::Structure
|
319
333
|
end
|
320
334
|
|
@@ -325,6 +339,7 @@ module Aws::IoT1ClickProjects
|
|
325
339
|
#
|
326
340
|
class GetDevicesInPlacementResponse < Struct.new(
|
327
341
|
:devices)
|
342
|
+
SENSITIVE = []
|
328
343
|
include Aws::Structure
|
329
344
|
end
|
330
345
|
|
@@ -337,6 +352,7 @@ module Aws::IoT1ClickProjects
|
|
337
352
|
class InternalFailureException < Struct.new(
|
338
353
|
:code,
|
339
354
|
:message)
|
355
|
+
SENSITIVE = []
|
340
356
|
include Aws::Structure
|
341
357
|
end
|
342
358
|
|
@@ -349,6 +365,7 @@ module Aws::IoT1ClickProjects
|
|
349
365
|
class InvalidRequestException < Struct.new(
|
350
366
|
:code,
|
351
367
|
:message)
|
368
|
+
SENSITIVE = []
|
352
369
|
include Aws::Structure
|
353
370
|
end
|
354
371
|
|
@@ -378,6 +395,7 @@ module Aws::IoT1ClickProjects
|
|
378
395
|
:project_name,
|
379
396
|
:next_token,
|
380
397
|
:max_results)
|
398
|
+
SENSITIVE = []
|
381
399
|
include Aws::Structure
|
382
400
|
end
|
383
401
|
|
@@ -393,6 +411,7 @@ module Aws::IoT1ClickProjects
|
|
393
411
|
class ListPlacementsResponse < Struct.new(
|
394
412
|
:placements,
|
395
413
|
:next_token)
|
414
|
+
SENSITIVE = []
|
396
415
|
include Aws::Structure
|
397
416
|
end
|
398
417
|
|
@@ -416,6 +435,7 @@ module Aws::IoT1ClickProjects
|
|
416
435
|
class ListProjectsRequest < Struct.new(
|
417
436
|
:next_token,
|
418
437
|
:max_results)
|
438
|
+
SENSITIVE = []
|
419
439
|
include Aws::Structure
|
420
440
|
end
|
421
441
|
|
@@ -431,6 +451,7 @@ module Aws::IoT1ClickProjects
|
|
431
451
|
class ListProjectsResponse < Struct.new(
|
432
452
|
:projects,
|
433
453
|
:next_token)
|
454
|
+
SENSITIVE = []
|
434
455
|
include Aws::Structure
|
435
456
|
end
|
436
457
|
|
@@ -447,6 +468,7 @@ module Aws::IoT1ClickProjects
|
|
447
468
|
#
|
448
469
|
class ListTagsForResourceRequest < Struct.new(
|
449
470
|
:resource_arn)
|
471
|
+
SENSITIVE = []
|
450
472
|
include Aws::Structure
|
451
473
|
end
|
452
474
|
|
@@ -457,6 +479,7 @@ module Aws::IoT1ClickProjects
|
|
457
479
|
#
|
458
480
|
class ListTagsForResourceResponse < Struct.new(
|
459
481
|
:tags)
|
482
|
+
SENSITIVE = []
|
460
483
|
include Aws::Structure
|
461
484
|
end
|
462
485
|
|
@@ -491,6 +514,7 @@ module Aws::IoT1ClickProjects
|
|
491
514
|
:attributes,
|
492
515
|
:created_date,
|
493
516
|
:updated_date)
|
517
|
+
SENSITIVE = []
|
494
518
|
include Aws::Structure
|
495
519
|
end
|
496
520
|
|
@@ -520,6 +544,7 @@ module Aws::IoT1ClickProjects
|
|
520
544
|
:placement_name,
|
521
545
|
:created_date,
|
522
546
|
:updated_date)
|
547
|
+
SENSITIVE = []
|
523
548
|
include Aws::Structure
|
524
549
|
end
|
525
550
|
|
@@ -555,6 +580,7 @@ module Aws::IoT1ClickProjects
|
|
555
580
|
class PlacementTemplate < Struct.new(
|
556
581
|
:default_attributes,
|
557
582
|
:device_templates)
|
583
|
+
SENSITIVE = []
|
558
584
|
include Aws::Structure
|
559
585
|
end
|
560
586
|
|
@@ -600,6 +626,7 @@ module Aws::IoT1ClickProjects
|
|
600
626
|
:updated_date,
|
601
627
|
:placement_template,
|
602
628
|
:tags)
|
629
|
+
SENSITIVE = []
|
603
630
|
include Aws::Structure
|
604
631
|
end
|
605
632
|
|
@@ -635,6 +662,7 @@ module Aws::IoT1ClickProjects
|
|
635
662
|
:created_date,
|
636
663
|
:updated_date,
|
637
664
|
:tags)
|
665
|
+
SENSITIVE = []
|
638
666
|
include Aws::Structure
|
639
667
|
end
|
640
668
|
|
@@ -647,6 +675,7 @@ module Aws::IoT1ClickProjects
|
|
647
675
|
class ResourceConflictException < Struct.new(
|
648
676
|
:code,
|
649
677
|
:message)
|
678
|
+
SENSITIVE = []
|
650
679
|
include Aws::Structure
|
651
680
|
end
|
652
681
|
|
@@ -659,6 +688,7 @@ module Aws::IoT1ClickProjects
|
|
659
688
|
class ResourceNotFoundException < Struct.new(
|
660
689
|
:code,
|
661
690
|
:message)
|
691
|
+
SENSITIVE = []
|
662
692
|
include Aws::Structure
|
663
693
|
end
|
664
694
|
|
@@ -689,6 +719,7 @@ module Aws::IoT1ClickProjects
|
|
689
719
|
class TagResourceRequest < Struct.new(
|
690
720
|
:resource_arn,
|
691
721
|
:tags)
|
722
|
+
SENSITIVE = []
|
692
723
|
include Aws::Structure
|
693
724
|
end
|
694
725
|
|
@@ -703,6 +734,7 @@ module Aws::IoT1ClickProjects
|
|
703
734
|
class TooManyRequestsException < Struct.new(
|
704
735
|
:code,
|
705
736
|
:message)
|
737
|
+
SENSITIVE = []
|
706
738
|
include Aws::Structure
|
707
739
|
end
|
708
740
|
|
@@ -725,6 +757,7 @@ module Aws::IoT1ClickProjects
|
|
725
757
|
class UntagResourceRequest < Struct.new(
|
726
758
|
:resource_arn,
|
727
759
|
:tag_keys)
|
760
|
+
SENSITIVE = []
|
728
761
|
include Aws::Structure
|
729
762
|
end
|
730
763
|
|
@@ -758,6 +791,7 @@ module Aws::IoT1ClickProjects
|
|
758
791
|
:placement_name,
|
759
792
|
:project_name,
|
760
793
|
:attributes)
|
794
|
+
SENSITIVE = []
|
761
795
|
include Aws::Structure
|
762
796
|
end
|
763
797
|
|
@@ -804,6 +838,7 @@ module Aws::IoT1ClickProjects
|
|
804
838
|
:project_name,
|
805
839
|
:description,
|
806
840
|
:placement_template)
|
841
|
+
SENSITIVE = []
|
807
842
|
include Aws::Structure
|
808
843
|
end
|
809
844
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-iot1clickprojects
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
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-
|
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.
|
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.
|
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.
|
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 Projects
|