aws-sdk-iotmanagedintegrations 1.11.0 → 1.12.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 9be42f03863a0bf99ef79faf700bc86b0073b54a4490caedc9f56337d8cd1968
4
- data.tar.gz: 99e1a51f1349dd44d8a527b0e081c9261029b1a25122817c40866386e4f17485
3
+ metadata.gz: a98e0c8b6e017f16c9f041e90b3e7d1d3d6eb260dcd0544b9d73eba0045f139d
4
+ data.tar.gz: 71e2b843673b5abba7ba2b5bbc46248150d6be87248be7b57e62c6def19bf778
5
5
  SHA512:
6
- metadata.gz: 30b306118cd4292f409c36d56bb1f8fea758cd49e53128207c79454a30e3fa8d33c58754844fed51cc2d198e6a2f0d2f5c4a53e47befa061ae1ae8cceaf81dd0
7
- data.tar.gz: fe42071a11ce71d56ead05bab0a333a871830b14099cd208006ec82a939b315619a550bded41ec2be7a8b3585808e028e142042964cdc42cb799d6bd4a7bdf13
6
+ metadata.gz: 9b1d012cb8110403559c4d1e22052ced3b9d60cb2a1232ad10d5c0e4a3f2437584edea9337926923046232d7c1bfb531030f05e10b582a554f5447267ef703be
7
+ data.tar.gz: 646b7d43834d943ba241dfe4d47f93304ed95ffcc2b2748128a3987064643b292735f6d5e4f835bd567bee1805e7d97b0d4c1f03f9e70d23afbf5ae352f0cdf6
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.12.0 (2025-10-30)
5
+ ------------------
6
+
7
+ * Feature - Add a new GetManagedThingCertificate API to expose Iot ManagedIntegrations (MI) device certificate, and add "-" support for name, properties, actions and events in the CapabilityReportCapability object.
8
+
4
9
  1.11.0 (2025-10-24)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.11.0
1
+ 1.12.0
@@ -713,9 +713,12 @@ module Aws::IoTManagedIntegrations
713
713
  req.send_request(options)
714
714
  end
715
715
 
716
- # Create a product credential locker. This operation will trigger the
717
- # creation of all the manufacturing resources including the Wi-Fi setup
718
- # key pair and device certificate.
716
+ # Create a credential locker.
717
+ #
718
+ # <note markdown="1"> This operation will not trigger the creation of all the manufacturing
719
+ # resources.
720
+ #
721
+ # </note>
719
722
  #
720
723
  # @option params [String] :name
721
724
  # The name of the credential locker.
@@ -762,8 +765,10 @@ module Aws::IoTManagedIntegrations
762
765
  req.send_request(options)
763
766
  end
764
767
 
765
- # Create a destination. IoT managed integrations uses the destination to
766
- # determine where to deliver notifications for a device.
768
+ # Create a notification destination such as Kinesis Data Streams that
769
+ # receive events and notifications from Managed integrations. Managed
770
+ # integrations uses the destination to determine where to deliver
771
+ # notifications.
767
772
  #
768
773
  # @option params [required, String] :delivery_destination_arn
769
774
  # The Amazon Resource Name (ARN) of the customer-managed destination.
@@ -868,7 +873,7 @@ module Aws::IoTManagedIntegrations
868
873
 
869
874
  # Creates a managed thing. A managed thing contains the device
870
875
  # identifier, protocol supported, and capabilities of the device in a
871
- # protocol-specific format.
876
+ # data model format defined by Managed integrations.
872
877
  #
873
878
  # @option params [required, String] :role
874
879
  # The type of device used. This will be the hub controller, cloud
@@ -1060,7 +1065,7 @@ module Aws::IoTManagedIntegrations
1060
1065
  req.send_request(options)
1061
1066
  end
1062
1067
 
1063
- # Create an over-the-air (OTA) task to update a device.
1068
+ # Create an over-the-air (OTA) task to target a device.
1064
1069
  #
