aws-sdk-iotthingsgraph 1.7.0 → 1.12.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/aws-sdk-iotthingsgraph.rb +5 -2
- data/lib/aws-sdk-iotthingsgraph/client.rb +28 -9
- data/lib/aws-sdk-iotthingsgraph/client_api.rb +2 -0
- data/lib/aws-sdk-iotthingsgraph/errors.rb +2 -0
- data/lib/aws-sdk-iotthingsgraph/resource.rb +2 -0
- data/lib/aws-sdk-iotthingsgraph/types.rb +86 -0
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f90d8fa98808ffbd767dae2b3f73bc867f4b063dcb5f58eb0628eaea3b1b3b22
|
4
|
+
data.tar.gz: e05a7d88d1c29dd26ca512d31044abb23e50f50a068d3539c3755de81a3c076d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d04c205f7eb4d3c90fe9e7148e84eec52e2b697495a0828c3e5b038c0dc6db43fad9aad93814b598d59123660911294b4e42240bb558191ba46e93f08db10a9a
|
7
|
+
data.tar.gz: 67b3f5ea73b0d18c385e548bf11dd7e9e1235df1fdb8a546dc50cbb13b5eaa981f1e11cf2fa839fd7619a4057c76523b31682f7b2f7d1b8ae5eb696dc9ec2ff7
|
@@ -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:
|
@@ -5,6 +7,7 @@
|
|
5
7
|
#
|
6
8
|
# WARNING ABOUT GENERATED CODE
|
7
9
|
|
10
|
+
|
8
11
|
require 'aws-sdk-core'
|
9
12
|
require 'aws-sigv4'
|
10
13
|
|
@@ -42,9 +45,9 @@ require_relative 'aws-sdk-iotthingsgraph/customizations'
|
|
42
45
|
#
|
43
46
|
# See {Errors} for more information.
|
44
47
|
#
|
45
|
-
#
|
48
|
+
# @!group service
|
46
49
|
module Aws::IoTThingsGraph
|
47
50
|
|
48
|
-
GEM_VERSION = '1.
|
51
|
+
GEM_VERSION = '1.12.0'
|
49
52
|
|
50
53
|
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
|
|
@@ -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::
|
88
|
-
#
|
105
|
+
# * `Aws::ECSCredentials` - Used for loading credentials from
|
106
|
+
# instances running in ECS.
|
89
107
|
#
|
90
|
-
# * `Aws::
|
108
|
+
# * `Aws::CognitoIdentityCredentials` - Used for loading credentials
|
109
|
+
# from the Cognito Identity service.
|
91
110
|
#
|
92
111
|
# When `:credentials` are not configured directly, the following
|
93
112
|
# locations will be searched for credentials:
|
@@ -97,10 +116,10 @@ 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
|
101
|
-
# very aggressive. Construct and pass an instance of
|
102
|
-
# `Aws::InstanceProfileCredentails`
|
103
|
-
# timeouts.
|
119
|
+
# * EC2/ECS IMDS instance profile - When used by default, the timeouts
|
120
|
+
# are very aggressive. Construct and pass an instance of
|
121
|
+
# `Aws::InstanceProfileCredentails` or `Aws::ECSCredentials` to
|
122
|
+
# enable retries and extended timeouts.
|
104
123
|
#
|
105
124
|
# @option options [required, String] :region
|
106
125
|
# The AWS region to connect to. The configured `:region` is
|
@@ -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 a valid 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
|
@@ -1878,7 +1897,7 @@ module Aws::IoTThingsGraph
|
|
1878
1897
|
params: params,
|
1879
1898
|
config: config)
|
1880
1899
|
context[:gem_name] = 'aws-sdk-iotthingsgraph'
|
1881
|
-
context[:gem_version] = '1.
|
1900
|
+
context[:gem_version] = '1.12.0'
|
1882
1901
|
Seahorse::Client::Request.new(handlers, context)
|
1883
1902
|
end
|
1884
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:
|
@@ -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.12.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2020-
|
11
|
+
date: 2020-09-30 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.109.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.109.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|