aws-sdk-controltower 1.35.0 → 1.37.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: d9ff1de29f393987010b2669d7f91e6e72e0d41d31bb28ca96621d94e696d64f
4
- data.tar.gz: c5918e927d19a28f1048c627b9f1b26bc01c82f0885a4db9b0668f2a6c34daf2
3
+ metadata.gz: d622d7b088ac93aa8fc6e8851e47a4e4b33d1e1e455767fab0440bacc0019fb8
4
+ data.tar.gz: 7dd993ef3cb69fc1b098742945e3a3a7ae84f048946e14d3f3363991e77fc542
5
5
  SHA512:
6
- metadata.gz: 8ed3be31e3ca302b639ee7e98404d91f2433c52f494e31004055cc582001e3f99da88337ac8de8d79c6d17b4690b78d1e85848ff69058ef2a29762646d46a24c
7
- data.tar.gz: 07b7455fd74efeedea6b240cd41e4b623af39ba519ca6295e0fb552076245a1b5a54823464794947130ea2c2f1d30cf715017c2689a4b88e31fe37ffe6c3538f
6
+ metadata.gz: 3b369279e6ac77184905ee27fffb16e3fb88711c09b7e574175faf16d566dcf6d3964786c845adf8caf547e40637e95be07fbcba142bbd99138c311b30557249
7
+ data.tar.gz: 4894537f557171e0771306b23d337d6a390a3081d6143d74bbbb8d2f5b8a53e2f017bcf82b1e491ad24f119dcd2cbeb61810f8dbbec1bb3489a52efa18b307c3
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.37.0 (2025-01-15)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.36.0 (2024-11-20)
10
+ ------------------
11
+
12
+ * Feature - Adds support for child enabled baselines which allow you to see the enabled baseline status for individual accounts.
13
+
4
14
  1.35.0 (2024-11-12)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.35.0
1
+ 1.37.0
@@ -257,11 +257,34 @@ module Aws::ControlTower
257
257
  # Used when loading credentials from the shared credentials file
258
258
  # at HOME/.aws/credentials. When not specified, 'default' is used.
259
259
  #
260
+ # @option options [String] :request_checksum_calculation ("when_supported")
261
+ # Determines when a checksum will be calculated for request payloads. Values are:
262
+ #
263
+ # * `when_supported` - (default) When set, a checksum will be
264
+ # calculated for all request payloads of operations modeled with the
265
+ # `httpChecksum` trait where `requestChecksumRequired` is `true` and/or a
266
+ # `requestAlgorithmMember` is modeled.
267
+ # * `when_required` - When set, a checksum will only be calculated for
268
+ # request payloads of operations modeled with the `httpChecksum` trait where
269
+ # `requestChecksumRequired` is `true` or where a `requestAlgorithmMember`
270
+ # is modeled and supplied.
271
+ #
260
272
  # @option options [Integer] :request_min_compression_size_bytes (10240)
261
273
  # The minimum size in bytes that triggers compression for request
262
274
  # bodies. The value must be non-negative integer value between 0
263
275
  # and 10485780 bytes inclusive.
264
276
  #
277
+ # @option options [String] :response_checksum_validation ("when_supported")
278
+ # Determines when checksum validation will be performed on response payloads. Values are:
279
+ #
280
+ # * `when_supported` - (default) When set, checksum validation is performed on all
281
+ # response payloads of operations modeled with the `httpChecksum` trait where
282
+ # `responseAlgorithms` is modeled, except when no modeled checksum algorithms
283
+ # are supported.
284
+ # * `when_required` - When set, checksum validation is not performed on
285
+ # response payloads of operations unless the checksum algorithm is supported and
286
+ # the `requestValidationModeMember` member is set to `ENABLED`.
287
+ #
265
288
  # @option options [Proc] :retry_backoff
266
289
  # A proc or lambda used for backoff. Defaults to 2**retries * retry_base_delay.
267
290
  # This option is only used in the `legacy` retry mode.
@@ -902,6 +925,7 @@ module Aws::ControlTower
902
925
  # resp.enabled_baseline_details.baseline_version #=> String