1065
1070
  # @option params [String] :description
1066
1071
  # The description of the over-the-air (OTA) task.
@@ -1297,7 +1302,13 @@ module Aws::IoTManagedIntegrations
1297
1302
  req.send_request(options)
1298
1303
  end
1299
1304
 
1300
- # Remove a third party account and related devices from an end user.
1305
+ # Remove a third-party account association for an end user.
1306
+ #
1307
+ # <note markdown="1"> You must first call the `DeregisterAccountAssociation` to remove the
1308
+ # connection between the managed thing and the third-party account
1309
+ # before calling the `DeleteAccountAssociation` API.
1310
+ #
1311
+ # </note>
1301
1312
  #
1302
1313
  # @option params [required, String] :account_association_id
1303
1314
  # The unique identifier of the account association to be deleted.
@@ -1337,8 +1348,13 @@ module Aws::IoTManagedIntegrations
1337
1348
  req.send_request(options)
1338
1349
  end
1339
1350
 
1340
- # Delete a connector destination for connecting a cloud-to-cloud (C2C)
1341
- # connector to the customer's Amazon Web Services account.
1351
+ # Delete a connector destination linked to a cloud-to-cloud (C2C)
1352
+ # connector.
1353
+ #
1354
+ # <note markdown="1"> Deletion can't be done if the account association has used this
1355
+ # connector destination.
1356
+ #
1357
+ # </note>
1342
1358
  #
1343
1359
  # @option params [required, String] :identifier
1344
1360
  # The identifier of the connector destination.
@@ -1383,7 +1399,7 @@ module Aws::IoTManagedIntegrations
1383
1399
  req.send_request(options)
1384
1400
  end
1385
1401
 
1386
- # Deletes a customer-managed destination specified by id.
1402
+ # Deletes a notification destination specified by name.
1387
1403
  #
1388
1404
  # @option params [required, String] :name
1389
1405
  # The id of the customer-managed destination.
@@ -1423,9 +1439,10 @@ module Aws::IoTManagedIntegrations
1423
1439
  req.send_request(options)
1424
1440
  end
1425
1441
 
1426
- # Delete a managed thing. If a controller is deleted, all of the devices
1427
- # connected to it will have their status changed to `PENDING`. It is not
1428
- # possible to remove a cloud device.
1442
+ # Delete a managed thing. For direct-connected and hub-connected devices
1443
+ # connecting with Managed integrations via a controller, all of the
1444
+ # devices connected to it will have their status changed to `PENDING`.
1445
+ # It is not possible to remove a cloud-to-cloud device.
1429
1446
  #
1430
1447
  # @option params [required, String] :identifier
1431
1448
  # The id of the managed thing.
@@ -1532,8 +1549,7 @@ module Aws::IoTManagedIntegrations
1532
1549
  req.send_request(options)
1533
1550
  end
1534
1551
 
1535
- # Deregisters an account association, removing the connection between a
1536
- # managed thing and a third-party account.
1552
+ # Deregister an account association from a managed thing.
1537
1553
  #
1538
1554
  # @option params [required, String] :managed_thing_id
1539
1555
  # The identifier of the managed thing to be deregistered from the
@@ -1602,7 +1618,7 @@ module Aws::IoTManagedIntegrations
1602
1618
  req.send_request(options)
1603
1619
  end
1604
1620
 
1605
- # Gets all the information about a connector for a connector developer.
1621
+ # Get configuration details for a cloud connector.
1606
1622
  #
1607
1623
  # @option params [required, String] :identifier
1608
1624
  # The identifier of the C2C connector.
@@ -1679,8 +1695,8 @@ module Aws::IoTManagedIntegrations
1679
1695
  req.send_request(options)
1680
1696
  end
1681
1697
 
1682
- # Get a connector destination of a cloud-to-cloud (C2C) connector
1683
- # connecting to a customer's Amazon Web Services account.
1698
+ # Get connector destination details linked to a cloud-to-cloud (C2C)
1699
+ # connector.
1684
1700
  #
