aws-sdk-controltower 1.41.0 → 1.43.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: c42c64f2d50ac0b3e6f89c4adfdf8cfb00af2c6eedd19b5dc51a901190b33818
4
- data.tar.gz: e6a47aa1aa14da7d5232215f4edcda614eb571a0122de435dad7901fe21d33ad
3
+ metadata.gz: 020c7401c2598d27f0a48bb45ea381acc5bc01a4896762b152a6dd460194b8d5
4
+ data.tar.gz: 40f4953863d199ca07f686171f83264a075c57d21f14f560c00dcbd34a2fdc3b
5
5
  SHA512:
6
- metadata.gz: fe7d6715ae20822d88bb9adf64f2ab7a655be07aa3b1c477925b0f02284b6c2474b8a6379ac0b19b48bcf3176e7c013514e7c3b89eb9fad3f026afdae5128f55
7
- data.tar.gz: db158b00a6db6afc4ad1eeb8b2c8c19a78f4aab2d250035f5cbdddfd783f8d0b1ee2f20f33eb9e1db7a6501da677012f4607106d76ebca9917bab0adb2cbccdd
6
+ metadata.gz: 5473bd6614a0474a9d423f01d7643fb0df347bccb42f40ec73faa344d9e34cff7004ff0c2857b8026e224f82358ce5eeca111edd50f0d676980e43a47a443db7
7
+ data.tar.gz: 74859af4fbd8d414d430e7458cdfc5f88d0279e746178e89e39738de7cd7f15f153d3cddb7168bd0902bf50d5438744770ab49fdd48e5f46fa43685860f73aa1
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.43.0 (2025-05-15)
5
+ ------------------
6
+
7
+ * Feature - Updated the descriptions for the AWS Control Tower Baseline APIs to make them more intuitive.
8
+
9
+ 1.42.0 (2025-05-13)
10
+ ------------------
11
+
12
+ * Feature - AWS Control Tower now reports the inheritance drift status for EnabledBaselines through the GetEnabledBaseline and ListEnabledBaselines APIs. You can now filter EnabledBaselines by their enablement and drift status using the ListEnabledBaselines API to view accounts and OUs that require attention.
13
+
4
14
  1.41.0 (2025-05-12)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.41.0
1
+ 1.43.0
@@ -922,6 +922,7 @@ module Aws::ControlTower
922
922
  # resp.enabled_baseline_details.arn #=> String
923
923
  # resp.enabled_baseline_details.baseline_identifier #=> String
924
924
  # resp.enabled_baseline_details.baseline_version #=> String
925
+ # resp.enabled_baseline_details.drift_status_summary.types.inheritance.status #=> String, one of "IN_SYNC", "DRIFTED"
925
926
  # resp.enabled_baseline_details.parameters #=> Array
926
927
  # resp.enabled_baseline_details.parameters[0].key #=> String
927
928
  # resp.enabled_baseline_details.parent_identifier #=> String
@@ -1188,7 +1189,9 @@ module Aws::ControlTower
1188
1189
  # resp = client.list_enabled_baselines({
1189
1190
  # filter: {
1190
1191
  # baseline_identifiers: ["Arn"],
1192
+ # inheritance_drift_statuses: ["IN_SYNC"], # accepts IN_SYNC, DRIFTED
1191
1193
  # parent_identifiers: ["Arn"],
1194
+ # statuses: ["SUCCEEDED"], # accepts SUCCEEDED, FAILED, UNDER_CHANGE
1192
1195
  # target_identifiers: ["Arn"],
1193
1196
  # },
1194
1197
  # include_children: false,
@@ -1202,6 +1205,7 @@ module Aws::ControlTower
1202
1205
  # resp.enabled_baselines[0].arn #=> String
1203
1206
  # resp.enabled_baselines[0].baseline_identifier #=> String
1204
1207
  # resp.enabled_baselines[0].baseline_version #=> String
1208
+ # resp.enabled_baselines[0].drift_status_summary.types.inheritance.status #=> String, one of "IN_SYNC", "DRIFTED"
1205
1209
  # resp.enabled_baselines[0].parent_identifier #=> String
1206
1210
  # resp.enabled_baselines[0].status_summary.last_operation_identifier #=> String
1207
1211
  # resp.enabled_baselines[0].status_summary.status #=> String, one of "SUCCEEDED", "FAILED", "UNDER_CHANGE"
@@ -1750,7 +1754,7 @@ module Aws::ControlTower
1750
1754
  tracer: tracer
1751
1755
  )
1752
1756
  context[:gem_name] = 'aws-sdk-controltower'
