aws-sdk-elasticbeanstalk 1.63.0 → 1.64.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
data/sig/client.rbs ADDED
@@ -0,0 +1,922 @@
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 ElasticBeanstalk
10
+ class Client < ::Seahorse::Client::Base
11
+ include ::Aws::ClientStubs
12
+
13
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ElasticBeanstalk/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/ElasticBeanstalk/Client.html#abort_environment_update-instance_method
76
+ def abort_environment_update: (
77
+ ?environment_id: ::String,
78
+ ?environment_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 _ApplyEnvironmentManagedActionResponseSuccess
83
+ include ::Seahorse::Client::_ResponseSuccess[Types::ApplyEnvironmentManagedActionResult]
84
+ def action_id: () -> ::String
85
+ def action_description: () -> ::String
86
+ def action_type: () -> ("InstanceRefresh" | "PlatformUpdate" | "Unknown")
87
+ def status: () -> ::String
88
+ end
89
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ElasticBeanstalk/Client.html#apply_environment_managed_action-instance_method
90
+ def apply_environment_managed_action: (
91
+ ?environment_name: ::String,
92
+ ?environment_id: ::String,
93
+ action_id: ::String
94
+ ) -> _ApplyEnvironmentManagedActionResponseSuccess
95
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ApplyEnvironmentManagedActionResponseSuccess
96
+
97
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ElasticBeanstalk/Client.html#associate_environment_operations_role-instance_method
98
+ def associate_environment_operations_role: (
99
+ environment_name: ::String,
100
+ operations_role: ::String
101
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
102
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
103
+
104
+ interface _CheckDNSAvailabilityResponseSuccess
105
+ include ::Seahorse::Client::_ResponseSuccess[Types::CheckDNSAvailabilityResultMessage]
106
+ def available: () -> bool
107
+ def fully_qualified_cname: () -> ::String
108
+ end
109
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ElasticBeanstalk/Client.html#check_dns_availability-instance_method
110
+ def check_dns_availability: (
111
+ cname_prefix: ::String
112
+ ) -> _CheckDNSAvailabilityResponseSuccess
113
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CheckDNSAvailabilityResponseSuccess
114
+
115
+ interface _ComposeEnvironmentsResponseSuccess
116
+ include ::Seahorse::Client::_ResponseSuccess[Types::EnvironmentDescriptionsMessage]
117
+ def environments: () -> ::Array[Types::EnvironmentDescription]
118
+ def next_token: () -> ::String
119
+ end
120
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ElasticBeanstalk/Client.html#compose_environments-instance_method
121
+ def compose_environments: (
122
+ ?application_name: ::String,
123
+ ?group_name: ::String,
124
+ ?version_labels: Array[::String]
125
+ ) -> _ComposeEnvironmentsResponseSuccess
126
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ComposeEnvironmentsResponseSuccess
127
+
128
+ interface _CreateApplicationResponseSuccess
129
+ include ::Seahorse::Client::_ResponseSuccess[Types::ApplicationDescriptionMessage]
130
+ def application: () -> Types::ApplicationDescription
131
+ end
132
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ElasticBeanstalk/Client.html#create_application-instance_method
133
+ def create_application: (
134
+ application_name: ::String,
135
+ ?description: ::String,
136
+ ?resource_lifecycle_config: {
137
+ service_role: ::String?,
138
+ version_lifecycle_config: {
139
+ max_count_rule: {
140
+ enabled: bool,
141
+ max_count: ::Integer?,
142
+ delete_source_from_s3: bool?
143
+ }?,
144
+ max_age_rule: {
145
+ enabled: bool,
146
+ max_age_in_days: ::Integer?,
147
+ delete_source_from_s3: bool?
148
+ }?
149
+ }?
150
+ },
151
+ ?tags: Array[
152
+ {
153
+ key: ::String?,
154
+ value: ::String?
155
+ },
156
+ ]
157
+ ) -> _CreateApplicationResponseSuccess
158
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateApplicationResponseSuccess
159
+
160
+ interface _CreateApplicationVersionResponseSuccess
161
+ include ::Seahorse::Client::_ResponseSuccess[Types::ApplicationVersionDescriptionMessage]
162
+ def application_version: () -> Types::ApplicationVersionDescription
163
+ end
164
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ElasticBeanstalk/Client.html#create_application_version-instance_method
165
+ def create_application_version: (
166
+ application_name: ::String,
167
+ version_label: ::String,
168
+ ?description: ::String,
169
+ ?source_build_information: {
170
+ source_type: ("Git" | "Zip"),
171
+ source_repository: ("CodeCommit" | "S3"),
172
+ source_location: ::String
173
+ },
174
+ ?source_bundle: {
175
+ s3_bucket: ::String?,
176
+ s3_key: ::String?
177
+ },
178
+ ?build_configuration: {
179
+ artifact_name: ::String?,
180
+ code_build_service_role: ::String,
181
+ compute_type: ("BUILD_GENERAL1_SMALL" | "BUILD_GENERAL1_MEDIUM" | "BUILD_GENERAL1_LARGE")?,
182
+ image: ::String,
183
+ timeout_in_minutes: ::Integer?
184
+ },
185
+ ?auto_create_application: bool,
186
+ ?process: bool,
187
+ ?tags: Array[
188
+ {
189
+ key: ::String?,
190
+ value: ::String?
191
+ },
192
+ ]
193
+ ) -> _CreateApplicationVersionResponseSuccess
194
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateApplicationVersionResponseSuccess
195
+
196
+ interface _CreateConfigurationTemplateResponseSuccess
197
+ include ::Seahorse::Client::_ResponseSuccess[Types::ConfigurationSettingsDescription]
198
+ def solution_stack_name: () -> ::String
199
+ def platform_arn: () -> ::String
200
+ def application_name: () -> ::String
201
+ def template_name: () -> ::String
202
+ def description: () -> ::String
203
+ def environment_name: () -> ::String
204
+ def deployment_status: () -> ("deployed" | "pending" | "failed")
205
+ def date_created: () -> ::Time
206
+ def date_updated: () -> ::Time
207
+ def option_settings: () -> ::Array[Types::ConfigurationOptionSetting]
208
+ end
209
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ElasticBeanstalk/Client.html#create_configuration_template-instance_method
210
+ def create_configuration_template: (
211
+ application_name: ::String,
212
+ template_name: ::String,
213
+ ?solution_stack_name: ::String,
214
+ ?platform_arn: ::String,
215
+ ?source_configuration: {
216
+ application_name: ::String?,
217
+ template_name: ::String?
218
+ },
219
+ ?environment_id: ::String,
220
+ ?description: ::String,
221
+ ?option_settings: Array[
222
+ {
223
+ resource_name: ::String?,
224
+ namespace: ::String?,
225
+ option_name: ::String?,
226
+ value: ::String?
227
+ },
228
+ ],
229
+ ?tags: Array[
230
+ {
231
+ key: ::String?,
232
+ value: ::String?
233
+ },
234
+ ]
235
+ ) -> _CreateConfigurationTemplateResponseSuccess
236
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateConfigurationTemplateResponseSuccess
237
+
238
+ interface _CreateEnvironmentResponseSuccess
239
+ include ::Seahorse::Client::_ResponseSuccess[Types::EnvironmentDescription]
240
+ def environment_name: () -> ::String
241
+ def environment_id: () -> ::String
242
+ def application_name: () -> ::String
243
+ def version_label: () -> ::String
244
+ def solution_stack_name: () -> ::String
245
+ def platform_arn: () -> ::String
246
+ def template_name: () -> ::String
247
+ def description: () -> ::String
248
+ def endpoint_url: () -> ::String
249
+ def cname: () -> ::String
250
+ def date_created: () -> ::Time
251
+ def date_updated: () -> ::Time
252
+ def status: () -> ("Aborting" | "Launching" | "Updating" | "LinkingFrom" | "LinkingTo" | "Ready" | "Terminating" | "Terminated")
253
+ def abortable_operation_in_progress: () -> bool
254
+ def health: () -> ("Green" | "Yellow" | "Red" | "Grey")
255
+ def health_status: () -> ("NoData" | "Unknown" | "Pending" | "Ok" | "Info" | "Warning" | "Degraded" | "Severe" | "Suspended")
256
+ def resources: () -> Types::EnvironmentResourcesDescription
257
+ def tier: () -> Types::EnvironmentTier
258
+ def environment_links: () -> ::Array[Types::EnvironmentLink]
259
+ def environment_arn: () -> ::String
260
+ def operations_role: () -> ::String
261
+ end
262
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ElasticBeanstalk/Client.html#create_environment-instance_method
263
+ def create_environment: (
264
+ application_name: ::String,
265
+ ?environment_name: ::String,
266
+ ?group_name: ::String,
267
+ ?description: ::String,
268
+ ?cname_prefix: ::String,
269
+ ?tier: {
270
+ name: ::String?,
271
+ type: ::String?,
272
+ version: ::String?
273
+ },
274
+ ?tags: Array[
275
+ {
276
+ key: ::String?,
277
+ value: ::String?
278
+ },
279
+ ],
280
+ ?version_label: ::String,
281
+ ?template_name: ::String,
282
+ ?solution_stack_name: ::String,
283
+ ?platform_arn: ::String,
284
+ ?option_settings: Array[
285
+ {
286
+ resource_name: ::String?,
287
+ namespace: ::String?,
288
+ option_name: ::String?,
289
+ value: ::String?
290
+ },
291
+ ],
292
+ ?options_to_remove: Array[
293
+ {
294
+ resource_name: ::String?,
295
+ namespace: ::String?,
296
+ option_name: ::String?
297
+ },
298
+ ],
299
+ ?operations_role: ::String
300
+ ) -> _CreateEnvironmentResponseSuccess
301
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateEnvironmentResponseSuccess
302
+
303
+ interface _CreatePlatformVersionResponseSuccess
304
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreatePlatformVersionResult]
305
+ def platform_summary: () -> Types::PlatformSummary
306
+ def builder: () -> Types::Builder
307
+ end
308
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ElasticBeanstalk/Client.html#create_platform_version-instance_method
309
+ def create_platform_version: (
310
+ platform_name: ::String,
311
+ platform_version: ::String,
312
+ platform_definition_bundle: {
313
+ s3_bucket: ::String?,
314
+ s3_key: ::String?
315
+ },
316
+ ?environment_name: ::String,
317
+ ?option_settings: Array[
318
+ {
319
+ resource_name: ::String?,
320
+ namespace: ::String?,
321
+ option_name: ::String?,
322
+ value: ::String?
323
+ },
324
+ ],
325
+ ?tags: Array[
326
+ {
327
+ key: ::String?,
328
+ value: ::String?
329
+ },
330
+ ]
331
+ ) -> _CreatePlatformVersionResponseSuccess
332
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreatePlatformVersionResponseSuccess
333
+
334
+ interface _CreateStorageLocationResponseSuccess
335
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateStorageLocationResultMessage]
336
+ def s3_bucket: () -> ::String
337
+ end
338
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ElasticBeanstalk/Client.html#create_storage_location-instance_method
339
+ def create_storage_location: () -> _CreateStorageLocationResponseSuccess
340
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateStorageLocationResponseSuccess
341
+
342
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ElasticBeanstalk/Client.html#delete_application-instance_method
343
+ def delete_application: (
344
+ application_name: ::String,
345
+ ?terminate_env_by_force: bool
346
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
347
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
348
+
349
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ElasticBeanstalk/Client.html#delete_application_version-instance_method
350
+ def delete_application_version: (
351
+ application_name: ::String,
352
+ version_label: ::String,
353
+ ?delete_source_bundle: bool
354
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
355
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
356
+
357
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ElasticBeanstalk/Client.html#delete_configuration_template-instance_method
358
+ def delete_configuration_template: (
359
+ application_name: ::String,
360
+ template_name: ::String
361
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
362
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
363
+
364
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ElasticBeanstalk/Client.html#delete_environment_configuration-instance_method
365
+ def delete_environment_configuration: (
366
+ application_name: ::String,
367
+ environment_name: ::String
368
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
369
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
370
+
371
+ interface _DeletePlatformVersionResponseSuccess
372
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeletePlatformVersionResult]
373
+ def platform_summary: () -> Types::PlatformSummary
374
+ end
375
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ElasticBeanstalk/Client.html#delete_platform_version-instance_method
376
+ def delete_platform_version: (
377
+ ?platform_arn: ::String
378
+ ) -> _DeletePlatformVersionResponseSuccess
379
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeletePlatformVersionResponseSuccess
380
+
381
+ interface _DescribeAccountAttributesResponseSuccess
382
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeAccountAttributesResult]
383
+ def resource_quotas: () -> Types::ResourceQuotas
384
+ end
385
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ElasticBeanstalk/Client.html#describe_account_attributes-instance_method
386
+ def describe_account_attributes: () -> _DescribeAccountAttributesResponseSuccess
387
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeAccountAttributesResponseSuccess
388
+
389
+ interface _DescribeApplicationVersionsResponseSuccess
390
+ include ::Seahorse::Client::_ResponseSuccess[Types::ApplicationVersionDescriptionsMessage]
391
+ def application_versions: () -> ::Array[Types::ApplicationVersionDescription]
392
+ def next_token: () -> ::String
393
+ end
394
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ElasticBeanstalk/Client.html#describe_application_versions-instance_method
395
+ def describe_application_versions: (
396
+ ?application_name: ::String,
397
+ ?version_labels: Array[::String],
398
+ ?max_records: ::Integer,
399
+ ?next_token: ::String
400
+ ) -> _DescribeApplicationVersionsResponseSuccess
401
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeApplicationVersionsResponseSuccess
402
+
403
+ interface _DescribeApplicationsResponseSuccess
404
+ include ::Seahorse::Client::_ResponseSuccess[Types::ApplicationDescriptionsMessage]
405
+ def applications: () -> ::Array[Types::ApplicationDescription]
406
+ end
407
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ElasticBeanstalk/Client.html#describe_applications-instance_method
408
+ def describe_applications: (
409
+ ?application_names: Array[::String]
410
+ ) -> _DescribeApplicationsResponseSuccess
411
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeApplicationsResponseSuccess
412
+
413
+ interface _DescribeConfigurationOptionsResponseSuccess
414
+ include ::Seahorse::Client::_ResponseSuccess[Types::ConfigurationOptionsDescription]
415
+ def solution_stack_name: () -> ::String
416
+ def platform_arn: () -> ::String
417
+ def options: () -> ::Array[Types::ConfigurationOptionDescription]
418
+ end
419
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ElasticBeanstalk/Client.html#describe_configuration_options-instance_method
420
+ def describe_configuration_options: (
421
+ ?application_name: ::String,
422
+ ?template_name: ::String,
423
+ ?environment_name: ::String,
424
+ ?solution_stack_name: ::String,
425
+ ?platform_arn: ::String,
426
+ ?options: Array[
427
+ {
428
+ resource_name: ::String?,
429
+ namespace: ::String?,
430
+ option_name: ::String?
431
+ },
432
+ ]
433
+ ) -> _DescribeConfigurationOptionsResponseSuccess
434
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeConfigurationOptionsResponseSuccess
435
+
436
+ interface _DescribeConfigurationSettingsResponseSuccess
437
+ include ::Seahorse::Client::_ResponseSuccess[Types::ConfigurationSettingsDescriptions]
438
+ def configuration_settings: () -> ::Array[Types::ConfigurationSettingsDescription]
439
+ end
440
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ElasticBeanstalk/Client.html#describe_configuration_settings-instance_method
441
+ def describe_configuration_settings: (
442
+ application_name: ::String,
443
+ ?template_name: ::String,
444
+ ?environment_name: ::String
445
+ ) -> _DescribeConfigurationSettingsResponseSuccess
446
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeConfigurationSettingsResponseSuccess
447
+
448
+ interface _DescribeEnvironmentHealthResponseSuccess
449
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeEnvironmentHealthResult]
450
+ def environment_name: () -> ::String
451
+ def health_status: () -> ::String
452
+ def status: () -> ("Green" | "Yellow" | "Red" | "Grey")
453
+ def color: () -> ::String
454
+ def causes: () -> ::Array[::String]
455
+ def application_metrics: () -> Types::ApplicationMetrics
456
+ def instances_health: () -> Types::InstanceHealthSummary
457
+ def refreshed_at: () -> ::Time
458
+ end
459
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ElasticBeanstalk/Client.html#describe_environment_health-instance_method
460
+ def describe_environment_health: (
461
+ ?environment_name: ::String,
462
+ ?environment_id: ::String,
463
+ ?attribute_names: Array[("Status" | "Color" | "Causes" | "ApplicationMetrics" | "InstancesHealth" | "All" | "HealthStatus" | "RefreshedAt")]
464
+ ) -> _DescribeEnvironmentHealthResponseSuccess
465
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeEnvironmentHealthResponseSuccess
466
+
467
+ interface _DescribeEnvironmentManagedActionHistoryResponseSuccess
468
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeEnvironmentManagedActionHistoryResult]
469
+ def managed_action_history_items: () -> ::Array[Types::ManagedActionHistoryItem]
470
+ def next_token: () -> ::String
471
+ end
472
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ElasticBeanstalk/Client.html#describe_environment_managed_action_history-instance_method
473
+ def describe_environment_managed_action_history: (
474
+ ?environment_id: ::String,
475
+ ?environment_name: ::String,
476
+ ?next_token: ::String,
477
+ ?max_items: ::Integer
478
+ ) -> _DescribeEnvironmentManagedActionHistoryResponseSuccess
479
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeEnvironmentManagedActionHistoryResponseSuccess
480
+
481
+ interface _DescribeEnvironmentManagedActionsResponseSuccess
482
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeEnvironmentManagedActionsResult]
483
+ def managed_actions: () -> ::Array[Types::ManagedAction]
484
+ end
485
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ElasticBeanstalk/Client.html#describe_environment_managed_actions-instance_method
486
+ def describe_environment_managed_actions: (
487
+ ?environment_name: ::String,
488
+ ?environment_id: ::String,
489
+ ?status: ("Scheduled" | "Pending" | "Running" | "Unknown")
490
+ ) -> _DescribeEnvironmentManagedActionsResponseSuccess
491
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeEnvironmentManagedActionsResponseSuccess
492
+
493
+ interface _DescribeEnvironmentResourcesResponseSuccess
494
+ include ::Seahorse::Client::_ResponseSuccess[Types::EnvironmentResourceDescriptionsMessage]
495
+ def environment_resources: () -> Types::EnvironmentResourceDescription
496
+ end
497
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ElasticBeanstalk/Client.html#describe_environment_resources-instance_method
498
+ def describe_environment_resources: (
499
+ ?environment_id: ::String,
500
+ ?environment_name: ::String
501
+ ) -> _DescribeEnvironmentResourcesResponseSuccess
502
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeEnvironmentResourcesResponseSuccess
503
+
504
+ interface _DescribeEnvironmentsResponseSuccess
505
+ include ::Seahorse::Client::_ResponseSuccess[Types::EnvironmentDescriptionsMessage]
506
+ def environments: () -> ::Array[Types::EnvironmentDescription]
507
+ def next_token: () -> ::String
508
+ end
509
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ElasticBeanstalk/Client.html#describe_environments-instance_method
510
+ def describe_environments: (
511
+ ?application_name: ::String,
512
+ ?version_label: ::String,
513
+ ?environment_ids: Array[::String],
514
+ ?environment_names: Array[::String],
515
+ ?include_deleted: bool,
516
+ ?included_deleted_back_to: ::Time,
517
+ ?max_records: ::Integer,
518
+ ?next_token: ::String
519
+ ) -> _DescribeEnvironmentsResponseSuccess
520
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeEnvironmentsResponseSuccess
521
+
522
+ interface _DescribeEventsResponseSuccess
523
+ include ::Seahorse::Client::_ResponseSuccess[Types::EventDescriptionsMessage]
524
+ def events: () -> ::Array[Types::EventDescription]
525
+ def next_token: () -> ::String
526
+ end
527
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ElasticBeanstalk/Client.html#describe_events-instance_method
528
+ def describe_events: (
529
+ ?application_name: ::String,
530
+ ?version_label: ::String,
531
+ ?template_name: ::String,
532
+ ?environment_id: ::String,
533
+ ?environment_name: ::String,
534
+ ?platform_arn: ::String,
535
+ ?request_id: ::String,
536
+ ?severity: ("TRACE" | "DEBUG" | "INFO" | "WARN" | "ERROR" | "FATAL"),
537
+ ?start_time: ::Time,
538
+ ?end_time: ::Time,
539
+ ?max_records: ::Integer,
540
+ ?next_token: ::String
541
+ ) -> _DescribeEventsResponseSuccess
542
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeEventsResponseSuccess
543
+
544
+ interface _DescribeInstancesHealthResponseSuccess
545
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeInstancesHealthResult]
546
+ def instance_health_list: () -> ::Array[Types::SingleInstanceHealth]
547
+ def refreshed_at: () -> ::Time
548
+ def next_token: () -> ::String
549
+ end
550
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ElasticBeanstalk/Client.html#describe_instances_health-instance_method
551
+ def describe_instances_health: (
552
+ ?environment_name: ::String,
553
+ ?environment_id: ::String,
554
+ ?attribute_names: Array[("HealthStatus" | "Color" | "Causes" | "ApplicationMetrics" | "RefreshedAt" | "LaunchedAt" | "System" | "Deployment" | "AvailabilityZone" | "InstanceType" | "All")],
555
+ ?next_token: ::String
556
+ ) -> _DescribeInstancesHealthResponseSuccess
557
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeInstancesHealthResponseSuccess
558
+
559
+ interface _DescribePlatformVersionResponseSuccess
560
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribePlatformVersionResult]
561
+ def platform_description: () -> Types::PlatformDescription
562
+ end
563
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ElasticBeanstalk/Client.html#describe_platform_version-instance_method
564
+ def describe_platform_version: (
565
+ ?platform_arn: ::String
566
+ ) -> _DescribePlatformVersionResponseSuccess
567
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribePlatformVersionResponseSuccess
568
+
569
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ElasticBeanstalk/Client.html#disassociate_environment_operations_role-instance_method
570
+ def disassociate_environment_operations_role: (
571
+ environment_name: ::String
572
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
573
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
574
+
575
+ interface _ListAvailableSolutionStacksResponseSuccess
576
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListAvailableSolutionStacksResultMessage]
577
+ def solution_stacks: () -> ::Array[::String]
578
+ def solution_stack_details: () -> ::Array[Types::SolutionStackDescription]
579
+ end
580
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ElasticBeanstalk/Client.html#list_available_solution_stacks-instance_method
581
+ def list_available_solution_stacks: () -> _ListAvailableSolutionStacksResponseSuccess
582
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListAvailableSolutionStacksResponseSuccess
583
+
584
+ interface _ListPlatformBranchesResponseSuccess
585
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListPlatformBranchesResult]
586
+ def platform_branch_summary_list: () -> ::Array[Types::PlatformBranchSummary]
587
+ def next_token: () -> ::String
588
+ end
589
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ElasticBeanstalk/Client.html#list_platform_branches-instance_method
590
+ def list_platform_branches: (
591
+ ?filters: Array[
592
+ {
593
+ attribute: ::String?,
594
+ operator: ::String?,
595
+ values: Array[::String]?
596
+ },
597
+ ],
598
+ ?max_records: ::Integer,
599
+ ?next_token: ::String
600
+ ) -> _ListPlatformBranchesResponseSuccess
601
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListPlatformBranchesResponseSuccess
602
+
603
+ interface _ListPlatformVersionsResponseSuccess
604
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListPlatformVersionsResult]
605
+ def platform_summary_list: () -> ::Array[Types::PlatformSummary]
606
+ def next_token: () -> ::String
607
+ end
608
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ElasticBeanstalk/Client.html#list_platform_versions-instance_method
609
+ def list_platform_versions: (
610
+ ?filters: Array[
611
+ {
612
+ type: ::String?,
613
+ operator: ::String?,
614
+ values: Array[::String]?
615
+ },
616
+ ],
617
+ ?max_records: ::Integer,
618
+ ?next_token: ::String
619
+ ) -> _ListPlatformVersionsResponseSuccess
620
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListPlatformVersionsResponseSuccess
621
+
622
+ interface _ListTagsForResourceResponseSuccess
623
+ include ::Seahorse::Client::_ResponseSuccess[Types::ResourceTagsDescriptionMessage]
624
+ def resource_arn: () -> ::String
625
+ def resource_tags: () -> ::Array[Types::Tag]
626
+ end
627
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ElasticBeanstalk/Client.html#list_tags_for_resource-instance_method
628
+ def list_tags_for_resource: (
629
+ resource_arn: ::String
630
+ ) -> _ListTagsForResourceResponseSuccess
631
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListTagsForResourceResponseSuccess
632
+
633
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ElasticBeanstalk/Client.html#rebuild_environment-instance_method
634
+ def rebuild_environment: (
635
+ ?environment_id: ::String,
636
+ ?environment_name: ::String
637
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
638
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
639
+
640
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ElasticBeanstalk/Client.html#request_environment_info-instance_method
641
+ def request_environment_info: (
642
+ ?environment_id: ::String,
643
+ ?environment_name: ::String,
644
+ info_type: ("tail" | "bundle")
645
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
646
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
647
+
648
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ElasticBeanstalk/Client.html#restart_app_server-instance_method
649
+ def restart_app_server: (
650
+ ?environment_id: ::String,
651
+ ?environment_name: ::String
652
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
653
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
654
+
655
+ interface _RetrieveEnvironmentInfoResponseSuccess
656
+ include ::Seahorse::Client::_ResponseSuccess[Types::RetrieveEnvironmentInfoResultMessage]
657
+ def environment_info: () -> ::Array[Types::EnvironmentInfoDescription]
658
+ end
659
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ElasticBeanstalk/Client.html#retrieve_environment_info-instance_method
660
+ def retrieve_environment_info: (
661
+ ?environment_id: ::String,
662
+ ?environment_name: ::String,
663
+ info_type: ("tail" | "bundle")
664
+ ) -> _RetrieveEnvironmentInfoResponseSuccess
665
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _RetrieveEnvironmentInfoResponseSuccess
666
+
667
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ElasticBeanstalk/Client.html#swap_environment_cnames-instance_method
668
+ def swap_environment_cnames: (
669
+ ?source_environment_id: ::String,
670
+ ?source_environment_name: ::String,
671
+ ?destination_environment_id: ::String,
672
+ ?destination_environment_name: ::String
673
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
674
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
675
+
676
+ interface _TerminateEnvironmentResponseSuccess
677
+ include ::Seahorse::Client::_ResponseSuccess[Types::EnvironmentDescription]
678
+ def environment_name: () -> ::String
679
+ def environment_id: () -> ::String
680
+ def application_name: () -> ::String
681
+ def version_label: () -> ::String
682
+ def solution_stack_name: () -> ::String
683
+ def platform_arn: () -> ::String
684
+ def template_name: () -> ::String
685
+ def description: () -> ::String
686
+ def endpoint_url: () -> ::String
687
+ def cname: () -> ::String
688
+ def date_created: () -> ::Time
689
+ def date_updated: () -> ::Time
690
+ def status: () -> ("Aborting" | "Launching" | "Updating" | "LinkingFrom" | "LinkingTo" | "Ready" | "Terminating" | "Terminated")
691
+ def abortable_operation_in_progress: () -> bool
692
+ def health: () -> ("Green" | "Yellow" | "Red" | "Grey")
693
+ def health_status: () -> ("NoData" | "Unknown" | "Pending" | "Ok" | "Info" | "Warning" | "Degraded" | "Severe" | "Suspended")
694
+ def resources: () -> Types::EnvironmentResourcesDescription
695
+ def tier: () -> Types::EnvironmentTier
696
+ def environment_links: () -> ::Array[Types::EnvironmentLink]
697
+ def environment_arn: () -> ::String
698
+ def operations_role: () -> ::String
699
+ end
700
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ElasticBeanstalk/Client.html#terminate_environment-instance_method
701
+ def terminate_environment: (
702
+ ?environment_id: ::String,
703
+ ?environment_name: ::String,
704
+ ?terminate_resources: bool,
705
+ ?force_terminate: bool
706
+ ) -> _TerminateEnvironmentResponseSuccess
707
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _TerminateEnvironmentResponseSuccess
708
+
709
+ interface _UpdateApplicationResponseSuccess
710
+ include ::Seahorse::Client::_ResponseSuccess[Types::ApplicationDescriptionMessage]
711
+ def application: () -> Types::ApplicationDescription
712
+ end
713
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ElasticBeanstalk/Client.html#update_application-instance_method
714
+ def update_application: (
715
+ application_name: ::String,
716
+ ?description: ::String
717
+ ) -> _UpdateApplicationResponseSuccess
718
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateApplicationResponseSuccess
719
+
720
+ interface _UpdateApplicationResourceLifecycleResponseSuccess
721
+ include ::Seahorse::Client::_ResponseSuccess[Types::ApplicationResourceLifecycleDescriptionMessage]
722
+ def application_name: () -> ::String
723
+ def resource_lifecycle_config: () -> Types::ApplicationResourceLifecycleConfig
724
+ end
725
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ElasticBeanstalk/Client.html#update_application_resource_lifecycle-instance_method
726
+ def update_application_resource_lifecycle: (
727
+ application_name: ::String,
728
+ resource_lifecycle_config: {
729
+ service_role: ::String?,
730
+ version_lifecycle_config: {
731
+ max_count_rule: {
732
+ enabled: bool,
733
+ max_count: ::Integer?,
734
+ delete_source_from_s3: bool?
735
+ }?,
736
+ max_age_rule: {
737
+ enabled: bool,
738
+ max_age_in_days: ::Integer?,
739
+ delete_source_from_s3: bool?
740
+ }?
741
+ }?
742
+ }
743
+ ) -> _UpdateApplicationResourceLifecycleResponseSuccess
744
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateApplicationResourceLifecycleResponseSuccess
745
+
746
+ interface _UpdateApplicationVersionResponseSuccess
747
+ include ::Seahorse::Client::_ResponseSuccess[Types::ApplicationVersionDescriptionMessage]
748
+ def application_version: () -> Types::ApplicationVersionDescription
749
+ end
750
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ElasticBeanstalk/Client.html#update_application_version-instance_method
751
+ def update_application_version: (
752
+ application_name: ::String,
753
+ version_label: ::String,
754
+ ?description: ::String
755
+ ) -> _UpdateApplicationVersionResponseSuccess
756
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateApplicationVersionResponseSuccess
757
+
758
+ interface _UpdateConfigurationTemplateResponseSuccess
759
+ include ::Seahorse::Client::_ResponseSuccess[Types::ConfigurationSettingsDescription]
760
+ def solution_stack_name: () -> ::String
761
+ def platform_arn: () -> ::String
762
+ def application_name: () -> ::String
763
+ def template_name: () -> ::String
764
+ def description: () -> ::String
765
+ def environment_name: () -> ::String
766
+ def deployment_status: () -> ("deployed" | "pending" | "failed")
767
+ def date_created: () -> ::Time
768
+ def date_updated: () -> ::Time
769
+ def option_settings: () -> ::Array[Types::ConfigurationOptionSetting]
770
+ end
771
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ElasticBeanstalk/Client.html#update_configuration_template-instance_method
772
+ def update_configuration_template: (
773
+ application_name: ::String,
774
+ template_name: ::String,
775
+ ?description: ::String,
776
+ ?option_settings: Array[
777
+ {
778
+ resource_name: ::String?,
779
+ namespace: ::String?,
780
+ option_name: ::String?,
781
+ value: ::String?
782
+ },
783
+ ],
784
+ ?options_to_remove: Array[
785
+ {
786
+ resource_name: ::String?,
787
+ namespace: ::String?,
788
+ option_name: ::String?
789
+ },
790
+ ]
791
+ ) -> _UpdateConfigurationTemplateResponseSuccess
792
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateConfigurationTemplateResponseSuccess
793
+
794
+ interface _UpdateEnvironmentResponseSuccess
795
+ include ::Seahorse::Client::_ResponseSuccess[Types::EnvironmentDescription]
796
+ def environment_name: () -> ::String
797
+ def environment_id: () -> ::String
798
+ def application_name: () -> ::String
799
+ def version_label: () -> ::String
800
+ def solution_stack_name: () -> ::String
801
+ def platform_arn: () -> ::String
802
+ def template_name: () -> ::String
803
+ def description: () -> ::String
804
+ def endpoint_url: () -> ::String
805
+ def cname: () -> ::String
806
+ def date_created: () -> ::Time
807
+ def date_updated: () -> ::Time
808
+ def status: () -> ("Aborting" | "Launching" | "Updating" | "LinkingFrom" | "LinkingTo" | "Ready" | "Terminating" | "Terminated")
809
+ def abortable_operation_in_progress: () -> bool
810
+ def health: () -> ("Green" | "Yellow" | "Red" | "Grey")
811
+ def health_status: () -> ("NoData" | "Unknown" | "Pending" | "Ok" | "Info" | "Warning" | "Degraded" | "Severe" | "Suspended")
812
+ def resources: () -> Types::EnvironmentResourcesDescription
813
+ def tier: () -> Types::EnvironmentTier
814
+ def environment_links: () -> ::Array[Types::EnvironmentLink]
815
+ def environment_arn: () -> ::String
816
+ def operations_role: () -> ::String
817
+ end
818
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ElasticBeanstalk/Client.html#update_environment-instance_method
819
+ def update_environment: (
820
+ ?application_name: ::String,
821
+ ?environment_id: ::String,
822
+ ?environment_name: ::String,
823
+ ?group_name: ::String,
824
+ ?description: ::String,
825
+ ?tier: {
826
+ name: ::String?,
827
+ type: ::String?,
828
+ version: ::String?
829
+ },
830
+ ?version_label: ::String,
831
+ ?template_name: ::String,
832
+ ?solution_stack_name: ::String,
833
+ ?platform_arn: ::String,
834
+ ?option_settings: Array[
835
+ {
836
+ resource_name: ::String?,
837
+ namespace: ::String?,
838
+ option_name: ::String?,
839
+ value: ::String?
840
+ },
841
+ ],
842
+ ?options_to_remove: Array[
843
+ {
844
+ resource_name: ::String?,
845
+ namespace: ::String?,
846
+ option_name: ::String?
847
+ },
848
+ ]
849
+ ) -> _UpdateEnvironmentResponseSuccess
850
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateEnvironmentResponseSuccess
851
+
852
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ElasticBeanstalk/Client.html#update_tags_for_resource-instance_method
853
+ def update_tags_for_resource: (
854
+ resource_arn: ::String,
855
+ ?tags_to_add: Array[
856
+ {
857
+ key: ::String?,
858
+ value: ::String?
859
+ },
860
+ ],
861
+ ?tags_to_remove: Array[::String]
862
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
863
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
864
+
865
+ interface _ValidateConfigurationSettingsResponseSuccess
866
+ include ::Seahorse::Client::_ResponseSuccess[Types::ConfigurationSettingsValidationMessages]
867
+ def messages: () -> ::Array[Types::ValidationMessage]
868
+ end
869
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ElasticBeanstalk/Client.html#validate_configuration_settings-instance_method
870
+ def validate_configuration_settings: (
871
+ application_name: ::String,
872
+ ?template_name: ::String,
873
+ ?environment_name: ::String,
874
+ option_settings: Array[
875
+ {
876
+ resource_name: ::String?,
877
+ namespace: ::String?,
878
+ option_name: ::String?,
879
+ value: ::String?
880
+ },
881
+ ]
882
+ ) -> _ValidateConfigurationSettingsResponseSuccess
883
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ValidateConfigurationSettingsResponseSuccess
884
+
885
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ElasticBeanstalk/Client.html#wait_until-instance_method
886
+ def wait_until: (:environment_exists waiter_name,
887
+ ?application_name: ::String,
888
+ ?version_label: ::String,
889
+ ?environment_ids: Array[::String],
890
+ ?environment_names: Array[::String],
891
+ ?include_deleted: bool,
892
+ ?included_deleted_back_to: ::Time,
893
+ ?max_records: ::Integer,
894
+ ?next_token: ::String
895
+ ) -> Client::_DescribeEnvironmentsResponseSuccess
896
+ | (:environment_exists waiter_name, ?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> Client::_DescribeEnvironmentsResponseSuccess
897
+ | (:environment_terminated waiter_name,
898
+ ?application_name: ::String,
899
+ ?version_label: ::String,
900
+ ?environment_ids: Array[::String],
901
+ ?environment_names: Array[::String],
902
+ ?include_deleted: bool,
903
+ ?included_deleted_back_to: ::Time,
904
+ ?max_records: ::Integer,
905
+ ?next_token: ::String
906
+ ) -> Client::_DescribeEnvironmentsResponseSuccess
907
+ | (:environment_terminated waiter_name, ?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> Client::_DescribeEnvironmentsResponseSuccess
908
+ | (:environment_updated waiter_name,
909
+ ?application_name: ::String,
910
+ ?version_label: ::String,
911
+ ?environment_ids: Array[::String],
912
+ ?environment_names: Array[::String],
913
+ ?include_deleted: bool,
914
+ ?included_deleted_back_to: ::Time,
915
+ ?max_records: ::Integer,
916
+ ?next_token: ::String
917
+ ) -> Client::_DescribeEnvironmentsResponseSuccess
918
+ | (:environment_updated waiter_name, ?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> Client::_DescribeEnvironmentsResponseSuccess
919
+ end
920
+ end
921
+ end
922
+