aws-sdk-appconfig 1.42.0 → 1.44.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,806 @@
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
+ dynamic: bool?
195
+ }],
196
+ ?tags: Hash[::String, ::String],
197
+ ?latest_version_number: ::Integer
198
+ ) -> _CreateExtensionResponseSuccess
199
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateExtensionResponseSuccess
200
+
201
+ interface _CreateExtensionAssociationResponseSuccess
202
+ include ::Seahorse::Client::_ResponseSuccess[Types::ExtensionAssociation]
203
+ def id: () -> ::String
204
+ def extension_arn: () -> ::String
205
+ def resource_arn: () -> ::String
206
+ def arn: () -> ::String
207
+ def parameters: () -> ::Hash[::String, ::String]
208
+ def extension_version_number: () -> ::Integer
209
+ end
210
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppConfig/Client.html#create_extension_association-instance_method
211
+ def create_extension_association: (
212
+ extension_identifier: ::String,
213
+ ?extension_version_number: ::Integer,
214
+ resource_identifier: ::String,
215
+ ?parameters: Hash[::String, ::String],
216
+ ?tags: Hash[::String, ::String]
217
+ ) -> _CreateExtensionAssociationResponseSuccess
218
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateExtensionAssociationResponseSuccess
219
+
220
+ interface _CreateHostedConfigurationVersionResponseSuccess
221
+ include ::Seahorse::Client::_ResponseSuccess[Types::HostedConfigurationVersion]
222
+ def application_id: () -> ::String
223
+ def configuration_profile_id: () -> ::String
224
+ def version_number: () -> ::Integer
225
+ def description: () -> ::String
226
+ def content: () -> ::String
227
+ def content_type: () -> ::String
228
+ def version_label: () -> ::String
229
+ def kms_key_arn: () -> ::String
230
+ end
231
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppConfig/Client.html#create_hosted_configuration_version-instance_method
232
+ def create_hosted_configuration_version: (
233
+ application_id: ::String,
234
+ configuration_profile_id: ::String,
235
+ ?description: ::String,
236
+ content: ::String,
237
+ content_type: ::String,
238
+ ?latest_version_number: ::Integer,
239
+ ?version_label: ::String
240
+ ) -> _CreateHostedConfigurationVersionResponseSuccess
241
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateHostedConfigurationVersionResponseSuccess
242
+
243
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppConfig/Client.html#delete_application-instance_method
244
+ def delete_application: (
245
+ application_id: ::String
246
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
247
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
248
+
249
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppConfig/Client.html#delete_configuration_profile-instance_method
250
+ def delete_configuration_profile: (
251
+ application_id: ::String,
252
+ configuration_profile_id: ::String
253
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
254
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
255
+
256
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppConfig/Client.html#delete_deployment_strategy-instance_method
257
+ def delete_deployment_strategy: (
258
+ deployment_strategy_id: ::String
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_environment-instance_method
263
+ def delete_environment: (
264
+ application_id: ::String,
265
+ environment_id: ::String
266
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
267
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
268
+
269
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppConfig/Client.html#delete_extension-instance_method
270
+ def delete_extension: (
271
+ extension_identifier: ::String,
272
+ ?version_number: ::Integer
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_association-instance_method
277
+ def delete_extension_association: (
278
+ extension_association_id: ::String
279
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
280
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
281
+
282
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppConfig/Client.html#delete_hosted_configuration_version-instance_method
283
+ def delete_hosted_configuration_version: (
284
+ application_id: ::String,
285
+ configuration_profile_id: ::String,
286
+ version_number: ::Integer
287
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
288
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
289
+
290
+ interface _GetApplicationResponseSuccess
291
+ include ::Seahorse::Client::_ResponseSuccess[Types::Application]
292
+ def id: () -> ::String
293
+ def name: () -> ::String
294
+ def description: () -> ::String
295
+ end
296
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppConfig/Client.html#get_application-instance_method
297
+ def get_application: (
298
+ application_id: ::String
299
+ ) -> _GetApplicationResponseSuccess
300
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetApplicationResponseSuccess
301
+
302
+ interface _GetConfigurationResponseSuccess
303
+ include ::Seahorse::Client::_ResponseSuccess[Types::Configuration]
304
+ def content: () -> ::String
305
+ def configuration_version: () -> ::String
306
+ def content_type: () -> ::String
307
+ end
308
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppConfig/Client.html#get_configuration-instance_method
309
+ def get_configuration: (
310
+ application: ::String,
311
+ environment: ::String,
312
+ configuration: ::String,
313
+ client_id: ::String,
314
+ ?client_configuration_version: ::String
315
+ ) -> _GetConfigurationResponseSuccess
316
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetConfigurationResponseSuccess
317
+
318
+ interface _GetConfigurationProfileResponseSuccess
319
+ include ::Seahorse::Client::_ResponseSuccess[Types::ConfigurationProfile]
320
+ def application_id: () -> ::String
321
+ def id: () -> ::String
322
+ def name: () -> ::String
323
+ def description: () -> ::String
324
+ def location_uri: () -> ::String
325
+ def retrieval_role_arn: () -> ::String
326
+ def validators: () -> ::Array[Types::Validator]
327
+ def type: () -> ::String
328
+ def kms_key_arn: () -> ::String
329
+ def kms_key_identifier: () -> ::String
330
+ end
331
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppConfig/Client.html#get_configuration_profile-instance_method
332
+ def get_configuration_profile: (
333
+ application_id: ::String,
334
+ configuration_profile_id: ::String
335
+ ) -> _GetConfigurationProfileResponseSuccess
336
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetConfigurationProfileResponseSuccess
337
+
338
+ interface _GetDeploymentResponseSuccess
339
+ include ::Seahorse::Client::_ResponseSuccess[Types::Deployment]
340
+ def application_id: () -> ::String
341
+ def environment_id: () -> ::String
342
+ def deployment_strategy_id: () -> ::String
343
+ def configuration_profile_id: () -> ::String
344
+ def deployment_number: () -> ::Integer
345
+ def configuration_name: () -> ::String
346
+ def configuration_location_uri: () -> ::String
347
+ def configuration_version: () -> ::String
348
+ def description: () -> ::String
349
+ def deployment_duration_in_minutes: () -> ::Integer
350
+ def growth_type: () -> ("LINEAR" | "EXPONENTIAL")
351
+ def growth_factor: () -> ::Float
352
+ def final_bake_time_in_minutes: () -> ::Integer
353
+ def state: () -> ("BAKING" | "VALIDATING" | "DEPLOYING" | "COMPLETE" | "ROLLING_BACK" | "ROLLED_BACK")
354
+ def event_log: () -> ::Array[Types::DeploymentEvent]
355
+ def percentage_complete: () -> ::Float
356
+ def started_at: () -> ::Time
357
+ def completed_at: () -> ::Time
358
+ def applied_extensions: () -> ::Array[Types::AppliedExtension]
359
+ def kms_key_arn: () -> ::String
360
+ def kms_key_identifier: () -> ::String
361
+ def version_label: () -> ::String
362
+ end
363
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppConfig/Client.html#get_deployment-instance_method
364
+ def get_deployment: (
365
+ application_id: ::String,
366
+ environment_id: ::String,
367
+ deployment_number: ::Integer
368
+ ) -> _GetDeploymentResponseSuccess
369
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetDeploymentResponseSuccess
370
+
371
+ interface _GetDeploymentStrategyResponseSuccess
372
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeploymentStrategy]
373
+ def id: () -> ::String
374
+ def name: () -> ::String
375
+ def description: () -> ::String
376
+ def deployment_duration_in_minutes: () -> ::Integer
377
+ def growth_type: () -> ("LINEAR" | "EXPONENTIAL")
378
+ def growth_factor: () -> ::Float
379
+ def final_bake_time_in_minutes: () -> ::Integer
380
+ def replicate_to: () -> ("NONE" | "SSM_DOCUMENT")
381
+ end
382
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppConfig/Client.html#get_deployment_strategy-instance_method
383
+ def get_deployment_strategy: (
384
+ deployment_strategy_id: ::String
385
+ ) -> _GetDeploymentStrategyResponseSuccess
386
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetDeploymentStrategyResponseSuccess
387
+
388
+ interface _GetEnvironmentResponseSuccess
389
+ include ::Seahorse::Client::_ResponseSuccess[Types::Environment]
390
+ def application_id: () -> ::String
391
+ def id: () -> ::String
392
+ def name: () -> ::String
393
+ def description: () -> ::String
394
+ def state: () -> ("READY_FOR_DEPLOYMENT" | "DEPLOYING" | "ROLLING_BACK" | "ROLLED_BACK")
395
+ def monitors: () -> ::Array[Types::Monitor]
396
+ end
397
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppConfig/Client.html#get_environment-instance_method
398
+ def get_environment: (
399
+ application_id: ::String,
400
+ environment_id: ::String
401
+ ) -> _GetEnvironmentResponseSuccess
402
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetEnvironmentResponseSuccess
403
+
404
+ interface _GetExtensionResponseSuccess
405
+ include ::Seahorse::Client::_ResponseSuccess[Types::Extension]
406
+ def id: () -> ::String
407
+ def name: () -> ::String
408
+ def version_number: () -> ::Integer
409
+ def arn: () -> ::String
410
+ def description: () -> ::String
411
+ 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]]
412
+ def parameters: () -> ::Hash[::String, Types::Parameter]
413
+ end
414
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppConfig/Client.html#get_extension-instance_method
415
+ def get_extension: (
416
+ extension_identifier: ::String,
417
+ ?version_number: ::Integer
418
+ ) -> _GetExtensionResponseSuccess
419
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetExtensionResponseSuccess
420
+
421
+ interface _GetExtensionAssociationResponseSuccess
422
+ include ::Seahorse::Client::_ResponseSuccess[Types::ExtensionAssociation]
423
+ def id: () -> ::String
424
+ def extension_arn: () -> ::String
425
+ def resource_arn: () -> ::String
426
+ def arn: () -> ::String
427
+ def parameters: () -> ::Hash[::String, ::String]
428
+ def extension_version_number: () -> ::Integer
429
+ end
430
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppConfig/Client.html#get_extension_association-instance_method
431
+ def get_extension_association: (
432
+ extension_association_id: ::String
433
+ ) -> _GetExtensionAssociationResponseSuccess
434
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetExtensionAssociationResponseSuccess
435
+
436
+ interface _GetHostedConfigurationVersionResponseSuccess
437
+ include ::Seahorse::Client::_ResponseSuccess[Types::HostedConfigurationVersion]
438
+ def application_id: () -> ::String
439
+ def configuration_profile_id: () -> ::String
440
+ def version_number: () -> ::Integer
441
+ def description: () -> ::String
442
+ def content: () -> ::String
443
+ def content_type: () -> ::String
444
+ def version_label: () -> ::String
445
+ def kms_key_arn: () -> ::String
446
+ end
447
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppConfig/Client.html#get_hosted_configuration_version-instance_method
448
+ def get_hosted_configuration_version: (
449
+ application_id: ::String,
450
+ configuration_profile_id: ::String,
451
+ version_number: ::Integer
452
+ ) -> _GetHostedConfigurationVersionResponseSuccess
453
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetHostedConfigurationVersionResponseSuccess
454
+
455
+ interface _ListApplicationsResponseSuccess
456
+ include ::Seahorse::Client::_ResponseSuccess[Types::Applications]
457
+ def items: () -> ::Array[Types::Application]
458
+ def next_token: () -> ::String
459
+ end
460
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppConfig/Client.html#list_applications-instance_method
461
+ def list_applications: (
462
+ ?max_results: ::Integer,
463
+ ?next_token: ::String
464
+ ) -> _ListApplicationsResponseSuccess
465
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListApplicationsResponseSuccess
466
+
467
+ interface _ListConfigurationProfilesResponseSuccess
468
+ include ::Seahorse::Client::_ResponseSuccess[Types::ConfigurationProfiles]
469
+ def items: () -> ::Array[Types::ConfigurationProfileSummary]
470
+ def next_token: () -> ::String
471
+ end
472
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppConfig/Client.html#list_configuration_profiles-instance_method
473
+ def list_configuration_profiles: (
474
+ application_id: ::String,
475
+ ?max_results: ::Integer,
476
+ ?next_token: ::String,
477
+ ?type: ::String
478
+ ) -> _ListConfigurationProfilesResponseSuccess
479
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListConfigurationProfilesResponseSuccess
480
+
481
+ interface _ListDeploymentStrategiesResponseSuccess
482
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeploymentStrategies]
483
+ def items: () -> ::Array[Types::DeploymentStrategy]
484
+ def next_token: () -> ::String
485
+ end
486
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppConfig/Client.html#list_deployment_strategies-instance_method
487
+ def list_deployment_strategies: (
488
+ ?max_results: ::Integer,
489
+ ?next_token: ::String
490
+ ) -> _ListDeploymentStrategiesResponseSuccess
491
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListDeploymentStrategiesResponseSuccess
492
+
493
+ interface _ListDeploymentsResponseSuccess
494
+ include ::Seahorse::Client::_ResponseSuccess[Types::Deployments]
495
+ def items: () -> ::Array[Types::DeploymentSummary]
496
+ def next_token: () -> ::String
497
+ end
498
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppConfig/Client.html#list_deployments-instance_method
499
+ def list_deployments: (
500
+ application_id: ::String,
501
+ environment_id: ::String,
502
+ ?max_results: ::Integer,
503
+ ?next_token: ::String
504
+ ) -> _ListDeploymentsResponseSuccess
505
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListDeploymentsResponseSuccess
506
+
507
+ interface _ListEnvironmentsResponseSuccess
508
+ include ::Seahorse::Client::_ResponseSuccess[Types::Environments]
509
+ def items: () -> ::Array[Types::Environment]
510
+ def next_token: () -> ::String
511
+ end
512
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppConfig/Client.html#list_environments-instance_method
513
+ def list_environments: (
514
+ application_id: ::String,
515
+ ?max_results: ::Integer,
516
+ ?next_token: ::String
517
+ ) -> _ListEnvironmentsResponseSuccess
518
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListEnvironmentsResponseSuccess
519
+
520
+ interface _ListExtensionAssociationsResponseSuccess
521
+ include ::Seahorse::Client::_ResponseSuccess[Types::ExtensionAssociations]
522
+ def items: () -> ::Array[Types::ExtensionAssociationSummary]
523
+ def next_token: () -> ::String
524
+ end
525
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppConfig/Client.html#list_extension_associations-instance_method
526
+ def list_extension_associations: (
527
+ ?resource_identifier: ::String,
528
+ ?extension_identifier: ::String,
529
+ ?extension_version_number: ::Integer,
530
+ ?max_results: ::Integer,
531
+ ?next_token: ::String
532
+ ) -> _ListExtensionAssociationsResponseSuccess
533
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListExtensionAssociationsResponseSuccess
534
+
535
+ interface _ListExtensionsResponseSuccess
536
+ include ::Seahorse::Client::_ResponseSuccess[Types::Extensions]
537
+ def items: () -> ::Array[Types::ExtensionSummary]
538
+ def next_token: () -> ::String
539
+ end
540
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppConfig/Client.html#list_extensions-instance_method
541
+ def list_extensions: (
542
+ ?max_results: ::Integer,
543
+ ?next_token: ::String,
544
+ ?name: ::String
545
+ ) -> _ListExtensionsResponseSuccess
546
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListExtensionsResponseSuccess
547
+
548
+ interface _ListHostedConfigurationVersionsResponseSuccess
549
+ include ::Seahorse::Client::_ResponseSuccess[Types::HostedConfigurationVersions]
550
+ def items: () -> ::Array[Types::HostedConfigurationVersionSummary]
551
+ def next_token: () -> ::String
552
+ end
553
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppConfig/Client.html#list_hosted_configuration_versions-instance_method
554
+ def list_hosted_configuration_versions: (
555
+ application_id: ::String,
556
+ configuration_profile_id: ::String,
557
+ ?max_results: ::Integer,
558
+ ?next_token: ::String,
559
+ ?version_label: ::String
560
+ ) -> _ListHostedConfigurationVersionsResponseSuccess
561
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListHostedConfigurationVersionsResponseSuccess
562
+
563
+ interface _ListTagsForResourceResponseSuccess
564
+ include ::Seahorse::Client::_ResponseSuccess[Types::ResourceTags]
565
+ def tags: () -> ::Hash[::String, ::String]
566
+ end
567
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppConfig/Client.html#list_tags_for_resource-instance_method
568
+ def list_tags_for_resource: (
569
+ resource_arn: ::String
570
+ ) -> _ListTagsForResourceResponseSuccess
571
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListTagsForResourceResponseSuccess
572
+
573
+ interface _StartDeploymentResponseSuccess
574
+ include ::Seahorse::Client::_ResponseSuccess[Types::Deployment]
575
+ def application_id: () -> ::String
576
+ def environment_id: () -> ::String
577
+ def deployment_strategy_id: () -> ::String
578
+ def configuration_profile_id: () -> ::String
579
+ def deployment_number: () -> ::Integer
580
+ def configuration_name: () -> ::String
581
+ def configuration_location_uri: () -> ::String
582
+ def configuration_version: () -> ::String
583
+ def description: () -> ::String
584
+ def deployment_duration_in_minutes: () -> ::Integer
585
+ def growth_type: () -> ("LINEAR" | "EXPONENTIAL")
586
+ def growth_factor: () -> ::Float
587
+ def final_bake_time_in_minutes: () -> ::Integer
588
+ def state: () -> ("BAKING" | "VALIDATING" | "DEPLOYING" | "COMPLETE" | "ROLLING_BACK" | "ROLLED_BACK")
589
+ def event_log: () -> ::Array[Types::DeploymentEvent]
590
+ def percentage_complete: () -> ::Float
591
+ def started_at: () -> ::Time
592
+ def completed_at: () -> ::Time
593
+ def applied_extensions: () -> ::Array[Types::AppliedExtension]
594
+ def kms_key_arn: () -> ::String
595
+ def kms_key_identifier: () -> ::String
596
+ def version_label: () -> ::String
597
+ end
598
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppConfig/Client.html#start_deployment-instance_method
599
+ def start_deployment: (
600
+ application_id: ::String,
601
+ environment_id: ::String,
602
+ deployment_strategy_id: ::String,
603
+ configuration_profile_id: ::String,
604
+ configuration_version: ::String,
605
+ ?description: ::String,
606
+ ?tags: Hash[::String, ::String],
607
+ ?kms_key_identifier: ::String,
608
+ ?dynamic_extension_parameters: Hash[::String, ::String]
609
+ ) -> _StartDeploymentResponseSuccess
610
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartDeploymentResponseSuccess
611
+
612
+ interface _StopDeploymentResponseSuccess
613
+ include ::Seahorse::Client::_ResponseSuccess[Types::Deployment]
614
+ def application_id: () -> ::String
615
+ def environment_id: () -> ::String
616
+ def deployment_strategy_id: () -> ::String
617
+ def configuration_profile_id: () -> ::String
618
+ def deployment_number: () -> ::Integer
619
+ def configuration_name: () -> ::String
620
+ def configuration_location_uri: () -> ::String
621
+ def configuration_version: () -> ::String
622
+ def description: () -> ::String
623
+ def deployment_duration_in_minutes: () -> ::Integer
624
+ def growth_type: () -> ("LINEAR" | "EXPONENTIAL")
625
+ def growth_factor: () -> ::Float
626
+ def final_bake_time_in_minutes: () -> ::Integer
627
+ def state: () -> ("BAKING" | "VALIDATING" | "DEPLOYING" | "COMPLETE" | "ROLLING_BACK" | "ROLLED_BACK")
628
+ def event_log: () -> ::Array[Types::DeploymentEvent]
629
+ def percentage_complete: () -> ::Float
630
+ def started_at: () -> ::Time
631
+ def completed_at: () -> ::Time
632
+ def applied_extensions: () -> ::Array[Types::AppliedExtension]
633
+ def kms_key_arn: () -> ::String
634
+ def kms_key_identifier: () -> ::String
635
+ def version_label: () -> ::String
636
+ end
637
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppConfig/Client.html#stop_deployment-instance_method
638
+ def stop_deployment: (
639
+ application_id: ::String,
640
+ environment_id: ::String,
641
+ deployment_number: ::Integer
642
+ ) -> _StopDeploymentResponseSuccess
643
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StopDeploymentResponseSuccess
644
+
645
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppConfig/Client.html#tag_resource-instance_method
646
+ def tag_resource: (
647
+ resource_arn: ::String,
648
+ tags: Hash[::String, ::String]
649
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
650
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
651
+
652
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppConfig/Client.html#untag_resource-instance_method
653
+ def untag_resource: (
654
+ resource_arn: ::String,
655
+ tag_keys: Array[::String]
656
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
657
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
658
+
659
+ interface _UpdateApplicationResponseSuccess
660
+ include ::Seahorse::Client::_ResponseSuccess[Types::Application]
661
+ def id: () -> ::String
662
+ def name: () -> ::String
663
+ def description: () -> ::String
664
+ end
665
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppConfig/Client.html#update_application-instance_method
666
+ def update_application: (
667
+ application_id: ::String,
668
+ ?name: ::String,
669
+ ?description: ::String
670
+ ) -> _UpdateApplicationResponseSuccess
671
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateApplicationResponseSuccess
672
+
673
+ interface _UpdateConfigurationProfileResponseSuccess
674
+ include ::Seahorse::Client::_ResponseSuccess[Types::ConfigurationProfile]
675
+ def application_id: () -> ::String
676
+ def id: () -> ::String
677
+ def name: () -> ::String
678
+ def description: () -> ::String
679
+ def location_uri: () -> ::String
680
+ def retrieval_role_arn: () -> ::String
681
+ def validators: () -> ::Array[Types::Validator]
682
+ def type: () -> ::String
683
+ def kms_key_arn: () -> ::String
684
+ def kms_key_identifier: () -> ::String
685
+ end
686
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppConfig/Client.html#update_configuration_profile-instance_method
687
+ def update_configuration_profile: (
688
+ application_id: ::String,
689
+ configuration_profile_id: ::String,
690
+ ?name: ::String,
691
+ ?description: ::String,
692
+ ?retrieval_role_arn: ::String,
693
+ ?validators: Array[
694
+ {
695
+ type: ("JSON_SCHEMA" | "LAMBDA"),
696
+ content: ::String
697
+ },
698
+ ],
699
+ ?kms_key_identifier: ::String
700
+ ) -> _UpdateConfigurationProfileResponseSuccess
701
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateConfigurationProfileResponseSuccess
702
+
703
+ interface _UpdateDeploymentStrategyResponseSuccess
704
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeploymentStrategy]
705
+ def id: () -> ::String
706
+ def name: () -> ::String
707
+ def description: () -> ::String
708
+ def deployment_duration_in_minutes: () -> ::Integer
709
+ def growth_type: () -> ("LINEAR" | "EXPONENTIAL")
710
+ def growth_factor: () -> ::Float
711
+ def final_bake_time_in_minutes: () -> ::Integer
712
+ def replicate_to: () -> ("NONE" | "SSM_DOCUMENT")
713
+ end
714
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppConfig/Client.html#update_deployment_strategy-instance_method
715
+ def update_deployment_strategy: (
716
+ deployment_strategy_id: ::String,
717
+ ?description: ::String,
718
+ ?deployment_duration_in_minutes: ::Integer,
719
+ ?final_bake_time_in_minutes: ::Integer,
720
+ ?growth_factor: ::Float,
721
+ ?growth_type: ("LINEAR" | "EXPONENTIAL")
722
+ ) -> _UpdateDeploymentStrategyResponseSuccess
723
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateDeploymentStrategyResponseSuccess
724
+
725
+ interface _UpdateEnvironmentResponseSuccess
726
+ include ::Seahorse::Client::_ResponseSuccess[Types::Environment]
727
+ def application_id: () -> ::String
728
+ def id: () -> ::String
729
+ def name: () -> ::String
730
+ def description: () -> ::String
731
+ def state: () -> ("READY_FOR_DEPLOYMENT" | "DEPLOYING" | "ROLLING_BACK" | "ROLLED_BACK")
732
+ def monitors: () -> ::Array[Types::Monitor]
733
+ end
734
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppConfig/Client.html#update_environment-instance_method
735
+ def update_environment: (
736
+ application_id: ::String,
737
+ environment_id: ::String,
738
+ ?name: ::String,
739
+ ?description: ::String,
740
+ ?monitors: Array[
741
+ {
742
+ alarm_arn: ::String,
743
+ alarm_role_arn: ::String?
744
+ },
745
+ ]
746
+ ) -> _UpdateEnvironmentResponseSuccess
747
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateEnvironmentResponseSuccess
748
+
749
+ interface _UpdateExtensionResponseSuccess
750
+ include ::Seahorse::Client::_ResponseSuccess[Types::Extension]
751
+ def id: () -> ::String
752
+ def name: () -> ::String
753
+ def version_number: () -> ::Integer
754
+ def arn: () -> ::String
755
+ def description: () -> ::String
756
+ 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]]
757
+ def parameters: () -> ::Hash[::String, Types::Parameter]
758
+ end
759
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppConfig/Client.html#update_extension-instance_method
760
+ def update_extension: (
761
+ extension_identifier: ::String,
762
+ ?description: ::String,
763
+ ?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[
764
+ {
765
+ name: ::String?,
766
+ description: ::String?,
767
+ uri: ::String?,
768
+ role_arn: ::String?
769
+ },
770
+ ]],
771
+ ?parameters: Hash[::String, {
772
+ description: ::String?,
773
+ required: bool?,
774
+ dynamic: bool?
775
+ }],
776
+ ?version_number: ::Integer
777
+ ) -> _UpdateExtensionResponseSuccess
778
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateExtensionResponseSuccess
779
+
780
+ interface _UpdateExtensionAssociationResponseSuccess
781
+ include ::Seahorse::Client::_ResponseSuccess[Types::ExtensionAssociation]
782
+ def id: () -> ::String
783
+ def extension_arn: () -> ::String
784
+ def resource_arn: () -> ::String
785
+ def arn: () -> ::String
786
+ def parameters: () -> ::Hash[::String, ::String]
787
+ def extension_version_number: () -> ::Integer
788
+ end
789
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppConfig/Client.html#update_extension_association-instance_method
790
+ def update_extension_association: (
791
+ extension_association_id: ::String,
792
+ ?parameters: Hash[::String, ::String]
793
+ ) -> _UpdateExtensionAssociationResponseSuccess
794
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateExtensionAssociationResponseSuccess
795
+
796
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppConfig/Client.html#validate_configuration-instance_method
797
+ def validate_configuration: (
798
+ application_id: ::String,
799
+ configuration_profile_id: ::String,
800
+ configuration_version: ::String
801
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
802
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
803
+ end
804
+ end
805
+ end
806
+