aws-sdk-iot1clickprojects 1.18.0 → 1.23.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 +5 -5
- data/lib/aws-sdk-iot1clickprojects.rb +9 -4
- data/lib/aws-sdk-iot1clickprojects/client.rb +76 -14
- data/lib/aws-sdk-iot1clickprojects/client_api.rb +2 -0
- data/lib/aws-sdk-iot1clickprojects/errors.rb +29 -5
- data/lib/aws-sdk-iot1clickprojects/resource.rb +3 -0
- 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: 717f3b3d8fba463b4e5a78091ff5129b2540cb8f5d07a23040623bd1ca9190a9
|
4
|
+
data.tar.gz: c00481dd393d024c32d77ef938383c536790707ceaa44ac9aae988094805b476
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7b2c8ba532dcc2ea4e95b921d75548e2339ad9042f9e626602e93069b1370ca81cdf7a9f4fd53ff657a0df0144c21dccc0d688087753c3aec911be5a4a04a65d
|
7
|
+
data.tar.gz: c483e81f3058f09e0a3e8a687154ba7075c4edff25ab4b8515b3bac808ad76232765cb52f6dc9a32d96052e276c51bd821a9cc0a32efb7455b5ca666a980db23
|
@@ -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,17 +26,20 @@ require_relative 'aws-sdk-iot1clickprojects/customizations'
|
|
24
26
|
# methods each accept a hash of request parameters and return a response
|
25
27
|
# structure.
|
26
28
|
#
|
29
|
+
# io_t1_click_projects = Aws::IoT1ClickProjects::Client.new
|
30
|
+
# resp = io_t1_click_projects.associate_device_with_placement(params)
|
31
|
+
#
|
27
32
|
# See {Client} for more information.
|
28
33
|
#
|
29
34
|
# # Errors
|
30
35
|
#
|
31
|
-
# Errors returned from AWS IoT 1-Click Projects Service
|
32
|
-
# extend {Errors::ServiceError}.
|
36
|
+
# Errors returned from AWS IoT 1-Click Projects Service are defined in the
|
37
|
+
# {Errors} module and all extend {Errors::ServiceError}.
|
33
38
|
#
|
34
39
|
# begin
|
35
40
|
# # do stuff
|
36
41
|
# rescue Aws::IoT1ClickProjects::Errors::ServiceError
|
37
|
-
# # rescues all
|
42
|
+
# # rescues all AWS IoT 1-Click Projects Service API errors
|
38
43
|
# end
|
39
44
|
#
|
40
45
|
# See {Errors} for more information.
|
@@ -42,6 +47,6 @@ require_relative 'aws-sdk-iot1clickprojects/customizations'
|
|
42
47
|
# @service
|
43
48
|
module Aws::IoT1ClickProjects
|
44
49
|
|
45
|
-
GEM_VERSION = '1.
|
50
|
+
GEM_VERSION = '1.23.0'
|
46
51
|
|
47
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,12 +26,25 @@ 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
|
|
30
33
|
Aws::Plugins::GlobalConfiguration.add_identifier(:iot1clickprojects)
|
31
34
|
|
32
35
|
module Aws::IoT1ClickProjects
|
36
|
+
# An API client for IoT1ClickProjects. To construct a client, you need to configure a `:region` and `:credentials`.
|
37
|
+
#
|
38
|
+
# client = Aws::IoT1ClickProjects::Client.new(
|
39
|
+
# region: region_name,
|
40
|
+
# credentials: credentials,
|
41
|
+
# # ...
|
42
|
+
# )
|
43
|
+
#
|
44
|
+
# For details on configuring region and credentials see
|
45
|
+
# the [developer guide](/sdk-for-ruby/v3/developer-guide/setup-config.html).
|
46
|
+
#
|
47
|
+
# See {#initialize} for a full list of supported configuration options.
|
33
48
|
class Client < Seahorse::Client::Base
|
34
49
|
|
35
50
|
include Aws::ClientStubs
|
@@ -57,6 +72,7 @@ module Aws::IoT1ClickProjects
|
|
57
72
|
add_plugin(Aws::Plugins::ClientMetricsPlugin)
|
58
73
|
add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
|
59
74
|
add_plugin(Aws::Plugins::TransferEncoding)
|
75
|
+
add_plugin(Aws::Plugins::HttpChecksum)
|
60
76
|
add_plugin(Aws::Plugins::SignatureV4)
|
61
77
|
add_plugin(Aws::Plugins::Protocols::RestJson)
|
62
78
|
|
@@ -93,7 +109,7 @@ module Aws::IoT1ClickProjects
|
|
93
109
|
# @option options [required, String] :region
|
94
110
|
# The AWS region to connect to. The configured `:region` is
|
95
111
|
# used to determine the service `:endpoint`. When not passed,
|
96
|
-
# a default `:region` is
|
112
|
+
# a default `:region` is searched for in the following locations:
|
97
113
|
#
|
98
114
|
# * `Aws.config[:region]`
|
99
115
|
# * `ENV['AWS_REGION']`
|
@@ -108,6 +124,12 @@ module Aws::IoT1ClickProjects
|
|
108
124
|
# When set to `true`, a thread polling for endpoints will be running in
|
109
125
|
# the background every 60 secs (default). Defaults to `false`.
|
110
126
|
#
|
127
|
+
# @option options [Boolean] :adaptive_retry_wait_to_fill (true)
|
128
|
+
# Used only in `adaptive` retry mode. When true, the request will sleep
|
129
|
+
# until there is sufficent client side capacity to retry the request.
|
130
|
+
# When false, the request will raise a `RetryCapacityNotAvailableError` and will
|
131
|
+
# not retry instead of sleeping.
|
132
|
+
#
|
111
133
|
# @option options [Boolean] :client_side_monitoring (false)
|
112
134
|
# When `true`, client-side metrics will be collected for all API requests from
|
113
135
|
# this client.
|
@@ -132,6 +154,10 @@ module Aws::IoT1ClickProjects
|
|
132
154
|
# When `true`, an attempt is made to coerce request parameters into
|
133
155
|
# the required types.
|
134
156
|
#
|
157
|
+
# @option options [Boolean] :correct_clock_skew (true)
|
158
|
+
# Used only in `standard` and adaptive retry modes. Specifies whether to apply
|
159
|
+
# a clock skew correction and retry requests with skewed client clocks.
|
160
|
+
#
|
135
161
|
# @option options [Boolean] :disable_host_prefix_injection (false)
|
136
162
|
# Set to true to disable SDK automatically adding host prefix
|
137
163
|
# to default service endpoint when available.
|
@@ -139,7 +165,7 @@ module Aws::IoT1ClickProjects
|
|
139
165
|
# @option options [String] :endpoint
|
140
166
|
# The client endpoint is normally constructed from the `:region`
|
141
167
|
# option. You should only configure an `:endpoint` when connecting
|
142
|
-
# to test endpoints. This should be
|
168
|
+
# to test or custom endpoints. This should be a valid HTTP(S) URI.
|
143
169
|
#
|
144
170
|
# @option options [Integer] :endpoint_cache_max_entries (1000)
|
145
171
|
# Used for the maximum size limit of the LRU cache storing endpoints data
|
@@ -154,7 +180,7 @@ module Aws::IoT1ClickProjects
|
|
154
180
|
# requests fetching endpoints information. Defaults to 60 sec.
|
155
181
|
#
|
156
182
|
# @option options [Boolean] :endpoint_discovery (false)
|
157
|
-
# When set to `true`, endpoint discovery will be enabled for operations when available.
|
183
|
+
# When set to `true`, endpoint discovery will be enabled for operations when available.
|
158
184
|
#
|
159
185
|
# @option options [Aws::Log::Formatter] :log_formatter (Aws::Log::Formatter.default)
|
160
186
|
# The log formatter.
|
@@ -166,15 +192,29 @@ module Aws::IoT1ClickProjects
|
|
166
192
|
# The Logger instance to send log messages to. If this option
|
167
193
|
# is not set, logging will be disabled.
|
168
194
|
#
|
195
|
+
# @option options [Integer] :max_attempts (3)
|
196
|
+
# An integer representing the maximum number attempts that will be made for
|
197
|
+
# a single request, including the initial attempt. For example,
|
198
|
+
# setting this value to 5 will result in a request being retried up to
|
199
|
+
# 4 times. Used in `standard` and `adaptive` retry modes.
|
200
|
+
#
|
169
201
|
# @option options [String] :profile ("default")
|
170
202
|
# Used when loading credentials from the shared credentials file
|
171
203
|
# at HOME/.aws/credentials. When not specified, 'default' is used.
|
172
204
|
#
|
205
|
+
# @option options [Proc] :retry_backoff
|
206
|
+
# A proc or lambda used for backoff. Defaults to 2**retries * retry_base_delay.
|
207
|
+
# This option is only used in the `legacy` retry mode.
|
208
|
+
#
|
173
209
|
# @option options [Float] :retry_base_delay (0.3)
|
174
|
-
# The base delay in seconds used by the default backoff function.
|
210
|
+
# The base delay in seconds used by the default backoff function. This option
|
211
|
+
# is only used in the `legacy` retry mode.
|
175
212
|
#
|
176
213
|
# @option options [Symbol] :retry_jitter (:none)
|
177
|
-
# A delay randomiser function used by the default backoff function.
|
214
|
+
# A delay randomiser function used by the default backoff function.
|
215
|
+
# Some predefined functions can be referenced by name - :none, :equal, :full,
|
216
|
+
# otherwise a Proc that takes and returns a number. This option is only used
|
217
|
+
# in the `legacy` retry mode.
|
178
218
|
#
|
179
219
|
# @see https://www.awsarchitectureblog.com/2015/03/backoff.html
|
180
220
|
#
|
@@ -182,11 +222,30 @@ module Aws::IoT1ClickProjects
|
|
182
222
|
# The maximum number of times to retry failed requests. Only
|
183
223
|
# ~ 500 level server errors and certain ~ 400 level client errors
|
184
224
|
# are retried. Generally, these are throttling errors, data
|
185
|
-
# checksum errors, networking errors, timeout errors
|
186
|
-
# errors from expired credentials.
|
225
|
+
# checksum errors, networking errors, timeout errors, auth errors,
|
226
|
+
# endpoint discovery, and errors from expired credentials.
|
227
|
+
# This option is only used in the `legacy` retry mode.
|
187
228
|
#
|
188
229
|
# @option options [Integer] :retry_max_delay (0)
|
189
|
-
# The maximum number of seconds to delay between retries (0 for no limit)
|
230
|
+
# The maximum number of seconds to delay between retries (0 for no limit)
|
231
|
+
# used by the default backoff function. This option is only used in the
|
232
|
+
# `legacy` retry mode.
|
233
|
+
#
|
234
|
+
# @option options [String] :retry_mode ("legacy")
|
235
|
+
# Specifies which retry algorithm to use. Values are:
|
236
|
+
#
|
237
|
+
# * `legacy` - The pre-existing retry behavior. This is default value if
|
238
|
+
# no retry mode is provided.
|
239
|
+
#
|
240
|
+
# * `standard` - A standardized set of retry rules across the AWS SDKs.
|
241
|
+
# This includes support for retry quotas, which limit the number of
|
242
|
+
# unsuccessful retries a client can make.
|
243
|
+
#
|
244
|
+
# * `adaptive` - An experimental retry mode that includes all the
|
245
|
+
# functionality of `standard` mode along with automatic client side
|
246
|
+
# throttling. This is a provisional mode that may change behavior
|
247
|
+
# in the future.
|
248
|
+
#
|
190
249
|
#
|
191
250
|
# @option options [String] :secret_access_key
|
192
251
|
#
|
@@ -209,16 +268,15 @@ module Aws::IoT1ClickProjects
|
|
209
268
|
# requests through. Formatted like 'http://proxy.com:123'.
|
210
269
|
#
|
211
270
|
# @option options [Float] :http_open_timeout (15) The number of
|
212
|
-
# seconds to wait when opening a HTTP session before
|
271
|
+
# seconds to wait when opening a HTTP session before raising a
|
213
272
|
# `Timeout::Error`.
|
214
273
|
#
|
215
274
|
# @option options [Integer] :http_read_timeout (60) The default
|
216
275
|
# number of seconds to wait for response data. This value can
|
217
|
-
# safely be set
|
218
|
-
# per-request on the session yeidled by {#session_for}.
|
276
|
+
# safely be set per-request on the session.
|
219
277
|
#
|
220
278
|
# @option options [Float] :http_idle_timeout (5) The number of
|
221
|
-
# seconds a connection is allowed to sit
|
279
|
+
# seconds a connection is allowed to sit idle before it is
|
222
280
|
# considered stale. Stale connections are closed and removed
|
223
281
|
# from the pool before making a request.
|
224
282
|
#
|
@@ -227,7 +285,7 @@ module Aws::IoT1ClickProjects
|
|
227
285
|
# request body. This option has no effect unless the request has
|
228
286
|
# "Expect" header set to "100-continue". Defaults to `nil` which
|
229
287
|
# disables this behaviour. This value can safely be set per
|
230
|
-
# request on the session
|
288
|
+
# request on the session.
|
231
289
|
#
|
232
290
|
# @option options [Boolean] :http_wire_trace (false) When `true`,
|
233
291
|
# HTTP debug output will be sent to the `:logger`.
|
@@ -582,6 +640,8 @@ module Aws::IoT1ClickProjects
|
|
582
640
|
# * {Types::ListPlacementsResponse#placements #placements} => Array<Types::PlacementSummary>
|
583
641
|
# * {Types::ListPlacementsResponse#next_token #next_token} => String
|
584
642
|
#
|
643
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
644
|
+
#
|
585
645
|
# @example Request syntax with placeholder values
|
586
646
|
#
|
587
647
|
# resp = client.list_placements({
|
@@ -621,6 +681,8 @@ module Aws::IoT1ClickProjects
|
|
621
681
|
# * {Types::ListProjectsResponse#projects #projects} => Array<Types::ProjectSummary>
|
622
682
|
# * {Types::ListProjectsResponse#next_token #next_token} => String
|
623
683
|
#
|
684
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
685
|
+
#
|
624
686
|
# @example Request syntax with placeholder values
|
625
687
|
#
|
626
688
|
# resp = client.list_projects({
|
@@ -828,7 +890,7 @@ module Aws::IoT1ClickProjects
|
|
828
890
|
params: params,
|
829
891
|
config: config)
|
830
892
|
context[:gem_name] = 'aws-sdk-iot1clickprojects'
|
831
|
-
context[:gem_version] = '1.
|
893
|
+
context[:gem_version] = '1.23.0'
|
832
894
|
Seahorse::Client::Request.new(handlers, context)
|
833
895
|
end
|
834
896
|
|
@@ -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,6 +8,33 @@
|
|
6
8
|
# WARNING ABOUT GENERATED CODE
|
7
9
|
|
8
10
|
module Aws::IoT1ClickProjects
|
11
|
+
|
12
|
+
# When IoT1ClickProjects returns an error response, the Ruby SDK constructs and raises an error.
|
13
|
+
# These errors all extend Aws::IoT1ClickProjects::Errors::ServiceError < {Aws::Errors::ServiceError}
|
14
|
+
#
|
15
|
+
# You can rescue all IoT1ClickProjects errors using ServiceError:
|
16
|
+
#
|
17
|
+
# begin
|
18
|
+
# # do stuff
|
19
|
+
# rescue Aws::IoT1ClickProjects::Errors::ServiceError
|
20
|
+
# # rescues all IoT1ClickProjects API errors
|
21
|
+
# end
|
22
|
+
#
|
23
|
+
#
|
24
|
+
# ## Request Context
|
25
|
+
# ServiceError objects have a {Aws::Errors::ServiceError#context #context} method that returns
|
26
|
+
# information about the request that generated the error.
|
27
|
+
# See {Seahorse::Client::RequestContext} for more information.
|
28
|
+
#
|
29
|
+
# ## Error Classes
|
30
|
+
# * {InternalFailureException}
|
31
|
+
# * {InvalidRequestException}
|
32
|
+
# * {ResourceConflictException}
|
33
|
+
# * {ResourceNotFoundException}
|
34
|
+
# * {TooManyRequestsException}
|
35
|
+
#
|
36
|
+
# Additionally, error classes are dynamically generated for service errors based on the error code
|
37
|
+
# if they are not defined above.
|
9
38
|
module Errors
|
10
39
|
|
11
40
|
extend Aws::Errors::DynamicErrors
|
@@ -28,7 +57,6 @@ module Aws::IoT1ClickProjects
|
|
28
57
|
def message
|
29
58
|
@message || @data[:message]
|
30
59
|
end
|
31
|
-
|
32
60
|
end
|
33
61
|
|
34
62
|
class InvalidRequestException < ServiceError
|
@@ -49,7 +77,6 @@ module Aws::IoT1ClickProjects
|
|
49
77
|
def message
|
50
78
|
@message || @data[:message]
|
51
79
|
end
|
52
|
-
|
53
80
|
end
|
54
81
|
|
55
82
|
class ResourceConflictException < ServiceError
|
@@ -70,7 +97,6 @@ module Aws::IoT1ClickProjects
|
|
70
97
|
def message
|
71
98
|
@message || @data[:message]
|
72
99
|
end
|
73
|
-
|
74
100
|
end
|
75
101
|
|
76
102
|
class ResourceNotFoundException < ServiceError
|
@@ -91,7 +117,6 @@ module Aws::IoT1ClickProjects
|
|
91
117
|
def message
|
92
118
|
@message || @data[:message]
|
93
119
|
end
|
94
|
-
|
95
120
|
end
|
96
121
|
|
97
122
|
class TooManyRequestsException < ServiceError
|
@@ -112,7 +137,6 @@ module Aws::IoT1ClickProjects
|
|
112
137
|
def message
|
113
138
|
@message || @data[:message]
|
114
139
|
end
|
115
|
-
|
116
140
|
end
|
117
141
|
|
118
142
|
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:
|
@@ -6,6 +8,7 @@
|
|
6
8
|
# WARNING ABOUT GENERATED CODE
|
7
9
|
|
8
10
|
module Aws::IoT1ClickProjects
|
11
|
+
|
9
12
|
class Resource
|
10
13
|
|
11
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.23.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: 2020-06-23 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
|