1685
1701
  # @option params [required, String] :identifier
1686
1702
  # The identifier of the C2C connector destination.
@@ -1809,7 +1825,7 @@ module Aws::IoTManagedIntegrations
1809
1825
  req.send_request(options)
1810
1826
  end
1811
1827
 
1812
- # Gets a destination by ID.
1828
+ # Gets a destination by name.
1813
1829
  #
1814
1830
  # @option params [required, String] :name
1815
1831
  # The name of the customer-managed destination.
@@ -1946,7 +1962,8 @@ module Aws::IoTManagedIntegrations
1946
1962
  req.send_request(options)
1947
1963
  end
1948
1964
 
1949
- # Get the attributes and capabilities associated with a managed thing.
1965
+ # Get details of a managed thing including its attributes and
1966
+ # capabilities.
1950
1967
  #
1951
1968
  # @option params [required, String] :identifier
1952
1969
  # The id of the managed thing.
@@ -2069,6 +2086,47 @@ module Aws::IoTManagedIntegrations
2069
2086
  req.send_request(options)
2070
2087
  end
2071
2088
 
2089
+ # Retrieves the certificate PEM for a managed IoT thing.
2090
+ #
2091
+ # @option params [required, String] :identifier
2092
+ # The identifier of the managed thing.
2093
+ #
2094
+ # @return [Types::GetManagedThingCertificateResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2095
+ #
2096
+ # * {Types::GetManagedThingCertificateResponse#managed_thing_id #managed_thing_id} => String
2097
+ # * {Types::GetManagedThingCertificateResponse#certificate_pem #certificate_pem} => String
2098
+ #
2099
+ #
2100
+ # @example Example: Get managed thing certificate
2101
+ #
2102
+ # resp = client.get_managed_thing_certificate({
2103
+ # identifier: "example-managed-thing-id",
2104
+ # })
2105
+ #
2106
+ # resp.to_h outputs the following:
2107
+ # {
2108
+ # certificate_pem: "-----BEGIN CERTIFICATE-----\nMIIBkTCB+wIJAKHHH...\n-----END CERTIFICATE-----",
2109
+ # managed_thing_id: "example-managed-thing-id",
2110
+ # }
2111
+ #
2112
+ # @example Request syntax with placeholder values
2113
+ #
2114
+ # resp = client.get_managed_thing_certificate({
2115
+ # identifier: "ManagedThingId", # required
2116
+ # })
2117
+ #
2118
+ # @example Response structure
2119
+ #
2120
+ # resp.managed_thing_id #=> String
2121
+ # resp.certificate_pem #=> String
2122
+ #
2123
+ # @overload get_managed_thing_certificate(params = {})
2124
+ # @param [Hash] params ({})
2125
+ def get_managed_thing_certificate(params = {}, options = {})
2126
+ req = build_request(:get_managed_thing_certificate, params)
2127
+ req.send_request(options)
2128
+ end
2129
+
2072
2130
  # Get the connectivity status of a managed thing.
2073
2131
  #
2074
2132
  # @option params [required, String] :identifier
@@ -2169,7 +2227,7 @@ module Aws::IoTManagedIntegrations
2169
2227
  req.send_request(options)
2170
2228
  end
2171
2229
 
2172
- # Get a notification configuration.
2230
+ # Get a notification configuration for a specified event type.
2173
2231
  #
2174
2232
  # @option params [required, String] :event_type
2175
2233
  # The type of event triggering a device notification to the
@@ -2205,7 +2263,7 @@ module Aws::IoTManagedIntegrations
2205
2263
  req.send_request(options)
2206
2264
  end
2207
2265
 
2208
- # Get the over-the-air (OTA) task.
2266
+ # Get details of the over-the-air (OTA) task by its task id.
2209
2267
  #
