aws-sdk-configservice 1.60.0 → 1.61.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: f08b6639b13c566b7650d3df64f2a25d4db08dc00c890327b08cde981e39c77d
4
- data.tar.gz: 6a7d3513c1e6d5f378a4a45f7cb679b016dba8b17c8dc05326997e1ed1764d50
3
+ metadata.gz: 44a7e4818e62c350b28c1331e2cccb360d91108702bcb60786a72b9d71b01d86
4
+ data.tar.gz: 4d2c8bfc649c978c5a4a9fd1840fa345ab0e189974fc303879db56c968a4eec0
5
5
  SHA512:
6
- metadata.gz: 97421826b4a187acc892c8b79e0c5c6b91121ce4b5cc6e7e0fe646f091667492af08f4d4301711ef5ef777ec3741132a977c52f7a08538f5639932512778bafa
7
- data.tar.gz: 68509df5f57a15664571ae23450da94261fc2e80c98674a43f81a5c92744bebab5e7568f3a7fde77f082c0fb1576cea8f361168df0219c317dd148138909c173
6
+ metadata.gz: 4f04069b23fcf2033035f02e40a2511ba14457d8df9620595e8a6b53827b87f7d28eae4c74b74cb479f507851e6e39bb49f51153cea5a17b8f73286457d09d6b
7
+ data.tar.gz: e6c8c6d7c62b6d779358df4e53030261f49ebf922b3f074abc3f9cb52c91e8e4dd73c26c42a1869e7bd679ee539f06ea4dbcb8577aef6978523624a4e4cf90a6
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.61.0 (2021-04-14)
5
+ ------------------
6
+
7
+ * Feature - Add exception for DeleteRemediationConfiguration and DescribeRemediationExecutionStatus
8
+
4
9
  1.60.0 (2021-03-30)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.60.0
1
+ 1.61.0
@@ -48,6 +48,6 @@ require_relative 'aws-sdk-configservice/customizations'
48
48
  # @!group service
49
49
  module Aws::ConfigService
50
50
 
51
- GEM_VERSION = '1.60.0'
51
+ GEM_VERSION = '1.61.0'
52
52
 
53
53
  end
@@ -1013,7 +1013,9 @@ module Aws::ConfigService
1013
1013
 
1014
1014
  # Returns a list of the conformance packs and their associated
1015
1015
  # compliance status with the count of compliant and noncompliant AWS
1016
- # Config rules within each conformance pack.
1016
+ # Config rules within each conformance pack. Also returns the total rule
1017
+ # count which includes compliant rules, noncompliant rules, and rules
1018
+ # that cannot be evaluated due to insufficient data.
1017
1019
  #
1018
1020
  # <note markdown="1"> The results can return an empty result page, but if you have a
1019
1021
  # `nextToken`, the results are displayed on the next page.
@@ -1028,8 +1030,9 @@ module Aws::ConfigService
1028
1030
  # object.
1029
1031
  #
1030
1032
  # @option params [Integer] :limit
1031
- # The maximum number of conformance packs details returned on each page.
1032
- # The default is maximum. If you specify 0, AWS Config uses the default.
1033
+ # The maximum number of conformance packs compliance details returned on
1034
+ # each page. The default is maximum. If you specify 0, AWS Config uses
1035
+ # the default.
1033
1036
  #
1034
1037
  # @option params [String] :next_token
1035
1038
  # The `nextToken` string returned on a previous page that you use to get
@@ -2535,8 +2538,8 @@ module Aws::ConfigService
2535
2538
  end
2536
2539
 
2537
2540
  # Returns the count of compliant and noncompliant conformance packs
2538
- # across all AWS Accounts and AWS Regions. You can filter based on AWS
2539
- # Account ID or AWS Region.
2541
+ # across all AWS Accounts and AWS Regions in an aggregator. You can
2542
+ # filter based on AWS Account ID or AWS Region.
2540
2543
  #
2541
2544
  # <note markdown="1"> The results can return an empty result page, but if you have a
2542
2545
  # nextToken, the results are displayed on the next page.
@@ -5004,7 +5007,7 @@ module Aws::ConfigService
5004
5007
  params: params,
5005
5008
  config: config)
5006
5009
  context[:gem_name] = 'aws-sdk-configservice'
5007
- context[:gem_version] = '1.60.0'
5010
+ context[:gem_version] = '1.61.0'
5008
5011
  Seahorse::Client::Request.new(handlers, context)
5009
5012
  end
5010
5013
 
@@ -2132,6 +2132,7 @@ module Aws::ConfigService
2132
2132
  o.errors << Shapes::ShapeRef.new(shape: NoSuchRemediationConfigurationException)
2133
2133
  o.errors << Shapes::ShapeRef.new(shape: RemediationInProgressException)
2134
2134
  o.errors << Shapes::ShapeRef.new(shape: InsufficientPermissionsException)
2135
+ o.errors << Shapes::ShapeRef.new(shape: InvalidParameterValueException)
2135
2136
  end)
2136
2137
 
2137
2138
  api.add_operation(:delete_remediation_exceptions, Seahorse::Model::Operation.new.tap do |o|
@@ -2448,6 +2449,7 @@ module Aws::ConfigService
2448
2449
  o.output = Shapes::ShapeRef.new(shape: DescribeRemediationExecutionStatusResponse)
2449
2450
  o.errors << Shapes::ShapeRef.new(shape: NoSuchRemediationConfigurationException)
2450
2451
  o.errors << Shapes::ShapeRef.new(shape: InvalidNextTokenException)
2452
+ o.errors << Shapes::ShapeRef.new(shape: InvalidParameterValueException)
2451
2453
  o[:pager] = Aws::Pager.new(
2452
2454
  limit_key: "limit",
2453
2455
  tokens: {
@@ -82,17 +82,14 @@ module Aws::ConfigService
82
82
  # whether a conformance pack is compliant based on the name of the
83
83
  # conformance pack, account ID, and region.
84
84
  #
85
- # A conformance pack is compliant if all of the rules in that
86
- # conformance packs are compliant. It is noncompliant if any of the
87
- # rules are not compliant.
88
- #
89
- # <note markdown="1"> If a conformance pack has rules that return INSUFFICIENT\_DATA, the
90
- # conformance pack returns INSUFFICIENT\_DATA only if all the rules
91
- # within that conformance pack return INSUFFICIENT\_DATA. If some of the
92
- # rules in a conformance pack are compliant and others return
93
- # INSUFFICIENT\_DATA, the conformance pack shows compliant.
94
- #
95
- # </note>
85
+ # A conformance pack is compliant if all of the rules in a conformance
86
+ # packs are compliant. It is noncompliant if any of the rules are not
87
+ # compliant. The compliance status of a conformance pack is
88
+ # INSUFFICIENT\_DATA only if all rules within a conformance pack cannot
89
+ # be evaluated due to insufficient data. If some of the rules in a
90
+ # conformance pack are compliant but the compliance status of other
91
+ # rules in that same conformance pack is INSUFFICIENT\_DATA, the
92
+ # conformance pack shows compliant.
96
93
  #
97
94
  # @!attribute [rw] conformance_pack_name
98
95
  # The name of the conformance pack.
@@ -142,9 +139,19 @@ module Aws::ConfigService
142
139
  end
143
140
 
144
141
  # Provides the number of compliant and noncompliant rules within a
145
- # conformance pack. Also provides the total count of compliant rules,
146
- # noncompliant rules, and the rules that do not have any applicable
147
- # resources to evaluate upon resulting in insufficient data.
142
+ # conformance pack. Also provides the compliance status of the
143
+ # conformance pack and the total rule count which includes compliant
144
+ # rules, noncompliant rules, and rules that cannot be evaluated due to
145
+ # insufficient data.
146
+ #
147
+ # A conformance pack is compliant if all of the rules in a conformance
148
+ # packs are compliant. It is noncompliant if any of the rules are not
149
+ # compliant. The compliance status of a conformance pack is
150
+ # INSUFFICIENT\_DATA only if all rules within a conformance pack cannot
151
+ # be evaluated due to insufficient data. If some of the rules in a
152
+ # conformance pack are compliant but the compliance status of other
153
+ # rules in that same conformance pack is INSUFFICIENT\_DATA, the
154
+ # conformance pack shows compliant.
148
155
  #
149
156
  # @!attribute [rw] compliance_type
150
157
  # The compliance status of the conformance pack.
@@ -2478,9 +2485,9 @@ module Aws::ConfigService
2478
2485
  # @return [Types::AggregateConformancePackComplianceFilters]
2479
2486
  #
2480
2487
  # @!attribute [rw] limit
2481
- # The maximum number of conformance packs details returned on each
2482
- # page. The default is maximum. If you specify 0, AWS Config uses the
2483
- # default.
2488
+ # The maximum number of conformance packs compliance details returned
2489
+ # on each page. The default is maximum. If you specify 0, AWS Config
2490
+ # uses the default.
2484
2491
  # @return [Integer]
2485
2492
  #
2486
2493
  # @!attribute [rw] next_token
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-configservice
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.60.0
4
+ version: 1.61.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: 2021-03-30 00:00:00.000000000 Z
11
+ date: 2021-04-14 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core
@@ -84,7 +84,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
84
84
  version: '0'
85
85
  requirements: []
86
86
  rubyforge_project:
87
- rubygems_version: 2.7.6.2
87
+ rubygems_version: 2.7.6.3
88
88
  signing_key:
89
89
  specification_version: 4
90
90
  summary: AWS SDK for Ruby - Config Service