aws-sdk-iotmanagedintegrations 1.17.0 → 1.18.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 +65 -14
- data/lib/aws-sdk-iotmanagedintegrations/client_api.rb +36 -6
- data/lib/aws-sdk-iotmanagedintegrations/types.rb +112 -18
- data/lib/aws-sdk-iotmanagedintegrations.rb +1 -1
- data/sig/client.rbs +40 -5
- data/sig/types.rbs +29 -5
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: a7dcfb0de127540ea58ec6d485cabc5e307d967484c5f5cc2f53dd5b86c92bd7
|
|
4
|
+
data.tar.gz: 3549c4772ba852fbee0856bda4cc472fe10f41ff396b3a83f44ec3c8aba32460
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 57f605b2c4ac0b323677e62e790f74aee6700c64a4df0bbfbd1a8b6d3b6c6fe125501d833b614d887f848b71797bfb0fd32efb04410ac010e1639e753b4b3323
|
|
7
|
+
data.tar.gz: 83281bc42a319dda91c8ed60f9512c1de6fcf23e41b258eb2eec5cb5252ea8111cc29a840e88c84b8abf7ad0ad46572e144b887b226b28430e8b97ccd1961421
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.18.0 (2026-02-06)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - Adding support for Custom(General) Authorization in managed integrations for AWS IoT Device Management cloud connectors.
|
|
8
|
+
|
|
4
9
|
1.17.0 (2026-01-16)
|
|
5
10
|
------------------
|
|
6
11
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.18.0
|
|
@@ -500,6 +500,9 @@ module Aws::IoTManagedIntegrations
|
|
|
500
500
|
# A set of key/value pairs that are used to manage the account
|
|
501
501
|
# association.
|
|
502
502
|
#
|
|
503
|
+
# @option params [Types::GeneralAuthorizationName] :general_authorization
|
|
504
|
+
# The General Authorization reference by authorization material name.
|
|
505
|
+
#
|
|
503
506
|
# @return [Types::CreateAccountAssociationResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
504
507
|
#
|
|
505
508
|
# * {Types::CreateAccountAssociationResponse#o_auth_authorization_url #o_auth_authorization_url} => String
|
|
@@ -517,6 +520,9 @@ module Aws::IoTManagedIntegrations
|
|
|
517
520
|
# tags: {
|
|
518
521
|
# "TagKey" => "TagValue",
|
|
519
522
|
# },
|
|
523
|
+
# general_authorization: {
|
|
524
|
+
# auth_material_name: "AuthMaterialName",
|
|
525
|
+
# },
|
|
520
526
|
# })
|
|
521
527
|
#
|
|
522
528
|
# @example Response structure
|
|
@@ -649,7 +655,7 @@ module Aws::IoTManagedIntegrations
|
|
|
649
655
|
# @option params [required, String] :cloud_connector_id
|
|
650
656
|
# The identifier of the C2C connector.
|
|
651
657
|
#
|
|
652
|
-
# @option params [
|
|
658
|
+
# @option params [String] :auth_type
|
|
653
659
|
# The authentication type used for the connector destination, which
|
|
654
660
|
# determines how credentials and access are managed.
|
|
655
661
|
#
|
|
@@ -658,7 +664,7 @@ module Aws::IoTManagedIntegrations
|
|
|
658
664
|
# destination, including OAuth settings and other authentication
|
|
659
665
|
# parameters.
|
|
660
666
|
#
|
|
661
|
-
# @option params [
|
|
667
|
+
# @option params [Types::SecretsManager] :secrets_manager
|
|
662
668
|
# The AWS Secrets Manager configuration used to securely store and
|
|
663
669
|
# manage sensitive information for the connector destination.
|
|
664
670
|
#
|
|
@@ -681,7 +687,7 @@ module Aws::IoTManagedIntegrations
|
|
|
681
687
|
# name: "ConnectorDestinationName",
|
|
682
688
|
# description: "ConnectorDestinationDescription",
|
|
683
689
|
# cloud_connector_id: "CloudConnectorId", # required
|
|
684
|
-
# auth_type: "OAUTH", #
|
|
690
|
+
# auth_type: "OAUTH", # accepts OAUTH
|
|
685
691
|
# auth_config: { # required
|
|
686
692
|
# o_auth: {
|
|
687
693
|
# auth_url: "AuthUrl", # required
|
|
@@ -694,8 +700,17 @@ module Aws::IoTManagedIntegrations
|
|
|
694
700
|
# days_before_renewal: 1,
|
|
695
701
|
# },
|
|
696
702
|
# },
|
|
703
|
+
# general_authorization: [
|
|
704
|
+
# {
|
|
705
|
+
# secrets_manager: { # required
|
|
706
|
+
# arn: "SecretsManagerArn", # required
|
|
707
|
+
# version_id: "SecretsManagerVersionId", # required
|
|
708
|
+
# },
|
|
709
|
+
# auth_material_name: "AuthMaterialName", # required
|
|
710
|
+
# },
|
|
711
|
+
# ],
|
|
697
712
|
# },
|
|
698
|
-
# secrets_manager: {
|
|
713
|
+
# secrets_manager: {
|
|
699
714
|
# arn: "SecretsManagerArn", # required
|
|
700
715
|
# version_id: "SecretsManagerVersionId", # required
|
|
701
716
|
# },
|
|
@@ -888,7 +903,7 @@ module Aws::IoTManagedIntegrations
|
|
|
888
903
|
#
|
|
889
904
|
# @option params [required, String] :authentication_material
|
|
890
905
|
# The authentication material defining the device connectivity setup
|
|
891
|
-
# requests. The
|
|
906
|
+
# requests. The authorization materials used are the device bar code.
|
|
892
907
|
#
|
|
893
908
|
# @option params [required, String] :authentication_material_type
|
|
894
909
|
# The type of authentication material used for device connectivity setup
|
|
@@ -961,7 +976,7 @@ module Aws::IoTManagedIntegrations
|
|
|
961
976
|
# owner: "Owner",
|
|
962
977
|
# credential_locker_id: "CredentialLockerId",
|
|
963
978
|
# authentication_material: "AuthMaterialString", # required
|
|
964
|
-
# authentication_material_type: "CUSTOM_PROTOCOL_QR_BAR_CODE", # required, accepts CUSTOM_PROTOCOL_QR_BAR_CODE, WIFI_SETUP_QR_BAR_CODE, ZWAVE_QR_BAR_CODE, ZIGBEE_QR_BAR_CODE, DISCOVERED_DEVICE
|
|
979
|
+
# authentication_material_type: "CUSTOM_PROTOCOL_QR_BAR_CODE", # required, accepts CUSTOM_PROTOCOL_QR_BAR_CODE, WIFI_SETUP_QR_BAR_CODE, ZWAVE_QR_BAR_CODE, ZIGBEE_QR_BAR_CODE, DISCOVERED_DEVICE, PRE_ONBOARDED_CLOUD
|
|
965
980
|
# wi_fi_simple_setup_configuration: {
|
|
966
981
|
# enable_as_provisioner: false,
|
|
967
982
|
# enable_as_provisionee: false,
|
|
@@ -1258,6 +1273,9 @@ module Aws::IoTManagedIntegrations
|
|
|
1258
1273
|
# @option params [String] :ca_certificate
|
|
1259
1274
|
# The id of the certificate authority (CA) certificate.
|
|
1260
1275
|
#
|
|
1276
|
+
# @option params [String] :claim_certificate
|
|
1277
|
+
# The claim certificate.
|
|
1278
|
+
#
|
|
1261
1279
|
# @option params [String] :name
|
|
1262
1280
|
# The name of the provisioning template.
|
|
1263
1281
|
#
|
|
@@ -1288,6 +1306,7 @@ module Aws::IoTManagedIntegrations
|
|
|
1288
1306
|
# resp = client.create_provisioning_profile({
|
|
1289
1307
|
# provisioning_type: "FLEET_PROVISIONING", # required, accepts FLEET_PROVISIONING, JITR
|
|
1290
1308
|
# ca_certificate: "CaCertificate",
|
|
1309
|
+
# claim_certificate: "ClaimCertificate",
|
|
1291
1310
|
# name: "ProvisioningProfileName",
|
|
1292
1311
|
# client_token: "ClientToken",
|
|
1293
1312
|
# tags: {
|
|
@@ -1600,6 +1619,7 @@ module Aws::IoTManagedIntegrations
|
|
|
1600
1619
|
# * {Types::GetAccountAssociationResponse#arn #arn} => String
|
|
1601
1620
|
# * {Types::GetAccountAssociationResponse#o_auth_authorization_url #o_auth_authorization_url} => String
|
|
1602
1621
|
# * {Types::GetAccountAssociationResponse#tags #tags} => Hash<String,String>
|
|
1622
|
+
# * {Types::GetAccountAssociationResponse#general_authorization #general_authorization} => Types::GeneralAuthorizationName
|
|
1603
1623
|
#
|
|
1604
1624
|
# @example Request syntax with placeholder values
|
|
1605
1625
|
#
|
|
@@ -1619,6 +1639,7 @@ module Aws::IoTManagedIntegrations
|
|
|
1619
1639
|
# resp.o_auth_authorization_url #=> String
|
|
1620
1640
|
# resp.tags #=> Hash
|
|
1621
1641
|
# resp.tags["TagKey"] #=> String
|
|
1642
|
+
# resp.general_authorization.auth_material_name #=> String
|
|
1622
1643
|
#
|
|
1623
1644
|
# @overload get_account_association(params = {})
|
|
1624
1645
|
# @param [Hash] params ({})
|
|
@@ -1741,6 +1762,10 @@ module Aws::IoTManagedIntegrations
|
|
|
1741
1762
|
# resp.auth_config.o_auth.o_auth_complete_redirect_url #=> String
|
|
1742
1763
|
# resp.auth_config.o_auth.proactive_refresh_token_renewal.enabled #=> Boolean
|
|
1743
1764
|
# resp.auth_config.o_auth.proactive_refresh_token_renewal.days_before_renewal #=> Integer
|
|
1765
|
+
# resp.auth_config.general_authorization #=> Array
|
|
1766
|
+
# resp.auth_config.general_authorization[0].secrets_manager.arn #=> String
|
|
1767
|
+
# resp.auth_config.general_authorization[0].secrets_manager.version_id #=> String
|
|
1768
|
+
# resp.auth_config.general_authorization[0].auth_material_name #=> String
|
|
1744
1769
|
# resp.secrets_manager.arn #=> String
|
|
1745
1770
|
# resp.secrets_manager.version_id #=> String
|
|
1746
1771
|
# resp.o_auth_complete_redirect_url #=> String
|
|
@@ -2948,6 +2973,7 @@ module Aws::IoTManagedIntegrations
|
|
|
2948
2973
|
# resp.items #=> Array
|
|
2949
2974
|
# resp.items[0].managed_thing_id #=> String
|
|
2950
2975
|
# resp.items[0].account_association_id #=> String
|
|
2976
|
+
# resp.items[0].managed_thing_association_status #=> String, one of "PRE_ASSOCIATED", "ASSOCIATED"
|
|
2951
2977
|
# resp.next_token #=> String
|
|
2952
2978
|
#
|
|
2953
2979
|
# @overload list_managed_thing_account_associations(params = {})
|
|
@@ -3409,10 +3435,10 @@ module Aws::IoTManagedIntegrations
|
|
|
3409
3435
|
req.send_request(options)
|
|
3410
3436
|
end
|
|
3411
3437
|
|
|
3412
|
-
#
|
|
3438
|
+
# Lists the tags for a specified resource.
|
|
3413
3439
|
#
|
|
3414
3440
|
# @option params [required, String] :resource_arn
|
|
3415
|
-
# The ARN of the resource for which to list tags.
|
|
3441
|
+
# The Amazon Resource Name (ARN) of the resource for which to list tags.
|
|
3416
3442
|
#
|
|
3417
3443
|
# @return [Types::ListTagsForResourceResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
3418
3444
|
#
|
|
@@ -3919,6 +3945,9 @@ module Aws::IoTManagedIntegrations
|
|
|
3919
3945
|
# A set of key/value pairs that are used to manage the device discovery
|
|
3920
3946
|
# request.
|
|
3921
3947
|
#
|
|
3948
|
+
# @option params [Array<String>] :connector_device_id_list
|
|
3949
|
+
# Used as a filter for PLA discoveries.
|
|
3950
|
+
#
|
|
3922
3951
|
# @option params [String] :protocol
|
|
3923
3952
|
# The protocol type for capability rediscovery (ZWAVE, ZIGBEE, or
|
|
3924
3953
|
# CUSTOM).
|
|
@@ -3957,6 +3986,7 @@ module Aws::IoTManagedIntegrations
|
|
|
3957
3986
|
# tags: {
|
|
3958
3987
|
# "TagKey" => "TagValue",
|
|
3959
3988
|
# },
|
|
3989
|
+
# connector_device_id_list: ["ConnectorDeviceId"],
|
|
3960
3990
|
# protocol: "ZWAVE", # accepts ZWAVE, ZIGBEE, CUSTOM
|
|
3961
3991
|
# end_device_identifier: "ManagedThingId",
|
|
3962
3992
|
# })
|
|
@@ -3973,13 +4003,13 @@ module Aws::IoTManagedIntegrations
|
|
|
3973
4003
|
req.send_request(options)
|
|
3974
4004
|
end
|
|
3975
4005
|
|
|
3976
|
-
#
|
|
4006
|
+
# Adds tags to a specified resource.
|
|
3977
4007
|
#
|
|
3978
4008
|
# @option params [required, String] :resource_arn
|
|
3979
|
-
# The ARN of the resource to which to add tags.
|
|
4009
|
+
# The Amazon Resource Name (ARN) of the resource to which to add tags.
|
|
3980
4010
|
#
|
|
3981
4011
|
# @option params [required, Hash<String,String>] :tags
|
|
3982
|
-
# A set of key/value pairs that are used to manage the resource
|
|
4012
|
+
# A set of key/value pairs that are used to manage the resource.
|
|
3983
4013
|
#
|
|
3984
4014
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
|
3985
4015
|
#
|
|
@@ -3999,10 +4029,11 @@ module Aws::IoTManagedIntegrations
|
|
|
3999
4029
|
req.send_request(options)
|
|
4000
4030
|
end
|
|
4001
4031
|
|
|
4002
|
-
#
|
|
4032
|
+
# Removes tags from a specified resource.
|
|
4003
4033
|
#
|
|
4004
4034
|
# @option params [required, String] :resource_arn
|
|
4005
|
-
# The ARN of the resource
|
|
4035
|
+
# The Amazon Resource Name (ARN) of the resource from which to remove
|
|
4036
|
+
# tags.
|
|
4006
4037
|
#
|
|
4007
4038
|
# @option params [required, Array<String>] :tag_keys
|
|
4008
4039
|
# A list of tag keys to remove from the resource.
|
|
@@ -4133,6 +4164,26 @@ module Aws::IoTManagedIntegrations
|
|
|
4133
4164
|
# days_before_renewal: 1,
|
|
4134
4165
|
# },
|
|
4135
4166
|
# },
|
|
4167
|
+
# general_authorization_update: {
|
|
4168
|
+
# auth_materials_to_add: [
|
|
4169
|
+
# {
|
|
4170
|
+
# secrets_manager: { # required
|
|
4171
|
+
# arn: "SecretsManagerArn", # required
|
|
4172
|
+
# version_id: "SecretsManagerVersionId", # required
|
|
4173
|
+
# },
|
|
4174
|
+
# auth_material_name: "AuthMaterialName", # required
|
|
4175
|
+
# },
|
|
4176
|
+
# ],
|
|
4177
|
+
# auth_materials_to_update: [
|
|
4178
|
+
# {
|
|
4179
|
+
# secrets_manager: { # required
|
|
4180
|
+
# arn: "SecretsManagerArn", # required
|
|
4181
|
+
# version_id: "SecretsManagerVersionId", # required
|
|
4182
|
+
# },
|
|
4183
|
+
# auth_material_name: "AuthMaterialName", # required
|
|
4184
|
+
# },
|
|
4185
|
+
# ],
|
|
4186
|
+
# },
|
|
4136
4187
|
# },
|
|
4137
4188
|
# secrets_manager: {
|
|
4138
4189
|
# arn: "SecretsManagerArn", # required
|
|
@@ -4389,7 +4440,7 @@ module Aws::IoTManagedIntegrations
|
|
|
4389
4440
|
tracer: tracer
|
|
4390
4441
|
)
|
|
4391
4442
|
context[:gem_name] = 'aws-sdk-iotmanagedintegrations'
|
|
4392
|
-
context[:gem_version] = '1.
|
|
4443
|
+
context[:gem_version] = '1.18.0'
|
|
4393
4444
|
Seahorse::Client::Request.new(handlers, context)
|
|
4394
4445
|
end
|
|
4395
4446
|
|
|
@@ -35,8 +35,11 @@ module Aws::IoTManagedIntegrations
|
|
|
35
35
|
AttributeValue = Shapes::StringShape.new(name: 'AttributeValue')
|
|
36
36
|
AuthConfig = Shapes::StructureShape.new(name: 'AuthConfig')
|
|
37
37
|
AuthConfigUpdate = Shapes::StructureShape.new(name: 'AuthConfigUpdate')
|
|
38
|
+
AuthMaterial = Shapes::StructureShape.new(name: 'AuthMaterial')
|
|
39
|
+
AuthMaterialName = Shapes::StringShape.new(name: 'AuthMaterialName')
|
|
38
40
|
AuthMaterialString = Shapes::StringShape.new(name: 'AuthMaterialString')
|
|
39
41
|
AuthMaterialType = Shapes::StringShape.new(name: 'AuthMaterialType')
|
|
42
|
+
AuthMaterials = Shapes::ListShape.new(name: 'AuthMaterials')
|
|
40
43
|
AuthType = Shapes::StringShape.new(name: 'AuthType')
|
|
41
44
|
AuthUrl = Shapes::StringShape.new(name: 'AuthUrl')
|
|
42
45
|
BaseRatePerMinute = Shapes::IntegerShape.new(name: 'BaseRatePerMinute')
|
|
@@ -90,6 +93,7 @@ module Aws::IoTManagedIntegrations
|
|
|
90
93
|
ConnectorDestinationName = Shapes::StringShape.new(name: 'ConnectorDestinationName')
|
|
91
94
|
ConnectorDestinationSummary = Shapes::StructureShape.new(name: 'ConnectorDestinationSummary')
|
|
92
95
|
ConnectorDeviceId = Shapes::StringShape.new(name: 'ConnectorDeviceId')
|
|
96
|
+
ConnectorDeviceIdList = Shapes::ListShape.new(name: 'ConnectorDeviceIdList')
|
|
93
97
|
ConnectorDeviceName = Shapes::StringShape.new(name: 'ConnectorDeviceName')
|
|
94
98
|
ConnectorEventMessage = Shapes::StringShape.new(name: 'ConnectorEventMessage')
|
|
95
99
|
ConnectorEventOperation = Shapes::StringShape.new(name: 'ConnectorEventOperation')
|
|
@@ -196,6 +200,8 @@ module Aws::IoTManagedIntegrations
|
|
|
196
200
|
ExecutionNumber = Shapes::IntegerShape.new(name: 'ExecutionNumber')
|
|
197
201
|
ExponentialRolloutRate = Shapes::StructureShape.new(name: 'ExponentialRolloutRate')
|
|
198
202
|
ExtrinsicSchemaId = Shapes::StringShape.new(name: 'ExtrinsicSchemaId')
|
|
203
|
+
GeneralAuthorizationName = Shapes::StructureShape.new(name: 'GeneralAuthorizationName')
|
|
204
|
+
GeneralAuthorizationUpdate = Shapes::StructureShape.new(name: 'GeneralAuthorizationUpdate')
|
|
199
205
|
GetAccountAssociationRequest = Shapes::StructureShape.new(name: 'GetAccountAssociationRequest')
|
|
200
206
|
GetAccountAssociationResponse = Shapes::StructureShape.new(name: 'GetAccountAssociationResponse')
|
|
201
207
|
GetCloudConnectorRequest = Shapes::StructureShape.new(name: 'GetCloudConnectorRequest')
|
|
@@ -301,6 +307,7 @@ module Aws::IoTManagedIntegrations
|
|
|
301
307
|
ManagedThingArn = Shapes::StringShape.new(name: 'ManagedThingArn')
|
|
302
308
|
ManagedThingAssociation = Shapes::StructureShape.new(name: 'ManagedThingAssociation')
|
|
303
309
|
ManagedThingAssociationList = Shapes::ListShape.new(name: 'ManagedThingAssociationList')
|
|
310
|
+
ManagedThingAssociationStatus = Shapes::StringShape.new(name: 'ManagedThingAssociationStatus')
|
|
304
311
|
ManagedThingId = Shapes::StringShape.new(name: 'ManagedThingId')
|
|
305
312
|
ManagedThingListDefinition = Shapes::ListShape.new(name: 'ManagedThingListDefinition')
|
|
306
313
|
ManagedThingSchemaListDefinition = Shapes::ListShape.new(name: 'ManagedThingSchemaListDefinition')
|
|
@@ -348,7 +355,7 @@ module Aws::IoTManagedIntegrations
|
|
|
348
355
|
NotificationConfigurationUpdatedAt = Shapes::TimestampShape.new(name: 'NotificationConfigurationUpdatedAt')
|
|
349
356
|
NumberOfNotifiedThings = Shapes::IntegerShape.new(name: 'NumberOfNotifiedThings')
|
|
350
357
|
NumberOfSucceededThings = Shapes::IntegerShape.new(name: 'NumberOfSucceededThings')
|
|
351
|
-
|
|
358
|
+
OAuthAuthorizationUrlOutput = Shapes::StringShape.new(name: 'OAuthAuthorizationUrlOutput')
|
|
352
359
|
OAuthCompleteRedirectUrl = Shapes::StringShape.new(name: 'OAuthCompleteRedirectUrl')
|
|
353
360
|
OAuthConfig = Shapes::StructureShape.new(name: 'OAuthConfig')
|
|
354
361
|
OAuthUpdate = Shapes::StructureShape.new(name: 'OAuthUpdate')
|
|
@@ -507,11 +514,19 @@ module Aws::IoTManagedIntegrations
|
|
|
507
514
|
AccountAssociationListDefinition.member = Shapes::ShapeRef.new(shape: AccountAssociationItem)
|
|
508
515
|
|
|
509
516
|
AuthConfig.add_member(:o_auth, Shapes::ShapeRef.new(shape: OAuthConfig, location_name: "oAuth"))
|
|
517
|
+
AuthConfig.add_member(:general_authorization, Shapes::ShapeRef.new(shape: AuthMaterials, location_name: "GeneralAuthorization"))
|
|
510
518
|
AuthConfig.struct_class = Types::AuthConfig
|
|
511
519
|
|
|
512
520
|
AuthConfigUpdate.add_member(:o_auth_update, Shapes::ShapeRef.new(shape: OAuthUpdate, location_name: "oAuthUpdate"))
|
|
521
|
+
AuthConfigUpdate.add_member(:general_authorization_update, Shapes::ShapeRef.new(shape: GeneralAuthorizationUpdate, location_name: "GeneralAuthorizationUpdate"))
|
|
513
522
|
AuthConfigUpdate.struct_class = Types::AuthConfigUpdate
|
|
514
523
|
|
|
524
|
+
AuthMaterial.add_member(:secrets_manager, Shapes::ShapeRef.new(shape: SecretsManager, required: true, location_name: "SecretsManager"))
|
|
525
|
+
AuthMaterial.add_member(:auth_material_name, Shapes::ShapeRef.new(shape: AuthMaterialName, required: true, location_name: "AuthMaterialName"))
|
|
526
|
+
AuthMaterial.struct_class = Types::AuthMaterial
|
|
527
|
+
|
|
528
|
+
AuthMaterials.member = Shapes::ShapeRef.new(shape: AuthMaterial)
|
|
529
|
+
|
|
515
530
|
CapabilityAction.add_member(:name, Shapes::ShapeRef.new(shape: CapabilityActionName, required: true, location_name: "name"))
|
|
516
531
|
CapabilityAction.add_member(:ref, Shapes::ShapeRef.new(shape: ActionReference, location_name: "ref"))
|
|
517
532
|
CapabilityAction.add_member(:action_trace_id, Shapes::ShapeRef.new(shape: ActionTraceId, location_name: "actionTraceId"))
|
|
@@ -590,6 +605,8 @@ module Aws::IoTManagedIntegrations
|
|
|
590
605
|
ConnectorDestinationSummary.add_member(:id, Shapes::ShapeRef.new(shape: ConnectorDestinationId, location_name: "Id"))
|
|
591
606
|
ConnectorDestinationSummary.struct_class = Types::ConnectorDestinationSummary
|
|
592
607
|
|
|
608
|
+
ConnectorDeviceIdList.member = Shapes::ShapeRef.new(shape: ConnectorDeviceId)
|
|
609
|
+
|
|
593
610
|
ConnectorItem.add_member(:name, Shapes::ShapeRef.new(shape: DisplayName, required: true, location_name: "Name"))
|
|
594
611
|
ConnectorItem.add_member(:endpoint_config, Shapes::ShapeRef.new(shape: EndpointConfig, required: true, location_name: "EndpointConfig"))
|
|
595
612
|
ConnectorItem.add_member(:description, Shapes::ShapeRef.new(shape: CloudConnectorDescription, location_name: "Description"))
|
|
@@ -605,9 +622,10 @@ module Aws::IoTManagedIntegrations
|
|
|
605
622
|
CreateAccountAssociationRequest.add_member(:name, Shapes::ShapeRef.new(shape: AccountAssociationName, location_name: "Name"))
|
|
606
623
|
CreateAccountAssociationRequest.add_member(:description, Shapes::ShapeRef.new(shape: AccountAssociationDescription, location_name: "Description"))
|
|
607
624
|
CreateAccountAssociationRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagsMap, location_name: "Tags"))
|
|
625
|
+
CreateAccountAssociationRequest.add_member(:general_authorization, Shapes::ShapeRef.new(shape: GeneralAuthorizationName, location_name: "GeneralAuthorization"))
|
|
608
626
|
CreateAccountAssociationRequest.struct_class = Types::CreateAccountAssociationRequest
|
|
609
627
|
|
|
610
|
-
CreateAccountAssociationResponse.add_member(:o_auth_authorization_url, Shapes::ShapeRef.new(shape:
|
|
628
|
+
CreateAccountAssociationResponse.add_member(:o_auth_authorization_url, Shapes::ShapeRef.new(shape: OAuthAuthorizationUrlOutput, required: true, location_name: "OAuthAuthorizationUrl"))
|
|
611
629
|
CreateAccountAssociationResponse.add_member(:account_association_id, Shapes::ShapeRef.new(shape: AccountAssociationId, required: true, location_name: "AccountAssociationId"))
|
|
612
630
|
CreateAccountAssociationResponse.add_member(:association_state, Shapes::ShapeRef.new(shape: AssociationState, required: true, location_name: "AssociationState"))
|
|
613
631
|
CreateAccountAssociationResponse.add_member(:arn, Shapes::ShapeRef.new(shape: AccountAssociationArn, location_name: "Arn"))
|
|
@@ -626,9 +644,9 @@ module Aws::IoTManagedIntegrations
|
|
|
626
644
|
CreateConnectorDestinationRequest.add_member(:name, Shapes::ShapeRef.new(shape: ConnectorDestinationName, location_name: "Name"))
|
|
627
645
|
CreateConnectorDestinationRequest.add_member(:description, Shapes::ShapeRef.new(shape: ConnectorDestinationDescription, location_name: "Description"))
|
|
628
646
|
CreateConnectorDestinationRequest.add_member(:cloud_connector_id, Shapes::ShapeRef.new(shape: CloudConnectorId, required: true, location_name: "CloudConnectorId"))
|
|
629
|
-
CreateConnectorDestinationRequest.add_member(:auth_type, Shapes::ShapeRef.new(shape: AuthType,
|
|
647
|
+
CreateConnectorDestinationRequest.add_member(:auth_type, Shapes::ShapeRef.new(shape: AuthType, location_name: "AuthType"))
|
|
630
648
|
CreateConnectorDestinationRequest.add_member(:auth_config, Shapes::ShapeRef.new(shape: AuthConfig, required: true, location_name: "AuthConfig"))
|
|
631
|
-
CreateConnectorDestinationRequest.add_member(:secrets_manager, Shapes::ShapeRef.new(shape: SecretsManager,
|
|
649
|
+
CreateConnectorDestinationRequest.add_member(:secrets_manager, Shapes::ShapeRef.new(shape: SecretsManager, location_name: "SecretsManager"))
|
|
632
650
|
CreateConnectorDestinationRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location_name: "ClientToken", metadata: {"idempotencyToken" => true}))
|
|
633
651
|
CreateConnectorDestinationRequest.struct_class = Types::CreateConnectorDestinationRequest
|
|
634
652
|
|
|
@@ -729,6 +747,7 @@ module Aws::IoTManagedIntegrations
|
|
|
729
747
|
|
|
730
748
|
CreateProvisioningProfileRequest.add_member(:provisioning_type, Shapes::ShapeRef.new(shape: ProvisioningType, required: true, location_name: "ProvisioningType"))
|
|
731
749
|
CreateProvisioningProfileRequest.add_member(:ca_certificate, Shapes::ShapeRef.new(shape: CaCertificate, location_name: "CaCertificate"))
|
|
750
|
+
CreateProvisioningProfileRequest.add_member(:claim_certificate, Shapes::ShapeRef.new(shape: ClaimCertificate, location_name: "ClaimCertificate"))
|
|
732
751
|
CreateProvisioningProfileRequest.add_member(:name, Shapes::ShapeRef.new(shape: ProvisioningProfileName, location_name: "Name"))
|
|
733
752
|
CreateProvisioningProfileRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location_name: "ClientToken", metadata: {"idempotencyToken" => true}))
|
|
734
753
|
CreateProvisioningProfileRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagsMap, location_name: "Tags"))
|
|
@@ -849,6 +868,13 @@ module Aws::IoTManagedIntegrations
|
|
|
849
868
|
ExponentialRolloutRate.add_member(:rate_increase_criteria, Shapes::ShapeRef.new(shape: RolloutRateIncreaseCriteria, location_name: "RateIncreaseCriteria"))
|
|
850
869
|
ExponentialRolloutRate.struct_class = Types::ExponentialRolloutRate
|
|
851
870
|
|
|
871
|
+
GeneralAuthorizationName.add_member(:auth_material_name, Shapes::ShapeRef.new(shape: AuthMaterialName, location_name: "AuthMaterialName"))
|
|
872
|
+
GeneralAuthorizationName.struct_class = Types::GeneralAuthorizationName
|
|
873
|
+
|
|
874
|
+
GeneralAuthorizationUpdate.add_member(:auth_materials_to_add, Shapes::ShapeRef.new(shape: AuthMaterials, location_name: "AuthMaterialsToAdd"))
|
|
875
|
+
GeneralAuthorizationUpdate.add_member(:auth_materials_to_update, Shapes::ShapeRef.new(shape: AuthMaterials, location_name: "AuthMaterialsToUpdate"))
|
|
876
|
+
GeneralAuthorizationUpdate.struct_class = Types::GeneralAuthorizationUpdate
|
|
877
|
+
|
|
852
878
|
GetAccountAssociationRequest.add_member(:account_association_id, Shapes::ShapeRef.new(shape: AccountAssociationId, required: true, location: "uri", location_name: "AccountAssociationId"))
|
|
853
879
|
GetAccountAssociationRequest.struct_class = Types::GetAccountAssociationRequest
|
|
854
880
|
|
|
@@ -859,8 +885,9 @@ module Aws::IoTManagedIntegrations
|
|
|
859
885
|
GetAccountAssociationResponse.add_member(:name, Shapes::ShapeRef.new(shape: AccountAssociationName, location_name: "Name"))
|
|
860
886
|
GetAccountAssociationResponse.add_member(:description, Shapes::ShapeRef.new(shape: AccountAssociationDescription, location_name: "Description"))
|
|
861
887
|
GetAccountAssociationResponse.add_member(:arn, Shapes::ShapeRef.new(shape: AccountAssociationArn, location_name: "Arn"))
|
|
862
|
-
GetAccountAssociationResponse.add_member(:o_auth_authorization_url, Shapes::ShapeRef.new(shape:
|
|
888
|
+
GetAccountAssociationResponse.add_member(:o_auth_authorization_url, Shapes::ShapeRef.new(shape: OAuthAuthorizationUrlOutput, required: true, location_name: "OAuthAuthorizationUrl"))
|
|
863
889
|
GetAccountAssociationResponse.add_member(:tags, Shapes::ShapeRef.new(shape: TagsMap, location_name: "Tags"))
|
|
890
|
+
GetAccountAssociationResponse.add_member(:general_authorization, Shapes::ShapeRef.new(shape: GeneralAuthorizationName, location_name: "GeneralAuthorization"))
|
|
864
891
|
GetAccountAssociationResponse.struct_class = Types::GetAccountAssociationResponse
|
|
865
892
|
|
|
866
893
|
GetCloudConnectorRequest.add_member(:identifier, Shapes::ShapeRef.new(shape: CloudConnectorId, required: true, location: "uri", location_name: "Identifier"))
|
|
@@ -1281,6 +1308,7 @@ module Aws::IoTManagedIntegrations
|
|
|
1281
1308
|
|
|
1282
1309
|
ManagedThingAssociation.add_member(:managed_thing_id, Shapes::ShapeRef.new(shape: ManagedThingId, location_name: "ManagedThingId"))
|
|
1283
1310
|
ManagedThingAssociation.add_member(:account_association_id, Shapes::ShapeRef.new(shape: AccountAssociationId, location_name: "AccountAssociationId"))
|
|
1311
|
+
ManagedThingAssociation.add_member(:managed_thing_association_status, Shapes::ShapeRef.new(shape: ManagedThingAssociationStatus, location_name: "ManagedThingAssociationStatus"))
|
|
1284
1312
|
ManagedThingAssociation.struct_class = Types::ManagedThingAssociation
|
|
1285
1313
|
|
|
1286
1314
|
ManagedThingAssociationList.member = Shapes::ShapeRef.new(shape: ManagedThingAssociation)
|
|
@@ -1586,7 +1614,7 @@ module Aws::IoTManagedIntegrations
|
|
|
1586
1614
|
StartAccountAssociationRefreshRequest.add_member(:account_association_id, Shapes::ShapeRef.new(shape: AccountAssociationId, required: true, location: "uri", location_name: "AccountAssociationId"))
|
|
1587
1615
|
StartAccountAssociationRefreshRequest.struct_class = Types::StartAccountAssociationRefreshRequest
|
|
1588
1616
|
|
|
1589
|
-
StartAccountAssociationRefreshResponse.add_member(:o_auth_authorization_url, Shapes::ShapeRef.new(shape:
|
|
1617
|
+
StartAccountAssociationRefreshResponse.add_member(:o_auth_authorization_url, Shapes::ShapeRef.new(shape: OAuthAuthorizationUrlOutput, required: true, location_name: "OAuthAuthorizationUrl"))
|
|
1590
1618
|
StartAccountAssociationRefreshResponse.struct_class = Types::StartAccountAssociationRefreshResponse
|
|
1591
1619
|
|
|
1592
1620
|
StartDeviceDiscoveryRequest.add_member(:discovery_type, Shapes::ShapeRef.new(shape: DiscoveryType, required: true, location_name: "DiscoveryType"))
|
|
@@ -1598,6 +1626,7 @@ module Aws::IoTManagedIntegrations
|
|
|
1598
1626
|
StartDeviceDiscoveryRequest.add_member(:authentication_material_type, Shapes::ShapeRef.new(shape: DiscoveryAuthMaterialType, location_name: "AuthenticationMaterialType"))
|
|
1599
1627
|
StartDeviceDiscoveryRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location_name: "ClientToken"))
|
|
1600
1628
|
StartDeviceDiscoveryRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagsMap, deprecated: true, location_name: "Tags", metadata: {"deprecatedMessage" => "Tags have been deprecated from this api", "deprecatedSince" => "06-25-2025"}))
|
|
1629
|
+
StartDeviceDiscoveryRequest.add_member(:connector_device_id_list, Shapes::ShapeRef.new(shape: ConnectorDeviceIdList, location_name: "ConnectorDeviceIdList"))
|
|
1601
1630
|
StartDeviceDiscoveryRequest.add_member(:protocol, Shapes::ShapeRef.new(shape: ProtocolType, location_name: "Protocol"))
|
|
1602
1631
|
StartDeviceDiscoveryRequest.add_member(:end_device_identifier, Shapes::ShapeRef.new(shape: ManagedThingId, location_name: "EndDeviceIdentifier"))
|
|
1603
1632
|
StartDeviceDiscoveryRequest.struct_class = Types::StartDeviceDiscoveryRequest
|
|
@@ -2831,6 +2860,7 @@ module Aws::IoTManagedIntegrations
|
|
|
2831
2860
|
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
|
2832
2861
|
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
|
2833
2862
|
o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
|
|
2863
|
+
o.errors << Shapes::ShapeRef.new(shape: ConflictException)
|
|
2834
2864
|
o.errors << Shapes::ShapeRef.new(shape: ServiceUnavailableException)
|
|
2835
2865
|
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
|
2836
2866
|
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
|
@@ -104,8 +104,13 @@ module Aws::IoTManagedIntegrations
|
|
|
104
104
|
# third-party service.
|
|
105
105
|
# @return [Types::OAuthConfig]
|
|
106
106
|
#
|
|
107
|
+
# @!attribute [rw] general_authorization
|
|
108
|
+
# The authorization materials for General Authorization.
|
|
109
|
+
# @return [Array<Types::AuthMaterial>]
|
|
110
|
+
#
|
|
107
111
|
class AuthConfig < Struct.new(
|
|
108
|
-
:o_auth
|
|
112
|
+
:o_auth,
|
|
113
|
+
:general_authorization)
|
|
109
114
|
SENSITIVE = []
|
|
110
115
|
include Aws::Structure
|
|
111
116
|
end
|
|
@@ -118,8 +123,33 @@ module Aws::IoTManagedIntegrations
|
|
|
118
123
|
# configuration.
|
|
119
124
|
# @return [Types::OAuthUpdate]
|
|
120
125
|
#
|
|
126
|
+
# @!attribute [rw] general_authorization_update
|
|
127
|
+
# The General Authorization update information containing
|
|
128
|
+
# authorization materials to add or update in Kinesis Data Streams.
|
|
129
|
+
# @return [Types::GeneralAuthorizationUpdate]
|
|
130
|
+
#
|
|
121
131
|
class AuthConfigUpdate < Struct.new(
|
|
122
|
-
:o_auth_update
|
|
132
|
+
:o_auth_update,
|
|
133
|
+
:general_authorization_update)
|
|
134
|
+
SENSITIVE = []
|
|
135
|
+
include Aws::Structure
|
|
136
|
+
end
|
|
137
|
+
|
|
138
|
+
# The authorization material containing the Secrets Manager arn and
|
|
139
|
+
# version.
|
|
140
|
+
#
|
|
141
|
+
# @!attribute [rw] secrets_manager
|
|
142
|
+
# Configuration for AWS Secrets Manager, used to securely store and
|
|
143
|
+
# manage sensitive information for connector destinations.
|
|
144
|
+
# @return [Types::SecretsManager]
|
|
145
|
+
#
|
|
146
|
+
# @!attribute [rw] auth_material_name
|
|
147
|
+
# The name of the authorization material.
|
|
148
|
+
# @return [String]
|
|
149
|
+
#
|
|
150
|
+
class AuthMaterial < Struct.new(
|
|
151
|
+
:secrets_manager,
|
|
152
|
+
:auth_material_name)
|
|
123
153
|
SENSITIVE = []
|
|
124
154
|
include Aws::Structure
|
|
125
155
|
end
|
|
@@ -461,19 +491,26 @@ module Aws::IoTManagedIntegrations
|
|
|
461
491
|
# association.
|
|
462
492
|
# @return [Hash<String,String>]
|
|
463
493
|
#
|
|
494
|
+
# @!attribute [rw] general_authorization
|
|
495
|
+
# The General Authorization reference by authorization material name.
|
|
496
|
+
# @return [Types::GeneralAuthorizationName]
|
|
497
|
+
#
|
|
464
498
|
class CreateAccountAssociationRequest < Struct.new(
|
|
465
499
|
:client_token,
|
|
466
500
|
:connector_destination_id,
|
|
467
501
|
:name,
|
|
468
502
|
:description,
|
|
469
|
-
:tags
|
|
503
|
+
:tags,
|
|
504
|
+
:general_authorization)
|
|
470
505
|
SENSITIVE = [:tags]
|
|
471
506
|
include Aws::Structure
|
|
472
507
|
end
|
|
473
508
|
|
|
474
509
|
# @!attribute [rw] o_auth_authorization_url
|
|
475
510
|
# Third-party IoT platform OAuth authorization server URL backed with
|
|
476
|
-
# all the required parameters to perform end-user authentication.
|
|
511
|
+
# all the required parameters to perform end-user authentication. This
|
|
512
|
+
# field will be empty when using General Authorization flows that do
|
|
513
|
+
# not require OAuth.
|
|
477
514
|
# @return [String]
|
|
478
515
|
#
|
|
479
516
|
# @!attribute [rw] account_association_id
|
|
@@ -766,7 +803,7 @@ module Aws::IoTManagedIntegrations
|
|
|
766
803
|
#
|
|
767
804
|
# @!attribute [rw] authentication_material
|
|
768
805
|
# The authentication material defining the device connectivity setup
|
|
769
|
-
# requests. The
|
|
806
|
+
# requests. The authorization materials used are the device bar code.
|
|
770
807
|
# @return [String]
|
|
771
808
|
#
|
|
772
809
|
# @!attribute [rw] authentication_material_type
|
|
@@ -1071,6 +1108,10 @@ module Aws::IoTManagedIntegrations
|
|
|
1071
1108
|
# The id of the certificate authority (CA) certificate.
|
|
1072
1109
|
# @return [String]
|
|
1073
1110
|
#
|
|
1111
|
+
# @!attribute [rw] claim_certificate
|
|
1112
|
+
# The claim certificate.
|
|
1113
|
+
# @return [String]
|
|
1114
|
+
#
|
|
1074
1115
|
# @!attribute [rw] name
|
|
1075
1116
|
# The name of the provisioning template.
|
|
1076
1117
|
# @return [String]
|
|
@@ -1093,10 +1134,11 @@ module Aws::IoTManagedIntegrations
|
|
|
1093
1134
|
class CreateProvisioningProfileRequest < Struct.new(
|
|
1094
1135
|
:provisioning_type,
|
|
1095
1136
|
:ca_certificate,
|
|
1137
|
+
:claim_certificate,
|
|
1096
1138
|
:name,
|
|
1097
1139
|
:client_token,
|
|
1098
1140
|
:tags)
|
|
1099
|
-
SENSITIVE = [:ca_certificate, :tags]
|
|
1141
|
+
SENSITIVE = [:ca_certificate, :claim_certificate, :tags]
|
|
1100
1142
|
include Aws::Structure
|
|
1101
1143
|
end
|
|
1102
1144
|
|
|
@@ -1368,7 +1410,7 @@ module Aws::IoTManagedIntegrations
|
|
|
1368
1410
|
:capability_report,
|
|
1369
1411
|
:capability_schemas,
|
|
1370
1412
|
:device_metadata)
|
|
1371
|
-
SENSITIVE = [:connector_device_id
|
|
1413
|
+
SENSITIVE = [:connector_device_id]
|
|
1372
1414
|
include Aws::Structure
|
|
1373
1415
|
end
|
|
1374
1416
|
|
|
@@ -1450,7 +1492,7 @@ module Aws::IoTManagedIntegrations
|
|
|
1450
1492
|
:brand,
|
|
1451
1493
|
:model,
|
|
1452
1494
|
:authentication_material)
|
|
1453
|
-
SENSITIVE = [:connector_device_id, :
|
|
1495
|
+
SENSITIVE = [:connector_device_id, :brand, :model, :authentication_material]
|
|
1454
1496
|
include Aws::Structure
|
|
1455
1497
|
end
|
|
1456
1498
|
|
|
@@ -1521,6 +1563,36 @@ module Aws::IoTManagedIntegrations
|
|
|
1521
1563
|
include Aws::Structure
|
|
1522
1564
|
end
|
|
1523
1565
|
|
|
1566
|
+
# The General Authorization reference by authorization material name.
|
|
1567
|
+
#
|
|
1568
|
+
# @!attribute [rw] auth_material_name
|
|
1569
|
+
# The name of the authorization material.
|
|
1570
|
+
# @return [String]
|
|
1571
|
+
#
|
|
1572
|
+
class GeneralAuthorizationName < Struct.new(
|
|
1573
|
+
:auth_material_name)
|
|
1574
|
+
SENSITIVE = []
|
|
1575
|
+
include Aws::Structure
|
|
1576
|
+
end
|
|
1577
|
+
|
|
1578
|
+
# The General Authorization update information containing authorization
|
|
1579
|
+
# materials to add or update.
|
|
1580
|
+
#
|
|
1581
|
+
# @!attribute [rw] auth_materials_to_add
|
|
1582
|
+
# The authorization materials to add.
|
|
1583
|
+
# @return [Array<Types::AuthMaterial>]
|
|
1584
|
+
#
|
|
1585
|
+
# @!attribute [rw] auth_materials_to_update
|
|
1586
|
+
# The authorization materials to update.
|
|
1587
|
+
# @return [Array<Types::AuthMaterial>]
|
|
1588
|
+
#
|
|
1589
|
+
class GeneralAuthorizationUpdate < Struct.new(
|
|
1590
|
+
:auth_materials_to_add,
|
|
1591
|
+
:auth_materials_to_update)
|
|
1592
|
+
SENSITIVE = []
|
|
1593
|
+
include Aws::Structure
|
|
1594
|
+
end
|
|
1595
|
+
|
|
1524
1596
|
# @!attribute [rw] account_association_id
|
|
1525
1597
|
# The unique identifier of the account association to retrieve.
|
|
1526
1598
|
# @return [String]
|
|
@@ -1562,7 +1634,9 @@ module Aws::IoTManagedIntegrations
|
|
|
1562
1634
|
#
|
|
1563
1635
|
# @!attribute [rw] o_auth_authorization_url
|
|
1564
1636
|
# Third party IoT platform OAuth authorization server URL backed with
|
|
1565
|
-
# all the required parameters to perform end-user authentication.
|
|
1637
|
+
# all the required parameters to perform end-user authentication. This
|
|
1638
|
+
# field will be empty when using General Authorization flows that do
|
|
1639
|
+
# not require OAuth.
|
|
1566
1640
|
# @return [String]
|
|
1567
1641
|
#
|
|
1568
1642
|
# @!attribute [rw] tags
|
|
@@ -1570,6 +1644,10 @@ module Aws::IoTManagedIntegrations
|
|
|
1570
1644
|
# association.
|
|
1571
1645
|
# @return [Hash<String,String>]
|
|
1572
1646
|
#
|
|
1647
|
+
# @!attribute [rw] general_authorization
|
|
1648
|
+
# The General Authorization reference by authorization material name.
|
|
1649
|
+
# @return [Types::GeneralAuthorizationName]
|
|
1650
|
+
#
|
|
1573
1651
|
class GetAccountAssociationResponse < Struct.new(
|
|
1574
1652
|
:account_association_id,
|
|
1575
1653
|
:association_state,
|
|
@@ -1579,7 +1657,8 @@ module Aws::IoTManagedIntegrations
|
|
|
1579
1657
|
:description,
|
|
1580
1658
|
:arn,
|
|
1581
1659
|
:o_auth_authorization_url,
|
|
1582
|
-
:tags
|
|
1660
|
+
:tags,
|
|
1661
|
+
:general_authorization)
|
|
1583
1662
|
SENSITIVE = [:o_auth_authorization_url, :tags]
|
|
1584
1663
|
include Aws::Structure
|
|
1585
1664
|
end
|
|
@@ -3335,7 +3414,8 @@ module Aws::IoTManagedIntegrations
|
|
|
3335
3414
|
end
|
|
3336
3415
|
|
|
3337
3416
|
# @!attribute [rw] resource_arn
|
|
3338
|
-
# The ARN of the resource for which to list
|
|
3417
|
+
# The Amazon Resource Name (ARN) of the resource for which to list
|
|
3418
|
+
# tags.
|
|
3339
3419
|
# @return [String]
|
|
3340
3420
|
#
|
|
3341
3421
|
class ListTagsForResourceRequest < Struct.new(
|
|
@@ -3365,9 +3445,16 @@ module Aws::IoTManagedIntegrations
|
|
|
3365
3445
|
# The identifier of the account association in the association.
|
|
3366
3446
|
# @return [String]
|
|
3367
3447
|
#
|
|
3448
|
+
# @!attribute [rw] managed_thing_association_status
|
|
3449
|
+
# The status of the registration between the managed thing and the
|
|
3450
|
+
# account association. Indicates whether the device is pre-associated
|
|
3451
|
+
# or fully associated with the account association.
|
|
3452
|
+
# @return [String]
|
|
3453
|
+
#
|
|
3368
3454
|
class ManagedThingAssociation < Struct.new(
|
|
3369
3455
|
:managed_thing_id,
|
|
3370
|
-
:account_association_id
|
|
3456
|
+
:account_association_id,
|
|
3457
|
+
:managed_thing_association_status)
|
|
3371
3458
|
SENSITIVE = []
|
|
3372
3459
|
include Aws::Structure
|
|
3373
3460
|
end
|
|
@@ -4491,7 +4578,7 @@ module Aws::IoTManagedIntegrations
|
|
|
4491
4578
|
:trace_id,
|
|
4492
4579
|
:devices,
|
|
4493
4580
|
:matter_endpoint)
|
|
4494
|
-
SENSITIVE = [:user_id, :
|
|
4581
|
+
SENSITIVE = [:user_id, :message, :connector_device_id]
|
|
4495
4582
|
include Aws::Structure
|
|
4496
4583
|
end
|
|
4497
4584
|
|
|
@@ -4580,7 +4667,8 @@ module Aws::IoTManagedIntegrations
|
|
|
4580
4667
|
# @!attribute [rw] o_auth_authorization_url
|
|
4581
4668
|
# Third-party IoT platform OAuth authorization server URL with all
|
|
4582
4669
|
# required parameters to perform end-user authentication during the
|
|
4583
|
-
# refresh process.
|
|
4670
|
+
# refresh process. This field will be empty when using General
|
|
4671
|
+
# Authorization flows that do not require OAuth.
|
|
4584
4672
|
# @return [String]
|
|
4585
4673
|
#
|
|
4586
4674
|
class StartAccountAssociationRefreshResponse < Struct.new(
|
|
@@ -4638,6 +4726,10 @@ module Aws::IoTManagedIntegrations
|
|
|
4638
4726
|
# discovery request.
|
|
4639
4727
|
# @return [Hash<String,String>]
|
|
4640
4728
|
#
|
|
4729
|
+
# @!attribute [rw] connector_device_id_list
|
|
4730
|
+
# Used as a filter for PLA discoveries.
|
|
4731
|
+
# @return [Array<String>]
|
|
4732
|
+
#
|
|
4641
4733
|
# @!attribute [rw] protocol
|
|
4642
4734
|
# The protocol type for capability rediscovery (ZWAVE, ZIGBEE, or
|
|
4643
4735
|
# CUSTOM).
|
|
@@ -4667,9 +4759,10 @@ module Aws::IoTManagedIntegrations
|
|
|
4667
4759
|
:authentication_material_type,
|
|
4668
4760
|
:client_token,
|
|
4669
4761
|
:tags,
|
|
4762
|
+
:connector_device_id_list,
|
|
4670
4763
|
:protocol,
|
|
4671
4764
|
:end_device_identifier)
|
|
4672
|
-
SENSITIVE = [:authentication_material, :tags]
|
|
4765
|
+
SENSITIVE = [:authentication_material, :tags, :connector_device_id_list]
|
|
4673
4766
|
include Aws::Structure
|
|
4674
4767
|
end
|
|
4675
4768
|
|
|
@@ -4735,11 +4828,11 @@ module Aws::IoTManagedIntegrations
|
|
|
4735
4828
|
end
|
|
4736
4829
|
|
|
4737
4830
|
# @!attribute [rw] resource_arn
|
|
4738
|
-
# The ARN of the resource to which to add tags.
|
|
4831
|
+
# The Amazon Resource Name (ARN) of the resource to which to add tags.
|
|
4739
4832
|
# @return [String]
|
|
4740
4833
|
#
|
|
4741
4834
|
# @!attribute [rw] tags
|
|
4742
|
-
# A set of key/value pairs that are used to manage the resource
|
|
4835
|
+
# A set of key/value pairs that are used to manage the resource.
|
|
4743
4836
|
# @return [Hash<String,String>]
|
|
4744
4837
|
#
|
|
4745
4838
|
class TagResourceRequest < Struct.new(
|
|
@@ -4826,7 +4919,8 @@ module Aws::IoTManagedIntegrations
|
|
|
4826
4919
|
end
|
|
4827
4920
|
|
|
4828
4921
|
# @!attribute [rw] resource_arn
|
|
4829
|
-
# The ARN of the resource
|
|
4922
|
+
# The Amazon Resource Name (ARN) of the resource from which to remove
|
|
4923
|
+
# tags.
|
|
4830
4924
|
# @return [String]
|
|
4831
4925
|
#
|
|
4832
4926
|
# @!attribute [rw] tag_keys
|
data/sig/client.rbs
CHANGED
|
@@ -91,7 +91,10 @@ module Aws
|
|
|
91
91
|
connector_destination_id: ::String,
|
|
92
92
|
?name: ::String,
|
|
93
93
|
?description: ::String,
|
|
94
|
-
?tags: Hash[::String, ::String]
|
|
94
|
+
?tags: Hash[::String, ::String],
|
|
95
|
+
?general_authorization: {
|
|
96
|
+
auth_material_name: ::String?
|
|
97
|
+
}
|
|
95
98
|
) -> _CreateAccountAssociationResponseSuccess
|
|
96
99
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateAccountAssociationResponseSuccess
|
|
97
100
|
|
|
@@ -122,7 +125,7 @@ module Aws
|
|
|
122
125
|
?name: ::String,
|
|
123
126
|
?description: ::String,
|
|
124
127
|
cloud_connector_id: ::String,
|
|
125
|
-
auth_type: ("OAUTH"),
|
|
128
|
+
?auth_type: ("OAUTH"),
|
|
126
129
|
auth_config: {
|
|
127
130
|
o_auth: {
|
|
128
131
|
auth_url: ::String,
|
|
@@ -134,9 +137,18 @@ module Aws
|
|
|
134
137
|
enabled: bool?,
|
|
135
138
|
days_before_renewal: ::Integer?
|
|
136
139
|
}?
|
|
137
|
-
}
|
|
140
|
+
}?,
|
|
141
|
+
general_authorization: Array[
|
|
142
|
+
{
|
|
143
|
+
secrets_manager: {
|
|
144
|
+
arn: ::String,
|
|
145
|
+
version_id: ::String
|
|
146
|
+
},
|
|
147
|
+
auth_material_name: ::String
|
|
148
|
+
},
|
|
149
|
+
]?
|
|
138
150
|
},
|
|
139
|
-
secrets_manager: {
|
|
151
|
+
?secrets_manager: {
|
|
140
152
|
arn: ::String,
|
|
141
153
|
version_id: ::String
|
|
142
154
|
},
|
|
@@ -199,7 +211,7 @@ module Aws
|
|
|
199
211
|
?owner: ::String,
|
|
200
212
|
?credential_locker_id: ::String,
|
|
201
213
|
authentication_material: ::String,
|
|
202
|
-
authentication_material_type: ("CUSTOM_PROTOCOL_QR_BAR_CODE" | "WIFI_SETUP_QR_BAR_CODE" | "ZWAVE_QR_BAR_CODE" | "ZIGBEE_QR_BAR_CODE" | "DISCOVERED_DEVICE"),
|
|
214
|
+
authentication_material_type: ("CUSTOM_PROTOCOL_QR_BAR_CODE" | "WIFI_SETUP_QR_BAR_CODE" | "ZWAVE_QR_BAR_CODE" | "ZIGBEE_QR_BAR_CODE" | "DISCOVERED_DEVICE" | "PRE_ONBOARDED_CLOUD"),
|
|
203
215
|
?wi_fi_simple_setup_configuration: {
|
|
204
216
|
enable_as_provisioner: bool?,
|
|
205
217
|
enable_as_provisionee: bool?,
|
|
@@ -351,6 +363,7 @@ module Aws
|
|
|
351
363
|
def create_provisioning_profile: (
|
|
352
364
|
provisioning_type: ("FLEET_PROVISIONING" | "JITR"),
|
|
353
365
|
?ca_certificate: ::String,
|
|
366
|
+
?claim_certificate: ::String,
|
|
354
367
|
?name: ::String,
|
|
355
368
|
?client_token: ::String,
|
|
356
369
|
?tags: Hash[::String, ::String]
|
|
@@ -442,6 +455,7 @@ module Aws
|
|
|
442
455
|
def arn: () -> ::String
|
|
443
456
|
def o_auth_authorization_url: () -> ::String
|
|
444
457
|
def tags: () -> ::Hash[::String, ::String]
|
|
458
|
+
def general_authorization: () -> Types::GeneralAuthorizationName
|
|
445
459
|
end
|
|
446
460
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IoTManagedIntegrations/Client.html#get_account_association-instance_method
|
|
447
461
|
def get_account_association: (
|
|
@@ -1218,6 +1232,7 @@ module Aws
|
|
|
1218
1232
|
?authentication_material_type: ("ZWAVE_INSTALL_CODE"),
|
|
1219
1233
|
?client_token: ::String,
|
|
1220
1234
|
?tags: Hash[::String, ::String],
|
|
1235
|
+
?connector_device_id_list: Array[::String],
|
|
1221
1236
|
?protocol: ("ZWAVE" | "ZIGBEE" | "CUSTOM"),
|
|
1222
1237
|
?end_device_identifier: ::String
|
|
1223
1238
|
) -> _StartDeviceDiscoveryResponseSuccess
|
|
@@ -1272,6 +1287,26 @@ module Aws
|
|
|
1272
1287
|
enabled: bool?,
|
|
1273
1288
|
days_before_renewal: ::Integer?
|
|
1274
1289
|
}?
|
|
1290
|
+
}?,
|
|
1291
|
+
general_authorization_update: {
|
|
1292
|
+
auth_materials_to_add: Array[
|
|
1293
|
+
{
|
|
1294
|
+
secrets_manager: {
|
|
1295
|
+
arn: ::String,
|
|
1296
|
+
version_id: ::String
|
|
1297
|
+
},
|
|
1298
|
+
auth_material_name: ::String
|
|
1299
|
+
},
|
|
1300
|
+
]?,
|
|
1301
|
+
auth_materials_to_update: Array[
|
|
1302
|
+
{
|
|
1303
|
+
secrets_manager: {
|
|
1304
|
+
arn: ::String,
|
|
1305
|
+
version_id: ::String
|
|
1306
|
+
},
|
|
1307
|
+
auth_material_name: ::String
|
|
1308
|
+
},
|
|
1309
|
+
]?
|
|
1275
1310
|
}?
|
|
1276
1311
|
},
|
|
1277
1312
|
?secrets_manager: {
|
data/sig/types.rbs
CHANGED
|
@@ -34,11 +34,19 @@ module Aws::IoTManagedIntegrations
|
|
|
34
34
|
|
|
35
35
|
class AuthConfig
|
|
36
36
|
attr_accessor o_auth: Types::OAuthConfig
|
|
37
|
+
attr_accessor general_authorization: ::Array[Types::AuthMaterial]
|
|
37
38
|
SENSITIVE: []
|
|
38
39
|
end
|
|
39
40
|
|
|
40
41
|
class AuthConfigUpdate
|
|
41
42
|
attr_accessor o_auth_update: Types::OAuthUpdate
|
|
43
|
+
attr_accessor general_authorization_update: Types::GeneralAuthorizationUpdate
|
|
44
|
+
SENSITIVE: []
|
|
45
|
+
end
|
|
46
|
+
|
|
47
|
+
class AuthMaterial
|
|
48
|
+
attr_accessor secrets_manager: Types::SecretsManager
|
|
49
|
+
attr_accessor auth_material_name: ::String
|
|
42
50
|
SENSITIVE: []
|
|
43
51
|
end
|
|
44
52
|
|
|
@@ -138,6 +146,7 @@ module Aws::IoTManagedIntegrations
|
|
|
138
146
|
attr_accessor name: ::String
|
|
139
147
|
attr_accessor description: ::String
|
|
140
148
|
attr_accessor tags: ::Hash[::String, ::String]
|
|
149
|
+
attr_accessor general_authorization: Types::GeneralAuthorizationName
|
|
141
150
|
SENSITIVE: [:tags]
|
|
142
151
|
end
|
|
143
152
|
|
|
@@ -227,7 +236,7 @@ module Aws::IoTManagedIntegrations
|
|
|
227
236
|
attr_accessor owner: ::String
|
|
228
237
|
attr_accessor credential_locker_id: ::String
|
|
229
238
|
attr_accessor authentication_material: ::String
|
|
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")
|
|
239
|
+
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" | "PRE_ONBOARDED_CLOUD")
|
|
231
240
|
attr_accessor wi_fi_simple_setup_configuration: Types::WiFiSimpleSetupConfiguration
|
|
232
241
|
attr_accessor serial_number: ::String
|
|
233
242
|
attr_accessor brand: ::String
|
|
@@ -302,10 +311,11 @@ module Aws::IoTManagedIntegrations
|
|
|
302
311
|
class CreateProvisioningProfileRequest
|
|
303
312
|
attr_accessor provisioning_type: ("FLEET_PROVISIONING" | "JITR")
|
|
304
313
|
attr_accessor ca_certificate: ::String
|
|
314
|
+
attr_accessor claim_certificate: ::String
|
|
305
315
|
attr_accessor name: ::String
|
|
306
316
|
attr_accessor client_token: ::String
|
|
307
317
|
attr_accessor tags: ::Hash[::String, ::String]
|
|
308
|
-
SENSITIVE: [:ca_certificate, :tags]
|
|
318
|
+
SENSITIVE: [:ca_certificate, :claim_certificate, :tags]
|
|
309
319
|
end
|
|
310
320
|
|
|
311
321
|
class CreateProvisioningProfileResponse
|
|
@@ -403,7 +413,7 @@ module Aws::IoTManagedIntegrations
|
|
|
403
413
|
attr_accessor capability_report: Types::MatterCapabilityReport
|
|
404
414
|
attr_accessor capability_schemas: ::Array[Types::CapabilitySchemaItem]
|
|
405
415
|
attr_accessor device_metadata: untyped
|
|
406
|
-
SENSITIVE: [:connector_device_id
|
|
416
|
+
SENSITIVE: [:connector_device_id]
|
|
407
417
|
end
|
|
408
418
|
|
|
409
419
|
class DeviceDiscoverySummary
|
|
@@ -423,7 +433,7 @@ module Aws::IoTManagedIntegrations
|
|
|
423
433
|
attr_accessor brand: ::String
|
|
424
434
|
attr_accessor model: ::String
|
|
425
435
|
attr_accessor authentication_material: ::String
|
|
426
|
-
SENSITIVE: [:connector_device_id, :
|
|
436
|
+
SENSITIVE: [:connector_device_id, :brand, :model, :authentication_material]
|
|
427
437
|
end
|
|
428
438
|
|
|
429
439
|
class EndpointConfig
|
|
@@ -446,6 +456,17 @@ module Aws::IoTManagedIntegrations
|
|
|
446
456
|
SENSITIVE: []
|
|
447
457
|
end
|
|
448
458
|
|
|
459
|
+
class GeneralAuthorizationName
|
|
460
|
+
attr_accessor auth_material_name: ::String
|
|
461
|
+
SENSITIVE: []
|
|
462
|
+
end
|
|
463
|
+
|
|
464
|
+
class GeneralAuthorizationUpdate
|
|
465
|
+
attr_accessor auth_materials_to_add: ::Array[Types::AuthMaterial]
|
|
466
|
+
attr_accessor auth_materials_to_update: ::Array[Types::AuthMaterial]
|
|
467
|
+
SENSITIVE: []
|
|
468
|
+
end
|
|
469
|
+
|
|
449
470
|
class GetAccountAssociationRequest
|
|
450
471
|
attr_accessor account_association_id: ::String
|
|
451
472
|
SENSITIVE: []
|
|
@@ -461,6 +482,7 @@ module Aws::IoTManagedIntegrations
|
|
|
461
482
|
attr_accessor arn: ::String
|
|
462
483
|
attr_accessor o_auth_authorization_url: ::String
|
|
463
484
|
attr_accessor tags: ::Hash[::String, ::String]
|
|
485
|
+
attr_accessor general_authorization: Types::GeneralAuthorizationName
|
|
464
486
|
SENSITIVE: [:o_auth_authorization_url, :tags]
|
|
465
487
|
end
|
|
466
488
|
|
|
@@ -1046,6 +1068,7 @@ module Aws::IoTManagedIntegrations
|
|
|
1046
1068
|
class ManagedThingAssociation
|
|
1047
1069
|
attr_accessor managed_thing_id: ::String
|
|
1048
1070
|
attr_accessor account_association_id: ::String
|
|
1071
|
+
attr_accessor managed_thing_association_status: ("PRE_ASSOCIATED" | "ASSOCIATED")
|
|
1049
1072
|
SENSITIVE: []
|
|
1050
1073
|
end
|
|
1051
1074
|
|
|
@@ -1358,7 +1381,7 @@ module Aws::IoTManagedIntegrations
|
|
|
1358
1381
|
attr_accessor trace_id: ::String
|
|
1359
1382
|
attr_accessor devices: ::Array[Types::Device]
|
|
1360
1383
|
attr_accessor matter_endpoint: Types::MatterEndpoint
|
|
1361
|
-
SENSITIVE: [:user_id, :
|
|
1384
|
+
SENSITIVE: [:user_id, :message, :connector_device_id]
|
|
1362
1385
|
end
|
|
1363
1386
|
|
|
1364
1387
|
class SendConnectorEventResponse
|
|
@@ -1409,6 +1432,7 @@ module Aws::IoTManagedIntegrations
|
|
|
1409
1432
|
attr_accessor authentication_material_type: ("ZWAVE_INSTALL_CODE")
|
|
1410
1433
|
attr_accessor client_token: ::String
|
|
1411
1434
|
attr_accessor tags: ::Hash[::String, ::String]
|
|
1435
|
+
attr_accessor connector_device_id_list: ::Array[::String]
|
|
1412
1436
|
attr_accessor protocol: ("ZWAVE" | "ZIGBEE" | "CUSTOM")
|
|
1413
1437
|
attr_accessor end_device_identifier: ::String
|
|
1414
1438
|
SENSITIVE: [:authentication_material, :tags]
|