aws-sdk-configservice 1.60.0 → 1.64.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 +20 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-configservice.rb +1 -1
- data/lib/aws-sdk-configservice/client.rb +75 -6
- data/lib/aws-sdk-configservice/client_api.rb +197 -1
- data/lib/aws-sdk-configservice/types.rb +24 -17
- metadata +5 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 73f1c637c01225ccfede3d4a17a14bbb09b92dc42c7189d0ccaae61036c18fe8
|
4
|
+
data.tar.gz: 75f00609a39f02afaf8b0dcfdcaa36baa1294c5ef3e27e97167a30ccd8364c22
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: bff260a4f4148dce8788eb4bcc82fc0f849c2d1618136d237c0071f1f97d4e9cb8995d0ffe81e4f0b8797f9bfb030d63c5434169b5d68b196e2a02b49dd06bf1
|
7
|
+
data.tar.gz: e745c2e9447dfff365f9ded9f03ac6abb03cbec6015a93c291ab66632023ab8280816d4083d26a670ab49a0508d7ccf53146e954d162e3743632782c107d7faf
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,26 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.64.0 (2021-07-30)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
8
|
+
|
9
|
+
1.63.0 (2021-07-28)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
13
|
+
|
14
|
+
1.62.0 (2021-05-10)
|
15
|
+
------------------
|
16
|
+
|
17
|
+
* Feature - Adds paginator to multiple APIs: By default, the paginator allows user to iterate over the results and allows the CLI to return up to 1000 results.
|
18
|
+
|
19
|
+
1.61.0 (2021-04-14)
|
20
|
+
------------------
|
21
|
+
|
22
|
+
* Feature - Add exception for DeleteRemediationConfiguration and DescribeRemediationExecutionStatus
|
23
|
+
|
4
24
|
1.60.0 (2021-03-30)
|
5
25
|
------------------
|
6
26
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.64.0
|
@@ -977,6 +977,8 @@ module Aws::ConfigService
|
|
977
977
|
# * {Types::DescribeAggregateComplianceByConfigRulesResponse#aggregate_compliance_by_config_rules #aggregate_compliance_by_config_rules} => Array<Types::AggregateComplianceByConfigRule>
|
978
978
|
# * {Types::DescribeAggregateComplianceByConfigRulesResponse#next_token #next_token} => String
|
979
979
|
#
|
980
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
981
|
+
#
|
980
982
|
# @example Request syntax with placeholder values
|
981
983
|
#
|
982
984
|
# resp = client.describe_aggregate_compliance_by_config_rules({
|
@@ -1013,7 +1015,9 @@ module Aws::ConfigService
|
|
1013
1015
|
|
1014
1016
|
# Returns a list of the conformance packs and their associated
|
1015
1017
|
# compliance status with the count of compliant and noncompliant AWS
|
1016
|
-
# Config rules within each conformance pack.
|
1018
|
+
# Config rules within each conformance pack. Also returns the total rule
|
1019
|
+
# count which includes compliant rules, noncompliant rules, and rules
|
1020
|
+
# that cannot be evaluated due to insufficient data.
|
1017
1021
|
#
|
1018
1022
|
# <note markdown="1"> The results can return an empty result page, but if you have a
|
1019
1023
|
# `nextToken`, the results are displayed on the next page.
|
@@ -1028,8 +1032,9 @@ module Aws::ConfigService
|
|
1028
1032
|
# object.
|
1029
1033
|
#
|
1030
1034
|
# @option params [Integer] :limit
|
1031
|
-
# The maximum number of conformance packs details returned on
|
1032
|
-
# The default is maximum. If you specify 0, AWS Config uses
|
1035
|
+
# The maximum number of conformance packs compliance details returned on
|
1036
|
+
# each page. The default is maximum. If you specify 0, AWS Config uses
|
1037
|
+
# the default.
|
1033
1038
|
#
|
1034
1039
|
# @option params [String] :next_token
|
1035
1040
|
# The `nextToken` string returned on a previous page that you use to get
|
@@ -1040,6 +1045,8 @@ module Aws::ConfigService
|
|
1040
1045
|
# * {Types::DescribeAggregateComplianceByConformancePacksResponse#aggregate_compliance_by_conformance_packs #aggregate_compliance_by_conformance_packs} => Array<Types::AggregateComplianceByConformancePack>
|
1041
1046
|
# * {Types::DescribeAggregateComplianceByConformancePacksResponse#next_token #next_token} => String
|
1042
1047
|
#
|
1048
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
1049
|
+
#
|
1043
1050
|
# @example Request syntax with placeholder values
|
1044
1051
|
#
|
1045
1052
|
# resp = client.describe_aggregate_compliance_by_conformance_packs({
|
@@ -1091,6 +1098,8 @@ module Aws::ConfigService
|
|
1091
1098
|
# * {Types::DescribeAggregationAuthorizationsResponse#aggregation_authorizations #aggregation_authorizations} => Array<Types::AggregationAuthorization>
|
1092
1099
|
# * {Types::DescribeAggregationAuthorizationsResponse#next_token #next_token} => String
|
1093
1100
|
#
|
1101
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
1102
|
+
#
|
1094
1103
|
# @example Request syntax with placeholder values
|
1095
1104
|
#
|
1096
1105
|
# resp = client.describe_aggregation_authorizations({
|
@@ -1160,6 +1169,8 @@ module Aws::ConfigService
|
|
1160
1169
|
# * {Types::DescribeComplianceByConfigRuleResponse#compliance_by_config_rules #compliance_by_config_rules} => Array<Types::ComplianceByConfigRule>
|
1161
1170
|
# * {Types::DescribeComplianceByConfigRuleResponse#next_token #next_token} => String
|
1162
1171
|
#
|
1172
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
1173
|
+
#
|
1163
1174
|
# @example Request syntax with placeholder values
|
1164
1175
|
#
|
1165
1176
|
# resp = client.describe_compliance_by_config_rule({
|
@@ -1244,6 +1255,8 @@ module Aws::ConfigService
|
|
1244
1255
|
# * {Types::DescribeComplianceByResourceResponse#compliance_by_resources #compliance_by_resources} => Array<Types::ComplianceByResource>
|
1245
1256
|
# * {Types::DescribeComplianceByResourceResponse#next_token #next_token} => String
|
1246
1257
|
#
|
1258
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
1259
|
+
#
|
1247
1260
|
# @example Request syntax with placeholder values
|
1248
1261
|
#
|
1249
1262
|
# resp = client.describe_compliance_by_resource({
|
@@ -1305,6 +1318,8 @@ module Aws::ConfigService
|
|
1305
1318
|
# * {Types::DescribeConfigRuleEvaluationStatusResponse#config_rules_evaluation_status #config_rules_evaluation_status} => Array<Types::ConfigRuleEvaluationStatus>
|
1306
1319
|
# * {Types::DescribeConfigRuleEvaluationStatusResponse#next_token #next_token} => String
|
1307
1320
|
#
|
1321
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
1322
|
+
#
|
1308
1323
|
# @example Request syntax with placeholder values
|
1309
1324
|
#
|
1310
1325
|
# resp = client.describe_config_rule_evaluation_status({
|
@@ -1355,6 +1370,8 @@ module Aws::ConfigService
|
|
1355
1370
|
# * {Types::DescribeConfigRulesResponse#config_rules #config_rules} => Array<Types::ConfigRule>
|
1356
1371
|
# * {Types::DescribeConfigRulesResponse#next_token #next_token} => String
|
1357
1372
|
#
|
1373
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
1374
|
+
#
|
1358
1375
|
# @example Request syntax with placeholder values
|
1359
1376
|
#
|
1360
1377
|
# resp = client.describe_config_rules({
|
@@ -1426,6 +1443,8 @@ module Aws::ConfigService
|
|
1426
1443
|
# * {Types::DescribeConfigurationAggregatorSourcesStatusResponse#aggregated_source_status_list #aggregated_source_status_list} => Array<Types::AggregatedSourceStatus>
|
1427
1444
|
# * {Types::DescribeConfigurationAggregatorSourcesStatusResponse#next_token #next_token} => String
|
1428
1445
|
#
|
1446
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
1447
|
+
#
|
1429
1448
|
# @example Request syntax with placeholder values
|
1430
1449
|
#
|
1431
1450
|
# resp = client.describe_configuration_aggregator_sources_status({
|
@@ -1477,6 +1496,8 @@ module Aws::ConfigService
|
|
1477
1496
|
# * {Types::DescribeConfigurationAggregatorsResponse#configuration_aggregators #configuration_aggregators} => Array<Types::ConfigurationAggregator>
|
1478
1497
|
# * {Types::DescribeConfigurationAggregatorsResponse#next_token #next_token} => String
|
1479
1498
|
#
|
1499
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
1500
|
+
#
|
1480
1501
|
# @example Request syntax with placeholder values
|
1481
1502
|
#
|
1482
1503
|
# resp = client.describe_configuration_aggregators({
|
@@ -1626,6 +1647,8 @@ module Aws::ConfigService
|
|
1626
1647
|
# * {Types::DescribeConformancePackComplianceResponse#conformance_pack_rule_compliance_list #conformance_pack_rule_compliance_list} => Array<Types::ConformancePackRuleCompliance>
|
1627
1648
|
# * {Types::DescribeConformancePackComplianceResponse#next_token #next_token} => String
|
1628
1649
|
#
|
1650
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
1651
|
+
#
|
1629
1652
|
# @example Request syntax with placeholder values
|
1630
1653
|
#
|
1631
1654
|
# resp = client.describe_conformance_pack_compliance({
|
@@ -1678,6 +1701,8 @@ module Aws::ConfigService
|
|
1678
1701
|
# * {Types::DescribeConformancePackStatusResponse#conformance_pack_status_details #conformance_pack_status_details} => Array<Types::ConformancePackStatusDetail>
|
1679
1702
|
# * {Types::DescribeConformancePackStatusResponse#next_token #next_token} => String
|
1680
1703
|
#
|
1704
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
1705
|
+
#
|
1681
1706
|
# @example Request syntax with placeholder values
|
1682
1707
|
#
|
1683
1708
|
# resp = client.describe_conformance_pack_status({
|
@@ -1727,6 +1752,8 @@ module Aws::ConfigService
|
|
1727
1752
|
# * {Types::DescribeConformancePacksResponse#conformance_pack_details #conformance_pack_details} => Array<Types::ConformancePackDetail>
|
1728
1753
|
# * {Types::DescribeConformancePacksResponse#next_token #next_token} => String
|
1729
1754
|
#
|
1755
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
1756
|
+
#
|
1730
1757
|
# @example Request syntax with placeholder values
|
1731
1758
|
#
|
1732
1759
|
# resp = client.describe_conformance_packs({
|
@@ -1885,6 +1912,8 @@ module Aws::ConfigService
|
|
1885
1912
|
# * {Types::DescribeOrganizationConfigRuleStatusesResponse#organization_config_rule_statuses #organization_config_rule_statuses} => Array<Types::OrganizationConfigRuleStatus>
|
1886
1913
|
# * {Types::DescribeOrganizationConfigRuleStatusesResponse#next_token #next_token} => String
|
1887
1914
|
#
|
1915
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
1916
|
+
#
|
1888
1917
|
# @example Request syntax with placeholder values
|
1889
1918
|
#
|
1890
1919
|
# resp = client.describe_organization_config_rule_statuses({
|
@@ -1940,6 +1969,8 @@ module Aws::ConfigService
|
|
1940
1969
|
# * {Types::DescribeOrganizationConfigRulesResponse#organization_config_rules #organization_config_rules} => Array<Types::OrganizationConfigRule>
|
1941
1970
|
# * {Types::DescribeOrganizationConfigRulesResponse#next_token #next_token} => String
|
1942
1971
|
#
|
1972
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
1973
|
+
#
|
1943
1974
|
# @example Request syntax with placeholder values
|
1944
1975
|
#
|
1945
1976
|
# resp = client.describe_organization_config_rules({
|
@@ -2020,6 +2051,8 @@ module Aws::ConfigService
|
|
2020
2051
|
# * {Types::DescribeOrganizationConformancePackStatusesResponse#organization_conformance_pack_statuses #organization_conformance_pack_statuses} => Array<Types::OrganizationConformancePackStatus>
|
2021
2052
|
# * {Types::DescribeOrganizationConformancePackStatusesResponse#next_token #next_token} => String
|
2022
2053
|
#
|
2054
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
2055
|
+
#
|
2023
2056
|
# @example Request syntax with placeholder values
|
2024
2057
|
#
|
2025
2058
|
# resp = client.describe_organization_conformance_pack_statuses({
|
@@ -2075,6 +2108,8 @@ module Aws::ConfigService
|
|
2075
2108
|
# * {Types::DescribeOrganizationConformancePacksResponse#organization_conformance_packs #organization_conformance_packs} => Array<Types::OrganizationConformancePack>
|
2076
2109
|
# * {Types::DescribeOrganizationConformancePacksResponse#next_token #next_token} => String
|
2077
2110
|
#
|
2111
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
2112
|
+
#
|
2078
2113
|
# @example Request syntax with placeholder values
|
2079
2114
|
#
|
2080
2115
|
# resp = client.describe_organization_conformance_packs({
|
@@ -2122,6 +2157,8 @@ module Aws::ConfigService
|
|
2122
2157
|
# * {Types::DescribePendingAggregationRequestsResponse#pending_aggregation_requests #pending_aggregation_requests} => Array<Types::PendingAggregationRequest>
|
2123
2158
|
# * {Types::DescribePendingAggregationRequestsResponse#next_token #next_token} => String
|
2124
2159
|
#
|
2160
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
2161
|
+
#
|
2125
2162
|
# @example Request syntax with placeholder values
|
2126
2163
|
#
|
2127
2164
|
# resp = client.describe_pending_aggregation_requests({
|
@@ -2361,6 +2398,8 @@ module Aws::ConfigService
|
|
2361
2398
|
# * {Types::DescribeRetentionConfigurationsResponse#retention_configurations #retention_configurations} => Array<Types::RetentionConfiguration>
|
2362
2399
|
# * {Types::DescribeRetentionConfigurationsResponse#next_token #next_token} => String
|
2363
2400
|
#
|
2401
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
2402
|
+
#
|
2364
2403
|
# @example Request syntax with placeholder values
|
2365
2404
|
#
|
2366
2405
|
# resp = client.describe_retention_configurations({
|
@@ -2431,6 +2470,8 @@ module Aws::ConfigService
|
|
2431
2470
|
# * {Types::GetAggregateComplianceDetailsByConfigRuleResponse#aggregate_evaluation_results #aggregate_evaluation_results} => Array<Types::AggregateEvaluationResult>
|
2432
2471
|
# * {Types::GetAggregateComplianceDetailsByConfigRuleResponse#next_token #next_token} => String
|
2433
2472
|
#
|
2473
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
2474
|
+
#
|
2434
2475
|
# @example Request syntax with placeholder values
|
2435
2476
|
#
|
2436
2477
|
# resp = client.get_aggregate_compliance_details_by_config_rule({
|
@@ -2500,6 +2541,8 @@ module Aws::ConfigService
|
|
2500
2541
|
# * {Types::GetAggregateConfigRuleComplianceSummaryResponse#aggregate_compliance_counts #aggregate_compliance_counts} => Array<Types::AggregateComplianceCount>
|
2501
2542
|
# * {Types::GetAggregateConfigRuleComplianceSummaryResponse#next_token #next_token} => String
|
2502
2543
|
#
|
2544
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
2545
|
+
#
|
2503
2546
|
# @example Request syntax with placeholder values
|
2504
2547
|
#
|
2505
2548
|
# resp = client.get_aggregate_config_rule_compliance_summary({
|
@@ -2535,8 +2578,8 @@ module Aws::ConfigService
|
|
2535
2578
|
end
|
2536
2579
|
|
2537
2580
|
# Returns the count of compliant and noncompliant conformance packs
|
2538
|
-
# across all AWS Accounts and AWS Regions. You can
|
2539
|
-
# Account ID or AWS Region.
|
2581
|
+
# across all AWS Accounts and AWS Regions in an aggregator. You can
|
2582
|
+
# filter based on AWS Account ID or AWS Region.
|
2540
2583
|
#
|
2541
2584
|
# <note markdown="1"> The results can return an empty result page, but if you have a
|
2542
2585
|
# nextToken, the results are displayed on the next page.
|
@@ -2567,6 +2610,8 @@ module Aws::ConfigService
|
|
2567
2610
|
# * {Types::GetAggregateConformancePackComplianceSummaryResponse#group_by_key #group_by_key} => String
|
2568
2611
|
# * {Types::GetAggregateConformancePackComplianceSummaryResponse#next_token #next_token} => String
|
2569
2612
|
#
|
2613
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
2614
|
+
#
|
2570
2615
|
# @example Request syntax with placeholder values
|
2571
2616
|
#
|
2572
2617
|
# resp = client.get_aggregate_conformance_pack_compliance_summary({
|
@@ -2633,6 +2678,8 @@ module Aws::ConfigService
|
|
2633
2678
|
# * {Types::GetAggregateDiscoveredResourceCountsResponse#grouped_resource_counts #grouped_resource_counts} => Array<Types::GroupedResourceCount>
|
2634
2679
|
# * {Types::GetAggregateDiscoveredResourceCountsResponse#next_token #next_token} => String
|
2635
2680
|
#
|
2681
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
2682
|
+
#
|
2636
2683
|
# @example Request syntax with placeholder values
|
2637
2684
|
#
|
2638
2685
|
# resp = client.get_aggregate_discovered_resource_counts({
|
@@ -2757,6 +2804,8 @@ module Aws::ConfigService
|
|
2757
2804
|
# * {Types::GetComplianceDetailsByConfigRuleResponse#evaluation_results #evaluation_results} => Array<Types::EvaluationResult>
|
2758
2805
|
# * {Types::GetComplianceDetailsByConfigRuleResponse#next_token #next_token} => String
|
2759
2806
|
#
|
2807
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
2808
|
+
#
|
2760
2809
|
# @example Request syntax with placeholder values
|
2761
2810
|
#
|
2762
2811
|
# resp = client.get_compliance_details_by_config_rule({
|
@@ -2816,6 +2865,8 @@ module Aws::ConfigService
|
|
2816
2865
|
# * {Types::GetComplianceDetailsByResourceResponse#evaluation_results #evaluation_results} => Array<Types::EvaluationResult>
|
2817
2866
|
# * {Types::GetComplianceDetailsByResourceResponse#next_token #next_token} => String
|
2818
2867
|
#
|
2868
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
2869
|
+
#
|
2819
2870
|
# @example Request syntax with placeholder values
|
2820
2871
|
#
|
2821
2872
|
# resp = client.get_compliance_details_by_resource({
|
@@ -2939,6 +2990,8 @@ module Aws::ConfigService
|
|
2939
2990
|
# * {Types::GetConformancePackComplianceDetailsResponse#conformance_pack_rule_evaluation_results #conformance_pack_rule_evaluation_results} => Array<Types::ConformancePackEvaluationResult>
|
2940
2991
|
# * {Types::GetConformancePackComplianceDetailsResponse#next_token #next_token} => String
|
2941
2992
|
#
|
2993
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
2994
|
+
#
|
2942
2995
|
# @example Request syntax with placeholder values
|
2943
2996
|
#
|
2944
2997
|
# resp = client.get_conformance_pack_compliance_details({
|
@@ -2995,6 +3048,8 @@ module Aws::ConfigService
|
|
2995
3048
|
# * {Types::GetConformancePackComplianceSummaryResponse#conformance_pack_compliance_summary_list #conformance_pack_compliance_summary_list} => Array<Types::ConformancePackComplianceSummary>
|
2996
3049
|
# * {Types::GetConformancePackComplianceSummaryResponse#next_token #next_token} => String
|
2997
3050
|
#
|
3051
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
3052
|
+
#
|
2998
3053
|
# @example Request syntax with placeholder values
|
2999
3054
|
#
|
3000
3055
|
# resp = client.get_conformance_pack_compliance_summary({
|
@@ -3091,6 +3146,8 @@ module Aws::ConfigService
|
|
3091
3146
|
# * {Types::GetDiscoveredResourceCountsResponse#resource_counts #resource_counts} => Array<Types::ResourceCount>
|
3092
3147
|
# * {Types::GetDiscoveredResourceCountsResponse#next_token #next_token} => String
|
3093
3148
|
#
|
3149
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
3150
|
+
#
|
3094
3151
|
# @example Request syntax with placeholder values
|
3095
3152
|
#
|
3096
3153
|
# resp = client.get_discovered_resource_counts({
|
@@ -3140,6 +3197,8 @@ module Aws::ConfigService
|
|
3140
3197
|
# * {Types::GetOrganizationConfigRuleDetailedStatusResponse#organization_config_rule_detailed_status #organization_config_rule_detailed_status} => Array<Types::MemberAccountStatus>
|
3141
3198
|
# * {Types::GetOrganizationConfigRuleDetailedStatusResponse#next_token #next_token} => String
|
3142
3199
|
#
|
3200
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
3201
|
+
#
|
3143
3202
|
# @example Request syntax with placeholder values
|
3144
3203
|
#
|
3145
3204
|
# resp = client.get_organization_config_rule_detailed_status({
|
@@ -3196,6 +3255,8 @@ module Aws::ConfigService
|
|
3196
3255
|
# * {Types::GetOrganizationConformancePackDetailedStatusResponse#organization_conformance_pack_detailed_statuses #organization_conformance_pack_detailed_statuses} => Array<Types::OrganizationConformancePackDetailedStatus>
|
3197
3256
|
# * {Types::GetOrganizationConformancePackDetailedStatusResponse#next_token #next_token} => String
|
3198
3257
|
#
|
3258
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
3259
|
+
#
|
3199
3260
|
# @example Request syntax with placeholder values
|
3200
3261
|
#
|
3201
3262
|
# resp = client.get_organization_conformance_pack_detailed_status({
|
@@ -3403,6 +3464,8 @@ module Aws::ConfigService
|
|
3403
3464
|
# * {Types::ListAggregateDiscoveredResourcesResponse#resource_identifiers #resource_identifiers} => Array<Types::AggregateResourceIdentifier>
|
3404
3465
|
# * {Types::ListAggregateDiscoveredResourcesResponse#next_token #next_token} => String
|
3405
3466
|
#
|
3467
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
3468
|
+
#
|
3406
3469
|
# @example Request syntax with placeholder values
|
3407
3470
|
#
|
3408
3471
|
# resp = client.list_aggregate_discovered_resources({
|
@@ -3488,6 +3551,8 @@ module Aws::ConfigService
|
|
3488
3551
|
# * {Types::ListDiscoveredResourcesResponse#resource_identifiers #resource_identifiers} => Array<Types::ResourceIdentifier>
|
3489
3552
|
# * {Types::ListDiscoveredResourcesResponse#next_token #next_token} => String
|
3490
3553
|
#
|
3554
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
3555
|
+
#
|
3491
3556
|
# @example Request syntax with placeholder values
|
3492
3557
|
#
|
3493
3558
|
# resp = client.list_discovered_resources({
|
@@ -3580,6 +3645,8 @@ module Aws::ConfigService
|
|
3580
3645
|
# * {Types::ListTagsForResourceResponse#tags #tags} => Array<Types::Tag>
|
3581
3646
|
# * {Types::ListTagsForResourceResponse#next_token #next_token} => String
|
3582
3647
|
#
|
3648
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
3649
|
+
#
|
3583
3650
|
# @example Request syntax with placeholder values
|
3584
3651
|
#
|
3585
3652
|
# resp = client.list_tags_for_resource({
|
@@ -4742,6 +4809,8 @@ module Aws::ConfigService
|
|
4742
4809
|
# * {Types::SelectResourceConfigResponse#query_info #query_info} => Types::QueryInfo
|
4743
4810
|
# * {Types::SelectResourceConfigResponse#next_token #next_token} => String
|
4744
4811
|
#
|
4812
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
4813
|
+
#
|
4745
4814
|
# @example Request syntax with placeholder values
|
4746
4815
|
#
|
4747
4816
|
# resp = client.select_resource_config({
|
@@ -5004,7 +5073,7 @@ module Aws::ConfigService
|
|
5004
5073
|
params: params,
|
5005
5074
|
config: config)
|
5006
5075
|
context[:gem_name] = 'aws-sdk-configservice'
|
5007
|
-
context[:gem_version] = '1.
|
5076
|
+
context[:gem_version] = '1.64.0'
|
5008
5077
|
Seahorse::Client::Request.new(handlers, context)
|
5009
5078
|
end
|
5010
5079
|
|
@@ -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|
|
@@ -2194,6 +2195,12 @@ module Aws::ConfigService
|
|
2194
2195
|
o.errors << Shapes::ShapeRef.new(shape: InvalidLimitException)
|
2195
2196
|
o.errors << Shapes::ShapeRef.new(shape: InvalidNextTokenException)
|
2196
2197
|
o.errors << Shapes::ShapeRef.new(shape: NoSuchConfigurationAggregatorException)
|
2198
|
+
o[:pager] = Aws::Pager.new(
|
2199
|
+
limit_key: "limit",
|
2200
|
+
tokens: {
|
2201
|
+
"next_token" => "next_token"
|
2202
|
+
}
|
2203
|
+
)
|
2197
2204
|
end)
|
2198
2205
|
|
2199
2206
|
api.add_operation(:describe_aggregate_compliance_by_conformance_packs, Seahorse::Model::Operation.new.tap do |o|
|
@@ -2206,6 +2213,12 @@ module Aws::ConfigService
|
|
2206
2213
|
o.errors << Shapes::ShapeRef.new(shape: InvalidLimitException)
|
2207
2214
|
o.errors << Shapes::ShapeRef.new(shape: InvalidNextTokenException)
|
2208
2215
|
o.errors << Shapes::ShapeRef.new(shape: NoSuchConfigurationAggregatorException)
|
2216
|
+
o[:pager] = Aws::Pager.new(
|
2217
|
+
limit_key: "limit",
|
2218
|
+
tokens: {
|
2219
|
+
"next_token" => "next_token"
|
2220
|
+
}
|
2221
|
+
)
|
2209
2222
|
end)
|
2210
2223
|
|
2211
2224
|
api.add_operation(:describe_aggregation_authorizations, Seahorse::Model::Operation.new.tap do |o|
|
@@ -2217,6 +2230,12 @@ module Aws::ConfigService
|
|
2217
2230
|
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterValueException)
|
2218
2231
|
o.errors << Shapes::ShapeRef.new(shape: InvalidNextTokenException)
|
2219
2232
|
o.errors << Shapes::ShapeRef.new(shape: InvalidLimitException)
|
2233
|
+
o[:pager] = Aws::Pager.new(
|
2234
|
+
limit_key: "limit",
|
2235
|
+
tokens: {
|
2236
|
+
"next_token" => "next_token"
|
2237
|
+
}
|
2238
|
+
)
|
2220
2239
|
end)
|
2221
2240
|
|
2222
2241
|
api.add_operation(:describe_compliance_by_config_rule, Seahorse::Model::Operation.new.tap do |o|
|
@@ -2228,6 +2247,11 @@ module Aws::ConfigService
|
|
2228
2247
|
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterValueException)
|
2229
2248
|
o.errors << Shapes::ShapeRef.new(shape: NoSuchConfigRuleException)
|
2230
2249
|
o.errors << Shapes::ShapeRef.new(shape: InvalidNextTokenException)
|
2250
|
+
o[:pager] = Aws::Pager.new(
|
2251
|
+
tokens: {
|
2252
|
+
"next_token" => "next_token"
|
2253
|
+
}
|
2254
|
+
)
|
2231
2255
|
end)
|
2232
2256
|
|
2233
2257
|
api.add_operation(:describe_compliance_by_resource, Seahorse::Model::Operation.new.tap do |o|
|
@@ -2238,6 +2262,12 @@ module Aws::ConfigService
|
|
2238
2262
|
o.output = Shapes::ShapeRef.new(shape: DescribeComplianceByResourceResponse)
|
2239
2263
|
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterValueException)
|
2240
2264
|
o.errors << Shapes::ShapeRef.new(shape: InvalidNextTokenException)
|
2265
|
+
o[:pager] = Aws::Pager.new(
|
2266
|
+
limit_key: "limit",
|
2267
|
+
tokens: {
|
2268
|
+
"next_token" => "next_token"
|
2269
|
+
}
|
2270
|
+
)
|
2241
2271
|
end)
|
2242
2272
|
|
2243
2273
|
api.add_operation(:describe_config_rule_evaluation_status, Seahorse::Model::Operation.new.tap do |o|
|
@@ -2249,6 +2279,12 @@ module Aws::ConfigService
|
|
2249
2279
|
o.errors << Shapes::ShapeRef.new(shape: NoSuchConfigRuleException)
|
2250
2280
|
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterValueException)
|
2251
2281
|
o.errors << Shapes::ShapeRef.new(shape: InvalidNextTokenException)
|
2282
|
+
o[:pager] = Aws::Pager.new(
|
2283
|
+
limit_key: "limit",
|
2284
|
+
tokens: {
|
2285
|
+
"next_token" => "next_token"
|
2286
|
+
}
|
2287
|
+
)
|
2252
2288
|
end)
|
2253
2289
|
|
2254
2290
|
api.add_operation(:describe_config_rules, Seahorse::Model::Operation.new.tap do |o|
|
@@ -2259,6 +2295,11 @@ module Aws::ConfigService
|
|
2259
2295
|
o.output = Shapes::ShapeRef.new(shape: DescribeConfigRulesResponse)
|
2260
2296
|
o.errors << Shapes::ShapeRef.new(shape: NoSuchConfigRuleException)
|
2261
2297
|
o.errors << Shapes::ShapeRef.new(shape: InvalidNextTokenException)
|
2298
|
+
o[:pager] = Aws::Pager.new(
|
2299
|
+
tokens: {
|
2300
|
+
"next_token" => "next_token"
|
2301
|
+
}
|
2302
|
+
)
|
2262
2303
|
end)
|
2263
2304
|
|
2264
2305
|
api.add_operation(:describe_configuration_aggregator_sources_status, Seahorse::Model::Operation.new.tap do |o|
|
@@ -2271,6 +2312,12 @@ module Aws::ConfigService
|
|
2271
2312
|
o.errors << Shapes::ShapeRef.new(shape: NoSuchConfigurationAggregatorException)
|
2272
2313
|
o.errors << Shapes::ShapeRef.new(shape: InvalidNextTokenException)
|
2273
2314
|
o.errors << Shapes::ShapeRef.new(shape: InvalidLimitException)
|
2315
|
+
o[:pager] = Aws::Pager.new(
|
2316
|
+
limit_key: "limit",
|
2317
|
+
tokens: {
|
2318
|
+
"next_token" => "next_token"
|
2319
|
+
}
|
2320
|
+
)
|
2274
2321
|
end)
|
2275
2322
|
|
2276
2323
|
api.add_operation(:describe_configuration_aggregators, Seahorse::Model::Operation.new.tap do |o|
|
@@ -2283,6 +2330,12 @@ module Aws::ConfigService
|
|
2283
2330
|
o.errors << Shapes::ShapeRef.new(shape: NoSuchConfigurationAggregatorException)
|
2284
2331
|
o.errors << Shapes::ShapeRef.new(shape: InvalidNextTokenException)
|
2285
2332
|
o.errors << Shapes::ShapeRef.new(shape: InvalidLimitException)
|
2333
|
+
o[:pager] = Aws::Pager.new(
|
2334
|
+
limit_key: "limit",
|
2335
|
+
tokens: {
|
2336
|
+
"next_token" => "next_token"
|
2337
|
+
}
|
2338
|
+
)
|
2286
2339
|
end)
|
2287
2340
|
|
2288
2341
|
api.add_operation(:describe_configuration_recorder_status, Seahorse::Model::Operation.new.tap do |o|
|
@@ -2314,6 +2367,12 @@ module Aws::ConfigService
|
|
2314
2367
|
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterValueException)
|
2315
2368
|
o.errors << Shapes::ShapeRef.new(shape: NoSuchConfigRuleInConformancePackException)
|
2316
2369
|
o.errors << Shapes::ShapeRef.new(shape: NoSuchConformancePackException)
|
2370
|
+
o[:pager] = Aws::Pager.new(
|
2371
|
+
limit_key: "limit",
|
2372
|
+
tokens: {
|
2373
|
+
"next_token" => "next_token"
|
2374
|
+
}
|
2375
|
+
)
|
2317
2376
|
end)
|
2318
2377
|
|
2319
2378
|
api.add_operation(:describe_conformance_pack_status, Seahorse::Model::Operation.new.tap do |o|
|
@@ -2325,6 +2384,12 @@ module Aws::ConfigService
|
|
2325
2384
|
o.errors << Shapes::ShapeRef.new(shape: InvalidLimitException)
|
2326
2385
|
o.errors << Shapes::ShapeRef.new(shape: InvalidNextTokenException)
|
2327
2386
|
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterValueException)
|
2387
|
+
o[:pager] = Aws::Pager.new(
|
2388
|
+
limit_key: "limit",
|
2389
|
+
tokens: {
|
2390
|
+
"next_token" => "next_token"
|
2391
|
+
}
|
2392
|
+
)
|
2328
2393
|
end)
|
2329
2394
|
|
2330
2395
|
api.add_operation(:describe_conformance_packs, Seahorse::Model::Operation.new.tap do |o|
|
@@ -2337,6 +2402,12 @@ module Aws::ConfigService
|
|
2337
2402
|
o.errors << Shapes::ShapeRef.new(shape: InvalidLimitException)
|
2338
2403
|
o.errors << Shapes::ShapeRef.new(shape: InvalidNextTokenException)
|
2339
2404
|
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterValueException)
|
2405
|
+
o[:pager] = Aws::Pager.new(
|
2406
|
+
limit_key: "limit",
|
2407
|
+
tokens: {
|
2408
|
+
"next_token" => "next_token"
|
2409
|
+
}
|
2410
|
+
)
|
2340
2411
|
end)
|
2341
2412
|
|
2342
2413
|
api.add_operation(:describe_delivery_channel_status, Seahorse::Model::Operation.new.tap do |o|
|
@@ -2367,6 +2438,12 @@ module Aws::ConfigService
|
|
2367
2438
|
o.errors << Shapes::ShapeRef.new(shape: InvalidLimitException)
|
2368
2439
|
o.errors << Shapes::ShapeRef.new(shape: InvalidNextTokenException)
|
2369
2440
|
o.errors << Shapes::ShapeRef.new(shape: OrganizationAccessDeniedException)
|
2441
|
+
o[:pager] = Aws::Pager.new(
|
2442
|
+
limit_key: "limit",
|
2443
|
+
tokens: {
|
2444
|
+
"next_token" => "next_token"
|
2445
|
+
}
|
2446
|
+
)
|
2370
2447
|
end)
|
2371
2448
|
|
2372
2449
|
api.add_operation(:describe_organization_config_rules, Seahorse::Model::Operation.new.tap do |o|
|
@@ -2379,6 +2456,12 @@ module Aws::ConfigService
|
|
2379
2456
|
o.errors << Shapes::ShapeRef.new(shape: InvalidNextTokenException)
|
2380
2457
|
o.errors << Shapes::ShapeRef.new(shape: InvalidLimitException)
|
2381
2458
|
o.errors << Shapes::ShapeRef.new(shape: OrganizationAccessDeniedException)
|
2459
|
+
o[:pager] = Aws::Pager.new(
|
2460
|
+
limit_key: "limit",
|
2461
|
+
tokens: {
|
2462
|
+
"next_token" => "next_token"
|
2463
|
+
}
|
2464
|
+
)
|
2382
2465
|
end)
|
2383
2466
|
|
2384
2467
|
api.add_operation(:describe_organization_conformance_pack_statuses, Seahorse::Model::Operation.new.tap do |o|
|
@@ -2391,6 +2474,12 @@ module Aws::ConfigService
|
|
2391
2474
|
o.errors << Shapes::ShapeRef.new(shape: InvalidLimitException)
|
2392
2475
|
o.errors << Shapes::ShapeRef.new(shape: InvalidNextTokenException)
|
2393
2476
|
o.errors << Shapes::ShapeRef.new(shape: OrganizationAccessDeniedException)
|
2477
|
+
o[:pager] = Aws::Pager.new(
|
2478
|
+
limit_key: "limit",
|
2479
|
+
tokens: {
|
2480
|
+
"next_token" => "next_token"
|
2481
|
+
}
|
2482
|
+
)
|
2394
2483
|
end)
|
2395
2484
|
|
2396
2485
|
api.add_operation(:describe_organization_conformance_packs, Seahorse::Model::Operation.new.tap do |o|
|
@@ -2403,6 +2492,12 @@ module Aws::ConfigService
|
|
2403
2492
|
o.errors << Shapes::ShapeRef.new(shape: InvalidNextTokenException)
|
2404
2493
|
o.errors << Shapes::ShapeRef.new(shape: InvalidLimitException)
|
2405
2494
|
o.errors << Shapes::ShapeRef.new(shape: OrganizationAccessDeniedException)
|
2495
|
+
o[:pager] = Aws::Pager.new(
|
2496
|
+
limit_key: "limit",
|
2497
|
+
tokens: {
|
2498
|
+
"next_token" => "next_token"
|
2499
|
+
}
|
2500
|
+
)
|
2406
2501
|
end)
|
2407
2502
|
|
2408
2503
|
api.add_operation(:describe_pending_aggregation_requests, Seahorse::Model::Operation.new.tap do |o|
|
@@ -2414,6 +2509,12 @@ module Aws::ConfigService
|
|
2414
2509
|
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterValueException)
|
2415
2510
|
o.errors << Shapes::ShapeRef.new(shape: InvalidNextTokenException)
|
2416
2511
|
o.errors << Shapes::ShapeRef.new(shape: InvalidLimitException)
|
2512
|
+
o[:pager] = Aws::Pager.new(
|
2513
|
+
limit_key: "limit",
|
2514
|
+
tokens: {
|
2515
|
+
"next_token" => "next_token"
|
2516
|
+
}
|
2517
|
+
)
|
2417
2518
|
end)
|
2418
2519
|
|
2419
2520
|
api.add_operation(:describe_remediation_configurations, Seahorse::Model::Operation.new.tap do |o|
|
@@ -2448,6 +2549,7 @@ module Aws::ConfigService
|
|
2448
2549
|
o.output = Shapes::ShapeRef.new(shape: DescribeRemediationExecutionStatusResponse)
|
2449
2550
|
o.errors << Shapes::ShapeRef.new(shape: NoSuchRemediationConfigurationException)
|
2450
2551
|
o.errors << Shapes::ShapeRef.new(shape: InvalidNextTokenException)
|
2552
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterValueException)
|
2451
2553
|
o[:pager] = Aws::Pager.new(
|
2452
2554
|
limit_key: "limit",
|
2453
2555
|
tokens: {
|
@@ -2465,6 +2567,11 @@ module Aws::ConfigService
|
|
2465
2567
|
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterValueException)
|
2466
2568
|
o.errors << Shapes::ShapeRef.new(shape: NoSuchRetentionConfigurationException)
|
2467
2569
|
o.errors << Shapes::ShapeRef.new(shape: InvalidNextTokenException)
|
2570
|
+
o[:pager] = Aws::Pager.new(
|
2571
|
+
tokens: {
|
2572
|
+
"next_token" => "next_token"
|
2573
|
+
}
|
2574
|
+
)
|
2468
2575
|
end)
|
2469
2576
|
|
2470
2577
|
api.add_operation(:get_aggregate_compliance_details_by_config_rule, Seahorse::Model::Operation.new.tap do |o|
|
@@ -2477,6 +2584,12 @@ module Aws::ConfigService
|
|
2477
2584
|
o.errors << Shapes::ShapeRef.new(shape: InvalidLimitException)
|
2478
2585
|
o.errors << Shapes::ShapeRef.new(shape: InvalidNextTokenException)
|
2479
2586
|
o.errors << Shapes::ShapeRef.new(shape: NoSuchConfigurationAggregatorException)
|
2587
|
+
o[:pager] = Aws::Pager.new(
|
2588
|
+
limit_key: "limit",
|
2589
|
+
tokens: {
|
2590
|
+
"next_token" => "next_token"
|
2591
|
+
}
|
2592
|
+
)
|
2480
2593
|
end)
|
2481
2594
|
|
2482
2595
|
api.add_operation(:get_aggregate_config_rule_compliance_summary, Seahorse::Model::Operation.new.tap do |o|
|
@@ -2489,6 +2602,12 @@ module Aws::ConfigService
|
|
2489
2602
|
o.errors << Shapes::ShapeRef.new(shape: InvalidLimitException)
|
2490
2603
|
o.errors << Shapes::ShapeRef.new(shape: InvalidNextTokenException)
|
2491
2604
|
o.errors << Shapes::ShapeRef.new(shape: NoSuchConfigurationAggregatorException)
|
2605
|
+
o[:pager] = Aws::Pager.new(
|
2606
|
+
limit_key: "limit",
|
2607
|
+
tokens: {
|
2608
|
+
"next_token" => "next_token"
|
2609
|
+
}
|
2610
|
+
)
|
2492
2611
|
end)
|
2493
2612
|
|
2494
2613
|
api.add_operation(:get_aggregate_conformance_pack_compliance_summary, Seahorse::Model::Operation.new.tap do |o|
|
@@ -2501,6 +2620,12 @@ module Aws::ConfigService
|
|
2501
2620
|
o.errors << Shapes::ShapeRef.new(shape: InvalidLimitException)
|
2502
2621
|
o.errors << Shapes::ShapeRef.new(shape: InvalidNextTokenException)
|
2503
2622
|
o.errors << Shapes::ShapeRef.new(shape: NoSuchConfigurationAggregatorException)
|
2623
|
+
o[:pager] = Aws::Pager.new(
|
2624
|
+
limit_key: "limit",
|
2625
|
+
tokens: {
|
2626
|
+
"next_token" => "next_token"
|
2627
|
+
}
|
2628
|
+
)
|
2504
2629
|
end)
|
2505
2630
|
|
2506
2631
|
api.add_operation(:get_aggregate_discovered_resource_counts, Seahorse::Model::Operation.new.tap do |o|
|
@@ -2513,6 +2638,12 @@ module Aws::ConfigService
|
|
2513
2638
|
o.errors << Shapes::ShapeRef.new(shape: InvalidLimitException)
|
2514
2639
|
o.errors << Shapes::ShapeRef.new(shape: InvalidNextTokenException)
|
2515
2640
|
o.errors << Shapes::ShapeRef.new(shape: NoSuchConfigurationAggregatorException)
|
2641
|
+
o[:pager] = Aws::Pager.new(
|
2642
|
+
limit_key: "limit",
|
2643
|
+
tokens: {
|
2644
|
+
"next_token" => "next_token"
|
2645
|
+
}
|
2646
|
+
)
|
2516
2647
|
end)
|
2517
2648
|
|
2518
2649
|
api.add_operation(:get_aggregate_resource_config, Seahorse::Model::Operation.new.tap do |o|
|
@@ -2536,6 +2667,12 @@ module Aws::ConfigService
|
|
2536
2667
|
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterValueException)
|
2537
2668
|
o.errors << Shapes::ShapeRef.new(shape: InvalidNextTokenException)
|
2538
2669
|
o.errors << Shapes::ShapeRef.new(shape: NoSuchConfigRuleException)
|
2670
|
+
o[:pager] = Aws::Pager.new(
|
2671
|
+
limit_key: "limit",
|
2672
|
+
tokens: {
|
2673
|
+
"next_token" => "next_token"
|
2674
|
+
}
|
2675
|
+
)
|
2539
2676
|
end)
|
2540
2677
|
|
2541
2678
|
api.add_operation(:get_compliance_details_by_resource, Seahorse::Model::Operation.new.tap do |o|
|
@@ -2545,6 +2682,11 @@ module Aws::ConfigService
|
|
2545
2682
|
o.input = Shapes::ShapeRef.new(shape: GetComplianceDetailsByResourceRequest)
|
2546
2683
|
o.output = Shapes::ShapeRef.new(shape: GetComplianceDetailsByResourceResponse)
|
2547
2684
|
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterValueException)
|
2685
|
+
o[:pager] = Aws::Pager.new(
|
2686
|
+
tokens: {
|
2687
|
+
"next_token" => "next_token"
|
2688
|
+
}
|
2689
|
+
)
|
2548
2690
|
end)
|
2549
2691
|
|
2550
2692
|
api.add_operation(:get_compliance_summary_by_config_rule, Seahorse::Model::Operation.new.tap do |o|
|
@@ -2575,6 +2717,12 @@ module Aws::ConfigService
|
|
2575
2717
|
o.errors << Shapes::ShapeRef.new(shape: NoSuchConformancePackException)
|
2576
2718
|
o.errors << Shapes::ShapeRef.new(shape: NoSuchConfigRuleInConformancePackException)
|
2577
2719
|
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterValueException)
|
2720
|
+
o[:pager] = Aws::Pager.new(
|
2721
|
+
limit_key: "limit",
|
2722
|
+
tokens: {
|
2723
|
+
"next_token" => "next_token"
|
2724
|
+
}
|
2725
|
+
)
|
2578
2726
|
end)
|
2579
2727
|
|
2580
2728
|
api.add_operation(:get_conformance_pack_compliance_summary, Seahorse::Model::Operation.new.tap do |o|
|
@@ -2586,6 +2734,12 @@ module Aws::ConfigService
|
|
2586
2734
|
o.errors << Shapes::ShapeRef.new(shape: NoSuchConformancePackException)
|
2587
2735
|
o.errors << Shapes::ShapeRef.new(shape: InvalidLimitException)
|
2588
2736
|
o.errors << Shapes::ShapeRef.new(shape: InvalidNextTokenException)
|
2737
|
+
o[:pager] = Aws::Pager.new(
|
2738
|
+
limit_key: "limit",
|
2739
|
+
tokens: {
|
2740
|
+
"next_token" => "next_token"
|
2741
|
+
}
|
2742
|
+
)
|
2589
2743
|
end)
|
2590
2744
|
|
2591
2745
|
api.add_operation(:get_discovered_resource_counts, Seahorse::Model::Operation.new.tap do |o|
|
@@ -2597,6 +2751,12 @@ module Aws::ConfigService
|
|
2597
2751
|
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
2598
2752
|
o.errors << Shapes::ShapeRef.new(shape: InvalidLimitException)
|
2599
2753
|
o.errors << Shapes::ShapeRef.new(shape: InvalidNextTokenException)
|
2754
|
+
o[:pager] = Aws::Pager.new(
|
2755
|
+
limit_key: "limit",
|
2756
|
+
tokens: {
|
2757
|
+
"next_token" => "next_token"
|
2758
|
+
}
|
2759
|
+
)
|
2600
2760
|
end)
|
2601
2761
|
|
2602
2762
|
api.add_operation(:get_organization_config_rule_detailed_status, Seahorse::Model::Operation.new.tap do |o|
|
@@ -2609,6 +2769,12 @@ module Aws::ConfigService
|
|
2609
2769
|
o.errors << Shapes::ShapeRef.new(shape: InvalidLimitException)
|
2610
2770
|
o.errors << Shapes::ShapeRef.new(shape: InvalidNextTokenException)
|
2611
2771
|
o.errors << Shapes::ShapeRef.new(shape: OrganizationAccessDeniedException)
|
2772
|
+
o[:pager] = Aws::Pager.new(
|
2773
|
+
limit_key: "limit",
|
2774
|
+
tokens: {
|
2775
|
+
"next_token" => "next_token"
|
2776
|
+
}
|
2777
|
+
)
|
2612
2778
|
end)
|
2613
2779
|
|
2614
2780
|
api.add_operation(:get_organization_conformance_pack_detailed_status, Seahorse::Model::Operation.new.tap do |o|
|
@@ -2621,6 +2787,12 @@ module Aws::ConfigService
|
|
2621
2787
|
o.errors << Shapes::ShapeRef.new(shape: InvalidLimitException)
|
2622
2788
|
o.errors << Shapes::ShapeRef.new(shape: InvalidNextTokenException)
|
2623
2789
|
o.errors << Shapes::ShapeRef.new(shape: OrganizationAccessDeniedException)
|
2790
|
+
o[:pager] = Aws::Pager.new(
|
2791
|
+
limit_key: "limit",
|
2792
|
+
tokens: {
|
2793
|
+
"next_token" => "next_token"
|
2794
|
+
}
|
2795
|
+
)
|
2624
2796
|
end)
|
2625
2797
|
|
2626
2798
|
api.add_operation(:get_resource_config_history, Seahorse::Model::Operation.new.tap do |o|
|
@@ -2663,6 +2835,12 @@ module Aws::ConfigService
|
|
2663
2835
|
o.errors << Shapes::ShapeRef.new(shape: InvalidLimitException)
|
2664
2836
|
o.errors << Shapes::ShapeRef.new(shape: InvalidNextTokenException)
|
2665
2837
|
o.errors << Shapes::ShapeRef.new(shape: NoSuchConfigurationAggregatorException)
|
2838
|
+
o[:pager] = Aws::Pager.new(
|
2839
|
+
limit_key: "limit",
|
2840
|
+
tokens: {
|
2841
|
+
"next_token" => "next_token"
|
2842
|
+
}
|
2843
|
+
)
|
2666
2844
|
end)
|
2667
2845
|
|
2668
2846
|
api.add_operation(:list_discovered_resources, Seahorse::Model::Operation.new.tap do |o|
|
@@ -2675,6 +2853,12 @@ module Aws::ConfigService
|
|
2675
2853
|
o.errors << Shapes::ShapeRef.new(shape: InvalidLimitException)
|
2676
2854
|
o.errors << Shapes::ShapeRef.new(shape: InvalidNextTokenException)
|
2677
2855
|
o.errors << Shapes::ShapeRef.new(shape: NoAvailableConfigurationRecorderException)
|
2856
|
+
o[:pager] = Aws::Pager.new(
|
2857
|
+
limit_key: "limit",
|
2858
|
+
tokens: {
|
2859
|
+
"next_token" => "next_token"
|
2860
|
+
}
|
2861
|
+
)
|
2678
2862
|
end)
|
2679
2863
|
|
2680
2864
|
api.add_operation(:list_stored_queries, Seahorse::Model::Operation.new.tap do |o|
|
@@ -2703,6 +2887,12 @@ module Aws::ConfigService
|
|
2703
2887
|
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
2704
2888
|
o.errors << Shapes::ShapeRef.new(shape: InvalidLimitException)
|
2705
2889
|
o.errors << Shapes::ShapeRef.new(shape: InvalidNextTokenException)
|
2890
|
+
o[:pager] = Aws::Pager.new(
|
2891
|
+
limit_key: "limit",
|
2892
|
+
tokens: {
|
2893
|
+
"next_token" => "next_token"
|
2894
|
+
}
|
2895
|
+
)
|
2706
2896
|
end)
|
2707
2897
|
|
2708
2898
|
api.add_operation(:put_aggregation_authorization, Seahorse::Model::Operation.new.tap do |o|
|
@@ -2899,7 +3089,7 @@ module Aws::ConfigService
|
|
2899
3089
|
o.errors << Shapes::ShapeRef.new(shape: InvalidLimitException)
|
2900
3090
|
o.errors << Shapes::ShapeRef.new(shape: InvalidNextTokenException)
|
2901
3091
|
o[:pager] = Aws::Pager.new(
|
2902
|
-
limit_key: "
|
3092
|
+
limit_key: "limit",
|
2903
3093
|
tokens: {
|
2904
3094
|
"next_token" => "next_token"
|
2905
3095
|
}
|
@@ -2915,6 +3105,12 @@ module Aws::ConfigService
|
|
2915
3105
|
o.errors << Shapes::ShapeRef.new(shape: InvalidExpressionException)
|
2916
3106
|
o.errors << Shapes::ShapeRef.new(shape: InvalidLimitException)
|
2917
3107
|
o.errors << Shapes::ShapeRef.new(shape: InvalidNextTokenException)
|
3108
|
+
o[:pager] = Aws::Pager.new(
|
3109
|
+
limit_key: "limit",
|
3110
|
+
tokens: {
|
3111
|
+
"next_token" => "next_token"
|
3112
|
+
}
|
3113
|
+
)
|
2918
3114
|
end)
|
2919
3115
|
|
2920
3116
|
api.add_operation(:start_config_rules_evaluation, Seahorse::Model::Operation.new.tap do |o|
|
@@ -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
|
86
|
-
#
|
87
|
-
#
|
88
|
-
#
|
89
|
-
#
|
90
|
-
# conformance pack
|
91
|
-
#
|
92
|
-
#
|
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
|
146
|
-
#
|
147
|
-
#
|
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
|
2482
|
-
# page. The default is maximum. If you specify 0, AWS Config
|
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.
|
4
|
+
version: 1.64.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-
|
11
|
+
date: 2021-07-30 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|
@@ -19,7 +19,7 @@ dependencies:
|
|
19
19
|
version: '3'
|
20
20
|
- - ">="
|
21
21
|
- !ruby/object:Gem::Version
|
22
|
-
version: 3.
|
22
|
+
version: 3.119.0
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -29,7 +29,7 @@ dependencies:
|
|
29
29
|
version: '3'
|
30
30
|
- - ">="
|
31
31
|
- !ruby/object:Gem::Version
|
32
|
-
version: 3.
|
32
|
+
version: 3.119.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|
@@ -83,8 +83,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
83
83
|
- !ruby/object:Gem::Version
|
84
84
|
version: '0'
|
85
85
|
requirements: []
|
86
|
-
|
87
|
-
rubygems_version: 2.7.6.2
|
86
|
+
rubygems_version: 3.1.6
|
88
87
|
signing_key:
|
89
88
|
specification_version: 4
|
90
89
|
summary: AWS SDK for Ruby - Config Service
|