aws-sdk-iotthingsgraph 1.5.0 → 1.10.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: 963280b9a9cf4f22f1134acfd756be9269d92a8a
4
- data.tar.gz: 3cd6db884aff61ae72b7c906232c2302cfb86f29
2
+ SHA256:
3
+ metadata.gz: 1fbf49ff1aa7426b5a5e0670a087dc65d9ca953c69d794e959a6fe9e20f8741e
4
+ data.tar.gz: d0817094995a56c66b31ab688da81f3958f61dac21e466d4682c47feb7de771d
5
5
  SHA512:
6
- metadata.gz: 6f8c1a003fe70e0700ae4003fb5465e6f7d9c6eb36c610f3f1300325abf3e29721c99b0101543702f2156f02e34f51e3b60a53ce73349d7c9da3793aff569a49
7
- data.tar.gz: 99453d785bbb7b2444d0517829f5ff79ec74c975423dc1289e21322b9d43be17a58431ea986d08eac494a3e4090ec1e38966313004c8c46db7a432d5537ea156
6
+ metadata.gz: ba0568d116aa9643f25ddb04d6834a4f7ffe905610fca974bab01db0b51dd9be14caa39e29ce79e101d3bf77262da69fd66c6bf42b7c079ae13d5f9b26144a08
7
+ data.tar.gz: 8a25de8490e81fbfa8486e685e2bfd0cfdc39efa19571b5ea4df4dd0a3897ef702069bb0b247812b5c26746a14c488810c6a8382e6d115894b0a9d9629fa0550
@@ -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-iotthingsgraph/customizations'
42
44
  #
43
45
  # See {Errors} for more information.
44
46
  #
45
- # @service
47
+ # @!group service
46
48
  module Aws::IoTThingsGraph
47
49
 
48
- GEM_VERSION = '1.5.0'
50
+ GEM_VERSION = '1.10.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/json_rpc.rb'
29
32
 
@@ -32,11 +35,11 @@ Aws::Plugins::GlobalConfiguration.add_identifier(:iotthingsgraph)
32
35
  module Aws::IoTThingsGraph
33
36
  # An API client for IoTThingsGraph. To construct a client, you need to configure a `:region` and `:credentials`.
34
37
  #
35
- # client = Aws::IoTThingsGraph::Client.new(
36
- # region: region_name,
37
- # credentials: credentials,
38
- # # ...
39
- # )
38
+ # client = Aws::IoTThingsGraph::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::IoTThingsGraph
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::JsonRpc)
74
78
 
@@ -81,13 +85,28 @@ module Aws::IoTThingsGraph
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::IoTThingsGraph
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::IoTThingsGraph
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::IoTThingsGraph
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::IoTThingsGraph
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
  #
@@ -275,8 +298,7 @@ module Aws::IoTThingsGraph
275
298
  #
276
299
  # @option options [Integer] :http_read_timeout (60) The default
277
300
  # number of seconds to wait for response data. This value can
278
- # safely be set
279
- # per-request on the session yielded by {#session_for}.
301
+ # safely be set per-request on the session.
280
302
  #
281
303
  # @option options [Float] :http_idle_timeout (5) The number of
282
304
  # seconds a connection is allowed to sit idle before it is
@@ -288,7 +310,7 @@ module Aws::IoTThingsGraph
288
310
  # request body. This option has no effect unless the request has
289
311
  # "Expect" header set to "100-continue". Defaults to `nil` which
290
312
  # disables this behaviour. This value can safely be set per
291
- # request on the session yielded by {#session_for}.
313
+ # request on the session.
292
314
  #
293
315
  # @option options [Boolean] :http_wire_trace (false) When `true`,
294
316
  # HTTP debug output will be sent to the `:logger`.
@@ -940,6 +962,8 @@ module Aws::IoTThingsGraph
940
962
  # * {Types::GetFlowTemplateRevisionsResponse#summaries #summaries} => Array<Types::FlowTemplateSummary>
941
963
  # * {Types::GetFlowTemplateRevisionsResponse#next_token #next_token} => String
942
964
  #
965
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
966
+ #
943
967
  # @example Request syntax with placeholder values
944
968
  #
945
969
  # resp = client.get_flow_template_revisions({
@@ -1103,6 +1127,8 @@ module Aws::IoTThingsGraph
1103
1127
  # * {Types::GetSystemTemplateRevisionsResponse#summaries #summaries} => Array<Types::SystemTemplateSummary>
1104
1128
  # * {Types::GetSystemTemplateRevisionsResponse#next_token #next_token} => String
1105
1129
  #
1130
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
1131
+ #
1106
1132
  # @example Request syntax with placeholder values
1107
1133
  #
1108
1134
  # resp = client.get_system_template_revisions({