903
926
  # resp.enabled_baseline_details.parameters #=> Array
904
927
  # resp.enabled_baseline_details.parameters[0].key #=> String
928
+ # resp.enabled_baseline_details.parent_identifier #=> String
905
929
  # resp.enabled_baseline_details.status_summary.last_operation_identifier #=> String
906
930
  # resp.enabled_baseline_details.status_summary.status #=> String, one of "SUCCEEDED", "FAILED", "UNDER_CHANGE"
907
931
  # resp.enabled_baseline_details.target_identifier #=> String
@@ -1143,6 +1167,10 @@ module Aws::ControlTower
1143
1167
  # filters are `baselineIdentifiers` and `targetIdentifiers`. The filter
1144
1168
  # can be applied for either, or both.
1145
1169
  #
1170
+ # @option params [Boolean] :include_children
1171
+ # A value that can be set to include the child enabled baselines in
1172
+ # responses. The default value is false.
1173
+ #
1146
1174
  # @option params [Integer] :max_results
1147
1175
  # The maximum number of results to be shown.
1148
1176
  #
@@ -1161,8 +1189,10 @@ module Aws::ControlTower
1161
1189
  # resp = client.list_enabled_baselines({
1162
1190
  # filter: {
1163
1191
  # baseline_identifiers: ["Arn"],
1192
+ # parent_identifiers: ["Arn"],
1164
1193
  # target_identifiers: ["Arn"],
1165
1194
  # },
1195
+ # include_children: false,
1166
1196
  # max_results: 1,
1167
1197
  # next_token: "ListEnabledBaselinesNextToken",
1168
1198
  # })
@@ -1173,6 +1203,7 @@ module Aws::ControlTower
1173
1203
  # resp.enabled_baselines[0].arn #=> String
1174
1204
  # resp.enabled_baselines[0].baseline_identifier #=> String
1175
1205
  # resp.enabled_baselines[0].baseline_version #=> String
1206
+ # resp.enabled_baselines[0].parent_identifier #=> String
1176
1207
  # resp.enabled_baselines[0].status_summary.last_operation_identifier #=> String
1177
1208
  # resp.enabled_baselines[0].status_summary.status #=> String, one of "SUCCEEDED", "FAILED", "UNDER_CHANGE"
1178
1209
  # resp.enabled_baselines[0].target_identifier #=> String
@@ -1720,7 +1751,7 @@ module Aws::ControlTower
1720
1751
  tracer: tracer
1721
1752
  )
1722
1753
  context[:gem_name] = 'aws-sdk-controltower'
1723
- context[:gem_version] = '1.35.0'
1754
+ context[:gem_version] = '1.37.0'
1724
1755
  Seahorse::Client::Request.new(handlers, context)
1725
1756
  end
1726
1757
 
@@ -23,6 +23,7 @@ module Aws::ControlTower
23
23
  BaselineSummary = Shapes::StructureShape.new(name: 'BaselineSummary')
24
24
  BaselineVersion = Shapes::StringShape.new(name: 'BaselineVersion')
25
25
  Baselines = Shapes::ListShape.new(name: 'Baselines')
26
+ Boolean = Shapes::BooleanShape.new(name: 'Boolean')
26
27
  ConflictException = Shapes::StructureShape.new(name: 'ConflictException')
27
28
  ControlIdentifier = Shapes::StringShape.new(name: 'ControlIdentifier')
28
29
  ControlIdentifiers = Shapes::ListShape.new(name: 'ControlIdentifiers')
@@ -58,6 +59,7 @@ module Aws::ControlTower
58
59
  EnabledBaselineParameterSummaries = Shapes::ListShape.new(name: 'EnabledBaselineParameterSummaries')
59
60
  EnabledBaselineParameterSummary = Shapes::StructureShape.new(name: 'EnabledBaselineParameterSummary')
60
61
  EnabledBaselineParameters = Shapes::ListShape.new(name: 'EnabledBaselineParameters')
62
+ EnabledBaselineParentIdentifiers = Shapes::ListShape.new(name: 'EnabledBaselineParentIdentifiers')
61
63
  EnabledBaselineSummary = Shapes::StructureShape.new(name: 'EnabledBaselineSummary')
