aws-sdk-controltower 1.51.0 → 1.52.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-controltower/client.rb +160 -122
- data/lib/aws-sdk-controltower/client_api.rb +90 -59
- data/lib/aws-sdk-controltower/errors.rb +5 -5
- data/lib/aws-sdk-controltower/types.rb +408 -281
- data/lib/aws-sdk-controltower/waiters.rb +15 -0
- data/lib/aws-sdk-controltower.rb +2 -1
- data/sig/client.rbs +47 -40
- data/sig/errors.rbs +1 -1
- data/sig/types.rbs +83 -56
- metadata +2 -1
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
# WARNING ABOUT GENERATED CODE
|
|
4
|
+
#
|
|
5
|
+
# This file is generated. See the contributing guide for more information:
|
|
6
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
|
7
|
+
#
|
|
8
|
+
# WARNING ABOUT GENERATED CODE
|
|
9
|
+
|
|
10
|
+
require 'aws-sdk-core/waiters'
|
|
11
|
+
|
|
12
|
+
module Aws::ControlTower
|
|
13
|
+
module Waiters
|
|
14
|
+
end
|
|
15
|
+
end
|
data/lib/aws-sdk-controltower.rb
CHANGED
|
@@ -49,12 +49,13 @@ module Aws::ControlTower
|
|
|
49
49
|
end
|
|
50
50
|
autoload :Client, 'aws-sdk-controltower/client'
|
|
51
51
|
autoload :Errors, 'aws-sdk-controltower/errors'
|
|
52
|
+
autoload :Waiters, 'aws-sdk-controltower/waiters'
|
|
52
53
|
autoload :Resource, 'aws-sdk-controltower/resource'
|
|
53
54
|
autoload :EndpointParameters, 'aws-sdk-controltower/endpoint_parameters'
|
|
54
55
|
autoload :EndpointProvider, 'aws-sdk-controltower/endpoint_provider'
|
|
55
56
|
autoload :Endpoints, 'aws-sdk-controltower/endpoints'
|
|
56
57
|
|
|
57
|
-
GEM_VERSION = '1.
|
|
58
|
+
GEM_VERSION = '1.52.0'
|
|
58
59
|
|
|
59
60
|
end
|
|
60
61
|
|
data/sig/client.rbs
CHANGED
|
@@ -85,10 +85,11 @@ module Aws
|
|
|
85
85
|
end
|
|
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
|
+
version: ::String,
|
|
88
89
|
manifest: {
|
|
89
90
|
},
|
|
90
|
-
?
|
|
91
|
-
|
|
91
|
+
?remediation_types: Array[("INHERITANCE_DRIFT")],
|
|
92
|
+
?tags: Hash[::String, ::String]
|
|
92
93
|
) -> _CreateLandingZoneResponseSuccess
|
|
93
94
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateLandingZoneResponseSuccess
|
|
94
95
|
|
|
@@ -118,19 +119,19 @@ module Aws
|
|
|
118
119
|
end
|
|
119
120
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ControlTower/Client.html#disable_control-instance_method
|
|
120
121
|
def disable_control: (
|
|
121
|
-
control_identifier: ::String,
|
|
122
|
-
target_identifier: ::String
|
|
122
|
+
?control_identifier: ::String,
|
|
123
|
+
?target_identifier: ::String,
|
|
124
|
+
?enabled_control_identifier: ::String
|
|
123
125
|
) -> _DisableControlResponseSuccess
|
|
124
|
-
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DisableControlResponseSuccess
|
|
126
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DisableControlResponseSuccess
|
|
125
127
|
|
|
126
128
|
interface _EnableBaselineResponseSuccess
|
|
127
129
|
include ::Seahorse::Client::_ResponseSuccess[Types::EnableBaselineOutput]
|
|
128
|
-
def arn: () -> ::String
|
|
129
130
|
def operation_identifier: () -> ::String
|
|
131
|
+
def arn: () -> ::String
|
|
130
132
|
end
|
|
131
133
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ControlTower/Client.html#enable_baseline-instance_method
|
|
132
134
|
def enable_baseline: (
|
|
133
|
-
baseline_identifier: ::String,
|
|
134
135
|
baseline_version: ::String,
|
|
135
136
|
?parameters: Array[
|
|
136
137
|
{
|
|
@@ -139,36 +140,37 @@ module Aws
|
|
|
139
140
|
}
|
|
140
141
|
},
|
|
141
142
|
],
|
|
142
|
-
|
|
143
|
-
target_identifier: ::String
|
|
143
|
+
baseline_identifier: ::String,
|
|
144
|
+
target_identifier: ::String,
|
|
145
|
+
?tags: Hash[::String, ::String]
|
|
144
146
|
) -> _EnableBaselineResponseSuccess
|
|
145
147
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _EnableBaselineResponseSuccess
|
|
146
148
|
|
|
147
149
|
interface _EnableControlResponseSuccess
|
|
148
150
|
include ::Seahorse::Client::_ResponseSuccess[Types::EnableControlOutput]
|
|
149
|
-
def arn: () -> ::String
|
|
150
151
|
def operation_identifier: () -> ::String
|
|
152
|
+
def arn: () -> ::String
|
|
151
153
|
end
|
|
152
154
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ControlTower/Client.html#enable_control-instance_method
|
|
153
155
|
def enable_control: (
|
|
154
156
|
control_identifier: ::String,
|
|
157
|
+
target_identifier: ::String,
|
|
158
|
+
?tags: Hash[::String, ::String],
|
|
155
159
|
?parameters: Array[
|
|
156
160
|
{
|
|
157
161
|
key: ::String,
|
|
158
162
|
value: {
|
|
159
163
|
}
|
|
160
164
|
},
|
|
161
|
-
]
|
|
162
|
-
?tags: Hash[::String, ::String],
|
|
163
|
-
target_identifier: ::String
|
|
165
|
+
]
|
|
164
166
|
) -> _EnableControlResponseSuccess
|
|
165
167
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _EnableControlResponseSuccess
|
|
166
168
|
|
|
167
169
|
interface _GetBaselineResponseSuccess
|
|
168
170
|
include ::Seahorse::Client::_ResponseSuccess[Types::GetBaselineOutput]
|
|
169
171
|
def arn: () -> ::String
|
|
170
|
-
def description: () -> ::String
|
|
171
172
|
def name: () -> ::String
|
|
173
|
+
def description: () -> ::String
|
|
172
174
|
end
|
|
173
175
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ControlTower/Client.html#get_baseline-instance_method
|
|
174
176
|
def get_baseline: (
|
|
@@ -243,8 +245,8 @@ module Aws
|
|
|
243
245
|
end
|
|
244
246
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ControlTower/Client.html#list_baselines-instance_method
|
|
245
247
|
def list_baselines: (
|
|
246
|
-
?
|
|
247
|
-
?
|
|
248
|
+
?next_token: ::String,
|
|
249
|
+
?max_results: ::Integer
|
|
248
250
|
) -> _ListBaselinesResponseSuccess
|
|
249
251
|
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListBaselinesResponseSuccess
|
|
250
252
|
|
|
@@ -257,13 +259,13 @@ module Aws
|
|
|
257
259
|
def list_control_operations: (
|
|
258
260
|
?filter: {
|
|
259
261
|
control_identifiers: Array[::String]?,
|
|
260
|
-
|
|
262
|
+
target_identifiers: Array[::String]?,
|
|
261
263
|
enabled_control_identifiers: Array[::String]?,
|
|
262
264
|
statuses: Array[("SUCCEEDED" | "FAILED" | "IN_PROGRESS")]?,
|
|
263
|
-
|
|
265
|
+
control_operation_types: Array[("ENABLE_CONTROL" | "DISABLE_CONTROL" | "UPDATE_ENABLED_CONTROL" | "RESET_ENABLED_CONTROL")]?
|
|
264
266
|
},
|
|
265
|
-
?
|
|
266
|
-
?
|
|
267
|
+
?next_token: ::String,
|
|
268
|
+
?max_results: ::Integer
|
|
267
269
|
) -> _ListControlOperationsResponseSuccess
|
|
268
270
|
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListControlOperationsResponseSuccess
|
|
269
271
|
|
|
@@ -275,15 +277,15 @@ module Aws
|
|
|
275
277
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ControlTower/Client.html#list_enabled_baselines-instance_method
|
|
276
278
|
def list_enabled_baselines: (
|
|
277
279
|
?filter: {
|
|
280
|
+
target_identifiers: Array[::String]?,
|
|
278
281
|
baseline_identifiers: Array[::String]?,
|
|
279
|
-
inheritance_drift_statuses: Array[("IN_SYNC" | "DRIFTED")]?,
|
|
280
282
|
parent_identifiers: Array[::String]?,
|
|
281
283
|
statuses: Array[("SUCCEEDED" | "FAILED" | "UNDER_CHANGE")]?,
|
|
282
|
-
|
|
284
|
+
inheritance_drift_statuses: Array[("IN_SYNC" | "DRIFTED")]?
|
|
283
285
|
},
|
|
284
|
-
?
|
|
286
|
+
?next_token: ::String,
|
|
285
287
|
?max_results: ::Integer,
|
|
286
|
-
?
|
|
288
|
+
?include_children: bool
|
|
287
289
|
) -> _ListEnabledBaselinesResponseSuccess
|
|
288
290
|
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListEnabledBaselinesResponseSuccess
|
|
289
291
|
|
|
@@ -294,14 +296,18 @@ module Aws
|
|
|
294
296
|
end
|
|
295
297
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ControlTower/Client.html#list_enabled_controls-instance_method
|
|
296
298
|
def list_enabled_controls: (
|
|
299
|
+
?target_identifier: ::String,
|
|
300
|
+
?next_token: ::String,
|
|
301
|
+
?max_results: ::Integer,
|
|
297
302
|
?filter: {
|
|
298
303
|
control_identifiers: Array[::String]?,
|
|
304
|
+
statuses: Array[("SUCCEEDED" | "FAILED" | "UNDER_CHANGE")]?,
|
|
299
305
|
drift_statuses: Array[("DRIFTED" | "IN_SYNC" | "NOT_CHECKING" | "UNKNOWN")]?,
|
|
300
|
-
|
|
306
|
+
parent_identifiers: Array[::String]?,
|
|
307
|
+
inheritance_drift_statuses: Array[("DRIFTED" | "IN_SYNC" | "NOT_CHECKING" | "UNKNOWN")]?,
|
|
308
|
+
resource_drift_statuses: Array[("DRIFTED" | "IN_SYNC" | "NOT_CHECKING" | "UNKNOWN")]?
|
|
301
309
|
},
|
|
302
|
-
?
|
|
303
|
-
?next_token: ::String,
|
|
304
|
-
?target_identifier: ::String
|
|
310
|
+
?include_children: bool
|
|
305
311
|
) -> _ListEnabledControlsResponseSuccess
|
|
306
312
|
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListEnabledControlsResponseSuccess
|
|
307
313
|
|
|
@@ -313,11 +319,11 @@ module Aws
|
|
|
313
319
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ControlTower/Client.html#list_landing_zone_operations-instance_method
|
|
314
320
|
def list_landing_zone_operations: (
|
|
315
321
|
?filter: {
|
|
316
|
-
|
|
317
|
-
|
|
322
|
+
types: Array[("DELETE" | "CREATE" | "UPDATE" | "RESET")]?,
|
|
323
|
+
statuses: Array[("SUCCEEDED" | "FAILED" | "IN_PROGRESS")]?
|
|
318
324
|
},
|
|
319
|
-
?
|
|
320
|
-
?
|
|
325
|
+
?next_token: ::String,
|
|
326
|
+
?max_results: ::Integer
|
|
321
327
|
) -> _ListLandingZoneOperationsResponseSuccess
|
|
322
328
|
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListLandingZoneOperationsResponseSuccess
|
|
323
329
|
|
|
@@ -328,8 +334,8 @@ module Aws
|
|
|
328
334
|
end
|
|
329
335
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ControlTower/Client.html#list_landing_zones-instance_method
|
|
330
336
|
def list_landing_zones: (
|
|
331
|
-
?
|
|
332
|
-
?
|
|
337
|
+
?next_token: ::String,
|
|
338
|
+
?max_results: ::Integer
|
|
333
339
|
) -> _ListLandingZonesResponseSuccess
|
|
334
340
|
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListLandingZonesResponseSuccess
|
|
335
341
|
|
|
@@ -400,14 +406,14 @@ module Aws
|
|
|
400
406
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ControlTower/Client.html#update_enabled_baseline-instance_method
|
|
401
407
|
def update_enabled_baseline: (
|
|
402
408
|
baseline_version: ::String,
|
|
403
|
-
enabled_baseline_identifier: ::String,
|
|
404
409
|
?parameters: Array[
|
|
405
410
|
{
|
|
406
411
|
key: ::String,
|
|
407
412
|
value: {
|
|
408
413
|
}
|
|
409
414
|
},
|
|
410
|
-
]
|
|
415
|
+
],
|
|
416
|
+
enabled_baseline_identifier: ::String
|
|
411
417
|
) -> _UpdateEnabledBaselineResponseSuccess
|
|
412
418
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateEnabledBaselineResponseSuccess
|
|
413
419
|
|
|
@@ -417,14 +423,14 @@ module Aws
|
|
|
417
423
|
end
|
|
418
424
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ControlTower/Client.html#update_enabled_control-instance_method
|
|
419
425
|
def update_enabled_control: (
|
|
420
|
-
enabled_control_identifier: ::String,
|
|
421
426
|
parameters: Array[
|
|
422
427
|
{
|
|
423
428
|
key: ::String,
|
|
424
429
|
value: {
|
|
425
430
|
}
|
|
426
431
|
},
|
|
427
|
-
]
|
|
432
|
+
],
|
|
433
|
+
enabled_control_identifier: ::String
|
|
428
434
|
) -> _UpdateEnabledControlResponseSuccess
|
|
429
435
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateEnabledControlResponseSuccess
|
|
430
436
|
|
|
@@ -434,10 +440,11 @@ module Aws
|
|
|
434
440
|
end
|
|
435
441
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ControlTower/Client.html#update_landing_zone-instance_method
|
|
436
442
|
def update_landing_zone: (
|
|
437
|
-
|
|
443
|
+
version: ::String,
|
|
438
444
|
manifest: {
|
|
439
445
|
},
|
|
440
|
-
|
|
446
|
+
?remediation_types: Array[("INHERITANCE_DRIFT")],
|
|
447
|
+
landing_zone_identifier: ::String
|
|
441
448
|
) -> _UpdateLandingZoneResponseSuccess
|
|
442
449
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateLandingZoneResponseSuccess
|
|
443
450
|
end
|
data/sig/errors.rbs
CHANGED
|
@@ -28,9 +28,9 @@ module Aws
|
|
|
28
28
|
end
|
|
29
29
|
class ThrottlingException < ::Aws::Errors::ServiceError
|
|
30
30
|
def message: () -> ::String
|
|
31
|
+
def service_code: () -> ::String
|
|
31
32
|
def quota_code: () -> ::String
|
|
32
33
|
def retry_after_seconds: () -> ::String
|
|
33
|
-
def service_code: () -> ::String
|
|
34
34
|
end
|
|
35
35
|
class ValidationException < ::Aws::Errors::ServiceError
|
|
36
36
|
def message: () -> ::String
|
data/sig/types.rbs
CHANGED
|
@@ -14,19 +14,19 @@ module Aws::ControlTower
|
|
|
14
14
|
end
|
|
15
15
|
|
|
16
16
|
class BaselineOperation
|
|
17
|
-
attr_accessor end_time: ::Time
|
|
18
17
|
attr_accessor operation_identifier: ::String
|
|
19
18
|
attr_accessor operation_type: ("ENABLE_BASELINE" | "DISABLE_BASELINE" | "UPDATE_ENABLED_BASELINE" | "RESET_ENABLED_BASELINE")
|
|
20
|
-
attr_accessor start_time: ::Time
|
|
21
19
|
attr_accessor status: ("SUCCEEDED" | "FAILED" | "IN_PROGRESS")
|
|
20
|
+
attr_accessor start_time: ::Time
|
|
21
|
+
attr_accessor end_time: ::Time
|
|
22
22
|
attr_accessor status_message: ::String
|
|
23
23
|
SENSITIVE: []
|
|
24
24
|
end
|
|
25
25
|
|
|
26
26
|
class BaselineSummary
|
|
27
27
|
attr_accessor arn: ::String
|
|
28
|
-
attr_accessor description: ::String
|
|
29
28
|
attr_accessor name: ::String
|
|
29
|
+
attr_accessor description: ::String
|
|
30
30
|
SENSITIVE: []
|
|
31
31
|
end
|
|
32
32
|
|
|
@@ -36,44 +36,45 @@ module Aws::ControlTower
|
|
|
36
36
|
end
|
|
37
37
|
|
|
38
38
|
class ControlOperation
|
|
39
|
-
attr_accessor control_identifier: ::String
|
|
40
|
-
attr_accessor enabled_control_identifier: ::String
|
|
41
|
-
attr_accessor end_time: ::Time
|
|
42
|
-
attr_accessor operation_identifier: ::String
|
|
43
39
|
attr_accessor operation_type: ("ENABLE_CONTROL" | "DISABLE_CONTROL" | "UPDATE_ENABLED_CONTROL" | "RESET_ENABLED_CONTROL")
|
|
44
40
|
attr_accessor start_time: ::Time
|
|
41
|
+
attr_accessor end_time: ::Time
|
|
45
42
|
attr_accessor status: ("SUCCEEDED" | "FAILED" | "IN_PROGRESS")
|
|
46
43
|
attr_accessor status_message: ::String
|
|
44
|
+
attr_accessor operation_identifier: ::String
|
|
45
|
+
attr_accessor control_identifier: ::String
|
|
47
46
|
attr_accessor target_identifier: ::String
|
|
47
|
+
attr_accessor enabled_control_identifier: ::String
|
|
48
48
|
SENSITIVE: []
|
|
49
49
|
end
|
|
50
50
|
|
|
51
51
|
class ControlOperationFilter
|
|
52
52
|
attr_accessor control_identifiers: ::Array[::String]
|
|
53
|
-
attr_accessor
|
|
53
|
+
attr_accessor target_identifiers: ::Array[::String]
|
|
54
54
|
attr_accessor enabled_control_identifiers: ::Array[::String]
|
|
55
55
|
attr_accessor statuses: ::Array[("SUCCEEDED" | "FAILED" | "IN_PROGRESS")]
|
|
56
|
-
attr_accessor
|
|
56
|
+
attr_accessor control_operation_types: ::Array[("ENABLE_CONTROL" | "DISABLE_CONTROL" | "UPDATE_ENABLED_CONTROL" | "RESET_ENABLED_CONTROL")]
|
|
57
57
|
SENSITIVE: []
|
|
58
58
|
end
|
|
59
59
|
|
|
60
60
|
class ControlOperationSummary
|
|
61
|
-
attr_accessor control_identifier: ::String
|
|
62
|
-
attr_accessor enabled_control_identifier: ::String
|
|
63
|
-
attr_accessor end_time: ::Time
|
|
64
|
-
attr_accessor operation_identifier: ::String
|
|
65
61
|
attr_accessor operation_type: ("ENABLE_CONTROL" | "DISABLE_CONTROL" | "UPDATE_ENABLED_CONTROL" | "RESET_ENABLED_CONTROL")
|
|
66
62
|
attr_accessor start_time: ::Time
|
|
63
|
+
attr_accessor end_time: ::Time
|
|
67
64
|
attr_accessor status: ("SUCCEEDED" | "FAILED" | "IN_PROGRESS")
|
|
68
65
|
attr_accessor status_message: ::String
|
|
66
|
+
attr_accessor operation_identifier: ::String
|
|
67
|
+
attr_accessor control_identifier: ::String
|
|
69
68
|
attr_accessor target_identifier: ::String
|
|
69
|
+
attr_accessor enabled_control_identifier: ::String
|
|
70
70
|
SENSITIVE: []
|
|
71
71
|
end
|
|
72
72
|
|
|
73
73
|
class CreateLandingZoneInput
|
|
74
|
+
attr_accessor version: ::String
|
|
74
75
|
attr_accessor manifest: untyped
|
|
76
|
+
attr_accessor remediation_types: ::Array[("INHERITANCE_DRIFT")]
|
|
75
77
|
attr_accessor tags: ::Hash[::String, ::String]
|
|
76
|
-
attr_accessor version: ::String
|
|
77
78
|
SENSITIVE: []
|
|
78
79
|
end
|
|
79
80
|
|
|
@@ -106,6 +107,7 @@ module Aws::ControlTower
|
|
|
106
107
|
class DisableControlInput
|
|
107
108
|
attr_accessor control_identifier: ::String
|
|
108
109
|
attr_accessor target_identifier: ::String
|
|
110
|
+
attr_accessor enabled_control_identifier: ::String
|
|
109
111
|
SENSITIVE: []
|
|
110
112
|
end
|
|
111
113
|
|
|
@@ -116,35 +118,36 @@ module Aws::ControlTower
|
|
|
116
118
|
|
|
117
119
|
class DriftStatusSummary
|
|
118
120
|
attr_accessor drift_status: ("DRIFTED" | "IN_SYNC" | "NOT_CHECKING" | "UNKNOWN")
|
|
121
|
+
attr_accessor types: Types::EnabledControlDriftTypes
|
|
119
122
|
SENSITIVE: []
|
|
120
123
|
end
|
|
121
124
|
|
|
122
125
|
class EnableBaselineInput
|
|
123
|
-
attr_accessor baseline_identifier: ::String
|
|
124
126
|
attr_accessor baseline_version: ::String
|
|
125
127
|
attr_accessor parameters: ::Array[Types::EnabledBaselineParameter]
|
|
126
|
-
attr_accessor
|
|
128
|
+
attr_accessor baseline_identifier: ::String
|
|
127
129
|
attr_accessor target_identifier: ::String
|
|
130
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
|
128
131
|
SENSITIVE: []
|
|
129
132
|
end
|
|
130
133
|
|
|
131
134
|
class EnableBaselineOutput
|
|
132
|
-
attr_accessor arn: ::String
|
|
133
135
|
attr_accessor operation_identifier: ::String
|
|
136
|
+
attr_accessor arn: ::String
|
|
134
137
|
SENSITIVE: []
|
|
135
138
|
end
|
|
136
139
|
|
|
137
140
|
class EnableControlInput
|
|
138
141
|
attr_accessor control_identifier: ::String
|
|
139
|
-
attr_accessor parameters: ::Array[Types::EnabledControlParameter]
|
|
140
|
-
attr_accessor tags: ::Hash[::String, ::String]
|
|
141
142
|
attr_accessor target_identifier: ::String
|
|
143
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
|
144
|
+
attr_accessor parameters: ::Array[Types::EnabledControlParameter]
|
|
142
145
|
SENSITIVE: []
|
|
143
146
|
end
|
|
144
147
|
|
|
145
148
|
class EnableControlOutput
|
|
146
|
-
attr_accessor arn: ::String
|
|
147
149
|
attr_accessor operation_identifier: ::String
|
|
150
|
+
attr_accessor arn: ::String
|
|
148
151
|
SENSITIVE: []
|
|
149
152
|
end
|
|
150
153
|
|
|
@@ -153,10 +156,10 @@ module Aws::ControlTower
|
|
|
153
156
|
attr_accessor baseline_identifier: ::String
|
|
154
157
|
attr_accessor baseline_version: ::String
|
|
155
158
|
attr_accessor drift_status_summary: Types::EnabledBaselineDriftStatusSummary
|
|
156
|
-
attr_accessor
|
|
159
|
+
attr_accessor target_identifier: ::String
|
|
157
160
|
attr_accessor parent_identifier: ::String
|
|
158
161
|
attr_accessor status_summary: Types::EnablementStatusSummary
|
|
159
|
-
attr_accessor
|
|
162
|
+
attr_accessor parameters: ::Array[Types::EnabledBaselineParameterSummary]
|
|
160
163
|
SENSITIVE: []
|
|
161
164
|
end
|
|
162
165
|
|
|
@@ -171,11 +174,11 @@ module Aws::ControlTower
|
|
|
171
174
|
end
|
|
172
175
|
|
|
173
176
|
class EnabledBaselineFilter
|
|
177
|
+
attr_accessor target_identifiers: ::Array[::String]
|
|
174
178
|
attr_accessor baseline_identifiers: ::Array[::String]
|
|
175
|
-
attr_accessor inheritance_drift_statuses: ::Array[("IN_SYNC" | "DRIFTED")]
|
|
176
179
|
attr_accessor parent_identifiers: ::Array[::String]
|
|
177
180
|
attr_accessor statuses: ::Array[("SUCCEEDED" | "FAILED" | "UNDER_CHANGE")]
|
|
178
|
-
attr_accessor
|
|
181
|
+
attr_accessor inheritance_drift_statuses: ::Array[("IN_SYNC" | "DRIFTED")]
|
|
179
182
|
SENSITIVE: []
|
|
180
183
|
end
|
|
181
184
|
|
|
@@ -201,27 +204,42 @@ module Aws::ControlTower
|
|
|
201
204
|
attr_accessor baseline_identifier: ::String
|
|
202
205
|
attr_accessor baseline_version: ::String
|
|
203
206
|
attr_accessor drift_status_summary: Types::EnabledBaselineDriftStatusSummary
|
|
207
|
+
attr_accessor target_identifier: ::String
|
|
204
208
|
attr_accessor parent_identifier: ::String
|
|
205
209
|
attr_accessor status_summary: Types::EnablementStatusSummary
|
|
206
|
-
attr_accessor target_identifier: ::String
|
|
207
210
|
SENSITIVE: []
|
|
208
211
|
end
|
|
209
212
|
|
|
210
213
|
class EnabledControlDetails
|
|
211
214
|
attr_accessor arn: ::String
|
|
212
215
|
attr_accessor control_identifier: ::String
|
|
213
|
-
attr_accessor drift_status_summary: Types::DriftStatusSummary
|
|
214
|
-
attr_accessor parameters: ::Array[Types::EnabledControlParameterSummary]
|
|
215
|
-
attr_accessor status_summary: Types::EnablementStatusSummary
|
|
216
216
|
attr_accessor target_identifier: ::String
|
|
217
|
+
attr_accessor status_summary: Types::EnablementStatusSummary
|
|
218
|
+
attr_accessor drift_status_summary: Types::DriftStatusSummary
|
|
219
|
+
attr_accessor parent_identifier: ::String
|
|
217
220
|
attr_accessor target_regions: ::Array[Types::Region]
|
|
221
|
+
attr_accessor parameters: ::Array[Types::EnabledControlParameterSummary]
|
|
222
|
+
SENSITIVE: []
|
|
223
|
+
end
|
|
224
|
+
|
|
225
|
+
class EnabledControlDriftTypes
|
|
226
|
+
attr_accessor inheritance: Types::EnabledControlInheritanceDrift
|
|
227
|
+
attr_accessor resource: Types::EnabledControlResourceDrift
|
|
218
228
|
SENSITIVE: []
|
|
219
229
|
end
|
|
220
230
|
|
|
221
231
|
class EnabledControlFilter
|
|
222
232
|
attr_accessor control_identifiers: ::Array[::String]
|
|
223
|
-
attr_accessor drift_statuses: ::Array[("DRIFTED" | "IN_SYNC" | "NOT_CHECKING" | "UNKNOWN")]
|
|
224
233
|
attr_accessor statuses: ::Array[("SUCCEEDED" | "FAILED" | "UNDER_CHANGE")]
|
|
234
|
+
attr_accessor drift_statuses: ::Array[("DRIFTED" | "IN_SYNC" | "NOT_CHECKING" | "UNKNOWN")]
|
|
235
|
+
attr_accessor parent_identifiers: ::Array[::String]
|
|
236
|
+
attr_accessor inheritance_drift_statuses: ::Array[("DRIFTED" | "IN_SYNC" | "NOT_CHECKING" | "UNKNOWN")]
|
|
237
|
+
attr_accessor resource_drift_statuses: ::Array[("DRIFTED" | "IN_SYNC" | "NOT_CHECKING" | "UNKNOWN")]
|
|
238
|
+
SENSITIVE: []
|
|
239
|
+
end
|
|
240
|
+
|
|
241
|
+
class EnabledControlInheritanceDrift
|
|
242
|
+
attr_accessor status: ("DRIFTED" | "IN_SYNC" | "NOT_CHECKING" | "UNKNOWN")
|
|
225
243
|
SENSITIVE: []
|
|
226
244
|
end
|
|
227
245
|
|
|
@@ -237,18 +255,24 @@ module Aws::ControlTower
|
|
|
237
255
|
SENSITIVE: []
|
|
238
256
|
end
|
|
239
257
|
|
|
258
|
+
class EnabledControlResourceDrift
|
|
259
|
+
attr_accessor status: ("DRIFTED" | "IN_SYNC" | "NOT_CHECKING" | "UNKNOWN")
|
|
260
|
+
SENSITIVE: []
|
|
261
|
+
end
|
|
262
|
+
|
|
240
263
|
class EnabledControlSummary
|
|
241
264
|
attr_accessor arn: ::String
|
|
242
265
|
attr_accessor control_identifier: ::String
|
|
243
|
-
attr_accessor drift_status_summary: Types::DriftStatusSummary
|
|
244
|
-
attr_accessor status_summary: Types::EnablementStatusSummary
|
|
245
266
|
attr_accessor target_identifier: ::String
|
|
267
|
+
attr_accessor status_summary: Types::EnablementStatusSummary
|
|
268
|
+
attr_accessor drift_status_summary: Types::DriftStatusSummary
|
|
269
|
+
attr_accessor parent_identifier: ::String
|
|
246
270
|
SENSITIVE: []
|
|
247
271
|
end
|
|
248
272
|
|
|
249
273
|
class EnablementStatusSummary
|
|
250
|
-
attr_accessor last_operation_identifier: ::String
|
|
251
274
|
attr_accessor status: ("SUCCEEDED" | "FAILED" | "UNDER_CHANGE")
|
|
275
|
+
attr_accessor last_operation_identifier: ::String
|
|
252
276
|
SENSITIVE: []
|
|
253
277
|
end
|
|
254
278
|
|
|
@@ -269,8 +293,8 @@ module Aws::ControlTower
|
|
|
269
293
|
|
|
270
294
|
class GetBaselineOutput
|
|
271
295
|
attr_accessor arn: ::String
|
|
272
|
-
attr_accessor description: ::String
|
|
273
296
|
attr_accessor name: ::String
|
|
297
|
+
attr_accessor description: ::String
|
|
274
298
|
SENSITIVE: []
|
|
275
299
|
end
|
|
276
300
|
|
|
@@ -330,12 +354,13 @@ module Aws::ControlTower
|
|
|
330
354
|
end
|
|
331
355
|
|
|
332
356
|
class LandingZoneDetail
|
|
333
|
-
attr_accessor
|
|
334
|
-
attr_accessor drift_status: Types::LandingZoneDriftStatusSummary
|
|
335
|
-
attr_accessor latest_available_version: ::String
|
|
357
|
+
attr_accessor version: ::String
|
|
336
358
|
attr_accessor manifest: untyped
|
|
359
|
+
attr_accessor remediation_types: ::Array[("INHERITANCE_DRIFT")]
|
|
360
|
+
attr_accessor arn: ::String
|
|
337
361
|
attr_accessor status: ("ACTIVE" | "PROCESSING" | "FAILED")
|
|
338
|
-
attr_accessor
|
|
362
|
+
attr_accessor latest_available_version: ::String
|
|
363
|
+
attr_accessor drift_status: Types::LandingZoneDriftStatusSummary
|
|
339
364
|
SENSITIVE: []
|
|
340
365
|
end
|
|
341
366
|
|
|
@@ -345,24 +370,24 @@ module Aws::ControlTower
|
|
|
345
370
|
end
|
|
346
371
|
|
|
347
372
|
class LandingZoneOperationDetail
|
|
348
|
-
attr_accessor end_time: ::Time
|
|
349
|
-
attr_accessor operation_identifier: ::String
|
|
350
373
|
attr_accessor operation_type: ("DELETE" | "CREATE" | "UPDATE" | "RESET")
|
|
351
|
-
attr_accessor
|
|
374
|
+
attr_accessor operation_identifier: ::String
|
|
352
375
|
attr_accessor status: ("SUCCEEDED" | "FAILED" | "IN_PROGRESS")
|
|
376
|
+
attr_accessor start_time: ::Time
|
|
377
|
+
attr_accessor end_time: ::Time
|
|
353
378
|
attr_accessor status_message: ::String
|
|
354
379
|
SENSITIVE: []
|
|
355
380
|
end
|
|
356
381
|
|
|
357
382
|
class LandingZoneOperationFilter
|
|
358
|
-
attr_accessor statuses: ::Array[("SUCCEEDED" | "FAILED" | "IN_PROGRESS")]
|
|
359
383
|
attr_accessor types: ::Array[("DELETE" | "CREATE" | "UPDATE" | "RESET")]
|
|
384
|
+
attr_accessor statuses: ::Array[("SUCCEEDED" | "FAILED" | "IN_PROGRESS")]
|
|
360
385
|
SENSITIVE: []
|
|
361
386
|
end
|
|
362
387
|
|
|
363
388
|
class LandingZoneOperationSummary
|
|
364
|
-
attr_accessor operation_identifier: ::String
|
|
365
389
|
attr_accessor operation_type: ("DELETE" | "CREATE" | "UPDATE" | "RESET")
|
|
390
|
+
attr_accessor operation_identifier: ::String
|
|
366
391
|
attr_accessor status: ("SUCCEEDED" | "FAILED" | "IN_PROGRESS")
|
|
367
392
|
SENSITIVE: []
|
|
368
393
|
end
|
|
@@ -373,8 +398,8 @@ module Aws::ControlTower
|
|
|
373
398
|
end
|
|
374
399
|
|
|
375
400
|
class ListBaselinesInput
|
|
376
|
-
attr_accessor max_results: ::Integer
|
|
377
401
|
attr_accessor next_token: ::String
|
|
402
|
+
attr_accessor max_results: ::Integer
|
|
378
403
|
SENSITIVE: []
|
|
379
404
|
end
|
|
380
405
|
|
|
@@ -386,8 +411,8 @@ module Aws::ControlTower
|
|
|
386
411
|
|
|
387
412
|
class ListControlOperationsInput
|
|
388
413
|
attr_accessor filter: Types::ControlOperationFilter
|
|
389
|
-
attr_accessor max_results: ::Integer
|
|
390
414
|
attr_accessor next_token: ::String
|
|
415
|
+
attr_accessor max_results: ::Integer
|
|
391
416
|
SENSITIVE: []
|
|
392
417
|
end
|
|
393
418
|
|
|
@@ -399,9 +424,9 @@ module Aws::ControlTower
|
|
|
399
424
|
|
|
400
425
|
class ListEnabledBaselinesInput
|
|
401
426
|
attr_accessor filter: Types::EnabledBaselineFilter
|
|
402
|
-
attr_accessor include_children: bool
|
|
403
|
-
attr_accessor max_results: ::Integer
|
|
404
427
|
attr_accessor next_token: ::String
|
|
428
|
+
attr_accessor max_results: ::Integer
|
|
429
|
+
attr_accessor include_children: bool
|
|
405
430
|
SENSITIVE: []
|
|
406
431
|
end
|
|
407
432
|
|
|
@@ -412,10 +437,11 @@ module Aws::ControlTower
|
|
|
412
437
|
end
|
|
413
438
|
|
|
414
439
|
class ListEnabledControlsInput
|
|
415
|
-
attr_accessor filter: Types::EnabledControlFilter
|
|
416
|
-
attr_accessor max_results: ::Integer
|
|
417
|
-
attr_accessor next_token: ::String
|
|
418
440
|
attr_accessor target_identifier: ::String
|
|
441
|
+
attr_accessor next_token: ::String
|
|
442
|
+
attr_accessor max_results: ::Integer
|
|
443
|
+
attr_accessor filter: Types::EnabledControlFilter
|
|
444
|
+
attr_accessor include_children: bool
|
|
419
445
|
SENSITIVE: []
|
|
420
446
|
end
|
|
421
447
|
|
|
@@ -427,8 +453,8 @@ module Aws::ControlTower
|
|
|
427
453
|
|
|
428
454
|
class ListLandingZoneOperationsInput
|
|
429
455
|
attr_accessor filter: Types::LandingZoneOperationFilter
|
|
430
|
-
attr_accessor max_results: ::Integer
|
|
431
456
|
attr_accessor next_token: ::String
|
|
457
|
+
attr_accessor max_results: ::Integer
|
|
432
458
|
SENSITIVE: []
|
|
433
459
|
end
|
|
434
460
|
|
|
@@ -439,8 +465,8 @@ module Aws::ControlTower
|
|
|
439
465
|
end
|
|
440
466
|
|
|
441
467
|
class ListLandingZonesInput
|
|
442
|
-
attr_accessor max_results: ::Integer
|
|
443
468
|
attr_accessor next_token: ::String
|
|
469
|
+
attr_accessor max_results: ::Integer
|
|
444
470
|
SENSITIVE: []
|
|
445
471
|
end
|
|
446
472
|
|
|
@@ -516,9 +542,9 @@ module Aws::ControlTower
|
|
|
516
542
|
|
|
517
543
|
class ThrottlingException
|
|
518
544
|
attr_accessor message: ::String
|
|
545
|
+
attr_accessor service_code: ::String
|
|
519
546
|
attr_accessor quota_code: ::String
|
|
520
547
|
attr_accessor retry_after_seconds: ::Integer
|
|
521
|
-
attr_accessor service_code: ::String
|
|
522
548
|
SENSITIVE: []
|
|
523
549
|
end
|
|
524
550
|
|
|
@@ -533,8 +559,8 @@ module Aws::ControlTower
|
|
|
533
559
|
|
|
534
560
|
class UpdateEnabledBaselineInput
|
|
535
561
|
attr_accessor baseline_version: ::String
|
|
536
|
-
attr_accessor enabled_baseline_identifier: ::String
|
|
537
562
|
attr_accessor parameters: ::Array[Types::EnabledBaselineParameter]
|
|
563
|
+
attr_accessor enabled_baseline_identifier: ::String
|
|
538
564
|
SENSITIVE: []
|
|
539
565
|
end
|
|
540
566
|
|
|
@@ -544,8 +570,8 @@ module Aws::ControlTower
|
|
|
544
570
|
end
|
|
545
571
|
|
|
546
572
|
class UpdateEnabledControlInput
|
|
547
|
-
attr_accessor enabled_control_identifier: ::String
|
|
548
573
|
attr_accessor parameters: ::Array[Types::EnabledControlParameter]
|
|
574
|
+
attr_accessor enabled_control_identifier: ::String
|
|
549
575
|
SENSITIVE: []
|
|
550
576
|
end
|
|
551
577
|
|
|
@@ -555,9 +581,10 @@ module Aws::ControlTower
|
|
|
555
581
|
end
|
|
556
582
|
|
|
557
583
|
class UpdateLandingZoneInput
|
|
558
|
-
attr_accessor landing_zone_identifier: ::String
|
|
559
|
-
attr_accessor manifest: untyped
|
|
560
584
|
attr_accessor version: ::String
|
|
585
|
+
attr_accessor manifest: untyped
|
|
586
|
+
attr_accessor remediation_types: ::Array[("INHERITANCE_DRIFT")]
|
|
587
|
+
attr_accessor landing_zone_identifier: ::String
|
|
561
588
|
SENSITIVE: []
|
|
562
589
|
end
|
|
563
590
|
|