aws-sdk-configservice 1.152.0 → 1.153.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-configservice/client.rb +7 -1
- data/lib/aws-sdk-configservice/client_api.rb +7 -0
- data/lib/aws-sdk-configservice/types.rb +27 -3
- data/lib/aws-sdk-configservice.rb +1 -1
- data/sig/client.rbs +6 -3
- data/sig/types.rbs +3 -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: ac7ea94634fe21e93c168394483b03b2130d7a73c080b538f859614d0c24c992
|
|
4
|
+
data.tar.gz: 33b7f2a1f398f3097d0b2c9204f3aeb06f06a17484eb17a2b4a266d633a1a0f3
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: abecd236a242ef8d9b73183b492ade6782b807344f417ec85e41f2dec72e7615b5fd92d943f3a80d1de82d33e4e95a6a37d677a269d7b305162055fc065b3e3e
|
|
7
|
+
data.tar.gz: 66521f3c96603ec5a39c82796ab1620e46ece70d2b2596e20687c25baf874a0c3f658e72e0afdf1e59394b9128908520ebdca3a715988207ed9e7783e5ff9dcd
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.153.0 (2026-06-04)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - AWS Config now supports internal service-linked rules, allowing AWS service partners to deploy Config rules for customers and use the evaluation results to build enhanced features.
|
|
8
|
+
|
|
4
9
|
1.152.0 (2026-06-01)
|
|
5
10
|
------------------
|
|
6
11
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.153.0
|
|
@@ -1739,6 +1739,7 @@ module Aws::ConfigService
|
|
|
1739
1739
|
# next_token: "String",
|
|
1740
1740
|
# filters: {
|
|
1741
1741
|
# evaluation_mode: "DETECTIVE", # accepts DETECTIVE, PROACTIVE
|
|
1742
|
+
# rule_evaluation_visibility: "EXTERNAL", # accepts EXTERNAL, INTERNAL
|
|
1742
1743
|
# },
|
|
1743
1744
|
# })
|
|
1744
1745
|
#
|
|
@@ -1754,6 +1755,8 @@ module Aws::ConfigService
|
|
|
1754
1755
|
# resp.config_rules[0].scope.tag_key #=> String
|
|
1755
1756
|
# resp.config_rules[0].scope.tag_value #=> String
|
|
1756
1757
|
# resp.config_rules[0].scope.compliance_resource_id #=> String
|
|
1758
|
+
# resp.config_rules[0].scope.service_principals #=> Array
|
|
1759
|
+
# resp.config_rules[0].scope.service_principals[0] #=> String
|
|
1757
1760
|
# resp.config_rules[0].source.owner #=> String, one of "CUSTOM_LAMBDA", "AWS", "CUSTOM_POLICY"
|
|
1758
1761
|
# resp.config_rules[0].source.source_identifier #=> String
|
|
1759
1762
|
# resp.config_rules[0].source.source_details #=> Array
|
|
@@ -1769,6 +1772,7 @@ module Aws::ConfigService
|
|
|
1769
1772
|
# resp.config_rules[0].created_by #=> String
|
|
1770
1773
|
# resp.config_rules[0].evaluation_modes #=> Array
|
|
1771
1774
|
# resp.config_rules[0].evaluation_modes[0].mode #=> String, one of "DETECTIVE", "PROACTIVE"
|
|
1775
|
+
# resp.config_rules[0].rule_evaluation_visibility #=> String, one of "EXTERNAL", "INTERNAL"
|
|
1772
1776
|
# resp.next_token #=> String
|
|
1773
1777
|
#
|
|
1774
1778
|
# @see http://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/DescribeConfigRules AWS API Documentation
|
|
@@ -4750,6 +4754,7 @@ module Aws::ConfigService
|
|
|
4750
4754
|
# tag_key: "StringWithCharLimit128",
|
|
4751
4755
|
# tag_value: "StringWithCharLimit256",
|
|
4752
4756
|
# compliance_resource_id: "BaseResourceId",
|
|
4757
|
+
# service_principals: ["StringWithCharLimit128"],
|
|
4753
4758
|
# },
|
|
4754
4759
|
# source: { # required
|
|
4755
4760
|
# owner: "CUSTOM_LAMBDA", # required, accepts CUSTOM_LAMBDA, AWS, CUSTOM_POLICY
|
|
@@ -4776,6 +4781,7 @@ module Aws::ConfigService
|
|
|
4776
4781
|
# mode: "DETECTIVE", # accepts DETECTIVE, PROACTIVE
|
|
4777
4782
|
# },
|
|
4778
4783
|
# ],
|
|
4784
|
+
# rule_evaluation_visibility: "EXTERNAL", # accepts EXTERNAL, INTERNAL
|
|
4779
4785
|
# },
|
|
4780
4786
|
# tags: [
|
|
4781
4787
|
# {
|
|
@@ -6636,7 +6642,7 @@ module Aws::ConfigService
|
|
|
6636
6642
|
tracer: tracer
|
|
6637
6643
|
)
|
|
6638
6644
|
context[:gem_name] = 'aws-sdk-configservice'
|
|
6639
|
-
context[:gem_version] = '1.
|
|
6645
|
+
context[:gem_version] = '1.153.0'
|
|
6640
6646
|
Seahorse::Client::Request.new(handlers, context)
|
|
6641
6647
|
end
|
|
6642
6648
|
|
|
@@ -534,6 +534,7 @@ module Aws::ConfigService
|
|
|
534
534
|
RetentionConfigurationName = Shapes::StringShape.new(name: 'RetentionConfigurationName')
|
|
535
535
|
RetentionConfigurationNameList = Shapes::ListShape.new(name: 'RetentionConfigurationNameList')
|
|
536
536
|
RetentionPeriodInDays = Shapes::IntegerShape.new(name: 'RetentionPeriodInDays')
|
|
537
|
+
RuleEvaluationVisibility = Shapes::StringShape.new(name: 'RuleEvaluationVisibility')
|
|
537
538
|
RuleLimit = Shapes::IntegerShape.new(name: 'RuleLimit')
|
|
538
539
|
SSMDocumentName = Shapes::StringShape.new(name: 'SSMDocumentName')
|
|
539
540
|
SSMDocumentVersion = Shapes::StringShape.new(name: 'SSMDocumentVersion')
|
|
@@ -546,6 +547,7 @@ module Aws::ConfigService
|
|
|
546
547
|
ServicePrincipal = Shapes::StringShape.new(name: 'ServicePrincipal')
|
|
547
548
|
ServicePrincipalValue = Shapes::StringShape.new(name: 'ServicePrincipalValue')
|
|
548
549
|
ServicePrincipalValueList = Shapes::ListShape.new(name: 'ServicePrincipalValueList')
|
|
550
|
+
ServicePrincipals = Shapes::ListShape.new(name: 'ServicePrincipals')
|
|
549
551
|
SortBy = Shapes::StringShape.new(name: 'SortBy')
|
|
550
552
|
SortOrder = Shapes::StringShape.new(name: 'SortOrder')
|
|
551
553
|
Source = Shapes::StructureShape.new(name: 'Source')
|
|
@@ -804,6 +806,7 @@ module Aws::ConfigService
|
|
|
804
806
|
ConfigRule.add_member(:config_rule_state, Shapes::ShapeRef.new(shape: ConfigRuleState, location_name: "ConfigRuleState"))
|
|
805
807
|
ConfigRule.add_member(:created_by, Shapes::ShapeRef.new(shape: StringWithCharLimit256, location_name: "CreatedBy"))
|
|
806
808
|
ConfigRule.add_member(:evaluation_modes, Shapes::ShapeRef.new(shape: EvaluationModes, location_name: "EvaluationModes"))
|
|
809
|
+
ConfigRule.add_member(:rule_evaluation_visibility, Shapes::ShapeRef.new(shape: RuleEvaluationVisibility, location_name: "RuleEvaluationVisibility"))
|
|
807
810
|
ConfigRule.struct_class = Types::ConfigRule
|
|
808
811
|
|
|
809
812
|
ConfigRuleComplianceFilters.add_member(:config_rule_name, Shapes::ShapeRef.new(shape: ConfigRuleName, location_name: "ConfigRuleName"))
|
|
@@ -1175,6 +1178,7 @@ module Aws::ConfigService
|
|
|
1175
1178
|
DescribeConfigRuleEvaluationStatusResponse.struct_class = Types::DescribeConfigRuleEvaluationStatusResponse
|
|
1176
1179
|
|
|
1177
1180
|
DescribeConfigRulesFilters.add_member(:evaluation_mode, Shapes::ShapeRef.new(shape: EvaluationMode, location_name: "EvaluationMode"))
|
|
1181
|
+
DescribeConfigRulesFilters.add_member(:rule_evaluation_visibility, Shapes::ShapeRef.new(shape: RuleEvaluationVisibility, location_name: "RuleEvaluationVisibility"))
|
|
1178
1182
|
DescribeConfigRulesFilters.struct_class = Types::DescribeConfigRulesFilters
|
|
1179
1183
|
|
|
1180
1184
|
DescribeConfigRulesRequest.add_member(:config_rule_names, Shapes::ShapeRef.new(shape: ConfigRuleNames, location_name: "ConfigRuleNames"))
|
|
@@ -2211,6 +2215,7 @@ module Aws::ConfigService
|
|
|
2211
2215
|
Scope.add_member(:tag_key, Shapes::ShapeRef.new(shape: StringWithCharLimit128, location_name: "TagKey"))
|
|
2212
2216
|
Scope.add_member(:tag_value, Shapes::ShapeRef.new(shape: StringWithCharLimit256, location_name: "TagValue"))
|
|
2213
2217
|
Scope.add_member(:compliance_resource_id, Shapes::ShapeRef.new(shape: BaseResourceId, location_name: "ComplianceResourceId"))
|
|
2218
|
+
Scope.add_member(:service_principals, Shapes::ShapeRef.new(shape: ServicePrincipals, location_name: "ServicePrincipals"))
|
|
2214
2219
|
Scope.struct_class = Types::Scope
|
|
2215
2220
|
|
|
2216
2221
|
SelectAggregateResourceConfigRequest.add_member(:expression, Shapes::ShapeRef.new(shape: Expression, required: true, location_name: "Expression"))
|
|
@@ -2237,6 +2242,8 @@ module Aws::ConfigService
|
|
|
2237
2242
|
|
|
2238
2243
|
ServicePrincipalValueList.member = Shapes::ShapeRef.new(shape: ServicePrincipalValue)
|
|
2239
2244
|
|
|
2245
|
+
ServicePrincipals.member = Shapes::ShapeRef.new(shape: StringWithCharLimit128)
|
|
2246
|
+
|
|
2240
2247
|
Source.add_member(:owner, Shapes::ShapeRef.new(shape: Owner, required: true, location_name: "Owner"))
|
|
2241
2248
|
Source.add_member(:source_identifier, Shapes::ShapeRef.new(shape: StringWithCharLimit256, location_name: "SourceIdentifier"))
|
|
2242
2249
|
Source.add_member(:source_details, Shapes::ShapeRef.new(shape: SourceDetails, location_name: "SourceDetails"))
|
|
@@ -1086,6 +1086,13 @@ module Aws::ConfigService
|
|
|
1086
1086
|
# only.
|
|
1087
1087
|
# @return [Array<Types::EvaluationModeConfiguration>]
|
|
1088
1088
|
#
|
|
1089
|
+
# @!attribute [rw] rule_evaluation_visibility
|
|
1090
|
+
# Indicates whether you can get Evaluations for the Config rule. You
|
|
1091
|
+
# can get Evaluations for the Amazon Web Services Config rule if this
|
|
1092
|
+
# value is `EXTERNAL`. You cannot get Evaluations for the Amazon Web
|
|
1093
|
+
# Services Config rule if this value is `INTERNAL`.
|
|
1094
|
+
# @return [String]
|
|
1095
|
+
#
|
|
1089
1096
|
# @see http://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/ConfigRule AWS API Documentation
|
|
1090
1097
|
#
|
|
1091
1098
|
class ConfigRule < Struct.new(
|
|
@@ -1099,7 +1106,8 @@ module Aws::ConfigService
|
|
|
1099
1106
|
:maximum_execution_frequency,
|
|
1100
1107
|
:config_rule_state,
|
|
1101
1108
|
:created_by,
|
|
1102
|
-
:evaluation_modes
|
|
1109
|
+
:evaluation_modes,
|
|
1110
|
+
:rule_evaluation_visibility)
|
|
1103
1111
|
SENSITIVE = []
|
|
1104
1112
|
include Aws::Structure
|
|
1105
1113
|
end
|
|
@@ -3034,10 +3042,15 @@ module Aws::ConfigService
|
|
|
3034
3042
|
# Proactive.
|
|
3035
3043
|
# @return [String]
|
|
3036
3044
|
#
|
|
3045
|
+
# @!attribute [rw] rule_evaluation_visibility
|
|
3046
|
+
# Filters the results by `RuleEvaluationVisibility`.
|
|
3047
|
+
# @return [String]
|
|
3048
|
+
#
|
|
3037
3049
|
# @see http://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/DescribeConfigRulesFilters AWS API Documentation
|
|
3038
3050
|
#
|
|
3039
3051
|
class DescribeConfigRulesFilters < Struct.new(
|
|
3040
|
-
:evaluation_mode
|
|
3052
|
+
:evaluation_mode,
|
|
3053
|
+
:rule_evaluation_visibility)
|
|
3041
3054
|
SENSITIVE = []
|
|
3042
3055
|
include Aws::Structure
|
|
3043
3056
|
end
|
|
@@ -8736,13 +8749,24 @@ module Aws::ConfigService
|
|
|
8736
8749
|
# you must specify one resource type for `ComplianceResourceTypes`.
|
|
8737
8750
|
# @return [String]
|
|
8738
8751
|
#
|
|
8752
|
+
# @!attribute [rw] service_principals
|
|
8753
|
+
# The service principals of the Amazon Web Services services for the
|
|
8754
|
+
# rule.
|
|
8755
|
+
#
|
|
8756
|
+
# <note markdown="1"> The field is populated only if the service-linked rule is created by
|
|
8757
|
+
# a service. The field is empty if you create your own rule.
|
|
8758
|
+
#
|
|
8759
|
+
# </note>
|
|
8760
|
+
# @return [Array<String>]
|
|
8761
|
+
#
|
|
8739
8762
|
# @see http://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/Scope AWS API Documentation
|
|
8740
8763
|
#
|
|
8741
8764
|
class Scope < Struct.new(
|
|
8742
8765
|
:compliance_resource_types,
|
|
8743
8766
|
:tag_key,
|
|
8744
8767
|
:tag_value,
|
|
8745
|
-
:compliance_resource_id
|
|
8768
|
+
:compliance_resource_id,
|
|
8769
|
+
:service_principals)
|
|
8746
8770
|
SENSITIVE = []
|
|
8747
8771
|
include Aws::Structure
|
|
8748
8772
|
end
|
data/sig/client.rbs
CHANGED
|
@@ -361,7 +361,8 @@ module Aws
|
|
|
361
361
|
?config_rule_names: Array[::String],
|
|
362
362
|
?next_token: ::String,
|
|
363
363
|
?filters: {
|
|
364
|
-
evaluation_mode: ("DETECTIVE" | "PROACTIVE")
|
|
364
|
+
evaluation_mode: ("DETECTIVE" | "PROACTIVE")?,
|
|
365
|
+
rule_evaluation_visibility: ("EXTERNAL" | "INTERNAL")?
|
|
365
366
|
}
|
|
366
367
|
) -> _DescribeConfigRulesResponseSuccess
|
|
367
368
|
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeConfigRulesResponseSuccess
|
|
@@ -1044,7 +1045,8 @@ module Aws
|
|
|
1044
1045
|
compliance_resource_types: Array[::String]?,
|
|
1045
1046
|
tag_key: ::String?,
|
|
1046
1047
|
tag_value: ::String?,
|
|
1047
|
-
compliance_resource_id: ::String
|
|
1048
|
+
compliance_resource_id: ::String?,
|
|
1049
|
+
service_principals: Array[::String]?
|
|
1048
1050
|
}?,
|
|
1049
1051
|
source: {
|
|
1050
1052
|
owner: ("CUSTOM_LAMBDA" | "AWS" | "CUSTOM_POLICY"),
|
|
@@ -1070,7 +1072,8 @@ module Aws
|
|
|
1070
1072
|
{
|
|
1071
1073
|
mode: ("DETECTIVE" | "PROACTIVE")?
|
|
1072
1074
|
}
|
|
1073
|
-
]
|
|
1075
|
+
]?,
|
|
1076
|
+
rule_evaluation_visibility: ("EXTERNAL" | "INTERNAL")?
|
|
1074
1077
|
},
|
|
1075
1078
|
?tags: Array[
|
|
1076
1079
|
{
|
data/sig/types.rbs
CHANGED
|
@@ -242,6 +242,7 @@ module Aws::ConfigService
|
|
|
242
242
|
attr_accessor config_rule_state: ("ACTIVE" | "DELETING" | "DELETING_RESULTS" | "EVALUATING")
|
|
243
243
|
attr_accessor created_by: ::String
|
|
244
244
|
attr_accessor evaluation_modes: ::Array[Types::EvaluationModeConfiguration]
|
|
245
|
+
attr_accessor rule_evaluation_visibility: ("EXTERNAL" | "INTERNAL")
|
|
245
246
|
SENSITIVE: []
|
|
246
247
|
end
|
|
247
248
|
|
|
@@ -674,6 +675,7 @@ module Aws::ConfigService
|
|
|
674
675
|
|
|
675
676
|
class DescribeConfigRulesFilters
|
|
676
677
|
attr_accessor evaluation_mode: ("DETECTIVE" | "PROACTIVE")
|
|
678
|
+
attr_accessor rule_evaluation_visibility: ("EXTERNAL" | "INTERNAL")
|
|
677
679
|
SENSITIVE: []
|
|
678
680
|
end
|
|
679
681
|
|
|
@@ -2011,6 +2013,7 @@ module Aws::ConfigService
|
|
|
2011
2013
|
attr_accessor tag_key: ::String
|
|
2012
2014
|
attr_accessor tag_value: ::String
|
|
2013
2015
|
attr_accessor compliance_resource_id: ::String
|
|
2016
|
+
attr_accessor service_principals: ::Array[::String]
|
|
2014
2017
|
SENSITIVE: []
|
|
2015
2018
|
end
|
|
2016
2019
|
|