aws-sdk-iotmanagedintegrations 1.3.0 → 1.4.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 +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-iotmanagedintegrations/client.rb +1374 -32
- data/lib/aws-sdk-iotmanagedintegrations/client_api.rb +939 -12
- data/lib/aws-sdk-iotmanagedintegrations/errors.rb +42 -0
- data/lib/aws-sdk-iotmanagedintegrations/types.rb +1776 -85
- data/lib/aws-sdk-iotmanagedintegrations.rb +2 -2
- data/sig/client.rbs +437 -10
- data/sig/errors.rbs +8 -0
- data/sig/types.rbs +504 -12
- metadata +1 -1
data/sig/types.rbs
CHANGED
@@ -21,6 +21,27 @@ module Aws::IoTManagedIntegrations
|
|
21
21
|
SENSITIVE: []
|
22
22
|
end
|
23
23
|
|
24
|
+
class AccountAssociationItem
|
25
|
+
attr_accessor account_association_id: ::String
|
26
|
+
attr_accessor association_state: ("ASSOCIATION_IN_PROGRESS" | "ASSOCIATION_FAILED" | "ASSOCIATION_SUCCEEDED" | "ASSOCIATION_DELETING" | "REFRESH_TOKEN_EXPIRED")
|
27
|
+
attr_accessor error_message: ::String
|
28
|
+
attr_accessor connector_destination_id: ::String
|
29
|
+
attr_accessor name: ::String
|
30
|
+
attr_accessor description: ::String
|
31
|
+
attr_accessor arn: ::String
|
32
|
+
SENSITIVE: []
|
33
|
+
end
|
34
|
+
|
35
|
+
class AuthConfig
|
36
|
+
attr_accessor o_auth: Types::OAuthConfig
|
37
|
+
SENSITIVE: []
|
38
|
+
end
|
39
|
+
|
40
|
+
class AuthConfigUpdate
|
41
|
+
attr_accessor o_auth_update: Types::OAuthUpdate
|
42
|
+
SENSITIVE: []
|
43
|
+
end
|
44
|
+
|
24
45
|
class CapabilityAction
|
25
46
|
attr_accessor name: ::String
|
26
47
|
attr_accessor ref: ::String
|
@@ -53,6 +74,15 @@ module Aws::IoTManagedIntegrations
|
|
53
74
|
SENSITIVE: []
|
54
75
|
end
|
55
76
|
|
77
|
+
class CapabilitySchemaItem
|
78
|
+
attr_accessor format: ("AWS" | "ZCL" | "CONNECTOR")
|
79
|
+
attr_accessor capability_id: ::String
|
80
|
+
attr_accessor extrinsic_id: ::String
|
81
|
+
attr_accessor extrinsic_version: ::Integer
|
82
|
+
attr_accessor schema: untyped
|
83
|
+
SENSITIVE: []
|
84
|
+
end
|
85
|
+
|
56
86
|
class CommandCapability
|
57
87
|
attr_accessor id: ::String
|
58
88
|
attr_accessor name: ::String
|
@@ -84,6 +114,71 @@ module Aws::IoTManagedIntegrations
|
|
84
114
|
SENSITIVE: []
|
85
115
|
end
|
86
116
|
|
117
|
+
class ConnectorDestinationSummary
|
118
|
+
attr_accessor name: ::String
|
119
|
+
attr_accessor description: ::String
|
120
|
+
attr_accessor cloud_connector_id: ::String
|
121
|
+
attr_accessor id: ::String
|
122
|
+
SENSITIVE: []
|
123
|
+
end
|
124
|
+
|
125
|
+
class ConnectorItem
|
126
|
+
attr_accessor name: ::String
|
127
|
+
attr_accessor endpoint_config: Types::EndpointConfig
|
128
|
+
attr_accessor description: ::String
|
129
|
+
attr_accessor endpoint_type: ("LAMBDA")
|
130
|
+
attr_accessor id: ::String
|
131
|
+
attr_accessor type: ("LISTED" | "UNLISTED")
|
132
|
+
SENSITIVE: []
|
133
|
+
end
|
134
|
+
|
135
|
+
class CreateAccountAssociationRequest
|
136
|
+
attr_accessor client_token: ::String
|
137
|
+
attr_accessor connector_destination_id: ::String
|
138
|
+
attr_accessor name: ::String
|
139
|
+
attr_accessor description: ::String
|
140
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
141
|
+
SENSITIVE: [:tags]
|
142
|
+
end
|
143
|
+
|
144
|
+
class CreateAccountAssociationResponse
|
145
|
+
attr_accessor o_auth_authorization_url: ::String
|
146
|
+
attr_accessor account_association_id: ::String
|
147
|
+
attr_accessor association_state: ("ASSOCIATION_IN_PROGRESS" | "ASSOCIATION_FAILED" | "ASSOCIATION_SUCCEEDED" | "ASSOCIATION_DELETING" | "REFRESH_TOKEN_EXPIRED")
|
148
|
+
attr_accessor arn: ::String
|
149
|
+
SENSITIVE: [:o_auth_authorization_url]
|
150
|
+
end
|
151
|
+
|
152
|
+
class CreateCloudConnectorRequest
|
153
|
+
attr_accessor name: ::String
|
154
|
+
attr_accessor endpoint_config: Types::EndpointConfig
|
155
|
+
attr_accessor description: ::String
|
156
|
+
attr_accessor endpoint_type: ("LAMBDA")
|
157
|
+
attr_accessor client_token: ::String
|
158
|
+
SENSITIVE: []
|
159
|
+
end
|
160
|
+
|
161
|
+
class CreateCloudConnectorResponse
|
162
|
+
attr_accessor id: ::String
|
163
|
+
SENSITIVE: []
|
164
|
+
end
|
165
|
+
|
166
|
+
class CreateConnectorDestinationRequest
|
167
|
+
attr_accessor name: ::String
|
168
|
+
attr_accessor description: ::String
|
169
|
+
attr_accessor cloud_connector_id: ::String
|
170
|
+
attr_accessor auth_type: ("OAUTH")
|
171
|
+
attr_accessor auth_config: Types::AuthConfig
|
172
|
+
attr_accessor secrets_manager: Types::SecretsManager
|
173
|
+
attr_accessor client_token: ::String
|
174
|
+
SENSITIVE: []
|
175
|
+
end
|
176
|
+
|
177
|
+
class CreateConnectorDestinationResponse
|
178
|
+
attr_accessor id: ::String
|
179
|
+
SENSITIVE: []
|
180
|
+
end
|
181
|
+
|
87
182
|
class CreateCredentialLockerRequest
|
88
183
|
attr_accessor name: ::String
|
89
184
|
attr_accessor client_token: ::String
|
@@ -132,12 +227,13 @@ module Aws::IoTManagedIntegrations
|
|
132
227
|
attr_accessor owner: ::String
|
133
228
|
attr_accessor credential_locker_id: ::String
|
134
229
|
attr_accessor authentication_material: ::String
|
135
|
-
attr_accessor authentication_material_type: ("WIFI_SETUP_QR_BAR_CODE" | "ZWAVE_QR_BAR_CODE" | "ZIGBEE_QR_BAR_CODE")
|
230
|
+
attr_accessor authentication_material_type: ("CUSTOM_PROTOCOL_QR_BAR_CODE" | "WIFI_SETUP_QR_BAR_CODE" | "ZWAVE_QR_BAR_CODE" | "ZIGBEE_QR_BAR_CODE" | "DISCOVERED_DEVICE")
|
136
231
|
attr_accessor serial_number: ::String
|
137
232
|
attr_accessor brand: ::String
|
138
233
|
attr_accessor model: ::String
|
139
234
|
attr_accessor name: ::String
|
140
235
|
attr_accessor capability_report: Types::CapabilityReport
|
236
|
+
attr_accessor capability_schemas: ::Array[Types::CapabilitySchemaItem]
|
141
237
|
attr_accessor capabilities: ::String
|
142
238
|
attr_accessor client_token: ::String
|
143
239
|
attr_accessor classification: ::String
|
@@ -154,7 +250,7 @@ module Aws::IoTManagedIntegrations
|
|
154
250
|
end
|
155
251
|
|
156
252
|
class CreateNotificationConfigurationRequest
|
157
|
-
attr_accessor event_type: ("DEVICE_COMMAND" | "DEVICE_COMMAND_REQUEST" | "DEVICE_EVENT" | "DEVICE_LIFE_CYCLE" | "DEVICE_STATE" | "DEVICE_OTA" | "CONNECTOR_ASSOCIATION" | "CONNECTOR_ERROR_REPORT")
|
253
|
+
attr_accessor event_type: ("DEVICE_COMMAND" | "DEVICE_COMMAND_REQUEST" | "DEVICE_DISCOVERY_STATUS" | "DEVICE_EVENT" | "DEVICE_LIFE_CYCLE" | "DEVICE_STATE" | "DEVICE_OTA" | "CONNECTOR_ASSOCIATION" | "ACCOUNT_ASSOCIATION" | "CONNECTOR_ERROR_REPORT")
|
158
254
|
attr_accessor destination_name: ::String
|
159
255
|
attr_accessor client_token: ::String
|
160
256
|
attr_accessor tags: ::Hash[::String, ::String]
|
@@ -162,7 +258,7 @@ module Aws::IoTManagedIntegrations
|
|
162
258
|
end
|
163
259
|
|
164
260
|
class CreateNotificationConfigurationResponse
|
165
|
-
attr_accessor event_type: ("DEVICE_COMMAND" | "DEVICE_COMMAND_REQUEST" | "DEVICE_EVENT" | "DEVICE_LIFE_CYCLE" | "DEVICE_STATE" | "DEVICE_OTA" | "CONNECTOR_ASSOCIATION" | "CONNECTOR_ERROR_REPORT")
|
261
|
+
attr_accessor event_type: ("DEVICE_COMMAND" | "DEVICE_COMMAND_REQUEST" | "DEVICE_DISCOVERY_STATUS" | "DEVICE_EVENT" | "DEVICE_LIFE_CYCLE" | "DEVICE_STATE" | "DEVICE_OTA" | "CONNECTOR_ASSOCIATION" | "ACCOUNT_ASSOCIATION" | "CONNECTOR_ERROR_REPORT")
|
166
262
|
SENSITIVE: []
|
167
263
|
end
|
168
264
|
|
@@ -229,6 +325,21 @@ module Aws::IoTManagedIntegrations
|
|
229
325
|
SENSITIVE: [:name]
|
230
326
|
end
|
231
327
|
|
328
|
+
class DeleteAccountAssociationRequest
|
329
|
+
attr_accessor account_association_id: ::String
|
330
|
+
SENSITIVE: []
|
331
|
+
end
|
332
|
+
|
333
|
+
class DeleteCloudConnectorRequest
|
334
|
+
attr_accessor identifier: ::String
|
335
|
+
SENSITIVE: []
|
336
|
+
end
|
337
|
+
|
338
|
+
class DeleteConnectorDestinationRequest
|
339
|
+
attr_accessor identifier: ::String
|
340
|
+
SENSITIVE: []
|
341
|
+
end
|
342
|
+
|
232
343
|
class DeleteCredentialLockerRequest
|
233
344
|
attr_accessor identifier: ::String
|
234
345
|
SENSITIVE: []
|
@@ -251,7 +362,7 @@ module Aws::IoTManagedIntegrations
|
|
251
362
|
end
|
252
363
|
|
253
364
|
class DeleteNotificationConfigurationRequest
|
254
|
-
attr_accessor event_type: ("DEVICE_COMMAND" | "DEVICE_COMMAND_REQUEST" | "DEVICE_EVENT" | "DEVICE_LIFE_CYCLE" | "DEVICE_STATE" | "DEVICE_OTA" | "CONNECTOR_ASSOCIATION" | "CONNECTOR_ERROR_REPORT")
|
365
|
+
attr_accessor event_type: ("DEVICE_COMMAND" | "DEVICE_COMMAND_REQUEST" | "DEVICE_DISCOVERY_STATUS" | "DEVICE_EVENT" | "DEVICE_LIFE_CYCLE" | "DEVICE_STATE" | "DEVICE_OTA" | "CONNECTOR_ASSOCIATION" | "ACCOUNT_ASSOCIATION" | "CONNECTOR_ERROR_REPORT")
|
255
366
|
SENSITIVE: []
|
256
367
|
end
|
257
368
|
|
@@ -270,6 +381,12 @@ module Aws::IoTManagedIntegrations
|
|
270
381
|
SENSITIVE: []
|
271
382
|
end
|
272
383
|
|
384
|
+
class DeregisterAccountAssociationRequest
|
385
|
+
attr_accessor managed_thing_id: ::String
|
386
|
+
attr_accessor account_association_id: ::String
|
387
|
+
SENSITIVE: []
|
388
|
+
end
|
389
|
+
|
273
390
|
class DestinationSummary
|
274
391
|
attr_accessor description: ::String
|
275
392
|
attr_accessor delivery_destination_arn: ::String
|
@@ -279,6 +396,40 @@ module Aws::IoTManagedIntegrations
|
|
279
396
|
SENSITIVE: []
|
280
397
|
end
|
281
398
|
|
399
|
+
class Device
|
400
|
+
attr_accessor connector_device_id: ::String
|
401
|
+
attr_accessor connector_device_name: ::String
|
402
|
+
attr_accessor capability_report: Types::MatterCapabilityReport
|
403
|
+
attr_accessor capability_schemas: ::Array[Types::CapabilitySchemaItem]
|
404
|
+
attr_accessor device_metadata: untyped
|
405
|
+
SENSITIVE: [:connector_device_id, :connector_device_name]
|
406
|
+
end
|
407
|
+
|
408
|
+
class DeviceDiscoverySummary
|
409
|
+
attr_accessor id: ::String
|
410
|
+
attr_accessor discovery_type: ("ZWAVE" | "ZIGBEE" | "CLOUD" | "CUSTOM")
|
411
|
+
attr_accessor status: ("RUNNING" | "SUCCEEDED" | "FAILED" | "TIMED_OUT")
|
412
|
+
SENSITIVE: []
|
413
|
+
end
|
414
|
+
|
415
|
+
class DiscoveredDeviceSummary
|
416
|
+
attr_accessor connector_device_id: ::String
|
417
|
+
attr_accessor connector_device_name: ::String
|
418
|
+
attr_accessor device_types: ::Array[::String]
|
419
|
+
attr_accessor managed_thing_id: ::String
|
420
|
+
attr_accessor modification: ("DISCOVERED" | "UPDATED" | "NO_CHANGE")
|
421
|
+
attr_accessor discovered_at: ::Time
|
422
|
+
attr_accessor brand: ::String
|
423
|
+
attr_accessor model: ::String
|
424
|
+
attr_accessor authentication_material: ::String
|
425
|
+
SENSITIVE: [:connector_device_id, :connector_device_name, :brand, :model, :authentication_material]
|
426
|
+
end
|
427
|
+
|
428
|
+
class EndpointConfig
|
429
|
+
attr_accessor lambda: Types::LambdaConfig
|
430
|
+
SENSITIVE: []
|
431
|
+
end
|
432
|
+
|
282
433
|
class EventLogConfigurationSummary
|
283
434
|
attr_accessor id: ::String
|
284
435
|
attr_accessor resource_type: ::String
|
@@ -294,6 +445,56 @@ module Aws::IoTManagedIntegrations
|
|
294
445
|
SENSITIVE: []
|
295
446
|
end
|
296
447
|
|
448
|
+
class GetAccountAssociationRequest
|
449
|
+
attr_accessor account_association_id: ::String
|
450
|
+
SENSITIVE: []
|
451
|
+
end
|
452
|
+
|
453
|
+
class GetAccountAssociationResponse
|
454
|
+
attr_accessor account_association_id: ::String
|
455
|
+
attr_accessor association_state: ("ASSOCIATION_IN_PROGRESS" | "ASSOCIATION_FAILED" | "ASSOCIATION_SUCCEEDED" | "ASSOCIATION_DELETING" | "REFRESH_TOKEN_EXPIRED")
|
456
|
+
attr_accessor error_message: ::String
|
457
|
+
attr_accessor connector_destination_id: ::String
|
458
|
+
attr_accessor name: ::String
|
459
|
+
attr_accessor description: ::String
|
460
|
+
attr_accessor arn: ::String
|
461
|
+
attr_accessor o_auth_authorization_url: ::String
|
462
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
463
|
+
SENSITIVE: [:o_auth_authorization_url, :tags]
|
464
|
+
end
|
465
|
+
|
466
|
+
class GetCloudConnectorRequest
|
467
|
+
attr_accessor identifier: ::String
|
468
|
+
SENSITIVE: []
|
469
|
+
end
|
470
|
+
|
471
|
+
class GetCloudConnectorResponse
|
472
|
+
attr_accessor name: ::String
|
473
|
+
attr_accessor endpoint_config: Types::EndpointConfig
|
474
|
+
attr_accessor description: ::String
|
475
|
+
attr_accessor endpoint_type: ("LAMBDA")
|
476
|
+
attr_accessor id: ::String
|
477
|
+
attr_accessor type: ("LISTED" | "UNLISTED")
|
478
|
+
SENSITIVE: []
|
479
|
+
end
|
480
|
+
|
481
|
+
class GetConnectorDestinationRequest
|
482
|
+
attr_accessor identifier: ::String
|
483
|
+
SENSITIVE: []
|
484
|
+
end
|
485
|
+
|
486
|
+
class GetConnectorDestinationResponse
|
487
|
+
attr_accessor name: ::String
|
488
|
+
attr_accessor description: ::String
|
489
|
+
attr_accessor cloud_connector_id: ::String
|
490
|
+
attr_accessor id: ::String
|
491
|
+
attr_accessor auth_type: ("OAUTH")
|
492
|
+
attr_accessor auth_config: Types::AuthConfig
|
493
|
+
attr_accessor secrets_manager: Types::SecretsManager
|
494
|
+
attr_accessor o_auth_complete_redirect_url: ::String
|
495
|
+
SENSITIVE: []
|
496
|
+
end
|
497
|
+
|
297
498
|
class GetCredentialLockerRequest
|
298
499
|
attr_accessor identifier: ::String
|
299
500
|
SENSITIVE: []
|
@@ -351,11 +552,12 @@ module Aws::IoTManagedIntegrations
|
|
351
552
|
class GetDeviceDiscoveryResponse
|
352
553
|
attr_accessor id: ::String
|
353
554
|
attr_accessor arn: ::String
|
354
|
-
attr_accessor discovery_type: ("ZWAVE" | "ZIGBEE" | "CLOUD")
|
555
|
+
attr_accessor discovery_type: ("ZWAVE" | "ZIGBEE" | "CLOUD" | "CUSTOM")
|
355
556
|
attr_accessor status: ("RUNNING" | "SUCCEEDED" | "FAILED" | "TIMED_OUT")
|
356
557
|
attr_accessor started_at: ::Time
|
357
558
|
attr_accessor controller_id: ::String
|
358
559
|
attr_accessor connector_association_id: ::String
|
560
|
+
attr_accessor account_association_id: ::String
|
359
561
|
attr_accessor finished_at: ::Time
|
360
562
|
attr_accessor tags: ::Hash[::String, ::String]
|
361
563
|
SENSITIVE: [:tags]
|
@@ -439,6 +641,7 @@ module Aws::IoTManagedIntegrations
|
|
439
641
|
attr_accessor universal_product_code: ::String
|
440
642
|
attr_accessor international_article_number: ::String
|
441
643
|
attr_accessor connector_policy_id: ::String
|
644
|
+
attr_accessor connector_destination_id: ::String
|
442
645
|
attr_accessor connector_device_id: ::String
|
443
646
|
attr_accessor device_specific_key: ::String
|
444
647
|
attr_accessor mac_address: ::String
|
@@ -464,12 +667,12 @@ module Aws::IoTManagedIntegrations
|
|
464
667
|
end
|
465
668
|
|
466
669
|
class GetNotificationConfigurationRequest
|
467
|
-
attr_accessor event_type: ("DEVICE_COMMAND" | "DEVICE_COMMAND_REQUEST" | "DEVICE_EVENT" | "DEVICE_LIFE_CYCLE" | "DEVICE_STATE" | "DEVICE_OTA" | "CONNECTOR_ASSOCIATION" | "CONNECTOR_ERROR_REPORT")
|
670
|
+
attr_accessor event_type: ("DEVICE_COMMAND" | "DEVICE_COMMAND_REQUEST" | "DEVICE_DISCOVERY_STATUS" | "DEVICE_EVENT" | "DEVICE_LIFE_CYCLE" | "DEVICE_STATE" | "DEVICE_OTA" | "CONNECTOR_ASSOCIATION" | "ACCOUNT_ASSOCIATION" | "CONNECTOR_ERROR_REPORT")
|
468
671
|
SENSITIVE: []
|
469
672
|
end
|
470
673
|
|
471
674
|
class GetNotificationConfigurationResponse
|
472
|
-
attr_accessor event_type: ("DEVICE_COMMAND" | "DEVICE_COMMAND_REQUEST" | "DEVICE_EVENT" | "DEVICE_LIFE_CYCLE" | "DEVICE_STATE" | "DEVICE_OTA" | "CONNECTOR_ASSOCIATION" | "CONNECTOR_ERROR_REPORT")
|
675
|
+
attr_accessor event_type: ("DEVICE_COMMAND" | "DEVICE_COMMAND_REQUEST" | "DEVICE_DISCOVERY_STATUS" | "DEVICE_EVENT" | "DEVICE_LIFE_CYCLE" | "DEVICE_STATE" | "DEVICE_OTA" | "CONNECTOR_ASSOCIATION" | "ACCOUNT_ASSOCIATION" | "CONNECTOR_ERROR_REPORT")
|
473
676
|
attr_accessor destination_name: ::String
|
474
677
|
attr_accessor created_at: ::Time
|
475
678
|
attr_accessor updated_at: ::Time
|
@@ -513,7 +716,8 @@ module Aws::IoTManagedIntegrations
|
|
513
716
|
attr_accessor ota_scheduling_config: Types::OtaTaskSchedulingConfig
|
514
717
|
attr_accessor ota_task_execution_retry_config: Types::OtaTaskExecutionRetryConfig
|
515
718
|
attr_accessor status: ("IN_PROGRESS" | "CANCELED" | "COMPLETED" | "DELETION_IN_PROGRESS" | "SCHEDULED")
|
516
|
-
|
719
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
720
|
+
SENSITIVE: [:tags]
|
517
721
|
end
|
518
722
|
|
519
723
|
class GetProvisioningProfileRequest
|
@@ -570,6 +774,61 @@ module Aws::IoTManagedIntegrations
|
|
570
774
|
SENSITIVE: []
|
571
775
|
end
|
572
776
|
|
777
|
+
class InvalidRequestException
|
778
|
+
attr_accessor message: ::String
|
779
|
+
SENSITIVE: []
|
780
|
+
end
|
781
|
+
|
782
|
+
class LambdaConfig
|
783
|
+
attr_accessor arn: ::String
|
784
|
+
SENSITIVE: []
|
785
|
+
end
|
786
|
+
|
787
|
+
class LimitExceededException
|
788
|
+
attr_accessor message: ::String
|
789
|
+
SENSITIVE: []
|
790
|
+
end
|
791
|
+
|
792
|
+
class ListAccountAssociationsRequest
|
793
|
+
attr_accessor connector_destination_id: ::String
|
794
|
+
attr_accessor max_results: ::Integer
|
795
|
+
attr_accessor next_token: ::String
|
796
|
+
SENSITIVE: []
|
797
|
+
end
|
798
|
+
|
799
|
+
class ListAccountAssociationsResponse
|
800
|
+
attr_accessor items: ::Array[Types::AccountAssociationItem]
|
801
|
+
attr_accessor next_token: ::String
|
802
|
+
SENSITIVE: []
|
803
|
+
end
|
804
|
+
|
805
|
+
class ListCloudConnectorsRequest
|
806
|
+
attr_accessor type: ("LISTED" | "UNLISTED")
|
807
|
+
attr_accessor lambda_arn: ::String
|
808
|
+
attr_accessor max_results: ::Integer
|
809
|
+
attr_accessor next_token: ::String
|
810
|
+
SENSITIVE: []
|
811
|
+
end
|
812
|
+
|
813
|
+
class ListCloudConnectorsResponse
|
814
|
+
attr_accessor items: ::Array[Types::ConnectorItem]
|
815
|
+
attr_accessor next_token: ::String
|
816
|
+
SENSITIVE: []
|
817
|
+
end
|
818
|
+
|
819
|
+
class ListConnectorDestinationsRequest
|
820
|
+
attr_accessor cloud_connector_id: ::String
|
821
|
+
attr_accessor next_token: ::String
|
822
|
+
attr_accessor max_results: ::Integer
|
823
|
+
SENSITIVE: []
|
824
|
+
end
|
825
|
+
|
826
|
+
class ListConnectorDestinationsResponse
|
827
|
+
attr_accessor connector_destination_list: ::Array[Types::ConnectorDestinationSummary]
|
828
|
+
attr_accessor next_token: ::String
|
829
|
+
SENSITIVE: []
|
830
|
+
end
|
831
|
+
|
573
832
|
class ListCredentialLockersRequest
|
574
833
|
attr_accessor next_token: ::String
|
575
834
|
attr_accessor max_results: ::Integer
|
@@ -594,6 +853,33 @@ module Aws::IoTManagedIntegrations
|
|
594
853
|
SENSITIVE: []
|
595
854
|
end
|
596
855
|
|
856
|
+
class ListDeviceDiscoveriesRequest
|
857
|
+
attr_accessor next_token: ::String
|
858
|
+
attr_accessor max_results: ::Integer
|
859
|
+
attr_accessor type_filter: ("ZWAVE" | "ZIGBEE" | "CLOUD" | "CUSTOM")
|
860
|
+
attr_accessor status_filter: ("RUNNING" | "SUCCEEDED" | "FAILED" | "TIMED_OUT")
|
861
|
+
SENSITIVE: []
|
862
|
+
end
|
863
|
+
|
864
|
+
class ListDeviceDiscoveriesResponse
|
865
|
+
attr_accessor items: ::Array[Types::DeviceDiscoverySummary]
|
866
|
+
attr_accessor next_token: ::String
|
867
|
+
SENSITIVE: []
|
868
|
+
end
|
869
|
+
|
870
|
+
class ListDiscoveredDevicesRequest
|
871
|
+
attr_accessor identifier: ::String
|
872
|
+
attr_accessor next_token: ::String
|
873
|
+
attr_accessor max_results: ::Integer
|
874
|
+
SENSITIVE: []
|
875
|
+
end
|
876
|
+
|
877
|
+
class ListDiscoveredDevicesResponse
|
878
|
+
attr_accessor items: ::Array[Types::DiscoveredDeviceSummary]
|
879
|
+
attr_accessor next_token: ::String
|
880
|
+
SENSITIVE: []
|
881
|
+
end
|
882
|
+
|
597
883
|
class ListEventLogConfigurationsRequest
|
598
884
|
attr_accessor next_token: ::String
|
599
885
|
attr_accessor max_results: ::Integer
|
@@ -606,6 +892,20 @@ module Aws::IoTManagedIntegrations
|
|
606
892
|
SENSITIVE: []
|
607
893
|
end
|
608
894
|
|
895
|
+
class ListManagedThingAccountAssociationsRequest
|
896
|
+
attr_accessor managed_thing_id: ::String
|
897
|
+
attr_accessor account_association_id: ::String
|
898
|
+
attr_accessor max_results: ::Integer
|
899
|
+
attr_accessor next_token: ::String
|
900
|
+
SENSITIVE: []
|
901
|
+
end
|
902
|
+
|
903
|
+
class ListManagedThingAccountAssociationsResponse
|
904
|
+
attr_accessor items: ::Array[Types::ManagedThingAssociation]
|
905
|
+
attr_accessor next_token: ::String
|
906
|
+
SENSITIVE: []
|
907
|
+
end
|
908
|
+
|
609
909
|
class ListManagedThingSchemasRequest
|
610
910
|
attr_accessor identifier: ::String
|
611
911
|
attr_accessor endpoint_id_filter: ::String
|
@@ -627,11 +927,13 @@ module Aws::IoTManagedIntegrations
|
|
627
927
|
attr_accessor role_filter: ("CONTROLLER" | "DEVICE")
|
628
928
|
attr_accessor parent_controller_identifier_filter: ::String
|
629
929
|
attr_accessor connector_policy_id_filter: ::String
|
930
|
+
attr_accessor connector_destination_id_filter: ::String
|
931
|
+
attr_accessor connector_device_id_filter: ::String
|
630
932
|
attr_accessor serial_number_filter: ::String
|
631
933
|
attr_accessor provisioning_status_filter: ("UNASSOCIATED" | "PRE_ASSOCIATED" | "DISCOVERED" | "ACTIVATED" | "DELETION_FAILED" | "DELETE_IN_PROGRESS" | "ISOLATED" | "DELETED")
|
632
934
|
attr_accessor next_token: ::String
|
633
935
|
attr_accessor max_results: ::Integer
|
634
|
-
SENSITIVE: [:owner_filter, :serial_number_filter]
|
936
|
+
SENSITIVE: [:owner_filter, :connector_device_id_filter, :serial_number_filter]
|
635
937
|
end
|
636
938
|
|
637
939
|
class ListManagedThingsResponse
|
@@ -718,6 +1020,22 @@ module Aws::IoTManagedIntegrations
|
|
718
1020
|
SENSITIVE: []
|
719
1021
|
end
|
720
1022
|
|
1023
|
+
class ListTagsForResourceRequest
|
1024
|
+
attr_accessor resource_arn: ::String
|
1025
|
+
SENSITIVE: []
|
1026
|
+
end
|
1027
|
+
|
1028
|
+
class ListTagsForResourceResponse
|
1029
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
1030
|
+
SENSITIVE: [:tags]
|
1031
|
+
end
|
1032
|
+
|
1033
|
+
class ManagedThingAssociation
|
1034
|
+
attr_accessor managed_thing_id: ::String
|
1035
|
+
attr_accessor account_association_id: ::String
|
1036
|
+
SENSITIVE: []
|
1037
|
+
end
|
1038
|
+
|
721
1039
|
class ManagedThingSchemaListItem
|
722
1040
|
attr_accessor endpoint_id: ::String
|
723
1041
|
attr_accessor capability_id: ::String
|
@@ -733,6 +1051,7 @@ module Aws::IoTManagedIntegrations
|
|
733
1051
|
attr_accessor classification: ::String
|
734
1052
|
attr_accessor connector_device_id: ::String
|
735
1053
|
attr_accessor connector_policy_id: ::String
|
1054
|
+
attr_accessor connector_destination_id: ::String
|
736
1055
|
attr_accessor model: ::String
|
737
1056
|
attr_accessor name: ::String
|
738
1057
|
attr_accessor owner: ::String
|
@@ -747,12 +1066,81 @@ module Aws::IoTManagedIntegrations
|
|
747
1066
|
SENSITIVE: [:brand, :classification, :connector_device_id, :model, :owner, :serial_number]
|
748
1067
|
end
|
749
1068
|
|
1069
|
+
class MatterCapabilityReport
|
1070
|
+
attr_accessor version: ::String
|
1071
|
+
attr_accessor node_id: ::String
|
1072
|
+
attr_accessor endpoints: ::Array[Types::MatterCapabilityReportEndpoint]
|
1073
|
+
SENSITIVE: []
|
1074
|
+
end
|
1075
|
+
|
1076
|
+
class MatterCapabilityReportAttribute
|
1077
|
+
attr_accessor id: ::String
|
1078
|
+
attr_accessor name: ::String
|
1079
|
+
attr_accessor value: untyped
|
1080
|
+
SENSITIVE: []
|
1081
|
+
end
|
1082
|
+
|
1083
|
+
class MatterCapabilityReportCluster
|
1084
|
+
attr_accessor id: ::String
|
1085
|
+
attr_accessor revision: ::Integer
|
1086
|
+
attr_accessor public_id: ::String
|
1087
|
+
attr_accessor name: ::String
|
1088
|
+
attr_accessor spec_version: ::String
|
1089
|
+
attr_accessor attributes: ::Array[Types::MatterCapabilityReportAttribute]
|
1090
|
+
attr_accessor commands: ::Array[::String]
|
1091
|
+
attr_accessor events: ::Array[::String]
|
1092
|
+
attr_accessor feature_map: ::Integer
|
1093
|
+
attr_accessor generated_commands: ::Array[::String]
|
1094
|
+
attr_accessor fabric_index: ::Integer
|
1095
|
+
SENSITIVE: []
|
1096
|
+
end
|
1097
|
+
|
1098
|
+
class MatterCapabilityReportEndpoint
|
1099
|
+
attr_accessor id: ::String
|
1100
|
+
attr_accessor device_types: ::Array[::String]
|
1101
|
+
attr_accessor clusters: ::Array[Types::MatterCapabilityReportCluster]
|
1102
|
+
attr_accessor parts: ::Array[::String]
|
1103
|
+
attr_accessor semantic_tags: ::Array[::String]
|
1104
|
+
attr_accessor client_clusters: ::Array[::String]
|
1105
|
+
SENSITIVE: []
|
1106
|
+
end
|
1107
|
+
|
1108
|
+
class MatterCluster
|
1109
|
+
attr_accessor id: ::String
|
1110
|
+
attr_accessor attributes: untyped
|
1111
|
+
attr_accessor commands: ::Hash[::String, untyped]
|
1112
|
+
attr_accessor events: ::Hash[::String, untyped]
|
1113
|
+
SENSITIVE: [:attributes]
|
1114
|
+
end
|
1115
|
+
|
1116
|
+
class MatterEndpoint
|
1117
|
+
attr_accessor id: ::String
|
1118
|
+
attr_accessor clusters: ::Array[Types::MatterCluster]
|
1119
|
+
SENSITIVE: []
|
1120
|
+
end
|
1121
|
+
|
750
1122
|
class NotificationConfigurationSummary
|
751
|
-
attr_accessor event_type: ("DEVICE_COMMAND" | "DEVICE_COMMAND_REQUEST" | "DEVICE_EVENT" | "DEVICE_LIFE_CYCLE" | "DEVICE_STATE" | "DEVICE_OTA" | "CONNECTOR_ASSOCIATION" | "CONNECTOR_ERROR_REPORT")
|
1123
|
+
attr_accessor event_type: ("DEVICE_COMMAND" | "DEVICE_COMMAND_REQUEST" | "DEVICE_DISCOVERY_STATUS" | "DEVICE_EVENT" | "DEVICE_LIFE_CYCLE" | "DEVICE_STATE" | "DEVICE_OTA" | "CONNECTOR_ASSOCIATION" | "ACCOUNT_ASSOCIATION" | "CONNECTOR_ERROR_REPORT")
|
752
1124
|
attr_accessor destination_name: ::String
|
753
1125
|
SENSITIVE: []
|
754
1126
|
end
|
755
1127
|
|
1128
|
+
class OAuthConfig
|
1129
|
+
attr_accessor auth_url: ::String
|
1130
|
+
attr_accessor token_url: ::String
|
1131
|
+
attr_accessor scope: ::String
|
1132
|
+
attr_accessor token_endpoint_authentication_scheme: ("HTTP_BASIC" | "REQUEST_BODY_CREDENTIALS")
|
1133
|
+
attr_accessor o_auth_complete_redirect_url: ::String
|
1134
|
+
attr_accessor proactive_refresh_token_renewal: Types::ProactiveRefreshTokenRenewal
|
1135
|
+
SENSITIVE: []
|
1136
|
+
end
|
1137
|
+
|
1138
|
+
class OAuthUpdate
|
1139
|
+
attr_accessor o_auth_complete_redirect_url: ::String
|
1140
|
+
attr_accessor proactive_refresh_token_renewal: Types::ProactiveRefreshTokenRenewal
|
1141
|
+
SENSITIVE: []
|
1142
|
+
end
|
1143
|
+
|
756
1144
|
class OtaTaskAbortConfig
|
757
1145
|
attr_accessor abort_config_criteria_list: ::Array[Types::AbortConfigCriteria]
|
758
1146
|
SENSITIVE: []
|
@@ -815,6 +1203,12 @@ module Aws::IoTManagedIntegrations
|
|
815
1203
|
SENSITIVE: []
|
816
1204
|
end
|
817
1205
|
|
1206
|
+
class ProactiveRefreshTokenRenewal
|
1207
|
+
attr_accessor enabled: bool
|
1208
|
+
attr_accessor days_before_renewal: ::Integer
|
1209
|
+
SENSITIVE: []
|
1210
|
+
end
|
1211
|
+
|
818
1212
|
class ProvisioningProfileSummary
|
819
1213
|
attr_accessor name: ::String
|
820
1214
|
attr_accessor id: ::String
|
@@ -859,6 +1253,20 @@ module Aws::IoTManagedIntegrations
|
|
859
1253
|
SENSITIVE: []
|
860
1254
|
end
|
861
1255
|
|
1256
|
+
class RegisterAccountAssociationRequest
|
1257
|
+
attr_accessor managed_thing_id: ::String
|
1258
|
+
attr_accessor account_association_id: ::String
|
1259
|
+
attr_accessor device_discovery_id: ::String
|
1260
|
+
SENSITIVE: []
|
1261
|
+
end
|
1262
|
+
|
1263
|
+
class RegisterAccountAssociationResponse
|
1264
|
+
attr_accessor account_association_id: ::String
|
1265
|
+
attr_accessor device_discovery_id: ::String
|
1266
|
+
attr_accessor managed_thing_id: ::String
|
1267
|
+
SENSITIVE: []
|
1268
|
+
end
|
1269
|
+
|
862
1270
|
class RegisterCustomEndpointRequest < Aws::EmptyStructure
|
863
1271
|
end
|
864
1272
|
|
@@ -874,6 +1282,8 @@ module Aws::IoTManagedIntegrations
|
|
874
1282
|
|
875
1283
|
class ResourceNotFoundException
|
876
1284
|
attr_accessor message: ::String
|
1285
|
+
attr_accessor resource_id: ::String
|
1286
|
+
attr_accessor resource_type: ::String
|
877
1287
|
SENSITIVE: []
|
878
1288
|
end
|
879
1289
|
|
@@ -917,10 +1327,37 @@ module Aws::IoTManagedIntegrations
|
|
917
1327
|
SENSITIVE: []
|
918
1328
|
end
|
919
1329
|
|
1330
|
+
class SecretsManager
|
1331
|
+
attr_accessor arn: ::String
|
1332
|
+
attr_accessor version_id: ::String
|
1333
|
+
SENSITIVE: []
|
1334
|
+
end
|
1335
|
+
|
1336
|
+
class SendConnectorEventRequest
|
1337
|
+
attr_accessor connector_id: ::String
|
1338
|
+
attr_accessor user_id: ::String
|
1339
|
+
attr_accessor operation: ("DEVICE_COMMAND_RESPONSE" | "DEVICE_DISCOVERY" | "DEVICE_EVENT" | "DEVICE_COMMAND_REQUEST")
|
1340
|
+
attr_accessor operation_version: ::String
|
1341
|
+
attr_accessor status_code: ::Integer
|
1342
|
+
attr_accessor message: ::String
|
1343
|
+
attr_accessor device_discovery_id: ::String
|
1344
|
+
attr_accessor connector_device_id: ::String
|
1345
|
+
attr_accessor trace_id: ::String
|
1346
|
+
attr_accessor devices: ::Array[Types::Device]
|
1347
|
+
attr_accessor matter_endpoint: Types::MatterEndpoint
|
1348
|
+
SENSITIVE: [:user_id, :operation_version, :status_code, :message, :connector_device_id]
|
1349
|
+
end
|
1350
|
+
|
1351
|
+
class SendConnectorEventResponse
|
1352
|
+
attr_accessor connector_id: ::String
|
1353
|
+
SENSITIVE: []
|
1354
|
+
end
|
1355
|
+
|
920
1356
|
class SendManagedThingCommandRequest
|
921
1357
|
attr_accessor managed_thing_id: ::String
|
922
1358
|
attr_accessor endpoints: ::Array[Types::CommandEndpoint]
|
923
1359
|
attr_accessor connector_association_id: ::String
|
1360
|
+
attr_accessor account_association_id: ::String
|
924
1361
|
SENSITIVE: []
|
925
1362
|
end
|
926
1363
|
|
@@ -939,10 +1376,22 @@ module Aws::IoTManagedIntegrations
|
|
939
1376
|
SENSITIVE: []
|
940
1377
|
end
|
941
1378
|
|
1379
|
+
class StartAccountAssociationRefreshRequest
|
1380
|
+
attr_accessor account_association_id: ::String
|
1381
|
+
SENSITIVE: []
|
1382
|
+
end
|
1383
|
+
|
1384
|
+
class StartAccountAssociationRefreshResponse
|
1385
|
+
attr_accessor o_auth_authorization_url: ::String
|
1386
|
+
SENSITIVE: [:o_auth_authorization_url]
|
1387
|
+
end
|
1388
|
+
|
942
1389
|
class StartDeviceDiscoveryRequest
|
943
|
-
attr_accessor discovery_type: ("ZWAVE" | "ZIGBEE" | "CLOUD")
|
1390
|
+
attr_accessor discovery_type: ("ZWAVE" | "ZIGBEE" | "CLOUD" | "CUSTOM")
|
1391
|
+
attr_accessor custom_protocol_detail: ::Hash[::String, ::String]
|
944
1392
|
attr_accessor controller_identifier: ::String
|
945
1393
|
attr_accessor connector_association_identifier: ::String
|
1394
|
+
attr_accessor account_association_id: ::String
|
946
1395
|
attr_accessor authentication_material: ::String
|
947
1396
|
attr_accessor authentication_material_type: ("ZWAVE_INSTALL_CODE")
|
948
1397
|
attr_accessor client_token: ::String
|
@@ -970,6 +1419,15 @@ module Aws::IoTManagedIntegrations
|
|
970
1419
|
SENSITIVE: []
|
971
1420
|
end
|
972
1421
|
|
1422
|
+
class TagResourceRequest
|
1423
|
+
attr_accessor resource_arn: ::String
|
1424
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
1425
|
+
SENSITIVE: [:tags]
|
1426
|
+
end
|
1427
|
+
|
1428
|
+
class TagResourceResponse < Aws::EmptyStructure
|
1429
|
+
end
|
1430
|
+
|
973
1431
|
class TaskProcessingDetails
|
974
1432
|
attr_accessor number_of_canceled_things: ::Integer
|
975
1433
|
attr_accessor number_of_failed_things: ::Integer
|
@@ -993,6 +1451,39 @@ module Aws::IoTManagedIntegrations
|
|
993
1451
|
SENSITIVE: []
|
994
1452
|
end
|
995
1453
|
|
1454
|
+
class UntagResourceRequest
|
1455
|
+
attr_accessor resource_arn: ::String
|
1456
|
+
attr_accessor tag_keys: ::Array[::String]
|
1457
|
+
SENSITIVE: []
|
1458
|
+
end
|
1459
|
+
|
1460
|
+
class UntagResourceResponse < Aws::EmptyStructure
|
1461
|
+
end
|
1462
|
+
|
1463
|
+
class UpdateAccountAssociationRequest
|
1464
|
+
attr_accessor account_association_id: ::String
|
1465
|
+
attr_accessor name: ::String
|
1466
|
+
attr_accessor description: ::String
|
1467
|
+
SENSITIVE: []
|
1468
|
+
end
|
1469
|
+
|
1470
|
+
class UpdateCloudConnectorRequest
|
1471
|
+
attr_accessor identifier: ::String
|
1472
|
+
attr_accessor name: ::String
|
1473
|
+
attr_accessor description: ::String
|
1474
|
+
SENSITIVE: []
|
1475
|
+
end
|
1476
|
+
|
1477
|
+
class UpdateConnectorDestinationRequest
|
1478
|
+
attr_accessor identifier: ::String
|
1479
|
+
attr_accessor description: ::String
|
1480
|
+
attr_accessor name: ::String
|
1481
|
+
attr_accessor auth_type: ("OAUTH")
|
1482
|
+
attr_accessor auth_config: Types::AuthConfigUpdate
|
1483
|
+
attr_accessor secrets_manager: Types::SecretsManager
|
1484
|
+
SENSITIVE: []
|
1485
|
+
end
|
1486
|
+
|
996
1487
|
class UpdateDestinationRequest
|
997
1488
|
attr_accessor name: ::String
|
998
1489
|
attr_accessor delivery_destination_arn: ::String
|
@@ -1017,6 +1508,7 @@ module Aws::IoTManagedIntegrations
|
|
1017
1508
|
attr_accessor model: ::String
|
1018
1509
|
attr_accessor name: ::String
|
1019
1510
|
attr_accessor capability_report: Types::CapabilityReport
|
1511
|
+
attr_accessor capability_schemas: ::Array[Types::CapabilitySchemaItem]
|
1020
1512
|
attr_accessor capabilities: ::String
|
1021
1513
|
attr_accessor classification: ::String
|
1022
1514
|
attr_accessor hub_network_mode: ("STANDARD" | "NETWORK_WIDE_EXCLUSION")
|
@@ -1025,7 +1517,7 @@ module Aws::IoTManagedIntegrations
|
|
1025
1517
|
end
|
1026
1518
|
|
1027
1519
|
class UpdateNotificationConfigurationRequest
|
1028
|
-
attr_accessor event_type: ("DEVICE_COMMAND" | "DEVICE_COMMAND_REQUEST" | "DEVICE_EVENT" | "DEVICE_LIFE_CYCLE" | "DEVICE_STATE" | "DEVICE_OTA" | "CONNECTOR_ASSOCIATION" | "CONNECTOR_ERROR_REPORT")
|
1520
|
+
attr_accessor event_type: ("DEVICE_COMMAND" | "DEVICE_COMMAND_REQUEST" | "DEVICE_DISCOVERY_STATUS" | "DEVICE_EVENT" | "DEVICE_LIFE_CYCLE" | "DEVICE_STATE" | "DEVICE_OTA" | "CONNECTOR_ASSOCIATION" | "ACCOUNT_ASSOCIATION" | "CONNECTOR_ERROR_REPORT")
|
1029
1521
|
attr_accessor destination_name: ::String
|
1030
1522
|
SENSITIVE: []
|
1031
1523
|
end
|