aws-sdk-iotthingsgraph 1.35.0 → 1.37.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.
data/sig/types.rbs ADDED
@@ -0,0 +1,583 @@
1
+ # WARNING ABOUT GENERATED CODE
2
+ #
3
+ # This file is generated. See the contributing guide for more information:
4
+ # https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
5
+ #
6
+ # WARNING ABOUT GENERATED CODE
7
+
8
+ module Aws::IoTThingsGraph
9
+ module Types
10
+
11
+ class AssociateEntityToThingRequest
12
+ attr_accessor thing_name: ::String
13
+ attr_accessor entity_id: ::String
14
+ attr_accessor namespace_version: ::Integer
15
+ SENSITIVE: []
16
+ end
17
+
18
+ class AssociateEntityToThingResponse < Aws::EmptyStructure
19
+ end
20
+
21
+ class CreateFlowTemplateRequest
22
+ attr_accessor definition: Types::DefinitionDocument
23
+ attr_accessor compatible_namespace_version: ::Integer
24
+ SENSITIVE: []
25
+ end
26
+
27
+ class CreateFlowTemplateResponse
28
+ attr_accessor summary: Types::FlowTemplateSummary
29
+ SENSITIVE: []
30
+ end
31
+
32
+ class CreateSystemInstanceRequest
33
+ attr_accessor tags: ::Array[Types::Tag]
34
+ attr_accessor definition: Types::DefinitionDocument
35
+ attr_accessor target: ("GREENGRASS" | "CLOUD")
36
+ attr_accessor greengrass_group_name: ::String
37
+ attr_accessor s3_bucket_name: ::String
38
+ attr_accessor metrics_configuration: Types::MetricsConfiguration
39
+ attr_accessor flow_actions_role_arn: ::String
40
+ SENSITIVE: []
41
+ end
42
+
43
+ class CreateSystemInstanceResponse
44
+ attr_accessor summary: Types::SystemInstanceSummary
45
+ SENSITIVE: []
46
+ end
47
+
48
+ class CreateSystemTemplateRequest
49
+ attr_accessor definition: Types::DefinitionDocument
50
+ attr_accessor compatible_namespace_version: ::Integer
51
+ SENSITIVE: []
52
+ end
53
+
54
+ class CreateSystemTemplateResponse
55
+ attr_accessor summary: Types::SystemTemplateSummary
56
+ SENSITIVE: []
57
+ end
58
+
59
+ class DefinitionDocument
60
+ attr_accessor language: ("GRAPHQL")
61
+ attr_accessor text: ::String
62
+ SENSITIVE: []
63
+ end
64
+
65
+ class DeleteFlowTemplateRequest
66
+ attr_accessor id: ::String
67
+ SENSITIVE: []
68
+ end
69
+
70
+ class DeleteFlowTemplateResponse < Aws::EmptyStructure
71
+ end
72
+
73
+ class DeleteNamespaceRequest < Aws::EmptyStructure
74
+ end
75
+
76
+ class DeleteNamespaceResponse
77
+ attr_accessor namespace_arn: ::String
78
+ attr_accessor namespace_name: ::String
79
+ SENSITIVE: []
80
+ end
81
+
82
+ class DeleteSystemInstanceRequest
83
+ attr_accessor id: ::String
84
+ SENSITIVE: []
85
+ end
86
+
87
+ class DeleteSystemInstanceResponse < Aws::EmptyStructure
88
+ end
89
+
90
+ class DeleteSystemTemplateRequest
91
+ attr_accessor id: ::String
92
+ SENSITIVE: []
93
+ end
94
+
95
+ class DeleteSystemTemplateResponse < Aws::EmptyStructure
96
+ end
97
+
98
+ class DependencyRevision
99
+ attr_accessor id: ::String
100
+ attr_accessor revision_number: ::Integer
101
+ SENSITIVE: []
102
+ end
103
+
104
+ class DeploySystemInstanceRequest
105
+ attr_accessor id: ::String
106
+ SENSITIVE: []
107
+ end
108
+
109
+ class DeploySystemInstanceResponse
110
+ attr_accessor summary: Types::SystemInstanceSummary
111
+ attr_accessor greengrass_deployment_id: ::String
112
+ SENSITIVE: []
113
+ end
114
+
115
+ class DeprecateFlowTemplateRequest
116
+ attr_accessor id: ::String
117
+ SENSITIVE: []
118
+ end
119
+
120
+ class DeprecateFlowTemplateResponse < Aws::EmptyStructure
121
+ end
122
+
123
+ class DeprecateSystemTemplateRequest
124
+ attr_accessor id: ::String
125
+ SENSITIVE: []
126
+ end
127
+
128
+ class DeprecateSystemTemplateResponse < Aws::EmptyStructure
129
+ end
130
+
131
+ class DescribeNamespaceRequest
132
+ attr_accessor namespace_name: ::String
133
+ SENSITIVE: []
134
+ end
135
+
136
+ class DescribeNamespaceResponse
137
+ attr_accessor namespace_arn: ::String
138
+ attr_accessor namespace_name: ::String
139
+ attr_accessor tracking_namespace_name: ::String
140
+ attr_accessor tracking_namespace_version: ::Integer
141
+ attr_accessor namespace_version: ::Integer
142
+ SENSITIVE: []
143
+ end
144
+
145
+ class DissociateEntityFromThingRequest
146
+ attr_accessor thing_name: ::String
147
+ attr_accessor entity_type: ("DEVICE" | "SERVICE" | "DEVICE_MODEL" | "CAPABILITY" | "STATE" | "ACTION" | "EVENT" | "PROPERTY" | "MAPPING" | "ENUM")
148
+ SENSITIVE: []
149
+ end
150
+
151
+ class DissociateEntityFromThingResponse < Aws::EmptyStructure
152
+ end
153
+
154
+ class EntityDescription
155
+ attr_accessor id: ::String
156
+ attr_accessor arn: ::String
157
+ attr_accessor type: ("DEVICE" | "SERVICE" | "DEVICE_MODEL" | "CAPABILITY" | "STATE" | "ACTION" | "EVENT" | "PROPERTY" | "MAPPING" | "ENUM")
158
+ attr_accessor created_at: ::Time
159
+ attr_accessor definition: Types::DefinitionDocument
160
+ SENSITIVE: []
161
+ end
162
+
163
+ class EntityFilter
164
+ attr_accessor name: ("NAME" | "NAMESPACE" | "SEMANTIC_TYPE_PATH" | "REFERENCED_ENTITY_ID")
165
+ attr_accessor value: ::Array[::String]
166
+ SENSITIVE: []
167
+ end
168
+
169
+ class FlowExecutionMessage
170
+ attr_accessor message_id: ::String
171
+ attr_accessor event_type: ("EXECUTION_STARTED" | "EXECUTION_FAILED" | "EXECUTION_ABORTED" | "EXECUTION_SUCCEEDED" | "STEP_STARTED" | "STEP_FAILED" | "STEP_SUCCEEDED" | "ACTIVITY_SCHEDULED" | "ACTIVITY_STARTED" | "ACTIVITY_FAILED" | "ACTIVITY_SUCCEEDED" | "START_FLOW_EXECUTION_TASK" | "SCHEDULE_NEXT_READY_STEPS_TASK" | "THING_ACTION_TASK" | "THING_ACTION_TASK_FAILED" | "THING_ACTION_TASK_SUCCEEDED" | "ACKNOWLEDGE_TASK_MESSAGE")
172
+ attr_accessor timestamp: ::Time
173
+ attr_accessor payload: ::String
174
+ SENSITIVE: []
175
+ end
176
+
177
+ class FlowExecutionSummary
178
+ attr_accessor flow_execution_id: ::String
179
+ attr_accessor status: ("RUNNING" | "ABORTED" | "SUCCEEDED" | "FAILED")
180
+ attr_accessor system_instance_id: ::String
181
+ attr_accessor flow_template_id: ::String
182
+ attr_accessor created_at: ::Time
183
+ attr_accessor updated_at: ::Time
184
+ SENSITIVE: []
185
+ end
186
+
187
+ class FlowTemplateDescription
188
+ attr_accessor summary: Types::FlowTemplateSummary
189
+ attr_accessor definition: Types::DefinitionDocument
190
+ attr_accessor validated_namespace_version: ::Integer
191
+ SENSITIVE: []
192
+ end
193
+
194
+ class FlowTemplateFilter
195
+ attr_accessor name: ("DEVICE_MODEL_ID")
196
+ attr_accessor value: ::Array[::String]
197
+ SENSITIVE: []
198
+ end
199
+
200
+ class FlowTemplateSummary
201
+ attr_accessor id: ::String
202
+ attr_accessor arn: ::String
203
+ attr_accessor revision_number: ::Integer
204
+ attr_accessor created_at: ::Time
205
+ SENSITIVE: []
206
+ end
207
+
208
+ class GetEntitiesRequest
209
+ attr_accessor ids: ::Array[::String]
210
+ attr_accessor namespace_version: ::Integer
211
+ SENSITIVE: []
212
+ end
213
+
214
+ class GetEntitiesResponse
215
+ attr_accessor descriptions: ::Array[Types::EntityDescription]
216
+ SENSITIVE: []
217
+ end
218
+
219
+ class GetFlowTemplateRequest
220
+ attr_accessor id: ::String
221
+ attr_accessor revision_number: ::Integer
222
+ SENSITIVE: []
223
+ end
224
+
225
+ class GetFlowTemplateResponse
226
+ attr_accessor description: Types::FlowTemplateDescription
227
+ SENSITIVE: []
228
+ end
229
+
230
+ class GetFlowTemplateRevisionsRequest
231
+ attr_accessor id: ::String
232
+ attr_accessor next_token: ::String
233
+ attr_accessor max_results: ::Integer
234
+ SENSITIVE: []
235
+ end
236
+
237
+ class GetFlowTemplateRevisionsResponse
238
+ attr_accessor summaries: ::Array[Types::FlowTemplateSummary]
239
+ attr_accessor next_token: ::String
240
+ SENSITIVE: []
241
+ end
242
+
243
+ class GetNamespaceDeletionStatusRequest < Aws::EmptyStructure
244
+ end
245
+
246
+ class GetNamespaceDeletionStatusResponse
247
+ attr_accessor namespace_arn: ::String
248
+ attr_accessor namespace_name: ::String
249
+ attr_accessor status: ("IN_PROGRESS" | "SUCCEEDED" | "FAILED")
250
+ attr_accessor error_code: ("VALIDATION_FAILED")
251
+ attr_accessor error_message: ::String
252
+ SENSITIVE: []
253
+ end
254
+
255
+ class GetSystemInstanceRequest
256
+ attr_accessor id: ::String
257
+ SENSITIVE: []
258
+ end
259
+
260
+ class GetSystemInstanceResponse
261
+ attr_accessor description: Types::SystemInstanceDescription
262
+ SENSITIVE: []
263
+ end
264
+
265
+ class GetSystemTemplateRequest
266
+ attr_accessor id: ::String
267
+ attr_accessor revision_number: ::Integer
268
+ SENSITIVE: []
269
+ end
270
+
271
+ class GetSystemTemplateResponse
272
+ attr_accessor description: Types::SystemTemplateDescription
273
+ SENSITIVE: []
274
+ end
275
+
276
+ class GetSystemTemplateRevisionsRequest
277
+ attr_accessor id: ::String
278
+ attr_accessor next_token: ::String
279
+ attr_accessor max_results: ::Integer
280
+ SENSITIVE: []
281
+ end
282
+
283
+ class GetSystemTemplateRevisionsResponse
284
+ attr_accessor summaries: ::Array[Types::SystemTemplateSummary]
285
+ attr_accessor next_token: ::String
286
+ SENSITIVE: []
287
+ end
288
+
289
+ class GetUploadStatusRequest
290
+ attr_accessor upload_id: ::String
291
+ SENSITIVE: []
292
+ end
293
+
294
+ class GetUploadStatusResponse
295
+ attr_accessor upload_id: ::String
296
+ attr_accessor upload_status: ("IN_PROGRESS" | "SUCCEEDED" | "FAILED")
297
+ attr_accessor namespace_arn: ::String
298
+ attr_accessor namespace_name: ::String
299
+ attr_accessor namespace_version: ::Integer
300
+ attr_accessor failure_reason: ::Array[::String]
301
+ attr_accessor created_date: ::Time
302
+ SENSITIVE: []
303
+ end
304
+
305
+ class InternalFailureException
306
+ attr_accessor message: ::String
307
+ SENSITIVE: []
308
+ end
309
+
310
+ class InvalidRequestException
311
+ attr_accessor message: ::String
312
+ SENSITIVE: []
313
+ end
314
+
315
+ class LimitExceededException
316
+ attr_accessor message: ::String
317
+ SENSITIVE: []
318
+ end
319
+
320
+ class ListFlowExecutionMessagesRequest
321
+ attr_accessor flow_execution_id: ::String
322
+ attr_accessor next_token: ::String
323
+ attr_accessor max_results: ::Integer
324
+ SENSITIVE: []
325
+ end
326
+
327
+ class ListFlowExecutionMessagesResponse
328
+ attr_accessor messages: ::Array[Types::FlowExecutionMessage]
329
+ attr_accessor next_token: ::String
330
+ SENSITIVE: []
331
+ end
332
+
333
+ class ListTagsForResourceRequest
334
+ attr_accessor max_results: ::Integer
335
+ attr_accessor resource_arn: ::String
336
+ attr_accessor next_token: ::String
337
+ SENSITIVE: []
338
+ end
339
+
340
+ class ListTagsForResourceResponse
341
+ attr_accessor tags: ::Array[Types::Tag]
342
+ attr_accessor next_token: ::String
343
+ SENSITIVE: []
344
+ end
345
+
346
+ class MetricsConfiguration
347
+ attr_accessor cloud_metric_enabled: bool
348
+ attr_accessor metric_rule_role_arn: ::String
349
+ SENSITIVE: []
350
+ end
351
+
352
+ class ResourceAlreadyExistsException
353
+ attr_accessor message: ::String
354
+ SENSITIVE: []
355
+ end
356
+
357
+ class ResourceInUseException
358
+ attr_accessor message: ::String
359
+ SENSITIVE: []
360
+ end
361
+
362
+ class ResourceNotFoundException
363
+ attr_accessor message: ::String
364
+ SENSITIVE: []
365
+ end
366
+
367
+ class SearchEntitiesRequest
368
+ attr_accessor entity_types: ::Array[("DEVICE" | "SERVICE" | "DEVICE_MODEL" | "CAPABILITY" | "STATE" | "ACTION" | "EVENT" | "PROPERTY" | "MAPPING" | "ENUM")]
369
+ attr_accessor filters: ::Array[Types::EntityFilter]
370
+ attr_accessor next_token: ::String
371
+ attr_accessor max_results: ::Integer
372
+ attr_accessor namespace_version: ::Integer
373
+ SENSITIVE: []
374
+ end
375
+
376
+ class SearchEntitiesResponse
377
+ attr_accessor descriptions: ::Array[Types::EntityDescription]
378
+ attr_accessor next_token: ::String
379
+ SENSITIVE: []
380
+ end
381
+
382
+ class SearchFlowExecutionsRequest
383
+ attr_accessor system_instance_id: ::String
384
+ attr_accessor flow_execution_id: ::String
385
+ attr_accessor start_time: ::Time
386
+ attr_accessor end_time: ::Time
387
+ attr_accessor next_token: ::String
388
+ attr_accessor max_results: ::Integer
389
+ SENSITIVE: []
390
+ end
391
+
392
+ class SearchFlowExecutionsResponse
393
+ attr_accessor summaries: ::Array[Types::FlowExecutionSummary]
394
+ attr_accessor next_token: ::String
395
+ SENSITIVE: []
396
+ end
397
+
398
+ class SearchFlowTemplatesRequest
399
+ attr_accessor filters: ::Array[Types::FlowTemplateFilter]
400
+ attr_accessor next_token: ::String
401
+ attr_accessor max_results: ::Integer
402
+ SENSITIVE: []
403
+ end
404
+
405
+ class SearchFlowTemplatesResponse
406
+ attr_accessor summaries: ::Array[Types::FlowTemplateSummary]
407
+ attr_accessor next_token: ::String
408
+ SENSITIVE: []
409
+ end
410
+
411
+ class SearchSystemInstancesRequest
412
+ attr_accessor filters: ::Array[Types::SystemInstanceFilter]
413
+ attr_accessor next_token: ::String
414
+ attr_accessor max_results: ::Integer
415
+ SENSITIVE: []
416
+ end
417
+
418
+ class SearchSystemInstancesResponse
419
+ attr_accessor summaries: ::Array[Types::SystemInstanceSummary]
420
+ attr_accessor next_token: ::String
421
+ SENSITIVE: []
422
+ end
423
+
424
+ class SearchSystemTemplatesRequest
425
+ attr_accessor filters: ::Array[Types::SystemTemplateFilter]
426
+ attr_accessor next_token: ::String
427
+ attr_accessor max_results: ::Integer
428
+ SENSITIVE: []
429
+ end
430
+
431
+ class SearchSystemTemplatesResponse
432
+ attr_accessor summaries: ::Array[Types::SystemTemplateSummary]
433
+ attr_accessor next_token: ::String
434
+ SENSITIVE: []
435
+ end
436
+
437
+ class SearchThingsRequest
438
+ attr_accessor entity_id: ::String
439
+ attr_accessor next_token: ::String
440
+ attr_accessor max_results: ::Integer
441
+ attr_accessor namespace_version: ::Integer
442
+ SENSITIVE: []
443
+ end
444
+
445
+ class SearchThingsResponse
446
+ attr_accessor things: ::Array[Types::Thing]
447
+ attr_accessor next_token: ::String
448
+ SENSITIVE: []
449
+ end
450
+
451
+ class SystemInstanceDescription
452
+ attr_accessor summary: Types::SystemInstanceSummary
453
+ attr_accessor definition: Types::DefinitionDocument
454
+ attr_accessor s3_bucket_name: ::String
455
+ attr_accessor metrics_configuration: Types::MetricsConfiguration
456
+ attr_accessor validated_namespace_version: ::Integer
457
+ attr_accessor validated_dependency_revisions: ::Array[Types::DependencyRevision]
458
+ attr_accessor flow_actions_role_arn: ::String
459
+ SENSITIVE: []
460
+ end
461
+
462
+ class SystemInstanceFilter
463
+ attr_accessor name: ("SYSTEM_TEMPLATE_ID" | "STATUS" | "GREENGRASS_GROUP_NAME")
464
+ attr_accessor value: ::Array[::String]
465
+ SENSITIVE: []
466
+ end
467
+
468
+ class SystemInstanceSummary
469
+ attr_accessor id: ::String
470
+ attr_accessor arn: ::String
471
+ attr_accessor status: ("NOT_DEPLOYED" | "BOOTSTRAP" | "DEPLOY_IN_PROGRESS" | "DEPLOYED_IN_TARGET" | "UNDEPLOY_IN_PROGRESS" | "FAILED" | "PENDING_DELETE" | "DELETED_IN_TARGET")
472
+ attr_accessor target: ("GREENGRASS" | "CLOUD")
473
+ attr_accessor greengrass_group_name: ::String
474
+ attr_accessor created_at: ::Time
475
+ attr_accessor updated_at: ::Time
476
+ attr_accessor greengrass_group_id: ::String
477
+ attr_accessor greengrass_group_version_id: ::String
478
+ SENSITIVE: []
479
+ end
480
+
481
+ class SystemTemplateDescription
482
+ attr_accessor summary: Types::SystemTemplateSummary
483
+ attr_accessor definition: Types::DefinitionDocument
484
+ attr_accessor validated_namespace_version: ::Integer
485
+ SENSITIVE: []
486
+ end
487
+
488
+ class SystemTemplateFilter
489
+ attr_accessor name: ("FLOW_TEMPLATE_ID")
490
+ attr_accessor value: ::Array[::String]
491
+ SENSITIVE: []
492
+ end
493
+
494
+ class SystemTemplateSummary
495
+ attr_accessor id: ::String
496
+ attr_accessor arn: ::String
497
+ attr_accessor revision_number: ::Integer
498
+ attr_accessor created_at: ::Time
499
+ SENSITIVE: []
500
+ end
501
+
502
+ class Tag
503
+ attr_accessor key: ::String
504
+ attr_accessor value: ::String
505
+ SENSITIVE: []
506
+ end
507
+
508
+ class TagResourceRequest
509
+ attr_accessor resource_arn: ::String
510
+ attr_accessor tags: ::Array[Types::Tag]
511
+ SENSITIVE: []
512
+ end
513
+
514
+ class TagResourceResponse < Aws::EmptyStructure
515
+ end
516
+
517
+ class Thing
518
+ attr_accessor thing_arn: ::String
519
+ attr_accessor thing_name: ::String
520
+ SENSITIVE: []
521
+ end
522
+
523
+ class ThrottlingException
524
+ attr_accessor message: ::String
525
+ SENSITIVE: []
526
+ end
527
+
528
+ class UndeploySystemInstanceRequest
529
+ attr_accessor id: ::String
530
+ SENSITIVE: []
531
+ end
532
+
533
+ class UndeploySystemInstanceResponse
534
+ attr_accessor summary: Types::SystemInstanceSummary
535
+ SENSITIVE: []
536
+ end
537
+
538
+ class UntagResourceRequest
539
+ attr_accessor resource_arn: ::String
540
+ attr_accessor tag_keys: ::Array[::String]
541
+ SENSITIVE: []
542
+ end
543
+
544
+ class UntagResourceResponse < Aws::EmptyStructure
545
+ end
546
+
547
+ class UpdateFlowTemplateRequest
548
+ attr_accessor id: ::String
549
+ attr_accessor definition: Types::DefinitionDocument
550
+ attr_accessor compatible_namespace_version: ::Integer
551
+ SENSITIVE: []
552
+ end
553
+
554
+ class UpdateFlowTemplateResponse
555
+ attr_accessor summary: Types::FlowTemplateSummary
556
+ SENSITIVE: []
557
+ end
558
+
559
+ class UpdateSystemTemplateRequest
560
+ attr_accessor id: ::String
561
+ attr_accessor definition: Types::DefinitionDocument
562
+ attr_accessor compatible_namespace_version: ::Integer
563
+ SENSITIVE: []
564
+ end
565
+
566
+ class UpdateSystemTemplateResponse
567
+ attr_accessor summary: Types::SystemTemplateSummary
568
+ SENSITIVE: []
569
+ end
570
+
571
+ class UploadEntityDefinitionsRequest
572
+ attr_accessor document: Types::DefinitionDocument
573
+ attr_accessor sync_with_public_namespace: bool
574
+ attr_accessor deprecate_existing_entities: bool
575
+ SENSITIVE: []
576
+ end
577
+
578
+ class UploadEntityDefinitionsResponse
579
+ attr_accessor upload_id: ::String
580
+ SENSITIVE: []
581
+ end
582
+ end
583
+ end
data/sig/waiters.rbs ADDED
@@ -0,0 +1,13 @@
1
+ # WARNING ABOUT GENERATED CODE
2
+ #
3
+ # This file is generated. See the contributing guide for more information:
4
+ # https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
5
+ #
6
+ # WARNING ABOUT GENERATED CODE
7
+
8
+ module Aws
9
+ module IoTThingsGraph
10
+ module Waiters
11
+ end
12
+ end
13
+ end
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.35.0
4
+ version: 1.37.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
- autorequire:
8
+ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-11-28 00:00:00.000000000 Z
11
+ date: 2024-04-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.188.0
22
+ version: 3.193.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.188.0
32
+ version: 3.193.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement
@@ -66,13 +66,18 @@ files:
66
66
  - lib/aws-sdk-iotthingsgraph/plugins/endpoints.rb
67
67
  - lib/aws-sdk-iotthingsgraph/resource.rb
68
68
  - lib/aws-sdk-iotthingsgraph/types.rb
69
+ - sig/client.rbs
70
+ - sig/errors.rbs
71
+ - sig/resource.rbs
72
+ - sig/types.rbs
73
+ - sig/waiters.rbs
69
74
  homepage: https://github.com/aws/aws-sdk-ruby
70
75
  licenses:
71
76
  - Apache-2.0
72
77
  metadata:
73
78
  source_code_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-iotthingsgraph
74
79
  changelog_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-iotthingsgraph/CHANGELOG.md
75
- post_install_message:
80
+ post_install_message:
76
81
  rdoc_options: []
77
82
  require_paths:
78
83
  - lib
@@ -87,8 +92,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
87
92
  - !ruby/object:Gem::Version
88
93
  version: '0'
89
94
  requirements: []
90
- rubygems_version: 3.1.6
91
- signing_key:
95
+ rubygems_version: 3.4.10
96
+ signing_key:
92
97
  specification_version: 4
93
98
  summary: AWS SDK for Ruby - AWS IoT Things Graph
94
99
  test_files: []