1753
- context[:gem_version] = '1.41.0'
1757
+ context[:gem_version] = '1.43.0'
1754
1758
  Seahorse::Client::Request.new(handlers, context)
1755
1759
  end
1756
1760
 
@@ -53,7 +53,13 @@ module Aws::ControlTower
53
53
  EnableControlOutput = Shapes::StructureShape.new(name: 'EnableControlOutput')
54
54
  EnabledBaselineBaselineIdentifiers = Shapes::ListShape.new(name: 'EnabledBaselineBaselineIdentifiers')
55
55
  EnabledBaselineDetails = Shapes::StructureShape.new(name: 'EnabledBaselineDetails')
56
+ EnabledBaselineDriftStatus = Shapes::StringShape.new(name: 'EnabledBaselineDriftStatus')
57
+ EnabledBaselineDriftStatusSummary = Shapes::StructureShape.new(name: 'EnabledBaselineDriftStatusSummary')
58
+ EnabledBaselineDriftStatuses = Shapes::ListShape.new(name: 'EnabledBaselineDriftStatuses')
59
+ EnabledBaselineDriftTypes = Shapes::StructureShape.new(name: 'EnabledBaselineDriftTypes')
60
+ EnabledBaselineEnablementStatuses = Shapes::ListShape.new(name: 'EnabledBaselineEnablementStatuses')
56
61
  EnabledBaselineFilter = Shapes::StructureShape.new(name: 'EnabledBaselineFilter')
62
+ EnabledBaselineInheritanceDrift = Shapes::StructureShape.new(name: 'EnabledBaselineInheritanceDrift')
57
63
  EnabledBaselineParameter = Shapes::StructureShape.new(name: 'EnabledBaselineParameter')
58
64
  EnabledBaselineParameterDocument = Shapes::DocumentShape.new(name: 'EnabledBaselineParameterDocument', document: true)
59
65
  EnabledBaselineParameterSummaries = Shapes::ListShape.new(name: 'EnabledBaselineParameterSummaries')
@@ -280,17 +286,33 @@ module Aws::ControlTower
280
286
  EnabledBaselineDetails.add_member(:arn, Shapes::ShapeRef.new(shape: Arn, required: true, location_name: "arn"))
281
287
  EnabledBaselineDetails.add_member(:baseline_identifier, Shapes::ShapeRef.new(shape: String, required: true, location_name: "baselineIdentifier"))
282
288
  EnabledBaselineDetails.add_member(:baseline_version, Shapes::ShapeRef.new(shape: String, location_name: "baselineVersion"))
289
+ EnabledBaselineDetails.add_member(:drift_status_summary, Shapes::ShapeRef.new(shape: EnabledBaselineDriftStatusSummary, location_name: "driftStatusSummary"))
283
290
  EnabledBaselineDetails.add_member(:parameters, Shapes::ShapeRef.new(shape: EnabledBaselineParameterSummaries, location_name: "parameters"))
284
291
  EnabledBaselineDetails.add_member(:parent_identifier, Shapes::ShapeRef.new(shape: Arn, location_name: "parentIdentifier"))
285
292
  EnabledBaselineDetails.add_member(:status_summary, Shapes::ShapeRef.new(shape: EnablementStatusSummary, required: true, location_name: "statusSummary"))
286
293
  EnabledBaselineDetails.add_member(:target_identifier, Shapes::ShapeRef.new(shape: String, required: true, location_name: "targetIdentifier"))
287
294
  EnabledBaselineDetails.struct_class = Types::EnabledBaselineDetails
288
295
 
296
+ EnabledBaselineDriftStatusSummary.add_member(:types, Shapes::ShapeRef.new(shape: EnabledBaselineDriftTypes, location_name: "types"))
297
+ EnabledBaselineDriftStatusSummary.struct_class = Types::EnabledBaselineDriftStatusSummary
298
+
299
+ EnabledBaselineDriftStatuses.member = Shapes::ShapeRef.new(shape: EnabledBaselineDriftStatus)
300
+
301
+ EnabledBaselineDriftTypes.add_member(:inheritance, Shapes::ShapeRef.new(shape: EnabledBaselineInheritanceDrift, location_name: "inheritance"))
302
+ EnabledBaselineDriftTypes.struct_class = Types::EnabledBaselineDriftTypes
303
+
304
+ EnabledBaselineEnablementStatuses.member = Shapes::ShapeRef.new(shape: EnablementStatus)
305
+
289
306
  EnabledBaselineFilter.add_member(:baseline_identifiers, Shapes::ShapeRef.new(shape: EnabledBaselineBaselineIdentifiers, location_name: "baselineIdentifiers"))
