aws-sdk-configservice 1.145.0 → 1.147.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-configservice/client.rb +30 -4
- data/lib/aws-sdk-configservice/client_api.rb +5 -5
- data/lib/aws-sdk-configservice/types.rb +7 -1
- data/lib/aws-sdk-configservice.rb +1 -1
- data/sig/client.rbs +7 -1
- data/sig/types.rbs +1 -0
- 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: e2147316cf147ef41f6c223acf620beb8490475589e1d17c4f829b7414fb7aed
|
|
4
|
+
data.tar.gz: 1637168217e147dd067fb8419bcae90d94b7137f7e859409e1a98a6b987f76f8
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 25e639dfd1525f34299412c5bd3e548f77673afb612a67766453eecd0e0b803812447b42883fb27c9031464f720eba8256f1526ed330e7b19403ed64dd9b86d3
|
|
7
|
+
data.tar.gz: 38c6204145ae32e13da5187274d367f5a3c44d88b4217f6e8f24966ea9a248c5cbc98e2fd77be5fe207b6a7555e2eee834e92b92201eba02f598d29d8e60cee6
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,16 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.147.0 (2026-03-13)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - Fix pagination support for DescribeConformancePackCompliance, and update OrganizationConfigRule InputParameters max length to match ConfigRule.
|
|
8
|
+
|
|
9
|
+
1.146.0 (2026-01-21)
|
|
10
|
+
------------------
|
|
11
|
+
|
|
12
|
+
* Feature - AWS Config Conformance Packs now support tag-on-create through PutConformancePack API.
|
|
13
|
+
|
|
4
14
|
1.145.0 (2026-01-16)
|
|
5
15
|
------------------
|
|
6
16
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.147.0
|
|
@@ -5063,9 +5063,25 @@ module Aws::ConfigService
|
|
|
5063
5063
|
#
|
|
5064
5064
|
# </note>
|
|
5065
5065
|
#
|
|
5066
|
+
# <note markdown="1"> **Tags are added at creation and cannot be updated with this
|
|
5067
|
+
# operation**
|
|
5068
|
+
#
|
|
5069
|
+
# `PutConformancePack` is an idempotent API. Subsequent requests won't
|
|
5070
|
+
# create a duplicate resource if one was already created. If a following
|
|
5071
|
+
# request has different `tags` values, Config will ignore these
|
|
5072
|
+
# differences and treat it as an idempotent request of the previous. In
|
|
5073
|
+
# this case, `tags` will not be updated, even if they are different.
|
|
5074
|
+
#
|
|
5075
|
+
# Use [TagResource][2] and [UntagResource][3] to update tags after
|
|
5076
|
+
# creation.
|
|
5077
|
+
#
|
|
5078
|
+
# </note>
|
|
5079
|
+
#
|
|
5066
5080
|
#
|
|
5067
5081
|
#
|
|
5068
5082
|
# [1]: https://docs.aws.amazon.com/config/latest/developerguide/configlimits.html
|
|
5083
|
+
# [2]: https://docs.aws.amazon.com/config/latest/APIReference/API_TagResource.html
|
|
5084
|
+
# [3]: https://docs.aws.amazon.com/config/latest/APIReference/API_UntagResource.html
|
|
5069
5085
|
#
|
|
5070
5086
|
# @option params [required, String] :conformance_pack_name
|
|
5071
5087
|
# The unique name of the conformance pack you want to deploy.
|
|
@@ -5121,6 +5137,10 @@ module Aws::ConfigService
|
|
|
5121
5137
|
# Systems Manager document (SSM document) and the version of the SSM
|
|
5122
5138
|
# document that is used to create a conformance pack.
|
|
5123
5139
|
#
|
|
5140
|
+
# @option params [Array<Types::Tag>] :tags
|
|
5141
|
+
# The tags for the conformance pack. Each tag consists of a key and an
|
|
5142
|
+
# optional value, both of which you define.
|
|
5143
|
+
#
|
|
5124
5144
|
# @return [Types::PutConformancePackResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
5125
5145
|
#
|
|
5126
5146
|
# * {Types::PutConformancePackResponse#conformance_pack_arn #conformance_pack_arn} => String
|
|
@@ -5143,6 +5163,12 @@ module Aws::ConfigService
|
|
|
5143
5163
|
# document_name: "SSMDocumentName", # required
|
|
5144
5164
|
# document_version: "SSMDocumentVersion",
|
|
5145
5165
|
# },
|
|
5166
|
+
# tags: [
|
|
5167
|
+
# {
|
|
5168
|
+
# key: "TagKey",
|
|
5169
|
+
# value: "TagValue",
|
|
5170
|
+
# },
|
|
5171
|
+
# ],
|
|
5146
5172
|
# })
|
|
5147
5173
|
#
|
|
5148
5174
|
# @example Response structure
|
|
@@ -5416,7 +5442,7 @@ module Aws::ConfigService
|
|
|
5416
5442
|
# organization_managed_rule_metadata: {
|
|
5417
5443
|
# description: "StringWithCharLimit256Min0",
|
|
5418
5444
|
# rule_identifier: "StringWithCharLimit256", # required
|
|
5419
|
-
# input_parameters: "
|
|
5445
|
+
# input_parameters: "StringWithCharLimit1024",
|
|
5420
5446
|
# maximum_execution_frequency: "One_Hour", # accepts One_Hour, Three_Hours, Six_Hours, Twelve_Hours, TwentyFour_Hours
|
|
5421
5447
|
# resource_types_scope: ["StringWithCharLimit256"],
|
|
5422
5448
|
# resource_id_scope: "StringWithCharLimit768",
|
|
@@ -5427,7 +5453,7 @@ module Aws::ConfigService
|
|
|
5427
5453
|
# description: "StringWithCharLimit256Min0",
|
|
5428
5454
|
# lambda_function_arn: "StringWithCharLimit256", # required
|
|
5429
5455
|
# organization_config_rule_trigger_types: ["ConfigurationItemChangeNotification"], # required, accepts ConfigurationItemChangeNotification, OversizedConfigurationItemChangeNotification, ScheduledNotification
|
|
5430
|
-
# input_parameters: "
|
|
5456
|
+
# input_parameters: "StringWithCharLimit1024",
|
|
5431
5457
|
# maximum_execution_frequency: "One_Hour", # accepts One_Hour, Three_Hours, Six_Hours, Twelve_Hours, TwentyFour_Hours
|
|
5432
5458
|
# resource_types_scope: ["StringWithCharLimit256"],
|
|
5433
5459
|
# resource_id_scope: "StringWithCharLimit768",
|
|
@@ -5438,7 +5464,7 @@ module Aws::ConfigService
|
|
|
5438
5464
|
# organization_custom_policy_rule_metadata: {
|
|
5439
5465
|
# description: "StringWithCharLimit256Min0",
|
|
5440
5466
|
# organization_config_rule_trigger_types: ["ConfigurationItemChangeNotification"], # accepts ConfigurationItemChangeNotification, OversizedConfigurationItemChangeNotification
|
|
5441
|
-
# input_parameters: "
|
|
5467
|
+
# input_parameters: "StringWithCharLimit1024",
|
|
5442
5468
|
# maximum_execution_frequency: "One_Hour", # accepts One_Hour, Three_Hours, Six_Hours, Twelve_Hours, TwentyFour_Hours
|
|
5443
5469
|
# resource_types_scope: ["StringWithCharLimit256"],
|
|
5444
5470
|
# resource_id_scope: "StringWithCharLimit768",
|
|
@@ -6612,7 +6638,7 @@ module Aws::ConfigService
|
|
|
6612
6638
|
tracer: tracer
|
|
6613
6639
|
)
|
|
6614
6640
|
context[:gem_name] = 'aws-sdk-configservice'
|
|
6615
|
-
context[:gem_version] = '1.
|
|
6641
|
+
context[:gem_version] = '1.147.0'
|
|
6616
6642
|
Seahorse::Client::Request.new(handlers, context)
|
|
6617
6643
|
end
|
|
6618
6644
|
|
|
@@ -570,7 +570,6 @@ module Aws::ConfigService
|
|
|
570
570
|
String = Shapes::StringShape.new(name: 'String')
|
|
571
571
|
StringWithCharLimit1024 = Shapes::StringShape.new(name: 'StringWithCharLimit1024')
|
|
572
572
|
StringWithCharLimit128 = Shapes::StringShape.new(name: 'StringWithCharLimit128')
|
|
573
|
-
StringWithCharLimit2048 = Shapes::StringShape.new(name: 'StringWithCharLimit2048')
|
|
574
573
|
StringWithCharLimit256 = Shapes::StringShape.new(name: 'StringWithCharLimit256')
|
|
575
574
|
StringWithCharLimit256Min0 = Shapes::StringShape.new(name: 'StringWithCharLimit256Min0')
|
|
576
575
|
StringWithCharLimit64 = Shapes::StringShape.new(name: 'StringWithCharLimit64')
|
|
@@ -1851,7 +1850,7 @@ module Aws::ConfigService
|
|
|
1851
1850
|
|
|
1852
1851
|
OrganizationCustomPolicyRuleMetadata.add_member(:description, Shapes::ShapeRef.new(shape: StringWithCharLimit256Min0, location_name: "Description"))
|
|
1853
1852
|
OrganizationCustomPolicyRuleMetadata.add_member(:organization_config_rule_trigger_types, Shapes::ShapeRef.new(shape: OrganizationConfigRuleTriggerTypeNoSNs, location_name: "OrganizationConfigRuleTriggerTypes"))
|
|
1854
|
-
OrganizationCustomPolicyRuleMetadata.add_member(:input_parameters, Shapes::ShapeRef.new(shape:
|
|
1853
|
+
OrganizationCustomPolicyRuleMetadata.add_member(:input_parameters, Shapes::ShapeRef.new(shape: StringWithCharLimit1024, location_name: "InputParameters"))
|
|
1855
1854
|
OrganizationCustomPolicyRuleMetadata.add_member(:maximum_execution_frequency, Shapes::ShapeRef.new(shape: MaximumExecutionFrequency, location_name: "MaximumExecutionFrequency"))
|
|
1856
1855
|
OrganizationCustomPolicyRuleMetadata.add_member(:resource_types_scope, Shapes::ShapeRef.new(shape: ResourceTypesScope, location_name: "ResourceTypesScope"))
|
|
1857
1856
|
OrganizationCustomPolicyRuleMetadata.add_member(:resource_id_scope, Shapes::ShapeRef.new(shape: StringWithCharLimit768, location_name: "ResourceIdScope"))
|
|
@@ -1864,7 +1863,7 @@ module Aws::ConfigService
|
|
|
1864
1863
|
|
|
1865
1864
|
OrganizationCustomPolicyRuleMetadataNoPolicy.add_member(:description, Shapes::ShapeRef.new(shape: StringWithCharLimit256Min0, location_name: "Description"))
|
|
1866
1865
|
OrganizationCustomPolicyRuleMetadataNoPolicy.add_member(:organization_config_rule_trigger_types, Shapes::ShapeRef.new(shape: OrganizationConfigRuleTriggerTypeNoSNs, location_name: "OrganizationConfigRuleTriggerTypes"))
|
|
1867
|
-
OrganizationCustomPolicyRuleMetadataNoPolicy.add_member(:input_parameters, Shapes::ShapeRef.new(shape:
|
|
1866
|
+
OrganizationCustomPolicyRuleMetadataNoPolicy.add_member(:input_parameters, Shapes::ShapeRef.new(shape: StringWithCharLimit1024, location_name: "InputParameters"))
|
|
1868
1867
|
OrganizationCustomPolicyRuleMetadataNoPolicy.add_member(:maximum_execution_frequency, Shapes::ShapeRef.new(shape: MaximumExecutionFrequency, location_name: "MaximumExecutionFrequency"))
|
|
1869
1868
|
OrganizationCustomPolicyRuleMetadataNoPolicy.add_member(:resource_types_scope, Shapes::ShapeRef.new(shape: ResourceTypesScope, location_name: "ResourceTypesScope"))
|
|
1870
1869
|
OrganizationCustomPolicyRuleMetadataNoPolicy.add_member(:resource_id_scope, Shapes::ShapeRef.new(shape: StringWithCharLimit768, location_name: "ResourceIdScope"))
|
|
@@ -1877,7 +1876,7 @@ module Aws::ConfigService
|
|
|
1877
1876
|
OrganizationCustomRuleMetadata.add_member(:description, Shapes::ShapeRef.new(shape: StringWithCharLimit256Min0, location_name: "Description"))
|
|
1878
1877
|
OrganizationCustomRuleMetadata.add_member(:lambda_function_arn, Shapes::ShapeRef.new(shape: StringWithCharLimit256, required: true, location_name: "LambdaFunctionArn"))
|
|
1879
1878
|
OrganizationCustomRuleMetadata.add_member(:organization_config_rule_trigger_types, Shapes::ShapeRef.new(shape: OrganizationConfigRuleTriggerTypes, required: true, location_name: "OrganizationConfigRuleTriggerTypes"))
|
|
1880
|
-
OrganizationCustomRuleMetadata.add_member(:input_parameters, Shapes::ShapeRef.new(shape:
|
|
1879
|
+
OrganizationCustomRuleMetadata.add_member(:input_parameters, Shapes::ShapeRef.new(shape: StringWithCharLimit1024, location_name: "InputParameters"))
|
|
1881
1880
|
OrganizationCustomRuleMetadata.add_member(:maximum_execution_frequency, Shapes::ShapeRef.new(shape: MaximumExecutionFrequency, location_name: "MaximumExecutionFrequency"))
|
|
1882
1881
|
OrganizationCustomRuleMetadata.add_member(:resource_types_scope, Shapes::ShapeRef.new(shape: ResourceTypesScope, location_name: "ResourceTypesScope"))
|
|
1883
1882
|
OrganizationCustomRuleMetadata.add_member(:resource_id_scope, Shapes::ShapeRef.new(shape: StringWithCharLimit768, location_name: "ResourceIdScope"))
|
|
@@ -1887,7 +1886,7 @@ module Aws::ConfigService
|
|
|
1887
1886
|
|
|
1888
1887
|
OrganizationManagedRuleMetadata.add_member(:description, Shapes::ShapeRef.new(shape: StringWithCharLimit256Min0, location_name: "Description"))
|
|
1889
1888
|
OrganizationManagedRuleMetadata.add_member(:rule_identifier, Shapes::ShapeRef.new(shape: StringWithCharLimit256, required: true, location_name: "RuleIdentifier"))
|
|
1890
|
-
OrganizationManagedRuleMetadata.add_member(:input_parameters, Shapes::ShapeRef.new(shape:
|
|
1889
|
+
OrganizationManagedRuleMetadata.add_member(:input_parameters, Shapes::ShapeRef.new(shape: StringWithCharLimit1024, location_name: "InputParameters"))
|
|
1891
1890
|
OrganizationManagedRuleMetadata.add_member(:maximum_execution_frequency, Shapes::ShapeRef.new(shape: MaximumExecutionFrequency, location_name: "MaximumExecutionFrequency"))
|
|
1892
1891
|
OrganizationManagedRuleMetadata.add_member(:resource_types_scope, Shapes::ShapeRef.new(shape: ResourceTypesScope, location_name: "ResourceTypesScope"))
|
|
1893
1892
|
OrganizationManagedRuleMetadata.add_member(:resource_id_scope, Shapes::ShapeRef.new(shape: StringWithCharLimit768, location_name: "ResourceIdScope"))
|
|
@@ -1940,6 +1939,7 @@ module Aws::ConfigService
|
|
|
1940
1939
|
PutConformancePackRequest.add_member(:delivery_s3_key_prefix, Shapes::ShapeRef.new(shape: DeliveryS3KeyPrefix, location_name: "DeliveryS3KeyPrefix"))
|
|
1941
1940
|
PutConformancePackRequest.add_member(:conformance_pack_input_parameters, Shapes::ShapeRef.new(shape: ConformancePackInputParameters, location_name: "ConformancePackInputParameters"))
|
|
1942
1941
|
PutConformancePackRequest.add_member(:template_ssm_document_details, Shapes::ShapeRef.new(shape: TemplateSSMDocumentDetails, location_name: "TemplateSSMDocumentDetails"))
|
|
1942
|
+
PutConformancePackRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagsList, location_name: "Tags"))
|
|
1943
1943
|
PutConformancePackRequest.struct_class = Types::PutConformancePackRequest
|
|
1944
1944
|
|
|
1945
1945
|
PutConformancePackResponse.add_member(:conformance_pack_arn, Shapes::ShapeRef.new(shape: ConformancePackArn, location_name: "ConformancePackArn"))
|
|
@@ -7093,6 +7093,11 @@ module Aws::ConfigService
|
|
|
7093
7093
|
# document that is used to create a conformance pack.
|
|
7094
7094
|
# @return [Types::TemplateSSMDocumentDetails]
|
|
7095
7095
|
#
|
|
7096
|
+
# @!attribute [rw] tags
|
|
7097
|
+
# The tags for the conformance pack. Each tag consists of a key and an
|
|
7098
|
+
# optional value, both of which you define.
|
|
7099
|
+
# @return [Array<Types::Tag>]
|
|
7100
|
+
#
|
|
7096
7101
|
# @see http://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/PutConformancePackRequest AWS API Documentation
|
|
7097
7102
|
#
|
|
7098
7103
|
class PutConformancePackRequest < Struct.new(
|
|
@@ -7102,7 +7107,8 @@ module Aws::ConfigService
|
|
|
7102
7107
|
:delivery_s3_bucket,
|
|
7103
7108
|
:delivery_s3_key_prefix,
|
|
7104
7109
|
:conformance_pack_input_parameters,
|
|
7105
|
-
:template_ssm_document_details
|
|
7110
|
+
:template_ssm_document_details,
|
|
7111
|
+
:tags)
|
|
7106
7112
|
SENSITIVE = []
|
|
7107
7113
|
include Aws::Structure
|
|
7108
7114
|
end
|
data/sig/client.rbs
CHANGED
|
@@ -1178,7 +1178,13 @@ module Aws
|
|
|
1178
1178
|
?template_ssm_document_details: {
|
|
1179
1179
|
document_name: ::String,
|
|
1180
1180
|
document_version: ::String?
|
|
1181
|
-
}
|
|
1181
|
+
},
|
|
1182
|
+
?tags: Array[
|
|
1183
|
+
{
|
|
1184
|
+
key: ::String?,
|
|
1185
|
+
value: ::String?
|
|
1186
|
+
},
|
|
1187
|
+
]
|
|
1182
1188
|
) -> _PutConformancePackResponseSuccess
|
|
1183
1189
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _PutConformancePackResponseSuccess
|
|
1184
1190
|
|
data/sig/types.rbs
CHANGED
|
@@ -1695,6 +1695,7 @@ module Aws::ConfigService
|
|
|
1695
1695
|
attr_accessor delivery_s3_key_prefix: ::String
|
|
1696
1696
|
attr_accessor conformance_pack_input_parameters: ::Array[Types::ConformancePackInputParameter]
|
|
1697
1697
|
attr_accessor template_ssm_document_details: Types::TemplateSSMDocumentDetails
|
|
1698
|
+
attr_accessor tags: ::Array[Types::Tag]
|
|
1698
1699
|
SENSITIVE: []
|
|
1699
1700
|
end
|
|
1700
1701
|
|