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/types.rbs
ADDED
@@ -0,0 +1,467 @@
|
|
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::ControlTower
|
9
|
+
module Types
|
10
|
+
|
11
|
+
class AccessDeniedException
|
12
|
+
attr_accessor message: ::String
|
13
|
+
SENSITIVE: []
|
14
|
+
end
|
15
|
+
|
16
|
+
class BaselineOperation
|
17
|
+
attr_accessor end_time: ::Time
|
18
|
+
attr_accessor operation_identifier: ::String
|
19
|
+
attr_accessor operation_type: ("ENABLE_BASELINE" | "DISABLE_BASELINE" | "UPDATE_ENABLED_BASELINE" | "RESET_ENABLED_BASELINE")
|
20
|
+
attr_accessor start_time: ::Time
|
21
|
+
attr_accessor status: ("SUCCEEDED" | "FAILED" | "IN_PROGRESS")
|
22
|
+
attr_accessor status_message: ::String
|
23
|
+
SENSITIVE: []
|
24
|
+
end
|
25
|
+
|
26
|
+
class BaselineSummary
|
27
|
+
attr_accessor arn: ::String
|
28
|
+
attr_accessor description: ::String
|
29
|
+
attr_accessor name: ::String
|
30
|
+
SENSITIVE: []
|
31
|
+
end
|
32
|
+
|
33
|
+
class ConflictException
|
34
|
+
attr_accessor message: ::String
|
35
|
+
SENSITIVE: []
|
36
|
+
end
|
37
|
+
|
38
|
+
class ControlOperation
|
39
|
+
attr_accessor end_time: ::Time
|
40
|
+
attr_accessor operation_type: ("ENABLE_CONTROL" | "DISABLE_CONTROL" | "UPDATE_ENABLED_CONTROL")
|
41
|
+
attr_accessor start_time: ::Time
|
42
|
+
attr_accessor status: ("SUCCEEDED" | "FAILED" | "IN_PROGRESS")
|
43
|
+
attr_accessor status_message: ::String
|
44
|
+
SENSITIVE: []
|
45
|
+
end
|
46
|
+
|
47
|
+
class CreateLandingZoneInput
|
48
|
+
attr_accessor manifest: untyped
|
49
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
50
|
+
attr_accessor version: ::String
|
51
|
+
SENSITIVE: []
|
52
|
+
end
|
53
|
+
|
54
|
+
class CreateLandingZoneOutput
|
55
|
+
attr_accessor arn: ::String
|
56
|
+
attr_accessor operation_identifier: ::String
|
57
|
+
SENSITIVE: []
|
58
|
+
end
|
59
|
+
|
60
|
+
class DeleteLandingZoneInput
|
61
|
+
attr_accessor landing_zone_identifier: ::String
|
62
|
+
SENSITIVE: []
|
63
|
+
end
|
64
|
+
|
65
|
+
class DeleteLandingZoneOutput
|
66
|
+
attr_accessor operation_identifier: ::String
|
67
|
+
SENSITIVE: []
|
68
|
+
end
|
69
|
+
|
70
|
+
class DisableBaselineInput
|
71
|
+
attr_accessor enabled_baseline_identifier: ::String
|
72
|
+
SENSITIVE: []
|
73
|
+
end
|
74
|
+
|
75
|
+
class DisableBaselineOutput
|
76
|
+
attr_accessor operation_identifier: ::String
|
77
|
+
SENSITIVE: []
|
78
|
+
end
|
79
|
+
|
80
|
+
class DisableControlInput
|
81
|
+
attr_accessor control_identifier: ::String
|
82
|
+
attr_accessor target_identifier: ::String
|
83
|
+
SENSITIVE: []
|
84
|
+
end
|
85
|
+
|
86
|
+
class DisableControlOutput
|
87
|
+
attr_accessor operation_identifier: ::String
|
88
|
+
SENSITIVE: []
|
89
|
+
end
|
90
|
+
|
91
|
+
class DriftStatusSummary
|
92
|
+
attr_accessor drift_status: ("DRIFTED" | "IN_SYNC" | "NOT_CHECKING" | "UNKNOWN")
|
93
|
+
SENSITIVE: []
|
94
|
+
end
|
95
|
+
|
96
|
+
class EnableBaselineInput
|
97
|
+
attr_accessor baseline_identifier: ::String
|
98
|
+
attr_accessor baseline_version: ::String
|
99
|
+
attr_accessor parameters: ::Array[Types::EnabledBaselineParameter]
|
100
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
101
|
+
attr_accessor target_identifier: ::String
|
102
|
+
SENSITIVE: []
|
103
|
+
end
|
104
|
+
|
105
|
+
class EnableBaselineOutput
|
106
|
+
attr_accessor arn: ::String
|
107
|
+
attr_accessor operation_identifier: ::String
|
108
|
+
SENSITIVE: []
|
109
|
+
end
|
110
|
+
|
111
|
+
class EnableControlInput
|
112
|
+
attr_accessor control_identifier: ::String
|
113
|
+
attr_accessor parameters: ::Array[Types::EnabledControlParameter]
|
114
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
115
|
+
attr_accessor target_identifier: ::String
|
116
|
+
SENSITIVE: []
|
117
|
+
end
|
118
|
+
|
119
|
+
class EnableControlOutput
|
120
|
+
attr_accessor arn: ::String
|
121
|
+
attr_accessor operation_identifier: ::String
|
122
|
+
SENSITIVE: []
|
123
|
+
end
|
124
|
+
|
125
|
+
class EnabledBaselineDetails
|
126
|
+
attr_accessor arn: ::String
|
127
|
+
attr_accessor baseline_identifier: ::String
|
128
|
+
attr_accessor baseline_version: ::String
|
129
|
+
attr_accessor parameters: ::Array[Types::EnabledBaselineParameterSummary]
|
130
|
+
attr_accessor status_summary: Types::EnablementStatusSummary
|
131
|
+
attr_accessor target_identifier: ::String
|
132
|
+
SENSITIVE: []
|
133
|
+
end
|
134
|
+
|
135
|
+
class EnabledBaselineFilter
|
136
|
+
attr_accessor baseline_identifiers: ::Array[::String]
|
137
|
+
attr_accessor target_identifiers: ::Array[::String]
|
138
|
+
SENSITIVE: []
|
139
|
+
end
|
140
|
+
|
141
|
+
class EnabledBaselineParameter
|
142
|
+
attr_accessor key: ::String
|
143
|
+
attr_accessor value: untyped
|
144
|
+
SENSITIVE: []
|
145
|
+
end
|
146
|
+
|
147
|
+
class EnabledBaselineParameterSummary
|
148
|
+
attr_accessor key: ::String
|
149
|
+
attr_accessor value: untyped
|
150
|
+
SENSITIVE: []
|
151
|
+
end
|
152
|
+
|
153
|
+
class EnabledBaselineSummary
|
154
|
+
attr_accessor arn: ::String
|
155
|
+
attr_accessor baseline_identifier: ::String
|
156
|
+
attr_accessor baseline_version: ::String
|
157
|
+
attr_accessor status_summary: Types::EnablementStatusSummary
|
158
|
+
attr_accessor target_identifier: ::String
|
159
|
+
SENSITIVE: []
|
160
|
+
end
|
161
|
+
|
162
|
+
class EnabledControlDetails
|
163
|
+
attr_accessor arn: ::String
|
164
|
+
attr_accessor control_identifier: ::String
|
165
|
+
attr_accessor drift_status_summary: Types::DriftStatusSummary
|
166
|
+
attr_accessor parameters: ::Array[Types::EnabledControlParameterSummary]
|
167
|
+
attr_accessor status_summary: Types::EnablementStatusSummary
|
168
|
+
attr_accessor target_identifier: ::String
|
169
|
+
attr_accessor target_regions: ::Array[Types::Region]
|
170
|
+
SENSITIVE: []
|
171
|
+
end
|
172
|
+
|
173
|
+
class EnabledControlParameter
|
174
|
+
attr_accessor key: ::String
|
175
|
+
attr_accessor value: untyped
|
176
|
+
SENSITIVE: []
|
177
|
+
end
|
178
|
+
|
179
|
+
class EnabledControlParameterSummary
|
180
|
+
attr_accessor key: ::String
|
181
|
+
attr_accessor value: untyped
|
182
|
+
SENSITIVE: []
|
183
|
+
end
|
184
|
+
|
185
|
+
class EnabledControlSummary
|
186
|
+
attr_accessor arn: ::String
|
187
|
+
attr_accessor control_identifier: ::String
|
188
|
+
attr_accessor drift_status_summary: Types::DriftStatusSummary
|
189
|
+
attr_accessor status_summary: Types::EnablementStatusSummary
|
190
|
+
attr_accessor target_identifier: ::String
|
191
|
+
SENSITIVE: []
|
192
|
+
end
|
193
|
+
|
194
|
+
class EnablementStatusSummary
|
195
|
+
attr_accessor last_operation_identifier: ::String
|
196
|
+
attr_accessor status: ("SUCCEEDED" | "FAILED" | "UNDER_CHANGE")
|
197
|
+
SENSITIVE: []
|
198
|
+
end
|
199
|
+
|
200
|
+
class GetBaselineInput
|
201
|
+
attr_accessor baseline_identifier: ::String
|
202
|
+
SENSITIVE: []
|
203
|
+
end
|
204
|
+
|
205
|
+
class GetBaselineOperationInput
|
206
|
+
attr_accessor operation_identifier: ::String
|
207
|
+
SENSITIVE: []
|
208
|
+
end
|
209
|
+
|
210
|
+
class GetBaselineOperationOutput
|
211
|
+
attr_accessor baseline_operation: Types::BaselineOperation
|
212
|
+
SENSITIVE: []
|
213
|
+
end
|
214
|
+
|
215
|
+
class GetBaselineOutput
|
216
|
+
attr_accessor arn: ::String
|
217
|
+
attr_accessor description: ::String
|
218
|
+
attr_accessor name: ::String
|
219
|
+
SENSITIVE: []
|
220
|
+
end
|
221
|
+
|
222
|
+
class GetControlOperationInput
|
223
|
+
attr_accessor operation_identifier: ::String
|
224
|
+
SENSITIVE: []
|
225
|
+
end
|
226
|
+
|
227
|
+
class GetControlOperationOutput
|
228
|
+
attr_accessor control_operation: Types::ControlOperation
|
229
|
+
SENSITIVE: []
|
230
|
+
end
|
231
|
+
|
232
|
+
class GetEnabledBaselineInput
|
233
|
+
attr_accessor enabled_baseline_identifier: ::String
|
234
|
+
SENSITIVE: []
|
235
|
+
end
|
236
|
+
|
237
|
+
class GetEnabledBaselineOutput
|
238
|
+
attr_accessor enabled_baseline_details: Types::EnabledBaselineDetails
|
239
|
+
SENSITIVE: []
|
240
|
+
end
|
241
|
+
|
242
|
+
class GetEnabledControlInput
|
243
|
+
attr_accessor enabled_control_identifier: ::String
|
244
|
+
SENSITIVE: []
|
245
|
+
end
|
246
|
+
|
247
|
+
class GetEnabledControlOutput
|
248
|
+
attr_accessor enabled_control_details: Types::EnabledControlDetails
|
249
|
+
SENSITIVE: []
|
250
|
+
end
|
251
|
+
|
252
|
+
class GetLandingZoneInput
|
253
|
+
attr_accessor landing_zone_identifier: ::String
|
254
|
+
SENSITIVE: []
|
255
|
+
end
|
256
|
+
|
257
|
+
class GetLandingZoneOperationInput
|
258
|
+
attr_accessor operation_identifier: ::String
|
259
|
+
SENSITIVE: []
|
260
|
+
end
|
261
|
+
|
262
|
+
class GetLandingZoneOperationOutput
|
263
|
+
attr_accessor operation_details: Types::LandingZoneOperationDetail
|
264
|
+
SENSITIVE: []
|
265
|
+
end
|
266
|
+
|
267
|
+
class GetLandingZoneOutput
|
268
|
+
attr_accessor landing_zone: Types::LandingZoneDetail
|
269
|
+
SENSITIVE: []
|
270
|
+
end
|
271
|
+
|
272
|
+
class InternalServerException
|
273
|
+
attr_accessor message: ::String
|
274
|
+
SENSITIVE: []
|
275
|
+
end
|
276
|
+
|
277
|
+
class LandingZoneDetail
|
278
|
+
attr_accessor arn: ::String
|
279
|
+
attr_accessor drift_status: Types::LandingZoneDriftStatusSummary
|
280
|
+
attr_accessor latest_available_version: ::String
|
281
|
+
attr_accessor manifest: untyped
|
282
|
+
attr_accessor status: ("ACTIVE" | "PROCESSING" | "FAILED")
|
283
|
+
attr_accessor version: ::String
|
284
|
+
SENSITIVE: []
|
285
|
+
end
|
286
|
+
|
287
|
+
class LandingZoneDriftStatusSummary
|
288
|
+
attr_accessor status: ("DRIFTED" | "IN_SYNC")
|
289
|
+
SENSITIVE: []
|
290
|
+
end
|
291
|
+
|
292
|
+
class LandingZoneOperationDetail
|
293
|
+
attr_accessor end_time: ::Time
|
294
|
+
attr_accessor operation_type: ("DELETE" | "CREATE" | "UPDATE" | "RESET")
|
295
|
+
attr_accessor start_time: ::Time
|
296
|
+
attr_accessor status: ("SUCCEEDED" | "FAILED" | "IN_PROGRESS")
|
297
|
+
attr_accessor status_message: ::String
|
298
|
+
SENSITIVE: []
|
299
|
+
end
|
300
|
+
|
301
|
+
class LandingZoneSummary
|
302
|
+
attr_accessor arn: ::String
|
303
|
+
SENSITIVE: []
|
304
|
+
end
|
305
|
+
|
306
|
+
class ListBaselinesInput
|
307
|
+
attr_accessor max_results: ::Integer
|
308
|
+
attr_accessor next_token: ::String
|
309
|
+
SENSITIVE: []
|
310
|
+
end
|
311
|
+
|
312
|
+
class ListBaselinesOutput
|
313
|
+
attr_accessor baselines: ::Array[Types::BaselineSummary]
|
314
|
+
attr_accessor next_token: ::String
|
315
|
+
SENSITIVE: []
|
316
|
+
end
|
317
|
+
|
318
|
+
class ListEnabledBaselinesInput
|
319
|
+
attr_accessor filter: Types::EnabledBaselineFilter
|
320
|
+
attr_accessor max_results: ::Integer
|
321
|
+
attr_accessor next_token: ::String
|
322
|
+
SENSITIVE: []
|
323
|
+
end
|
324
|
+
|
325
|
+
class ListEnabledBaselinesOutput
|
326
|
+
attr_accessor enabled_baselines: ::Array[Types::EnabledBaselineSummary]
|
327
|
+
attr_accessor next_token: ::String
|
328
|
+
SENSITIVE: []
|
329
|
+
end
|
330
|
+
|
331
|
+
class ListEnabledControlsInput
|
332
|
+
attr_accessor max_results: ::Integer
|
333
|
+
attr_accessor next_token: ::String
|
334
|
+
attr_accessor target_identifier: ::String
|
335
|
+
SENSITIVE: []
|
336
|
+
end
|
337
|
+
|
338
|
+
class ListEnabledControlsOutput
|
339
|
+
attr_accessor enabled_controls: ::Array[Types::EnabledControlSummary]
|
340
|
+
attr_accessor next_token: ::String
|
341
|
+
SENSITIVE: []
|
342
|
+
end
|
343
|
+
|
344
|
+
class ListLandingZonesInput
|
345
|
+
attr_accessor max_results: ::Integer
|
346
|
+
attr_accessor next_token: ::String
|
347
|
+
SENSITIVE: []
|
348
|
+
end
|
349
|
+
|
350
|
+
class ListLandingZonesOutput
|
351
|
+
attr_accessor landing_zones: ::Array[Types::LandingZoneSummary]
|
352
|
+
attr_accessor next_token: ::String
|
353
|
+
SENSITIVE: []
|
354
|
+
end
|
355
|
+
|
356
|
+
class ListTagsForResourceInput
|
357
|
+
attr_accessor resource_arn: ::String
|
358
|
+
SENSITIVE: []
|
359
|
+
end
|
360
|
+
|
361
|
+
class ListTagsForResourceOutput
|
362
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
363
|
+
SENSITIVE: []
|
364
|
+
end
|
365
|
+
|
366
|
+
class Region
|
367
|
+
attr_accessor name: ::String
|
368
|
+
SENSITIVE: []
|
369
|
+
end
|
370
|
+
|
371
|
+
class ResetEnabledBaselineInput
|
372
|
+
attr_accessor enabled_baseline_identifier: ::String
|
373
|
+
SENSITIVE: []
|
374
|
+
end
|
375
|
+
|
376
|
+
class ResetEnabledBaselineOutput
|
377
|
+
attr_accessor operation_identifier: ::String
|
378
|
+
SENSITIVE: []
|
379
|
+
end
|
380
|
+
|
381
|
+
class ResetLandingZoneInput
|
382
|
+
attr_accessor landing_zone_identifier: ::String
|
383
|
+
SENSITIVE: []
|
384
|
+
end
|
385
|
+
|
386
|
+
class ResetLandingZoneOutput
|
387
|
+
attr_accessor operation_identifier: ::String
|
388
|
+
SENSITIVE: []
|
389
|
+
end
|
390
|
+
|
391
|
+
class ResourceNotFoundException
|
392
|
+
attr_accessor message: ::String
|
393
|
+
SENSITIVE: []
|
394
|
+
end
|
395
|
+
|
396
|
+
class ServiceQuotaExceededException
|
397
|
+
attr_accessor message: ::String
|
398
|
+
SENSITIVE: []
|
399
|
+
end
|
400
|
+
|
401
|
+
class TagResourceInput
|
402
|
+
attr_accessor resource_arn: ::String
|
403
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
404
|
+
SENSITIVE: []
|
405
|
+
end
|
406
|
+
|
407
|
+
class TagResourceOutput < Aws::EmptyStructure
|
408
|
+
end
|
409
|
+
|
410
|
+
class ThrottlingException
|
411
|
+
attr_accessor message: ::String
|
412
|
+
attr_accessor quota_code: ::String
|
413
|
+
attr_accessor retry_after_seconds: ::Integer
|
414
|
+
attr_accessor service_code: ::String
|
415
|
+
SENSITIVE: []
|
416
|
+
end
|
417
|
+
|
418
|
+
class UntagResourceInput
|
419
|
+
attr_accessor resource_arn: ::String
|
420
|
+
attr_accessor tag_keys: ::Array[::String]
|
421
|
+
SENSITIVE: []
|
422
|
+
end
|
423
|
+
|
424
|
+
class UntagResourceOutput < Aws::EmptyStructure
|
425
|
+
end
|
426
|
+
|
427
|
+
class UpdateEnabledBaselineInput
|
428
|
+
attr_accessor baseline_version: ::String
|
429
|
+
attr_accessor enabled_baseline_identifier: ::String
|
430
|
+
attr_accessor parameters: ::Array[Types::EnabledBaselineParameter]
|
431
|
+
SENSITIVE: []
|
432
|
+
end
|
433
|
+
|
434
|
+
class UpdateEnabledBaselineOutput
|
435
|
+
attr_accessor operation_identifier: ::String
|
436
|
+
SENSITIVE: []
|
437
|
+
end
|
438
|
+
|
439
|
+
class UpdateEnabledControlInput
|
440
|
+
attr_accessor enabled_control_identifier: ::String
|
441
|
+
attr_accessor parameters: ::Array[Types::EnabledControlParameter]
|
442
|
+
SENSITIVE: []
|
443
|
+
end
|
444
|
+
|
445
|
+
class UpdateEnabledControlOutput
|
446
|
+
attr_accessor operation_identifier: ::String
|
447
|
+
SENSITIVE: []
|
448
|
+
end
|
449
|
+
|
450
|
+
class UpdateLandingZoneInput
|
451
|
+
attr_accessor landing_zone_identifier: ::String
|
452
|
+
attr_accessor manifest: untyped
|
453
|
+
attr_accessor version: ::String
|
454
|
+
SENSITIVE: []
|
455
|
+
end
|
456
|
+
|
457
|
+
class UpdateLandingZoneOutput
|
458
|
+
attr_accessor operation_identifier: ::String
|
459
|
+
SENSITIVE: []
|
460
|
+
end
|
461
|
+
|
462
|
+
class ValidationException
|
463
|
+
attr_accessor message: ::String
|
464
|
+
SENSITIVE: []
|
465
|
+
end
|
466
|
+
end
|
467
|
+
end
|
data/sig/waiters.rbs
ADDED
@@ -0,0 +1,13 @@
|
|
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 Waiters
|
11
|
+
end
|
12
|
+
end
|
13
|
+
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-controltower
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.18.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
|
-
autorequire:
|
8
|
+
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2024-02-14 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|
@@ -19,7 +19,7 @@ dependencies:
|
|
19
19
|
version: '3'
|
20
20
|
- - ">="
|
21
21
|
- !ruby/object:Gem::Version
|
22
|
-
version: 3.
|
22
|
+
version: 3.191.0
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -29,7 +29,7 @@ dependencies:
|
|
29
29
|
version: '3'
|
30
30
|
- - ">="
|
31
31
|
- !ruby/object:Gem::Version
|
32
|
-
version: 3.
|
32
|
+
version: 3.191.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|
@@ -66,13 +66,18 @@ files:
|
|
66
66
|
- lib/aws-sdk-controltower/plugins/endpoints.rb
|
67
67
|
- lib/aws-sdk-controltower/resource.rb
|
68
68
|
- lib/aws-sdk-controltower/types.rb
|
69
|
+
- sig/client.rbs
|
70
|
+
- sig/errors.rbs
|
71
|
+
- sig/resource.rbs
|
72
|
+
- sig/types.rbs
|
73
|
+
- sig/waiters.rbs
|
69
74
|
homepage: https://github.com/aws/aws-sdk-ruby
|
70
75
|
licenses:
|
71
76
|
- Apache-2.0
|
72
77
|
metadata:
|
73
78
|
source_code_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-controltower
|
74
79
|
changelog_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-controltower/CHANGELOG.md
|
75
|
-
post_install_message:
|
80
|
+
post_install_message:
|
76
81
|
rdoc_options: []
|
77
82
|
require_paths:
|
78
83
|
- lib
|
@@ -87,8 +92,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
87
92
|
- !ruby/object:Gem::Version
|
88
93
|
version: '0'
|
89
94
|
requirements: []
|
90
|
-
rubygems_version: 3.
|
91
|
-
signing_key:
|
95
|
+
rubygems_version: 3.4.10
|
96
|
+
signing_key:
|
92
97
|
specification_version: 4
|
93
98
|
summary: AWS SDK for Ruby - AWS Control Tower
|
94
99
|
test_files: []
|