2210
2268
  # @option params [required, String] :identifier
2211
2269
  # The over-the-air (OTA) task id.
@@ -2363,8 +2421,7 @@ module Aws::IoTManagedIntegrations
2363
2421
  req.send_request(options)
2364
2422
  end
2365
2423
 
2366
- # Get the runtime log configuration for a specific managed thing or for
2367
- # all managed things as a group.
2424
+ # Get the runtime log configuration for a specific managed thing.
2368
2425
  #
2369
2426
  # @option params [required, String] :managed_thing_id
2370
2427
  # The id for a managed thing.
@@ -2493,7 +2550,8 @@ module Aws::IoTManagedIntegrations
2493
2550
  req.send_request(options)
2494
2551
  end
2495
2552
 
2496
- # Returns a list of connectors based on permissions.
2553
+ # Returns a list of connectors filtered by its Lambda Amazon Resource
2554
+ # Name (ARN) and `type`.
2497
2555
  #
2498
2556
  # @option params [String] :type
2499
2557
  # The type of cloud connectors to filter by when listing available
@@ -2665,7 +2723,7 @@ module Aws::IoTManagedIntegrations
2665
2723
  req.send_request(options)
2666
2724
  end
2667
2725
 
2668
- # List all destination names under one Amazon Web Services account.
2726
+ # List all notification destinations.
2669
2727
  #
2670
2728
  # @option params [String] :next_token
2671
2729
  # A token that can be used to retrieve the next set of results.
@@ -3525,8 +3583,7 @@ module Aws::IoTManagedIntegrations
3525
3583
  req.send_request(options)
3526
3584
  end
3527
3585
 
3528
- # Reset a runtime log configuration for a specific managed thing or for
3529
- # all managed things as a group.
3586
+ # Reset a runtime log configuration for a specific managed thing.
3530
3587
  #
3531
3588
  # @option params [required, String] :managed_thing_id
3532
3589
  # The id of a managed thing.
@@ -3603,9 +3660,9 @@ module Aws::IoTManagedIntegrations
3603
3660
  # </note>
3604
3661
  #
3605
3662
  # @option params [String] :trace_id
3606
- # The trace request identifier used to correlate a command request and
3607
- # response. This is specified by the device owner, but will be generated
3608
- # by IoT managed integrations if not provided by the device owner.
3663
+ # The trace request identifier. This is generated by IoT managed
3664
+ # integrations and can be used to trace this command and its related
3665
+ # operations in CloudWatch.
3609
3666
  #
3610
3667
  # @option params [Array<Types::Device>] :devices
3611
3668
  # The list of devices.
@@ -3802,8 +3859,8 @@ module Aws::IoTManagedIntegrations
3802
3859
 
3803
3860
  # This API is used to start device discovery for hub-connected and
3804
3861
  # third-party-connected devices. The authentication material (install
3805
- # code) is passed as a message to the controller telling it to start the
3806
- # discovery.
3862
+ # code) is delivered as a message to the controller instructing it to
3863
+ # start the discovery.
3807
3864
  #
3808
3865
  # @option params [required, String] :discovery_type
3809
3866
  # The discovery type supporting the type of device to be discovered in
@@ -4054,7 +4111,7 @@ module Aws::IoTManagedIntegrations
4054
4111
  req.send_request(options)
4055
4112
  end
4056
4113
 
4057
- # Update a destination specified by id.
4114
+ # Update a destination specified by name.
4058
4115
  #
4059
4116
  # @option params [required, String] :name
4060
4117
  # The name of the customer-managed destination.
@@ -4287,7 +4344,7 @@ module Aws::IoTManagedIntegrations
4287
4344
  tracer: tracer
4288
4345
  )
4289
4346
  context[:gem_name] = 'aws-sdk-iotmanagedintegrations'
4290
- context[:gem_version] = '1.11.0'
4347
+ context[:gem_version] = '1.12.0'
4291
4348
  Seahorse::Client::Request.new(handlers, context)