307
+ EnabledBaselineFilter.add_member(:inheritance_drift_statuses, Shapes::ShapeRef.new(shape: EnabledBaselineDriftStatuses, location_name: "inheritanceDriftStatuses"))
290
308
  EnabledBaselineFilter.add_member(:parent_identifiers, Shapes::ShapeRef.new(shape: EnabledBaselineParentIdentifiers, location_name: "parentIdentifiers"))
309
+ EnabledBaselineFilter.add_member(:statuses, Shapes::ShapeRef.new(shape: EnabledBaselineEnablementStatuses, location_name: "statuses"))
291
310
  EnabledBaselineFilter.add_member(:target_identifiers, Shapes::ShapeRef.new(shape: EnabledBaselineTargetIdentifiers, location_name: "targetIdentifiers"))
292
311
  EnabledBaselineFilter.struct_class = Types::EnabledBaselineFilter
293
312
 
313
+ EnabledBaselineInheritanceDrift.add_member(:status, Shapes::ShapeRef.new(shape: EnabledBaselineDriftStatus, location_name: "status"))
314
+ EnabledBaselineInheritanceDrift.struct_class = Types::EnabledBaselineInheritanceDrift
315
+
294
316
  EnabledBaselineParameter.add_member(:key, Shapes::ShapeRef.new(shape: String, required: true, location_name: "key"))
295
317
  EnabledBaselineParameter.add_member(:value, Shapes::ShapeRef.new(shape: EnabledBaselineParameterDocument, required: true, location_name: "value"))
296
318
  EnabledBaselineParameter.struct_class = Types::EnabledBaselineParameter
@@ -308,6 +330,7 @@ module Aws::ControlTower
308
330
  EnabledBaselineSummary.add_member(:arn, Shapes::ShapeRef.new(shape: Arn, required: true, location_name: "arn"))
309
331
  EnabledBaselineSummary.add_member(:baseline_identifier, Shapes::ShapeRef.new(shape: String, required: true, location_name: "baselineIdentifier"))
310
332
  EnabledBaselineSummary.add_member(:baseline_version, Shapes::ShapeRef.new(shape: String, location_name: "baselineVersion"))
333
+ EnabledBaselineSummary.add_member(:drift_status_summary, Shapes::ShapeRef.new(shape: EnabledBaselineDriftStatusSummary, location_name: "driftStatusSummary"))
311
334
  EnabledBaselineSummary.add_member(:parent_identifier, Shapes::ShapeRef.new(shape: Arn, location_name: "parentIdentifier"))
312
335
  EnabledBaselineSummary.add_member(:status_summary, Shapes::ShapeRef.new(shape: EnablementStatusSummary, required: true, location_name: "statusSummary"))
313
336
  EnabledBaselineSummary.add_member(:target_identifier, Shapes::ShapeRef.new(shape: String, required: true, location_name: "targetIdentifier"))
@@ -612,8 +635,8 @@ module Aws::ControlTower
612
635
  o.http_request_uri = "/create-landingzone"
613
636
  o.input = Shapes::ShapeRef.new(shape: CreateLandingZoneInput)
614
637
  o.output = Shapes::ShapeRef.new(shape: CreateLandingZoneOutput)
615
- o.errors << Shapes::ShapeRef.new(shape: ValidationException)
616
638
  o.errors << Shapes::ShapeRef.new(shape: ConflictException)
639
+ o.errors << Shapes::ShapeRef.new(shape: ValidationException)
617
640
  o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
618
641
  o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
619
642
  o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
@@ -625,12 +648,12 @@ module Aws::ControlTower
625
648
  o.http_request_uri = "/delete-landingzone"
626
649
  o.input = Shapes::ShapeRef.new(shape: DeleteLandingZoneInput)
627
650
  o.output = Shapes::ShapeRef.new(shape: DeleteLandingZoneOutput)
628
- o.errors << Shapes::ShapeRef.new(shape: ValidationException)
629
651
  o.errors << Shapes::ShapeRef.new(shape: ConflictException)
652
+ o.errors << Shapes::ShapeRef.new(shape: ValidationException)
630
653
  o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
631
654
  o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
632
- o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
633
655
  o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
656
+ o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
634
657
  end)
635
658
 
