aws-sdk-configservice 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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 00f8db5b88438c80b3328d21b13ef973d6c53d61e7bc440c8aac6cd1e2df718c
4
- data.tar.gz: aca273d65cb933c3a593e6a2a4d147d684fe8acf6c63459f97f21a1e1530dfb5
3
+ metadata.gz: cc9ec10d0f6aceb71844f60f3a1bd662ad0873123d91a926c081c453538d0708
4
+ data.tar.gz: 23bc8feb08eb718d89c9841f58c0b0901defe1f32c9907c8aa4a22841abfd8d2
5
5
  SHA512:
6
- metadata.gz: 7cc29368ad9954e9dbc1d9659cffec39f1b2b19226eaffa57d880b2172648b596d4579c4656c7d0cf47e1c3f0f01b935ddf204170ffdbfbd04239430e347d21d
7
- data.tar.gz: a946b2101ea5b47eb0fcc9dddb8ddc438eb7e367e8cd00d6e4305fc59057bc71983082559e6aa4e1f4e0d440561799593fd0b0b765ea7f51894963d88e3f1fe2
6
+ metadata.gz: 589799ec854c5a1ebb632eb31df62b6cbf2f69d1f0b11da25b831448f4119512ae24f980a4b7d4d38565c652aecb82f3f04fa89d07376fbb42a111780704e703
7
+ data.tar.gz: 4a034e1826e47544efe86971a4f43d1abfe2fdaf43752fced6cfc7ef411523ac3e08d4178c1e1e48ebe6b55ddb991e1c4446cca96738842020f4d4c845a6b930
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.146.0 (2026-01-21)
5
+ ------------------
6
+
7
+ * Feature - AWS Config Conformance Packs now support tag-on-create through PutConformancePack API.
8
+
4
9
  1.145.0 (2026-01-16)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.145.0
1
+ 1.146.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
@@ -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.145.0'
6641
+ context[:gem_version] = '1.146.0'
6616
6642
  Seahorse::Client::Request.new(handlers, context)
6617
6643
  end
6618
6644
 
@@ -1940,6 +1940,7 @@ module Aws::ConfigService
1940
1940
  PutConformancePackRequest.add_member(:delivery_s3_key_prefix, Shapes::ShapeRef.new(shape: DeliveryS3KeyPrefix, location_name: "DeliveryS3KeyPrefix"))
1941
1941
  PutConformancePackRequest.add_member(:conformance_pack_input_parameters, Shapes::ShapeRef.new(shape: ConformancePackInputParameters, location_name: "ConformancePackInputParameters"))
1942
1942
  PutConformancePackRequest.add_member(:template_ssm_document_details, Shapes::ShapeRef.new(shape: TemplateSSMDocumentDetails, location_name: "TemplateSSMDocumentDetails"))
1943
+ PutConformancePackRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagsList, location_name: "Tags"))
1943
1944
  PutConformancePackRequest.struct_class = Types::PutConformancePackRequest
1944
1945
 
1945
1946
  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
@@ -54,7 +54,7 @@ module Aws::ConfigService
54
54
  autoload :EndpointProvider, 'aws-sdk-configservice/endpoint_provider'
55
55
  autoload :Endpoints, 'aws-sdk-configservice/endpoints'
56
56
 
57
- GEM_VERSION = '1.145.0'
57
+ GEM_VERSION = '1.146.0'
58
58
 
59
59
  end
60
60
 
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
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-configservice
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.145.0
4
+ version: 1.146.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services