4292
4349
  end
4293
4350
 
@@ -62,6 +62,7 @@ module Aws::IoTManagedIntegrations
62
62
  CapabilitySchemaItem = Shapes::StructureShape.new(name: 'CapabilitySchemaItem')
63
63
  CapabilitySchemas = Shapes::ListShape.new(name: 'CapabilitySchemas')
64
64
  CapabilityVersion = Shapes::StringShape.new(name: 'CapabilityVersion')
65
+ CertificatePem = Shapes::StringShape.new(name: 'CertificatePem')
65
66
  ClaimCertificate = Shapes::StringShape.new(name: 'ClaimCertificate')
66
67
  ClaimCertificatePrivateKey = Shapes::StringShape.new(name: 'ClaimCertificatePrivateKey')
67
68
  Classification = Shapes::StringShape.new(name: 'Classification')
@@ -215,6 +216,8 @@ module Aws::IoTManagedIntegrations
215
216
  GetHubConfigurationResponse = Shapes::StructureShape.new(name: 'GetHubConfigurationResponse')
216
217
  GetManagedThingCapabilitiesRequest = Shapes::StructureShape.new(name: 'GetManagedThingCapabilitiesRequest')
217
218
  GetManagedThingCapabilitiesResponse = Shapes::StructureShape.new(name: 'GetManagedThingCapabilitiesResponse')
219
+ GetManagedThingCertificateRequest = Shapes::StructureShape.new(name: 'GetManagedThingCertificateRequest')
220
+ GetManagedThingCertificateResponse = Shapes::StructureShape.new(name: 'GetManagedThingCertificateResponse')
218
221
  GetManagedThingConnectivityDataRequest = Shapes::StructureShape.new(name: 'GetManagedThingConnectivityDataRequest')
219
222
  GetManagedThingConnectivityDataResponse = Shapes::StructureShape.new(name: 'GetManagedThingConnectivityDataResponse')
220
223
  GetManagedThingMetaDataRequest = Shapes::StructureShape.new(name: 'GetManagedThingMetaDataRequest')
@@ -951,6 +954,13 @@ module Aws::IoTManagedIntegrations
951
954
  GetManagedThingCapabilitiesResponse.add_member(:capability_report, Shapes::ShapeRef.new(shape: CapabilityReport, location_name: "CapabilityReport"))
952
955
  GetManagedThingCapabilitiesResponse.struct_class = Types::GetManagedThingCapabilitiesResponse
953
956
 
957
+ GetManagedThingCertificateRequest.add_member(:identifier, Shapes::ShapeRef.new(shape: ManagedThingId, required: true, location: "uri", location_name: "Identifier"))
958
+ GetManagedThingCertificateRequest.struct_class = Types::GetManagedThingCertificateRequest
959
+
960
+ GetManagedThingCertificateResponse.add_member(:managed_thing_id, Shapes::ShapeRef.new(shape: ManagedThingId, location_name: "ManagedThingId"))
961
+ GetManagedThingCertificateResponse.add_member(:certificate_pem, Shapes::ShapeRef.new(shape: CertificatePem, location_name: "CertificatePem"))
962
+ GetManagedThingCertificateResponse.struct_class = Types::GetManagedThingCertificateResponse
963
+
954
964
  GetManagedThingConnectivityDataRequest.add_member(:identifier, Shapes::ShapeRef.new(shape: ManagedThingId, required: true, location: "uri", location_name: "Identifier"))
955
965
  GetManagedThingConnectivityDataRequest.struct_class = Types::GetManagedThingConnectivityDataRequest
956
966
 
@@ -1721,6 +1731,7 @@ module Aws::IoTManagedIntegrations
1721
1731
  o.errors << Shapes::ShapeRef.new(shape: ValidationException)
1722
1732
  o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
1723
1733
  o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
1734
+ o.errors << Shapes::ShapeRef.new(shape: UnauthorizedException)
1724
1735
  o.errors << Shapes::ShapeRef.new(shape: ConflictException)
1725
1736
  o.errors << Shapes::ShapeRef.new(shape: ServiceUnavailableException)
1726
1737
  o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
@@ -1749,8 +1760,10 @@ module Aws::IoTManagedIntegrations
1749
1760
  o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
1750
1761
  o.errors << Shapes::ShapeRef.new(shape: ValidationException)
1751
1762
  o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
1763
+ o.errors << Shapes::ShapeRef.new(shape: UnauthorizedException)
1752
1764
  o.errors << Shapes::ShapeRef.new(shape: ConflictException)
1753
1765
  o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
1766
+ o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
1754
1767
  end)
1755
1768
 
1756
1769
  api.add_operation(:create_credential_locker, Seahorse::Model::Operation.new.tap do |o|
@@ -1891,6 +1904,7 @@ module Aws::IoTManagedIntegrations
1891
1904
  o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
1892
1905
  o.errors << Shapes::ShapeRef.new(shape: ValidationException)
1893
1906
  o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
1907
+ o.errors << Shapes::ShapeRef.new(shape: UnauthorizedException)
1894
1908
  o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
1895
1909
  o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
1896
1910
  end)
@@ -2201,6 +2215,21 @@ module Aws::IoTManagedIntegrations
2201
2215
  o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
2202
2216
  end)
2203
2217
 
2218
+ api.add_operation(:get_managed_thing_certificate, Seahorse::Model::Operation.new.tap do |o|
2219
+ o.name = "GetManagedThingCertificate"
2220
+ o.http_method = "GET"
2221
+ o.http_request_uri = "/managed-things-certificate/{Identifier}"
2222
+ o.input = Shapes::ShapeRef.new(shape: GetManagedThingCertificateRequest)
2223
+ o.output = Shapes::ShapeRef.new(shape: GetManagedThingCertificateResponse)
2224
+ o.errors << Shapes::ShapeRef.new(shape: ValidationException)
2225
+ o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
2226
+ o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
2227
+ o.errors << Shapes::ShapeRef.new(shape: UnauthorizedException)
2228
+ o.errors << Shapes::ShapeRef.new(shape: ServiceUnavailableException)
2229
+ o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
2230
+ o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
2231
+ end)
2232
+
2204
2233
  api.add_operation(:get_managed_thing_connectivity_data, Seahorse::Model::Operation.new.tap do |o|
2205
2234
  o.name = "GetManagedThingConnectivityData"
2206
2235
  o.http_method = "POST"
@@ -2857,6 +2886,7 @@ module Aws::IoTManagedIntegrations
2857
2886
  o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
2858
2887
  o.errors << Shapes::ShapeRef.new(shape: ValidationException)
2859
2888
  o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
2889
+ o.errors << Shapes::ShapeRef.new(shape: UnauthorizedException)
2860
2890
  o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
2861
2891
  o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
2862
2892
  end)
@@ -1978,6 +1978,31 @@ module Aws::IoTManagedIntegrations
1978
1978
  include Aws::Structure
1979
1979
  end
1980
1980
 
1981
+ # @!attribute [rw] identifier
1982
+ # The identifier of the managed thing.
1983
+ # @return [String]
1984
+ #
1985
+ class GetManagedThingCertificateRequest < Struct.new(
1986
+ :identifier)
1987
+ SENSITIVE = []
1988
+ include Aws::Structure
1989
+ end
1990
+
1991
+ # @!attribute [rw] managed_thing_id
1992
+ # The identifier of the managed thing.
1993
+ # @return [String]
1994
+ #
1995
+ # @!attribute [rw] certificate_pem
1996
+ # The PEM-encoded certificate for the managed thing.
1997
+ # @return [String]
1998
+ #
1999
+ class GetManagedThingCertificateResponse < Struct.new(
2000
+ :managed_thing_id,
2001
+ :certificate_pem)
2002
+ SENSITIVE = []
2003
+ include Aws::Structure
2004
+ end
2005
+
1981
2006
  # @!attribute [rw] identifier
1982
2007
  # The identifier of a managed thing.
1983
2008
  # @return [String]
@@ -2446,7 +2471,7 @@ module Aws::IoTManagedIntegrations
2446
2471
  # @return [String]
2447
2472
  #
2448
2473
  # @!attribute [rw] id
2449
- # The provisioning profile id..
2474
+ # The provisioning profile id.
2450
2475
  # @return [String]
2451
2476
  #
2452
2477
  # @!attribute [rw] claim_certificate
@@ -4414,10 +4439,9 @@ module Aws::IoTManagedIntegrations
4414
4439
  # @return [String]
4415
4440
  #
4416
4441
  # @!attribute [rw] trace_id
4417
- # The trace request identifier used to correlate a command request and
4418
- # response. This is specified by the device owner, but will be
4419
- # generated by IoT managed integrations if not provided by the device
4420
- # owner.
4442
+ # The trace request identifier. This is generated by IoT managed
4443
+ # integrations and can be used to trace this command and its related
4444
+ # operations in CloudWatch.
4421
4445
  # @return [String]
4422
4446
  #
4423
4447
  # @!attribute [rw] devices
@@ -4483,9 +4507,9 @@ module Aws::IoTManagedIntegrations
4483
4507
  end
4484
4508
 
4485
4509
  # @!attribute [rw] trace_id
4486
- # The trace request identifier. This is specified by the device owner,
4487
- # but will be generated by IoT managed integrations if not provided by
4488
- # the device owner.
4510
+ # The trace request identifier. This is generated by IoT managed
4511
+ # integrations and can be used to trace this command and its related
4512
+ # operations in CloudWatch.
4489
4513
  # @return [String]
4490
4514
  #
4491
4515
  class SendManagedThingCommandResponse < Struct.new(
@@ -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.11.0'
57
+ GEM_VERSION = '1.12.0'
58
58
 
59
59
  end
60
60
 
data/sig/client.rbs CHANGED
@@ -616,6 +616,17 @@ module Aws
616
616
  ) -> _GetManagedThingCapabilitiesResponseSuccess
617
617
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetManagedThingCapabilitiesResponseSuccess
618
618
 
619
+ interface _GetManagedThingCertificateResponseSuccess
620
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetManagedThingCertificateResponse]
621
+ def managed_thing_id: () -> ::String
622
+ def certificate_pem: () -> ::String
623
+ end
624
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IoTManagedIntegrations/Client.html#get_managed_thing_certificate-instance_method
625
+ def get_managed_thing_certificate: (
626
+ identifier: ::String
627
+ ) -> _GetManagedThingCertificateResponseSuccess
628
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetManagedThingCertificateResponseSuccess
629
+
619
630
  interface _GetManagedThingConnectivityDataResponseSuccess
620
631
  include ::Seahorse::Client::_ResponseSuccess[Types::GetManagedThingConnectivityDataResponse]
621
632
  def managed_thing_id: () -> ::String
data/sig/types.rbs CHANGED
@@ -597,6 +597,17 @@ module Aws::IoTManagedIntegrations
597
597
  SENSITIVE: []
598
598
  end
599
599
 
600
+ class GetManagedThingCertificateRequest
601
+ attr_accessor identifier: ::String
602
+ SENSITIVE: []
603
+ end
604
+
605
+ class GetManagedThingCertificateResponse
606
+ attr_accessor managed_thing_id: ::String
607
+ attr_accessor certificate_pem: ::String
608
+ SENSITIVE: []
609
+ end
610
+
600
611
  class GetManagedThingConnectivityDataRequest
601
612
  attr_accessor identifier: ::String
602
613
  SENSITIVE: []
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-iotmanagedintegrations
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.11.0
4
+ version: 1.12.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services