636
659
  api.add_operation(:disable_baseline, Seahorse::Model::Operation.new.tap do |o|
@@ -639,13 +662,13 @@ module Aws::ControlTower
639
662
  o.http_request_uri = "/disable-baseline"
640
663
  o.input = Shapes::ShapeRef.new(shape: DisableBaselineInput)
641
664
  o.output = Shapes::ShapeRef.new(shape: DisableBaselineOutput)
642
- o.errors << Shapes::ShapeRef.new(shape: ValidationException)
643
665
  o.errors << Shapes::ShapeRef.new(shape: ConflictException)
666
+ o.errors << Shapes::ShapeRef.new(shape: ValidationException)
644
667
  o.errors << Shapes::ShapeRef.new(shape: ServiceQuotaExceededException)
645
668
  o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
646
669
  o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
647
- o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
648
670
  o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
671
+ o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
649
672
  end)
650
673
 
651
674
  api.add_operation(:disable_control, Seahorse::Model::Operation.new.tap do |o|
@@ -654,13 +677,13 @@ module Aws::ControlTower
654
677
  o.http_request_uri = "/disable-control"
655
678
  o.input = Shapes::ShapeRef.new(shape: DisableControlInput)
656
679
  o.output = Shapes::ShapeRef.new(shape: DisableControlOutput)
657
- o.errors << Shapes::ShapeRef.new(shape: ValidationException)
658
680
  o.errors << Shapes::ShapeRef.new(shape: ConflictException)
681
+ o.errors << Shapes::ShapeRef.new(shape: ValidationException)
659
682
  o.errors << Shapes::ShapeRef.new(shape: ServiceQuotaExceededException)
660
683
  o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
661
684
  o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
662
- o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
663
685
  o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
686
+ o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
664
687
  end)
665
688
 
666
689
  api.add_operation(:enable_baseline, Seahorse::Model::Operation.new.tap do |o|
@@ -669,13 +692,13 @@ module Aws::ControlTower
669
692
  o.http_request_uri = "/enable-baseline"
670
693
  o.input = Shapes::ShapeRef.new(shape: EnableBaselineInput)
671
694
  o.output = Shapes::ShapeRef.new(shape: EnableBaselineOutput)
672
- o.errors << Shapes::ShapeRef.new(shape: ValidationException)
673
695
  o.errors << Shapes::ShapeRef.new(shape: ConflictException)
696
+ o.errors << Shapes::ShapeRef.new(shape: ValidationException)
674
697
  o.errors << Shapes::ShapeRef.new(shape: ServiceQuotaExceededException)
675
698
  o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
676
699
  o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
677
- o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
678
700
  o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
701
+ o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
679
702
  end)
680
703
 
681
704
  api.add_operation(:enable_control, Seahorse::Model::Operation.new.tap do |o|
@@ -684,13 +707,13 @@ module Aws::ControlTower
684
707
  o.http_request_uri = "/enable-control"
685
708
  o.input = Shapes::ShapeRef.new(shape: EnableControlInput)
686
709
  o.output = Shapes::ShapeRef.new(shape: EnableControlOutput)
687
- o.errors << Shapes::ShapeRef.new(shape: ValidationException)
688
710
  o.errors << Shapes::ShapeRef.new(shape: ConflictException)
711
+ o.errors << Shapes::ShapeRef.new(shape: ValidationException)
689
712
  o.errors << Shapes::ShapeRef.new(shape: ServiceQuotaExceededException)
690
713
  o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
691
714
  o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
692
- o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
693
715
  o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
716
+ o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
694
717
  end)
695
718
 
696
719
  api.add_operation(:get_baseline, Seahorse::Model::Operation.new.tap do |o|
@@ -702,8 +725,8 @@ module Aws::ControlTower
702
725
  o.errors << Shapes::ShapeRef.new(shape: ValidationException)
703
726
  o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
704
727
  o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
705
- o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
706
728
  o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
729
+ o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
707
730
  end)
708
731
 
709
732
  api.add_operation(:get_baseline_operation, Seahorse::Model::Operation.new.tap do |o|
@@ -715,8 +738,8 @@ module Aws::ControlTower
715
738
  o.errors << Shapes::ShapeRef.new(shape: ValidationException)
716
739
  o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
717
740
  o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
718
- o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
719
741
  o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
742
+ o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
720
743
  end)
721
744
 
722
745
  api.add_operation(:get_control_operation, Seahorse::Model::Operation.new.tap do |o|
@@ -728,8 +751,8 @@ module Aws::ControlTower
728
751
  o.errors << Shapes::ShapeRef.new(shape: ValidationException)
729
752
  o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
730
753
  o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
731
- o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
732
754
  o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
755
+ o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
733
756
  end)
734
757
 
735
758
  api.add_operation(:get_enabled_baseline, Seahorse::Model::Operation.new.tap do |o|
@@ -741,8 +764,8 @@ module Aws::ControlTower
741
764
  o.errors << Shapes::ShapeRef.new(shape: ValidationException)
742
765
  o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
743
766
  o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
744
- o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
745
767
  o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
768
+ o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
746
769
  end)
