aws-sdk-controltower 1.52.0 → 1.53.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: 8a94595858b1ea3f967e9c9b05973225fee5e7c42eed4955ba3a7010a6973473
4
- data.tar.gz: 4aef5f023fbd8f20a585bdde70a0739e1044c7a385d8d87e31a258866ff136d8
3
+ metadata.gz: 8af49360d3b10dc1f26d9a2c099183e88545e53c2084a0119a115de406b2c26e
4
+ data.tar.gz: 9f476e6930f84e3659db5f462015b5ecee122d700165cdf2d77237669fb07087
5
5
  SHA512:
6
- metadata.gz: 27fca34cfa939bc85238ed5ea0dee264129ef56d84807eac46339a0af357e2742ea97628a3542b4ac64bc021d50cb7606c140c170dbaf8f4f1fb185a2bd39535
7
- data.tar.gz: 2ce9659d4e4075dcf5558babf43a362cff7b38d005c336657e78dfc080dc074fe4c49ddf8ab98a52e94a5d5e1a3518512b9c579b4a820ad3b207ff9fa2fd0703
6
+ metadata.gz: dd5d170232195c2d24be0760f01319aa684c1d15e50351e35672e578f1b38db1a1af0f4e19bb7e21efcd52bbc3a17d4c698d4d99230de8597a7b54a949f117fe
7
+ data.tar.gz: 7652fa06828290c31b8fda5bcc3ea3339ec9328cfa872a95023d61b9ac23f37df075bc4a0a58ce2a03f585212c09fc1c8dfd18e97e5853f8712e24d18b4ef663
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.53.0 (2025-11-21)
5
+ ------------------
6
+
7
+ * Feature - The manifest field is now optional for the AWS Control Tower CreateLandingZone and UpdateLandingZone APIs for Landing Zone version 4.0
8
+
4
9
  1.52.0 (2025-11-07)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.52.0
1
+ 1.53.0
@@ -483,7 +483,15 @@ module Aws::ControlTower
483
483
  # @option params [required, String] :version
484
484
  # The landing zone version, for example, 3.0.
485
485
  #
486
- # @option params [required, Hash,Array,String,Numeric,Boolean] :manifest
486
+ # @option params [Array<String>] :remediation_types
487
+ # Specifies the types of remediation actions to apply when creating the
488
+ # landing zone, such as automatic drift correction or compliance
489
+ # enforcement.
490
+ #
491
+ # @option params [Hash<String,String>] :tags
492
+ # Tags to be applied to the landing zone.
493
+ #
494
+ # @option params [Hash,Array,String,Numeric,Boolean] :manifest
487
495
  # The manifest JSON file is a text file that describes your Amazon Web
488
496
  # Services resources. For examples, review [Launch your landing
489
497
  # zone][1].
@@ -497,14 +505,6 @@ module Aws::ControlTower
497
505
  #
498
506
  # [1]: https://docs.aws.amazon.com/controltower/latest/userguide/lz-api-launch
499
507
  #
500
- # @option params [Array<String>] :remediation_types
501
- # Specifies the types of remediation actions to apply when creating the
502
- # landing zone, such as automatic drift correction or compliance
503
- # enforcement.
504
- #
505
- # @option params [Hash<String,String>] :tags
506
- # Tags to be applied to the landing zone.
507
- #
508
508
  # @return [Types::CreateLandingZoneOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
509
509
  #
510
510
  # * {Types::CreateLandingZoneOutput#arn #arn} => String
@@ -514,12 +514,12 @@ module Aws::ControlTower
514
514
  #
515
515
  # resp = client.create_landing_zone({
516
516
  # version: "LandingZoneVersion", # required
517
- # manifest: { # required
518
- # },
519
517
  # remediation_types: ["INHERITANCE_DRIFT"], # accepts INHERITANCE_DRIFT
520
518
  # tags: {
521
519
  # "TagKey" => "TagValue",
522
520
  # },
521
+ # manifest: {
522
+ # },
523
523
  # })
524
524
  #
525
525
  # @example Response structure
@@ -1731,7 +1731,14 @@ module Aws::ControlTower
1731
1731
  # @option params [required, String] :version