62
64
  EnabledBaselineTargetIdentifiers = Shapes::ListShape.new(name: 'EnabledBaselineTargetIdentifiers')
63
65
  EnabledBaselines = Shapes::ListShape.new(name: 'EnabledBaselines')
@@ -279,11 +281,13 @@ module Aws::ControlTower
279
281
  EnabledBaselineDetails.add_member(:baseline_identifier, Shapes::ShapeRef.new(shape: String, required: true, location_name: "baselineIdentifier"))
280
282
  EnabledBaselineDetails.add_member(:baseline_version, Shapes::ShapeRef.new(shape: String, location_name: "baselineVersion"))
281
283
  EnabledBaselineDetails.add_member(:parameters, Shapes::ShapeRef.new(shape: EnabledBaselineParameterSummaries, location_name: "parameters"))
284
+ EnabledBaselineDetails.add_member(:parent_identifier, Shapes::ShapeRef.new(shape: Arn, location_name: "parentIdentifier"))
282
285
  EnabledBaselineDetails.add_member(:status_summary, Shapes::ShapeRef.new(shape: EnablementStatusSummary, required: true, location_name: "statusSummary"))
283
286
  EnabledBaselineDetails.add_member(:target_identifier, Shapes::ShapeRef.new(shape: String, required: true, location_name: "targetIdentifier"))
284
287
  EnabledBaselineDetails.struct_class = Types::EnabledBaselineDetails
285
288
 
286
289
  EnabledBaselineFilter.add_member(:baseline_identifiers, Shapes::ShapeRef.new(shape: EnabledBaselineBaselineIdentifiers, location_name: "baselineIdentifiers"))
290
+ EnabledBaselineFilter.add_member(:parent_identifiers, Shapes::ShapeRef.new(shape: EnabledBaselineParentIdentifiers, location_name: "parentIdentifiers"))
287
291
  EnabledBaselineFilter.add_member(:target_identifiers, Shapes::ShapeRef.new(shape: EnabledBaselineTargetIdentifiers, location_name: "targetIdentifiers"))
288
292
  EnabledBaselineFilter.struct_class = Types::EnabledBaselineFilter
289
293
 
@@ -299,9 +303,12 @@ module Aws::ControlTower
299
303
 
300
304
  EnabledBaselineParameters.member = Shapes::ShapeRef.new(shape: EnabledBaselineParameter)
301
305
 
306
+ EnabledBaselineParentIdentifiers.member = Shapes::ShapeRef.new(shape: Arn)
307
+
302
308
  EnabledBaselineSummary.add_member(:arn, Shapes::ShapeRef.new(shape: Arn, required: true, location_name: "arn"))
303
309
  EnabledBaselineSummary.add_member(:baseline_identifier, Shapes::ShapeRef.new(shape: String, required: true, location_name: "baselineIdentifier"))
304
310
  EnabledBaselineSummary.add_member(:baseline_version, Shapes::ShapeRef.new(shape: String, location_name: "baselineVersion"))
311
+ EnabledBaselineSummary.add_member(:parent_identifier, Shapes::ShapeRef.new(shape: Arn, location_name: "parentIdentifier"))
305
312
  EnabledBaselineSummary.add_member(:status_summary, Shapes::ShapeRef.new(shape: EnablementStatusSummary, required: true, location_name: "statusSummary"))
306
313
  EnabledBaselineSummary.add_member(:target_identifier, Shapes::ShapeRef.new(shape: String, required: true, location_name: "targetIdentifier"))
307
314
  EnabledBaselineSummary.struct_class = Types::EnabledBaselineSummary
@@ -455,6 +462,7 @@ module Aws::ControlTower
455
462
  ListControlOperationsOutput.struct_class = Types::ListControlOperationsOutput
456
463
 
457
464
  ListEnabledBaselinesInput.add_member(:filter, Shapes::ShapeRef.new(shape: EnabledBaselineFilter, location_name: "filter"))
