aws-sdk-iotmanagedintegrations 1.3.0 → 1.5.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 +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-iotmanagedintegrations/client.rb +1413 -61
- 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 +438 -10
- data/sig/errors.rbs +8 -0
- data/sig/resource.rbs +1 -0
- data/sig/types.rbs +504 -12
- metadata +3 -3
@@ -23,7 +23,7 @@ Aws::Plugins::GlobalConfiguration.add_identifier(:iotmanagedintegrations)
|
|
23
23
|
# structure.
|
24
24
|
#
|
25
25
|
# io_t_managed_integrations = Aws::IoTManagedIntegrations::Client.new
|
26
|
-
# resp = io_t_managed_integrations.
|
26
|
+
# resp = io_t_managed_integrations.create_account_association(params)
|
27
27
|
#
|
28
28
|
# See {Client} for more information.
|
29
29
|
#
|
@@ -54,7 +54,7 @@ module Aws::IoTManagedIntegrations
|
|
54
54
|
autoload :EndpointProvider, 'aws-sdk-iotmanagedintegrations/endpoint_provider'
|
55
55
|
autoload :Endpoints, 'aws-sdk-iotmanagedintegrations/endpoints'
|
56
56
|
|
57
|
-
GEM_VERSION = '1.
|
57
|
+
GEM_VERSION = '1.5.0'
|
58
58
|
|
59
59
|
end
|
60
60
|
|
data/sig/client.rbs
CHANGED
@@ -18,6 +18,7 @@ module Aws
|
|
18
18
|
?account_id: String,
|
19
19
|
?active_endpoint_cache: bool,
|
20
20
|
?adaptive_retry_wait_to_fill: bool,
|
21
|
+
?auth_scheme_preference: Array[String],
|
21
22
|
?client_side_monitoring: bool,
|
22
23
|
?client_side_monitoring_client_id: String,
|
23
24
|
?client_side_monitoring_host: String,
|
@@ -77,6 +78,72 @@ module Aws
|
|
77
78
|
| (?Hash[Symbol, untyped]) -> instance
|
78
79
|
|
79
80
|
|
81
|
+
interface _CreateAccountAssociationResponseSuccess
|
82
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreateAccountAssociationResponse]
|
83
|
+
def o_auth_authorization_url: () -> ::String
|
84
|
+
def account_association_id: () -> ::String
|
85
|
+
def association_state: () -> ("ASSOCIATION_IN_PROGRESS" | "ASSOCIATION_FAILED" | "ASSOCIATION_SUCCEEDED" | "ASSOCIATION_DELETING" | "REFRESH_TOKEN_EXPIRED")
|
86
|
+
def arn: () -> ::String
|
87
|
+
end
|
88
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IoTManagedIntegrations/Client.html#create_account_association-instance_method
|
89
|
+
def create_account_association: (
|
90
|
+
?client_token: ::String,
|
91
|
+
connector_destination_id: ::String,
|
92
|
+
?name: ::String,
|
93
|
+
?description: ::String,
|
94
|
+
?tags: Hash[::String, ::String]
|
95
|
+
) -> _CreateAccountAssociationResponseSuccess
|
96
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateAccountAssociationResponseSuccess
|
97
|
+
|
98
|
+
interface _CreateCloudConnectorResponseSuccess
|
99
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreateCloudConnectorResponse]
|
100
|
+
def id: () -> ::String
|
101
|
+
end
|
102
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IoTManagedIntegrations/Client.html#create_cloud_connector-instance_method
|
103
|
+
def create_cloud_connector: (
|
104
|
+
name: ::String,
|
105
|
+
endpoint_config: {
|
106
|
+
lambda: {
|
107
|
+
arn: ::String
|
108
|
+
}?
|
109
|
+
},
|
110
|
+
?description: ::String,
|
111
|
+
?endpoint_type: ("LAMBDA"),
|
112
|
+
?client_token: ::String
|
113
|
+
) -> _CreateCloudConnectorResponseSuccess
|
114
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateCloudConnectorResponseSuccess
|
115
|
+
|
116
|
+
interface _CreateConnectorDestinationResponseSuccess
|
117
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreateConnectorDestinationResponse]
|
118
|
+
def id: () -> ::String
|
119
|
+
end
|
120
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IoTManagedIntegrations/Client.html#create_connector_destination-instance_method
|
121
|
+
def create_connector_destination: (
|
122
|
+
?name: ::String,
|
123
|
+
?description: ::String,
|
124
|
+
cloud_connector_id: ::String,
|
125
|
+
auth_type: ("OAUTH"),
|
126
|
+
auth_config: {
|
127
|
+
o_auth: {
|
128
|
+
auth_url: ::String,
|
129
|
+
token_url: ::String,
|
130
|
+
scope: ::String?,
|
131
|
+
token_endpoint_authentication_scheme: ("HTTP_BASIC" | "REQUEST_BODY_CREDENTIALS"),
|
132
|
+
o_auth_complete_redirect_url: ::String?,
|
133
|
+
proactive_refresh_token_renewal: {
|
134
|
+
enabled: bool?,
|
135
|
+
days_before_renewal: ::Integer?
|
136
|
+
}?
|
137
|
+
}?
|
138
|
+
},
|
139
|
+
secrets_manager: {
|
140
|
+
arn: ::String,
|
141
|
+
version_id: ::String
|
142
|
+
},
|
143
|
+
?client_token: ::String
|
144
|
+
) -> _CreateConnectorDestinationResponseSuccess
|
145
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateConnectorDestinationResponseSuccess
|
146
|
+
|
80
147
|
interface _CreateCredentialLockerResponseSuccess
|
81
148
|
include ::Seahorse::Client::_ResponseSuccess[Types::CreateCredentialLockerResponse]
|
82
149
|
def id: () -> ::String
|
@@ -132,7 +199,7 @@ module Aws
|
|
132
199
|
?owner: ::String,
|
133
200
|
?credential_locker_id: ::String,
|
134
201
|
authentication_material: ::String,
|
135
|
-
authentication_material_type: ("WIFI_SETUP_QR_BAR_CODE" | "ZWAVE_QR_BAR_CODE" | "ZIGBEE_QR_BAR_CODE"),
|
202
|
+
authentication_material_type: ("CUSTOM_PROTOCOL_QR_BAR_CODE" | "WIFI_SETUP_QR_BAR_CODE" | "ZWAVE_QR_BAR_CODE" | "ZIGBEE_QR_BAR_CODE" | "DISCOVERED_DEVICE"),
|
136
203
|
?serial_number: ::String,
|
137
204
|
?brand: ::String,
|
138
205
|
?model: ::String,
|
@@ -157,6 +224,16 @@ module Aws
|
|
157
224
|
},
|
158
225
|
]
|
159
226
|
},
|
227
|
+
?capability_schemas: Array[
|
228
|
+
{
|
229
|
+
format: ("AWS" | "ZCL" | "CONNECTOR"),
|
230
|
+
capability_id: ::String,
|
231
|
+
extrinsic_id: ::String,
|
232
|
+
extrinsic_version: ::Integer,
|
233
|
+
schema: {
|
234
|
+
}
|
235
|
+
},
|
236
|
+
],
|
160
237
|
?capabilities: ::String,
|
161
238
|
?client_token: ::String,
|
162
239
|
?classification: ::String,
|
@@ -167,11 +244,11 @@ module Aws
|
|
167
244
|
|
168
245
|
interface _CreateNotificationConfigurationResponseSuccess
|
169
246
|
include ::Seahorse::Client::_ResponseSuccess[Types::CreateNotificationConfigurationResponse]
|
170
|
-
def event_type: () -> ("DEVICE_COMMAND" | "DEVICE_COMMAND_REQUEST" | "DEVICE_EVENT" | "DEVICE_LIFE_CYCLE" | "DEVICE_STATE" | "DEVICE_OTA" | "CONNECTOR_ASSOCIATION" | "CONNECTOR_ERROR_REPORT")
|
247
|
+
def 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")
|
171
248
|
end
|
172
249
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IoTManagedIntegrations/Client.html#create_notification_configuration-instance_method
|
173
250
|
def create_notification_configuration: (
|
174
|
-
event_type: ("DEVICE_COMMAND" | "DEVICE_COMMAND_REQUEST" | "DEVICE_EVENT" | "DEVICE_LIFE_CYCLE" | "DEVICE_STATE" | "DEVICE_OTA" | "CONNECTOR_ASSOCIATION" | "CONNECTOR_ERROR_REPORT"),
|
251
|
+
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"),
|
175
252
|
destination_name: ::String,
|
176
253
|
?client_token: ::String,
|
177
254
|
?tags: Hash[::String, ::String]
|
@@ -275,6 +352,24 @@ module Aws
|
|
275
352
|
) -> _CreateProvisioningProfileResponseSuccess
|
276
353
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateProvisioningProfileResponseSuccess
|
277
354
|
|
355
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IoTManagedIntegrations/Client.html#delete_account_association-instance_method
|
356
|
+
def delete_account_association: (
|
357
|
+
account_association_id: ::String
|
358
|
+
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
359
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
360
|
+
|
361
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IoTManagedIntegrations/Client.html#delete_cloud_connector-instance_method
|
362
|
+
def delete_cloud_connector: (
|
363
|
+
identifier: ::String
|
364
|
+
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
365
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
366
|
+
|
367
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IoTManagedIntegrations/Client.html#delete_connector_destination-instance_method
|
368
|
+
def delete_connector_destination: (
|
369
|
+
identifier: ::String
|
370
|
+
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
371
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
372
|
+
|
278
373
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IoTManagedIntegrations/Client.html#delete_credential_locker-instance_method
|
279
374
|
def delete_credential_locker: (
|
280
375
|
identifier: ::String
|
@@ -302,7 +397,7 @@ module Aws
|
|
302
397
|
|
303
398
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IoTManagedIntegrations/Client.html#delete_notification_configuration-instance_method
|
304
399
|
def delete_notification_configuration: (
|
305
|
-
event_type: ("DEVICE_COMMAND" | "DEVICE_COMMAND_REQUEST" | "DEVICE_EVENT" | "DEVICE_LIFE_CYCLE" | "DEVICE_STATE" | "DEVICE_OTA" | "CONNECTOR_ASSOCIATION" | "CONNECTOR_ERROR_REPORT")
|
400
|
+
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")
|
306
401
|
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
307
402
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
308
403
|
|
@@ -324,6 +419,63 @@ module Aws
|
|
324
419
|
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
325
420
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
326
421
|
|
422
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IoTManagedIntegrations/Client.html#deregister_account_association-instance_method
|
423
|
+
def deregister_account_association: (
|
424
|
+
managed_thing_id: ::String,
|
425
|
+
account_association_id: ::String
|
426
|
+
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
427
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
428
|
+
|
429
|
+
interface _GetAccountAssociationResponseSuccess
|
430
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetAccountAssociationResponse]
|
431
|
+
def account_association_id: () -> ::String
|
432
|
+
def association_state: () -> ("ASSOCIATION_IN_PROGRESS" | "ASSOCIATION_FAILED" | "ASSOCIATION_SUCCEEDED" | "ASSOCIATION_DELETING" | "REFRESH_TOKEN_EXPIRED")
|
433
|
+
def error_message: () -> ::String
|
434
|
+
def connector_destination_id: () -> ::String
|
435
|
+
def name: () -> ::String
|
436
|
+
def description: () -> ::String
|
437
|
+
def arn: () -> ::String
|
438
|
+
def o_auth_authorization_url: () -> ::String
|
439
|
+
def tags: () -> ::Hash[::String, ::String]
|
440
|
+
end
|
441
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IoTManagedIntegrations/Client.html#get_account_association-instance_method
|
442
|
+
def get_account_association: (
|
443
|
+
account_association_id: ::String
|
444
|
+
) -> _GetAccountAssociationResponseSuccess
|
445
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetAccountAssociationResponseSuccess
|
446
|
+
|
447
|
+
interface _GetCloudConnectorResponseSuccess
|
448
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetCloudConnectorResponse]
|
449
|
+
def name: () -> ::String
|
450
|
+
def endpoint_config: () -> Types::EndpointConfig
|
451
|
+
def description: () -> ::String
|
452
|
+
def endpoint_type: () -> ("LAMBDA")
|
453
|
+
def id: () -> ::String
|
454
|
+
def type: () -> ("LISTED" | "UNLISTED")
|
455
|
+
end
|
456
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IoTManagedIntegrations/Client.html#get_cloud_connector-instance_method
|
457
|
+
def get_cloud_connector: (
|
458
|
+
identifier: ::String
|
459
|
+
) -> _GetCloudConnectorResponseSuccess
|
460
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetCloudConnectorResponseSuccess
|
461
|
+
|
462
|
+
interface _GetConnectorDestinationResponseSuccess
|
463
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetConnectorDestinationResponse]
|
464
|
+
def name: () -> ::String
|
465
|
+
def description: () -> ::String
|
466
|
+
def cloud_connector_id: () -> ::String
|
467
|
+
def id: () -> ::String
|
468
|
+
def auth_type: () -> ("OAUTH")
|
469
|
+
def auth_config: () -> Types::AuthConfig
|
470
|
+
def secrets_manager: () -> Types::SecretsManager
|
471
|
+
def o_auth_complete_redirect_url: () -> ::String
|
472
|
+
end
|
473
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IoTManagedIntegrations/Client.html#get_connector_destination-instance_method
|
474
|
+
def get_connector_destination: (
|
475
|
+
identifier: ::String
|
476
|
+
) -> _GetConnectorDestinationResponseSuccess
|
477
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetConnectorDestinationResponseSuccess
|
478
|
+
|
327
479
|
interface _GetCredentialLockerResponseSuccess
|
328
480
|
include ::Seahorse::Client::_ResponseSuccess[Types::GetCredentialLockerResponse]
|
329
481
|
def id: () -> ::String
|
@@ -379,11 +531,12 @@ module Aws
|
|
379
531
|
include ::Seahorse::Client::_ResponseSuccess[Types::GetDeviceDiscoveryResponse]
|
380
532
|
def id: () -> ::String
|
381
533
|
def arn: () -> ::String
|
382
|
-
def discovery_type: () -> ("ZWAVE" | "ZIGBEE" | "CLOUD")
|
534
|
+
def discovery_type: () -> ("ZWAVE" | "ZIGBEE" | "CLOUD" | "CUSTOM")
|
383
535
|
def status: () -> ("RUNNING" | "SUCCEEDED" | "FAILED" | "TIMED_OUT")
|
384
536
|
def started_at: () -> ::Time
|
385
537
|
def controller_id: () -> ::String
|
386
538
|
def connector_association_id: () -> ::String
|
539
|
+
def account_association_id: () -> ::String
|
387
540
|
def finished_at: () -> ::Time
|
388
541
|
def tags: () -> ::Hash[::String, ::String]
|
389
542
|
end
|
@@ -432,6 +585,7 @@ module Aws
|
|
432
585
|
def universal_product_code: () -> ::String
|
433
586
|
def international_article_number: () -> ::String
|
434
587
|
def connector_policy_id: () -> ::String
|
588
|
+
def connector_destination_id: () -> ::String
|
435
589
|
def connector_device_id: () -> ::String
|
436
590
|
def device_specific_key: () -> ::String
|
437
591
|
def mac_address: () -> ::String
|
@@ -498,7 +652,7 @@ module Aws
|
|
498
652
|
|
499
653
|
interface _GetNotificationConfigurationResponseSuccess
|
500
654
|
include ::Seahorse::Client::_ResponseSuccess[Types::GetNotificationConfigurationResponse]
|
501
|
-
def event_type: () -> ("DEVICE_COMMAND" | "DEVICE_COMMAND_REQUEST" | "DEVICE_EVENT" | "DEVICE_LIFE_CYCLE" | "DEVICE_STATE" | "DEVICE_OTA" | "CONNECTOR_ASSOCIATION" | "CONNECTOR_ERROR_REPORT")
|
655
|
+
def 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")
|
502
656
|
def destination_name: () -> ::String
|
503
657
|
def created_at: () -> ::Time
|
504
658
|
def updated_at: () -> ::Time
|
@@ -506,7 +660,7 @@ module Aws
|
|
506
660
|
end
|
507
661
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IoTManagedIntegrations/Client.html#get_notification_configuration-instance_method
|
508
662
|
def get_notification_configuration: (
|
509
|
-
event_type: ("DEVICE_COMMAND" | "DEVICE_COMMAND_REQUEST" | "DEVICE_EVENT" | "DEVICE_LIFE_CYCLE" | "DEVICE_STATE" | "DEVICE_OTA" | "CONNECTOR_ASSOCIATION" | "CONNECTOR_ERROR_REPORT")
|
663
|
+
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")
|
510
664
|
) -> _GetNotificationConfigurationResponseSuccess
|
511
665
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetNotificationConfigurationResponseSuccess
|
512
666
|
|
@@ -528,6 +682,7 @@ module Aws
|
|
528
682
|
def ota_scheduling_config: () -> Types::OtaTaskSchedulingConfig
|
529
683
|
def ota_task_execution_retry_config: () -> Types::OtaTaskExecutionRetryConfig
|
530
684
|
def status: () -> ("IN_PROGRESS" | "CANCELED" | "COMPLETED" | "DELETION_IN_PROGRESS" | "SCHEDULED")
|
685
|
+
def tags: () -> ::Hash[::String, ::String]
|
531
686
|
end
|
532
687
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IoTManagedIntegrations/Client.html#get_ota_task-instance_method
|
533
688
|
def get_ota_task: (
|
@@ -593,6 +748,46 @@ module Aws
|
|
593
748
|
) -> _GetSchemaVersionResponseSuccess
|
594
749
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetSchemaVersionResponseSuccess
|
595
750
|
|
751
|
+
interface _ListAccountAssociationsResponseSuccess
|
752
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListAccountAssociationsResponse]
|
753
|
+
def items: () -> ::Array[Types::AccountAssociationItem]
|
754
|
+
def next_token: () -> ::String
|
755
|
+
end
|
756
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IoTManagedIntegrations/Client.html#list_account_associations-instance_method
|
757
|
+
def list_account_associations: (
|
758
|
+
?connector_destination_id: ::String,
|
759
|
+
?max_results: ::Integer,
|
760
|
+
?next_token: ::String
|
761
|
+
) -> _ListAccountAssociationsResponseSuccess
|
762
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListAccountAssociationsResponseSuccess
|
763
|
+
|
764
|
+
interface _ListCloudConnectorsResponseSuccess
|
765
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListCloudConnectorsResponse]
|
766
|
+
def items: () -> ::Array[Types::ConnectorItem]
|
767
|
+
def next_token: () -> ::String
|
768
|
+
end
|
769
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IoTManagedIntegrations/Client.html#list_cloud_connectors-instance_method
|
770
|
+
def list_cloud_connectors: (
|
771
|
+
?type: ("LISTED" | "UNLISTED"),
|
772
|
+
?lambda_arn: ::String,
|
773
|
+
?max_results: ::Integer,
|
774
|
+
?next_token: ::String
|
775
|
+
) -> _ListCloudConnectorsResponseSuccess
|
776
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListCloudConnectorsResponseSuccess
|
777
|
+
|
778
|
+
interface _ListConnectorDestinationsResponseSuccess
|
779
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListConnectorDestinationsResponse]
|
780
|
+
def connector_destination_list: () -> ::Array[Types::ConnectorDestinationSummary]
|
781
|
+
def next_token: () -> ::String
|
782
|
+
end
|
783
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IoTManagedIntegrations/Client.html#list_connector_destinations-instance_method
|
784
|
+
def list_connector_destinations: (
|
785
|
+
?cloud_connector_id: ::String,
|
786
|
+
?next_token: ::String,
|
787
|
+
?max_results: ::Integer
|
788
|
+
) -> _ListConnectorDestinationsResponseSuccess
|
789
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListConnectorDestinationsResponseSuccess
|
790
|
+
|
596
791
|
interface _ListCredentialLockersResponseSuccess
|
597
792
|
include ::Seahorse::Client::_ResponseSuccess[Types::ListCredentialLockersResponse]
|
598
793
|
def items: () -> ::Array[Types::CredentialLockerSummary]
|
@@ -617,6 +812,33 @@ module Aws
|
|
617
812
|
) -> _ListDestinationsResponseSuccess
|
618
813
|
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListDestinationsResponseSuccess
|
619
814
|
|
815
|
+
interface _ListDeviceDiscoveriesResponseSuccess
|
816
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListDeviceDiscoveriesResponse]
|
817
|
+
def items: () -> ::Array[Types::DeviceDiscoverySummary]
|
818
|
+
def next_token: () -> ::String
|
819
|
+
end
|
820
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IoTManagedIntegrations/Client.html#list_device_discoveries-instance_method
|
821
|
+
def list_device_discoveries: (
|
822
|
+
?next_token: ::String,
|
823
|
+
?max_results: ::Integer,
|
824
|
+
?type_filter: ("ZWAVE" | "ZIGBEE" | "CLOUD" | "CUSTOM"),
|
825
|
+
?status_filter: ("RUNNING" | "SUCCEEDED" | "FAILED" | "TIMED_OUT")
|
826
|
+
) -> _ListDeviceDiscoveriesResponseSuccess
|
827
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListDeviceDiscoveriesResponseSuccess
|
828
|
+
|
829
|
+
interface _ListDiscoveredDevicesResponseSuccess
|
830
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListDiscoveredDevicesResponse]
|
831
|
+
def items: () -> ::Array[Types::DiscoveredDeviceSummary]
|
832
|
+
def next_token: () -> ::String
|
833
|
+
end
|
834
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IoTManagedIntegrations/Client.html#list_discovered_devices-instance_method
|
835
|
+
def list_discovered_devices: (
|
836
|
+
identifier: ::String,
|
837
|
+
?next_token: ::String,
|
838
|
+
?max_results: ::Integer
|
839
|
+
) -> _ListDiscoveredDevicesResponseSuccess
|
840
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListDiscoveredDevicesResponseSuccess
|
841
|
+
|
620
842
|
interface _ListEventLogConfigurationsResponseSuccess
|
621
843
|
include ::Seahorse::Client::_ResponseSuccess[Types::ListEventLogConfigurationsResponse]
|
622
844
|
def event_log_configuration_list: () -> ::Array[Types::EventLogConfigurationSummary]
|
@@ -629,6 +851,20 @@ module Aws
|
|
629
851
|
) -> _ListEventLogConfigurationsResponseSuccess
|
630
852
|
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListEventLogConfigurationsResponseSuccess
|
631
853
|
|
854
|
+
interface _ListManagedThingAccountAssociationsResponseSuccess
|
855
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListManagedThingAccountAssociationsResponse]
|
856
|
+
def items: () -> ::Array[Types::ManagedThingAssociation]
|
857
|
+
def next_token: () -> ::String
|
858
|
+
end
|
859
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IoTManagedIntegrations/Client.html#list_managed_thing_account_associations-instance_method
|
860
|
+
def list_managed_thing_account_associations: (
|
861
|
+
?managed_thing_id: ::String,
|
862
|
+
?account_association_id: ::String,
|
863
|
+
?max_results: ::Integer,
|
864
|
+
?next_token: ::String
|
865
|
+
) -> _ListManagedThingAccountAssociationsResponseSuccess
|
866
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListManagedThingAccountAssociationsResponseSuccess
|
867
|
+
|
632
868
|
interface _ListManagedThingSchemasResponseSuccess
|
633
869
|
include ::Seahorse::Client::_ResponseSuccess[Types::ListManagedThingSchemasResponse]
|
634
870
|
def items: () -> ::Array[Types::ManagedThingSchemaListItem]
|
@@ -656,6 +892,8 @@ module Aws
|
|
656
892
|
?role_filter: ("CONTROLLER" | "DEVICE"),
|
657
893
|
?parent_controller_identifier_filter: ::String,
|
658
894
|
?connector_policy_id_filter: ::String,
|
895
|
+
?connector_destination_id_filter: ::String,
|
896
|
+
?connector_device_id_filter: ::String,
|
659
897
|
?serial_number_filter: ::String,
|
660
898
|
?provisioning_status_filter: ("UNASSOCIATED" | "PRE_ASSOCIATED" | "DISCOVERED" | "ACTIVATED" | "DELETION_FAILED" | "DELETE_IN_PROGRESS" | "ISOLATED" | "DELETED"),
|
661
899
|
?next_token: ::String,
|
@@ -741,6 +979,16 @@ module Aws
|
|
741
979
|
) -> _ListSchemaVersionsResponseSuccess
|
742
980
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListSchemaVersionsResponseSuccess
|
743
981
|
|
982
|
+
interface _ListTagsForResourceResponseSuccess
|
983
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListTagsForResourceResponse]
|
984
|
+
def tags: () -> ::Hash[::String, ::String]
|
985
|
+
end
|
986
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IoTManagedIntegrations/Client.html#list_tags_for_resource-instance_method
|
987
|
+
def list_tags_for_resource: (
|
988
|
+
resource_arn: ::String
|
989
|
+
) -> _ListTagsForResourceResponseSuccess
|
990
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListTagsForResourceResponseSuccess
|
991
|
+
|
744
992
|
interface _PutDefaultEncryptionConfigurationResponseSuccess
|
745
993
|
include ::Seahorse::Client::_ResponseSuccess[Types::PutDefaultEncryptionConfigurationResponse]
|
746
994
|
def configuration_status: () -> Types::ConfigurationStatus
|
@@ -780,6 +1028,20 @@ module Aws
|
|
780
1028
|
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
781
1029
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
782
1030
|
|
1031
|
+
interface _RegisterAccountAssociationResponseSuccess
|
1032
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::RegisterAccountAssociationResponse]
|
1033
|
+
def account_association_id: () -> ::String
|
1034
|
+
def device_discovery_id: () -> ::String
|
1035
|
+
def managed_thing_id: () -> ::String
|
1036
|
+
end
|
1037
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IoTManagedIntegrations/Client.html#register_account_association-instance_method
|
1038
|
+
def register_account_association: (
|
1039
|
+
managed_thing_id: ::String,
|
1040
|
+
account_association_id: ::String,
|
1041
|
+
device_discovery_id: ::String
|
1042
|
+
) -> _RegisterAccountAssociationResponseSuccess
|
1043
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _RegisterAccountAssociationResponseSuccess
|
1044
|
+
|
783
1045
|
interface _RegisterCustomEndpointResponseSuccess
|
784
1046
|
include ::Seahorse::Client::_ResponseSuccess[Types::RegisterCustomEndpointResponse]
|
785
1047
|
def endpoint_address: () -> ::String
|
@@ -795,6 +1057,91 @@ module Aws
|
|
795
1057
|
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
796
1058
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
797
1059
|
|
1060
|
+
interface _SendConnectorEventResponseSuccess
|
1061
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::SendConnectorEventResponse]
|
1062
|
+
def connector_id: () -> ::String
|
1063
|
+
end
|
1064
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IoTManagedIntegrations/Client.html#send_connector_event-instance_method
|
1065
|
+
def send_connector_event: (
|
1066
|
+
connector_id: ::String,
|
1067
|
+
?user_id: ::String,
|
1068
|
+
operation: ("DEVICE_COMMAND_RESPONSE" | "DEVICE_DISCOVERY" | "DEVICE_EVENT" | "DEVICE_COMMAND_REQUEST"),
|
1069
|
+
?operation_version: ::String,
|
1070
|
+
?status_code: ::Integer,
|
1071
|
+
?message: ::String,
|
1072
|
+
?device_discovery_id: ::String,
|
1073
|
+
?connector_device_id: ::String,
|
1074
|
+
?trace_id: ::String,
|
1075
|
+
?devices: Array[
|
1076
|
+
{
|
1077
|
+
connector_device_id: ::String,
|
1078
|
+
connector_device_name: ::String?,
|
1079
|
+
capability_report: {
|
1080
|
+
version: ::String,
|
1081
|
+
node_id: ::String?,
|
1082
|
+
endpoints: Array[
|
1083
|
+
{
|
1084
|
+
id: ::String,
|
1085
|
+
device_types: Array[::String],
|
1086
|
+
clusters: Array[
|
1087
|
+
{
|
1088
|
+
id: ::String,
|
1089
|
+
revision: ::Integer,
|
1090
|
+
public_id: ::String?,
|
1091
|
+
name: ::String?,
|
1092
|
+
spec_version: ::String?,
|
1093
|
+
attributes: Array[
|
1094
|
+
{
|
1095
|
+
id: ::String?,
|
1096
|
+
name: ::String?,
|
1097
|
+
value: {
|
1098
|
+
}?
|
1099
|
+
},
|
1100
|
+
]?,
|
1101
|
+
commands: Array[::String]?,
|
1102
|
+
events: Array[::String]?,
|
1103
|
+
feature_map: ::Integer?,
|
1104
|
+
generated_commands: Array[::String]?,
|
1105
|
+
fabric_index: ::Integer?
|
1106
|
+
},
|
1107
|
+
],
|
1108
|
+
parts: Array[::String]?,
|
1109
|
+
semantic_tags: Array[::String]?,
|
1110
|
+
client_clusters: Array[::String]?
|
1111
|
+
},
|
1112
|
+
]
|
1113
|
+
},
|
1114
|
+
capability_schemas: Array[
|
1115
|
+
{
|
1116
|
+
format: ("AWS" | "ZCL" | "CONNECTOR"),
|
1117
|
+
capability_id: ::String,
|
1118
|
+
extrinsic_id: ::String,
|
1119
|
+
extrinsic_version: ::Integer,
|
1120
|
+
schema: {
|
1121
|
+
}
|
1122
|
+
},
|
1123
|
+
]?,
|
1124
|
+
device_metadata: {
|
1125
|
+
}?
|
1126
|
+
},
|
1127
|
+
],
|
1128
|
+
?matter_endpoint: {
|
1129
|
+
id: ::String?,
|
1130
|
+
clusters: Array[
|
1131
|
+
{
|
1132
|
+
id: ::String?,
|
1133
|
+
attributes: {
|
1134
|
+
}?,
|
1135
|
+
commands: Hash[::String, {
|
1136
|
+
}]?,
|
1137
|
+
events: Hash[::String, {
|
1138
|
+
}]?
|
1139
|
+
},
|
1140
|
+
]?
|
1141
|
+
}
|
1142
|
+
) -> _SendConnectorEventResponseSuccess
|
1143
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _SendConnectorEventResponseSuccess
|
1144
|
+
|
798
1145
|
interface _SendManagedThingCommandResponseSuccess
|
799
1146
|
include ::Seahorse::Client::_ResponseSuccess[Types::SendManagedThingCommandResponse]
|
800
1147
|
def trace_id: () -> ::String
|
@@ -823,10 +1170,21 @@ module Aws
|
|
823
1170
|
]
|
824
1171
|
},
|
825
1172
|
],
|
826
|
-
?connector_association_id: ::String
|
1173
|
+
?connector_association_id: ::String,
|
1174
|
+
?account_association_id: ::String
|
827
1175
|
) -> _SendManagedThingCommandResponseSuccess
|
828
1176
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _SendManagedThingCommandResponseSuccess
|
829
1177
|
|
1178
|
+
interface _StartAccountAssociationRefreshResponseSuccess
|
1179
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::StartAccountAssociationRefreshResponse]
|
1180
|
+
def o_auth_authorization_url: () -> ::String
|
1181
|
+
end
|
1182
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IoTManagedIntegrations/Client.html#start_account_association_refresh-instance_method
|
1183
|
+
def start_account_association_refresh: (
|
1184
|
+
account_association_id: ::String
|
1185
|
+
) -> _StartAccountAssociationRefreshResponseSuccess
|
1186
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartAccountAssociationRefreshResponseSuccess
|
1187
|
+
|
830
1188
|
interface _StartDeviceDiscoveryResponseSuccess
|
831
1189
|
include ::Seahorse::Client::_ResponseSuccess[Types::StartDeviceDiscoveryResponse]
|
832
1190
|
def id: () -> ::String
|
@@ -834,9 +1192,11 @@ module Aws
|
|
834
1192
|
end
|
835
1193
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IoTManagedIntegrations/Client.html#start_device_discovery-instance_method
|
836
1194
|
def start_device_discovery: (
|
837
|
-
discovery_type: ("ZWAVE" | "ZIGBEE" | "CLOUD"),
|
1195
|
+
discovery_type: ("ZWAVE" | "ZIGBEE" | "CLOUD" | "CUSTOM"),
|
1196
|
+
?custom_protocol_detail: Hash[::String, ::String],
|
838
1197
|
?controller_identifier: ::String,
|
839
1198
|
?connector_association_identifier: ::String,
|
1199
|
+
?account_association_id: ::String,
|
840
1200
|
?authentication_material: ::String,
|
841
1201
|
?authentication_material_type: ("ZWAVE_INSTALL_CODE"),
|
842
1202
|
?client_token: ::String,
|
@@ -844,6 +1204,64 @@ module Aws
|
|
844
1204
|
) -> _StartDeviceDiscoveryResponseSuccess
|
845
1205
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartDeviceDiscoveryResponseSuccess
|
846
1206
|
|
1207
|
+
interface _TagResourceResponseSuccess
|
1208
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::TagResourceResponse]
|
1209
|
+
end
|
1210
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IoTManagedIntegrations/Client.html#tag_resource-instance_method
|
1211
|
+
def tag_resource: (
|
1212
|
+
resource_arn: ::String,
|
1213
|
+
tags: Hash[::String, ::String]
|
1214
|
+
) -> _TagResourceResponseSuccess
|
1215
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _TagResourceResponseSuccess
|
1216
|
+
|
1217
|
+
interface _UntagResourceResponseSuccess
|
1218
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UntagResourceResponse]
|
1219
|
+
end
|
1220
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IoTManagedIntegrations/Client.html#untag_resource-instance_method
|
1221
|
+
def untag_resource: (
|
1222
|
+
resource_arn: ::String,
|
1223
|
+
tag_keys: Array[::String]
|
1224
|
+
) -> _UntagResourceResponseSuccess
|
1225
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UntagResourceResponseSuccess
|
1226
|
+
|
1227
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IoTManagedIntegrations/Client.html#update_account_association-instance_method
|
1228
|
+
def update_account_association: (
|
1229
|
+
account_association_id: ::String,
|
1230
|
+
?name: ::String,
|
1231
|
+
?description: ::String
|
1232
|
+
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
1233
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
1234
|
+
|
1235
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IoTManagedIntegrations/Client.html#update_cloud_connector-instance_method
|
1236
|
+
def update_cloud_connector: (
|
1237
|
+
identifier: ::String,
|
1238
|
+
?name: ::String,
|
1239
|
+
?description: ::String
|
1240
|
+
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
1241
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
1242
|
+
|
1243
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IoTManagedIntegrations/Client.html#update_connector_destination-instance_method
|
1244
|
+
def update_connector_destination: (
|
1245
|
+
identifier: ::String,
|
1246
|
+
?description: ::String,
|
1247
|
+
?name: ::String,
|
1248
|
+
?auth_type: ("OAUTH"),
|
1249
|
+
?auth_config: {
|
1250
|
+
o_auth_update: {
|
1251
|
+
o_auth_complete_redirect_url: ::String?,
|
1252
|
+
proactive_refresh_token_renewal: {
|
1253
|
+
enabled: bool?,
|
1254
|
+
days_before_renewal: ::Integer?
|
1255
|
+
}?
|
1256
|
+
}?
|
1257
|
+
},
|
1258
|
+
?secrets_manager: {
|
1259
|
+
arn: ::String,
|
1260
|
+
version_id: ::String
|
1261
|
+
}
|
1262
|
+
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
1263
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
1264
|
+
|
847
1265
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IoTManagedIntegrations/Client.html#update_destination-instance_method
|
848
1266
|
def update_destination: (
|
849
1267
|
name: ::String,
|
@@ -890,6 +1308,16 @@ module Aws
|
|
890
1308
|
},
|
891
1309
|
]
|
892
1310
|
},
|
1311
|
+
?capability_schemas: Array[
|
1312
|
+
{
|
1313
|
+
format: ("AWS" | "ZCL" | "CONNECTOR"),
|
1314
|
+
capability_id: ::String,
|
1315
|
+
extrinsic_id: ::String,
|
1316
|
+
extrinsic_version: ::Integer,
|
1317
|
+
schema: {
|
1318
|
+
}
|
1319
|
+
},
|
1320
|
+
],
|
893
1321
|
?capabilities: ::String,
|
894
1322
|
?classification: ::String,
|
895
1323
|
?hub_network_mode: ("STANDARD" | "NETWORK_WIDE_EXCLUSION"),
|
@@ -899,7 +1327,7 @@ module Aws
|
|
899
1327
|
|
900
1328
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IoTManagedIntegrations/Client.html#update_notification_configuration-instance_method
|
901
1329
|
def update_notification_configuration: (
|
902
|
-
event_type: ("DEVICE_COMMAND" | "DEVICE_COMMAND_REQUEST" | "DEVICE_EVENT" | "DEVICE_LIFE_CYCLE" | "DEVICE_STATE" | "DEVICE_OTA" | "CONNECTOR_ASSOCIATION" | "CONNECTOR_ERROR_REPORT"),
|
1330
|
+
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"),
|
903
1331
|
destination_name: ::String
|
904
1332
|
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
905
1333
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|