aws-sdk-appconfig 1.11.0 → 1.67.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,848 @@
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 AppConfig
10
+ class Client < ::Seahorse::Client::Base
11
+ include ::Aws::ClientStubs
12
+
13
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppConfig/Client.html#initialize-instance_method
14
+ def self.new: (
15
+ ?credentials: untyped,
16
+ ?region: String,
17
+ ?access_key_id: String,
18
+ ?account_id: String,
19
+ ?active_endpoint_cache: bool,
20
+ ?adaptive_retry_wait_to_fill: bool,
21
+ ?client_side_monitoring: bool,
22
+ ?client_side_monitoring_client_id: String,
23
+ ?client_side_monitoring_host: String,
24
+ ?client_side_monitoring_port: Integer,
25
+ ?client_side_monitoring_publisher: untyped,
26
+ ?convert_params: bool,
27
+ ?correct_clock_skew: bool,
28
+ ?defaults_mode: String,
29
+ ?disable_host_prefix_injection: bool,
30
+ ?disable_request_compression: bool,
31
+ ?endpoint: String,
32
+ ?endpoint_cache_max_entries: Integer,
33
+ ?endpoint_cache_max_threads: Integer,
34
+ ?endpoint_cache_poll_interval: Integer,
35
+ ?endpoint_discovery: bool,
36
+ ?ignore_configured_endpoint_urls: bool,
37
+ ?log_formatter: untyped,
38
+ ?log_level: Symbol,
39
+ ?logger: untyped,
40
+ ?max_attempts: Integer,
41
+ ?profile: String,
42
+ ?request_checksum_calculation: String,
43
+ ?request_min_compression_size_bytes: Integer,
44
+ ?response_checksum_validation: String,
45
+ ?retry_backoff: Proc,
46
+ ?retry_base_delay: Float,
47
+ ?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
48
+ ?retry_limit: Integer,
49
+ ?retry_max_delay: Integer,
50
+ ?retry_mode: ("legacy" | "standard" | "adaptive"),
51
+ ?sdk_ua_app_id: String,
52
+ ?secret_access_key: String,
53
+ ?session_token: String,
54
+ ?sigv4a_signing_region_set: Array[String],
55
+ ?stub_responses: untyped,
56
+ ?telemetry_provider: Aws::Telemetry::TelemetryProviderBase,
57
+ ?token_provider: untyped,
58
+ ?use_dualstack_endpoint: bool,
59
+ ?use_fips_endpoint: bool,
60
+ ?validate_params: bool,
61
+ ?endpoint_provider: untyped,
62
+ ?http_proxy: String,
63
+ ?http_open_timeout: (Float | Integer),
64
+ ?http_read_timeout: (Float | Integer),
65
+ ?http_idle_timeout: (Float | Integer),
66
+ ?http_continue_timeout: (Float | Integer),
67
+ ?ssl_timeout: (Float | Integer | nil),
68
+ ?http_wire_trace: bool,
69
+ ?ssl_verify_peer: bool,
70
+ ?ssl_ca_bundle: String,
71
+ ?ssl_ca_directory: String,
72
+ ?ssl_ca_store: String,
73
+ ?on_chunk_received: Proc,
74
+ ?on_chunk_sent: Proc,
75
+ ?raise_response_errors: bool
76
+ ) -> instance
77
+ | (?Hash[Symbol, untyped]) -> instance
78
+
79
+
80
+ interface _CreateApplicationResponseSuccess
81
+ include ::Seahorse::Client::_ResponseSuccess[Types::Application]
82
+ def id: () -> ::String
83
+ def name: () -> ::String
84
+ def description: () -> ::String
85
+ end
86
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppConfig/Client.html#create_application-instance_method
87
+ def create_application: (
88
+ name: ::String,
89
+ ?description: ::String,
90
+ ?tags: Hash[::String, ::String]
91
+ ) -> _CreateApplicationResponseSuccess
92
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateApplicationResponseSuccess
93
+
94
+ interface _CreateConfigurationProfileResponseSuccess
95
+ include ::Seahorse::Client::_ResponseSuccess[Types::ConfigurationProfile]
96
+ def application_id: () -> ::String
97
+ def id: () -> ::String
98
+ def name: () -> ::String
99
+ def description: () -> ::String
100
+ def location_uri: () -> ::String
101
+ def retrieval_role_arn: () -> ::String
102
+ def validators: () -> ::Array[Types::Validator]
103
+ def type: () -> ::String
104
+ def kms_key_arn: () -> ::String
105
+ def kms_key_identifier: () -> ::String
106
+ end
107
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppConfig/Client.html#create_configuration_profile-instance_method
108
+ def create_configuration_profile: (
109
+ application_id: ::String,
110
+ name: ::String,
111
+ ?description: ::String,
112
+ location_uri: ::String,
113
+ ?retrieval_role_arn: ::String,
114
+ ?validators: Array[
115
+ {
116
+ type: ("JSON_SCHEMA" | "LAMBDA"),
117
+ content: ::String
118
+ },
119
+ ],
120
+ ?tags: Hash[::String, ::String],
121
+ ?type: ::String,
122
+ ?kms_key_identifier: ::String
123
+ ) -> _CreateConfigurationProfileResponseSuccess
124
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateConfigurationProfileResponseSuccess
125
+
126
+ interface _CreateDeploymentStrategyResponseSuccess
127
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeploymentStrategy]
128
+ def id: () -> ::String
129
+ def name: () -> ::String
130
+ def description: () -> ::String
131
+ def deployment_duration_in_minutes: () -> ::Integer
132
+ def growth_type: () -> ("LINEAR" | "EXPONENTIAL")
133
+ def growth_factor: () -> ::Float
134
+ def final_bake_time_in_minutes: () -> ::Integer
135
+ def replicate_to: () -> ("NONE" | "SSM_DOCUMENT")
136
+ end
137
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppConfig/Client.html#create_deployment_strategy-instance_method
138
+ def create_deployment_strategy: (
139
+ name: ::String,
140
+ ?description: ::String,
141
+ deployment_duration_in_minutes: ::Integer,
142
+ ?final_bake_time_in_minutes: ::Integer,
143
+ growth_factor: ::Float,
144
+ ?growth_type: ("LINEAR" | "EXPONENTIAL"),
145
+ ?replicate_to: ("NONE" | "SSM_DOCUMENT"),
146
+ ?tags: Hash[::String, ::String]
147
+ ) -> _CreateDeploymentStrategyResponseSuccess
148
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateDeploymentStrategyResponseSuccess
149
+
150
+ interface _CreateEnvironmentResponseSuccess
151
+ include ::Seahorse::Client::_ResponseSuccess[Types::Environment]
152
+ def application_id: () -> ::String
153
+ def id: () -> ::String
154
+ def name: () -> ::String
155
+ def description: () -> ::String
156
+ def state: () -> ("READY_FOR_DEPLOYMENT" | "DEPLOYING" | "ROLLING_BACK" | "ROLLED_BACK" | "REVERTED")
157
+ def monitors: () -> ::Array[Types::Monitor]
158
+ end
159
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppConfig/Client.html#create_environment-instance_method
160
+ def create_environment: (
161
+ application_id: ::String,
162
+ name: ::String,
163
+ ?description: ::String,
164
+ ?monitors: Array[
165
+ {
166
+ alarm_arn: ::String,
167
+ alarm_role_arn: ::String?
168
+ },
169
+ ],
170
+ ?tags: Hash[::String, ::String]
171
+ ) -> _CreateEnvironmentResponseSuccess
172
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateEnvironmentResponseSuccess
173
+
174
+ interface _CreateExtensionResponseSuccess
175
+ include ::Seahorse::Client::_ResponseSuccess[Types::Extension]
176
+ def id: () -> ::String
177
+ def name: () -> ::String
178
+ def version_number: () -> ::Integer
179
+ def arn: () -> ::String
180
+ def description: () -> ::String
181
+ def actions: () -> ::Hash[("PRE_CREATE_HOSTED_CONFIGURATION_VERSION" | "PRE_START_DEPLOYMENT" | "AT_DEPLOYMENT_TICK" | "ON_DEPLOYMENT_START" | "ON_DEPLOYMENT_STEP" | "ON_DEPLOYMENT_BAKING" | "ON_DEPLOYMENT_COMPLETE" | "ON_DEPLOYMENT_ROLLED_BACK"), ::Array[Types::Action]]
182
+ def parameters: () -> ::Hash[::String, Types::Parameter]
183
+ end
184
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppConfig/Client.html#create_extension-instance_method
185
+ def create_extension: (
186
+ name: ::String,
187
+ ?description: ::String,
188
+ actions: Hash[("PRE_CREATE_HOSTED_CONFIGURATION_VERSION" | "PRE_START_DEPLOYMENT" | "AT_DEPLOYMENT_TICK" | "ON_DEPLOYMENT_START" | "ON_DEPLOYMENT_STEP" | "ON_DEPLOYMENT_BAKING" | "ON_DEPLOYMENT_COMPLETE" | "ON_DEPLOYMENT_ROLLED_BACK"), Array[
189
+ {
190
+ name: ::String?,
191
+ description: ::String?,
192
+ uri: ::String?,
193
+ role_arn: ::String?
194
+ },
195
+ ]],
196
+ ?parameters: Hash[::String, {
197
+ description: ::String?,
198
+ required: bool?,
199
+ dynamic: bool?
200
+ }],
201
+ ?tags: Hash[::String, ::String],
202
+ ?latest_version_number: ::Integer
203
+ ) -> _CreateExtensionResponseSuccess
204
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateExtensionResponseSuccess
205
+
206
+ interface _CreateExtensionAssociationResponseSuccess
207
+ include ::Seahorse::Client::_ResponseSuccess[Types::ExtensionAssociation]
208
+ def id: () -> ::String
209
+ def extension_arn: () -> ::String
210
+ def resource_arn: () -> ::String
211
+ def arn: () -> ::String
212
+ def parameters: () -> ::Hash[::String, ::String]
213
+ def extension_version_number: () -> ::Integer
214
+ end
215
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppConfig/Client.html#create_extension_association-instance_method
216
+ def create_extension_association: (
217
+ extension_identifier: ::String,
218
+ ?extension_version_number: ::Integer,
219
+ resource_identifier: ::String,
220
+ ?parameters: Hash[::String, ::String],
221
+ ?tags: Hash[::String, ::String]
222
+ ) -> _CreateExtensionAssociationResponseSuccess
223
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateExtensionAssociationResponseSuccess
224
+
225
+ interface _CreateHostedConfigurationVersionResponseSuccess
226
+ include ::Seahorse::Client::_ResponseSuccess[Types::HostedConfigurationVersion]
227
+ def application_id: () -> ::String
228
+ def configuration_profile_id: () -> ::String
229
+ def version_number: () -> ::Integer
230
+ def description: () -> ::String
231
+ def content: () -> ::String
232
+ def content_type: () -> ::String
233
+ def version_label: () -> ::String
234
+ def kms_key_arn: () -> ::String
235
+ end
236
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppConfig/Client.html#create_hosted_configuration_version-instance_method
237
+ def create_hosted_configuration_version: (
238
+ application_id: ::String,
239
+ configuration_profile_id: ::String,
240
+ ?description: ::String,
241
+ content: ::String,
242
+ content_type: ::String,
243
+ ?latest_version_number: ::Integer,
244
+ ?version_label: ::String
245
+ ) -> _CreateHostedConfigurationVersionResponseSuccess
246
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateHostedConfigurationVersionResponseSuccess
247
+
248
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppConfig/Client.html#delete_application-instance_method
249
+ def delete_application: (
250
+ application_id: ::String
251
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
252
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
253
+
254
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppConfig/Client.html#delete_configuration_profile-instance_method
255
+ def delete_configuration_profile: (
256
+ application_id: ::String,
257
+ configuration_profile_id: ::String,
258
+ ?deletion_protection_check: ("ACCOUNT_DEFAULT" | "APPLY" | "BYPASS")
259
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
260
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
261
+
262
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppConfig/Client.html#delete_deployment_strategy-instance_method
263
+ def delete_deployment_strategy: (
264
+ deployment_strategy_id: ::String
265
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
266
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
267
+
268
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppConfig/Client.html#delete_environment-instance_method
269
+ def delete_environment: (
270
+ environment_id: ::String,
271
+ application_id: ::String,
272
+ ?deletion_protection_check: ("ACCOUNT_DEFAULT" | "APPLY" | "BYPASS")
273
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
274
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
275
+
276
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppConfig/Client.html#delete_extension-instance_method
277
+ def delete_extension: (
278
+ extension_identifier: ::String,
279
+ ?version_number: ::Integer
280
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
281
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
282
+
283
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppConfig/Client.html#delete_extension_association-instance_method
284
+ def delete_extension_association: (
285
+ extension_association_id: ::String
286
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
287
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
288
+
289
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppConfig/Client.html#delete_hosted_configuration_version-instance_method
290
+ def delete_hosted_configuration_version: (
291
+ application_id: ::String,
292
+ configuration_profile_id: ::String,
293
+ version_number: ::Integer
294
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
295
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
296
+
297
+ interface _GetAccountSettingsResponseSuccess
298
+ include ::Seahorse::Client::_ResponseSuccess[Types::AccountSettings]
299
+ def deletion_protection: () -> Types::DeletionProtectionSettings
300
+ end
301
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppConfig/Client.html#get_account_settings-instance_method
302
+ def get_account_settings: () -> _GetAccountSettingsResponseSuccess
303
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetAccountSettingsResponseSuccess
304
+
305
+ interface _GetApplicationResponseSuccess
306
+ include ::Seahorse::Client::_ResponseSuccess[Types::Application]
307
+ def id: () -> ::String
308
+ def name: () -> ::String
309
+ def description: () -> ::String
310
+ end
311
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppConfig/Client.html#get_application-instance_method
312
+ def get_application: (
313
+ application_id: ::String
314
+ ) -> _GetApplicationResponseSuccess
315
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetApplicationResponseSuccess
316
+
317
+ interface _GetConfigurationResponseSuccess
318
+ include ::Seahorse::Client::_ResponseSuccess[Types::Configuration]
319
+ def content: () -> ::String
320
+ def configuration_version: () -> ::String
321
+ def content_type: () -> ::String
322
+ end
323
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppConfig/Client.html#get_configuration-instance_method
324
+ def get_configuration: (
325
+ application: ::String,
326
+ environment: ::String,
327
+ configuration: ::String,
328
+ client_id: ::String,
329
+ ?client_configuration_version: ::String
330
+ ) -> _GetConfigurationResponseSuccess
331
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetConfigurationResponseSuccess
332
+
333
+ interface _GetConfigurationProfileResponseSuccess
334
+ include ::Seahorse::Client::_ResponseSuccess[Types::ConfigurationProfile]
335
+ def application_id: () -> ::String
336
+ def id: () -> ::String
337
+ def name: () -> ::String
338
+ def description: () -> ::String
339
+ def location_uri: () -> ::String
340
+ def retrieval_role_arn: () -> ::String
341
+ def validators: () -> ::Array[Types::Validator]
342
+ def type: () -> ::String
343
+ def kms_key_arn: () -> ::String
344
+ def kms_key_identifier: () -> ::String
345
+ end
346
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppConfig/Client.html#get_configuration_profile-instance_method
347
+ def get_configuration_profile: (
348
+ application_id: ::String,
349
+ configuration_profile_id: ::String
350
+ ) -> _GetConfigurationProfileResponseSuccess
351
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetConfigurationProfileResponseSuccess
352
+
353
+ interface _GetDeploymentResponseSuccess
354
+ include ::Seahorse::Client::_ResponseSuccess[Types::Deployment]
355
+ def application_id: () -> ::String
356
+ def environment_id: () -> ::String
357
+ def deployment_strategy_id: () -> ::String
358
+ def configuration_profile_id: () -> ::String
359
+ def deployment_number: () -> ::Integer
360
+ def configuration_name: () -> ::String
361
+ def configuration_location_uri: () -> ::String
362
+ def configuration_version: () -> ::String
363
+ def description: () -> ::String
364
+ def deployment_duration_in_minutes: () -> ::Integer
365
+ def growth_type: () -> ("LINEAR" | "EXPONENTIAL")
366
+ def growth_factor: () -> ::Float
367
+ def final_bake_time_in_minutes: () -> ::Integer
368
+ def state: () -> ("BAKING" | "VALIDATING" | "DEPLOYING" | "COMPLETE" | "ROLLING_BACK" | "ROLLED_BACK" | "REVERTED")
369
+ def event_log: () -> ::Array[Types::DeploymentEvent]
370
+ def percentage_complete: () -> ::Float
371
+ def started_at: () -> ::Time
372
+ def completed_at: () -> ::Time
373
+ def applied_extensions: () -> ::Array[Types::AppliedExtension]
374
+ def kms_key_arn: () -> ::String
375
+ def kms_key_identifier: () -> ::String
376
+ def version_label: () -> ::String
377
+ end
378
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppConfig/Client.html#get_deployment-instance_method
379
+ def get_deployment: (
380
+ application_id: ::String,
381
+ environment_id: ::String,
382
+ deployment_number: ::Integer
383
+ ) -> _GetDeploymentResponseSuccess
384
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetDeploymentResponseSuccess
385
+
386
+ interface _GetDeploymentStrategyResponseSuccess
387
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeploymentStrategy]
388
+ def id: () -> ::String
389
+ def name: () -> ::String
390
+ def description: () -> ::String
391
+ def deployment_duration_in_minutes: () -> ::Integer
392
+ def growth_type: () -> ("LINEAR" | "EXPONENTIAL")
393
+ def growth_factor: () -> ::Float
394
+ def final_bake_time_in_minutes: () -> ::Integer
395
+ def replicate_to: () -> ("NONE" | "SSM_DOCUMENT")
396
+ end
397
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppConfig/Client.html#get_deployment_strategy-instance_method
398
+ def get_deployment_strategy: (
399
+ deployment_strategy_id: ::String
400
+ ) -> _GetDeploymentStrategyResponseSuccess
401
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetDeploymentStrategyResponseSuccess
402
+
403
+ interface _GetEnvironmentResponseSuccess
404
+ include ::Seahorse::Client::_ResponseSuccess[Types::Environment]
405
+ def application_id: () -> ::String
406
+ def id: () -> ::String
407
+ def name: () -> ::String
408
+ def description: () -> ::String
409
+ def state: () -> ("READY_FOR_DEPLOYMENT" | "DEPLOYING" | "ROLLING_BACK" | "ROLLED_BACK" | "REVERTED")
410
+ def monitors: () -> ::Array[Types::Monitor]
411
+ end
412
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppConfig/Client.html#get_environment-instance_method
413
+ def get_environment: (
414
+ application_id: ::String,
415
+ environment_id: ::String
416
+ ) -> _GetEnvironmentResponseSuccess
417
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetEnvironmentResponseSuccess
418
+
419
+ interface _GetExtensionResponseSuccess
420
+ include ::Seahorse::Client::_ResponseSuccess[Types::Extension]
421
+ def id: () -> ::String
422
+ def name: () -> ::String
423
+ def version_number: () -> ::Integer
424
+ def arn: () -> ::String
425
+ def description: () -> ::String
426
+ def actions: () -> ::Hash[("PRE_CREATE_HOSTED_CONFIGURATION_VERSION" | "PRE_START_DEPLOYMENT" | "AT_DEPLOYMENT_TICK" | "ON_DEPLOYMENT_START" | "ON_DEPLOYMENT_STEP" | "ON_DEPLOYMENT_BAKING" | "ON_DEPLOYMENT_COMPLETE" | "ON_DEPLOYMENT_ROLLED_BACK"), ::Array[Types::Action]]
427
+ def parameters: () -> ::Hash[::String, Types::Parameter]
428
+ end
429
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppConfig/Client.html#get_extension-instance_method
430
+ def get_extension: (
431
+ extension_identifier: ::String,
432
+ ?version_number: ::Integer
433
+ ) -> _GetExtensionResponseSuccess
434
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetExtensionResponseSuccess
435
+
436
+ interface _GetExtensionAssociationResponseSuccess
437
+ include ::Seahorse::Client::_ResponseSuccess[Types::ExtensionAssociation]
438
+ def id: () -> ::String
439
+ def extension_arn: () -> ::String
440
+ def resource_arn: () -> ::String
441
+ def arn: () -> ::String
442
+ def parameters: () -> ::Hash[::String, ::String]
443
+ def extension_version_number: () -> ::Integer
444
+ end
445
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppConfig/Client.html#get_extension_association-instance_method
446
+ def get_extension_association: (
447
+ extension_association_id: ::String
448
+ ) -> _GetExtensionAssociationResponseSuccess
449
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetExtensionAssociationResponseSuccess
450
+
451
+ interface _GetHostedConfigurationVersionResponseSuccess
452
+ include ::Seahorse::Client::_ResponseSuccess[Types::HostedConfigurationVersion]
453
+ def application_id: () -> ::String
454
+ def configuration_profile_id: () -> ::String
455
+ def version_number: () -> ::Integer
456
+ def description: () -> ::String
457
+ def content: () -> ::String
458
+ def content_type: () -> ::String
459
+ def version_label: () -> ::String
460
+ def kms_key_arn: () -> ::String
461
+ end
462
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppConfig/Client.html#get_hosted_configuration_version-instance_method
463
+ def get_hosted_configuration_version: (
464
+ application_id: ::String,
465
+ configuration_profile_id: ::String,
466
+ version_number: ::Integer
467
+ ) -> _GetHostedConfigurationVersionResponseSuccess
468
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetHostedConfigurationVersionResponseSuccess
469
+
470
+ interface _ListApplicationsResponseSuccess
471
+ include ::Seahorse::Client::_ResponseSuccess[Types::Applications]
472
+ def items: () -> ::Array[Types::Application]
473
+ def next_token: () -> ::String
474
+ end
475
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppConfig/Client.html#list_applications-instance_method
476
+ def list_applications: (
477
+ ?max_results: ::Integer,
478
+ ?next_token: ::String
479
+ ) -> _ListApplicationsResponseSuccess
480
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListApplicationsResponseSuccess
481
+
482
+ interface _ListConfigurationProfilesResponseSuccess
483
+ include ::Seahorse::Client::_ResponseSuccess[Types::ConfigurationProfiles]
484
+ def items: () -> ::Array[Types::ConfigurationProfileSummary]
485
+ def next_token: () -> ::String
486
+ end
487
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppConfig/Client.html#list_configuration_profiles-instance_method
488
+ def list_configuration_profiles: (
489
+ application_id: ::String,
490
+ ?max_results: ::Integer,
491
+ ?next_token: ::String,
492
+ ?type: ::String
493
+ ) -> _ListConfigurationProfilesResponseSuccess
494
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListConfigurationProfilesResponseSuccess
495
+
496
+ interface _ListDeploymentStrategiesResponseSuccess
497
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeploymentStrategies]
498
+ def items: () -> ::Array[Types::DeploymentStrategy]
499
+ def next_token: () -> ::String
500
+ end
501
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppConfig/Client.html#list_deployment_strategies-instance_method
502
+ def list_deployment_strategies: (
503
+ ?max_results: ::Integer,
504
+ ?next_token: ::String
505
+ ) -> _ListDeploymentStrategiesResponseSuccess
506
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListDeploymentStrategiesResponseSuccess
507
+
508
+ interface _ListDeploymentsResponseSuccess
509
+ include ::Seahorse::Client::_ResponseSuccess[Types::Deployments]
510
+ def items: () -> ::Array[Types::DeploymentSummary]
511
+ def next_token: () -> ::String
512
+ end
513
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppConfig/Client.html#list_deployments-instance_method
514
+ def list_deployments: (
515
+ application_id: ::String,
516
+ environment_id: ::String,
517
+ ?max_results: ::Integer,
518
+ ?next_token: ::String
519
+ ) -> _ListDeploymentsResponseSuccess
520
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListDeploymentsResponseSuccess
521
+
522
+ interface _ListEnvironmentsResponseSuccess
523
+ include ::Seahorse::Client::_ResponseSuccess[Types::Environments]
524
+ def items: () -> ::Array[Types::Environment]
525
+ def next_token: () -> ::String
526
+ end
527
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppConfig/Client.html#list_environments-instance_method
528
+ def list_environments: (
529
+ application_id: ::String,
530
+ ?max_results: ::Integer,
531
+ ?next_token: ::String
532
+ ) -> _ListEnvironmentsResponseSuccess
533
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListEnvironmentsResponseSuccess
534
+
535
+ interface _ListExtensionAssociationsResponseSuccess
536
+ include ::Seahorse::Client::_ResponseSuccess[Types::ExtensionAssociations]
537
+ def items: () -> ::Array[Types::ExtensionAssociationSummary]
538
+ def next_token: () -> ::String
539
+ end
540
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppConfig/Client.html#list_extension_associations-instance_method
541
+ def list_extension_associations: (
542
+ ?resource_identifier: ::String,
543
+ ?extension_identifier: ::String,
544
+ ?extension_version_number: ::Integer,
545
+ ?max_results: ::Integer,
546
+ ?next_token: ::String
547
+ ) -> _ListExtensionAssociationsResponseSuccess
548
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListExtensionAssociationsResponseSuccess
549
+
550
+ interface _ListExtensionsResponseSuccess
551
+ include ::Seahorse::Client::_ResponseSuccess[Types::Extensions]
552
+ def items: () -> ::Array[Types::ExtensionSummary]
553
+ def next_token: () -> ::String
554
+ end
555
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppConfig/Client.html#list_extensions-instance_method
556
+ def list_extensions: (
557
+ ?max_results: ::Integer,
558
+ ?next_token: ::String,
559
+ ?name: ::String
560
+ ) -> _ListExtensionsResponseSuccess
561
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListExtensionsResponseSuccess
562
+
563
+ interface _ListHostedConfigurationVersionsResponseSuccess
564
+ include ::Seahorse::Client::_ResponseSuccess[Types::HostedConfigurationVersions]
565
+ def items: () -> ::Array[Types::HostedConfigurationVersionSummary]
566
+ def next_token: () -> ::String
567
+ end
568
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppConfig/Client.html#list_hosted_configuration_versions-instance_method
569
+ def list_hosted_configuration_versions: (
570
+ application_id: ::String,
571
+ configuration_profile_id: ::String,
572
+ ?max_results: ::Integer,
573
+ ?next_token: ::String,
574
+ ?version_label: ::String
575
+ ) -> _ListHostedConfigurationVersionsResponseSuccess
576
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListHostedConfigurationVersionsResponseSuccess
577
+
578
+ interface _ListTagsForResourceResponseSuccess
579
+ include ::Seahorse::Client::_ResponseSuccess[Types::ResourceTags]
580
+ def tags: () -> ::Hash[::String, ::String]
581
+ end
582
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppConfig/Client.html#list_tags_for_resource-instance_method
583
+ def list_tags_for_resource: (
584
+ resource_arn: ::String
585
+ ) -> _ListTagsForResourceResponseSuccess
586
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListTagsForResourceResponseSuccess
587
+
588
+ interface _StartDeploymentResponseSuccess
589
+ include ::Seahorse::Client::_ResponseSuccess[Types::Deployment]
590
+ def application_id: () -> ::String
591
+ def environment_id: () -> ::String
592
+ def deployment_strategy_id: () -> ::String
593
+ def configuration_profile_id: () -> ::String
594
+ def deployment_number: () -> ::Integer
595
+ def configuration_name: () -> ::String
596
+ def configuration_location_uri: () -> ::String
597
+ def configuration_version: () -> ::String
598
+ def description: () -> ::String
599
+ def deployment_duration_in_minutes: () -> ::Integer
600
+ def growth_type: () -> ("LINEAR" | "EXPONENTIAL")
601
+ def growth_factor: () -> ::Float
602
+ def final_bake_time_in_minutes: () -> ::Integer
603
+ def state: () -> ("BAKING" | "VALIDATING" | "DEPLOYING" | "COMPLETE" | "ROLLING_BACK" | "ROLLED_BACK" | "REVERTED")
604
+ def event_log: () -> ::Array[Types::DeploymentEvent]
605
+ def percentage_complete: () -> ::Float
606
+ def started_at: () -> ::Time
607
+ def completed_at: () -> ::Time
608
+ def applied_extensions: () -> ::Array[Types::AppliedExtension]
609
+ def kms_key_arn: () -> ::String
610
+ def kms_key_identifier: () -> ::String
611
+ def version_label: () -> ::String
612
+ end
613
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppConfig/Client.html#start_deployment-instance_method
614
+ def start_deployment: (
615
+ application_id: ::String,
616
+ environment_id: ::String,
617
+ deployment_strategy_id: ::String,
618
+ configuration_profile_id: ::String,
619
+ configuration_version: ::String,
620
+ ?description: ::String,
621
+ ?tags: Hash[::String, ::String],
622
+ ?kms_key_identifier: ::String,
623
+ ?dynamic_extension_parameters: Hash[::String, ::String]
624
+ ) -> _StartDeploymentResponseSuccess
625
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartDeploymentResponseSuccess
626
+
627
+ interface _StopDeploymentResponseSuccess
628
+ include ::Seahorse::Client::_ResponseSuccess[Types::Deployment]
629
+ def application_id: () -> ::String
630
+ def environment_id: () -> ::String
631
+ def deployment_strategy_id: () -> ::String
632
+ def configuration_profile_id: () -> ::String
633
+ def deployment_number: () -> ::Integer
634
+ def configuration_name: () -> ::String
635
+ def configuration_location_uri: () -> ::String
636
+ def configuration_version: () -> ::String
637
+ def description: () -> ::String
638
+ def deployment_duration_in_minutes: () -> ::Integer
639
+ def growth_type: () -> ("LINEAR" | "EXPONENTIAL")
640
+ def growth_factor: () -> ::Float
641
+ def final_bake_time_in_minutes: () -> ::Integer
642
+ def state: () -> ("BAKING" | "VALIDATING" | "DEPLOYING" | "COMPLETE" | "ROLLING_BACK" | "ROLLED_BACK" | "REVERTED")
643
+ def event_log: () -> ::Array[Types::DeploymentEvent]
644
+ def percentage_complete: () -> ::Float
645
+ def started_at: () -> ::Time
646
+ def completed_at: () -> ::Time
647
+ def applied_extensions: () -> ::Array[Types::AppliedExtension]
648
+ def kms_key_arn: () -> ::String
649
+ def kms_key_identifier: () -> ::String
650
+ def version_label: () -> ::String
651
+ end
652
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppConfig/Client.html#stop_deployment-instance_method
653
+ def stop_deployment: (
654
+ application_id: ::String,
655
+ environment_id: ::String,
656
+ deployment_number: ::Integer,
657
+ ?allow_revert: bool
658
+ ) -> _StopDeploymentResponseSuccess
659
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StopDeploymentResponseSuccess
660
+
661
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppConfig/Client.html#tag_resource-instance_method
662
+ def tag_resource: (
663
+ resource_arn: ::String,
664
+ tags: Hash[::String, ::String]
665
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
666
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
667
+
668
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppConfig/Client.html#untag_resource-instance_method
669
+ def untag_resource: (
670
+ resource_arn: ::String,
671
+ tag_keys: Array[::String]
672
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
673
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
674
+
675
+ interface _UpdateAccountSettingsResponseSuccess
676
+ include ::Seahorse::Client::_ResponseSuccess[Types::AccountSettings]
677
+ def deletion_protection: () -> Types::DeletionProtectionSettings
678
+ end
679
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppConfig/Client.html#update_account_settings-instance_method
680
+ def update_account_settings: (
681
+ ?deletion_protection: {
682
+ enabled: bool?,
683
+ protection_period_in_minutes: ::Integer?
684
+ }
685
+ ) -> _UpdateAccountSettingsResponseSuccess
686
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateAccountSettingsResponseSuccess
687
+
688
+ interface _UpdateApplicationResponseSuccess
689
+ include ::Seahorse::Client::_ResponseSuccess[Types::Application]
690
+ def id: () -> ::String
691
+ def name: () -> ::String
692
+ def description: () -> ::String
693
+ end
694
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppConfig/Client.html#update_application-instance_method
695
+ def update_application: (
696
+ application_id: ::String,
697
+ ?name: ::String,
698
+ ?description: ::String
699
+ ) -> _UpdateApplicationResponseSuccess
700
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateApplicationResponseSuccess
701
+
702
+ interface _UpdateConfigurationProfileResponseSuccess
703
+ include ::Seahorse::Client::_ResponseSuccess[Types::ConfigurationProfile]
704
+ def application_id: () -> ::String
705
+ def id: () -> ::String
706
+ def name: () -> ::String
707
+ def description: () -> ::String
708
+ def location_uri: () -> ::String
709
+ def retrieval_role_arn: () -> ::String
710
+ def validators: () -> ::Array[Types::Validator]
711
+ def type: () -> ::String
712
+ def kms_key_arn: () -> ::String
713
+ def kms_key_identifier: () -> ::String
714
+ end
715
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppConfig/Client.html#update_configuration_profile-instance_method
716
+ def update_configuration_profile: (
717
+ application_id: ::String,
718
+ configuration_profile_id: ::String,
719
+ ?name: ::String,
720
+ ?description: ::String,
721
+ ?retrieval_role_arn: ::String,
722
+ ?validators: Array[
723
+ {
724
+ type: ("JSON_SCHEMA" | "LAMBDA"),
725
+ content: ::String
726
+ },
727
+ ],
728
+ ?kms_key_identifier: ::String
729
+ ) -> _UpdateConfigurationProfileResponseSuccess
730
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateConfigurationProfileResponseSuccess
731
+
732
+ interface _UpdateDeploymentStrategyResponseSuccess
733
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeploymentStrategy]
734
+ def id: () -> ::String
735
+ def name: () -> ::String
736
+ def description: () -> ::String
737
+ def deployment_duration_in_minutes: () -> ::Integer
738
+ def growth_type: () -> ("LINEAR" | "EXPONENTIAL")
739
+ def growth_factor: () -> ::Float
740
+ def final_bake_time_in_minutes: () -> ::Integer
741
+ def replicate_to: () -> ("NONE" | "SSM_DOCUMENT")
742
+ end
743
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppConfig/Client.html#update_deployment_strategy-instance_method
744
+ def update_deployment_strategy: (
745
+ deployment_strategy_id: ::String,
746
+ ?description: ::String,
747
+ ?deployment_duration_in_minutes: ::Integer,
748
+ ?final_bake_time_in_minutes: ::Integer,
749
+ ?growth_factor: ::Float,
750
+ ?growth_type: ("LINEAR" | "EXPONENTIAL")
751
+ ) -> _UpdateDeploymentStrategyResponseSuccess
752
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateDeploymentStrategyResponseSuccess
753
+
754
+ interface _UpdateEnvironmentResponseSuccess
755
+ include ::Seahorse::Client::_ResponseSuccess[Types::Environment]
756
+ def application_id: () -> ::String
757
+ def id: () -> ::String
758
+ def name: () -> ::String
759
+ def description: () -> ::String
760
+ def state: () -> ("READY_FOR_DEPLOYMENT" | "DEPLOYING" | "ROLLING_BACK" | "ROLLED_BACK" | "REVERTED")
761
+ def monitors: () -> ::Array[Types::Monitor]
762
+ end
763
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppConfig/Client.html#update_environment-instance_method
764
+ def update_environment: (
765
+ application_id: ::String,
766
+ environment_id: ::String,
767
+ ?name: ::String,
768
+ ?description: ::String,
769
+ ?monitors: Array[
770
+ {
771
+ alarm_arn: ::String,
772
+ alarm_role_arn: ::String?
773
+ },
774
+ ]
775
+ ) -> _UpdateEnvironmentResponseSuccess
776
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateEnvironmentResponseSuccess
777
+
778
+ interface _UpdateExtensionResponseSuccess
779
+ include ::Seahorse::Client::_ResponseSuccess[Types::Extension]
780
+ def id: () -> ::String
781
+ def name: () -> ::String
782
+ def version_number: () -> ::Integer
783
+ def arn: () -> ::String
784
+ def description: () -> ::String
785
+ def actions: () -> ::Hash[("PRE_CREATE_HOSTED_CONFIGURATION_VERSION" | "PRE_START_DEPLOYMENT" | "AT_DEPLOYMENT_TICK" | "ON_DEPLOYMENT_START" | "ON_DEPLOYMENT_STEP" | "ON_DEPLOYMENT_BAKING" | "ON_DEPLOYMENT_COMPLETE" | "ON_DEPLOYMENT_ROLLED_BACK"), ::Array[Types::Action]]
786
+ def parameters: () -> ::Hash[::String, Types::Parameter]
787
+ end
788
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppConfig/Client.html#update_extension-instance_method
789
+ def update_extension: (
790
+ extension_identifier: ::String,
791
+ ?description: ::String,
792
+ ?actions: Hash[("PRE_CREATE_HOSTED_CONFIGURATION_VERSION" | "PRE_START_DEPLOYMENT" | "AT_DEPLOYMENT_TICK" | "ON_DEPLOYMENT_START" | "ON_DEPLOYMENT_STEP" | "ON_DEPLOYMENT_BAKING" | "ON_DEPLOYMENT_COMPLETE" | "ON_DEPLOYMENT_ROLLED_BACK"), Array[
793
+ {
794
+ name: ::String?,
795
+ description: ::String?,
796
+ uri: ::String?,
797
+ role_arn: ::String?
798
+ },
799
+ ]],
800
+ ?parameters: Hash[::String, {
801
+ description: ::String?,
802
+ required: bool?,
803
+ dynamic: bool?
804
+ }],
805
+ ?version_number: ::Integer
806
+ ) -> _UpdateExtensionResponseSuccess
807
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateExtensionResponseSuccess
808
+
809
+ interface _UpdateExtensionAssociationResponseSuccess
810
+ include ::Seahorse::Client::_ResponseSuccess[Types::ExtensionAssociation]
811
+ def id: () -> ::String
812
+ def extension_arn: () -> ::String
813
+ def resource_arn: () -> ::String
814
+ def arn: () -> ::String
815
+ def parameters: () -> ::Hash[::String, ::String]
816
+ def extension_version_number: () -> ::Integer
817
+ end
818
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppConfig/Client.html#update_extension_association-instance_method
819
+ def update_extension_association: (
820
+ extension_association_id: ::String,
821
+ ?parameters: Hash[::String, ::String]
822
+ ) -> _UpdateExtensionAssociationResponseSuccess
823
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateExtensionAssociationResponseSuccess
824
+
825
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppConfig/Client.html#validate_configuration-instance_method
826
+ def validate_configuration: (
827
+ application_id: ::String,
828
+ configuration_profile_id: ::String,
829
+ configuration_version: ::String
830
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
831
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
832
+
833
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppConfig/Client.html#wait_until-instance_method
834
+ def wait_until: (:deployment_complete waiter_name,
835
+ application_id: ::String,
836
+ environment_id: ::String,
837
+ deployment_number: ::Integer
838
+ ) -> Client::_GetDeploymentResponseSuccess
839
+ | (:deployment_complete waiter_name, Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> Client::_GetDeploymentResponseSuccess
840
+ | (:environment_ready_for_deployment waiter_name,
841
+ application_id: ::String,
842
+ environment_id: ::String
843
+ ) -> Client::_GetEnvironmentResponseSuccess
844
+ | (:environment_ready_for_deployment waiter_name, Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> Client::_GetEnvironmentResponseSuccess
845
+ end
846
+ end
847
+ end
848
+