747
770
 
748
771
  api.add_operation(:get_enabled_control, Seahorse::Model::Operation.new.tap do |o|
@@ -754,8 +777,8 @@ module Aws::ControlTower
754
777
  o.errors << Shapes::ShapeRef.new(shape: ValidationException)
755
778
  o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
756
779
  o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
757
- o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
758
780
  o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
781
+ o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
759
782
  end)
760
783
 
761
784
  api.add_operation(:get_landing_zone, Seahorse::Model::Operation.new.tap do |o|
@@ -767,8 +790,8 @@ module Aws::ControlTower
767
790
  o.errors << Shapes::ShapeRef.new(shape: ValidationException)
768
791
  o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
769
792
  o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
770
- o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
771
793
  o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
794
+ o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
772
795
  end)
773
796
 
774
797
  api.add_operation(:get_landing_zone_operation, Seahorse::Model::Operation.new.tap do |o|
@@ -780,8 +803,8 @@ module Aws::ControlTower
780
803
  o.errors << Shapes::ShapeRef.new(shape: ValidationException)
781
804
  o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
782
805
  o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
783
- o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
784
806
  o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
807
+ o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
785
808
  end)
786
809
 
787
810
  api.add_operation(:list_baselines, Seahorse::Model::Operation.new.tap do |o|
@@ -847,8 +870,8 @@ module Aws::ControlTower
847
870
  o.errors << Shapes::ShapeRef.new(shape: ValidationException)
848
871
  o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
849
872
  o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
850
- o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
851
873
  o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
874
+ o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
852
875
  o[:pager] = Aws::Pager.new(
853
876
  limit_key: "max_results",
854
877
  tokens: {
@@ -910,13 +933,13 @@ module Aws::ControlTower
910
933
  o.http_request_uri = "/reset-enabled-baseline"
911
934
  o.input = Shapes::ShapeRef.new(shape: ResetEnabledBaselineInput)
912
935
  o.output = Shapes::ShapeRef.new(shape: ResetEnabledBaselineOutput)
913
- o.errors << Shapes::ShapeRef.new(shape: ValidationException)
914
936
  o.errors << Shapes::ShapeRef.new(shape: ConflictException)
937
+ o.errors << Shapes::ShapeRef.new(shape: ValidationException)
915
938
  o.errors << Shapes::ShapeRef.new(shape: ServiceQuotaExceededException)
916
939
  o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
917
940
  o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
918
- o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
919
941
  o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
942
+ o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
920
943
  end)
921
944
 
922
945
  api.add_operation(:reset_enabled_control, Seahorse::Model::Operation.new.tap do |o|
@@ -925,13 +948,13 @@ module Aws::ControlTower
925
948
  o.http_request_uri = "/reset-enabled-control"
926
949
  o.input = Shapes::ShapeRef.new(shape: ResetEnabledControlInput)
927
950
  o.output = Shapes::ShapeRef.new(shape: ResetEnabledControlOutput)
928
- o.errors << Shapes::ShapeRef.new(shape: ValidationException)
929
951
  o.errors << Shapes::ShapeRef.new(shape: ConflictException)
952
+ o.errors << Shapes::ShapeRef.new(shape: ValidationException)
930
953
  o.errors << Shapes::ShapeRef.new(shape: ServiceQuotaExceededException)
931
954
  o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
932
955
  o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
933
- o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
934
956
  o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
957
+ o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
935
958
  end)
936
959
 
937
960
  api.add_operation(:reset_landing_zone, Seahorse::Model::Operation.new.tap do |o|
@@ -940,12 +963,12 @@ module Aws::ControlTower
940
963
  o.http_request_uri = "/reset-landingzone"
941
964
  o.input = Shapes::ShapeRef.new(shape: ResetLandingZoneInput)
942
965
  o.output = Shapes::ShapeRef.new(shape: ResetLandingZoneOutput)
943
- o.errors << Shapes::ShapeRef.new(shape: ValidationException)
944
966
  o.errors << Shapes::ShapeRef.new(shape: ConflictException)
967
+ o.errors << Shapes::ShapeRef.new(shape: ValidationException)
945
968
  o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
946
969
  o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
947
- o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
948
970
  o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
971
+ o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
949
972
  end)
950
973
 
951
974
  api.add_operation(:tag_resource, Seahorse::Model::Operation.new.tap do |o|
@@ -976,13 +999,13 @@ module Aws::ControlTower
976
999
  o.http_request_uri = "/update-enabled-baseline"
977
1000
  o.input = Shapes::ShapeRef.new(shape: UpdateEnabledBaselineInput)
978
1001
  o.output = Shapes::ShapeRef.new(shape: UpdateEnabledBaselineOutput)
979
- o.errors << Shapes::ShapeRef.new(shape: ValidationException)
980
1002
  o.errors << Shapes::ShapeRef.new(shape: ConflictException)
1003
+ o.errors << Shapes::ShapeRef.new(shape: ValidationException)
981
1004
  o.errors << Shapes::ShapeRef.new(shape: ServiceQuotaExceededException)
982
1005
  o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
983
1006
  o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
984
- o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
985
1007
  o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
1008
+ o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
986
1009
  end)
987
1010
 
988
1011
  api.add_operation(:update_enabled_control, Seahorse::Model::Operation.new.tap do |o|
@@ -991,13 +1014,13 @@ module Aws::ControlTower
991
1014
  o.http_request_uri = "/update-enabled-control"
992
1015
  o.input = Shapes::ShapeRef.new(shape: UpdateEnabledControlInput)
993
1016
  o.output = Shapes::ShapeRef.new(shape: UpdateEnabledControlOutput)
994
- o.errors << Shapes::ShapeRef.new(shape: ValidationException)
995
1017
  o.errors << Shapes::ShapeRef.new(shape: ConflictException)
1018
+ o.errors << Shapes::ShapeRef.new(shape: ValidationException)
996
1019
  o.errors << Shapes::ShapeRef.new(shape: ServiceQuotaExceededException)
997
1020
  o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
998
1021
  o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
999
- o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
1000
1022
  o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
1023
+ o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
1001
1024
  end)
1002
1025
 
1003
1026
  api.add_operation(:update_landing_zone, Seahorse::Model::Operation.new.tap do |o|
@@ -1006,12 +1029,12 @@ module Aws::ControlTower
1006
1029
  o.http_request_uri = "/update-landingzone"
1007
1030
  o.input = Shapes::ShapeRef.new(shape: UpdateLandingZoneInput)
1008
1031
  o.output = Shapes::ShapeRef.new(shape: UpdateLandingZoneOutput)
1009
- o.errors << Shapes::ShapeRef.new(shape: ValidationException)
1010
1032
  o.errors << Shapes::ShapeRef.new(shape: ConflictException)
1033
+ o.errors << Shapes::ShapeRef.new(shape: ValidationException)
1011
1034
  o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
1012
1035
  o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
1013
- o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
1014
1036
  o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
1037
+ o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
1015
1038
  end)
1016
1039
  end
1017
1040
 
@@ -554,6 +554,10 @@ module Aws::ControlTower
554
554
  # The enabled version of the `Baseline`.
555
555
  # @return [String]
556
556
  #
557
+ # @!attribute [rw] drift_status_summary
558
+ # The drift status of the enabled baseline.
559
+ # @return [Types::EnabledBaselineDriftStatusSummary]
560
+ #
557
561
  # @!attribute [rw] parameters
558
562
  # Shows the parameters that are applied when enabling this `Baseline`.
559
563
  # @return [Array<Types::EnabledBaselineParameterSummary>]
@@ -580,6 +584,7 @@ module Aws::ControlTower
580
584
  :arn,
581
585
  :baseline_identifier,
582
586
  :baseline_version,
587
+ :drift_status_summary,
583
588
  :parameters,
584
589
  :parent_identifier,
585
590
  :status_summary,
@@ -588,6 +593,72 @@ module Aws::ControlTower
588
593
  include Aws::Structure
589
594
  end
590
595
 
596
+ # The drift summary of the enabled baseline. Amazon Web Services Control
597
+ # Tower reports inheritance drift when an enabled baseline configuration
598
+ # of a member account is different than the configuration that applies
599
+ # to the OU. Amazon Web Services Control Tower reports this type of
600
+ # drift for a parent or child enabled baseline. One way to repair this
601
+ # drift by resetting the parent enabled baseline, on the OU.
602
+ #
603
+ # For example, you may see this type of drift if you move accounts
604
+ # between OUs, but the accounts are not yet (re-)enrolled.
605
+ #
606
+ # @!attribute [rw] types
607
+ # The types of drift that can be detected for an enabled baseline.
608
+ # Amazon Web Services Control Tower detects inheritance drift on
609
+ # enabled baselines that apply at the OU level.
610
+ # @return [Types::EnabledBaselineDriftTypes]
611
+ #
612
+ # @see http://docs.aws.amazon.com/goto/WebAPI/controltower-2018-05-10/EnabledBaselineDriftStatusSummary AWS API Documentation
613
+ #
614
+ class EnabledBaselineDriftStatusSummary < Struct.new(
615
+ :types)
616
+ SENSITIVE = []
617
+ include Aws::Structure
618
+ end
619
+
620
+ # The types of drift that can be detected for an enabled baseline.
621
+ #
622
+ # * Amazon Web Services Control Tower detects inheritance drift on the
623
+ # enabled baselines that target OUs: `AWSControlTowerBaseline` and
624
+ # `BackupBaseline`.
625
+ #
626
+ # * Amazon Web Services Control Tower does not detect drift on the
627
+ # baselines that apply to your landing zone: `IdentityCenterBaseline`,
628
+ # `AuditBaseline`, `LogArchiveBaseline`, `BackupCentralVaultBaseline`,
629
+ # or `BackupAdminBaseline`. For more information, see [Types of
630
+ # baselines][1].
631
+ #
632
+ # Baselines enabled on an OU are inherited by its member accounts as
633
+ # child `EnabledBaseline` resources. The baseline on the OU serves as
634
+ # the parent `EnabledBaseline`, which governs the configuration of each
635
+ # child `EnabledBaseline`.
636
+ #
637
+ # If the baseline configuration of a member account in an OU does not
638
+ # match the configuration of the parent OU, the parent and child
639
+ # baseline is in a state of inheritance drift. This drift could occur in
640
+ # the `AWSControlTowerBaseline` or the `BackupBaseline` related to that
641
+ # account.
642
+ #
643
+ #
644
+ #
645
+ # [1]: https://docs.aws.amazon.com/controltower/latest/userguide/types-of-baselines.html
646
+ #
647
+ # @!attribute [rw] inheritance
648
+ # At least one account within the target OU does not match the
649
+ # baseline configuration defined on that OU. An account is in
650
+ # inheritance drift when it does not match the configuration of a
651
+ # parent OU, possibly a new parent OU, if the account is moved.
652
+ # @return [Types::EnabledBaselineInheritanceDrift]
653
+ #
654
+ # @see http://docs.aws.amazon.com/goto/WebAPI/controltower-2018-05-10/EnabledBaselineDriftTypes AWS API Documentation
655
+ #
656
+ class EnabledBaselineDriftTypes < Struct.new(
657
+ :inheritance)
658
+ SENSITIVE = []
659
+ include Aws::Structure
660
+ end
661
+
591
662
  # A filter applied on the `ListEnabledBaseline` operation. Allowed
592
663
  # filters are `baselineIdentifiers` and `targetIdentifiers`. The filter
593
664
  # can be applied for either, or both.
@@ -597,11 +668,19 @@ module Aws::ControlTower
597
668
  # filter operation.
598
669
  # @return [Array<String>]
599
670
  #
671
+ # @!attribute [rw] inheritance_drift_statuses
672
+ # A list of `EnabledBaselineDriftStatus` items for enabled baselines.
673
+ # @return [Array<String>]
674
+ #
600
675
  # @!attribute [rw] parent_identifiers
601
676
  # An optional filter that sets up a list of `parentIdentifiers` to
602
677
  # filter the results of the `ListEnabledBaseline` output.
603
678
  # @return [Array<String>]
604
679
  #
680
+ # @!attribute [rw] statuses
681
+ # A list of `EnablementStatus` items.
682
+ # @return [Array<String>]
683
+ #
605
684
  # @!attribute [rw] target_identifiers
606
685
  # Identifiers for the targets of the `Baseline` filter operation.
607
686
  # @return [Array<String>]
@@ -610,12 +689,30 @@ module Aws::ControlTower
610
689
  #
611
690
  class EnabledBaselineFilter < Struct.new(
612
691
  :baseline_identifiers,
692
+ :inheritance_drift_statuses,
613
693
  :parent_identifiers,
694
+ :statuses,
614
695
  :target_identifiers)
615
696
  SENSITIVE = []
616
697
  include Aws::Structure
617
698
  end
618
699
 
700
+ # The inheritance drift summary for the enabled baseline. Inheritance
701
+ # drift occurs when any accounts in the target OU do not match the
702
+ # baseline configuration defined on that OU.
703
+ #
704
+ # @!attribute [rw] status
705
+ # The inheritance drift status for enabled baselines.
706
+ # @return [String]
707
+ #
708
+ # @see http://docs.aws.amazon.com/goto/WebAPI/controltower-2018-05-10/EnabledBaselineInheritanceDrift AWS API Documentation
709
+ #
710
+ class EnabledBaselineInheritanceDrift < Struct.new(
711
+ :status)
712
+ SENSITIVE = []
713
+ include Aws::Structure
714
+ end
715
+
619
716
  # A key-value parameter to an `EnabledBaseline` resource.
620
717
  #
621
718
  # @!attribute [rw] key
@@ -671,6 +768,10 @@ module Aws::ControlTower
671
768
  # The enabled version of the baseline.
672
769
  # @return [String]
673
770
  #
771
+ # @!attribute [rw] drift_status_summary
772
+ # The drift status of the enabled baseline.
773
+ # @return [Types::EnabledBaselineDriftStatusSummary]
774
+ #
674
775
  # @!attribute [rw] parent_identifier
675
776
  # An ARN that represents an object returned by `ListEnabledBaseline`,
676
777
  # to describe an enabled baseline.
@@ -691,6 +792,7 @@ module Aws::ControlTower
691
792
  :arn,
692
793
  :baseline_identifier,
693
794
  :baseline_version,
795
+ :drift_status_summary,
694
796
  :parent_identifier,
695
797
  :status_summary,
696
798
  :target_identifier)
@@ -1652,7 +1754,7 @@ module Aws::ControlTower
1652
1754
  end
1653
1755
 
1654
1756
  # The request would cause a service quota to be exceeded. The limit is
1655
- # 10 concurrent operations.
1757
+ # 100 concurrent operations.
1656
1758
  #
1657
1759
  # @!attribute [rw] message
1658
1760
  # @return [String]
@@ -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.41.0'
57
+ GEM_VERSION = '1.43.0'
58
58
 
59
59
  end
60
60
 
data/sig/client.rbs CHANGED
@@ -275,7 +275,9 @@ module Aws
275
275
  def list_enabled_baselines: (
276
276
  ?filter: {
277
277
  baseline_identifiers: Array[::String]?,
278
+ inheritance_drift_statuses: Array[("IN_SYNC" | "DRIFTED")]?,
278
279
  parent_identifiers: Array[::String]?,
280
+ statuses: Array[("SUCCEEDED" | "FAILED" | "UNDER_CHANGE")]?,
279
281
  target_identifiers: Array[::String]?
280
282
  },
281
283
  ?include_children: bool,
data/sig/types.rbs CHANGED
@@ -152,6 +152,7 @@ module Aws::ControlTower
152
152
  attr_accessor arn: ::String
153
153
  attr_accessor baseline_identifier: ::String
154
154
  attr_accessor baseline_version: ::String
155
+ attr_accessor drift_status_summary: Types::EnabledBaselineDriftStatusSummary
155
156
  attr_accessor parameters: ::Array[Types::EnabledBaselineParameterSummary]
156
157
  attr_accessor parent_identifier: ::String
157
158
  attr_accessor status_summary: Types::EnablementStatusSummary
@@ -159,13 +160,30 @@ module Aws::ControlTower
159
160
  SENSITIVE: []
160
161
  end
161
162
 
163
+ class EnabledBaselineDriftStatusSummary
164
+ attr_accessor types: Types::EnabledBaselineDriftTypes
165
+ SENSITIVE: []
166
+ end
167
+
168
+ class EnabledBaselineDriftTypes
169
+ attr_accessor inheritance: Types::EnabledBaselineInheritanceDrift
170
+ SENSITIVE: []
171
+ end
172
+
162
173
  class EnabledBaselineFilter
163
174
  attr_accessor baseline_identifiers: ::Array[::String]
175
+ attr_accessor inheritance_drift_statuses: ::Array[("IN_SYNC" | "DRIFTED")]
164
176
  attr_accessor parent_identifiers: ::Array[::String]
177
+ attr_accessor statuses: ::Array[("SUCCEEDED" | "FAILED" | "UNDER_CHANGE")]
165
178
  attr_accessor target_identifiers: ::Array[::String]
166
179
  SENSITIVE: []
167
180
  end
168
181
 
182
+ class EnabledBaselineInheritanceDrift
183
+ attr_accessor status: ("IN_SYNC" | "DRIFTED")
184
+ SENSITIVE: []
185
+ end
186
+
169
187
  class EnabledBaselineParameter
170
188
  attr_accessor key: ::String
171
189
  attr_accessor value: untyped
@@ -182,6 +200,7 @@ module Aws::ControlTower
182
200
  attr_accessor arn: ::String
183
201
  attr_accessor baseline_identifier: ::String
184
202
  attr_accessor baseline_version: ::String
203
+ attr_accessor drift_status_summary: Types::EnabledBaselineDriftStatusSummary
185
204
  attr_accessor parent_identifier: ::String
186
205
  attr_accessor status_summary: Types::EnablementStatusSummary
187
206
  attr_accessor target_identifier: ::String
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-controltower
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.41.0
4
+ version: 1.43.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services