@@ -1185,6 +1211,8 @@ module Aws::IoTThingsGraph
1185
1211
  # * {Types::ListFlowExecutionMessagesResponse#messages #messages} => Array<Types::FlowExecutionMessage>
1186
1212
  # * {Types::ListFlowExecutionMessagesResponse#next_token #next_token} => String
1187
1213
  #
1214
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
1215
+ #
1188
1216
  # @example Request syntax with placeholder values
1189
1217
  #
1190
1218
  # resp = client.list_flow_execution_messages({
@@ -1226,6 +1254,8 @@ module Aws::IoTThingsGraph
1226
1254
  # * {Types::ListTagsForResourceResponse#tags #tags} => Array<Types::Tag>
1227
1255
  # * {Types::ListTagsForResourceResponse#next_token #next_token} => String
1228
1256
  #
1257
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
1258
+ #
1229
1259
  # @example Request syntax with placeholder values
1230
1260
  #
1231
1261
  # resp = client.list_tags_for_resource({
@@ -1281,6 +1311,8 @@ module Aws::IoTThingsGraph
1281
1311
  # * {Types::SearchEntitiesResponse#descriptions #descriptions} => Array<Types::EntityDescription>
1282
1312
  # * {Types::SearchEntitiesResponse#next_token #next_token} => String
1283
1313
  #
1314
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
1315
+ #
1284
1316
  # @example Request syntax with placeholder values
1285
1317
  #
1286
1318
  # resp = client.search_entities({
@@ -1340,6 +1372,8 @@ module Aws::IoTThingsGraph
1340
1372
  # * {Types::SearchFlowExecutionsResponse#summaries #summaries} => Array<Types::FlowExecutionSummary>
1341
1373
  # * {Types::SearchFlowExecutionsResponse#next_token #next_token} => String
1342
1374
  #
1375
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
1376
+ #
1343
1377
  # @example Request syntax with placeholder values
1344
1378
  #
1345
1379
  # resp = client.search_flow_executions({
@@ -1387,6 +1421,8 @@ module Aws::IoTThingsGraph
1387
1421
  # * {Types::SearchFlowTemplatesResponse#summaries #summaries} => Array<Types::FlowTemplateSummary>
1388
1422
  # * {Types::SearchFlowTemplatesResponse#next_token #next_token} => String
1389
1423
  #
1424
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
1425
+ #
1390
1426
  # @example Request syntax with placeholder values
1391
1427
  #
1392
1428
  # resp = client.search_flow_templates({
@@ -1437,6 +1473,8 @@ module Aws::IoTThingsGraph
1437
1473
  # * {Types::SearchSystemInstancesResponse#summaries #summaries} => Array<Types::SystemInstanceSummary>
1438
1474
  # * {Types::SearchSystemInstancesResponse#next_token #next_token} => String
1439
1475
  #
1476
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
1477
+ #
1440
1478
  # @example Request syntax with placeholder values
1441
1479
  #
1442
1480
  # resp = client.search_system_instances({
@@ -1491,6 +1529,8 @@ module Aws::IoTThingsGraph
1491
1529
  # * {Types::SearchSystemTemplatesResponse#summaries #summaries} => Array<Types::SystemTemplateSummary>
1492
1530
  # * {Types::SearchSystemTemplatesResponse#next_token #next_token} => String
1493
1531
  #
1532
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
1533
+ #
1494
1534
  # @example Request syntax with placeholder values
1495
1535
  #
1496
1536
  # resp = client.search_system_templates({
@@ -1554,6 +1594,8 @@ module Aws::IoTThingsGraph
1554
1594
  # * {Types::SearchThingsResponse#things #things} => Array<Types::Thing>
1555
1595
  # * {Types::SearchThingsResponse#next_token #next_token} => String
1556
1596
  #
1597
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
1598
+ #
1557
1599
  # @example Request syntax with placeholder values
1558
1600
  #
1559
1601
  # resp = client.search_things({
@@ -1855,7 +1897,7 @@ module Aws::IoTThingsGraph
1855
1897
  params: params,
1856
1898
  config: config)
1857
1899
  context[:gem_name] = 'aws-sdk-iotthingsgraph'
1858
- context[:gem_version] = '1.5.0'
1900
+ context[:gem_version] = '1.10.0'
1859
1901
  Seahorse::Client::Request.new(handlers, context)
1860
1902
  end
1861
1903
 
@@ -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::IoTThingsGraph
9
- # This class provides a resource oriented interface for IoTThingsGraph.
10
- # To create a resource object:
11
- # resource = Aws::IoTThingsGraph::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::IoTThingsGraph::Client.new(region: 'us-west-2')
15
- # resource = Aws::IoTThingsGraph::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:
@@ -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.5.0
4
+ version: 1.10.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 Things Graph