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