aws-sdk-iotthingsgraph 1.4.0 → 1.9.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-iotthingsgraph.rb +9 -4
- data/lib/aws-sdk-iotthingsgraph/client.rb +92 -14
- data/lib/aws-sdk-iotthingsgraph/client_api.rb +2 -0
- data/lib/aws-sdk-iotthingsgraph/errors.rb +31 -7
- data/lib/aws-sdk-iotthingsgraph/resource.rb +3 -0
- data/lib/aws-sdk-iotthingsgraph/types.rb +86 -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: e40d6af0b71c80eb46c86246f57dc55699f7ab4fe204328d59d7fcc2e1d9c6f0
|
4
|
+
data.tar.gz: 64dc9e5ce6adee489649e355e6a57f7e6ce9956092a1a39816d159f2b97ec401
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3f04f8987528c3df3548aebc12b8b39a546301a81e30baa7054fa4e374fd87608571d60f3fae9890968b93401b7aa87aeabffd7c996aae4f8f17926d7c8019c4
|
7
|
+
data.tar.gz: 293bb189523d4a278c7427d347c2d57c25fe5c43a87bff15dbdb40106cbe04ccfeb322e9fb9240687a8481469c3c23b531e43b0f85a5c27e6b3505836bb064bd
|
@@ -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-iotthingsgraph/customizations'
|
|
24
26
|
# methods each accept a hash of request parameters and return a response
|
25
27
|
# structure.
|
26
28
|
#
|
29
|
+
# io_t_things_graph = Aws::IoTThingsGraph::Client.new
|
30
|
+
# resp = io_t_things_graph.associate_entity_to_thing(params)
|
31
|
+
#
|
27
32
|
# See {Client} for more information.
|
28
33
|
#
|
29
34
|
# # Errors
|
30
35
|
#
|
31
|
-
# Errors returned from AWS IoT Things Graph
|
32
|
-
# extend {Errors::ServiceError}.
|
36
|
+
# Errors returned from AWS IoT Things Graph 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::IoTThingsGraph::Errors::ServiceError
|
37
|
-
# # rescues all
|
42
|
+
# # rescues all AWS IoT Things Graph API errors
|
38
43
|
# end
|
39
44
|
#
|
40
45
|
# See {Errors} for more information.
|
@@ -42,6 +47,6 @@ require_relative 'aws-sdk-iotthingsgraph/customizations'
|
|
42
47
|
# @service
|
43
48
|
module Aws::IoTThingsGraph
|
44
49
|
|
45
|
-
GEM_VERSION = '1.
|
50
|
+
GEM_VERSION = '1.9.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/json_rpc.rb'
|
29
32
|
|
30
33
|
Aws::Plugins::GlobalConfiguration.add_identifier(:iotthingsgraph)
|
31
34
|
|
32
35
|
module Aws::IoTThingsGraph
|
36
|
+
# An API client for IoTThingsGraph. To construct a client, you need to configure a `:region` and `:credentials`.
|
37
|
+
#
|
38
|
+
# client = Aws::IoTThingsGraph::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::IoTThingsGraph
|
|
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::JsonRpc)
|
62
78
|
|
@@ -93,7 +109,7 @@ module Aws::IoTThingsGraph
|
|
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::IoTThingsGraph
|
|
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::IoTThingsGraph
|
|
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::IoTThingsGraph
|
|
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::IoTThingsGraph
|
|
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::IoTThingsGraph
|
|
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::IoTThingsGraph
|
|
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
|
#
|
@@ -219,16 +278,15 @@ module Aws::IoTThingsGraph
|
|
219
278
|
# requests through. Formatted like 'http://proxy.com:123'.
|
220
279
|
#
|
221
280
|
# @option options [Float] :http_open_timeout (15) The number of
|
222
|
-
# seconds to wait when opening a HTTP session before
|
281
|
+
# seconds to wait when opening a HTTP session before raising a
|
223
282
|
# `Timeout::Error`.
|
224
283
|
#
|
225
284
|
# @option options [Integer] :http_read_timeout (60) The default
|
226
285
|
# number of seconds to wait for response data. This value can
|
227
|
-
# safely be set
|
228
|
-
# per-request on the session yeidled by {#session_for}.
|
286
|
+
# safely be set per-request on the session.
|
229
287
|
#
|
230
288
|
# @option options [Float] :http_idle_timeout (5) The number of
|
231
|
-
# seconds a connection is allowed to sit
|
289
|
+
# seconds a connection is allowed to sit idle before it is
|
232
290
|
# considered stale. Stale connections are closed and removed
|
233
291
|
# from the pool before making a request.
|
234
292
|
#
|
@@ -237,7 +295,7 @@ module Aws::IoTThingsGraph
|
|
237
295
|
# request body. This option has no effect unless the request has
|
238
296
|
# "Expect" header set to "100-continue". Defaults to `nil` which
|
239
297
|
# disables this behaviour. This value can safely be set per
|
240
|
-
# request on the session
|
298
|
+
# request on the session.
|
241
299
|
#
|
242
300
|
# @option options [Boolean] :http_wire_trace (false) When `true`,
|
243
301
|
# HTTP debug output will be sent to the `:logger`.
|
@@ -889,6 +947,8 @@ module Aws::IoTThingsGraph
|
|
889
947
|
# * {Types::GetFlowTemplateRevisionsResponse#summaries #summaries} => Array<Types::FlowTemplateSummary>
|
890
948
|
# * {Types::GetFlowTemplateRevisionsResponse#next_token #next_token} => String
|
891
949
|
#
|
950
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
951
|
+
#
|
892
952
|
# @example Request syntax with placeholder values
|
893
953
|
#
|
894
954
|
# resp = client.get_flow_template_revisions({
|
@@ -1052,6 +1112,8 @@ module Aws::IoTThingsGraph
|
|
1052
1112
|
# * {Types::GetSystemTemplateRevisionsResponse#summaries #summaries} => Array<Types::SystemTemplateSummary>
|
1053
1113
|
# * {Types::GetSystemTemplateRevisionsResponse#next_token #next_token} => String
|
1054
1114
|
#
|
1115
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
1116
|
+
#
|
1055
1117
|
# @example Request syntax with placeholder values
|
1056
1118
|
#
|
1057
1119
|
# resp = client.get_system_template_revisions({
|
@@ -1134,6 +1196,8 @@ module Aws::IoTThingsGraph
|
|
1134
1196
|
# * {Types::ListFlowExecutionMessagesResponse#messages #messages} => Array<Types::FlowExecutionMessage>
|
1135
1197
|
# * {Types::ListFlowExecutionMessagesResponse#next_token #next_token} => String
|
1136
1198
|
#
|
1199
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
1200
|
+
#
|
1137
1201
|
# @example Request syntax with placeholder values
|
1138
1202
|
#
|
1139
1203
|
# resp = client.list_flow_execution_messages({
|
@@ -1175,6 +1239,8 @@ module Aws::IoTThingsGraph
|
|
1175
1239
|
# * {Types::ListTagsForResourceResponse#tags #tags} => Array<Types::Tag>
|
1176
1240
|
# * {Types::ListTagsForResourceResponse#next_token #next_token} => String
|
1177
1241
|
#
|
1242
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
1243
|
+
#
|
1178
1244
|
# @example Request syntax with placeholder values
|
1179
1245
|
#
|
1180
1246
|
# resp = client.list_tags_for_resource({
|
@@ -1230,6 +1296,8 @@ module Aws::IoTThingsGraph
|
|
1230
1296
|
# * {Types::SearchEntitiesResponse#descriptions #descriptions} => Array<Types::EntityDescription>
|
1231
1297
|
# * {Types::SearchEntitiesResponse#next_token #next_token} => String
|
1232
1298
|
#
|
1299
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
1300
|
+
#
|
1233
1301
|
# @example Request syntax with placeholder values
|
1234
1302
|
#
|
1235
1303
|
# resp = client.search_entities({
|
@@ -1289,6 +1357,8 @@ module Aws::IoTThingsGraph
|
|
1289
1357
|
# * {Types::SearchFlowExecutionsResponse#summaries #summaries} => Array<Types::FlowExecutionSummary>
|
1290
1358
|
# * {Types::SearchFlowExecutionsResponse#next_token #next_token} => String
|
1291
1359
|
#
|
1360
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
1361
|
+
#
|
1292
1362
|
# @example Request syntax with placeholder values
|
1293
1363
|
#
|
1294
1364
|
# resp = client.search_flow_executions({
|
@@ -1336,6 +1406,8 @@ module Aws::IoTThingsGraph
|
|
1336
1406
|
# * {Types::SearchFlowTemplatesResponse#summaries #summaries} => Array<Types::FlowTemplateSummary>
|
1337
1407
|
# * {Types::SearchFlowTemplatesResponse#next_token #next_token} => String
|
1338
1408
|
#
|
1409
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
1410
|
+
#
|
1339
1411
|
# @example Request syntax with placeholder values
|
1340
1412
|
#
|
1341
1413
|
# resp = client.search_flow_templates({
|
@@ -1386,6 +1458,8 @@ module Aws::IoTThingsGraph
|
|
1386
1458
|
# * {Types::SearchSystemInstancesResponse#summaries #summaries} => Array<Types::SystemInstanceSummary>
|
1387
1459
|
# * {Types::SearchSystemInstancesResponse#next_token #next_token} => String
|
1388
1460
|
#
|
1461
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
1462
|
+
#
|
1389
1463
|
# @example Request syntax with placeholder values
|
1390
1464
|
#
|
1391
1465
|
# resp = client.search_system_instances({
|
@@ -1440,6 +1514,8 @@ module Aws::IoTThingsGraph
|
|
1440
1514
|
# * {Types::SearchSystemTemplatesResponse#summaries #summaries} => Array<Types::SystemTemplateSummary>
|
1441
1515
|
# * {Types::SearchSystemTemplatesResponse#next_token #next_token} => String
|
1442
1516
|
#
|
1517
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
1518
|
+
#
|
1443
1519
|
# @example Request syntax with placeholder values
|
1444
1520
|
#
|
1445
1521
|
# resp = client.search_system_templates({
|
@@ -1503,6 +1579,8 @@ module Aws::IoTThingsGraph
|
|
1503
1579
|
# * {Types::SearchThingsResponse#things #things} => Array<Types::Thing>
|
1504
1580
|
# * {Types::SearchThingsResponse#next_token #next_token} => String
|
1505
1581
|
#
|
1582
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
1583
|
+
#
|
1506
1584
|
# @example Request syntax with placeholder values
|
1507
1585
|
#
|
1508
1586
|
# resp = client.search_things({
|
@@ -1804,7 +1882,7 @@ module Aws::IoTThingsGraph
|
|
1804
1882
|
params: params,
|
1805
1883
|
config: config)
|
1806
1884
|
context[:gem_name] = 'aws-sdk-iotthingsgraph'
|
1807
|
-
context[:gem_version] = '1.
|
1885
|
+
context[:gem_version] = '1.9.0'
|
1808
1886
|
Seahorse::Client::Request.new(handlers, context)
|
1809
1887
|
end
|
1810
1888
|
|
@@ -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,35 @@
|
|
6
8
|
# WARNING ABOUT GENERATED CODE
|
7
9
|
|
8
10
|
module Aws::IoTThingsGraph
|
11
|
+
|
12
|
+
# When IoTThingsGraph returns an error response, the Ruby SDK constructs and raises an error.
|
13
|
+
# These errors all extend Aws::IoTThingsGraph::Errors::ServiceError < {Aws::Errors::ServiceError}
|
14
|
+
#
|
15
|
+
# You can rescue all IoTThingsGraph errors using ServiceError:
|
16
|
+
#
|
17
|
+
# begin
|
18
|
+
# # do stuff
|
19
|
+
# rescue Aws::IoTThingsGraph::Errors::ServiceError
|
20
|
+
# # rescues all IoTThingsGraph 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
|
+
# * {LimitExceededException}
|
33
|
+
# * {ResourceAlreadyExistsException}
|
34
|
+
# * {ResourceInUseException}
|
35
|
+
# * {ResourceNotFoundException}
|
36
|
+
# * {ThrottlingException}
|
37
|
+
#
|
38
|
+
# Additionally, error classes are dynamically generated for service errors based on the error code
|
39
|
+
# if they are not defined above.
|
9
40
|
module Errors
|
10
41
|
|
11
42
|
extend Aws::Errors::DynamicErrors
|
@@ -23,7 +54,6 @@ module Aws::IoTThingsGraph
|
|
23
54
|
def message
|
24
55
|
@message || @data[:message]
|
25
56
|
end
|
26
|
-
|
27
57
|
end
|
28
58
|
|
29
59
|
class InvalidRequestException < ServiceError
|
@@ -39,7 +69,6 @@ module Aws::IoTThingsGraph
|
|
39
69
|
def message
|
40
70
|
@message || @data[:message]
|
41
71
|
end
|
42
|
-
|
43
72
|
end
|
44
73
|
|
45
74
|
class LimitExceededException < ServiceError
|
@@ -55,7 +84,6 @@ module Aws::IoTThingsGraph
|
|
55
84
|
def message
|
56
85
|
@message || @data[:message]
|
57
86
|
end
|
58
|
-
|
59
87
|
end
|
60
88
|
|
61
89
|
class ResourceAlreadyExistsException < ServiceError
|
@@ -71,7 +99,6 @@ module Aws::IoTThingsGraph
|
|
71
99
|
def message
|
72
100
|
@message || @data[:message]
|
73
101
|
end
|
74
|
-
|
75
102
|
end
|
76
103
|
|
77
104
|
class ResourceInUseException < ServiceError
|
@@ -87,7 +114,6 @@ module Aws::IoTThingsGraph
|
|
87
114
|
def message
|
88
115
|
@message || @data[:message]
|
89
116
|
end
|
90
|
-
|
91
117
|
end
|
92
118
|
|
93
119
|
class ResourceNotFoundException < ServiceError
|
@@ -103,7 +129,6 @@ module Aws::IoTThingsGraph
|
|
103
129
|
def message
|
104
130
|
@message || @data[:message]
|
105
131
|
end
|
106
|
-
|
107
132
|
end
|
108
133
|
|
109
134
|
class ThrottlingException < ServiceError
|
@@ -119,7 +144,6 @@ module Aws::IoTThingsGraph
|
|
119
144
|
def message
|
120
145
|
@message || @data[:message]
|
121
146
|
end
|
122
|
-
|
123
147
|
end
|
124
148
|
|
125
149
|
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::IoTThingsGraph
|
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:
|
@@ -38,6 +40,7 @@ module Aws::IoTThingsGraph
|
|
38
40
|
:thing_name,
|
39
41
|
:entity_id,
|
40
42
|
:namespace_version)
|
43
|
+
SENSITIVE = []
|
41
44
|
include Aws::Structure
|
42
45
|
end
|
43
46
|
|
@@ -67,6 +70,7 @@ module Aws::IoTThingsGraph
|
|
67
70
|
class CreateFlowTemplateRequest < Struct.new(
|
68
71
|
:definition,
|
69
72
|
:compatible_namespace_version)
|
73
|
+
SENSITIVE = []
|
70
74
|
include Aws::Structure
|
71
75
|
end
|
72
76
|
|
@@ -76,6 +80,7 @@ module Aws::IoTThingsGraph
|
|
76
80
|
#
|
77
81
|
class CreateFlowTemplateResponse < Struct.new(
|
78
82
|
:summary)
|
83
|
+
SENSITIVE = []
|
79
84
|
include Aws::Structure
|
80
85
|
end
|
81
86
|
|
@@ -151,6 +156,7 @@ module Aws::IoTThingsGraph
|
|
151
156
|
:s3_bucket_name,
|
152
157
|
:metrics_configuration,
|
153
158
|
:flow_actions_role_arn)
|
159
|
+
SENSITIVE = []
|
154
160
|
include Aws::Structure
|
155
161
|
end
|
156
162
|
|
@@ -160,6 +166,7 @@ module Aws::IoTThingsGraph
|
|
160
166
|
#
|
161
167
|
class CreateSystemInstanceResponse < Struct.new(
|
162
168
|
:summary)
|
169
|
+
SENSITIVE = []
|
163
170
|
include Aws::Structure
|
164
171
|
end
|
165
172
|
|
@@ -187,6 +194,7 @@ module Aws::IoTThingsGraph
|
|
187
194
|
class CreateSystemTemplateRequest < Struct.new(
|
188
195
|
:definition,
|
189
196
|
:compatible_namespace_version)
|
197
|
+
SENSITIVE = []
|
190
198
|
include Aws::Structure
|
191
199
|
end
|
192
200
|
|
@@ -196,6 +204,7 @@ module Aws::IoTThingsGraph
|
|
196
204
|
#
|
197
205
|
class CreateSystemTemplateResponse < Struct.new(
|
198
206
|
:summary)
|
207
|
+
SENSITIVE = []
|
199
208
|
include Aws::Structure
|
200
209
|
end
|
201
210
|
|
@@ -221,6 +230,7 @@ module Aws::IoTThingsGraph
|
|
221
230
|
class DefinitionDocument < Struct.new(
|
222
231
|
:language,
|
223
232
|
:text)
|
233
|
+
SENSITIVE = []
|
224
234
|
include Aws::Structure
|
225
235
|
end
|
226
236
|
|
@@ -241,6 +251,7 @@ module Aws::IoTThingsGraph
|
|
241
251
|
#
|
242
252
|
class DeleteFlowTemplateRequest < Struct.new(
|
243
253
|
:id)
|
254
|
+
SENSITIVE = []
|
244
255
|
include Aws::Structure
|
245
256
|
end
|
246
257
|
|
@@ -261,6 +272,7 @@ module Aws::IoTThingsGraph
|
|
261
272
|
class DeleteNamespaceResponse < Struct.new(
|
262
273
|
:namespace_arn,
|
263
274
|
:namespace_name)
|
275
|
+
SENSITIVE = []
|
264
276
|
include Aws::Structure
|
265
277
|
end
|
266
278
|
|
@@ -277,6 +289,7 @@ module Aws::IoTThingsGraph
|
|
277
289
|
#
|
278
290
|
class DeleteSystemInstanceRequest < Struct.new(
|
279
291
|
:id)
|
292
|
+
SENSITIVE = []
|
280
293
|
include Aws::Structure
|
281
294
|
end
|
282
295
|
|
@@ -299,6 +312,7 @@ module Aws::IoTThingsGraph
|
|
299
312
|
#
|
300
313
|
class DeleteSystemTemplateRequest < Struct.new(
|
301
314
|
:id)
|
315
|
+
SENSITIVE = []
|
302
316
|
include Aws::Structure
|
303
317
|
end
|
304
318
|
|
@@ -318,6 +332,7 @@ module Aws::IoTThingsGraph
|
|
318
332
|
class DependencyRevision < Struct.new(
|
319
333
|
:id,
|
320
334
|
:revision_number)
|
335
|
+
SENSITIVE = []
|
321
336
|
include Aws::Structure
|
322
337
|
end
|
323
338
|
|
@@ -339,6 +354,7 @@ module Aws::IoTThingsGraph
|
|
339
354
|
#
|
340
355
|
class DeploySystemInstanceRequest < Struct.new(
|
341
356
|
:id)
|
357
|
+
SENSITIVE = []
|
342
358
|
include Aws::Structure
|
343
359
|
end
|
344
360
|
|
@@ -355,6 +371,7 @@ module Aws::IoTThingsGraph
|
|
355
371
|
class DeploySystemInstanceResponse < Struct.new(
|
356
372
|
:summary,
|
357
373
|
:greengrass_deployment_id)
|
374
|
+
SENSITIVE = []
|
358
375
|
include Aws::Structure
|
359
376
|
end
|
360
377
|
|
@@ -375,6 +392,7 @@ module Aws::IoTThingsGraph
|
|
375
392
|
#
|
376
393
|
class DeprecateFlowTemplateRequest < Struct.new(
|
377
394
|
:id)
|
395
|
+
SENSITIVE = []
|
378
396
|
include Aws::Structure
|
379
397
|
end
|
380
398
|
|
@@ -397,6 +415,7 @@ module Aws::IoTThingsGraph
|
|
397
415
|
#
|
398
416
|
class DeprecateSystemTemplateRequest < Struct.new(
|
399
417
|
:id)
|
418
|
+
SENSITIVE = []
|
400
419
|
include Aws::Structure
|
401
420
|
end
|
402
421
|
|
@@ -416,6 +435,7 @@ module Aws::IoTThingsGraph
|
|
416
435
|
#
|
417
436
|
class DescribeNamespaceRequest < Struct.new(
|
418
437
|
:namespace_name)
|
438
|
+
SENSITIVE = []
|
419
439
|
include Aws::Structure
|
420
440
|
end
|
421
441
|
|
@@ -447,6 +467,7 @@ module Aws::IoTThingsGraph
|
|
447
467
|
:tracking_namespace_name,
|
448
468
|
:tracking_namespace_version,
|
449
469
|
:namespace_version)
|
470
|
+
SENSITIVE = []
|
450
471
|
include Aws::Structure
|
451
472
|
end
|
452
473
|
|
@@ -469,6 +490,7 @@ module Aws::IoTThingsGraph
|
|
469
490
|
class DissociateEntityFromThingRequest < Struct.new(
|
470
491
|
:thing_name,
|
471
492
|
:entity_type)
|
493
|
+
SENSITIVE = []
|
472
494
|
include Aws::Structure
|
473
495
|
end
|
474
496
|
|
@@ -502,6 +524,7 @@ module Aws::IoTThingsGraph
|
|
502
524
|
:type,
|
503
525
|
:created_at,
|
504
526
|
:definition)
|
527
|
+
SENSITIVE = []
|
505
528
|
include Aws::Structure
|
506
529
|
end
|
507
530
|
|
@@ -534,6 +557,7 @@ module Aws::IoTThingsGraph
|
|
534
557
|
class EntityFilter < Struct.new(
|
535
558
|
:name,
|
536
559
|
:value)
|
560
|
+
SENSITIVE = []
|
537
561
|
include Aws::Structure
|
538
562
|
end
|
539
563
|
|
@@ -560,6 +584,7 @@ module Aws::IoTThingsGraph
|
|
560
584
|
:event_type,
|
561
585
|
:timestamp,
|
562
586
|
:payload)
|
587
|
+
SENSITIVE = []
|
563
588
|
include Aws::Structure
|
564
589
|
end
|
565
590
|
|
@@ -596,6 +621,7 @@ module Aws::IoTThingsGraph
|
|
596
621
|
:flow_template_id,
|
597
622
|
:created_at,
|
598
623
|
:updated_at)
|
624
|
+
SENSITIVE = []
|
599
625
|
include Aws::Structure
|
600
626
|
end
|
601
627
|
|
@@ -619,6 +645,7 @@ module Aws::IoTThingsGraph
|
|
619
645
|
:summary,
|
620
646
|
:definition,
|
621
647
|
:validated_namespace_version)
|
648
|
+
SENSITIVE = []
|
622
649
|
include Aws::Structure
|
623
650
|
end
|
624
651
|
|
@@ -644,6 +671,7 @@ module Aws::IoTThingsGraph
|
|
644
671
|
class FlowTemplateFilter < Struct.new(
|
645
672
|
:name,
|
646
673
|
:value)
|
674
|
+
SENSITIVE = []
|
647
675
|
include Aws::Structure
|
648
676
|
end
|
649
677
|
|
@@ -670,6 +698,7 @@ module Aws::IoTThingsGraph
|
|
670
698
|
:arn,
|
671
699
|
:revision_number,
|
672
700
|
:created_at)
|
701
|
+
SENSITIVE = []
|
673
702
|
include Aws::Structure
|
674
703
|
end
|
675
704
|
|
@@ -697,6 +726,7 @@ module Aws::IoTThingsGraph
|
|
697
726
|
class GetEntitiesRequest < Struct.new(
|
698
727
|
:ids,
|
699
728
|
:namespace_version)
|
729
|
+
SENSITIVE = []
|
700
730
|
include Aws::Structure
|
701
731
|
end
|
702
732
|
|
@@ -706,6 +736,7 @@ module Aws::IoTThingsGraph
|
|
706
736
|
#
|
707
737
|
class GetEntitiesResponse < Struct.new(
|
708
738
|
:descriptions)
|
739
|
+
SENSITIVE = []
|
709
740
|
include Aws::Structure
|
710
741
|
end
|
711
742
|
|
@@ -732,6 +763,7 @@ module Aws::IoTThingsGraph
|
|
732
763
|
class GetFlowTemplateRequest < Struct.new(
|
733
764
|
:id,
|
734
765
|
:revision_number)
|
766
|
+
SENSITIVE = []
|
735
767
|
include Aws::Structure
|
736
768
|
end
|
737
769
|
|
@@ -741,6 +773,7 @@ module Aws::IoTThingsGraph
|
|
741
773
|
#
|
742
774
|
class GetFlowTemplateResponse < Struct.new(
|
743
775
|
:description)
|
776
|
+
SENSITIVE = []
|
744
777
|
include Aws::Structure
|
745
778
|
end
|
746
779
|
|
@@ -774,6 +807,7 @@ module Aws::IoTThingsGraph
|
|
774
807
|
:id,
|
775
808
|
:next_token,
|
776
809
|
:max_results)
|
810
|
+
SENSITIVE = []
|
777
811
|
include Aws::Structure
|
778
812
|
end
|
779
813
|
|
@@ -789,6 +823,7 @@ module Aws::IoTThingsGraph
|
|
789
823
|
class GetFlowTemplateRevisionsResponse < Struct.new(
|
790
824
|
:summaries,
|
791
825
|
:next_token)
|
826
|
+
SENSITIVE = []
|
792
827
|
include Aws::Structure
|
793
828
|
end
|
794
829
|
|
@@ -822,6 +857,7 @@ module Aws::IoTThingsGraph
|
|
822
857
|
:status,
|
823
858
|
:error_code,
|
824
859
|
:error_message)
|
860
|
+
SENSITIVE = []
|
825
861
|
include Aws::Structure
|
826
862
|
end
|
827
863
|
|
@@ -843,6 +879,7 @@ module Aws::IoTThingsGraph
|
|
843
879
|
#
|
844
880
|
class GetSystemInstanceRequest < Struct.new(
|
845
881
|
:id)
|
882
|
+
SENSITIVE = []
|
846
883
|
include Aws::Structure
|
847
884
|
end
|
848
885
|
|
@@ -852,6 +889,7 @@ module Aws::IoTThingsGraph
|
|
852
889
|
#
|
853
890
|
class GetSystemInstanceResponse < Struct.new(
|
854
891
|
:description)
|
892
|
+
SENSITIVE = []
|
855
893
|
include Aws::Structure
|
856
894
|
end
|
857
895
|
|
@@ -879,6 +917,7 @@ module Aws::IoTThingsGraph
|
|
879
917
|
class GetSystemTemplateRequest < Struct.new(
|
880
918
|
:id,
|
881
919
|
:revision_number)
|
920
|
+
SENSITIVE = []
|
882
921
|
include Aws::Structure
|
883
922
|
end
|
884
923
|
|
@@ -888,6 +927,7 @@ module Aws::IoTThingsGraph
|
|
888
927
|
#
|
889
928
|
class GetSystemTemplateResponse < Struct.new(
|
890
929
|
:description)
|
930
|
+
SENSITIVE = []
|
891
931
|
include Aws::Structure
|
892
932
|
end
|
893
933
|
|
@@ -921,6 +961,7 @@ module Aws::IoTThingsGraph
|
|
921
961
|
:id,
|
922
962
|
:next_token,
|
923
963
|
:max_results)
|
964
|
+
SENSITIVE = []
|
924
965
|
include Aws::Structure
|
925
966
|
end
|
926
967
|
|
@@ -937,6 +978,7 @@ module Aws::IoTThingsGraph
|
|
937
978
|
class GetSystemTemplateRevisionsResponse < Struct.new(
|
938
979
|
:summaries,
|
939
980
|
:next_token)
|
981
|
+
SENSITIVE = []
|
940
982
|
include Aws::Structure
|
941
983
|
end
|
942
984
|
|
@@ -954,6 +996,7 @@ module Aws::IoTThingsGraph
|
|
954
996
|
#
|
955
997
|
class GetUploadStatusRequest < Struct.new(
|
956
998
|
:upload_id)
|
999
|
+
SENSITIVE = []
|
957
1000
|
include Aws::Structure
|
958
1001
|
end
|
959
1002
|
|
@@ -995,6 +1038,7 @@ module Aws::IoTThingsGraph
|
|
995
1038
|
:namespace_version,
|
996
1039
|
:failure_reason,
|
997
1040
|
:created_date)
|
1041
|
+
SENSITIVE = []
|
998
1042
|
include Aws::Structure
|
999
1043
|
end
|
1000
1044
|
|
@@ -1003,6 +1047,7 @@ module Aws::IoTThingsGraph
|
|
1003
1047
|
#
|
1004
1048
|
class InternalFailureException < Struct.new(
|
1005
1049
|
:message)
|
1050
|
+
SENSITIVE = []
|
1006
1051
|
include Aws::Structure
|
1007
1052
|
end
|
1008
1053
|
|
@@ -1011,6 +1056,7 @@ module Aws::IoTThingsGraph
|
|
1011
1056
|
#
|
1012
1057
|
class InvalidRequestException < Struct.new(
|
1013
1058
|
:message)
|
1059
|
+
SENSITIVE = []
|
1014
1060
|
include Aws::Structure
|
1015
1061
|
end
|
1016
1062
|
|
@@ -1019,6 +1065,7 @@ module Aws::IoTThingsGraph
|
|
1019
1065
|
#
|
1020
1066
|
class LimitExceededException < Struct.new(
|
1021
1067
|
:message)
|
1068
|
+
SENSITIVE = []
|
1022
1069
|
include Aws::Structure
|
1023
1070
|
end
|
1024
1071
|
|
@@ -1048,6 +1095,7 @@ module Aws::IoTThingsGraph
|
|
1048
1095
|
:flow_execution_id,
|
1049
1096
|
:next_token,
|
1050
1097
|
:max_results)
|
1098
|
+
SENSITIVE = []
|
1051
1099
|
include Aws::Structure
|
1052
1100
|
end
|
1053
1101
|
|
@@ -1064,6 +1112,7 @@ module Aws::IoTThingsGraph
|
|
1064
1112
|
class ListFlowExecutionMessagesResponse < Struct.new(
|
1065
1113
|
:messages,
|
1066
1114
|
:next_token)
|
1115
|
+
SENSITIVE = []
|
1067
1116
|
include Aws::Structure
|
1068
1117
|
end
|
1069
1118
|
|
@@ -1093,6 +1142,7 @@ module Aws::IoTThingsGraph
|
|
1093
1142
|
:max_results,
|
1094
1143
|
:resource_arn,
|
1095
1144
|
:next_token)
|
1145
|
+
SENSITIVE = []
|
1096
1146
|
include Aws::Structure
|
1097
1147
|
end
|
1098
1148
|
|
@@ -1107,6 +1157,7 @@ module Aws::IoTThingsGraph
|
|
1107
1157
|
class ListTagsForResourceResponse < Struct.new(
|
1108
1158
|
:tags,
|
1109
1159
|
:next_token)
|
1160
|
+
SENSITIVE = []
|
1110
1161
|
include Aws::Structure
|
1111
1162
|
end
|
1112
1163
|
|
@@ -1132,6 +1183,7 @@ module Aws::IoTThingsGraph
|
|
1132
1183
|
class MetricsConfiguration < Struct.new(
|
1133
1184
|
:cloud_metric_enabled,
|
1134
1185
|
:metric_rule_role_arn)
|
1186
|
+
SENSITIVE = []
|
1135
1187
|
include Aws::Structure
|
1136
1188
|
end
|
1137
1189
|
|
@@ -1140,6 +1192,7 @@ module Aws::IoTThingsGraph
|
|
1140
1192
|
#
|
1141
1193
|
class ResourceAlreadyExistsException < Struct.new(
|
1142
1194
|
:message)
|
1195
|
+
SENSITIVE = []
|
1143
1196
|
include Aws::Structure
|
1144
1197
|
end
|
1145
1198
|
|
@@ -1148,6 +1201,7 @@ module Aws::IoTThingsGraph
|
|
1148
1201
|
#
|
1149
1202
|
class ResourceInUseException < Struct.new(
|
1150
1203
|
:message)
|
1204
|
+
SENSITIVE = []
|
1151
1205
|
include Aws::Structure
|
1152
1206
|
end
|
1153
1207
|
|
@@ -1156,6 +1210,7 @@ module Aws::IoTThingsGraph
|
|
1156
1210
|
#
|
1157
1211
|
class ResourceNotFoundException < Struct.new(
|
1158
1212
|
:message)
|
1213
|
+
SENSITIVE = []
|
1159
1214
|
include Aws::Structure
|
1160
1215
|
end
|
1161
1216
|
|
@@ -1210,6 +1265,7 @@ module Aws::IoTThingsGraph
|
|
1210
1265
|
:next_token,
|
1211
1266
|
:max_results,
|
1212
1267
|
:namespace_version)
|
1268
|
+
SENSITIVE = []
|
1213
1269
|
include Aws::Structure
|
1214
1270
|
end
|
1215
1271
|
|
@@ -1226,6 +1282,7 @@ module Aws::IoTThingsGraph
|
|
1226
1282
|
class SearchEntitiesResponse < Struct.new(
|
1227
1283
|
:descriptions,
|
1228
1284
|
:next_token)
|
1285
|
+
SENSITIVE = []
|
1229
1286
|
include Aws::Structure
|
1230
1287
|
end
|
1231
1288
|
|
@@ -1273,6 +1330,7 @@ module Aws::IoTThingsGraph
|
|
1273
1330
|
:end_time,
|
1274
1331
|
:next_token,
|
1275
1332
|
:max_results)
|
1333
|
+
SENSITIVE = []
|
1276
1334
|
include Aws::Structure
|
1277
1335
|
end
|
1278
1336
|
|
@@ -1289,6 +1347,7 @@ module Aws::IoTThingsGraph
|
|
1289
1347
|
class SearchFlowExecutionsResponse < Struct.new(
|
1290
1348
|
:summaries,
|
1291
1349
|
:next_token)
|
1350
|
+
SENSITIVE = []
|
1292
1351
|
include Aws::Structure
|
1293
1352
|
end
|
1294
1353
|
|
@@ -1324,6 +1383,7 @@ module Aws::IoTThingsGraph
|
|
1324
1383
|
:filters,
|
1325
1384
|
:next_token,
|
1326
1385
|
:max_results)
|
1386
|
+
SENSITIVE = []
|
1327
1387
|
include Aws::Structure
|
1328
1388
|
end
|
1329
1389
|
|
@@ -1340,6 +1400,7 @@ module Aws::IoTThingsGraph
|
|
1340
1400
|
class SearchFlowTemplatesResponse < Struct.new(
|
1341
1401
|
:summaries,
|
1342
1402
|
:next_token)
|
1403
|
+
SENSITIVE = []
|
1343
1404
|
include Aws::Structure
|
1344
1405
|
end
|
1345
1406
|
|
@@ -1378,6 +1439,7 @@ module Aws::IoTThingsGraph
|
|
1378
1439
|
:filters,
|
1379
1440
|
:next_token,
|
1380
1441
|
:max_results)
|
1442
|
+
SENSITIVE = []
|
1381
1443
|
include Aws::Structure
|
1382
1444
|
end
|
1383
1445
|
|
@@ -1394,6 +1456,7 @@ module Aws::IoTThingsGraph
|
|
1394
1456
|
class SearchSystemInstancesResponse < Struct.new(
|
1395
1457
|
:summaries,
|
1396
1458
|
:next_token)
|
1459
|
+
SENSITIVE = []
|
1397
1460
|
include Aws::Structure
|
1398
1461
|
end
|
1399
1462
|
|
@@ -1429,6 +1492,7 @@ module Aws::IoTThingsGraph
|
|
1429
1492
|
:filters,
|
1430
1493
|
:next_token,
|
1431
1494
|
:max_results)
|
1495
|
+
SENSITIVE = []
|
1432
1496
|
include Aws::Structure
|
1433
1497
|
end
|
1434
1498
|
|
@@ -1445,6 +1509,7 @@ module Aws::IoTThingsGraph
|
|
1445
1509
|
class SearchSystemTemplatesResponse < Struct.new(
|
1446
1510
|
:summaries,
|
1447
1511
|
:next_token)
|
1512
|
+
SENSITIVE = []
|
1448
1513
|
include Aws::Structure
|
1449
1514
|
end
|
1450
1515
|
|
@@ -1485,6 +1550,7 @@ module Aws::IoTThingsGraph
|
|
1485
1550
|
:next_token,
|
1486
1551
|
:max_results,
|
1487
1552
|
:namespace_version)
|
1553
|
+
SENSITIVE = []
|
1488
1554
|
include Aws::Structure
|
1489
1555
|
end
|
1490
1556
|
|
@@ -1500,6 +1566,7 @@ module Aws::IoTThingsGraph
|
|
1500
1566
|
class SearchThingsResponse < Struct.new(
|
1501
1567
|
:things,
|
1502
1568
|
:next_token)
|
1569
|
+
SENSITIVE = []
|
1503
1570
|
include Aws::Structure
|
1504
1571
|
end
|
1505
1572
|
|
@@ -1549,6 +1616,7 @@ module Aws::IoTThingsGraph
|
|
1549
1616
|
:validated_namespace_version,
|
1550
1617
|
:validated_dependency_revisions,
|
1551
1618
|
:flow_actions_role_arn)
|
1619
|
+
SENSITIVE = []
|
1552
1620
|
include Aws::Structure
|
1553
1621
|
end
|
1554
1622
|
|
@@ -1578,6 +1646,7 @@ module Aws::IoTThingsGraph
|
|
1578
1646
|
class SystemInstanceFilter < Struct.new(
|
1579
1647
|
:name,
|
1580
1648
|
:value)
|
1649
|
+
SENSITIVE = []
|
1581
1650
|
include Aws::Structure
|
1582
1651
|
end
|
1583
1652
|
|
@@ -1632,6 +1701,7 @@ module Aws::IoTThingsGraph
|
|
1632
1701
|
:updated_at,
|
1633
1702
|
:greengrass_group_id,
|
1634
1703
|
:greengrass_group_version_id)
|
1704
|
+
SENSITIVE = []
|
1635
1705
|
include Aws::Structure
|
1636
1706
|
end
|
1637
1707
|
|
@@ -1655,6 +1725,7 @@ module Aws::IoTThingsGraph
|
|
1655
1725
|
:summary,
|
1656
1726
|
:definition,
|
1657
1727
|
:validated_namespace_version)
|
1728
|
+
SENSITIVE = []
|
1658
1729
|
include Aws::Structure
|
1659
1730
|
end
|
1660
1731
|
|
@@ -1680,6 +1751,7 @@ module Aws::IoTThingsGraph
|
|
1680
1751
|
class SystemTemplateFilter < Struct.new(
|
1681
1752
|
:name,
|
1682
1753
|
:value)
|
1754
|
+
SENSITIVE = []
|
1683
1755
|
include Aws::Structure
|
1684
1756
|
end
|
1685
1757
|
|
@@ -1706,6 +1778,7 @@ module Aws::IoTThingsGraph
|
|
1706
1778
|
:arn,
|
1707
1779
|
:revision_number,
|
1708
1780
|
:created_at)
|
1781
|
+
SENSITIVE = []
|
1709
1782
|
include Aws::Structure
|
1710
1783
|
end
|
1711
1784
|
|
@@ -1733,6 +1806,7 @@ module Aws::IoTThingsGraph
|
|
1733
1806
|
class Tag < Struct.new(
|
1734
1807
|
:key,
|
1735
1808
|
:value)
|
1809
|
+
SENSITIVE = []
|
1736
1810
|
include Aws::Structure
|
1737
1811
|
end
|
1738
1812
|
|
@@ -1761,6 +1835,7 @@ module Aws::IoTThingsGraph
|
|
1761
1835
|
class TagResourceRequest < Struct.new(
|
1762
1836
|
:resource_arn,
|
1763
1837
|
:tags)
|
1838
|
+
SENSITIVE = []
|
1764
1839
|
include Aws::Structure
|
1765
1840
|
end
|
1766
1841
|
|
@@ -1779,6 +1854,7 @@ module Aws::IoTThingsGraph
|
|
1779
1854
|
class Thing < Struct.new(
|
1780
1855
|
:thing_arn,
|
1781
1856
|
:thing_name)
|
1857
|
+
SENSITIVE = []
|
1782
1858
|
include Aws::Structure
|
1783
1859
|
end
|
1784
1860
|
|
@@ -1787,6 +1863,7 @@ module Aws::IoTThingsGraph
|
|
1787
1863
|
#
|
1788
1864
|
class ThrottlingException < Struct.new(
|
1789
1865
|
:message)
|
1866
|
+
SENSITIVE = []
|
1790
1867
|
include Aws::Structure
|
1791
1868
|
end
|
1792
1869
|
|
@@ -1803,6 +1880,7 @@ module Aws::IoTThingsGraph
|
|
1803
1880
|
#
|
1804
1881
|
class UndeploySystemInstanceRequest < Struct.new(
|
1805
1882
|
:id)
|
1883
|
+
SENSITIVE = []
|
1806
1884
|
include Aws::Structure
|
1807
1885
|
end
|
1808
1886
|
|
@@ -1813,6 +1891,7 @@ module Aws::IoTThingsGraph
|
|
1813
1891
|
#
|
1814
1892
|
class UndeploySystemInstanceResponse < Struct.new(
|
1815
1893
|
:summary)
|
1894
|
+
SENSITIVE = []
|
1816
1895
|
include Aws::Structure
|
1817
1896
|
end
|
1818
1897
|
|
@@ -1847,6 +1926,7 @@ module Aws::IoTThingsGraph
|
|
1847
1926
|
class UntagResourceRequest < Struct.new(
|
1848
1927
|
:resource_arn,
|
1849
1928
|
:tag_keys)
|
1929
|
+
SENSITIVE = []
|
1850
1930
|
include Aws::Structure
|
1851
1931
|
end
|
1852
1932
|
|
@@ -1889,6 +1969,7 @@ module Aws::IoTThingsGraph
|
|
1889
1969
|
:id,
|
1890
1970
|
:definition,
|
1891
1971
|
:compatible_namespace_version)
|
1972
|
+
SENSITIVE = []
|
1892
1973
|
include Aws::Structure
|
1893
1974
|
end
|
1894
1975
|
|
@@ -1898,6 +1979,7 @@ module Aws::IoTThingsGraph
|
|
1898
1979
|
#
|
1899
1980
|
class UpdateFlowTemplateResponse < Struct.new(
|
1900
1981
|
:summary)
|
1982
|
+
SENSITIVE = []
|
1901
1983
|
include Aws::Structure
|
1902
1984
|
end
|
1903
1985
|
|
@@ -1937,6 +2019,7 @@ module Aws::IoTThingsGraph
|
|
1937
2019
|
:id,
|
1938
2020
|
:definition,
|
1939
2021
|
:compatible_namespace_version)
|
2022
|
+
SENSITIVE = []
|
1940
2023
|
include Aws::Structure
|
1941
2024
|
end
|
1942
2025
|
|
@@ -1946,6 +2029,7 @@ module Aws::IoTThingsGraph
|
|
1946
2029
|
#
|
1947
2030
|
class UpdateSystemTemplateResponse < Struct.new(
|
1948
2031
|
:summary)
|
2032
|
+
SENSITIVE = []
|
1949
2033
|
include Aws::Structure
|
1950
2034
|
end
|
1951
2035
|
|
@@ -1981,6 +2065,7 @@ module Aws::IoTThingsGraph
|
|
1981
2065
|
:document,
|
1982
2066
|
:sync_with_public_namespace,
|
1983
2067
|
:deprecate_existing_entities)
|
2068
|
+
SENSITIVE = []
|
1984
2069
|
include Aws::Structure
|
1985
2070
|
end
|
1986
2071
|
|
@@ -1991,6 +2076,7 @@ module Aws::IoTThingsGraph
|
|
1991
2076
|
#
|
1992
2077
|
class UploadEntityDefinitionsResponse < Struct.new(
|
1993
2078
|
:upload_id)
|
2079
|
+
SENSITIVE = []
|
1994
2080
|
include Aws::Structure
|
1995
2081
|
end
|
1996
2082
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-iotthingsgraph
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.9.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 Things Graph
|