aws-sdk-appconfig 1.41.0 → 1.43.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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-appconfig/client.rb +1 -1
- data/lib/aws-sdk-appconfig/plugins/endpoints.rb +4 -2
- data/lib/aws-sdk-appconfig.rb +1 -1
- data/sig/client.rbs +803 -0
- data/sig/errors.rbs +40 -0
- data/sig/resource.rbs +79 -0
- data/sig/types.rbs +658 -0
- data/sig/waiters.rbs +13 -0
- metadata +13 -8
data/sig/types.rbs
ADDED
@@ -0,0 +1,658 @@
|
|
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::AppConfig
|
9
|
+
module Types
|
10
|
+
|
11
|
+
class Action
|
12
|
+
attr_accessor name: ::String
|
13
|
+
attr_accessor description: ::String
|
14
|
+
attr_accessor uri: ::String
|
15
|
+
attr_accessor role_arn: ::String
|
16
|
+
SENSITIVE: []
|
17
|
+
end
|
18
|
+
|
19
|
+
class ActionInvocation
|
20
|
+
attr_accessor extension_identifier: ::String
|
21
|
+
attr_accessor action_name: ::String
|
22
|
+
attr_accessor uri: ::String
|
23
|
+
attr_accessor role_arn: ::String
|
24
|
+
attr_accessor error_message: ::String
|
25
|
+
attr_accessor error_code: ::String
|
26
|
+
attr_accessor invocation_id: ::String
|
27
|
+
SENSITIVE: []
|
28
|
+
end
|
29
|
+
|
30
|
+
class Application
|
31
|
+
attr_accessor id: ::String
|
32
|
+
attr_accessor name: ::String
|
33
|
+
attr_accessor description: ::String
|
34
|
+
SENSITIVE: []
|
35
|
+
end
|
36
|
+
|
37
|
+
class Applications
|
38
|
+
attr_accessor items: ::Array[Types::Application]
|
39
|
+
attr_accessor next_token: ::String
|
40
|
+
SENSITIVE: []
|
41
|
+
end
|
42
|
+
|
43
|
+
class AppliedExtension
|
44
|
+
attr_accessor extension_id: ::String
|
45
|
+
attr_accessor extension_association_id: ::String
|
46
|
+
attr_accessor version_number: ::Integer
|
47
|
+
attr_accessor parameters: ::Hash[::String, ::String]
|
48
|
+
SENSITIVE: []
|
49
|
+
end
|
50
|
+
|
51
|
+
class BadRequestDetails
|
52
|
+
attr_accessor invalid_configuration: ::Array[Types::InvalidConfigurationDetail]
|
53
|
+
attr_accessor unknown: untyped
|
54
|
+
SENSITIVE: []
|
55
|
+
|
56
|
+
class InvalidConfiguration < BadRequestDetails
|
57
|
+
end
|
58
|
+
class Unknown < BadRequestDetails
|
59
|
+
end
|
60
|
+
end
|
61
|
+
|
62
|
+
class BadRequestException
|
63
|
+
attr_accessor message: ::String
|
64
|
+
attr_accessor reason: ("InvalidConfiguration")
|
65
|
+
attr_accessor details: Types::BadRequestDetails
|
66
|
+
SENSITIVE: []
|
67
|
+
end
|
68
|
+
|
69
|
+
class Configuration
|
70
|
+
attr_accessor content: ::String
|
71
|
+
attr_accessor configuration_version: ::String
|
72
|
+
attr_accessor content_type: ::String
|
73
|
+
SENSITIVE: [:content]
|
74
|
+
end
|
75
|
+
|
76
|
+
class ConfigurationProfile
|
77
|
+
attr_accessor application_id: ::String
|
78
|
+
attr_accessor id: ::String
|
79
|
+
attr_accessor name: ::String
|
80
|
+
attr_accessor description: ::String
|
81
|
+
attr_accessor location_uri: ::String
|
82
|
+
attr_accessor retrieval_role_arn: ::String
|
83
|
+
attr_accessor validators: ::Array[Types::Validator]
|
84
|
+
attr_accessor type: ::String
|
85
|
+
attr_accessor kms_key_arn: ::String
|
86
|
+
attr_accessor kms_key_identifier: ::String
|
87
|
+
SENSITIVE: []
|
88
|
+
end
|
89
|
+
|
90
|
+
class ConfigurationProfileSummary
|
91
|
+
attr_accessor application_id: ::String
|
92
|
+
attr_accessor id: ::String
|
93
|
+
attr_accessor name: ::String
|
94
|
+
attr_accessor location_uri: ::String
|
95
|
+
attr_accessor validator_types: ::Array[("JSON_SCHEMA" | "LAMBDA")]
|
96
|
+
attr_accessor type: ::String
|
97
|
+
SENSITIVE: []
|
98
|
+
end
|
99
|
+
|
100
|
+
class ConfigurationProfiles
|
101
|
+
attr_accessor items: ::Array[Types::ConfigurationProfileSummary]
|
102
|
+
attr_accessor next_token: ::String
|
103
|
+
SENSITIVE: []
|
104
|
+
end
|
105
|
+
|
106
|
+
class ConflictException
|
107
|
+
attr_accessor message: ::String
|
108
|
+
SENSITIVE: []
|
109
|
+
end
|
110
|
+
|
111
|
+
class CreateApplicationRequest
|
112
|
+
attr_accessor name: ::String
|
113
|
+
attr_accessor description: ::String
|
114
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
115
|
+
SENSITIVE: []
|
116
|
+
end
|
117
|
+
|
118
|
+
class CreateConfigurationProfileRequest
|
119
|
+
attr_accessor application_id: ::String
|
120
|
+
attr_accessor name: ::String
|
121
|
+
attr_accessor description: ::String
|
122
|
+
attr_accessor location_uri: ::String
|
123
|
+
attr_accessor retrieval_role_arn: ::String
|
124
|
+
attr_accessor validators: ::Array[Types::Validator]
|
125
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
126
|
+
attr_accessor type: ::String
|
127
|
+
attr_accessor kms_key_identifier: ::String
|
128
|
+
SENSITIVE: []
|
129
|
+
end
|
130
|
+
|
131
|
+
class CreateDeploymentStrategyRequest
|
132
|
+
attr_accessor name: ::String
|
133
|
+
attr_accessor description: ::String
|
134
|
+
attr_accessor deployment_duration_in_minutes: ::Integer
|
135
|
+
attr_accessor final_bake_time_in_minutes: ::Integer
|
136
|
+
attr_accessor growth_factor: ::Float
|
137
|
+
attr_accessor growth_type: ("LINEAR" | "EXPONENTIAL")
|
138
|
+
attr_accessor replicate_to: ("NONE" | "SSM_DOCUMENT")
|
139
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
140
|
+
SENSITIVE: []
|
141
|
+
end
|
142
|
+
|
143
|
+
class CreateEnvironmentRequest
|
144
|
+
attr_accessor application_id: ::String
|
145
|
+
attr_accessor name: ::String
|
146
|
+
attr_accessor description: ::String
|
147
|
+
attr_accessor monitors: ::Array[Types::Monitor]
|
148
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
149
|
+
SENSITIVE: []
|
150
|
+
end
|
151
|
+
|
152
|
+
class CreateExtensionAssociationRequest
|
153
|
+
attr_accessor extension_identifier: ::String
|
154
|
+
attr_accessor extension_version_number: ::Integer
|
155
|
+
attr_accessor resource_identifier: ::String
|
156
|
+
attr_accessor parameters: ::Hash[::String, ::String]
|
157
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
158
|
+
SENSITIVE: []
|
159
|
+
end
|
160
|
+
|
161
|
+
class CreateExtensionRequest
|
162
|
+
attr_accessor name: ::String
|
163
|
+
attr_accessor description: ::String
|
164
|
+
attr_accessor 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]]
|
165
|
+
attr_accessor parameters: ::Hash[::String, Types::Parameter]
|
166
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
167
|
+
attr_accessor latest_version_number: ::Integer
|
168
|
+
SENSITIVE: []
|
169
|
+
end
|
170
|
+
|
171
|
+
class CreateHostedConfigurationVersionRequest
|
172
|
+
attr_accessor application_id: ::String
|
173
|
+
attr_accessor configuration_profile_id: ::String
|
174
|
+
attr_accessor description: ::String
|
175
|
+
attr_accessor content: ::String
|
176
|
+
attr_accessor content_type: ::String
|
177
|
+
attr_accessor latest_version_number: ::Integer
|
178
|
+
attr_accessor version_label: ::String
|
179
|
+
SENSITIVE: [:content]
|
180
|
+
end
|
181
|
+
|
182
|
+
class DeleteApplicationRequest
|
183
|
+
attr_accessor application_id: ::String
|
184
|
+
SENSITIVE: []
|
185
|
+
end
|
186
|
+
|
187
|
+
class DeleteConfigurationProfileRequest
|
188
|
+
attr_accessor application_id: ::String
|
189
|
+
attr_accessor configuration_profile_id: ::String
|
190
|
+
SENSITIVE: []
|
191
|
+
end
|
192
|
+
|
193
|
+
class DeleteDeploymentStrategyRequest
|
194
|
+
attr_accessor deployment_strategy_id: ::String
|
195
|
+
SENSITIVE: []
|
196
|
+
end
|
197
|
+
|
198
|
+
class DeleteEnvironmentRequest
|
199
|
+
attr_accessor application_id: ::String
|
200
|
+
attr_accessor environment_id: ::String
|
201
|
+
SENSITIVE: []
|
202
|
+
end
|
203
|
+
|
204
|
+
class DeleteExtensionAssociationRequest
|
205
|
+
attr_accessor extension_association_id: ::String
|
206
|
+
SENSITIVE: []
|
207
|
+
end
|
208
|
+
|
209
|
+
class DeleteExtensionRequest
|
210
|
+
attr_accessor extension_identifier: ::String
|
211
|
+
attr_accessor version_number: ::Integer
|
212
|
+
SENSITIVE: []
|
213
|
+
end
|
214
|
+
|
215
|
+
class DeleteHostedConfigurationVersionRequest
|
216
|
+
attr_accessor application_id: ::String
|
217
|
+
attr_accessor configuration_profile_id: ::String
|
218
|
+
attr_accessor version_number: ::Integer
|
219
|
+
SENSITIVE: []
|
220
|
+
end
|
221
|
+
|
222
|
+
class Deployment
|
223
|
+
attr_accessor application_id: ::String
|
224
|
+
attr_accessor environment_id: ::String
|
225
|
+
attr_accessor deployment_strategy_id: ::String
|
226
|
+
attr_accessor configuration_profile_id: ::String
|
227
|
+
attr_accessor deployment_number: ::Integer
|
228
|
+
attr_accessor configuration_name: ::String
|
229
|
+
attr_accessor configuration_location_uri: ::String
|
230
|
+
attr_accessor configuration_version: ::String
|
231
|
+
attr_accessor description: ::String
|
232
|
+
attr_accessor deployment_duration_in_minutes: ::Integer
|
233
|
+
attr_accessor growth_type: ("LINEAR" | "EXPONENTIAL")
|
234
|
+
attr_accessor growth_factor: ::Float
|
235
|
+
attr_accessor final_bake_time_in_minutes: ::Integer
|
236
|
+
attr_accessor state: ("BAKING" | "VALIDATING" | "DEPLOYING" | "COMPLETE" | "ROLLING_BACK" | "ROLLED_BACK")
|
237
|
+
attr_accessor event_log: ::Array[Types::DeploymentEvent]
|
238
|
+
attr_accessor percentage_complete: ::Float
|
239
|
+
attr_accessor started_at: ::Time
|
240
|
+
attr_accessor completed_at: ::Time
|
241
|
+
attr_accessor applied_extensions: ::Array[Types::AppliedExtension]
|
242
|
+
attr_accessor kms_key_arn: ::String
|
243
|
+
attr_accessor kms_key_identifier: ::String
|
244
|
+
attr_accessor version_label: ::String
|
245
|
+
SENSITIVE: []
|
246
|
+
end
|
247
|
+
|
248
|
+
class DeploymentEvent
|
249
|
+
attr_accessor event_type: ("PERCENTAGE_UPDATED" | "ROLLBACK_STARTED" | "ROLLBACK_COMPLETED" | "BAKE_TIME_STARTED" | "DEPLOYMENT_STARTED" | "DEPLOYMENT_COMPLETED")
|
250
|
+
attr_accessor triggered_by: ("USER" | "APPCONFIG" | "CLOUDWATCH_ALARM" | "INTERNAL_ERROR")
|
251
|
+
attr_accessor description: ::String
|
252
|
+
attr_accessor action_invocations: ::Array[Types::ActionInvocation]
|
253
|
+
attr_accessor occurred_at: ::Time
|
254
|
+
SENSITIVE: []
|
255
|
+
end
|
256
|
+
|
257
|
+
class DeploymentStrategies
|
258
|
+
attr_accessor items: ::Array[Types::DeploymentStrategy]
|
259
|
+
attr_accessor next_token: ::String
|
260
|
+
SENSITIVE: []
|
261
|
+
end
|
262
|
+
|
263
|
+
class DeploymentStrategy
|
264
|
+
attr_accessor id: ::String
|
265
|
+
attr_accessor name: ::String
|
266
|
+
attr_accessor description: ::String
|
267
|
+
attr_accessor deployment_duration_in_minutes: ::Integer
|
268
|
+
attr_accessor growth_type: ("LINEAR" | "EXPONENTIAL")
|
269
|
+
attr_accessor growth_factor: ::Float
|
270
|
+
attr_accessor final_bake_time_in_minutes: ::Integer
|
271
|
+
attr_accessor replicate_to: ("NONE" | "SSM_DOCUMENT")
|
272
|
+
SENSITIVE: []
|
273
|
+
end
|
274
|
+
|
275
|
+
class DeploymentSummary
|
276
|
+
attr_accessor deployment_number: ::Integer
|
277
|
+
attr_accessor configuration_name: ::String
|
278
|
+
attr_accessor configuration_version: ::String
|
279
|
+
attr_accessor deployment_duration_in_minutes: ::Integer
|
280
|
+
attr_accessor growth_type: ("LINEAR" | "EXPONENTIAL")
|
281
|
+
attr_accessor growth_factor: ::Float
|
282
|
+
attr_accessor final_bake_time_in_minutes: ::Integer
|
283
|
+
attr_accessor state: ("BAKING" | "VALIDATING" | "DEPLOYING" | "COMPLETE" | "ROLLING_BACK" | "ROLLED_BACK")
|
284
|
+
attr_accessor percentage_complete: ::Float
|
285
|
+
attr_accessor started_at: ::Time
|
286
|
+
attr_accessor completed_at: ::Time
|
287
|
+
attr_accessor version_label: ::String
|
288
|
+
SENSITIVE: []
|
289
|
+
end
|
290
|
+
|
291
|
+
class Deployments
|
292
|
+
attr_accessor items: ::Array[Types::DeploymentSummary]
|
293
|
+
attr_accessor next_token: ::String
|
294
|
+
SENSITIVE: []
|
295
|
+
end
|
296
|
+
|
297
|
+
class Environment
|
298
|
+
attr_accessor application_id: ::String
|
299
|
+
attr_accessor id: ::String
|
300
|
+
attr_accessor name: ::String
|
301
|
+
attr_accessor description: ::String
|
302
|
+
attr_accessor state: ("READY_FOR_DEPLOYMENT" | "DEPLOYING" | "ROLLING_BACK" | "ROLLED_BACK")
|
303
|
+
attr_accessor monitors: ::Array[Types::Monitor]
|
304
|
+
SENSITIVE: []
|
305
|
+
end
|
306
|
+
|
307
|
+
class Environments
|
308
|
+
attr_accessor items: ::Array[Types::Environment]
|
309
|
+
attr_accessor next_token: ::String
|
310
|
+
SENSITIVE: []
|
311
|
+
end
|
312
|
+
|
313
|
+
class Extension
|
314
|
+
attr_accessor id: ::String
|
315
|
+
attr_accessor name: ::String
|
316
|
+
attr_accessor version_number: ::Integer
|
317
|
+
attr_accessor arn: ::String
|
318
|
+
attr_accessor description: ::String
|
319
|
+
attr_accessor 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]]
|
320
|
+
attr_accessor parameters: ::Hash[::String, Types::Parameter]
|
321
|
+
SENSITIVE: []
|
322
|
+
end
|
323
|
+
|
324
|
+
class ExtensionAssociation
|
325
|
+
attr_accessor id: ::String
|
326
|
+
attr_accessor extension_arn: ::String
|
327
|
+
attr_accessor resource_arn: ::String
|
328
|
+
attr_accessor arn: ::String
|
329
|
+
attr_accessor parameters: ::Hash[::String, ::String]
|
330
|
+
attr_accessor extension_version_number: ::Integer
|
331
|
+
SENSITIVE: []
|
332
|
+
end
|
333
|
+
|
334
|
+
class ExtensionAssociationSummary
|
335
|
+
attr_accessor id: ::String
|
336
|
+
attr_accessor extension_arn: ::String
|
337
|
+
attr_accessor resource_arn: ::String
|
338
|
+
SENSITIVE: []
|
339
|
+
end
|
340
|
+
|
341
|
+
class ExtensionAssociations
|
342
|
+
attr_accessor items: ::Array[Types::ExtensionAssociationSummary]
|
343
|
+
attr_accessor next_token: ::String
|
344
|
+
SENSITIVE: []
|
345
|
+
end
|
346
|
+
|
347
|
+
class ExtensionSummary
|
348
|
+
attr_accessor id: ::String
|
349
|
+
attr_accessor name: ::String
|
350
|
+
attr_accessor version_number: ::Integer
|
351
|
+
attr_accessor arn: ::String
|
352
|
+
attr_accessor description: ::String
|
353
|
+
SENSITIVE: []
|
354
|
+
end
|
355
|
+
|
356
|
+
class Extensions
|
357
|
+
attr_accessor items: ::Array[Types::ExtensionSummary]
|
358
|
+
attr_accessor next_token: ::String
|
359
|
+
SENSITIVE: []
|
360
|
+
end
|
361
|
+
|
362
|
+
class GetApplicationRequest
|
363
|
+
attr_accessor application_id: ::String
|
364
|
+
SENSITIVE: []
|
365
|
+
end
|
366
|
+
|
367
|
+
class GetConfigurationProfileRequest
|
368
|
+
attr_accessor application_id: ::String
|
369
|
+
attr_accessor configuration_profile_id: ::String
|
370
|
+
SENSITIVE: []
|
371
|
+
end
|
372
|
+
|
373
|
+
class GetConfigurationRequest
|
374
|
+
attr_accessor application: ::String
|
375
|
+
attr_accessor environment: ::String
|
376
|
+
attr_accessor configuration: ::String
|
377
|
+
attr_accessor client_id: ::String
|
378
|
+
attr_accessor client_configuration_version: ::String
|
379
|
+
SENSITIVE: []
|
380
|
+
end
|
381
|
+
|
382
|
+
class GetDeploymentRequest
|
383
|
+
attr_accessor application_id: ::String
|
384
|
+
attr_accessor environment_id: ::String
|
385
|
+
attr_accessor deployment_number: ::Integer
|
386
|
+
SENSITIVE: []
|
387
|
+
end
|
388
|
+
|
389
|
+
class GetDeploymentStrategyRequest
|
390
|
+
attr_accessor deployment_strategy_id: ::String
|
391
|
+
SENSITIVE: []
|
392
|
+
end
|
393
|
+
|
394
|
+
class GetEnvironmentRequest
|
395
|
+
attr_accessor application_id: ::String
|
396
|
+
attr_accessor environment_id: ::String
|
397
|
+
SENSITIVE: []
|
398
|
+
end
|
399
|
+
|
400
|
+
class GetExtensionAssociationRequest
|
401
|
+
attr_accessor extension_association_id: ::String
|
402
|
+
SENSITIVE: []
|
403
|
+
end
|
404
|
+
|
405
|
+
class GetExtensionRequest
|
406
|
+
attr_accessor extension_identifier: ::String
|
407
|
+
attr_accessor version_number: ::Integer
|
408
|
+
SENSITIVE: []
|
409
|
+
end
|
410
|
+
|
411
|
+
class GetHostedConfigurationVersionRequest
|
412
|
+
attr_accessor application_id: ::String
|
413
|
+
attr_accessor configuration_profile_id: ::String
|
414
|
+
attr_accessor version_number: ::Integer
|
415
|
+
SENSITIVE: []
|
416
|
+
end
|
417
|
+
|
418
|
+
class HostedConfigurationVersion
|
419
|
+
attr_accessor application_id: ::String
|
420
|
+
attr_accessor configuration_profile_id: ::String
|
421
|
+
attr_accessor version_number: ::Integer
|
422
|
+
attr_accessor description: ::String
|
423
|
+
attr_accessor content: ::String
|
424
|
+
attr_accessor content_type: ::String
|
425
|
+
attr_accessor version_label: ::String
|
426
|
+
attr_accessor kms_key_arn: ::String
|
427
|
+
SENSITIVE: [:content]
|
428
|
+
end
|
429
|
+
|
430
|
+
class HostedConfigurationVersionSummary
|
431
|
+
attr_accessor application_id: ::String
|
432
|
+
attr_accessor configuration_profile_id: ::String
|
433
|
+
attr_accessor version_number: ::Integer
|
434
|
+
attr_accessor description: ::String
|
435
|
+
attr_accessor content_type: ::String
|
436
|
+
attr_accessor version_label: ::String
|
437
|
+
attr_accessor kms_key_arn: ::String
|
438
|
+
SENSITIVE: []
|
439
|
+
end
|
440
|
+
|
441
|
+
class HostedConfigurationVersions
|
442
|
+
attr_accessor items: ::Array[Types::HostedConfigurationVersionSummary]
|
443
|
+
attr_accessor next_token: ::String
|
444
|
+
SENSITIVE: []
|
445
|
+
end
|
446
|
+
|
447
|
+
class InternalServerException
|
448
|
+
attr_accessor message: ::String
|
449
|
+
SENSITIVE: []
|
450
|
+
end
|
451
|
+
|
452
|
+
class InvalidConfigurationDetail
|
453
|
+
attr_accessor constraint: ::String
|
454
|
+
attr_accessor location: ::String
|
455
|
+
attr_accessor reason: ::String
|
456
|
+
attr_accessor type: ::String
|
457
|
+
attr_accessor value: ::String
|
458
|
+
SENSITIVE: []
|
459
|
+
end
|
460
|
+
|
461
|
+
class ListApplicationsRequest
|
462
|
+
attr_accessor max_results: ::Integer
|
463
|
+
attr_accessor next_token: ::String
|
464
|
+
SENSITIVE: []
|
465
|
+
end
|
466
|
+
|
467
|
+
class ListConfigurationProfilesRequest
|
468
|
+
attr_accessor application_id: ::String
|
469
|
+
attr_accessor max_results: ::Integer
|
470
|
+
attr_accessor next_token: ::String
|
471
|
+
attr_accessor type: ::String
|
472
|
+
SENSITIVE: []
|
473
|
+
end
|
474
|
+
|
475
|
+
class ListDeploymentStrategiesRequest
|
476
|
+
attr_accessor max_results: ::Integer
|
477
|
+
attr_accessor next_token: ::String
|
478
|
+
SENSITIVE: []
|
479
|
+
end
|
480
|
+
|
481
|
+
class ListDeploymentsRequest
|
482
|
+
attr_accessor application_id: ::String
|
483
|
+
attr_accessor environment_id: ::String
|
484
|
+
attr_accessor max_results: ::Integer
|
485
|
+
attr_accessor next_token: ::String
|
486
|
+
SENSITIVE: []
|
487
|
+
end
|
488
|
+
|
489
|
+
class ListEnvironmentsRequest
|
490
|
+
attr_accessor application_id: ::String
|
491
|
+
attr_accessor max_results: ::Integer
|
492
|
+
attr_accessor next_token: ::String
|
493
|
+
SENSITIVE: []
|
494
|
+
end
|
495
|
+
|
496
|
+
class ListExtensionAssociationsRequest
|
497
|
+
attr_accessor resource_identifier: ::String
|
498
|
+
attr_accessor extension_identifier: ::String
|
499
|
+
attr_accessor extension_version_number: ::Integer
|
500
|
+
attr_accessor max_results: ::Integer
|
501
|
+
attr_accessor next_token: ::String
|
502
|
+
SENSITIVE: []
|
503
|
+
end
|
504
|
+
|
505
|
+
class ListExtensionsRequest
|
506
|
+
attr_accessor max_results: ::Integer
|
507
|
+
attr_accessor next_token: ::String
|
508
|
+
attr_accessor name: ::String
|
509
|
+
SENSITIVE: []
|
510
|
+
end
|
511
|
+
|
512
|
+
class ListHostedConfigurationVersionsRequest
|
513
|
+
attr_accessor application_id: ::String
|
514
|
+
attr_accessor configuration_profile_id: ::String
|
515
|
+
attr_accessor max_results: ::Integer
|
516
|
+
attr_accessor next_token: ::String
|
517
|
+
attr_accessor version_label: ::String
|
518
|
+
SENSITIVE: []
|
519
|
+
end
|
520
|
+
|
521
|
+
class ListTagsForResourceRequest
|
522
|
+
attr_accessor resource_arn: ::String
|
523
|
+
SENSITIVE: []
|
524
|
+
end
|
525
|
+
|
526
|
+
class Monitor
|
527
|
+
attr_accessor alarm_arn: ::String
|
528
|
+
attr_accessor alarm_role_arn: ::String
|
529
|
+
SENSITIVE: []
|
530
|
+
end
|
531
|
+
|
532
|
+
class Parameter
|
533
|
+
attr_accessor description: ::String
|
534
|
+
attr_accessor required: bool
|
535
|
+
SENSITIVE: []
|
536
|
+
end
|
537
|
+
|
538
|
+
class PayloadTooLargeException
|
539
|
+
attr_accessor message: ::String
|
540
|
+
attr_accessor measure: ("KILOBYTES")
|
541
|
+
attr_accessor limit: ::Float
|
542
|
+
attr_accessor size: ::Float
|
543
|
+
SENSITIVE: []
|
544
|
+
end
|
545
|
+
|
546
|
+
class ResourceNotFoundException
|
547
|
+
attr_accessor message: ::String
|
548
|
+
attr_accessor resource_name: ::String
|
549
|
+
SENSITIVE: []
|
550
|
+
end
|
551
|
+
|
552
|
+
class ResourceTags
|
553
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
554
|
+
SENSITIVE: []
|
555
|
+
end
|
556
|
+
|
557
|
+
class ServiceQuotaExceededException
|
558
|
+
attr_accessor message: ::String
|
559
|
+
SENSITIVE: []
|
560
|
+
end
|
561
|
+
|
562
|
+
class StartDeploymentRequest
|
563
|
+
attr_accessor application_id: ::String
|
564
|
+
attr_accessor environment_id: ::String
|
565
|
+
attr_accessor deployment_strategy_id: ::String
|
566
|
+
attr_accessor configuration_profile_id: ::String
|
567
|
+
attr_accessor configuration_version: ::String
|
568
|
+
attr_accessor description: ::String
|
569
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
570
|
+
attr_accessor kms_key_identifier: ::String
|
571
|
+
SENSITIVE: []
|
572
|
+
end
|
573
|
+
|
574
|
+
class StopDeploymentRequest
|
575
|
+
attr_accessor application_id: ::String
|
576
|
+
attr_accessor environment_id: ::String
|
577
|
+
attr_accessor deployment_number: ::Integer
|
578
|
+
SENSITIVE: []
|
579
|
+
end
|
580
|
+
|
581
|
+
class TagResourceRequest
|
582
|
+
attr_accessor resource_arn: ::String
|
583
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
584
|
+
SENSITIVE: []
|
585
|
+
end
|
586
|
+
|
587
|
+
class UntagResourceRequest
|
588
|
+
attr_accessor resource_arn: ::String
|
589
|
+
attr_accessor tag_keys: ::Array[::String]
|
590
|
+
SENSITIVE: []
|
591
|
+
end
|
592
|
+
|
593
|
+
class UpdateApplicationRequest
|
594
|
+
attr_accessor application_id: ::String
|
595
|
+
attr_accessor name: ::String
|
596
|
+
attr_accessor description: ::String
|
597
|
+
SENSITIVE: []
|
598
|
+
end
|
599
|
+
|
600
|
+
class UpdateConfigurationProfileRequest
|
601
|
+
attr_accessor application_id: ::String
|
602
|
+
attr_accessor configuration_profile_id: ::String
|
603
|
+
attr_accessor name: ::String
|
604
|
+
attr_accessor description: ::String
|
605
|
+
attr_accessor retrieval_role_arn: ::String
|
606
|
+
attr_accessor validators: ::Array[Types::Validator]
|
607
|
+
attr_accessor kms_key_identifier: ::String
|
608
|
+
SENSITIVE: []
|
609
|
+
end
|
610
|
+
|
611
|
+
class UpdateDeploymentStrategyRequest
|
612
|
+
attr_accessor deployment_strategy_id: ::String
|
613
|
+
attr_accessor description: ::String
|
614
|
+
attr_accessor deployment_duration_in_minutes: ::Integer
|
615
|
+
attr_accessor final_bake_time_in_minutes: ::Integer
|
616
|
+
attr_accessor growth_factor: ::Float
|
617
|
+
attr_accessor growth_type: ("LINEAR" | "EXPONENTIAL")
|
618
|
+
SENSITIVE: []
|
619
|
+
end
|
620
|
+
|
621
|
+
class UpdateEnvironmentRequest
|
622
|
+
attr_accessor application_id: ::String
|
623
|
+
attr_accessor environment_id: ::String
|
624
|
+
attr_accessor name: ::String
|
625
|
+
attr_accessor description: ::String
|
626
|
+
attr_accessor monitors: ::Array[Types::Monitor]
|
627
|
+
SENSITIVE: []
|
628
|
+
end
|
629
|
+
|
630
|
+
class UpdateExtensionAssociationRequest
|
631
|
+
attr_accessor extension_association_id: ::String
|
632
|
+
attr_accessor parameters: ::Hash[::String, ::String]
|
633
|
+
SENSITIVE: []
|
634
|
+
end
|
635
|
+
|
636
|
+
class UpdateExtensionRequest
|
637
|
+
attr_accessor extension_identifier: ::String
|
638
|
+
attr_accessor description: ::String
|
639
|
+
attr_accessor 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]]
|
640
|
+
attr_accessor parameters: ::Hash[::String, Types::Parameter]
|
641
|
+
attr_accessor version_number: ::Integer
|
642
|
+
SENSITIVE: []
|
643
|
+
end
|
644
|
+
|
645
|
+
class ValidateConfigurationRequest
|
646
|
+
attr_accessor application_id: ::String
|
647
|
+
attr_accessor configuration_profile_id: ::String
|
648
|
+
attr_accessor configuration_version: ::String
|
649
|
+
SENSITIVE: []
|
650
|
+
end
|
651
|
+
|
652
|
+
class Validator
|
653
|
+
attr_accessor type: ("JSON_SCHEMA" | "LAMBDA")
|
654
|
+
attr_accessor content: ::String
|
655
|
+
SENSITIVE: [:content]
|
656
|
+
end
|
657
|
+
end
|
658
|
+
end
|
data/sig/waiters.rbs
ADDED
@@ -0,0 +1,13 @@
|
|
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
|
+
module Waiters
|
11
|
+
end
|
12
|
+
end
|
13
|
+
end
|