465
+ ListEnabledBaselinesInput.add_member(:include_children, Shapes::ShapeRef.new(shape: Boolean, location_name: "includeChildren"))
458
466
  ListEnabledBaselinesInput.add_member(:max_results, Shapes::ShapeRef.new(shape: ListEnabledBaselinesMaxResults, location_name: "maxResults"))
459
467
  ListEnabledBaselinesInput.add_member(:next_token, Shapes::ShapeRef.new(shape: ListEnabledBaselinesNextToken, location_name: "nextToken"))
460
468
  ListEnabledBaselinesInput.struct_class = Types::ListEnabledBaselinesInput
@@ -558,6 +558,13 @@ module Aws::ControlTower
558
558
  # Shows the parameters that are applied when enabling this `Baseline`.
559
559
  # @return [Array<Types::EnabledBaselineParameterSummary>]
560
560
  #
561
+ # @!attribute [rw] parent_identifier
562
+ # An ARN that represents the parent `EnabledBaseline` at the
563
+ # Organizational Unit (OU) level, from which the child
564
+ # `EnabledBaseline` inherits its configuration. The value is returned
565
+ # by `GetEnabledBaseline`.
566
+ # @return [String]
567
+ #
561
568
  # @!attribute [rw] status_summary
562
569
  # The deployment summary of an `EnabledControl` or `EnabledBaseline`
563
570
  # resource.
@@ -574,6 +581,7 @@ module Aws::ControlTower
574
581
  :baseline_identifier,
575
582
  :baseline_version,
576
583
  :parameters,
584
+ :parent_identifier,
577
585
  :status_summary,
578
586
  :target_identifier)
579
587
  SENSITIVE = []
@@ -589,6 +597,11 @@ module Aws::ControlTower
589
597
  # filter operation.
590
598
  # @return [Array<String>]
591
599
  #
600
+ # @!attribute [rw] parent_identifiers
601
+ # An optional filter that sets up a list of `parentIdentifiers` to
602
+ # filter the results of the `ListEnabledBaseline` output.
603
+ # @return [Array<String>]
604
+ #
592
605
  # @!attribute [rw] target_identifiers
593
606
  # Identifiers for the targets of the `Baseline` filter operation.
594
607
  # @return [Array<String>]
@@ -597,6 +610,7 @@ module Aws::ControlTower
597
610
  #
598
611
  class EnabledBaselineFilter < Struct.new(
599
612
  :baseline_identifiers,
613
+ :parent_identifiers,
600
614
  :target_identifiers)
601
615
  SENSITIVE = []
602
616
  include Aws::Structure
@@ -657,6 +671,11 @@ module Aws::ControlTower
657
671
  # The enabled version of the baseline.
658
672
  # @return [String]
659
673
  #
674
+ # @!attribute [rw] parent_identifier
675
+ # An ARN that represents an object returned by `ListEnabledBaseline`,
676
+ # to describe an enabled baseline.
677
+ # @return [String]
678
+ #
660
679
  # @!attribute [rw] status_summary
661
680
  # The deployment summary of an `EnabledControl` or `EnabledBaseline`
662
681
  # resource.
@@ -672,6 +691,7 @@ module Aws::ControlTower
672
691
  :arn,
673
692
  :baseline_identifier,
674
693
  :baseline_version,
694
+ :parent_identifier,
675
695
  :status_summary,
676
696
  :target_identifier)
677
697
  SENSITIVE = []
@@ -1321,6 +1341,11 @@ module Aws::ControlTower
1321
1341
  # filter can be applied for either, or both.
1322
1342
  # @return [Types::EnabledBaselineFilter]
1323
1343
  #
1344
+ # @!attribute [rw] include_children
1345
+ # A value that can be set to include the child enabled baselines in
1346
+ # responses. The default value is false.
1347
+ # @return [Boolean]
1348
+ #
1324
1349
  # @!attribute [rw] max_results
1325
1350
  # The maximum number of results to be shown.
1326
1351
  # @return [Integer]
@@ -1333,6 +1358,7 @@ module Aws::ControlTower
1333
1358
  #
