aws-sdk-controlcatalog 1.42.0 → 1.44.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-controlcatalog/client.rb +11 -1
- data/lib/aws-sdk-controlcatalog/client_api.rb +15 -0
- data/lib/aws-sdk-controlcatalog/types.rb +62 -18
- data/lib/aws-sdk-controlcatalog.rb +1 -1
- data/sig/client.rbs +4 -1
- data/sig/types.rbs +6 -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: 433a8efeffeb330e059f8192a12a77b9ea6d33cbdaffa03b79f8020dd3051db0
|
|
4
|
+
data.tar.gz: c22293a8c9aea05fe4a549dc0f559931e0bf4155b5bea92ba1488379ec2cb7ae
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 50e32bf34cc6a17e8139f279f8bf6db238d9c6f8d1a8b57d80ed6bf63311d0249a9618fe4d666a67ad296b38d88006b228af7a6f50618defb25eaa55fdf7ed9f
|
|
7
|
+
data.tar.gz: c813daae4e5700ffde1d23bac752ece3de1d838adb80441ae617c7abe2deaf0f62b00763398ec2ea82e16a926bb44bbb2b68a73e40f0892270aa46a17e52c44c
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,16 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.44.0 (2026-05-28)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - AWS Control Catalog - Added GovernedProviders response field and inclusion filter to GetControl and ListControls APIs to identify and filter by cloud provider. Added ParameterRequirementSummary response field indicating parameter requirements.
|
|
8
|
+
|
|
9
|
+
1.43.0 (2026-05-26)
|
|
10
|
+
------------------
|
|
11
|
+
|
|
12
|
+
* Feature - Adding new BDD representation of endpoint ruleset
|
|
13
|
+
|
|
4
14
|
1.42.0 (2026-05-21)
|
|
5
15
|
------------------
|
|
6
16
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.44.0
|
|
@@ -513,9 +513,11 @@ module Aws::ControlCatalog
|
|
|
513
513
|
# * {Types::GetControlResponse#severity #severity} => String
|
|
514
514
|
# * {Types::GetControlResponse#region_configuration #region_configuration} => Types::RegionConfiguration
|
|
515
515
|
# * {Types::GetControlResponse#implementation #implementation} => Types::ImplementationDetails
|
|
516
|
+
# * {Types::GetControlResponse#parameter_requirement_summary #parameter_requirement_summary} => String
|
|
516
517
|
# * {Types::GetControlResponse#parameters #parameters} => Array<Types::ControlParameter>
|
|
517
518
|
# * {Types::GetControlResponse#create_time #create_time} => Time
|
|
518
519
|
# * {Types::GetControlResponse#governed_resources #governed_resources} => Array<String>
|
|
520
|
+
# * {Types::GetControlResponse#governed_providers #governed_providers} => Array<String>
|
|
519
521
|
#
|
|
520
522
|
# @example Request syntax with placeholder values
|
|
521
523
|
#
|
|
@@ -537,11 +539,15 @@ module Aws::ControlCatalog
|
|
|
537
539
|
# resp.region_configuration.deployable_regions[0] #=> String
|
|
538
540
|
# resp.implementation.type #=> String
|
|
539
541
|
# resp.implementation.identifier #=> String
|
|
542
|
+
# resp.parameter_requirement_summary #=> String, one of "REQUIRED", "OPTIONAL", "NONE"
|
|
540
543
|
# resp.parameters #=> Array
|
|
541
544
|
# resp.parameters[0].name #=> String
|
|
545
|
+
# resp.parameters[0].requirement #=> String, one of "REQUIRED", "OPTIONAL"
|
|
542
546
|
# resp.create_time #=> Time
|
|
543
547
|
# resp.governed_resources #=> Array
|
|
544
548
|
# resp.governed_resources[0] #=> String
|
|
549
|
+
# resp.governed_providers #=> Array
|
|
550
|
+
# resp.governed_providers[0] #=> String
|
|
545
551
|
#
|
|
546
552
|
# @see http://docs.aws.amazon.com/goto/WebAPI/controlcatalog-2018-05-10/GetControl AWS API Documentation
|
|
547
553
|
#
|
|
@@ -703,6 +709,7 @@ module Aws::ControlCatalog
|
|
|
703
709
|
# types: ["ImplementationType"],
|
|
704
710
|
# identifiers: ["ImplementationIdentifier"],
|
|
705
711
|
# },
|
|
712
|
+
# governed_providers: ["GovernedProvider"],
|
|
706
713
|
# },
|
|
707
714
|
# })
|
|
708
715
|
#
|
|
@@ -716,11 +723,14 @@ module Aws::ControlCatalog
|
|
|
716
723
|
# resp.controls[0].description #=> String
|
|
717
724
|
# resp.controls[0].behavior #=> String, one of "PREVENTIVE", "PROACTIVE", "DETECTIVE"
|
|
718
725
|
# resp.controls[0].severity #=> String, one of "LOW", "MEDIUM", "HIGH", "CRITICAL"
|
|
726
|
+
# resp.controls[0].parameter_requirement_summary #=> String, one of "REQUIRED", "OPTIONAL", "NONE"
|
|
719
727
|
# resp.controls[0].implementation.type #=> String
|
|
720
728
|
# resp.controls[0].implementation.identifier #=> String
|
|
721
729
|
# resp.controls[0].create_time #=> Time
|
|
722
730
|
# resp.controls[0].governed_resources #=> Array
|
|
723
731
|
# resp.controls[0].governed_resources[0] #=> String
|
|
732
|
+
# resp.controls[0].governed_providers #=> Array
|
|
733
|
+
# resp.controls[0].governed_providers[0] #=> String
|
|
724
734
|
# resp.next_token #=> String
|
|
725
735
|
#
|
|
726
736
|
# @see http://docs.aws.amazon.com/goto/WebAPI/controlcatalog-2018-05-10/ListControls AWS API Documentation
|
|
@@ -851,7 +861,7 @@ module Aws::ControlCatalog
|
|
|
851
861
|
tracer: tracer
|
|
852
862
|
)
|
|
853
863
|
context[:gem_name] = 'aws-sdk-controlcatalog'
|
|
854
|
-
context[:gem_version] = '1.
|
|
864
|
+
context[:gem_version] = '1.44.0'
|
|
855
865
|
Seahorse::Client::Request.new(handlers, context)
|
|
856
866
|
end
|
|
857
867
|
|
|
@@ -33,6 +33,7 @@ module Aws::ControlCatalog
|
|
|
33
33
|
ControlMappingFilter = Shapes::StructureShape.new(name: 'ControlMappingFilter')
|
|
34
34
|
ControlMappings = Shapes::ListShape.new(name: 'ControlMappings')
|
|
35
35
|
ControlParameter = Shapes::StructureShape.new(name: 'ControlParameter')
|
|
36
|
+
ControlParameterRequirement = Shapes::StringShape.new(name: 'ControlParameterRequirement')
|
|
36
37
|
ControlParameters = Shapes::ListShape.new(name: 'ControlParameters')
|
|
37
38
|
ControlRelationType = Shapes::StringShape.new(name: 'ControlRelationType')
|
|
38
39
|
ControlScope = Shapes::StringShape.new(name: 'ControlScope')
|
|
@@ -50,6 +51,9 @@ module Aws::ControlCatalog
|
|
|
50
51
|
FrameworkName = Shapes::StringShape.new(name: 'FrameworkName')
|
|
51
52
|
GetControlRequest = Shapes::StructureShape.new(name: 'GetControlRequest')
|
|
52
53
|
GetControlResponse = Shapes::StructureShape.new(name: 'GetControlResponse')
|
|
54
|
+
GovernedProvider = Shapes::StringShape.new(name: 'GovernedProvider')
|
|
55
|
+
GovernedProviderFilterList = Shapes::ListShape.new(name: 'GovernedProviderFilterList')
|
|
56
|
+
GovernedProviders = Shapes::ListShape.new(name: 'GovernedProviders')
|
|
53
57
|
GovernedResource = Shapes::StringShape.new(name: 'GovernedResource')
|
|
54
58
|
GovernedResources = Shapes::ListShape.new(name: 'GovernedResources')
|
|
55
59
|
ImplementationDetails = Shapes::StructureShape.new(name: 'ImplementationDetails')
|
|
@@ -85,6 +89,7 @@ module Aws::ControlCatalog
|
|
|
85
89
|
ObjectiveSummary = Shapes::StructureShape.new(name: 'ObjectiveSummary')
|
|
86
90
|
ObjectiveSummaryList = Shapes::ListShape.new(name: 'ObjectiveSummaryList')
|
|
87
91
|
PaginationToken = Shapes::StringShape.new(name: 'PaginationToken')
|
|
92
|
+
ParameterRequirementSummary = Shapes::StringShape.new(name: 'ParameterRequirementSummary')
|
|
88
93
|
RegionCode = Shapes::StringShape.new(name: 'RegionCode')
|
|
89
94
|
RegionConfiguration = Shapes::StructureShape.new(name: 'RegionConfiguration')
|
|
90
95
|
RelatedControlMappingDetails = Shapes::StructureShape.new(name: 'RelatedControlMappingDetails')
|
|
@@ -129,6 +134,7 @@ module Aws::ControlCatalog
|
|
|
129
134
|
ControlArnFilterList.member = Shapes::ShapeRef.new(shape: ControlArn)
|
|
130
135
|
|
|
131
136
|
ControlFilter.add_member(:implementations, Shapes::ShapeRef.new(shape: ImplementationFilter, location_name: "Implementations"))
|
|
137
|
+
ControlFilter.add_member(:governed_providers, Shapes::ShapeRef.new(shape: GovernedProviderFilterList, location_name: "GovernedProviders"))
|
|
132
138
|
ControlFilter.struct_class = Types::ControlFilter
|
|
133
139
|
|
|
134
140
|
ControlMapping.add_member(:control_arn, Shapes::ShapeRef.new(shape: ControlArn, required: true, location_name: "ControlArn"))
|
|
@@ -144,6 +150,7 @@ module Aws::ControlCatalog
|
|
|
144
150
|
ControlMappings.member = Shapes::ShapeRef.new(shape: ControlMapping)
|
|
145
151
|
|
|
146
152
|
ControlParameter.add_member(:name, Shapes::ShapeRef.new(shape: String, required: true, location_name: "Name"))
|
|
153
|
+
ControlParameter.add_member(:requirement, Shapes::ShapeRef.new(shape: ControlParameterRequirement, location_name: "Requirement"))
|
|
147
154
|
ControlParameter.struct_class = Types::ControlParameter
|
|
148
155
|
|
|
149
156
|
ControlParameters.member = Shapes::ShapeRef.new(shape: ControlParameter)
|
|
@@ -154,9 +161,11 @@ module Aws::ControlCatalog
|
|
|
154
161
|
ControlSummary.add_member(:description, Shapes::ShapeRef.new(shape: String, required: true, location_name: "Description"))
|
|
155
162
|
ControlSummary.add_member(:behavior, Shapes::ShapeRef.new(shape: ControlBehavior, location_name: "Behavior"))
|
|
156
163
|
ControlSummary.add_member(:severity, Shapes::ShapeRef.new(shape: ControlSeverity, location_name: "Severity"))
|
|
164
|
+
ControlSummary.add_member(:parameter_requirement_summary, Shapes::ShapeRef.new(shape: ParameterRequirementSummary, location_name: "ParameterRequirementSummary"))
|
|
157
165
|
ControlSummary.add_member(:implementation, Shapes::ShapeRef.new(shape: ImplementationSummary, location_name: "Implementation"))
|
|
158
166
|
ControlSummary.add_member(:create_time, Shapes::ShapeRef.new(shape: Timestamp, location_name: "CreateTime"))
|
|
159
167
|
ControlSummary.add_member(:governed_resources, Shapes::ShapeRef.new(shape: GovernedResources, location_name: "GovernedResources"))
|
|
168
|
+
ControlSummary.add_member(:governed_providers, Shapes::ShapeRef.new(shape: GovernedProviders, location_name: "GovernedProviders"))
|
|
160
169
|
ControlSummary.struct_class = Types::ControlSummary
|
|
161
170
|
|
|
162
171
|
Controls.member = Shapes::ShapeRef.new(shape: ControlSummary)
|
|
@@ -192,11 +201,17 @@ module Aws::ControlCatalog
|
|
|
192
201
|
GetControlResponse.add_member(:severity, Shapes::ShapeRef.new(shape: ControlSeverity, location_name: "Severity"))
|
|
193
202
|
GetControlResponse.add_member(:region_configuration, Shapes::ShapeRef.new(shape: RegionConfiguration, required: true, location_name: "RegionConfiguration"))
|
|
194
203
|
GetControlResponse.add_member(:implementation, Shapes::ShapeRef.new(shape: ImplementationDetails, location_name: "Implementation"))
|
|
204
|
+
GetControlResponse.add_member(:parameter_requirement_summary, Shapes::ShapeRef.new(shape: ParameterRequirementSummary, location_name: "ParameterRequirementSummary"))
|
|
195
205
|
GetControlResponse.add_member(:parameters, Shapes::ShapeRef.new(shape: ControlParameters, location_name: "Parameters"))
|
|
196
206
|
GetControlResponse.add_member(:create_time, Shapes::ShapeRef.new(shape: Timestamp, location_name: "CreateTime"))
|
|
197
207
|
GetControlResponse.add_member(:governed_resources, Shapes::ShapeRef.new(shape: GovernedResources, location_name: "GovernedResources"))
|
|
208
|
+
GetControlResponse.add_member(:governed_providers, Shapes::ShapeRef.new(shape: GovernedProviders, location_name: "GovernedProviders"))
|
|
198
209
|
GetControlResponse.struct_class = Types::GetControlResponse
|
|
199
210
|
|
|
211
|
+
GovernedProviderFilterList.member = Shapes::ShapeRef.new(shape: GovernedProvider)
|
|
212
|
+
|
|
213
|
+
GovernedProviders.member = Shapes::ShapeRef.new(shape: GovernedProvider)
|
|
214
|
+
|
|
200
215
|
GovernedResources.member = Shapes::ShapeRef.new(shape: GovernedResource)
|
|
201
216
|
|
|
202
217
|
ImplementationDetails.add_member(:type, Shapes::ShapeRef.new(shape: ImplementationType, required: true, location_name: "Type"))
|
|
@@ -151,10 +151,16 @@ module Aws::ControlCatalog
|
|
|
151
151
|
# services or with specific service identifiers.
|
|
152
152
|
# @return [Types::ImplementationFilter]
|
|
153
153
|
#
|
|
154
|
+
# @!attribute [rw] governed_providers
|
|
155
|
+
# A filter that narrows the results to controls that govern a specific
|
|
156
|
+
# provider's resources.
|
|
157
|
+
# @return [Array<String>]
|
|
158
|
+
#
|
|
154
159
|
# @see http://docs.aws.amazon.com/goto/WebAPI/controlcatalog-2018-05-10/ControlFilter AWS API Documentation
|
|
155
160
|
#
|
|
156
161
|
class ControlFilter < Struct.new(
|
|
157
|
-
:implementations
|
|
162
|
+
:implementations,
|
|
163
|
+
:governed_providers)
|
|
158
164
|
SENSITIVE = []
|
|
159
165
|
include Aws::Structure
|
|
160
166
|
end
|
|
@@ -276,10 +282,16 @@ module Aws::ControlCatalog
|
|
|
276
282
|
# [2]: https://docs.aws.amazon.com/controltower/latest/APIReference/API_UpdateEnabledControl.html
|
|
277
283
|
# @return [String]
|
|
278
284
|
#
|
|
285
|
+
# @!attribute [rw] requirement
|
|
286
|
+
# Indicates whether the parameter is required or optional when you
|
|
287
|
+
# enable the control.
|
|
288
|
+
# @return [String]
|
|
289
|
+
#
|
|
279
290
|
# @see http://docs.aws.amazon.com/goto/WebAPI/controlcatalog-2018-05-10/ControlParameter AWS API Documentation
|
|
280
291
|
#
|
|
281
292
|
class ControlParameter < Struct.new(
|
|
282
|
-
:name
|
|
293
|
+
:name,
|
|
294
|
+
:requirement)
|
|
283
295
|
SENSITIVE = []
|
|
284
296
|
include Aws::Structure
|
|
285
297
|
end
|
|
@@ -314,6 +326,13 @@ module Aws::ControlCatalog
|
|
|
314
326
|
# An enumerated type, with the following possible values:
|
|
315
327
|
# @return [String]
|
|
316
328
|
#
|
|
329
|
+
# @!attribute [rw] parameter_requirement_summary
|
|
330
|
+
# A summary that indicates whether the control requires parameters,
|
|
331
|
+
# accepts optional parameters, or does not support parameters. Use
|
|
332
|
+
# this field to determine whether you need to supply parameter values
|
|
333
|
+
# when you enable the control.
|
|
334
|
+
# @return [String]
|
|
335
|
+
#
|
|
317
336
|
# @!attribute [rw] implementation
|
|
318
337
|
# An object of type `ImplementationSummary` that describes how the
|
|
319
338
|
# control is implemented.
|
|
@@ -325,16 +344,23 @@ module Aws::ControlCatalog
|
|
|
325
344
|
# @return [Time]
|
|
326
345
|
#
|
|
327
346
|
# @!attribute [rw] governed_resources
|
|
328
|
-
# A list of
|
|
329
|
-
#
|
|
330
|
-
#
|
|
331
|
-
#
|
|
332
|
-
# resources are represented as
|
|
333
|
-
#
|
|
334
|
-
#
|
|
347
|
+
# A list of resource types that are governed by this control. This
|
|
348
|
+
# information helps you understand which controls can govern certain
|
|
349
|
+
# types of resources, and conversely, which resources are affected
|
|
350
|
+
# when the control is implemented. For Amazon Web Services controls,
|
|
351
|
+
# the resources are represented as CloudFormation resource types. For
|
|
352
|
+
# non-Amazon Web Services controls, the resources are represented in a
|
|
353
|
+
# provider-specific format. If `GovernedResources` cannot be
|
|
354
|
+
# represented by available resource types, it’s returned as an empty
|
|
335
355
|
# list.
|
|
336
356
|
# @return [Array<String>]
|
|
337
357
|
#
|
|
358
|
+
# @!attribute [rw] governed_providers
|
|
359
|
+
# A list of providers whose resources are governed by this control.
|
|
360
|
+
# For example, a value of `AWS` indicates that the control governs
|
|
361
|
+
# Amazon Web Services resources.
|
|
362
|
+
# @return [Array<String>]
|
|
363
|
+
#
|
|
338
364
|
# @see http://docs.aws.amazon.com/goto/WebAPI/controlcatalog-2018-05-10/ControlSummary AWS API Documentation
|
|
339
365
|
#
|
|
340
366
|
class ControlSummary < Struct.new(
|
|
@@ -344,9 +370,11 @@ module Aws::ControlCatalog
|
|
|
344
370
|
:description,
|
|
345
371
|
:behavior,
|
|
346
372
|
:severity,
|
|
373
|
+
:parameter_requirement_summary,
|
|
347
374
|
:implementation,
|
|
348
375
|
:create_time,
|
|
349
|
-
:governed_resources
|
|
376
|
+
:governed_resources,
|
|
377
|
+
:governed_providers)
|
|
350
378
|
SENSITIVE = []
|
|
351
379
|
include Aws::Structure
|
|
352
380
|
end
|
|
@@ -502,6 +530,13 @@ module Aws::ControlCatalog
|
|
|
502
530
|
# object that shows the underlying implementation type for a control.
|
|
503
531
|
# @return [Types::ImplementationDetails]
|
|
504
532
|
#
|
|
533
|
+
# @!attribute [rw] parameter_requirement_summary
|
|
534
|
+
# A summary that indicates whether the control requires parameters,
|
|
535
|
+
# accepts optional parameters, or does not support parameters. Use
|
|
536
|
+
# this field to determine whether you need to supply parameter values
|
|
537
|
+
# when you enable the control.
|
|
538
|
+
# @return [String]
|
|
539
|
+
#
|
|
505
540
|
# @!attribute [rw] parameters
|
|
506
541
|
# Returns an array of `ControlParameter` objects that specify the
|
|
507
542
|
# parameters a control supports. An empty list is returned for
|
|
@@ -514,16 +549,23 @@ module Aws::ControlCatalog
|
|
|
514
549
|
# @return [Time]
|
|
515
550
|
#
|
|
516
551
|
# @!attribute [rw] governed_resources
|
|
517
|
-
# A list of
|
|
518
|
-
#
|
|
519
|
-
#
|
|
520
|
-
#
|
|
521
|
-
# resources are represented as
|
|
522
|
-
#
|
|
523
|
-
#
|
|
552
|
+
# A list of resource types that are governed by this control. This
|
|
553
|
+
# information helps you understand which controls can govern certain
|
|
554
|
+
# types of resources, and conversely, which resources are affected
|
|
555
|
+
# when the control is implemented. For Amazon Web Services controls,
|
|
556
|
+
# the resources are represented as CloudFormation resource types. For
|
|
557
|
+
# non-Amazon Web Services controls, the resources are represented in a
|
|
558
|
+
# provider-specific format. If `GovernedResources` cannot be
|
|
559
|
+
# represented by available resource types, it’s returned as an empty
|
|
524
560
|
# list.
|
|
525
561
|
# @return [Array<String>]
|
|
526
562
|
#
|
|
563
|
+
# @!attribute [rw] governed_providers
|
|
564
|
+
# A list of providers whose resources are governed by this control.
|
|
565
|
+
# For example, a value of `AWS` indicates that the control governs
|
|
566
|
+
# Amazon Web Services resources.
|
|
567
|
+
# @return [Array<String>]
|
|
568
|
+
#
|
|
527
569
|
# @see http://docs.aws.amazon.com/goto/WebAPI/controlcatalog-2018-05-10/GetControlResponse AWS API Documentation
|
|
528
570
|
#
|
|
529
571
|
class GetControlResponse < Struct.new(
|
|
@@ -535,9 +577,11 @@ module Aws::ControlCatalog
|
|
|
535
577
|
:severity,
|
|
536
578
|
:region_configuration,
|
|
537
579
|
:implementation,
|
|
580
|
+
:parameter_requirement_summary,
|
|
538
581
|
:parameters,
|
|
539
582
|
:create_time,
|
|
540
|
-
:governed_resources
|
|
583
|
+
:governed_resources,
|
|
584
|
+
:governed_providers)
|
|
541
585
|
SENSITIVE = []
|
|
542
586
|
include Aws::Structure
|
|
543
587
|
end
|
data/sig/client.rbs
CHANGED
|
@@ -88,9 +88,11 @@ module Aws
|
|
|
88
88
|
def severity: () -> ("LOW" | "MEDIUM" | "HIGH" | "CRITICAL")
|
|
89
89
|
def region_configuration: () -> Types::RegionConfiguration
|
|
90
90
|
def implementation: () -> Types::ImplementationDetails
|
|
91
|
+
def parameter_requirement_summary: () -> ("REQUIRED" | "OPTIONAL" | "NONE")
|
|
91
92
|
def parameters: () -> ::Array[Types::ControlParameter]
|
|
92
93
|
def create_time: () -> ::Time
|
|
93
94
|
def governed_resources: () -> ::Array[::String]
|
|
95
|
+
def governed_providers: () -> ::Array[::String]
|
|
94
96
|
end
|
|
95
97
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ControlCatalog/Client.html#get_control-instance_method
|
|
96
98
|
def get_control: (
|
|
@@ -147,7 +149,8 @@ module Aws
|
|
|
147
149
|
implementations: {
|
|
148
150
|
types: Array[::String]?,
|
|
149
151
|
identifiers: Array[::String]?
|
|
150
|
-
}
|
|
152
|
+
}?,
|
|
153
|
+
governed_providers: Array[::String]?
|
|
151
154
|
}
|
|
152
155
|
) -> _ListControlsResponseSuccess
|
|
153
156
|
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListControlsResponseSuccess
|
data/sig/types.rbs
CHANGED
|
@@ -48,6 +48,7 @@ module Aws::ControlCatalog
|
|
|
48
48
|
|
|
49
49
|
class ControlFilter
|
|
50
50
|
attr_accessor implementations: Types::ImplementationFilter
|
|
51
|
+
attr_accessor governed_providers: ::Array[::String]
|
|
51
52
|
SENSITIVE: []
|
|
52
53
|
end
|
|
53
54
|
|
|
@@ -67,6 +68,7 @@ module Aws::ControlCatalog
|
|
|
67
68
|
|
|
68
69
|
class ControlParameter
|
|
69
70
|
attr_accessor name: ::String
|
|
71
|
+
attr_accessor requirement: ("REQUIRED" | "OPTIONAL")
|
|
70
72
|
SENSITIVE: []
|
|
71
73
|
end
|
|
72
74
|
|
|
@@ -77,9 +79,11 @@ module Aws::ControlCatalog
|
|
|
77
79
|
attr_accessor description: ::String
|
|
78
80
|
attr_accessor behavior: ("PREVENTIVE" | "PROACTIVE" | "DETECTIVE")
|
|
79
81
|
attr_accessor severity: ("LOW" | "MEDIUM" | "HIGH" | "CRITICAL")
|
|
82
|
+
attr_accessor parameter_requirement_summary: ("REQUIRED" | "OPTIONAL" | "NONE")
|
|
80
83
|
attr_accessor implementation: Types::ImplementationSummary
|
|
81
84
|
attr_accessor create_time: ::Time
|
|
82
85
|
attr_accessor governed_resources: ::Array[::String]
|
|
86
|
+
attr_accessor governed_providers: ::Array[::String]
|
|
83
87
|
SENSITIVE: []
|
|
84
88
|
end
|
|
85
89
|
|
|
@@ -117,9 +121,11 @@ module Aws::ControlCatalog
|
|
|
117
121
|
attr_accessor severity: ("LOW" | "MEDIUM" | "HIGH" | "CRITICAL")
|
|
118
122
|
attr_accessor region_configuration: Types::RegionConfiguration
|
|
119
123
|
attr_accessor implementation: Types::ImplementationDetails
|
|
124
|
+
attr_accessor parameter_requirement_summary: ("REQUIRED" | "OPTIONAL" | "NONE")
|
|
120
125
|
attr_accessor parameters: ::Array[Types::ControlParameter]
|
|
121
126
|
attr_accessor create_time: ::Time
|
|
122
127
|
attr_accessor governed_resources: ::Array[::String]
|
|
128
|
+
attr_accessor governed_providers: ::Array[::String]
|
|
123
129
|
SENSITIVE: []
|
|
124
130
|
end
|
|
125
131
|
|