aws-sdk-controltower 1.16.0 → 1.18.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-controltower/client.rb +383 -20
- data/lib/aws-sdk-controltower/client_api.rb +294 -0
- data/lib/aws-sdk-controltower/endpoints.rb +126 -0
- data/lib/aws-sdk-controltower/plugins/endpoints.rb +19 -0
- data/lib/aws-sdk-controltower/types.rb +530 -23
- data/lib/aws-sdk-controltower.rb +1 -1
- data/sig/client.rbs +386 -0
- data/sig/errors.rbs +40 -0
- data/sig/resource.rbs +79 -0
- data/sig/types.rbs +467 -0
- data/sig/waiters.rbs +13 -0
- metadata +13 -8
data/sig/client.rbs
ADDED
@@ -0,0 +1,386 @@
|
|
1
|
+
# WARNING ABOUT GENERATED CODE
|
2
|
+
#
|
3
|
+
# This file is generated. See the contributing guide for more information:
|
4
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
5
|
+
#
|
6
|
+
# WARNING ABOUT GENERATED CODE
|
7
|
+
|
8
|
+
module Aws
|
9
|
+
module ControlTower
|
10
|
+
class Client < ::Seahorse::Client::Base
|
11
|
+
include ::Aws::ClientStubs
|
12
|
+
|
13
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ControlTower/Client.html#initialize-instance_method
|
14
|
+
def self.new: (
|
15
|
+
?credentials: untyped,
|
16
|
+
?region: String,
|
17
|
+
?access_key_id: String,
|
18
|
+
?active_endpoint_cache: bool,
|
19
|
+
?adaptive_retry_wait_to_fill: bool,
|
20
|
+
?client_side_monitoring: bool,
|
21
|
+
?client_side_monitoring_client_id: String,
|
22
|
+
?client_side_monitoring_host: String,
|
23
|
+
?client_side_monitoring_port: Integer,
|
24
|
+
?client_side_monitoring_publisher: untyped,
|
25
|
+
?convert_params: bool,
|
26
|
+
?correct_clock_skew: bool,
|
27
|
+
?defaults_mode: String,
|
28
|
+
?disable_host_prefix_injection: bool,
|
29
|
+
?disable_request_compression: bool,
|
30
|
+
?endpoint: String,
|
31
|
+
?endpoint_cache_max_entries: Integer,
|
32
|
+
?endpoint_cache_max_threads: Integer,
|
33
|
+
?endpoint_cache_poll_interval: Integer,
|
34
|
+
?endpoint_discovery: bool,
|
35
|
+
?ignore_configured_endpoint_urls: bool,
|
36
|
+
?log_formatter: untyped,
|
37
|
+
?log_level: Symbol,
|
38
|
+
?logger: untyped,
|
39
|
+
?max_attempts: Integer,
|
40
|
+
?profile: String,
|
41
|
+
?request_min_compression_size_bytes: Integer,
|
42
|
+
?retry_backoff: Proc,
|
43
|
+
?retry_base_delay: Float,
|
44
|
+
?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
|
45
|
+
?retry_limit: Integer,
|
46
|
+
?retry_max_delay: Integer,
|
47
|
+
?retry_mode: ("legacy" | "standard" | "adaptive"),
|
48
|
+
?sdk_ua_app_id: String,
|
49
|
+
?secret_access_key: String,
|
50
|
+
?session_token: String,
|
51
|
+
?stub_responses: untyped,
|
52
|
+
?token_provider: untyped,
|
53
|
+
?use_dualstack_endpoint: bool,
|
54
|
+
?use_fips_endpoint: bool,
|
55
|
+
?validate_params: bool,
|
56
|
+
?endpoint_provider: untyped,
|
57
|
+
?http_proxy: String,
|
58
|
+
?http_open_timeout: (Float | Integer),
|
59
|
+
?http_read_timeout: (Float | Integer),
|
60
|
+
?http_idle_timeout: (Float | Integer),
|
61
|
+
?http_continue_timeout: (Float | Integer),
|
62
|
+
?ssl_timeout: (Float | Integer | nil),
|
63
|
+
?http_wire_trace: bool,
|
64
|
+
?ssl_verify_peer: bool,
|
65
|
+
?ssl_ca_bundle: String,
|
66
|
+
?ssl_ca_directory: String,
|
67
|
+
?ssl_ca_store: String,
|
68
|
+
?on_chunk_received: Proc,
|
69
|
+
?on_chunk_sent: Proc,
|
70
|
+
?raise_response_errors: bool
|
71
|
+
) -> instance
|
72
|
+
| (?Hash[Symbol, untyped]) -> instance
|
73
|
+
|
74
|
+
|
75
|
+
interface _CreateLandingZoneResponseSuccess
|
76
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreateLandingZoneOutput]
|
77
|
+
def arn: () -> ::String
|
78
|
+
def operation_identifier: () -> ::String
|
79
|
+
end
|
80
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ControlTower/Client.html#create_landing_zone-instance_method
|
81
|
+
def create_landing_zone: (
|
82
|
+
manifest: {
|
83
|
+
},
|
84
|
+
?tags: Hash[::String, ::String],
|
85
|
+
version: ::String
|
86
|
+
) -> _CreateLandingZoneResponseSuccess
|
87
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateLandingZoneResponseSuccess
|
88
|
+
|
89
|
+
interface _DeleteLandingZoneResponseSuccess
|
90
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteLandingZoneOutput]
|
91
|
+
def operation_identifier: () -> ::String
|
92
|
+
end
|
93
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ControlTower/Client.html#delete_landing_zone-instance_method
|
94
|
+
def delete_landing_zone: (
|
95
|
+
landing_zone_identifier: ::String
|
96
|
+
) -> _DeleteLandingZoneResponseSuccess
|
97
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteLandingZoneResponseSuccess
|
98
|
+
|
99
|
+
interface _DisableBaselineResponseSuccess
|
100
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DisableBaselineOutput]
|
101
|
+
def operation_identifier: () -> ::String
|
102
|
+
end
|
103
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ControlTower/Client.html#disable_baseline-instance_method
|
104
|
+
def disable_baseline: (
|
105
|
+
enabled_baseline_identifier: ::String
|
106
|
+
) -> _DisableBaselineResponseSuccess
|
107
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DisableBaselineResponseSuccess
|
108
|
+
|
109
|
+
interface _DisableControlResponseSuccess
|
110
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DisableControlOutput]
|
111
|
+
def operation_identifier: () -> ::String
|
112
|
+
end
|
113
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ControlTower/Client.html#disable_control-instance_method
|
114
|
+
def disable_control: (
|
115
|
+
control_identifier: ::String,
|
116
|
+
target_identifier: ::String
|
117
|
+
) -> _DisableControlResponseSuccess
|
118
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DisableControlResponseSuccess
|
119
|
+
|
120
|
+
interface _EnableBaselineResponseSuccess
|
121
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::EnableBaselineOutput]
|
122
|
+
def arn: () -> ::String
|
123
|
+
def operation_identifier: () -> ::String
|
124
|
+
end
|
125
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ControlTower/Client.html#enable_baseline-instance_method
|
126
|
+
def enable_baseline: (
|
127
|
+
baseline_identifier: ::String,
|
128
|
+
baseline_version: ::String,
|
129
|
+
?parameters: Array[
|
130
|
+
{
|
131
|
+
key: ::String,
|
132
|
+
value: {
|
133
|
+
}
|
134
|
+
},
|
135
|
+
],
|
136
|
+
?tags: Hash[::String, ::String],
|
137
|
+
target_identifier: ::String
|
138
|
+
) -> _EnableBaselineResponseSuccess
|
139
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _EnableBaselineResponseSuccess
|
140
|
+
|
141
|
+
interface _EnableControlResponseSuccess
|
142
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::EnableControlOutput]
|
143
|
+
def arn: () -> ::String
|
144
|
+
def operation_identifier: () -> ::String
|
145
|
+
end
|
146
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ControlTower/Client.html#enable_control-instance_method
|
147
|
+
def enable_control: (
|
148
|
+
control_identifier: ::String,
|
149
|
+
?parameters: Array[
|
150
|
+
{
|
151
|
+
key: ::String,
|
152
|
+
value: {
|
153
|
+
}
|
154
|
+
},
|
155
|
+
],
|
156
|
+
?tags: Hash[::String, ::String],
|
157
|
+
target_identifier: ::String
|
158
|
+
) -> _EnableControlResponseSuccess
|
159
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _EnableControlResponseSuccess
|
160
|
+
|
161
|
+
interface _GetBaselineResponseSuccess
|
162
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetBaselineOutput]
|
163
|
+
def arn: () -> ::String
|
164
|
+
def description: () -> ::String
|
165
|
+
def name: () -> ::String
|
166
|
+
end
|
167
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ControlTower/Client.html#get_baseline-instance_method
|
168
|
+
def get_baseline: (
|
169
|
+
baseline_identifier: ::String
|
170
|
+
) -> _GetBaselineResponseSuccess
|
171
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetBaselineResponseSuccess
|
172
|
+
|
173
|
+
interface _GetBaselineOperationResponseSuccess
|
174
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetBaselineOperationOutput]
|
175
|
+
def baseline_operation: () -> Types::BaselineOperation
|
176
|
+
end
|
177
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ControlTower/Client.html#get_baseline_operation-instance_method
|
178
|
+
def get_baseline_operation: (
|
179
|
+
operation_identifier: ::String
|
180
|
+
) -> _GetBaselineOperationResponseSuccess
|
181
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetBaselineOperationResponseSuccess
|
182
|
+
|
183
|
+
interface _GetControlOperationResponseSuccess
|
184
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetControlOperationOutput]
|
185
|
+
def control_operation: () -> Types::ControlOperation
|
186
|
+
end
|
187
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ControlTower/Client.html#get_control_operation-instance_method
|
188
|
+
def get_control_operation: (
|
189
|
+
operation_identifier: ::String
|
190
|
+
) -> _GetControlOperationResponseSuccess
|
191
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetControlOperationResponseSuccess
|
192
|
+
|
193
|
+
interface _GetEnabledBaselineResponseSuccess
|
194
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetEnabledBaselineOutput]
|
195
|
+
def enabled_baseline_details: () -> Types::EnabledBaselineDetails
|
196
|
+
end
|
197
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ControlTower/Client.html#get_enabled_baseline-instance_method
|
198
|
+
def get_enabled_baseline: (
|
199
|
+
enabled_baseline_identifier: ::String
|
200
|
+
) -> _GetEnabledBaselineResponseSuccess
|
201
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetEnabledBaselineResponseSuccess
|
202
|
+
|
203
|
+
interface _GetEnabledControlResponseSuccess
|
204
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetEnabledControlOutput]
|
205
|
+
def enabled_control_details: () -> Types::EnabledControlDetails
|
206
|
+
end
|
207
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ControlTower/Client.html#get_enabled_control-instance_method
|
208
|
+
def get_enabled_control: (
|
209
|
+
enabled_control_identifier: ::String
|
210
|
+
) -> _GetEnabledControlResponseSuccess
|
211
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetEnabledControlResponseSuccess
|
212
|
+
|
213
|
+
interface _GetLandingZoneResponseSuccess
|
214
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetLandingZoneOutput]
|
215
|
+
def landing_zone: () -> Types::LandingZoneDetail
|
216
|
+
end
|
217
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ControlTower/Client.html#get_landing_zone-instance_method
|
218
|
+
def get_landing_zone: (
|
219
|
+
landing_zone_identifier: ::String
|
220
|
+
) -> _GetLandingZoneResponseSuccess
|
221
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetLandingZoneResponseSuccess
|
222
|
+
|
223
|
+
interface _GetLandingZoneOperationResponseSuccess
|
224
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetLandingZoneOperationOutput]
|
225
|
+
def operation_details: () -> Types::LandingZoneOperationDetail
|
226
|
+
end
|
227
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ControlTower/Client.html#get_landing_zone_operation-instance_method
|
228
|
+
def get_landing_zone_operation: (
|
229
|
+
operation_identifier: ::String
|
230
|
+
) -> _GetLandingZoneOperationResponseSuccess
|
231
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetLandingZoneOperationResponseSuccess
|
232
|
+
|
233
|
+
interface _ListBaselinesResponseSuccess
|
234
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListBaselinesOutput]
|
235
|
+
def baselines: () -> ::Array[Types::BaselineSummary]
|
236
|
+
def next_token: () -> ::String
|
237
|
+
end
|
238
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ControlTower/Client.html#list_baselines-instance_method
|
239
|
+
def list_baselines: (
|
240
|
+
?max_results: ::Integer,
|
241
|
+
?next_token: ::String
|
242
|
+
) -> _ListBaselinesResponseSuccess
|
243
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListBaselinesResponseSuccess
|
244
|
+
|
245
|
+
interface _ListEnabledBaselinesResponseSuccess
|
246
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListEnabledBaselinesOutput]
|
247
|
+
def enabled_baselines: () -> ::Array[Types::EnabledBaselineSummary]
|
248
|
+
def next_token: () -> ::String
|
249
|
+
end
|
250
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ControlTower/Client.html#list_enabled_baselines-instance_method
|
251
|
+
def list_enabled_baselines: (
|
252
|
+
?filter: {
|
253
|
+
baseline_identifiers: Array[::String]?,
|
254
|
+
target_identifiers: Array[::String]?
|
255
|
+
},
|
256
|
+
?max_results: ::Integer,
|
257
|
+
?next_token: ::String
|
258
|
+
) -> _ListEnabledBaselinesResponseSuccess
|
259
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListEnabledBaselinesResponseSuccess
|
260
|
+
|
261
|
+
interface _ListEnabledControlsResponseSuccess
|
262
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListEnabledControlsOutput]
|
263
|
+
def enabled_controls: () -> ::Array[Types::EnabledControlSummary]
|
264
|
+
def next_token: () -> ::String
|
265
|
+
end
|
266
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ControlTower/Client.html#list_enabled_controls-instance_method
|
267
|
+
def list_enabled_controls: (
|
268
|
+
?max_results: ::Integer,
|
269
|
+
?next_token: ::String,
|
270
|
+
target_identifier: ::String
|
271
|
+
) -> _ListEnabledControlsResponseSuccess
|
272
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListEnabledControlsResponseSuccess
|
273
|
+
|
274
|
+
interface _ListLandingZonesResponseSuccess
|
275
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListLandingZonesOutput]
|
276
|
+
def landing_zones: () -> ::Array[Types::LandingZoneSummary]
|
277
|
+
def next_token: () -> ::String
|
278
|
+
end
|
279
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ControlTower/Client.html#list_landing_zones-instance_method
|
280
|
+
def list_landing_zones: (
|
281
|
+
?max_results: ::Integer,
|
282
|
+
?next_token: ::String
|
283
|
+
) -> _ListLandingZonesResponseSuccess
|
284
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListLandingZonesResponseSuccess
|
285
|
+
|
286
|
+
interface _ListTagsForResourceResponseSuccess
|
287
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListTagsForResourceOutput]
|
288
|
+
def tags: () -> ::Hash[::String, ::String]
|
289
|
+
end
|
290
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ControlTower/Client.html#list_tags_for_resource-instance_method
|
291
|
+
def list_tags_for_resource: (
|
292
|
+
resource_arn: ::String
|
293
|
+
) -> _ListTagsForResourceResponseSuccess
|
294
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListTagsForResourceResponseSuccess
|
295
|
+
|
296
|
+
interface _ResetEnabledBaselineResponseSuccess
|
297
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ResetEnabledBaselineOutput]
|
298
|
+
def operation_identifier: () -> ::String
|
299
|
+
end
|
300
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ControlTower/Client.html#reset_enabled_baseline-instance_method
|
301
|
+
def reset_enabled_baseline: (
|
302
|
+
enabled_baseline_identifier: ::String
|
303
|
+
) -> _ResetEnabledBaselineResponseSuccess
|
304
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ResetEnabledBaselineResponseSuccess
|
305
|
+
|
306
|
+
interface _ResetLandingZoneResponseSuccess
|
307
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ResetLandingZoneOutput]
|
308
|
+
def operation_identifier: () -> ::String
|
309
|
+
end
|
310
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ControlTower/Client.html#reset_landing_zone-instance_method
|
311
|
+
def reset_landing_zone: (
|
312
|
+
landing_zone_identifier: ::String
|
313
|
+
) -> _ResetLandingZoneResponseSuccess
|
314
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ResetLandingZoneResponseSuccess
|
315
|
+
|
316
|
+
interface _TagResourceResponseSuccess
|
317
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::TagResourceOutput]
|
318
|
+
end
|
319
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ControlTower/Client.html#tag_resource-instance_method
|
320
|
+
def tag_resource: (
|
321
|
+
resource_arn: ::String,
|
322
|
+
tags: Hash[::String, ::String]
|
323
|
+
) -> _TagResourceResponseSuccess
|
324
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _TagResourceResponseSuccess
|
325
|
+
|
326
|
+
interface _UntagResourceResponseSuccess
|
327
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UntagResourceOutput]
|
328
|
+
end
|
329
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ControlTower/Client.html#untag_resource-instance_method
|
330
|
+
def untag_resource: (
|
331
|
+
resource_arn: ::String,
|
332
|
+
tag_keys: Array[::String]
|
333
|
+
) -> _UntagResourceResponseSuccess
|
334
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UntagResourceResponseSuccess
|
335
|
+
|
336
|
+
interface _UpdateEnabledBaselineResponseSuccess
|
337
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateEnabledBaselineOutput]
|
338
|
+
def operation_identifier: () -> ::String
|
339
|
+
end
|
340
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ControlTower/Client.html#update_enabled_baseline-instance_method
|
341
|
+
def update_enabled_baseline: (
|
342
|
+
baseline_version: ::String,
|
343
|
+
enabled_baseline_identifier: ::String,
|
344
|
+
?parameters: Array[
|
345
|
+
{
|
346
|
+
key: ::String,
|
347
|
+
value: {
|
348
|
+
}
|
349
|
+
},
|
350
|
+
]
|
351
|
+
) -> _UpdateEnabledBaselineResponseSuccess
|
352
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateEnabledBaselineResponseSuccess
|
353
|
+
|
354
|
+
interface _UpdateEnabledControlResponseSuccess
|
355
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateEnabledControlOutput]
|
356
|
+
def operation_identifier: () -> ::String
|
357
|
+
end
|
358
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ControlTower/Client.html#update_enabled_control-instance_method
|
359
|
+
def update_enabled_control: (
|
360
|
+
enabled_control_identifier: ::String,
|
361
|
+
parameters: Array[
|
362
|
+
{
|
363
|
+
key: ::String,
|
364
|
+
value: {
|
365
|
+
}
|
366
|
+
},
|
367
|
+
]
|
368
|
+
) -> _UpdateEnabledControlResponseSuccess
|
369
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateEnabledControlResponseSuccess
|
370
|
+
|
371
|
+
interface _UpdateLandingZoneResponseSuccess
|
372
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateLandingZoneOutput]
|
373
|
+
def operation_identifier: () -> ::String
|
374
|
+
end
|
375
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ControlTower/Client.html#update_landing_zone-instance_method
|
376
|
+
def update_landing_zone: (
|
377
|
+
landing_zone_identifier: ::String,
|
378
|
+
manifest: {
|
379
|
+
},
|
380
|
+
version: ::String
|
381
|
+
) -> _UpdateLandingZoneResponseSuccess
|
382
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateLandingZoneResponseSuccess
|
383
|
+
end
|
384
|
+
end
|
385
|
+
end
|
386
|
+
|
data/sig/errors.rbs
ADDED
@@ -0,0 +1,40 @@
|
|
1
|
+
# WARNING ABOUT GENERATED CODE
|
2
|
+
#
|
3
|
+
# This file is generated. See the contributing guide for more information:
|
4
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
5
|
+
#
|
6
|
+
# WARNING ABOUT GENERATED CODE
|
7
|
+
|
8
|
+
module Aws
|
9
|
+
module ControlTower
|
10
|
+
module Errors
|
11
|
+
class ServiceError < ::Aws::Errors::ServiceError
|
12
|
+
end
|
13
|
+
|
14
|
+
class AccessDeniedException < ::Aws::Errors::ServiceError
|
15
|
+
def message: () -> ::String
|
16
|
+
end
|
17
|
+
class ConflictException < ::Aws::Errors::ServiceError
|
18
|
+
def message: () -> ::String
|
19
|
+
end
|
20
|
+
class InternalServerException < ::Aws::Errors::ServiceError
|
21
|
+
def message: () -> ::String
|
22
|
+
end
|
23
|
+
class ResourceNotFoundException < ::Aws::Errors::ServiceError
|
24
|
+
def message: () -> ::String
|
25
|
+
end
|
26
|
+
class ServiceQuotaExceededException < ::Aws::Errors::ServiceError
|
27
|
+
def message: () -> ::String
|
28
|
+
end
|
29
|
+
class ThrottlingException < ::Aws::Errors::ServiceError
|
30
|
+
def message: () -> ::String
|
31
|
+
def quota_code: () -> ::String
|
32
|
+
def retry_after_seconds: () -> ::String
|
33
|
+
def service_code: () -> ::String
|
34
|
+
end
|
35
|
+
class ValidationException < ::Aws::Errors::ServiceError
|
36
|
+
def message: () -> ::String
|
37
|
+
end
|
38
|
+
end
|
39
|
+
end
|
40
|
+
end
|
data/sig/resource.rbs
ADDED
@@ -0,0 +1,79 @@
|
|
1
|
+
# WARNING ABOUT GENERATED CODE
|
2
|
+
#
|
3
|
+
# This file is generated. See the contributing guide for more information:
|
4
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
5
|
+
#
|
6
|
+
# WARNING ABOUT GENERATED CODE
|
7
|
+
|
8
|
+
module Aws
|
9
|
+
module ControlTower
|
10
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ControlTower/Resource.html
|
11
|
+
class Resource
|
12
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ControlTower/Resource.html#initialize-instance_method
|
13
|
+
def initialize: (
|
14
|
+
?client: Client,
|
15
|
+
?credentials: untyped,
|
16
|
+
?region: String,
|
17
|
+
?access_key_id: String,
|
18
|
+
?active_endpoint_cache: bool,
|
19
|
+
?adaptive_retry_wait_to_fill: bool,
|
20
|
+
?client_side_monitoring: bool,
|
21
|
+
?client_side_monitoring_client_id: String,
|
22
|
+
?client_side_monitoring_host: String,
|
23
|
+
?client_side_monitoring_port: Integer,
|
24
|
+
?client_side_monitoring_publisher: untyped,
|
25
|
+
?convert_params: bool,
|
26
|
+
?correct_clock_skew: bool,
|
27
|
+
?defaults_mode: String,
|
28
|
+
?disable_host_prefix_injection: bool,
|
29
|
+
?disable_request_compression: bool,
|
30
|
+
?endpoint: String,
|
31
|
+
?endpoint_cache_max_entries: Integer,
|
32
|
+
?endpoint_cache_max_threads: Integer,
|
33
|
+
?endpoint_cache_poll_interval: Integer,
|
34
|
+
?endpoint_discovery: bool,
|
35
|
+
?ignore_configured_endpoint_urls: bool,
|
36
|
+
?log_formatter: untyped,
|
37
|
+
?log_level: Symbol,
|
38
|
+
?logger: untyped,
|
39
|
+
?max_attempts: Integer,
|
40
|
+
?profile: String,
|
41
|
+
?request_min_compression_size_bytes: Integer,
|
42
|
+
?retry_backoff: Proc,
|
43
|
+
?retry_base_delay: Float,
|
44
|
+
?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
|
45
|
+
?retry_limit: Integer,
|
46
|
+
?retry_max_delay: Integer,
|
47
|
+
?retry_mode: ("legacy" | "standard" | "adaptive"),
|
48
|
+
?sdk_ua_app_id: String,
|
49
|
+
?secret_access_key: String,
|
50
|
+
?session_token: String,
|
51
|
+
?stub_responses: untyped,
|
52
|
+
?token_provider: untyped,
|
53
|
+
?use_dualstack_endpoint: bool,
|
54
|
+
?use_fips_endpoint: bool,
|
55
|
+
?validate_params: bool,
|
56
|
+
?endpoint_provider: untyped,
|
57
|
+
?http_proxy: String,
|
58
|
+
?http_open_timeout: (Float | Integer),
|
59
|
+
?http_read_timeout: (Float | Integer),
|
60
|
+
?http_idle_timeout: (Float | Integer),
|
61
|
+
?http_continue_timeout: (Float | Integer),
|
62
|
+
?ssl_timeout: (Float | Integer | nil),
|
63
|
+
?http_wire_trace: bool,
|
64
|
+
?ssl_verify_peer: bool,
|
65
|
+
?ssl_ca_bundle: String,
|
66
|
+
?ssl_ca_directory: String,
|
67
|
+
?ssl_ca_store: String,
|
68
|
+
?on_chunk_received: Proc,
|
69
|
+
?on_chunk_sent: Proc,
|
70
|
+
?raise_response_errors: bool
|
71
|
+
) -> void
|
72
|
+
| (?Hash[Symbol, untyped]) -> void
|
73
|
+
|
74
|
+
def client: () -> Client
|
75
|
+
|
76
|
+
|
77
|
+
end
|
78
|
+
end
|
79
|
+
end
|