aws-sdk-autoscaling 1.102.0 → 1.104.0

Sign up to get free protection for your applications and to get access to all the features.
data/sig/client.rbs ADDED
@@ -0,0 +1,1374 @@
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 AutoScaling
10
+ class Client < ::Seahorse::Client::Base
11
+ include ::Aws::ClientStubs
12
+
13
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AutoScaling/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
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AutoScaling/Client.html#attach_instances-instance_method
76
+ def attach_instances: (
77
+ ?instance_ids: Array[::String],
78
+ auto_scaling_group_name: ::String
79
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
80
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
81
+
82
+ interface _AttachLoadBalancerTargetGroupsResponseSuccess
83
+ include ::Seahorse::Client::_ResponseSuccess[Types::AttachLoadBalancerTargetGroupsResultType]
84
+ end
85
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AutoScaling/Client.html#attach_load_balancer_target_groups-instance_method
86
+ def attach_load_balancer_target_groups: (
87
+ auto_scaling_group_name: ::String,
88
+ target_group_arns: Array[::String]
89
+ ) -> _AttachLoadBalancerTargetGroupsResponseSuccess
90
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _AttachLoadBalancerTargetGroupsResponseSuccess
91
+
92
+ interface _AttachLoadBalancersResponseSuccess
93
+ include ::Seahorse::Client::_ResponseSuccess[Types::AttachLoadBalancersResultType]
94
+ end
95
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AutoScaling/Client.html#attach_load_balancers-instance_method
96
+ def attach_load_balancers: (
97
+ auto_scaling_group_name: ::String,
98
+ load_balancer_names: Array[::String]
99
+ ) -> _AttachLoadBalancersResponseSuccess
100
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _AttachLoadBalancersResponseSuccess
101
+
102
+ interface _AttachTrafficSourcesResponseSuccess
103
+ include ::Seahorse::Client::_ResponseSuccess[Types::AttachTrafficSourcesResultType]
104
+ end
105
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AutoScaling/Client.html#attach_traffic_sources-instance_method
106
+ def attach_traffic_sources: (
107
+ auto_scaling_group_name: ::String,
108
+ traffic_sources: Array[
109
+ {
110
+ identifier: ::String,
111
+ type: ::String?
112
+ },
113
+ ]
114
+ ) -> _AttachTrafficSourcesResponseSuccess
115
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _AttachTrafficSourcesResponseSuccess
116
+
117
+ interface _BatchDeleteScheduledActionResponseSuccess
118
+ include ::Seahorse::Client::_ResponseSuccess[Types::BatchDeleteScheduledActionAnswer]
119
+ def failed_scheduled_actions: () -> ::Array[Types::FailedScheduledUpdateGroupActionRequest]
120
+ end
121
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AutoScaling/Client.html#batch_delete_scheduled_action-instance_method
122
+ def batch_delete_scheduled_action: (
123
+ auto_scaling_group_name: ::String,
124
+ scheduled_action_names: Array[::String]
125
+ ) -> _BatchDeleteScheduledActionResponseSuccess
126
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _BatchDeleteScheduledActionResponseSuccess
127
+
128
+ interface _BatchPutScheduledUpdateGroupActionResponseSuccess
129
+ include ::Seahorse::Client::_ResponseSuccess[Types::BatchPutScheduledUpdateGroupActionAnswer]
130
+ def failed_scheduled_update_group_actions: () -> ::Array[Types::FailedScheduledUpdateGroupActionRequest]
131
+ end
132
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AutoScaling/Client.html#batch_put_scheduled_update_group_action-instance_method
133
+ def batch_put_scheduled_update_group_action: (
134
+ auto_scaling_group_name: ::String,
135
+ scheduled_update_group_actions: Array[
136
+ {
137
+ scheduled_action_name: ::String,
138
+ start_time: ::Time?,
139
+ end_time: ::Time?,
140
+ recurrence: ::String?,
141
+ min_size: ::Integer?,
142
+ max_size: ::Integer?,
143
+ desired_capacity: ::Integer?,
144
+ time_zone: ::String?
145
+ },
146
+ ]
147
+ ) -> _BatchPutScheduledUpdateGroupActionResponseSuccess
148
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _BatchPutScheduledUpdateGroupActionResponseSuccess
149
+
150
+ interface _CancelInstanceRefreshResponseSuccess
151
+ include ::Seahorse::Client::_ResponseSuccess[Types::CancelInstanceRefreshAnswer]
152
+ def instance_refresh_id: () -> ::String
153
+ end
154
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AutoScaling/Client.html#cancel_instance_refresh-instance_method
155
+ def cancel_instance_refresh: (
156
+ auto_scaling_group_name: ::String
157
+ ) -> _CancelInstanceRefreshResponseSuccess
158
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CancelInstanceRefreshResponseSuccess
159
+
160
+ interface _CompleteLifecycleActionResponseSuccess
161
+ include ::Seahorse::Client::_ResponseSuccess[Types::CompleteLifecycleActionAnswer]
162
+ end
163
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AutoScaling/Client.html#complete_lifecycle_action-instance_method
164
+ def complete_lifecycle_action: (
165
+ lifecycle_hook_name: ::String,
166
+ auto_scaling_group_name: ::String,
167
+ ?lifecycle_action_token: ::String,
168
+ lifecycle_action_result: ::String,
169
+ ?instance_id: ::String
170
+ ) -> _CompleteLifecycleActionResponseSuccess
171
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CompleteLifecycleActionResponseSuccess
172
+
173
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AutoScaling/Client.html#create_auto_scaling_group-instance_method
174
+ def create_auto_scaling_group: (
175
+ auto_scaling_group_name: ::String,
176
+ ?launch_configuration_name: ::String,
177
+ ?launch_template: {
178
+ launch_template_id: ::String?,
179
+ launch_template_name: ::String?,
180
+ version: ::String?
181
+ },
182
+ ?mixed_instances_policy: {
183
+ launch_template: {
184
+ launch_template_specification: {
185
+ launch_template_id: ::String?,
186
+ launch_template_name: ::String?,
187
+ version: ::String?
188
+ }?,
189
+ overrides: Array[
190
+ {
191
+ instance_type: ::String?,
192
+ weighted_capacity: ::String?,
193
+ launch_template_specification: {
194
+ launch_template_id: ::String?,
195
+ launch_template_name: ::String?,
196
+ version: ::String?
197
+ }?,
198
+ instance_requirements: {
199
+ v_cpu_count: {
200
+ min: ::Integer,
201
+ max: ::Integer?
202
+ },
203
+ memory_mi_b: {
204
+ min: ::Integer,
205
+ max: ::Integer?
206
+ },
207
+ cpu_manufacturers: Array[("intel" | "amd" | "amazon-web-services")]?,
208
+ memory_gi_b_per_v_cpu: {
209
+ min: ::Float?,
210
+ max: ::Float?
211
+ }?,
212
+ excluded_instance_types: Array[::String]?,
213
+ instance_generations: Array[("current" | "previous")]?,
214
+ spot_max_price_percentage_over_lowest_price: ::Integer?,
215
+ max_spot_price_as_percentage_of_optimal_on_demand_price: ::Integer?,
216
+ on_demand_max_price_percentage_over_lowest_price: ::Integer?,
217
+ bare_metal: ("included" | "excluded" | "required")?,
218
+ burstable_performance: ("included" | "excluded" | "required")?,
219
+ require_hibernate_support: bool?,
220
+ network_interface_count: {
221
+ min: ::Integer?,
222
+ max: ::Integer?
223
+ }?,
224
+ local_storage: ("included" | "excluded" | "required")?,
225
+ local_storage_types: Array[("hdd" | "ssd")]?,
226
+ total_local_storage_gb: {
227
+ min: ::Float?,
228
+ max: ::Float?
229
+ }?,
230
+ baseline_ebs_bandwidth_mbps: {
231
+ min: ::Integer?,
232
+ max: ::Integer?
233
+ }?,
234
+ accelerator_types: Array[("gpu" | "fpga" | "inference")]?,
235
+ accelerator_count: {
236
+ min: ::Integer?,
237
+ max: ::Integer?
238
+ }?,
239
+ accelerator_manufacturers: Array[("nvidia" | "amd" | "amazon-web-services" | "xilinx")]?,
240
+ accelerator_names: Array[("a100" | "v100" | "k80" | "t4" | "m60" | "radeon-pro-v520" | "vu9p")]?,
241
+ accelerator_total_memory_mi_b: {
242
+ min: ::Integer?,
243
+ max: ::Integer?
244
+ }?,
245
+ network_bandwidth_gbps: {
246
+ min: ::Float?,
247
+ max: ::Float?
248
+ }?,
249
+ allowed_instance_types: Array[::String]?
250
+ }?
251
+ },
252
+ ]?
253
+ }?,
254
+ instances_distribution: {
255
+ on_demand_allocation_strategy: ::String?,
256
+ on_demand_base_capacity: ::Integer?,
257
+ on_demand_percentage_above_base_capacity: ::Integer?,
258
+ spot_allocation_strategy: ::String?,
259
+ spot_instance_pools: ::Integer?,
260
+ spot_max_price: ::String?
261
+ }?
262
+ },
263
+ ?instance_id: ::String,
264
+ min_size: ::Integer,
265
+ max_size: ::Integer,
266
+ ?desired_capacity: ::Integer,
267
+ ?default_cooldown: ::Integer,
268
+ ?availability_zones: Array[::String],
269
+ ?load_balancer_names: Array[::String],
270
+ ?target_group_arns: Array[::String],
271
+ ?health_check_type: ::String,
272
+ ?health_check_grace_period: ::Integer,
273
+ ?placement_group: ::String,
274
+ ?vpc_zone_identifier: ::String,
275
+ ?termination_policies: Array[::String],
276
+ ?new_instances_protected_from_scale_in: bool,
277
+ ?capacity_rebalance: bool,
278
+ ?lifecycle_hook_specification_list: Array[
279
+ {
280
+ lifecycle_hook_name: ::String,
281
+ lifecycle_transition: ::String,
282
+ notification_metadata: ::String?,
283
+ heartbeat_timeout: ::Integer?,
284
+ default_result: ::String?,
285
+ notification_target_arn: ::String?,
286
+ role_arn: ::String?
287
+ },
288
+ ],
289
+ ?tags: Array[
290
+ {
291
+ resource_id: ::String?,
292
+ resource_type: ::String?,
293
+ key: ::String,
294
+ value: ::String?,
295
+ propagate_at_launch: bool?
296
+ },
297
+ ],
298
+ ?service_linked_role_arn: ::String,
299
+ ?max_instance_lifetime: ::Integer,
300
+ ?context: ::String,
301
+ ?desired_capacity_type: ::String,
302
+ ?default_instance_warmup: ::Integer,
303
+ ?traffic_sources: Array[
304
+ {
305
+ identifier: ::String,
306
+ type: ::String?
307
+ },
308
+ ],
309
+ ?instance_maintenance_policy: {
310
+ min_healthy_percentage: ::Integer?,
311
+ max_healthy_percentage: ::Integer?
312
+ }
313
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
314
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
315
+
316
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AutoScaling/Client.html#create_launch_configuration-instance_method
317
+ def create_launch_configuration: (
318
+ launch_configuration_name: ::String,
319
+ ?image_id: ::String,
320
+ ?key_name: ::String,
321
+ ?security_groups: Array[::String],
322
+ ?classic_link_vpc_id: ::String,
323
+ ?classic_link_vpc_security_groups: Array[::String],
324
+ ?user_data: ::String,
325
+ ?instance_id: ::String,
326
+ ?instance_type: ::String,
327
+ ?kernel_id: ::String,
328
+ ?ramdisk_id: ::String,
329
+ ?block_device_mappings: Array[
330
+ {
331
+ virtual_name: ::String?,
332
+ device_name: ::String,
333
+ ebs: {
334
+ snapshot_id: ::String?,
335
+ volume_size: ::Integer?,
336
+ volume_type: ::String?,
337
+ delete_on_termination: bool?,
338
+ iops: ::Integer?,
339
+ encrypted: bool?,
340
+ throughput: ::Integer?
341
+ }?,
342
+ no_device: bool?
343
+ },
344
+ ],
345
+ ?instance_monitoring: {
346
+ enabled: bool?
347
+ },
348
+ ?spot_price: ::String,
349
+ ?iam_instance_profile: ::String,
350
+ ?ebs_optimized: bool,
351
+ ?associate_public_ip_address: bool,
352
+ ?placement_tenancy: ::String,
353
+ ?metadata_options: {
354
+ http_tokens: ("optional" | "required")?,
355
+ http_put_response_hop_limit: ::Integer?,
356
+ http_endpoint: ("disabled" | "enabled")?
357
+ }
358
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
359
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
360
+
361
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AutoScaling/Client.html#create_or_update_tags-instance_method
362
+ def create_or_update_tags: (
363
+ tags: Array[
364
+ {
365
+ resource_id: ::String?,
366
+ resource_type: ::String?,
367
+ key: ::String,
368
+ value: ::String?,
369
+ propagate_at_launch: bool?
370
+ },
371
+ ]
372
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
373
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
374
+
375
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AutoScaling/Client.html#delete_auto_scaling_group-instance_method
376
+ def delete_auto_scaling_group: (
377
+ auto_scaling_group_name: ::String,
378
+ ?force_delete: bool
379
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
380
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
381
+
382
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AutoScaling/Client.html#delete_launch_configuration-instance_method
383
+ def delete_launch_configuration: (
384
+ launch_configuration_name: ::String
385
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
386
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
387
+
388
+ interface _DeleteLifecycleHookResponseSuccess
389
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteLifecycleHookAnswer]
390
+ end
391
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AutoScaling/Client.html#delete_lifecycle_hook-instance_method
392
+ def delete_lifecycle_hook: (
393
+ lifecycle_hook_name: ::String,
394
+ auto_scaling_group_name: ::String
395
+ ) -> _DeleteLifecycleHookResponseSuccess
396
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteLifecycleHookResponseSuccess
397
+
398
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AutoScaling/Client.html#delete_notification_configuration-instance_method
399
+ def delete_notification_configuration: (
400
+ auto_scaling_group_name: ::String,
401
+ topic_arn: ::String
402
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
403
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
404
+
405
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AutoScaling/Client.html#delete_policy-instance_method
406
+ def delete_policy: (
407
+ ?auto_scaling_group_name: ::String,
408
+ policy_name: ::String
409
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
410
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
411
+
412
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AutoScaling/Client.html#delete_scheduled_action-instance_method
413
+ def delete_scheduled_action: (
414
+ auto_scaling_group_name: ::String,
415
+ scheduled_action_name: ::String
416
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
417
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
418
+
419
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AutoScaling/Client.html#delete_tags-instance_method
420
+ def delete_tags: (
421
+ tags: Array[
422
+ {
423
+ resource_id: ::String?,
424
+ resource_type: ::String?,
425
+ key: ::String,
426
+ value: ::String?,
427
+ propagate_at_launch: bool?
428
+ },
429
+ ]
430
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
431
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
432
+
433
+ interface _DeleteWarmPoolResponseSuccess
434
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteWarmPoolAnswer]
435
+ end
436
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AutoScaling/Client.html#delete_warm_pool-instance_method
437
+ def delete_warm_pool: (
438
+ auto_scaling_group_name: ::String,
439
+ ?force_delete: bool
440
+ ) -> _DeleteWarmPoolResponseSuccess
441
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteWarmPoolResponseSuccess
442
+
443
+ interface _DescribeAccountLimitsResponseSuccess
444
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeAccountLimitsAnswer]
445
+ def max_number_of_auto_scaling_groups: () -> ::Integer
446
+ def max_number_of_launch_configurations: () -> ::Integer
447
+ def number_of_auto_scaling_groups: () -> ::Integer
448
+ def number_of_launch_configurations: () -> ::Integer
449
+ end
450
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AutoScaling/Client.html#describe_account_limits-instance_method
451
+ def describe_account_limits: () -> _DescribeAccountLimitsResponseSuccess
452
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeAccountLimitsResponseSuccess
453
+
454
+ interface _DescribeAdjustmentTypesResponseSuccess
455
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeAdjustmentTypesAnswer]
456
+ def adjustment_types: () -> ::Array[Types::AdjustmentType]
457
+ end
458
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AutoScaling/Client.html#describe_adjustment_types-instance_method
459
+ def describe_adjustment_types: () -> _DescribeAdjustmentTypesResponseSuccess
460
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeAdjustmentTypesResponseSuccess
461
+
462
+ interface _DescribeAutoScalingGroupsResponseSuccess
463
+ include ::Seahorse::Client::_ResponseSuccess[Types::AutoScalingGroupsType]
464
+ def auto_scaling_groups: () -> ::Array[Types::AutoScalingGroup]
465
+ def next_token: () -> ::String
466
+ end
467
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AutoScaling/Client.html#describe_auto_scaling_groups-instance_method
468
+ def describe_auto_scaling_groups: (
469
+ ?auto_scaling_group_names: Array[::String],
470
+ ?next_token: ::String,
471
+ ?max_records: ::Integer,
472
+ ?filters: Array[
473
+ {
474
+ name: ::String?,
475
+ values: Array[::String]?
476
+ },
477
+ ]
478
+ ) -> _DescribeAutoScalingGroupsResponseSuccess
479
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeAutoScalingGroupsResponseSuccess
480
+
481
+ interface _DescribeAutoScalingInstancesResponseSuccess
482
+ include ::Seahorse::Client::_ResponseSuccess[Types::AutoScalingInstancesType]
483
+ def auto_scaling_instances: () -> ::Array[Types::AutoScalingInstanceDetails]
484
+ def next_token: () -> ::String
485
+ end
486
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AutoScaling/Client.html#describe_auto_scaling_instances-instance_method
487
+ def describe_auto_scaling_instances: (
488
+ ?instance_ids: Array[::String],
489
+ ?max_records: ::Integer,
490
+ ?next_token: ::String
491
+ ) -> _DescribeAutoScalingInstancesResponseSuccess
492
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeAutoScalingInstancesResponseSuccess
493
+
494
+ interface _DescribeAutoScalingNotificationTypesResponseSuccess
495
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeAutoScalingNotificationTypesAnswer]
496
+ def auto_scaling_notification_types: () -> ::Array[::String]
497
+ end
498
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AutoScaling/Client.html#describe_auto_scaling_notification_types-instance_method
499
+ def describe_auto_scaling_notification_types: () -> _DescribeAutoScalingNotificationTypesResponseSuccess
500
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeAutoScalingNotificationTypesResponseSuccess
501
+
502
+ interface _DescribeInstanceRefreshesResponseSuccess
503
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeInstanceRefreshesAnswer]
504
+ def instance_refreshes: () -> ::Array[Types::InstanceRefresh]
505
+ def next_token: () -> ::String
506
+ end
507
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AutoScaling/Client.html#describe_instance_refreshes-instance_method
508
+ def describe_instance_refreshes: (
509
+ auto_scaling_group_name: ::String,
510
+ ?instance_refresh_ids: Array[::String],
511
+ ?next_token: ::String,
512
+ ?max_records: ::Integer
513
+ ) -> _DescribeInstanceRefreshesResponseSuccess
514
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeInstanceRefreshesResponseSuccess
515
+
516
+ interface _DescribeLaunchConfigurationsResponseSuccess
517
+ include ::Seahorse::Client::_ResponseSuccess[Types::LaunchConfigurationsType]
518
+ def launch_configurations: () -> ::Array[Types::LaunchConfiguration]
519
+ def next_token: () -> ::String
520
+ end
521
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AutoScaling/Client.html#describe_launch_configurations-instance_method
522
+ def describe_launch_configurations: (
523
+ ?launch_configuration_names: Array[::String],
524
+ ?next_token: ::String,
525
+ ?max_records: ::Integer
526
+ ) -> _DescribeLaunchConfigurationsResponseSuccess
527
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeLaunchConfigurationsResponseSuccess
528
+
529
+ interface _DescribeLifecycleHookTypesResponseSuccess
530
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeLifecycleHookTypesAnswer]
531
+ def lifecycle_hook_types: () -> ::Array[::String]
532
+ end
533
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AutoScaling/Client.html#describe_lifecycle_hook_types-instance_method
534
+ def describe_lifecycle_hook_types: () -> _DescribeLifecycleHookTypesResponseSuccess
535
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeLifecycleHookTypesResponseSuccess
536
+
537
+ interface _DescribeLifecycleHooksResponseSuccess
538
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeLifecycleHooksAnswer]
539
+ def lifecycle_hooks: () -> ::Array[Types::LifecycleHook]
540
+ end
541
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AutoScaling/Client.html#describe_lifecycle_hooks-instance_method
542
+ def describe_lifecycle_hooks: (
543
+ auto_scaling_group_name: ::String,
544
+ ?lifecycle_hook_names: Array[::String]
545
+ ) -> _DescribeLifecycleHooksResponseSuccess
546
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeLifecycleHooksResponseSuccess
547
+
548
+ interface _DescribeLoadBalancerTargetGroupsResponseSuccess
549
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeLoadBalancerTargetGroupsResponse]
550
+ def load_balancer_target_groups: () -> ::Array[Types::LoadBalancerTargetGroupState]
551
+ def next_token: () -> ::String
552
+ end
553
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AutoScaling/Client.html#describe_load_balancer_target_groups-instance_method
554
+ def describe_load_balancer_target_groups: (
555
+ auto_scaling_group_name: ::String,
556
+ ?next_token: ::String,
557
+ ?max_records: ::Integer
558
+ ) -> _DescribeLoadBalancerTargetGroupsResponseSuccess
559
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeLoadBalancerTargetGroupsResponseSuccess
560
+
561
+ interface _DescribeLoadBalancersResponseSuccess
562
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeLoadBalancersResponse]
563
+ def load_balancers: () -> ::Array[Types::LoadBalancerState]
564
+ def next_token: () -> ::String
565
+ end
566
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AutoScaling/Client.html#describe_load_balancers-instance_method
567
+ def describe_load_balancers: (
568
+ auto_scaling_group_name: ::String,
569
+ ?next_token: ::String,
570
+ ?max_records: ::Integer
571
+ ) -> _DescribeLoadBalancersResponseSuccess
572
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeLoadBalancersResponseSuccess
573
+
574
+ interface _DescribeMetricCollectionTypesResponseSuccess
575
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeMetricCollectionTypesAnswer]
576
+ def metrics: () -> ::Array[Types::MetricCollectionType]
577
+ def granularities: () -> ::Array[Types::MetricGranularityType]
578
+ end
579
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AutoScaling/Client.html#describe_metric_collection_types-instance_method
580
+ def describe_metric_collection_types: () -> _DescribeMetricCollectionTypesResponseSuccess
581
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeMetricCollectionTypesResponseSuccess
582
+
583
+ interface _DescribeNotificationConfigurationsResponseSuccess
584
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeNotificationConfigurationsAnswer]
585
+ def notification_configurations: () -> ::Array[Types::NotificationConfiguration]
586
+ def next_token: () -> ::String
587
+ end
588
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AutoScaling/Client.html#describe_notification_configurations-instance_method
589
+ def describe_notification_configurations: (
590
+ ?auto_scaling_group_names: Array[::String],
591
+ ?next_token: ::String,
592
+ ?max_records: ::Integer
593
+ ) -> _DescribeNotificationConfigurationsResponseSuccess
594
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeNotificationConfigurationsResponseSuccess
595
+
596
+ interface _DescribePoliciesResponseSuccess
597
+ include ::Seahorse::Client::_ResponseSuccess[Types::PoliciesType]
598
+ def scaling_policies: () -> ::Array[Types::ScalingPolicy]
599
+ def next_token: () -> ::String
600
+ end
601
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AutoScaling/Client.html#describe_policies-instance_method
602
+ def describe_policies: (
603
+ ?auto_scaling_group_name: ::String,
604
+ ?policy_names: Array[::String],
605
+ ?policy_types: Array[::String],
606
+ ?next_token: ::String,
607
+ ?max_records: ::Integer
608
+ ) -> _DescribePoliciesResponseSuccess
609
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribePoliciesResponseSuccess
610
+
611
+ interface _DescribeScalingActivitiesResponseSuccess
612
+ include ::Seahorse::Client::_ResponseSuccess[Types::ActivitiesType]
613
+ def activities: () -> ::Array[Types::Activity]
614
+ def next_token: () -> ::String
615
+ end
616
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AutoScaling/Client.html#describe_scaling_activities-instance_method
617
+ def describe_scaling_activities: (
618
+ ?activity_ids: Array[::String],
619
+ ?auto_scaling_group_name: ::String,
620
+ ?include_deleted_groups: bool,
621
+ ?max_records: ::Integer,
622
+ ?next_token: ::String
623
+ ) -> _DescribeScalingActivitiesResponseSuccess
624
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeScalingActivitiesResponseSuccess
625
+
626
+ interface _DescribeScalingProcessTypesResponseSuccess
627
+ include ::Seahorse::Client::_ResponseSuccess[Types::ProcessesType]
628
+ def processes: () -> ::Array[Types::ProcessType]
629
+ end
630
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AutoScaling/Client.html#describe_scaling_process_types-instance_method
631
+ def describe_scaling_process_types: () -> _DescribeScalingProcessTypesResponseSuccess
632
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeScalingProcessTypesResponseSuccess
633
+
634
+ interface _DescribeScheduledActionsResponseSuccess
635
+ include ::Seahorse::Client::_ResponseSuccess[Types::ScheduledActionsType]
636
+ def scheduled_update_group_actions: () -> ::Array[Types::ScheduledUpdateGroupAction]
637
+ def next_token: () -> ::String
638
+ end
639
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AutoScaling/Client.html#describe_scheduled_actions-instance_method
640
+ def describe_scheduled_actions: (
641
+ ?auto_scaling_group_name: ::String,
642
+ ?scheduled_action_names: Array[::String],
643
+ ?start_time: ::Time,
644
+ ?end_time: ::Time,
645
+ ?next_token: ::String,
646
+ ?max_records: ::Integer
647
+ ) -> _DescribeScheduledActionsResponseSuccess
648
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeScheduledActionsResponseSuccess
649
+
650
+ interface _DescribeTagsResponseSuccess
651
+ include ::Seahorse::Client::_ResponseSuccess[Types::TagsType]
652
+ def tags: () -> ::Array[Types::TagDescription]
653
+ def next_token: () -> ::String
654
+ end
655
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AutoScaling/Client.html#describe_tags-instance_method
656
+ def describe_tags: (
657
+ ?filters: Array[
658
+ {
659
+ name: ::String?,
660
+ values: Array[::String]?
661
+ },
662
+ ],
663
+ ?next_token: ::String,
664
+ ?max_records: ::Integer
665
+ ) -> _DescribeTagsResponseSuccess
666
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeTagsResponseSuccess
667
+
668
+ interface _DescribeTerminationPolicyTypesResponseSuccess
669
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeTerminationPolicyTypesAnswer]
670
+ def termination_policy_types: () -> ::Array[::String]
671
+ end
672
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AutoScaling/Client.html#describe_termination_policy_types-instance_method
673
+ def describe_termination_policy_types: () -> _DescribeTerminationPolicyTypesResponseSuccess
674
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeTerminationPolicyTypesResponseSuccess
675
+
676
+ interface _DescribeTrafficSourcesResponseSuccess
677
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeTrafficSourcesResponse]
678
+ def traffic_sources: () -> ::Array[Types::TrafficSourceState]
679
+ def next_token: () -> ::String
680
+ end
681
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AutoScaling/Client.html#describe_traffic_sources-instance_method
682
+ def describe_traffic_sources: (
683
+ auto_scaling_group_name: ::String,
684
+ ?traffic_source_type: ::String,
685
+ ?next_token: ::String,
686
+ ?max_records: ::Integer
687
+ ) -> _DescribeTrafficSourcesResponseSuccess
688
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeTrafficSourcesResponseSuccess
689
+
690
+ interface _DescribeWarmPoolResponseSuccess
691
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeWarmPoolAnswer]
692
+ def warm_pool_configuration: () -> Types::WarmPoolConfiguration
693
+ def instances: () -> ::Array[Types::Instance]
694
+ def next_token: () -> ::String
695
+ end
696
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AutoScaling/Client.html#describe_warm_pool-instance_method
697
+ def describe_warm_pool: (
698
+ auto_scaling_group_name: ::String,
699
+ ?max_records: ::Integer,
700
+ ?next_token: ::String
701
+ ) -> _DescribeWarmPoolResponseSuccess
702
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeWarmPoolResponseSuccess
703
+
704
+ interface _DetachInstancesResponseSuccess
705
+ include ::Seahorse::Client::_ResponseSuccess[Types::DetachInstancesAnswer]
706
+ def activities: () -> ::Array[Types::Activity]
707
+ end
708
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AutoScaling/Client.html#detach_instances-instance_method
709
+ def detach_instances: (
710
+ ?instance_ids: Array[::String],
711
+ auto_scaling_group_name: ::String,
712
+ should_decrement_desired_capacity: bool
713
+ ) -> _DetachInstancesResponseSuccess
714
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DetachInstancesResponseSuccess
715
+
716
+ interface _DetachLoadBalancerTargetGroupsResponseSuccess
717
+ include ::Seahorse::Client::_ResponseSuccess[Types::DetachLoadBalancerTargetGroupsResultType]
718
+ end
719
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AutoScaling/Client.html#detach_load_balancer_target_groups-instance_method
720
+ def detach_load_balancer_target_groups: (
721
+ auto_scaling_group_name: ::String,
722
+ target_group_arns: Array[::String]
723
+ ) -> _DetachLoadBalancerTargetGroupsResponseSuccess
724
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DetachLoadBalancerTargetGroupsResponseSuccess
725
+
726
+ interface _DetachLoadBalancersResponseSuccess
727
+ include ::Seahorse::Client::_ResponseSuccess[Types::DetachLoadBalancersResultType]
728
+ end
729
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AutoScaling/Client.html#detach_load_balancers-instance_method
730
+ def detach_load_balancers: (
731
+ auto_scaling_group_name: ::String,
732
+ load_balancer_names: Array[::String]
733
+ ) -> _DetachLoadBalancersResponseSuccess
734
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DetachLoadBalancersResponseSuccess
735
+
736
+ interface _DetachTrafficSourcesResponseSuccess
737
+ include ::Seahorse::Client::_ResponseSuccess[Types::DetachTrafficSourcesResultType]
738
+ end
739
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AutoScaling/Client.html#detach_traffic_sources-instance_method
740
+ def detach_traffic_sources: (
741
+ auto_scaling_group_name: ::String,
742
+ traffic_sources: Array[
743
+ {
744
+ identifier: ::String,
745
+ type: ::String?
746
+ },
747
+ ]
748
+ ) -> _DetachTrafficSourcesResponseSuccess
749
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DetachTrafficSourcesResponseSuccess
750
+
751
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AutoScaling/Client.html#disable_metrics_collection-instance_method
752
+ def disable_metrics_collection: (
753
+ auto_scaling_group_name: ::String,
754
+ ?metrics: Array[::String]
755
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
756
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
757
+
758
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AutoScaling/Client.html#enable_metrics_collection-instance_method
759
+ def enable_metrics_collection: (
760
+ auto_scaling_group_name: ::String,
761
+ ?metrics: Array[::String],
762
+ granularity: ::String
763
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
764
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
765
+
766
+ interface _EnterStandbyResponseSuccess
767
+ include ::Seahorse::Client::_ResponseSuccess[Types::EnterStandbyAnswer]
768
+ def activities: () -> ::Array[Types::Activity]
769
+ end
770
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AutoScaling/Client.html#enter_standby-instance_method
771
+ def enter_standby: (
772
+ ?instance_ids: Array[::String],
773
+ auto_scaling_group_name: ::String,
774
+ should_decrement_desired_capacity: bool
775
+ ) -> _EnterStandbyResponseSuccess
776
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _EnterStandbyResponseSuccess
777
+
778
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AutoScaling/Client.html#execute_policy-instance_method
779
+ def execute_policy: (
780
+ ?auto_scaling_group_name: ::String,
781
+ policy_name: ::String,
782
+ ?honor_cooldown: bool,
783
+ ?metric_value: ::Float,
784
+ ?breach_threshold: ::Float
785
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
786
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
787
+
788
+ interface _ExitStandbyResponseSuccess
789
+ include ::Seahorse::Client::_ResponseSuccess[Types::ExitStandbyAnswer]
790
+ def activities: () -> ::Array[Types::Activity]
791
+ end
792
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AutoScaling/Client.html#exit_standby-instance_method
793
+ def exit_standby: (
794
+ ?instance_ids: Array[::String],
795
+ auto_scaling_group_name: ::String
796
+ ) -> _ExitStandbyResponseSuccess
797
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ExitStandbyResponseSuccess
798
+
799
+ interface _GetPredictiveScalingForecastResponseSuccess
800
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetPredictiveScalingForecastAnswer]
801
+ def load_forecast: () -> ::Array[Types::LoadForecast]
802
+ def capacity_forecast: () -> Types::CapacityForecast
803
+ def update_time: () -> ::Time
804
+ end
805
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AutoScaling/Client.html#get_predictive_scaling_forecast-instance_method
806
+ def get_predictive_scaling_forecast: (
807
+ auto_scaling_group_name: ::String,
808
+ policy_name: ::String,
809
+ start_time: ::Time,
810
+ end_time: ::Time
811
+ ) -> _GetPredictiveScalingForecastResponseSuccess
812
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetPredictiveScalingForecastResponseSuccess
813
+
814
+ interface _PutLifecycleHookResponseSuccess
815
+ include ::Seahorse::Client::_ResponseSuccess[Types::PutLifecycleHookAnswer]
816
+ end
817
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AutoScaling/Client.html#put_lifecycle_hook-instance_method
818
+ def put_lifecycle_hook: (
819
+ lifecycle_hook_name: ::String,
820
+ auto_scaling_group_name: ::String,
821
+ ?lifecycle_transition: ::String,
822
+ ?role_arn: ::String,
823
+ ?notification_target_arn: ::String,
824
+ ?notification_metadata: ::String,
825
+ ?heartbeat_timeout: ::Integer,
826
+ ?default_result: ::String
827
+ ) -> _PutLifecycleHookResponseSuccess
828
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _PutLifecycleHookResponseSuccess
829
+
830
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AutoScaling/Client.html#put_notification_configuration-instance_method
831
+ def put_notification_configuration: (
832
+ auto_scaling_group_name: ::String,
833
+ topic_arn: ::String,
834
+ notification_types: Array[::String]
835
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
836
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
837
+
838
+ interface _PutScalingPolicyResponseSuccess
839
+ include ::Seahorse::Client::_ResponseSuccess[Types::PolicyARNType]
840
+ def policy_arn: () -> ::String
841
+ def alarms: () -> ::Array[Types::Alarm]
842
+ end
843
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AutoScaling/Client.html#put_scaling_policy-instance_method
844
+ def put_scaling_policy: (
845
+ auto_scaling_group_name: ::String,
846
+ policy_name: ::String,
847
+ ?policy_type: ::String,
848
+ ?adjustment_type: ::String,
849
+ ?min_adjustment_step: ::Integer,
850
+ ?min_adjustment_magnitude: ::Integer,
851
+ ?scaling_adjustment: ::Integer,
852
+ ?cooldown: ::Integer,
853
+ ?metric_aggregation_type: ::String,
854
+ ?step_adjustments: Array[
855
+ {
856
+ metric_interval_lower_bound: ::Float?,
857
+ metric_interval_upper_bound: ::Float?,
858
+ scaling_adjustment: ::Integer
859
+ },
860
+ ],
861
+ ?estimated_instance_warmup: ::Integer,
862
+ ?target_tracking_configuration: {
863
+ predefined_metric_specification: {
864
+ predefined_metric_type: ("ASGAverageCPUUtilization" | "ASGAverageNetworkIn" | "ASGAverageNetworkOut" | "ALBRequestCountPerTarget"),
865
+ resource_label: ::String?
866
+ }?,
867
+ customized_metric_specification: {
868
+ metric_name: ::String?,
869
+ namespace: ::String?,
870
+ dimensions: Array[
871
+ {
872
+ name: ::String,
873
+ value: ::String
874
+ },
875
+ ]?,
876
+ statistic: ("Average" | "Minimum" | "Maximum" | "SampleCount" | "Sum")?,
877
+ unit: ::String?,
878
+ metrics: Array[
879
+ {
880
+ id: ::String,
881
+ expression: ::String?,
882
+ metric_stat: {
883
+ metric: {
884
+ namespace: ::String,
885
+ metric_name: ::String,
886
+ dimensions: Array[
887
+ {
888
+ name: ::String,
889
+ value: ::String
890
+ },
891
+ ]?
892
+ },
893
+ stat: ::String,
894
+ unit: ::String?
895
+ }?,
896
+ label: ::String?,
897
+ return_data: bool?
898
+ },
899
+ ]?
900
+ }?,
901
+ target_value: ::Float,
902
+ disable_scale_in: bool?
903
+ },
904
+ ?enabled: bool,
905
+ ?predictive_scaling_configuration: {
906
+ metric_specifications: Array[
907
+ {
908
+ target_value: ::Float,
909
+ predefined_metric_pair_specification: {
910
+ predefined_metric_type: ("ASGCPUUtilization" | "ASGNetworkIn" | "ASGNetworkOut" | "ALBRequestCount"),
911
+ resource_label: ::String?
912
+ }?,
913
+ predefined_scaling_metric_specification: {
914
+ predefined_metric_type: ("ASGAverageCPUUtilization" | "ASGAverageNetworkIn" | "ASGAverageNetworkOut" | "ALBRequestCountPerTarget"),
915
+ resource_label: ::String?
916
+ }?,
917
+ predefined_load_metric_specification: {
918
+ predefined_metric_type: ("ASGTotalCPUUtilization" | "ASGTotalNetworkIn" | "ASGTotalNetworkOut" | "ALBTargetGroupRequestCount"),
919
+ resource_label: ::String?
920
+ }?,
921
+ customized_scaling_metric_specification: {
922
+ metric_data_queries: Array[
923
+ {
924
+ id: ::String,
925
+ expression: ::String?,
926
+ metric_stat: {
927
+ metric: {
928
+ namespace: ::String,
929
+ metric_name: ::String,
930
+ dimensions: Array[
931
+ {
932
+ name: ::String,
933
+ value: ::String
934
+ },
935
+ ]?
936
+ },
937
+ stat: ::String,
938
+ unit: ::String?
939
+ }?,
940
+ label: ::String?,
941
+ return_data: bool?
942
+ },
943
+ ]
944
+ }?,
945
+ customized_load_metric_specification: {
946
+ metric_data_queries: Array[
947
+ {
948
+ id: ::String,
949
+ expression: ::String?,
950
+ metric_stat: {
951
+ metric: {
952
+ namespace: ::String,
953
+ metric_name: ::String,
954
+ dimensions: Array[
955
+ {
956
+ name: ::String,
957
+ value: ::String
958
+ },
959
+ ]?
960
+ },
961
+ stat: ::String,
962
+ unit: ::String?
963
+ }?,
964
+ label: ::String?,
965
+ return_data: bool?
966
+ },
967
+ ]
968
+ }?,
969
+ customized_capacity_metric_specification: {
970
+ metric_data_queries: Array[
971
+ {
972
+ id: ::String,
973
+ expression: ::String?,
974
+ metric_stat: {
975
+ metric: {
976
+ namespace: ::String,
977
+ metric_name: ::String,
978
+ dimensions: Array[
979
+ {
980
+ name: ::String,
981
+ value: ::String
982
+ },
983
+ ]?
984
+ },
985
+ stat: ::String,
986
+ unit: ::String?
987
+ }?,
988
+ label: ::String?,
989
+ return_data: bool?
990
+ },
991
+ ]
992
+ }?
993
+ },
994
+ ],
995
+ mode: ("ForecastAndScale" | "ForecastOnly")?,
996
+ scheduling_buffer_time: ::Integer?,
997
+ max_capacity_breach_behavior: ("HonorMaxCapacity" | "IncreaseMaxCapacity")?,
998
+ max_capacity_buffer: ::Integer?
999
+ }
1000
+ ) -> _PutScalingPolicyResponseSuccess
1001
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _PutScalingPolicyResponseSuccess
1002
+
1003
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AutoScaling/Client.html#put_scheduled_update_group_action-instance_method
1004
+ def put_scheduled_update_group_action: (
1005
+ auto_scaling_group_name: ::String,
1006
+ scheduled_action_name: ::String,
1007
+ ?time: ::Time,
1008
+ ?start_time: ::Time,
1009
+ ?end_time: ::Time,
1010
+ ?recurrence: ::String,
1011
+ ?min_size: ::Integer,
1012
+ ?max_size: ::Integer,
1013
+ ?desired_capacity: ::Integer,
1014
+ ?time_zone: ::String
1015
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
1016
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
1017
+
1018
+ interface _PutWarmPoolResponseSuccess
1019
+ include ::Seahorse::Client::_ResponseSuccess[Types::PutWarmPoolAnswer]
1020
+ end
1021
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AutoScaling/Client.html#put_warm_pool-instance_method
1022
+ def put_warm_pool: (
1023
+ auto_scaling_group_name: ::String,
1024
+ ?max_group_prepared_capacity: ::Integer,
1025
+ ?min_size: ::Integer,
1026
+ ?pool_state: ("Stopped" | "Running" | "Hibernated"),
1027
+ ?instance_reuse_policy: {
1028
+ reuse_on_scale_in: bool?
1029
+ }
1030
+ ) -> _PutWarmPoolResponseSuccess
1031
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _PutWarmPoolResponseSuccess
1032
+
1033
+ interface _RecordLifecycleActionHeartbeatResponseSuccess
1034
+ include ::Seahorse::Client::_ResponseSuccess[Types::RecordLifecycleActionHeartbeatAnswer]
1035
+ end
1036
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AutoScaling/Client.html#record_lifecycle_action_heartbeat-instance_method
1037
+ def record_lifecycle_action_heartbeat: (
1038
+ lifecycle_hook_name: ::String,
1039
+ auto_scaling_group_name: ::String,
1040
+ ?lifecycle_action_token: ::String,
1041
+ ?instance_id: ::String
1042
+ ) -> _RecordLifecycleActionHeartbeatResponseSuccess
1043
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _RecordLifecycleActionHeartbeatResponseSuccess
1044
+
1045
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AutoScaling/Client.html#resume_processes-instance_method
1046
+ def resume_processes: (
1047
+ auto_scaling_group_name: ::String,
1048
+ ?scaling_processes: Array[::String]
1049
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
1050
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
1051
+
1052
+ interface _RollbackInstanceRefreshResponseSuccess
1053
+ include ::Seahorse::Client::_ResponseSuccess[Types::RollbackInstanceRefreshAnswer]
1054
+ def instance_refresh_id: () -> ::String
1055
+ end
1056
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AutoScaling/Client.html#rollback_instance_refresh-instance_method
1057
+ def rollback_instance_refresh: (
1058
+ auto_scaling_group_name: ::String
1059
+ ) -> _RollbackInstanceRefreshResponseSuccess
1060
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _RollbackInstanceRefreshResponseSuccess
1061
+
1062
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AutoScaling/Client.html#set_desired_capacity-instance_method
1063
+ def set_desired_capacity: (
1064
+ auto_scaling_group_name: ::String,
1065
+ desired_capacity: ::Integer,
1066
+ ?honor_cooldown: bool
1067
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
1068
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
1069
+
1070
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AutoScaling/Client.html#set_instance_health-instance_method
1071
+ def set_instance_health: (
1072
+ instance_id: ::String,
1073
+ health_status: ::String,
1074
+ ?should_respect_grace_period: bool
1075
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
1076
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
1077
+
1078
+ interface _SetInstanceProtectionResponseSuccess
1079
+ include ::Seahorse::Client::_ResponseSuccess[Types::SetInstanceProtectionAnswer]
1080
+ end
1081
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AutoScaling/Client.html#set_instance_protection-instance_method
1082
+ def set_instance_protection: (
1083
+ instance_ids: Array[::String],
1084
+ auto_scaling_group_name: ::String,
1085
+ protected_from_scale_in: bool
1086
+ ) -> _SetInstanceProtectionResponseSuccess
1087
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _SetInstanceProtectionResponseSuccess
1088
+
1089
+ interface _StartInstanceRefreshResponseSuccess
1090
+ include ::Seahorse::Client::_ResponseSuccess[Types::StartInstanceRefreshAnswer]
1091
+ def instance_refresh_id: () -> ::String
1092
+ end
1093
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AutoScaling/Client.html#start_instance_refresh-instance_method
1094
+ def start_instance_refresh: (
1095
+ auto_scaling_group_name: ::String,
1096
+ ?strategy: ("Rolling"),
1097
+ ?desired_configuration: {
1098
+ launch_template: {
1099
+ launch_template_id: ::String?,
1100
+ launch_template_name: ::String?,
1101
+ version: ::String?
1102
+ }?,
1103
+ mixed_instances_policy: {
1104
+ launch_template: {
1105
+ launch_template_specification: {
1106
+ launch_template_id: ::String?,
1107
+ launch_template_name: ::String?,
1108
+ version: ::String?
1109
+ }?,
1110
+ overrides: Array[
1111
+ {
1112
+ instance_type: ::String?,
1113
+ weighted_capacity: ::String?,
1114
+ launch_template_specification: {
1115
+ launch_template_id: ::String?,
1116
+ launch_template_name: ::String?,
1117
+ version: ::String?
1118
+ }?,
1119
+ instance_requirements: {
1120
+ v_cpu_count: {
1121
+ min: ::Integer,
1122
+ max: ::Integer?
1123
+ },
1124
+ memory_mi_b: {
1125
+ min: ::Integer,
1126
+ max: ::Integer?
1127
+ },
1128
+ cpu_manufacturers: Array[("intel" | "amd" | "amazon-web-services")]?,
1129
+ memory_gi_b_per_v_cpu: {
1130
+ min: ::Float?,
1131
+ max: ::Float?
1132
+ }?,
1133
+ excluded_instance_types: Array[::String]?,
1134
+ instance_generations: Array[("current" | "previous")]?,
1135
+ spot_max_price_percentage_over_lowest_price: ::Integer?,
1136
+ max_spot_price_as_percentage_of_optimal_on_demand_price: ::Integer?,
1137
+ on_demand_max_price_percentage_over_lowest_price: ::Integer?,
1138
+ bare_metal: ("included" | "excluded" | "required")?,
1139
+ burstable_performance: ("included" | "excluded" | "required")?,
1140
+ require_hibernate_support: bool?,
1141
+ network_interface_count: {
1142
+ min: ::Integer?,
1143
+ max: ::Integer?
1144
+ }?,
1145
+ local_storage: ("included" | "excluded" | "required")?,
1146
+ local_storage_types: Array[("hdd" | "ssd")]?,
1147
+ total_local_storage_gb: {
1148
+ min: ::Float?,
1149
+ max: ::Float?
1150
+ }?,
1151
+ baseline_ebs_bandwidth_mbps: {
1152
+ min: ::Integer?,
1153
+ max: ::Integer?
1154
+ }?,
1155
+ accelerator_types: Array[("gpu" | "fpga" | "inference")]?,
1156
+ accelerator_count: {
1157
+ min: ::Integer?,
1158
+ max: ::Integer?
1159
+ }?,
1160
+ accelerator_manufacturers: Array[("nvidia" | "amd" | "amazon-web-services" | "xilinx")]?,
1161
+ accelerator_names: Array[("a100" | "v100" | "k80" | "t4" | "m60" | "radeon-pro-v520" | "vu9p")]?,
1162
+ accelerator_total_memory_mi_b: {
1163
+ min: ::Integer?,
1164
+ max: ::Integer?
1165
+ }?,
1166
+ network_bandwidth_gbps: {
1167
+ min: ::Float?,
1168
+ max: ::Float?
1169
+ }?,
1170
+ allowed_instance_types: Array[::String]?
1171
+ }?
1172
+ },
1173
+ ]?
1174
+ }?,
1175
+ instances_distribution: {
1176
+ on_demand_allocation_strategy: ::String?,
1177
+ on_demand_base_capacity: ::Integer?,
1178
+ on_demand_percentage_above_base_capacity: ::Integer?,
1179
+ spot_allocation_strategy: ::String?,
1180
+ spot_instance_pools: ::Integer?,
1181
+ spot_max_price: ::String?
1182
+ }?
1183
+ }?
1184
+ },
1185
+ ?preferences: {
1186
+ min_healthy_percentage: ::Integer?,
1187
+ instance_warmup: ::Integer?,
1188
+ checkpoint_percentages: Array[::Integer]?,
1189
+ checkpoint_delay: ::Integer?,
1190
+ skip_matching: bool?,
1191
+ auto_rollback: bool?,
1192
+ scale_in_protected_instances: ("Refresh" | "Ignore" | "Wait")?,
1193
+ standby_instances: ("Terminate" | "Ignore" | "Wait")?,
1194
+ alarm_specification: {
1195
+ alarms: Array[::String]?
1196
+ }?,
1197
+ max_healthy_percentage: ::Integer?
1198
+ }
1199
+ ) -> _StartInstanceRefreshResponseSuccess
1200
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartInstanceRefreshResponseSuccess
1201
+
1202
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AutoScaling/Client.html#suspend_processes-instance_method
1203
+ def suspend_processes: (
1204
+ auto_scaling_group_name: ::String,
1205
+ ?scaling_processes: Array[::String]
1206
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
1207
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
1208
+
1209
+ interface _TerminateInstanceInAutoScalingGroupResponseSuccess
1210
+ include ::Seahorse::Client::_ResponseSuccess[Types::ActivityType]
1211
+ def activity: () -> Types::Activity
1212
+ end
1213
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AutoScaling/Client.html#terminate_instance_in_auto_scaling_group-instance_method
1214
+ def terminate_instance_in_auto_scaling_group: (
1215
+ instance_id: ::String,
1216
+ should_decrement_desired_capacity: bool
1217
+ ) -> _TerminateInstanceInAutoScalingGroupResponseSuccess
1218
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _TerminateInstanceInAutoScalingGroupResponseSuccess
1219
+
1220
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AutoScaling/Client.html#update_auto_scaling_group-instance_method
1221
+ def update_auto_scaling_group: (
1222
+ auto_scaling_group_name: ::String,
1223
+ ?launch_configuration_name: ::String,
1224
+ ?launch_template: {
1225
+ launch_template_id: ::String?,
1226
+ launch_template_name: ::String?,
1227
+ version: ::String?
1228
+ },
1229
+ ?mixed_instances_policy: {
1230
+ launch_template: {
1231
+ launch_template_specification: {
1232
+ launch_template_id: ::String?,
1233
+ launch_template_name: ::String?,
1234
+ version: ::String?
1235
+ }?,
1236
+ overrides: Array[
1237
+ {
1238
+ instance_type: ::String?,
1239
+ weighted_capacity: ::String?,
1240
+ launch_template_specification: {
1241
+ launch_template_id: ::String?,
1242
+ launch_template_name: ::String?,
1243
+ version: ::String?
1244
+ }?,
1245
+ instance_requirements: {
1246
+ v_cpu_count: {
1247
+ min: ::Integer,
1248
+ max: ::Integer?
1249
+ },
1250
+ memory_mi_b: {
1251
+ min: ::Integer,
1252
+ max: ::Integer?
1253
+ },
1254
+ cpu_manufacturers: Array[("intel" | "amd" | "amazon-web-services")]?,
1255
+ memory_gi_b_per_v_cpu: {
1256
+ min: ::Float?,
1257
+ max: ::Float?
1258
+ }?,
1259
+ excluded_instance_types: Array[::String]?,
1260
+ instance_generations: Array[("current" | "previous")]?,
1261
+ spot_max_price_percentage_over_lowest_price: ::Integer?,
1262
+ max_spot_price_as_percentage_of_optimal_on_demand_price: ::Integer?,
1263
+ on_demand_max_price_percentage_over_lowest_price: ::Integer?,
1264
+ bare_metal: ("included" | "excluded" | "required")?,
1265
+ burstable_performance: ("included" | "excluded" | "required")?,
1266
+ require_hibernate_support: bool?,
1267
+ network_interface_count: {
1268
+ min: ::Integer?,
1269
+ max: ::Integer?
1270
+ }?,
1271
+ local_storage: ("included" | "excluded" | "required")?,
1272
+ local_storage_types: Array[("hdd" | "ssd")]?,
1273
+ total_local_storage_gb: {
1274
+ min: ::Float?,
1275
+ max: ::Float?
1276
+ }?,
1277
+ baseline_ebs_bandwidth_mbps: {
1278
+ min: ::Integer?,
1279
+ max: ::Integer?
1280
+ }?,
1281
+ accelerator_types: Array[("gpu" | "fpga" | "inference")]?,
1282
+ accelerator_count: {
1283
+ min: ::Integer?,
1284
+ max: ::Integer?
1285
+ }?,
1286
+ accelerator_manufacturers: Array[("nvidia" | "amd" | "amazon-web-services" | "xilinx")]?,
1287
+ accelerator_names: Array[("a100" | "v100" | "k80" | "t4" | "m60" | "radeon-pro-v520" | "vu9p")]?,
1288
+ accelerator_total_memory_mi_b: {
1289
+ min: ::Integer?,
1290
+ max: ::Integer?
1291
+ }?,
1292
+ network_bandwidth_gbps: {
1293
+ min: ::Float?,
1294
+ max: ::Float?
1295
+ }?,
1296
+ allowed_instance_types: Array[::String]?
1297
+ }?
1298
+ },
1299
+ ]?
1300
+ }?,
1301
+ instances_distribution: {
1302
+ on_demand_allocation_strategy: ::String?,
1303
+ on_demand_base_capacity: ::Integer?,
1304
+ on_demand_percentage_above_base_capacity: ::Integer?,
1305
+ spot_allocation_strategy: ::String?,
1306
+ spot_instance_pools: ::Integer?,
1307
+ spot_max_price: ::String?
1308
+ }?
1309
+ },
1310
+ ?min_size: ::Integer,
1311
+ ?max_size: ::Integer,
1312
+ ?desired_capacity: ::Integer,
1313
+ ?default_cooldown: ::Integer,
1314
+ ?availability_zones: Array[::String],
1315
+ ?health_check_type: ::String,
1316
+ ?health_check_grace_period: ::Integer,
1317
+ ?placement_group: ::String,
1318
+ ?vpc_zone_identifier: ::String,
1319
+ ?termination_policies: Array[::String],
1320
+ ?new_instances_protected_from_scale_in: bool,
1321
+ ?service_linked_role_arn: ::String,
1322
+ ?max_instance_lifetime: ::Integer,
1323
+ ?capacity_rebalance: bool,
1324
+ ?context: ::String,
1325
+ ?desired_capacity_type: ::String,
1326
+ ?default_instance_warmup: ::Integer,
1327
+ ?instance_maintenance_policy: {
1328
+ min_healthy_percentage: ::Integer?,
1329
+ max_healthy_percentage: ::Integer?
1330
+ }
1331
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
1332
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
1333
+
1334
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AutoScaling/Client.html#wait_until-instance_method
1335
+ def wait_until: (:group_exists waiter_name,
1336
+ ?auto_scaling_group_names: Array[::String],
1337
+ ?next_token: ::String,
1338
+ ?max_records: ::Integer,
1339
+ ?filters: Array[
1340
+ {
1341
+ name: ::String?,
1342
+ values: Array[::String]?
1343
+ },
1344
+ ]
1345
+ ) -> Client::_DescribeAutoScalingGroupsResponseSuccess
1346
+ | (:group_exists waiter_name, ?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> Client::_DescribeAutoScalingGroupsResponseSuccess
1347
+ | (:group_in_service waiter_name,
1348
+ ?auto_scaling_group_names: Array[::String],
1349
+ ?next_token: ::String,
1350
+ ?max_records: ::Integer,
1351
+ ?filters: Array[
1352
+ {
1353
+ name: ::String?,
1354
+ values: Array[::String]?
1355
+ },
1356
+ ]
1357
+ ) -> Client::_DescribeAutoScalingGroupsResponseSuccess
1358
+ | (:group_in_service waiter_name, ?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> Client::_DescribeAutoScalingGroupsResponseSuccess
1359
+ | (:group_not_exists waiter_name,
1360
+ ?auto_scaling_group_names: Array[::String],
1361
+ ?next_token: ::String,
1362
+ ?max_records: ::Integer,
1363
+ ?filters: Array[
1364
+ {
1365
+ name: ::String?,
1366
+ values: Array[::String]?
1367
+ },
1368
+ ]
1369
+ ) -> Client::_DescribeAutoScalingGroupsResponseSuccess
1370
+ | (:group_not_exists waiter_name, ?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> Client::_DescribeAutoScalingGroupsResponseSuccess
1371
+ end
1372
+ end
1373
+ end
1374
+