1732
1732
  # The landing zone version, for example, 3.2.
1733
1733
  #
1734
- # @option params [required, Hash,Array,String,Numeric,Boolean] :manifest
1734
+ # @option params [Array<String>] :remediation_types
1735
+ # Specifies the types of remediation actions to apply when updating the
1736
+ # landing zone configuration.
1737
+ #
1738
+ # @option params [required, String] :landing_zone_identifier
1739
+ # The unique identifier of the landing zone.
1740
+ #
1741
+ # @option params [Hash,Array,String,Numeric,Boolean] :manifest
1735
1742
  # The manifest file (JSON) is a text file that describes your Amazon Web
1736
1743
  # Services resources. For an example, review [Launch your landing
1737
1744
  # zone][1]. The example manifest file contains each of the available
@@ -1747,13 +1754,6 @@ module Aws::ControlTower
1747
1754
  #
1748
1755
  # [1]: https://docs.aws.amazon.com/controltower/latest/userguide/lz-api-launch
1749
1756
  #
1750
- # @option params [Array<String>] :remediation_types
1751
- # Specifies the types of remediation actions to apply when updating the
1752
- # landing zone configuration.
1753
- #
1754
- # @option params [required, String] :landing_zone_identifier
1755
- # The unique identifier of the landing zone.
1756
- #
1757
1757
  # @return [Types::UpdateLandingZoneOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1758
1758
  #
1759
1759
  # * {Types::UpdateLandingZoneOutput#operation_identifier #operation_identifier} => String
@@ -1762,10 +1762,10 @@ module Aws::ControlTower
1762
1762
  #
1763
1763
  # resp = client.update_landing_zone({
1764
1764
  # version: "LandingZoneVersion", # required
1765
- # manifest: { # required
1766
- # },
1767
1765
  # remediation_types: ["INHERITANCE_DRIFT"], # accepts INHERITANCE_DRIFT
1768
1766
  # landing_zone_identifier: "String", # required
1767
+ # manifest: {
1768
+ # },
1769
1769
  # })
1770
1770
  #
1771
1771
  # @example Response structure
@@ -1799,7 +1799,7 @@ module Aws::ControlTower
1799
1799
  tracer: tracer
1800
1800
  )
1801
1801
  context[:gem_name] = 'aws-sdk-controltower'
1802
- context[:gem_version] = '1.52.0'
1802
+ context[:gem_version] = '1.53.0'
1803
1803
  Seahorse::Client::Request.new(handlers, context)
1804
1804
  end
1805
1805
 
@@ -235,9 +235,9 @@ module Aws::ControlTower
235
235
  ControlOperations.member = Shapes::ShapeRef.new(shape: ControlOperationSummary)
236
236
 
237
237
  CreateLandingZoneInput.add_member(:version, Shapes::ShapeRef.new(shape: LandingZoneVersion, required: true, location_name: "version"))
238
- CreateLandingZoneInput.add_member(:manifest, Shapes::ShapeRef.new(shape: Manifest, required: true, location_name: "manifest"))
239
238
  CreateLandingZoneInput.add_member(:remediation_types, Shapes::ShapeRef.new(shape: RemediationTypes, location_name: "remediationTypes"))
240
239
  CreateLandingZoneInput.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "tags"))
240
+ CreateLandingZoneInput.add_member(:manifest, Shapes::ShapeRef.new(shape: Manifest, location_name: "manifest"))
241
241
  CreateLandingZoneInput.struct_class = Types::CreateLandingZoneInput
242
242
 
243
243
  CreateLandingZoneOutput.add_member(:arn, Shapes::ShapeRef.new(shape: Arn, required: true, location_name: "arn"))
@@ -456,12 +456,12 @@ module Aws::ControlTower
456
456
  InternalServerException.struct_class = Types::InternalServerException
457
457
 
458
458
  LandingZoneDetail.add_member(:version, Shapes::ShapeRef.new(shape: LandingZoneVersion, required: true, location_name: "version"))
459
- LandingZoneDetail.add_member(:manifest, Shapes::ShapeRef.new(shape: Manifest, required: true, location_name: "manifest"))
460
459
  LandingZoneDetail.add_member(:remediation_types, Shapes::ShapeRef.new(shape: RemediationTypes, location_name: "remediationTypes"))
461
460
  LandingZoneDetail.add_member(:arn, Shapes::ShapeRef.new(shape: Arn, location_name: "arn"))
462
461
  LandingZoneDetail.add_member(:status, Shapes::ShapeRef.new(shape: LandingZoneStatus, location_name: "status"))
463
462
  LandingZoneDetail.add_member(:latest_available_version, Shapes::ShapeRef.new(shape: LandingZoneVersion, location_name: "latestAvailableVersion"))
464
463
  LandingZoneDetail.add_member(:drift_status, Shapes::ShapeRef.new(shape: LandingZoneDriftStatusSummary, location_name: "driftStatus"))
464
+ LandingZoneDetail.add_member(:manifest, Shapes::ShapeRef.new(shape: Manifest, required: true, location_name: "manifest"))
465
465
  LandingZoneDetail.struct_class = Types::LandingZoneDetail
466
466
 
467
467
  LandingZoneDriftStatusSummary.add_member(:status, Shapes::ShapeRef.new(shape: LandingZoneDriftStatus, location_name: "status"))
@@ -630,9 +630,9 @@ module Aws::ControlTower
630
630
  UpdateEnabledControlOutput.struct_class = Types::UpdateEnabledControlOutput
631
631
 
632
632
  UpdateLandingZoneInput.add_member(:version, Shapes::ShapeRef.new(shape: LandingZoneVersion, required: true, location_name: "version"))
633
- UpdateLandingZoneInput.add_member(:manifest, Shapes::ShapeRef.new(shape: Manifest, required: true, location_name: "manifest"))
634
633
  UpdateLandingZoneInput.add_member(:remediation_types, Shapes::ShapeRef.new(shape: RemediationTypes, location_name: "remediationTypes"))
635
634
  UpdateLandingZoneInput.add_member(:landing_zone_identifier, Shapes::ShapeRef.new(shape: String, required: true, location_name: "landingZoneIdentifier"))
635
+ UpdateLandingZoneInput.add_member(:manifest, Shapes::ShapeRef.new(shape: Manifest, location_name: "manifest"))
636
636
  UpdateLandingZoneInput.struct_class = Types::UpdateLandingZoneInput
637
637
 
638
638
  UpdateLandingZoneOutput.add_member(:operation_identifier, Shapes::ShapeRef.new(shape: OperationIdentifier, required: true, location_name: "operationIdentifier"))
@@ -253,16 +253,6 @@ module Aws::ControlTower
253
253
  # The landing zone version, for example, 3.0.
254
254
  # @return [String]
255
255
  #
256
- # @!attribute [rw] manifest
257
- # The manifest JSON file is a text file that describes your Amazon Web
258
- # Services resources. For examples, review [Launch your landing
259
- # zone][1].
260
- #
261
- #
262
- #
263
- # [1]: https://docs.aws.amazon.com/controltower/latest/userguide/lz-api-launch
264
- # @return [Hash,Array,String,Numeric,Boolean]
265
- #
266
256
  # @!attribute [rw] remediation_types
267
257
  # Specifies the types of remediation actions to apply when creating
268
258
  # the landing zone, such as automatic drift correction or compliance
@@ -273,13 +263,23 @@ module Aws::ControlTower
273
263
  # Tags to be applied to the landing zone.
274
264
  # @return [Hash<String,String>]
275
265
  #
266
+ # @!attribute [rw] manifest
267
+ # The manifest JSON file is a text file that describes your Amazon Web
268
+ # Services resources. For examples, review [Launch your landing
269
+ # zone][1].
270
+ #
271
+ #
272
+ #
273
+ # [1]: https://docs.aws.amazon.com/controltower/latest/userguide/lz-api-launch
274
+ # @return [Hash,Array,String,Numeric,Boolean]
275
+ #
276
276
  # @see http://docs.aws.amazon.com/goto/WebAPI/controltower-2018-05-10/CreateLandingZoneInput AWS API Documentation
277
277
  #
278
278
  class CreateLandingZoneInput < Struct.new(
279
279
  :version,
280
- :manifest,
281
280
  :remediation_types,
282
- :tags)
281
+ :tags,
282
+ :manifest)
283
283
  SENSITIVE = []
284
284
  include Aws::Structure
285
285
  end
@@ -1291,11 +1291,6 @@ module Aws::ControlTower
1291
1291
  # The landing zone's current deployed version.
1292
1292
  # @return [String]
1293
1293
  #
1294
- # @!attribute [rw] manifest
1295
- # The landing zone manifest JSON text file that specifies the landing
1296
- # zone configurations.
1297
- # @return [Hash,Array,String,Numeric,Boolean]
1298
- #
1299
1294
  # @!attribute [rw] remediation_types
1300
1295
  # The types of remediation actions configured for the landing zone,
1301
1296
  # such as automatic drift correction or compliance enforcement.
@@ -1318,16 +1313,21 @@ module Aws::ControlTower
1318
1313
  # The drift status of the landing zone.
1319
1314
  # @return [Types::LandingZoneDriftStatusSummary]
1320
1315
  #
1316
+ # @!attribute [rw] manifest
1317
+ # The landing zone manifest JSON text file that specifies the landing
1318
+ # zone configurations.
1319
+ # @return [Hash,Array,String,Numeric,Boolean]
1320
+ #
1321
1321
  # @see http://docs.aws.amazon.com/goto/WebAPI/controltower-2018-05-10/LandingZoneDetail AWS API Documentation
1322
1322
  #
1323
1323
  class LandingZoneDetail < Struct.new(
1324
1324
  :version,
1325
- :manifest,
1326
1325
  :remediation_types,
1327
1326
  :arn,
1328
1327
  :status,
1329
1328
  :latest_available_version,
1330
- :drift_status)
1329
+ :drift_status,
1330
+ :manifest)
1331
1331
  SENSITIVE = []
1332
1332
  include Aws::Structure
1333
1333
  end
@@ -2029,6 +2029,15 @@ module Aws::ControlTower
2029
2029
  # The landing zone version, for example, 3.2.
2030
2030
  # @return [String]
2031
2031
  #
2032
+ # @!attribute [rw] remediation_types
2033
+ # Specifies the types of remediation actions to apply when updating
2034
+ # the landing zone configuration.
2035
+ # @return [Array<String>]
2036
+ #
2037
+ # @!attribute [rw] landing_zone_identifier
2038
+ # The unique identifier of the landing zone.
2039
+ # @return [String]
2040
+ #
2032
2041
  # @!attribute [rw] manifest
2033
2042
  # The manifest file (JSON) is a text file that describes your Amazon
2034
2043
  # Web Services resources. For an example, review [Launch your landing
@@ -2041,22 +2050,13 @@ module Aws::ControlTower
2041
2050
  # [1]: https://docs.aws.amazon.com/controltower/latest/userguide/lz-api-launch
2042
2051
  # @return [Hash,Array,String,Numeric,Boolean]
2043
2052
  #
2044
- # @!attribute [rw] remediation_types
2045
- # Specifies the types of remediation actions to apply when updating
2046
- # the landing zone configuration.
2047
- # @return [Array<String>]
2048
- #
2049
- # @!attribute [rw] landing_zone_identifier
2050
- # The unique identifier of the landing zone.
2051
- # @return [String]
2052
- #
2053
2053
  # @see http://docs.aws.amazon.com/goto/WebAPI/controltower-2018-05-10/UpdateLandingZoneInput AWS API Documentation
2054
2054
  #
2055
2055
  class UpdateLandingZoneInput < Struct.new(
2056
2056
  :version,
2057
- :manifest,
2058
2057
  :remediation_types,
2059
- :landing_zone_identifier)
2058
+ :landing_zone_identifier,
2059
+ :manifest)
2060
2060
  SENSITIVE = []
2061
2061
  include Aws::Structure
2062
2062
  end
@@ -55,7 +55,7 @@ module Aws::ControlTower
55
55
  autoload :EndpointProvider, 'aws-sdk-controltower/endpoint_provider'
56
56
  autoload :Endpoints, 'aws-sdk-controltower/endpoints'
57
57
 
58
- GEM_VERSION = '1.52.0'
58
+ GEM_VERSION = '1.53.0'
59
59
 
60
60
  end
61
61
 
data/sig/client.rbs CHANGED
@@ -86,10 +86,10 @@ module Aws
86
86
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ControlTower/Client.html#create_landing_zone-instance_method
87
87
  def create_landing_zone: (
88
88
  version: ::String,
89
- manifest: {
90
- },
91
89
  ?remediation_types: Array[("INHERITANCE_DRIFT")],
92
- ?tags: Hash[::String, ::String]
90
+ ?tags: Hash[::String, ::String],
91
+ ?manifest: {
92
+ }
93
93
  ) -> _CreateLandingZoneResponseSuccess
94
94
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateLandingZoneResponseSuccess
95
95
 
@@ -441,10 +441,10 @@ module Aws
441
441
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ControlTower/Client.html#update_landing_zone-instance_method
442
442
  def update_landing_zone: (
443
443
  version: ::String,
444
- manifest: {
445
- },
446
444
  ?remediation_types: Array[("INHERITANCE_DRIFT")],
447
- landing_zone_identifier: ::String
445
+ landing_zone_identifier: ::String,
446
+ ?manifest: {
447
+ }
448
448
  ) -> _UpdateLandingZoneResponseSuccess
449
449
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateLandingZoneResponseSuccess
450
450
  end
data/sig/types.rbs CHANGED
@@ -72,9 +72,9 @@ module Aws::ControlTower
72
72
 
73
73
  class CreateLandingZoneInput
74
74
  attr_accessor version: ::String
75
- attr_accessor manifest: untyped
76
75
  attr_accessor remediation_types: ::Array[("INHERITANCE_DRIFT")]
77
76
  attr_accessor tags: ::Hash[::String, ::String]
77
+ attr_accessor manifest: untyped
78
78
  SENSITIVE: []
79
79
  end
80
80
 
@@ -355,12 +355,12 @@ module Aws::ControlTower
355
355
 
356
356
  class LandingZoneDetail
357
357
  attr_accessor version: ::String
358
- attr_accessor manifest: untyped
359
358
  attr_accessor remediation_types: ::Array[("INHERITANCE_DRIFT")]
360
359
  attr_accessor arn: ::String
361
360
  attr_accessor status: ("ACTIVE" | "PROCESSING" | "FAILED")
362
361
  attr_accessor latest_available_version: ::String
363
362
  attr_accessor drift_status: Types::LandingZoneDriftStatusSummary
363
+ attr_accessor manifest: untyped
364
364
  SENSITIVE: []
365
365
  end
366
366
 
@@ -582,9 +582,9 @@ module Aws::ControlTower
582
582
 
583
583
  class UpdateLandingZoneInput
584
584
  attr_accessor version: ::String
585
- attr_accessor manifest: untyped
586
585
  attr_accessor remediation_types: ::Array[("INHERITANCE_DRIFT")]
587
586
  attr_accessor landing_zone_identifier: ::String
587
+ attr_accessor manifest: untyped
588
588
  SENSITIVE: []
589
589
  end
590
590
 
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.52.0
4
+ version: 1.53.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
@@ -18,7 +18,7 @@ dependencies:
18
18
  version: '3'
19
19
  - - ">="
20
20
  - !ruby/object:Gem::Version
21
- version: 3.234.0
21
+ version: 3.239.1
22
22
  type: :runtime
23
23
  prerelease: false
24
24
  version_requirements: !ruby/object:Gem::Requirement
@@ -28,7 +28,7 @@ dependencies:
28
28
  version: '3'
29
29
  - - ">="
30
30
  - !ruby/object:Gem::Version
31
- version: 3.234.0
31
+ version: 3.239.1
32
32
  - !ruby/object:Gem::Dependency
33
33
  name: aws-sigv4
34
34
  requirement: !ruby/object:Gem::Requirement