1334
1359
  class ListEnabledBaselinesInput < Struct.new(
1335
1360
  :filter,
1361
+ :include_children,
1336
1362
  :max_results,
1337
1363
  :next_token)
1338
1364
  SENSITIVE = []
@@ -54,7 +54,7 @@ module Aws::ControlTower
54
54
  autoload :EndpointProvider, 'aws-sdk-controltower/endpoint_provider'
55
55
  autoload :Endpoints, 'aws-sdk-controltower/endpoints'
56
56
 
57
- GEM_VERSION = '1.35.0'
57
+ GEM_VERSION = '1.37.0'
58
58
 
59
59
  end
60
60
 
data/sig/client.rbs CHANGED
@@ -39,7 +39,9 @@ module Aws
39
39
  ?logger: untyped,
40
40
  ?max_attempts: Integer,
41
41
  ?profile: String,
42
+ ?request_checksum_calculation: String,
42
43
  ?request_min_compression_size_bytes: Integer,
44
+ ?response_checksum_validation: String,
43
45
  ?retry_backoff: Proc,
44
46
  ?retry_base_delay: Float,
45
47
  ?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
@@ -273,8 +275,10 @@ module Aws
273
275
  def list_enabled_baselines: (
274
276
  ?filter: {
275
277
  baseline_identifiers: Array[::String]?,
278
+ parent_identifiers: Array[::String]?,
276
279
  target_identifiers: Array[::String]?
277
280
  },
281
+ ?include_children: bool,
278
282
  ?max_results: ::Integer,
279
283
  ?next_token: ::String
280
284
  ) -> _ListEnabledBaselinesResponseSuccess
data/sig/resource.rbs CHANGED
@@ -39,7 +39,9 @@ module Aws
39
39
  ?logger: untyped,
40
40
  ?max_attempts: Integer,
41
41
  ?profile: String,
42
+ ?request_checksum_calculation: String,
42
43
  ?request_min_compression_size_bytes: Integer,
44
+ ?response_checksum_validation: String,
43
45
  ?retry_backoff: Proc,
44
46
  ?retry_base_delay: Float,
45
47
  ?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
data/sig/types.rbs CHANGED
@@ -153,6 +153,7 @@ module Aws::ControlTower
153
153
  attr_accessor baseline_identifier: ::String
154
154
  attr_accessor baseline_version: ::String
155
155
  attr_accessor parameters: ::Array[Types::EnabledBaselineParameterSummary]
156
+ attr_accessor parent_identifier: ::String
156
157
  attr_accessor status_summary: Types::EnablementStatusSummary
157
158
  attr_accessor target_identifier: ::String
158
159
  SENSITIVE: []
@@ -160,6 +161,7 @@ module Aws::ControlTower
160
161
 
161
162
  class EnabledBaselineFilter
162
163
  attr_accessor baseline_identifiers: ::Array[::String]
164
+ attr_accessor parent_identifiers: ::Array[::String]
163
165
  attr_accessor target_identifiers: ::Array[::String]
164
166
  SENSITIVE: []
165
167
  end
@@ -180,6 +182,7 @@ module Aws::ControlTower
180
182
  attr_accessor arn: ::String
181
183
  attr_accessor baseline_identifier: ::String
182
184
  attr_accessor baseline_version: ::String
185
+ attr_accessor parent_identifier: ::String
183
186
  attr_accessor status_summary: Types::EnablementStatusSummary
184
187
  attr_accessor target_identifier: ::String
185
188
  SENSITIVE: []
@@ -377,6 +380,7 @@ module Aws::ControlTower
377
380
 
378
381
  class ListEnabledBaselinesInput
379
382
  attr_accessor filter: Types::EnabledBaselineFilter
383
+ attr_accessor include_children: bool
380
384
  attr_accessor max_results: ::Integer
381
385
  attr_accessor next_token: ::String
382
386
  SENSITIVE: []
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-controltower
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.35.0
4
+ version: 1.37.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: 2024-11-12 00:00:00.000000000 Z
11
+ date: 2025-01-15 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.210.0
22
+ version: 3.216.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.210.0
32
+ version: 3.216.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement