aws-sdk-iot 1.145.0 → 1.146.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-iot/client.rb +6 -1
- data/lib/aws-sdk-iot/client_api.rb +7 -0
- data/lib/aws-sdk-iot/types.rb +7 -1
- data/lib/aws-sdk-iot.rb +1 -1
- data/sig/client.rbs +2 -1
- data/sig/types.rbs +1 -0
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e90a1498263eca15e167a5694ed533499f51f30234462c1b30b80edf9abcb17b
|
4
|
+
data.tar.gz: 70c0c25327437c8eb32d8b9477a2efdec38cca3122572da6be24a16478a1ecce
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7a35e187495e548767d48d04800a33006cadab4c003675d5fb5d9b22e6557244909578feb0a11d98e6b7b8c3771ad004f34e9ededec52f4fb090bb1fb673b6a3
|
7
|
+
data.tar.gz: f79858e507bdddc2f458fa8d3deaf2efa22a93de9eadb8f49f222cb5f5be0887fd5ca52e2d7f66883f933138e220ee86a107eb43b6a2883f370e108c62506d7d
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,11 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.146.0 (2025-02-25)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - AWS IoT - AWS IoT Device Defender adds support for a new Device Defender Audit Check that monitors device certificate age and custom threshold configurations for both the new device certificate age check and existing device certificate expiry check.
|
8
|
+
|
4
9
|
1.145.0 (2025-02-18)
|
5
10
|
------------------
|
6
11
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.146.0
|
data/lib/aws-sdk-iot/client.rb
CHANGED
@@ -5620,6 +5620,8 @@ module Aws::IoT
|
|
5620
5620
|
# resp.audit_notification_target_configurations["AuditNotificationType"].enabled #=> Boolean
|
5621
5621
|
# resp.audit_check_configurations #=> Hash
|
5622
5622
|
# resp.audit_check_configurations["AuditCheckName"].enabled #=> Boolean
|
5623
|
+
# resp.audit_check_configurations["AuditCheckName"].configuration #=> Hash
|
5624
|
+
# resp.audit_check_configurations["AuditCheckName"].configuration["ConfigName"] #=> String
|
5623
5625
|
#
|
5624
5626
|
# @overload describe_account_audit_configuration(params = {})
|
5625
5627
|
# @param [Hash] params ({})
|
@@ -14449,6 +14451,9 @@ module Aws::IoT
|
|
14449
14451
|
# audit_check_configurations: {
|
14450
14452
|
# "AuditCheckName" => {
|
14451
14453
|
# enabled: false,
|
14454
|
+
# configuration: {
|
14455
|
+
# "CERT_AGE_THRESHOLD_IN_DAYS" => "ConfigValue",
|
14456
|
+
# },
|
14452
14457
|
# },
|
14453
14458
|
# },
|
14454
14459
|
# })
|
@@ -16407,7 +16412,7 @@ module Aws::IoT
|
|
16407
16412
|
tracer: tracer
|
16408
16413
|
)
|
16409
16414
|
context[:gem_name] = 'aws-sdk-iot'
|
16410
|
-
context[:gem_version] = '1.
|
16415
|
+
context[:gem_version] = '1.146.0'
|
16411
16416
|
Seahorse::Client::Request.new(handlers, context)
|
16412
16417
|
end
|
16413
16418
|
|
@@ -221,6 +221,7 @@ module Aws::IoT
|
|
221
221
|
Certificates = Shapes::ListShape.new(name: 'Certificates')
|
222
222
|
ChannelName = Shapes::StringShape.new(name: 'ChannelName')
|
223
223
|
CheckCompliant = Shapes::BooleanShape.new(name: 'CheckCompliant')
|
224
|
+
CheckCustomConfiguration = Shapes::MapShape.new(name: 'CheckCustomConfiguration')
|
224
225
|
Cidr = Shapes::StringShape.new(name: 'Cidr')
|
225
226
|
Cidrs = Shapes::ListShape.new(name: 'Cidrs')
|
226
227
|
ClearDefaultAuthorizerRequest = Shapes::StructureShape.new(name: 'ClearDefaultAuthorizerRequest')
|
@@ -266,6 +267,8 @@ module Aws::IoT
|
|
266
267
|
ComparisonOperator = Shapes::StringShape.new(name: 'ComparisonOperator')
|
267
268
|
CompliantChecksCount = Shapes::IntegerShape.new(name: 'CompliantChecksCount')
|
268
269
|
ConfidenceLevel = Shapes::StringShape.new(name: 'ConfidenceLevel')
|
270
|
+
ConfigName = Shapes::StringShape.new(name: 'ConfigName')
|
271
|
+
ConfigValue = Shapes::StringShape.new(name: 'ConfigValue')
|
269
272
|
Configuration = Shapes::StructureShape.new(name: 'Configuration')
|
270
273
|
ConfirmTopicRuleDestinationRequest = Shapes::StructureShape.new(name: 'ConfirmTopicRuleDestinationRequest')
|
271
274
|
ConfirmTopicRuleDestinationResponse = Shapes::StructureShape.new(name: 'ConfirmTopicRuleDestinationResponse')
|
@@ -1649,6 +1652,7 @@ module Aws::IoT
|
|
1649
1652
|
AttributesMap.value = Shapes::ShapeRef.new(shape: Value)
|
1650
1653
|
|
1651
1654
|
AuditCheckConfiguration.add_member(:enabled, Shapes::ShapeRef.new(shape: Enabled, location_name: "enabled"))
|
1655
|
+
AuditCheckConfiguration.add_member(:configuration, Shapes::ShapeRef.new(shape: CheckCustomConfiguration, location_name: "configuration"))
|
1652
1656
|
AuditCheckConfiguration.struct_class = Types::AuditCheckConfiguration
|
1653
1657
|
|
1654
1658
|
AuditCheckConfigurations.key = Shapes::ShapeRef.new(shape: AuditCheckName)
|
@@ -1956,6 +1960,9 @@ module Aws::IoT
|
|
1956
1960
|
|
1957
1961
|
Certificates.member = Shapes::ShapeRef.new(shape: Certificate)
|
1958
1962
|
|
1963
|
+
CheckCustomConfiguration.key = Shapes::ShapeRef.new(shape: ConfigName)
|
1964
|
+
CheckCustomConfiguration.value = Shapes::ShapeRef.new(shape: ConfigValue)
|
1965
|
+
|
1959
1966
|
Cidrs.member = Shapes::ShapeRef.new(shape: Cidr)
|
1960
1967
|
|
1961
1968
|
ClearDefaultAuthorizerRequest.struct_class = Types::ClearDefaultAuthorizerRequest
|
data/lib/aws-sdk-iot/types.rb
CHANGED
@@ -740,8 +740,14 @@ module Aws::IoT
|
|
740
740
|
# True if this audit check is enabled for this account.
|
741
741
|
# @return [Boolean]
|
742
742
|
#
|
743
|
+
# @!attribute [rw] configuration
|
744
|
+
# A structure containing the configName and corresponding configValue
|
745
|
+
# for configuring audit checks.
|
746
|
+
# @return [Hash<String,String>]
|
747
|
+
#
|
743
748
|
class AuditCheckConfiguration < Struct.new(
|
744
|
-
:enabled
|
749
|
+
:enabled,
|
750
|
+
:configuration)
|
745
751
|
SENSITIVE = []
|
746
752
|
include Aws::Structure
|
747
753
|
end
|
data/lib/aws-sdk-iot.rb
CHANGED
data/sig/client.rbs
CHANGED
@@ -4561,7 +4561,8 @@ module Aws
|
|
4561
4561
|
enabled: bool?
|
4562
4562
|
}],
|
4563
4563
|
?audit_check_configurations: Hash[::String, {
|
4564
|
-
enabled: bool
|
4564
|
+
enabled: bool?,
|
4565
|
+
configuration: Hash[("CERT_AGE_THRESHOLD_IN_DAYS" | "CERT_EXPIRATION_THRESHOLD_IN_DAYS"), ::String]?
|
4565
4566
|
}]
|
4566
4567
|
) -> _UpdateAccountAuditConfigurationResponseSuccess
|
4567
4568
|
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateAccountAuditConfigurationResponseSuccess
|
data/sig/types.rbs
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-iot
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.146.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-02-
|
11
|
+
date: 2025-02-25 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|