aws-sdk-codedeploy 1.62.0 → 1.64.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-codedeploy/client.rb +92 -13
- data/lib/aws-sdk-codedeploy/client_api.rb +30 -5
- data/lib/aws-sdk-codedeploy/endpoint_provider.rb +1 -1
- data/lib/aws-sdk-codedeploy/errors.rb +11 -0
- data/lib/aws-sdk-codedeploy/plugins/endpoints.rb +1 -0
- data/lib/aws-sdk-codedeploy/types.rb +223 -9
- data/lib/aws-sdk-codedeploy.rb +1 -1
- data/sig/client.rbs +984 -0
- data/sig/errors.rbs +242 -0
- data/sig/resource.rbs +80 -0
- data/sig/types.rbs +1336 -0
- data/sig/waiters.rbs +23 -0
- metadata +13 -8
data/sig/types.rbs
ADDED
@@ -0,0 +1,1336 @@
|
|
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::CodeDeploy
|
9
|
+
module Types
|
10
|
+
|
11
|
+
class AddTagsToOnPremisesInstancesInput
|
12
|
+
attr_accessor tags: ::Array[Types::Tag]
|
13
|
+
attr_accessor instance_names: ::Array[::String]
|
14
|
+
SENSITIVE: []
|
15
|
+
end
|
16
|
+
|
17
|
+
class Alarm
|
18
|
+
attr_accessor name: ::String
|
19
|
+
SENSITIVE: []
|
20
|
+
end
|
21
|
+
|
22
|
+
class AlarmConfiguration
|
23
|
+
attr_accessor enabled: bool
|
24
|
+
attr_accessor ignore_poll_alarm_failure: bool
|
25
|
+
attr_accessor alarms: ::Array[Types::Alarm]
|
26
|
+
SENSITIVE: []
|
27
|
+
end
|
28
|
+
|
29
|
+
class AlarmsLimitExceededException < Aws::EmptyStructure
|
30
|
+
end
|
31
|
+
|
32
|
+
class AppSpecContent
|
33
|
+
attr_accessor content: ::String
|
34
|
+
attr_accessor sha256: ::String
|
35
|
+
SENSITIVE: []
|
36
|
+
end
|
37
|
+
|
38
|
+
class ApplicationAlreadyExistsException < Aws::EmptyStructure
|
39
|
+
end
|
40
|
+
|
41
|
+
class ApplicationDoesNotExistException < Aws::EmptyStructure
|
42
|
+
end
|
43
|
+
|
44
|
+
class ApplicationInfo
|
45
|
+
attr_accessor application_id: ::String
|
46
|
+
attr_accessor application_name: ::String
|
47
|
+
attr_accessor create_time: ::Time
|
48
|
+
attr_accessor linked_to_git_hub: bool
|
49
|
+
attr_accessor git_hub_account_name: ::String
|
50
|
+
attr_accessor compute_platform: ("Server" | "Lambda" | "ECS")
|
51
|
+
SENSITIVE: []
|
52
|
+
end
|
53
|
+
|
54
|
+
class ApplicationLimitExceededException < Aws::EmptyStructure
|
55
|
+
end
|
56
|
+
|
57
|
+
class ApplicationNameRequiredException < Aws::EmptyStructure
|
58
|
+
end
|
59
|
+
|
60
|
+
class ArnNotSupportedException < Aws::EmptyStructure
|
61
|
+
end
|
62
|
+
|
63
|
+
class AutoRollbackConfiguration
|
64
|
+
attr_accessor enabled: bool
|
65
|
+
attr_accessor events: ::Array[("DEPLOYMENT_FAILURE" | "DEPLOYMENT_STOP_ON_ALARM" | "DEPLOYMENT_STOP_ON_REQUEST")]
|
66
|
+
SENSITIVE: []
|
67
|
+
end
|
68
|
+
|
69
|
+
class AutoScalingGroup
|
70
|
+
attr_accessor name: ::String
|
71
|
+
attr_accessor hook: ::String
|
72
|
+
attr_accessor termination_hook: ::String
|
73
|
+
SENSITIVE: []
|
74
|
+
end
|
75
|
+
|
76
|
+
class BatchGetApplicationRevisionsInput
|
77
|
+
attr_accessor application_name: ::String
|
78
|
+
attr_accessor revisions: ::Array[Types::RevisionLocation]
|
79
|
+
SENSITIVE: []
|
80
|
+
end
|
81
|
+
|
82
|
+
class BatchGetApplicationRevisionsOutput
|
83
|
+
attr_accessor application_name: ::String
|
84
|
+
attr_accessor error_message: ::String
|
85
|
+
attr_accessor revisions: ::Array[Types::RevisionInfo]
|
86
|
+
SENSITIVE: []
|
87
|
+
end
|
88
|
+
|
89
|
+
class BatchGetApplicationsInput
|
90
|
+
attr_accessor application_names: ::Array[::String]
|
91
|
+
SENSITIVE: []
|
92
|
+
end
|
93
|
+
|
94
|
+
class BatchGetApplicationsOutput
|
95
|
+
attr_accessor applications_info: ::Array[Types::ApplicationInfo]
|
96
|
+
SENSITIVE: []
|
97
|
+
end
|
98
|
+
|
99
|
+
class BatchGetDeploymentGroupsInput
|
100
|
+
attr_accessor application_name: ::String
|
101
|
+
attr_accessor deployment_group_names: ::Array[::String]
|
102
|
+
SENSITIVE: []
|
103
|
+
end
|
104
|
+
|
105
|
+
class BatchGetDeploymentGroupsOutput
|
106
|
+
attr_accessor deployment_groups_info: ::Array[Types::DeploymentGroupInfo]
|
107
|
+
attr_accessor error_message: ::String
|
108
|
+
SENSITIVE: []
|
109
|
+
end
|
110
|
+
|
111
|
+
class BatchGetDeploymentInstancesInput
|
112
|
+
attr_accessor deployment_id: ::String
|
113
|
+
attr_accessor instance_ids: ::Array[::String]
|
114
|
+
SENSITIVE: []
|
115
|
+
end
|
116
|
+
|
117
|
+
class BatchGetDeploymentInstancesOutput
|
118
|
+
attr_accessor instances_summary: ::Array[Types::InstanceSummary]
|
119
|
+
attr_accessor error_message: ::String
|
120
|
+
SENSITIVE: []
|
121
|
+
end
|
122
|
+
|
123
|
+
class BatchGetDeploymentTargetsInput
|
124
|
+
attr_accessor deployment_id: ::String
|
125
|
+
attr_accessor target_ids: ::Array[::String]
|
126
|
+
SENSITIVE: []
|
127
|
+
end
|
128
|
+
|
129
|
+
class BatchGetDeploymentTargetsOutput
|
130
|
+
attr_accessor deployment_targets: ::Array[Types::DeploymentTarget]
|
131
|
+
SENSITIVE: []
|
132
|
+
end
|
133
|
+
|
134
|
+
class BatchGetDeploymentsInput
|
135
|
+
attr_accessor deployment_ids: ::Array[::String]
|
136
|
+
SENSITIVE: []
|
137
|
+
end
|
138
|
+
|
139
|
+
class BatchGetDeploymentsOutput
|
140
|
+
attr_accessor deployments_info: ::Array[Types::DeploymentInfo]
|
141
|
+
SENSITIVE: []
|
142
|
+
end
|
143
|
+
|
144
|
+
class BatchGetOnPremisesInstancesInput
|
145
|
+
attr_accessor instance_names: ::Array[::String]
|
146
|
+
SENSITIVE: []
|
147
|
+
end
|
148
|
+
|
149
|
+
class BatchGetOnPremisesInstancesOutput
|
150
|
+
attr_accessor instance_infos: ::Array[Types::InstanceInfo]
|
151
|
+
SENSITIVE: []
|
152
|
+
end
|
153
|
+
|
154
|
+
class BatchLimitExceededException < Aws::EmptyStructure
|
155
|
+
end
|
156
|
+
|
157
|
+
class BlueGreenDeploymentConfiguration
|
158
|
+
attr_accessor terminate_blue_instances_on_deployment_success: Types::BlueInstanceTerminationOption
|
159
|
+
attr_accessor deployment_ready_option: Types::DeploymentReadyOption
|
160
|
+
attr_accessor green_fleet_provisioning_option: Types::GreenFleetProvisioningOption
|
161
|
+
SENSITIVE: []
|
162
|
+
end
|
163
|
+
|
164
|
+
class BlueInstanceTerminationOption
|
165
|
+
attr_accessor action: ("TERMINATE" | "KEEP_ALIVE")
|
166
|
+
attr_accessor termination_wait_time_in_minutes: ::Integer
|
167
|
+
SENSITIVE: []
|
168
|
+
end
|
169
|
+
|
170
|
+
class BucketNameFilterRequiredException < Aws::EmptyStructure
|
171
|
+
end
|
172
|
+
|
173
|
+
class CloudFormationTarget
|
174
|
+
attr_accessor deployment_id: ::String
|
175
|
+
attr_accessor target_id: ::String
|
176
|
+
attr_accessor last_updated_at: ::Time
|
177
|
+
attr_accessor lifecycle_events: ::Array[Types::LifecycleEvent]
|
178
|
+
attr_accessor status: ("Pending" | "InProgress" | "Succeeded" | "Failed" | "Skipped" | "Unknown" | "Ready")
|
179
|
+
attr_accessor resource_type: ::String
|
180
|
+
attr_accessor target_version_weight: ::Float
|
181
|
+
SENSITIVE: []
|
182
|
+
end
|
183
|
+
|
184
|
+
class ContinueDeploymentInput
|
185
|
+
attr_accessor deployment_id: ::String
|
186
|
+
attr_accessor deployment_wait_type: ("READY_WAIT" | "TERMINATION_WAIT")
|
187
|
+
SENSITIVE: []
|
188
|
+
end
|
189
|
+
|
190
|
+
class CreateApplicationInput
|
191
|
+
attr_accessor application_name: ::String
|
192
|
+
attr_accessor compute_platform: ("Server" | "Lambda" | "ECS")
|
193
|
+
attr_accessor tags: ::Array[Types::Tag]
|
194
|
+
SENSITIVE: []
|
195
|
+
end
|
196
|
+
|
197
|
+
class CreateApplicationOutput
|
198
|
+
attr_accessor application_id: ::String
|
199
|
+
SENSITIVE: []
|
200
|
+
end
|
201
|
+
|
202
|
+
class CreateDeploymentConfigInput
|
203
|
+
attr_accessor deployment_config_name: ::String
|
204
|
+
attr_accessor minimum_healthy_hosts: Types::MinimumHealthyHosts
|
205
|
+
attr_accessor traffic_routing_config: Types::TrafficRoutingConfig
|
206
|
+
attr_accessor compute_platform: ("Server" | "Lambda" | "ECS")
|
207
|
+
attr_accessor zonal_config: Types::ZonalConfig
|
208
|
+
SENSITIVE: []
|
209
|
+
end
|
210
|
+
|
211
|
+
class CreateDeploymentConfigOutput
|
212
|
+
attr_accessor deployment_config_id: ::String
|
213
|
+
SENSITIVE: []
|
214
|
+
end
|
215
|
+
|
216
|
+
class CreateDeploymentGroupInput
|
217
|
+
attr_accessor application_name: ::String
|
218
|
+
attr_accessor deployment_group_name: ::String
|
219
|
+
attr_accessor deployment_config_name: ::String
|
220
|
+
attr_accessor ec2_tag_filters: ::Array[Types::EC2TagFilter]
|
221
|
+
attr_accessor on_premises_instance_tag_filters: ::Array[Types::TagFilter]
|
222
|
+
attr_accessor auto_scaling_groups: ::Array[::String]
|
223
|
+
attr_accessor service_role_arn: ::String
|
224
|
+
attr_accessor trigger_configurations: ::Array[Types::TriggerConfig]
|
225
|
+
attr_accessor alarm_configuration: Types::AlarmConfiguration
|
226
|
+
attr_accessor auto_rollback_configuration: Types::AutoRollbackConfiguration
|
227
|
+
attr_accessor outdated_instances_strategy: ("UPDATE" | "IGNORE")
|
228
|
+
attr_accessor deployment_style: Types::DeploymentStyle
|
229
|
+
attr_accessor blue_green_deployment_configuration: Types::BlueGreenDeploymentConfiguration
|
230
|
+
attr_accessor load_balancer_info: Types::LoadBalancerInfo
|
231
|
+
attr_accessor ec2_tag_set: Types::EC2TagSet
|
232
|
+
attr_accessor ecs_services: ::Array[Types::ECSService]
|
233
|
+
attr_accessor on_premises_tag_set: Types::OnPremisesTagSet
|
234
|
+
attr_accessor tags: ::Array[Types::Tag]
|
235
|
+
attr_accessor termination_hook_enabled: bool
|
236
|
+
SENSITIVE: []
|
237
|
+
end
|
238
|
+
|
239
|
+
class CreateDeploymentGroupOutput
|
240
|
+
attr_accessor deployment_group_id: ::String
|
241
|
+
SENSITIVE: []
|
242
|
+
end
|
243
|
+
|
244
|
+
class CreateDeploymentInput
|
245
|
+
attr_accessor application_name: ::String
|
246
|
+
attr_accessor deployment_group_name: ::String
|
247
|
+
attr_accessor revision: Types::RevisionLocation
|
248
|
+
attr_accessor deployment_config_name: ::String
|
249
|
+
attr_accessor description: ::String
|
250
|
+
attr_accessor ignore_application_stop_failures: bool
|
251
|
+
attr_accessor target_instances: Types::TargetInstances
|
252
|
+
attr_accessor auto_rollback_configuration: Types::AutoRollbackConfiguration
|
253
|
+
attr_accessor update_outdated_instances_only: bool
|
254
|
+
attr_accessor file_exists_behavior: ("DISALLOW" | "OVERWRITE" | "RETAIN")
|
255
|
+
attr_accessor override_alarm_configuration: Types::AlarmConfiguration
|
256
|
+
SENSITIVE: []
|
257
|
+
end
|
258
|
+
|
259
|
+
class CreateDeploymentOutput
|
260
|
+
attr_accessor deployment_id: ::String
|
261
|
+
SENSITIVE: []
|
262
|
+
end
|
263
|
+
|
264
|
+
class DeleteApplicationInput
|
265
|
+
attr_accessor application_name: ::String
|
266
|
+
SENSITIVE: []
|
267
|
+
end
|
268
|
+
|
269
|
+
class DeleteDeploymentConfigInput
|
270
|
+
attr_accessor deployment_config_name: ::String
|
271
|
+
SENSITIVE: []
|
272
|
+
end
|
273
|
+
|
274
|
+
class DeleteDeploymentGroupInput
|
275
|
+
attr_accessor application_name: ::String
|
276
|
+
attr_accessor deployment_group_name: ::String
|
277
|
+
SENSITIVE: []
|
278
|
+
end
|
279
|
+
|
280
|
+
class DeleteDeploymentGroupOutput
|
281
|
+
attr_accessor hooks_not_cleaned_up: ::Array[Types::AutoScalingGroup]
|
282
|
+
SENSITIVE: []
|
283
|
+
end
|
284
|
+
|
285
|
+
class DeleteGitHubAccountTokenInput
|
286
|
+
attr_accessor token_name: ::String
|
287
|
+
SENSITIVE: []
|
288
|
+
end
|
289
|
+
|
290
|
+
class DeleteGitHubAccountTokenOutput
|
291
|
+
attr_accessor token_name: ::String
|
292
|
+
SENSITIVE: []
|
293
|
+
end
|
294
|
+
|
295
|
+
class DeleteResourcesByExternalIdInput
|
296
|
+
attr_accessor external_id: ::String
|
297
|
+
SENSITIVE: []
|
298
|
+
end
|
299
|
+
|
300
|
+
class DeleteResourcesByExternalIdOutput < Aws::EmptyStructure
|
301
|
+
end
|
302
|
+
|
303
|
+
class DeploymentAlreadyCompletedException < Aws::EmptyStructure
|
304
|
+
end
|
305
|
+
|
306
|
+
class DeploymentAlreadyStartedException < Aws::EmptyStructure
|
307
|
+
end
|
308
|
+
|
309
|
+
class DeploymentConfigAlreadyExistsException < Aws::EmptyStructure
|
310
|
+
end
|
311
|
+
|
312
|
+
class DeploymentConfigDoesNotExistException < Aws::EmptyStructure
|
313
|
+
end
|
314
|
+
|
315
|
+
class DeploymentConfigInUseException < Aws::EmptyStructure
|
316
|
+
end
|
317
|
+
|
318
|
+
class DeploymentConfigInfo
|
319
|
+
attr_accessor deployment_config_id: ::String
|
320
|
+
attr_accessor deployment_config_name: ::String
|
321
|
+
attr_accessor minimum_healthy_hosts: Types::MinimumHealthyHosts
|
322
|
+
attr_accessor create_time: ::Time
|
323
|
+
attr_accessor compute_platform: ("Server" | "Lambda" | "ECS")
|
324
|
+
attr_accessor traffic_routing_config: Types::TrafficRoutingConfig
|
325
|
+
attr_accessor zonal_config: Types::ZonalConfig
|
326
|
+
SENSITIVE: []
|
327
|
+
end
|
328
|
+
|
329
|
+
class DeploymentConfigLimitExceededException < Aws::EmptyStructure
|
330
|
+
end
|
331
|
+
|
332
|
+
class DeploymentConfigNameRequiredException < Aws::EmptyStructure
|
333
|
+
end
|
334
|
+
|
335
|
+
class DeploymentDoesNotExistException < Aws::EmptyStructure
|
336
|
+
end
|
337
|
+
|
338
|
+
class DeploymentGroupAlreadyExistsException < Aws::EmptyStructure
|
339
|
+
end
|
340
|
+
|
341
|
+
class DeploymentGroupDoesNotExistException < Aws::EmptyStructure
|
342
|
+
end
|
343
|
+
|
344
|
+
class DeploymentGroupInfo
|
345
|
+
attr_accessor application_name: ::String
|
346
|
+
attr_accessor deployment_group_id: ::String
|
347
|
+
attr_accessor deployment_group_name: ::String
|
348
|
+
attr_accessor deployment_config_name: ::String
|
349
|
+
attr_accessor ec2_tag_filters: ::Array[Types::EC2TagFilter]
|
350
|
+
attr_accessor on_premises_instance_tag_filters: ::Array[Types::TagFilter]
|
351
|
+
attr_accessor auto_scaling_groups: ::Array[Types::AutoScalingGroup]
|
352
|
+
attr_accessor service_role_arn: ::String
|
353
|
+
attr_accessor target_revision: Types::RevisionLocation
|
354
|
+
attr_accessor trigger_configurations: ::Array[Types::TriggerConfig]
|
355
|
+
attr_accessor alarm_configuration: Types::AlarmConfiguration
|
356
|
+
attr_accessor auto_rollback_configuration: Types::AutoRollbackConfiguration
|
357
|
+
attr_accessor deployment_style: Types::DeploymentStyle
|
358
|
+
attr_accessor outdated_instances_strategy: ("UPDATE" | "IGNORE")
|
359
|
+
attr_accessor blue_green_deployment_configuration: Types::BlueGreenDeploymentConfiguration
|
360
|
+
attr_accessor load_balancer_info: Types::LoadBalancerInfo
|
361
|
+
attr_accessor last_successful_deployment: Types::LastDeploymentInfo
|
362
|
+
attr_accessor last_attempted_deployment: Types::LastDeploymentInfo
|
363
|
+
attr_accessor ec2_tag_set: Types::EC2TagSet
|
364
|
+
attr_accessor on_premises_tag_set: Types::OnPremisesTagSet
|
365
|
+
attr_accessor compute_platform: ("Server" | "Lambda" | "ECS")
|
366
|
+
attr_accessor ecs_services: ::Array[Types::ECSService]
|
367
|
+
attr_accessor termination_hook_enabled: bool
|
368
|
+
SENSITIVE: []
|
369
|
+
end
|
370
|
+
|
371
|
+
class DeploymentGroupLimitExceededException < Aws::EmptyStructure
|
372
|
+
end
|
373
|
+
|
374
|
+
class DeploymentGroupNameRequiredException < Aws::EmptyStructure
|
375
|
+
end
|
376
|
+
|
377
|
+
class DeploymentIdRequiredException < Aws::EmptyStructure
|
378
|
+
end
|
379
|
+
|
380
|
+
class DeploymentInfo
|
381
|
+
attr_accessor application_name: ::String
|
382
|
+
attr_accessor deployment_group_name: ::String
|
383
|
+
attr_accessor deployment_config_name: ::String
|
384
|
+
attr_accessor deployment_id: ::String
|
385
|
+
attr_accessor previous_revision: Types::RevisionLocation
|
386
|
+
attr_accessor revision: Types::RevisionLocation
|
387
|
+
attr_accessor status: ("Created" | "Queued" | "InProgress" | "Baking" | "Succeeded" | "Failed" | "Stopped" | "Ready")
|
388
|
+
attr_accessor error_information: Types::ErrorInformation
|
389
|
+
attr_accessor create_time: ::Time
|
390
|
+
attr_accessor start_time: ::Time
|
391
|
+
attr_accessor complete_time: ::Time
|
392
|
+
attr_accessor deployment_overview: Types::DeploymentOverview
|
393
|
+
attr_accessor description: ::String
|
394
|
+
attr_accessor creator: ("user" | "autoscaling" | "codeDeployRollback" | "CodeDeploy" | "CodeDeployAutoUpdate" | "CloudFormation" | "CloudFormationRollback" | "autoscalingTermination")
|
395
|
+
attr_accessor ignore_application_stop_failures: bool
|
396
|
+
attr_accessor auto_rollback_configuration: Types::AutoRollbackConfiguration
|
397
|
+
attr_accessor update_outdated_instances_only: bool
|
398
|
+
attr_accessor rollback_info: Types::RollbackInfo
|
399
|
+
attr_accessor deployment_style: Types::DeploymentStyle
|
400
|
+
attr_accessor target_instances: Types::TargetInstances
|
401
|
+
attr_accessor instance_termination_wait_time_started: bool
|
402
|
+
attr_accessor blue_green_deployment_configuration: Types::BlueGreenDeploymentConfiguration
|
403
|
+
attr_accessor load_balancer_info: Types::LoadBalancerInfo
|
404
|
+
attr_accessor additional_deployment_status_info: ::String
|
405
|
+
attr_accessor file_exists_behavior: ("DISALLOW" | "OVERWRITE" | "RETAIN")
|
406
|
+
attr_accessor deployment_status_messages: ::Array[::String]
|
407
|
+
attr_accessor compute_platform: ("Server" | "Lambda" | "ECS")
|
408
|
+
attr_accessor external_id: ::String
|
409
|
+
attr_accessor related_deployments: Types::RelatedDeployments
|
410
|
+
attr_accessor override_alarm_configuration: Types::AlarmConfiguration
|
411
|
+
SENSITIVE: []
|
412
|
+
end
|
413
|
+
|
414
|
+
class DeploymentIsNotInReadyStateException < Aws::EmptyStructure
|
415
|
+
end
|
416
|
+
|
417
|
+
class DeploymentLimitExceededException < Aws::EmptyStructure
|
418
|
+
end
|
419
|
+
|
420
|
+
class DeploymentNotStartedException < Aws::EmptyStructure
|
421
|
+
end
|
422
|
+
|
423
|
+
class DeploymentOverview
|
424
|
+
attr_accessor pending: ::Integer
|
425
|
+
attr_accessor in_progress: ::Integer
|
426
|
+
attr_accessor succeeded: ::Integer
|
427
|
+
attr_accessor failed: ::Integer
|
428
|
+
attr_accessor skipped: ::Integer
|
429
|
+
attr_accessor ready: ::Integer
|
430
|
+
SENSITIVE: []
|
431
|
+
end
|
432
|
+
|
433
|
+
class DeploymentReadyOption
|
434
|
+
attr_accessor action_on_timeout: ("CONTINUE_DEPLOYMENT" | "STOP_DEPLOYMENT")
|
435
|
+
attr_accessor wait_time_in_minutes: ::Integer
|
436
|
+
SENSITIVE: []
|
437
|
+
end
|
438
|
+
|
439
|
+
class DeploymentStyle
|
440
|
+
attr_accessor deployment_type: ("IN_PLACE" | "BLUE_GREEN")
|
441
|
+
attr_accessor deployment_option: ("WITH_TRAFFIC_CONTROL" | "WITHOUT_TRAFFIC_CONTROL")
|
442
|
+
SENSITIVE: []
|
443
|
+
end
|
444
|
+
|
445
|
+
class DeploymentTarget
|
446
|
+
attr_accessor deployment_target_type: ("InstanceTarget" | "LambdaTarget" | "ECSTarget" | "CloudFormationTarget")
|
447
|
+
attr_accessor instance_target: Types::InstanceTarget
|
448
|
+
attr_accessor lambda_target: Types::LambdaTarget
|
449
|
+
attr_accessor ecs_target: Types::ECSTarget
|
450
|
+
attr_accessor cloud_formation_target: Types::CloudFormationTarget
|
451
|
+
SENSITIVE: []
|
452
|
+
end
|
453
|
+
|
454
|
+
class DeploymentTargetDoesNotExistException < Aws::EmptyStructure
|
455
|
+
end
|
456
|
+
|
457
|
+
class DeploymentTargetIdRequiredException < Aws::EmptyStructure
|
458
|
+
end
|
459
|
+
|
460
|
+
class DeploymentTargetListSizeExceededException < Aws::EmptyStructure
|
461
|
+
end
|
462
|
+
|
463
|
+
class DeregisterOnPremisesInstanceInput
|
464
|
+
attr_accessor instance_name: ::String
|
465
|
+
SENSITIVE: []
|
466
|
+
end
|
467
|
+
|
468
|
+
class DescriptionTooLongException < Aws::EmptyStructure
|
469
|
+
end
|
470
|
+
|
471
|
+
class Diagnostics
|
472
|
+
attr_accessor error_code: ("Success" | "ScriptMissing" | "ScriptNotExecutable" | "ScriptTimedOut" | "ScriptFailed" | "UnknownError")
|
473
|
+
attr_accessor script_name: ::String
|
474
|
+
attr_accessor message: ::String
|
475
|
+
attr_accessor log_tail: ::String
|
476
|
+
SENSITIVE: []
|
477
|
+
end
|
478
|
+
|
479
|
+
class EC2TagFilter
|
480
|
+
attr_accessor key: ::String
|
481
|
+
attr_accessor value: ::String
|
482
|
+
attr_accessor type: ("KEY_ONLY" | "VALUE_ONLY" | "KEY_AND_VALUE")
|
483
|
+
SENSITIVE: []
|
484
|
+
end
|
485
|
+
|
486
|
+
class EC2TagSet
|
487
|
+
attr_accessor ec2_tag_set_list: ::Array[::Array[Types::EC2TagFilter]]
|
488
|
+
SENSITIVE: []
|
489
|
+
end
|
490
|
+
|
491
|
+
class ECSService
|
492
|
+
attr_accessor service_name: ::String
|
493
|
+
attr_accessor cluster_name: ::String
|
494
|
+
SENSITIVE: []
|
495
|
+
end
|
496
|
+
|
497
|
+
class ECSServiceMappingLimitExceededException < Aws::EmptyStructure
|
498
|
+
end
|
499
|
+
|
500
|
+
class ECSTarget
|
501
|
+
attr_accessor deployment_id: ::String
|
502
|
+
attr_accessor target_id: ::String
|
503
|
+
attr_accessor target_arn: ::String
|
504
|
+
attr_accessor last_updated_at: ::Time
|
505
|
+
attr_accessor lifecycle_events: ::Array[Types::LifecycleEvent]
|
506
|
+
attr_accessor status: ("Pending" | "InProgress" | "Succeeded" | "Failed" | "Skipped" | "Unknown" | "Ready")
|
507
|
+
attr_accessor task_sets_info: ::Array[Types::ECSTaskSet]
|
508
|
+
SENSITIVE: []
|
509
|
+
end
|
510
|
+
|
511
|
+
class ECSTaskSet
|
512
|
+
attr_accessor identifer: ::String
|
513
|
+
attr_accessor desired_count: ::Integer
|
514
|
+
attr_accessor pending_count: ::Integer
|
515
|
+
attr_accessor running_count: ::Integer
|
516
|
+
attr_accessor status: ::String
|
517
|
+
attr_accessor traffic_weight: ::Float
|
518
|
+
attr_accessor target_group: Types::TargetGroupInfo
|
519
|
+
attr_accessor task_set_label: ("Blue" | "Green")
|
520
|
+
SENSITIVE: []
|
521
|
+
end
|
522
|
+
|
523
|
+
class ELBInfo
|
524
|
+
attr_accessor name: ::String
|
525
|
+
SENSITIVE: []
|
526
|
+
end
|
527
|
+
|
528
|
+
class ErrorInformation
|
529
|
+
attr_accessor code: ("AGENT_ISSUE" | "ALARM_ACTIVE" | "APPLICATION_MISSING" | "AUTOSCALING_VALIDATION_ERROR" | "AUTO_SCALING_CONFIGURATION" | "AUTO_SCALING_IAM_ROLE_PERMISSIONS" | "CODEDEPLOY_RESOURCE_CANNOT_BE_FOUND" | "CUSTOMER_APPLICATION_UNHEALTHY" | "DEPLOYMENT_GROUP_MISSING" | "ECS_UPDATE_ERROR" | "ELASTIC_LOAD_BALANCING_INVALID" | "ELB_INVALID_INSTANCE" | "HEALTH_CONSTRAINTS" | "HEALTH_CONSTRAINTS_INVALID" | "HOOK_EXECUTION_FAILURE" | "IAM_ROLE_MISSING" | "IAM_ROLE_PERMISSIONS" | "INTERNAL_ERROR" | "INVALID_ECS_SERVICE" | "INVALID_LAMBDA_CONFIGURATION" | "INVALID_LAMBDA_FUNCTION" | "INVALID_REVISION" | "MANUAL_STOP" | "MISSING_BLUE_GREEN_DEPLOYMENT_CONFIGURATION" | "MISSING_ELB_INFORMATION" | "MISSING_GITHUB_TOKEN" | "NO_EC2_SUBSCRIPTION" | "NO_INSTANCES" | "OVER_MAX_INSTANCES" | "RESOURCE_LIMIT_EXCEEDED" | "REVISION_MISSING" | "THROTTLED" | "TIMEOUT" | "CLOUDFORMATION_STACK_FAILURE")
|
530
|
+
attr_accessor message: ::String
|
531
|
+
SENSITIVE: []
|
532
|
+
end
|
533
|
+
|
534
|
+
class GenericRevisionInfo
|
535
|
+
attr_accessor description: ::String
|
536
|
+
attr_accessor deployment_groups: ::Array[::String]
|
537
|
+
attr_accessor first_used_time: ::Time
|
538
|
+
attr_accessor last_used_time: ::Time
|
539
|
+
attr_accessor register_time: ::Time
|
540
|
+
SENSITIVE: []
|
541
|
+
end
|
542
|
+
|
543
|
+
class GetApplicationInput
|
544
|
+
attr_accessor application_name: ::String
|
545
|
+
SENSITIVE: []
|
546
|
+
end
|
547
|
+
|
548
|
+
class GetApplicationOutput
|
549
|
+
attr_accessor application: Types::ApplicationInfo
|
550
|
+
SENSITIVE: []
|
551
|
+
end
|
552
|
+
|
553
|
+
class GetApplicationRevisionInput
|
554
|
+
attr_accessor application_name: ::String
|
555
|
+
attr_accessor revision: Types::RevisionLocation
|
556
|
+
SENSITIVE: []
|
557
|
+
end
|
558
|
+
|
559
|
+
class GetApplicationRevisionOutput
|
560
|
+
attr_accessor application_name: ::String
|
561
|
+
attr_accessor revision: Types::RevisionLocation
|
562
|
+
attr_accessor revision_info: Types::GenericRevisionInfo
|
563
|
+
SENSITIVE: []
|
564
|
+
end
|
565
|
+
|
566
|
+
class GetDeploymentConfigInput
|
567
|
+
attr_accessor deployment_config_name: ::String
|
568
|
+
SENSITIVE: []
|
569
|
+
end
|
570
|
+
|
571
|
+
class GetDeploymentConfigOutput
|
572
|
+
attr_accessor deployment_config_info: Types::DeploymentConfigInfo
|
573
|
+
SENSITIVE: []
|
574
|
+
end
|
575
|
+
|
576
|
+
class GetDeploymentGroupInput
|
577
|
+
attr_accessor application_name: ::String
|
578
|
+
attr_accessor deployment_group_name: ::String
|
579
|
+
SENSITIVE: []
|
580
|
+
end
|
581
|
+
|
582
|
+
class GetDeploymentGroupOutput
|
583
|
+
attr_accessor deployment_group_info: Types::DeploymentGroupInfo
|
584
|
+
SENSITIVE: []
|
585
|
+
end
|
586
|
+
|
587
|
+
class GetDeploymentInput
|
588
|
+
attr_accessor deployment_id: ::String
|
589
|
+
SENSITIVE: []
|
590
|
+
end
|
591
|
+
|
592
|
+
class GetDeploymentInstanceInput
|
593
|
+
attr_accessor deployment_id: ::String
|
594
|
+
attr_accessor instance_id: ::String
|
595
|
+
SENSITIVE: []
|
596
|
+
end
|
597
|
+
|
598
|
+
class GetDeploymentInstanceOutput
|
599
|
+
attr_accessor instance_summary: Types::InstanceSummary
|
600
|
+
SENSITIVE: []
|
601
|
+
end
|
602
|
+
|
603
|
+
class GetDeploymentOutput
|
604
|
+
attr_accessor deployment_info: Types::DeploymentInfo
|
605
|
+
SENSITIVE: []
|
606
|
+
end
|
607
|
+
|
608
|
+
class GetDeploymentTargetInput
|
609
|
+
attr_accessor deployment_id: ::String
|
610
|
+
attr_accessor target_id: ::String
|
611
|
+
SENSITIVE: []
|
612
|
+
end
|
613
|
+
|
614
|
+
class GetDeploymentTargetOutput
|
615
|
+
attr_accessor deployment_target: Types::DeploymentTarget
|
616
|
+
SENSITIVE: []
|
617
|
+
end
|
618
|
+
|
619
|
+
class GetOnPremisesInstanceInput
|
620
|
+
attr_accessor instance_name: ::String
|
621
|
+
SENSITIVE: []
|
622
|
+
end
|
623
|
+
|
624
|
+
class GetOnPremisesInstanceOutput
|
625
|
+
attr_accessor instance_info: Types::InstanceInfo
|
626
|
+
SENSITIVE: []
|
627
|
+
end
|
628
|
+
|
629
|
+
class GitHubAccountTokenDoesNotExistException < Aws::EmptyStructure
|
630
|
+
end
|
631
|
+
|
632
|
+
class GitHubAccountTokenNameRequiredException < Aws::EmptyStructure
|
633
|
+
end
|
634
|
+
|
635
|
+
class GitHubLocation
|
636
|
+
attr_accessor repository: ::String
|
637
|
+
attr_accessor commit_id: ::String
|
638
|
+
SENSITIVE: []
|
639
|
+
end
|
640
|
+
|
641
|
+
class GreenFleetProvisioningOption
|
642
|
+
attr_accessor action: ("DISCOVER_EXISTING" | "COPY_AUTO_SCALING_GROUP")
|
643
|
+
SENSITIVE: []
|
644
|
+
end
|
645
|
+
|
646
|
+
class IamArnRequiredException < Aws::EmptyStructure
|
647
|
+
end
|
648
|
+
|
649
|
+
class IamSessionArnAlreadyRegisteredException < Aws::EmptyStructure
|
650
|
+
end
|
651
|
+
|
652
|
+
class IamUserArnAlreadyRegisteredException < Aws::EmptyStructure
|
653
|
+
end
|
654
|
+
|
655
|
+
class IamUserArnRequiredException < Aws::EmptyStructure
|
656
|
+
end
|
657
|
+
|
658
|
+
class InstanceDoesNotExistException < Aws::EmptyStructure
|
659
|
+
end
|
660
|
+
|
661
|
+
class InstanceIdRequiredException < Aws::EmptyStructure
|
662
|
+
end
|
663
|
+
|
664
|
+
class InstanceInfo
|
665
|
+
attr_accessor instance_name: ::String
|
666
|
+
attr_accessor iam_session_arn: ::String
|
667
|
+
attr_accessor iam_user_arn: ::String
|
668
|
+
attr_accessor instance_arn: ::String
|
669
|
+
attr_accessor register_time: ::Time
|
670
|
+
attr_accessor deregister_time: ::Time
|
671
|
+
attr_accessor tags: ::Array[Types::Tag]
|
672
|
+
SENSITIVE: []
|
673
|
+
end
|
674
|
+
|
675
|
+
class InstanceLimitExceededException < Aws::EmptyStructure
|
676
|
+
end
|
677
|
+
|
678
|
+
class InstanceNameAlreadyRegisteredException < Aws::EmptyStructure
|
679
|
+
end
|
680
|
+
|
681
|
+
class InstanceNameRequiredException < Aws::EmptyStructure
|
682
|
+
end
|
683
|
+
|
684
|
+
class InstanceNotRegisteredException < Aws::EmptyStructure
|
685
|
+
end
|
686
|
+
|
687
|
+
class InstanceSummary
|
688
|
+
attr_accessor deployment_id: ::String
|
689
|
+
attr_accessor instance_id: ::String
|
690
|
+
attr_accessor status: ("Pending" | "InProgress" | "Succeeded" | "Failed" | "Skipped" | "Unknown" | "Ready")
|
691
|
+
attr_accessor last_updated_at: ::Time
|
692
|
+
attr_accessor lifecycle_events: ::Array[Types::LifecycleEvent]
|
693
|
+
attr_accessor instance_type: ("Blue" | "Green")
|
694
|
+
SENSITIVE: []
|
695
|
+
end
|
696
|
+
|
697
|
+
class InstanceTarget
|
698
|
+
attr_accessor deployment_id: ::String
|
699
|
+
attr_accessor target_id: ::String
|
700
|
+
attr_accessor target_arn: ::String
|
701
|
+
attr_accessor status: ("Pending" | "InProgress" | "Succeeded" | "Failed" | "Skipped" | "Unknown" | "Ready")
|
702
|
+
attr_accessor last_updated_at: ::Time
|
703
|
+
attr_accessor lifecycle_events: ::Array[Types::LifecycleEvent]
|
704
|
+
attr_accessor instance_label: ("Blue" | "Green")
|
705
|
+
SENSITIVE: []
|
706
|
+
end
|
707
|
+
|
708
|
+
class InvalidAlarmConfigException < Aws::EmptyStructure
|
709
|
+
end
|
710
|
+
|
711
|
+
class InvalidApplicationNameException < Aws::EmptyStructure
|
712
|
+
end
|
713
|
+
|
714
|
+
class InvalidArnException < Aws::EmptyStructure
|
715
|
+
end
|
716
|
+
|
717
|
+
class InvalidAutoRollbackConfigException < Aws::EmptyStructure
|
718
|
+
end
|
719
|
+
|
720
|
+
class InvalidAutoScalingGroupException < Aws::EmptyStructure
|
721
|
+
end
|
722
|
+
|
723
|
+
class InvalidBlueGreenDeploymentConfigurationException < Aws::EmptyStructure
|
724
|
+
end
|
725
|
+
|
726
|
+
class InvalidBucketNameFilterException < Aws::EmptyStructure
|
727
|
+
end
|
728
|
+
|
729
|
+
class InvalidComputePlatformException < Aws::EmptyStructure
|
730
|
+
end
|
731
|
+
|
732
|
+
class InvalidDeployedStateFilterException < Aws::EmptyStructure
|
733
|
+
end
|
734
|
+
|
735
|
+
class InvalidDeploymentConfigNameException < Aws::EmptyStructure
|
736
|
+
end
|
737
|
+
|
738
|
+
class InvalidDeploymentGroupNameException < Aws::EmptyStructure
|
739
|
+
end
|
740
|
+
|
741
|
+
class InvalidDeploymentIdException < Aws::EmptyStructure
|
742
|
+
end
|
743
|
+
|
744
|
+
class InvalidDeploymentInstanceTypeException < Aws::EmptyStructure
|
745
|
+
end
|
746
|
+
|
747
|
+
class InvalidDeploymentStatusException < Aws::EmptyStructure
|
748
|
+
end
|
749
|
+
|
750
|
+
class InvalidDeploymentStyleException < Aws::EmptyStructure
|
751
|
+
end
|
752
|
+
|
753
|
+
class InvalidDeploymentTargetIdException < Aws::EmptyStructure
|
754
|
+
end
|
755
|
+
|
756
|
+
class InvalidDeploymentWaitTypeException < Aws::EmptyStructure
|
757
|
+
end
|
758
|
+
|
759
|
+
class InvalidEC2TagCombinationException < Aws::EmptyStructure
|
760
|
+
end
|
761
|
+
|
762
|
+
class InvalidEC2TagException < Aws::EmptyStructure
|
763
|
+
end
|
764
|
+
|
765
|
+
class InvalidECSServiceException < Aws::EmptyStructure
|
766
|
+
end
|
767
|
+
|
768
|
+
class InvalidExternalIdException < Aws::EmptyStructure
|
769
|
+
end
|
770
|
+
|
771
|
+
class InvalidFileExistsBehaviorException < Aws::EmptyStructure
|
772
|
+
end
|
773
|
+
|
774
|
+
class InvalidGitHubAccountTokenException < Aws::EmptyStructure
|
775
|
+
end
|
776
|
+
|
777
|
+
class InvalidGitHubAccountTokenNameException < Aws::EmptyStructure
|
778
|
+
end
|
779
|
+
|
780
|
+
class InvalidIamSessionArnException < Aws::EmptyStructure
|
781
|
+
end
|
782
|
+
|
783
|
+
class InvalidIamUserArnException < Aws::EmptyStructure
|
784
|
+
end
|
785
|
+
|
786
|
+
class InvalidIgnoreApplicationStopFailuresValueException < Aws::EmptyStructure
|
787
|
+
end
|
788
|
+
|
789
|
+
class InvalidInputException < Aws::EmptyStructure
|
790
|
+
end
|
791
|
+
|
792
|
+
class InvalidInstanceIdException < Aws::EmptyStructure
|
793
|
+
end
|
794
|
+
|
795
|
+
class InvalidInstanceNameException < Aws::EmptyStructure
|
796
|
+
end
|
797
|
+
|
798
|
+
class InvalidInstanceStatusException < Aws::EmptyStructure
|
799
|
+
end
|
800
|
+
|
801
|
+
class InvalidInstanceTypeException < Aws::EmptyStructure
|
802
|
+
end
|
803
|
+
|
804
|
+
class InvalidKeyPrefixFilterException < Aws::EmptyStructure
|
805
|
+
end
|
806
|
+
|
807
|
+
class InvalidLifecycleEventHookExecutionIdException < Aws::EmptyStructure
|
808
|
+
end
|
809
|
+
|
810
|
+
class InvalidLifecycleEventHookExecutionStatusException < Aws::EmptyStructure
|
811
|
+
end
|
812
|
+
|
813
|
+
class InvalidLoadBalancerInfoException < Aws::EmptyStructure
|
814
|
+
end
|
815
|
+
|
816
|
+
class InvalidMinimumHealthyHostValueException < Aws::EmptyStructure
|
817
|
+
end
|
818
|
+
|
819
|
+
class InvalidNextTokenException < Aws::EmptyStructure
|
820
|
+
end
|
821
|
+
|
822
|
+
class InvalidOnPremisesTagCombinationException < Aws::EmptyStructure
|
823
|
+
end
|
824
|
+
|
825
|
+
class InvalidOperationException < Aws::EmptyStructure
|
826
|
+
end
|
827
|
+
|
828
|
+
class InvalidRegistrationStatusException < Aws::EmptyStructure
|
829
|
+
end
|
830
|
+
|
831
|
+
class InvalidRevisionException < Aws::EmptyStructure
|
832
|
+
end
|
833
|
+
|
834
|
+
class InvalidRoleException < Aws::EmptyStructure
|
835
|
+
end
|
836
|
+
|
837
|
+
class InvalidSortByException < Aws::EmptyStructure
|
838
|
+
end
|
839
|
+
|
840
|
+
class InvalidSortOrderException < Aws::EmptyStructure
|
841
|
+
end
|
842
|
+
|
843
|
+
class InvalidTagException < Aws::EmptyStructure
|
844
|
+
end
|
845
|
+
|
846
|
+
class InvalidTagFilterException < Aws::EmptyStructure
|
847
|
+
end
|
848
|
+
|
849
|
+
class InvalidTagsToAddException < Aws::EmptyStructure
|
850
|
+
end
|
851
|
+
|
852
|
+
class InvalidTargetException < Aws::EmptyStructure
|
853
|
+
end
|
854
|
+
|
855
|
+
class InvalidTargetFilterNameException < Aws::EmptyStructure
|
856
|
+
end
|
857
|
+
|
858
|
+
class InvalidTargetGroupPairException < Aws::EmptyStructure
|
859
|
+
end
|
860
|
+
|
861
|
+
class InvalidTargetInstancesException < Aws::EmptyStructure
|
862
|
+
end
|
863
|
+
|
864
|
+
class InvalidTimeRangeException < Aws::EmptyStructure
|
865
|
+
end
|
866
|
+
|
867
|
+
class InvalidTrafficRoutingConfigurationException < Aws::EmptyStructure
|
868
|
+
end
|
869
|
+
|
870
|
+
class InvalidTriggerConfigException < Aws::EmptyStructure
|
871
|
+
end
|
872
|
+
|
873
|
+
class InvalidUpdateOutdatedInstancesOnlyValueException < Aws::EmptyStructure
|
874
|
+
end
|
875
|
+
|
876
|
+
class InvalidZonalDeploymentConfigurationException < Aws::EmptyStructure
|
877
|
+
end
|
878
|
+
|
879
|
+
class LambdaFunctionInfo
|
880
|
+
attr_accessor function_name: ::String
|
881
|
+
attr_accessor function_alias: ::String
|
882
|
+
attr_accessor current_version: ::String
|
883
|
+
attr_accessor target_version: ::String
|
884
|
+
attr_accessor target_version_weight: ::Float
|
885
|
+
SENSITIVE: []
|
886
|
+
end
|
887
|
+
|
888
|
+
class LambdaTarget
|
889
|
+
attr_accessor deployment_id: ::String
|
890
|
+
attr_accessor target_id: ::String
|
891
|
+
attr_accessor target_arn: ::String
|
892
|
+
attr_accessor status: ("Pending" | "InProgress" | "Succeeded" | "Failed" | "Skipped" | "Unknown" | "Ready")
|
893
|
+
attr_accessor last_updated_at: ::Time
|
894
|
+
attr_accessor lifecycle_events: ::Array[Types::LifecycleEvent]
|
895
|
+
attr_accessor lambda_function_info: Types::LambdaFunctionInfo
|
896
|
+
SENSITIVE: []
|
897
|
+
end
|
898
|
+
|
899
|
+
class LastDeploymentInfo
|
900
|
+
attr_accessor deployment_id: ::String
|
901
|
+
attr_accessor status: ("Created" | "Queued" | "InProgress" | "Baking" | "Succeeded" | "Failed" | "Stopped" | "Ready")
|
902
|
+
attr_accessor end_time: ::Time
|
903
|
+
attr_accessor create_time: ::Time
|
904
|
+
SENSITIVE: []
|
905
|
+
end
|
906
|
+
|
907
|
+
class LifecycleEvent
|
908
|
+
attr_accessor lifecycle_event_name: ::String
|
909
|
+
attr_accessor diagnostics: Types::Diagnostics
|
910
|
+
attr_accessor start_time: ::Time
|
911
|
+
attr_accessor end_time: ::Time
|
912
|
+
attr_accessor status: ("Pending" | "InProgress" | "Succeeded" | "Failed" | "Skipped" | "Unknown")
|
913
|
+
SENSITIVE: []
|
914
|
+
end
|
915
|
+
|
916
|
+
class LifecycleEventAlreadyCompletedException < Aws::EmptyStructure
|
917
|
+
end
|
918
|
+
|
919
|
+
class LifecycleHookLimitExceededException < Aws::EmptyStructure
|
920
|
+
end
|
921
|
+
|
922
|
+
class ListApplicationRevisionsInput
|
923
|
+
attr_accessor application_name: ::String
|
924
|
+
attr_accessor sort_by: ("registerTime" | "firstUsedTime" | "lastUsedTime")
|
925
|
+
attr_accessor sort_order: ("ascending" | "descending")
|
926
|
+
attr_accessor s3_bucket: ::String
|
927
|
+
attr_accessor s3_key_prefix: ::String
|
928
|
+
attr_accessor deployed: ("include" | "exclude" | "ignore")
|
929
|
+
attr_accessor next_token: ::String
|
930
|
+
SENSITIVE: []
|
931
|
+
end
|
932
|
+
|
933
|
+
class ListApplicationRevisionsOutput
|
934
|
+
attr_accessor revisions: ::Array[Types::RevisionLocation]
|
935
|
+
attr_accessor next_token: ::String
|
936
|
+
SENSITIVE: []
|
937
|
+
end
|
938
|
+
|
939
|
+
class ListApplicationsInput
|
940
|
+
attr_accessor next_token: ::String
|
941
|
+
SENSITIVE: []
|
942
|
+
end
|
943
|
+
|
944
|
+
class ListApplicationsOutput
|
945
|
+
attr_accessor applications: ::Array[::String]
|
946
|
+
attr_accessor next_token: ::String
|
947
|
+
SENSITIVE: []
|
948
|
+
end
|
949
|
+
|
950
|
+
class ListDeploymentConfigsInput
|
951
|
+
attr_accessor next_token: ::String
|
952
|
+
SENSITIVE: []
|
953
|
+
end
|
954
|
+
|
955
|
+
class ListDeploymentConfigsOutput
|
956
|
+
attr_accessor deployment_configs_list: ::Array[::String]
|
957
|
+
attr_accessor next_token: ::String
|
958
|
+
SENSITIVE: []
|
959
|
+
end
|
960
|
+
|
961
|
+
class ListDeploymentGroupsInput
|
962
|
+
attr_accessor application_name: ::String
|
963
|
+
attr_accessor next_token: ::String
|
964
|
+
SENSITIVE: []
|
965
|
+
end
|
966
|
+
|
967
|
+
class ListDeploymentGroupsOutput
|
968
|
+
attr_accessor application_name: ::String
|
969
|
+
attr_accessor deployment_groups: ::Array[::String]
|
970
|
+
attr_accessor next_token: ::String
|
971
|
+
SENSITIVE: []
|
972
|
+
end
|
973
|
+
|
974
|
+
class ListDeploymentInstancesInput
|
975
|
+
attr_accessor deployment_id: ::String
|
976
|
+
attr_accessor next_token: ::String
|
977
|
+
attr_accessor instance_status_filter: ::Array[("Pending" | "InProgress" | "Succeeded" | "Failed" | "Skipped" | "Unknown" | "Ready")]
|
978
|
+
attr_accessor instance_type_filter: ::Array[("Blue" | "Green")]
|
979
|
+
SENSITIVE: []
|
980
|
+
end
|
981
|
+
|
982
|
+
class ListDeploymentInstancesOutput
|
983
|
+
attr_accessor instances_list: ::Array[::String]
|
984
|
+
attr_accessor next_token: ::String
|
985
|
+
SENSITIVE: []
|
986
|
+
end
|
987
|
+
|
988
|
+
class ListDeploymentTargetsInput
|
989
|
+
attr_accessor deployment_id: ::String
|
990
|
+
attr_accessor next_token: ::String
|
991
|
+
attr_accessor target_filters: ::Hash[("TargetStatus" | "ServerInstanceLabel"), ::Array[::String]]
|
992
|
+
SENSITIVE: []
|
993
|
+
end
|
994
|
+
|
995
|
+
class ListDeploymentTargetsOutput
|
996
|
+
attr_accessor target_ids: ::Array[::String]
|
997
|
+
attr_accessor next_token: ::String
|
998
|
+
SENSITIVE: []
|
999
|
+
end
|
1000
|
+
|
1001
|
+
class ListDeploymentsInput
|
1002
|
+
attr_accessor application_name: ::String
|
1003
|
+
attr_accessor deployment_group_name: ::String
|
1004
|
+
attr_accessor external_id: ::String
|
1005
|
+
attr_accessor include_only_statuses: ::Array[("Created" | "Queued" | "InProgress" | "Baking" | "Succeeded" | "Failed" | "Stopped" | "Ready")]
|
1006
|
+
attr_accessor create_time_range: Types::TimeRange
|
1007
|
+
attr_accessor next_token: ::String
|
1008
|
+
SENSITIVE: []
|
1009
|
+
end
|
1010
|
+
|
1011
|
+
class ListDeploymentsOutput
|
1012
|
+
attr_accessor deployments: ::Array[::String]
|
1013
|
+
attr_accessor next_token: ::String
|
1014
|
+
SENSITIVE: []
|
1015
|
+
end
|
1016
|
+
|
1017
|
+
class ListGitHubAccountTokenNamesInput
|
1018
|
+
attr_accessor next_token: ::String
|
1019
|
+
SENSITIVE: []
|
1020
|
+
end
|
1021
|
+
|
1022
|
+
class ListGitHubAccountTokenNamesOutput
|
1023
|
+
attr_accessor token_name_list: ::Array[::String]
|
1024
|
+
attr_accessor next_token: ::String
|
1025
|
+
SENSITIVE: []
|
1026
|
+
end
|
1027
|
+
|
1028
|
+
class ListOnPremisesInstancesInput
|
1029
|
+
attr_accessor registration_status: ("Registered" | "Deregistered")
|
1030
|
+
attr_accessor tag_filters: ::Array[Types::TagFilter]
|
1031
|
+
attr_accessor next_token: ::String
|
1032
|
+
SENSITIVE: []
|
1033
|
+
end
|
1034
|
+
|
1035
|
+
class ListOnPremisesInstancesOutput
|
1036
|
+
attr_accessor instance_names: ::Array[::String]
|
1037
|
+
attr_accessor next_token: ::String
|
1038
|
+
SENSITIVE: []
|
1039
|
+
end
|
1040
|
+
|
1041
|
+
class ListTagsForResourceInput
|
1042
|
+
attr_accessor resource_arn: ::String
|
1043
|
+
attr_accessor next_token: ::String
|
1044
|
+
SENSITIVE: []
|
1045
|
+
end
|
1046
|
+
|
1047
|
+
class ListTagsForResourceOutput
|
1048
|
+
attr_accessor tags: ::Array[Types::Tag]
|
1049
|
+
attr_accessor next_token: ::String
|
1050
|
+
SENSITIVE: []
|
1051
|
+
end
|
1052
|
+
|
1053
|
+
class LoadBalancerInfo
|
1054
|
+
attr_accessor elb_info_list: ::Array[Types::ELBInfo]
|
1055
|
+
attr_accessor target_group_info_list: ::Array[Types::TargetGroupInfo]
|
1056
|
+
attr_accessor target_group_pair_info_list: ::Array[Types::TargetGroupPairInfo]
|
1057
|
+
SENSITIVE: []
|
1058
|
+
end
|
1059
|
+
|
1060
|
+
class MinimumHealthyHosts
|
1061
|
+
attr_accessor type: ("HOST_COUNT" | "FLEET_PERCENT")
|
1062
|
+
attr_accessor value: ::Integer
|
1063
|
+
SENSITIVE: []
|
1064
|
+
end
|
1065
|
+
|
1066
|
+
class MinimumHealthyHostsPerZone
|
1067
|
+
attr_accessor type: ("HOST_COUNT" | "FLEET_PERCENT")
|
1068
|
+
attr_accessor value: ::Integer
|
1069
|
+
SENSITIVE: []
|
1070
|
+
end
|
1071
|
+
|
1072
|
+
class MultipleIamArnsProvidedException < Aws::EmptyStructure
|
1073
|
+
end
|
1074
|
+
|
1075
|
+
class OnPremisesTagSet
|
1076
|
+
attr_accessor on_premises_tag_set_list: ::Array[::Array[Types::TagFilter]]
|
1077
|
+
SENSITIVE: []
|
1078
|
+
end
|
1079
|
+
|
1080
|
+
class OperationNotSupportedException < Aws::EmptyStructure
|
1081
|
+
end
|
1082
|
+
|
1083
|
+
class PutLifecycleEventHookExecutionStatusInput
|
1084
|
+
attr_accessor deployment_id: ::String
|
1085
|
+
attr_accessor lifecycle_event_hook_execution_id: ::String
|
1086
|
+
attr_accessor status: ("Pending" | "InProgress" | "Succeeded" | "Failed" | "Skipped" | "Unknown")
|
1087
|
+
SENSITIVE: []
|
1088
|
+
end
|
1089
|
+
|
1090
|
+
class PutLifecycleEventHookExecutionStatusOutput
|
1091
|
+
attr_accessor lifecycle_event_hook_execution_id: ::String
|
1092
|
+
SENSITIVE: []
|
1093
|
+
end
|
1094
|
+
|
1095
|
+
class RawString
|
1096
|
+
attr_accessor content: ::String
|
1097
|
+
attr_accessor sha256: ::String
|
1098
|
+
SENSITIVE: []
|
1099
|
+
end
|
1100
|
+
|
1101
|
+
class RegisterApplicationRevisionInput
|
1102
|
+
attr_accessor application_name: ::String
|
1103
|
+
attr_accessor description: ::String
|
1104
|
+
attr_accessor revision: Types::RevisionLocation
|
1105
|
+
SENSITIVE: []
|
1106
|
+
end
|
1107
|
+
|
1108
|
+
class RegisterOnPremisesInstanceInput
|
1109
|
+
attr_accessor instance_name: ::String
|
1110
|
+
attr_accessor iam_session_arn: ::String
|
1111
|
+
attr_accessor iam_user_arn: ::String
|
1112
|
+
SENSITIVE: []
|
1113
|
+
end
|
1114
|
+
|
1115
|
+
class RelatedDeployments
|
1116
|
+
attr_accessor auto_update_outdated_instances_root_deployment_id: ::String
|
1117
|
+
attr_accessor auto_update_outdated_instances_deployment_ids: ::Array[::String]
|
1118
|
+
SENSITIVE: []
|
1119
|
+
end
|
1120
|
+
|
1121
|
+
class RemoveTagsFromOnPremisesInstancesInput
|
1122
|
+
attr_accessor tags: ::Array[Types::Tag]
|
1123
|
+
attr_accessor instance_names: ::Array[::String]
|
1124
|
+
SENSITIVE: []
|
1125
|
+
end
|
1126
|
+
|
1127
|
+
class ResourceArnRequiredException < Aws::EmptyStructure
|
1128
|
+
end
|
1129
|
+
|
1130
|
+
class ResourceValidationException < Aws::EmptyStructure
|
1131
|
+
end
|
1132
|
+
|
1133
|
+
class RevisionDoesNotExistException < Aws::EmptyStructure
|
1134
|
+
end
|
1135
|
+
|
1136
|
+
class RevisionInfo
|
1137
|
+
attr_accessor revision_location: Types::RevisionLocation
|
1138
|
+
attr_accessor generic_revision_info: Types::GenericRevisionInfo
|
1139
|
+
SENSITIVE: []
|
1140
|
+
end
|
1141
|
+
|
1142
|
+
class RevisionLocation
|
1143
|
+
attr_accessor revision_type: ("S3" | "GitHub" | "String" | "AppSpecContent")
|
1144
|
+
attr_accessor s3_location: Types::S3Location
|
1145
|
+
attr_accessor git_hub_location: Types::GitHubLocation
|
1146
|
+
attr_accessor string: Types::RawString
|
1147
|
+
attr_accessor app_spec_content: Types::AppSpecContent
|
1148
|
+
SENSITIVE: []
|
1149
|
+
end
|
1150
|
+
|
1151
|
+
class RevisionRequiredException < Aws::EmptyStructure
|
1152
|
+
end
|
1153
|
+
|
1154
|
+
class RoleRequiredException < Aws::EmptyStructure
|
1155
|
+
end
|
1156
|
+
|
1157
|
+
class RollbackInfo
|
1158
|
+
attr_accessor rollback_deployment_id: ::String
|
1159
|
+
attr_accessor rollback_triggering_deployment_id: ::String
|
1160
|
+
attr_accessor rollback_message: ::String
|
1161
|
+
SENSITIVE: []
|
1162
|
+
end
|
1163
|
+
|
1164
|
+
class S3Location
|
1165
|
+
attr_accessor bucket: ::String
|
1166
|
+
attr_accessor key: ::String
|
1167
|
+
attr_accessor bundle_type: ("tar" | "tgz" | "zip" | "YAML" | "JSON")
|
1168
|
+
attr_accessor version: ::String
|
1169
|
+
attr_accessor e_tag: ::String
|
1170
|
+
SENSITIVE: []
|
1171
|
+
end
|
1172
|
+
|
1173
|
+
class SkipWaitTimeForInstanceTerminationInput
|
1174
|
+
attr_accessor deployment_id: ::String
|
1175
|
+
SENSITIVE: []
|
1176
|
+
end
|
1177
|
+
|
1178
|
+
class StopDeploymentInput
|
1179
|
+
attr_accessor deployment_id: ::String
|
1180
|
+
attr_accessor auto_rollback_enabled: bool
|
1181
|
+
SENSITIVE: []
|
1182
|
+
end
|
1183
|
+
|
1184
|
+
class StopDeploymentOutput
|
1185
|
+
attr_accessor status: ("Pending" | "Succeeded")
|
1186
|
+
attr_accessor status_message: ::String
|
1187
|
+
SENSITIVE: []
|
1188
|
+
end
|
1189
|
+
|
1190
|
+
class Tag
|
1191
|
+
attr_accessor key: ::String
|
1192
|
+
attr_accessor value: ::String
|
1193
|
+
SENSITIVE: []
|
1194
|
+
end
|
1195
|
+
|
1196
|
+
class TagFilter
|
1197
|
+
attr_accessor key: ::String
|
1198
|
+
attr_accessor value: ::String
|
1199
|
+
attr_accessor type: ("KEY_ONLY" | "VALUE_ONLY" | "KEY_AND_VALUE")
|
1200
|
+
SENSITIVE: []
|
1201
|
+
end
|
1202
|
+
|
1203
|
+
class TagLimitExceededException < Aws::EmptyStructure
|
1204
|
+
end
|
1205
|
+
|
1206
|
+
class TagRequiredException < Aws::EmptyStructure
|
1207
|
+
end
|
1208
|
+
|
1209
|
+
class TagResourceInput
|
1210
|
+
attr_accessor resource_arn: ::String
|
1211
|
+
attr_accessor tags: ::Array[Types::Tag]
|
1212
|
+
SENSITIVE: []
|
1213
|
+
end
|
1214
|
+
|
1215
|
+
class TagResourceOutput < Aws::EmptyStructure
|
1216
|
+
end
|
1217
|
+
|
1218
|
+
class TagSetListLimitExceededException < Aws::EmptyStructure
|
1219
|
+
end
|
1220
|
+
|
1221
|
+
class TargetGroupInfo
|
1222
|
+
attr_accessor name: ::String
|
1223
|
+
SENSITIVE: []
|
1224
|
+
end
|
1225
|
+
|
1226
|
+
class TargetGroupPairInfo
|
1227
|
+
attr_accessor target_groups: ::Array[Types::TargetGroupInfo]
|
1228
|
+
attr_accessor prod_traffic_route: Types::TrafficRoute
|
1229
|
+
attr_accessor test_traffic_route: Types::TrafficRoute
|
1230
|
+
SENSITIVE: []
|
1231
|
+
end
|
1232
|
+
|
1233
|
+
class TargetInstances
|
1234
|
+
attr_accessor tag_filters: ::Array[Types::EC2TagFilter]
|
1235
|
+
attr_accessor auto_scaling_groups: ::Array[::String]
|
1236
|
+
attr_accessor ec2_tag_set: Types::EC2TagSet
|
1237
|
+
SENSITIVE: []
|
1238
|
+
end
|
1239
|
+
|
1240
|
+
class ThrottlingException < Aws::EmptyStructure
|
1241
|
+
end
|
1242
|
+
|
1243
|
+
class TimeBasedCanary
|
1244
|
+
attr_accessor canary_percentage: ::Integer
|
1245
|
+
attr_accessor canary_interval: ::Integer
|
1246
|
+
SENSITIVE: []
|
1247
|
+
end
|
1248
|
+
|
1249
|
+
class TimeBasedLinear
|
1250
|
+
attr_accessor linear_percentage: ::Integer
|
1251
|
+
attr_accessor linear_interval: ::Integer
|
1252
|
+
SENSITIVE: []
|
1253
|
+
end
|
1254
|
+
|
1255
|
+
class TimeRange
|
1256
|
+
attr_accessor start: ::Time
|
1257
|
+
attr_accessor end: ::Time
|
1258
|
+
SENSITIVE: []
|
1259
|
+
end
|
1260
|
+
|
1261
|
+
class TrafficRoute
|
1262
|
+
attr_accessor listener_arns: ::Array[::String]
|
1263
|
+
SENSITIVE: []
|
1264
|
+
end
|
1265
|
+
|
1266
|
+
class TrafficRoutingConfig
|
1267
|
+
attr_accessor type: ("TimeBasedCanary" | "TimeBasedLinear" | "AllAtOnce")
|
1268
|
+
attr_accessor time_based_canary: Types::TimeBasedCanary
|
1269
|
+
attr_accessor time_based_linear: Types::TimeBasedLinear
|
1270
|
+
SENSITIVE: []
|
1271
|
+
end
|
1272
|
+
|
1273
|
+
class TriggerConfig
|
1274
|
+
attr_accessor trigger_name: ::String
|
1275
|
+
attr_accessor trigger_target_arn: ::String
|
1276
|
+
attr_accessor trigger_events: ::Array[("DeploymentStart" | "DeploymentSuccess" | "DeploymentFailure" | "DeploymentStop" | "DeploymentRollback" | "DeploymentReady" | "InstanceStart" | "InstanceSuccess" | "InstanceFailure" | "InstanceReady")]
|
1277
|
+
SENSITIVE: []
|
1278
|
+
end
|
1279
|
+
|
1280
|
+
class TriggerTargetsLimitExceededException < Aws::EmptyStructure
|
1281
|
+
end
|
1282
|
+
|
1283
|
+
class UnsupportedActionForDeploymentTypeException < Aws::EmptyStructure
|
1284
|
+
end
|
1285
|
+
|
1286
|
+
class UntagResourceInput
|
1287
|
+
attr_accessor resource_arn: ::String
|
1288
|
+
attr_accessor tag_keys: ::Array[::String]
|
1289
|
+
SENSITIVE: []
|
1290
|
+
end
|
1291
|
+
|
1292
|
+
class UntagResourceOutput < Aws::EmptyStructure
|
1293
|
+
end
|
1294
|
+
|
1295
|
+
class UpdateApplicationInput
|
1296
|
+
attr_accessor application_name: ::String
|
1297
|
+
attr_accessor new_application_name: ::String
|
1298
|
+
SENSITIVE: []
|
1299
|
+
end
|
1300
|
+
|
1301
|
+
class UpdateDeploymentGroupInput
|
1302
|
+
attr_accessor application_name: ::String
|
1303
|
+
attr_accessor current_deployment_group_name: ::String
|
1304
|
+
attr_accessor new_deployment_group_name: ::String
|
1305
|
+
attr_accessor deployment_config_name: ::String
|
1306
|
+
attr_accessor ec2_tag_filters: ::Array[Types::EC2TagFilter]
|
1307
|
+
attr_accessor on_premises_instance_tag_filters: ::Array[Types::TagFilter]
|
1308
|
+
attr_accessor auto_scaling_groups: ::Array[::String]
|
1309
|
+
attr_accessor service_role_arn: ::String
|
1310
|
+
attr_accessor trigger_configurations: ::Array[Types::TriggerConfig]
|
1311
|
+
attr_accessor alarm_configuration: Types::AlarmConfiguration
|
1312
|
+
attr_accessor auto_rollback_configuration: Types::AutoRollbackConfiguration
|
1313
|
+
attr_accessor outdated_instances_strategy: ("UPDATE" | "IGNORE")
|
1314
|
+
attr_accessor deployment_style: Types::DeploymentStyle
|
1315
|
+
attr_accessor blue_green_deployment_configuration: Types::BlueGreenDeploymentConfiguration
|
1316
|
+
attr_accessor load_balancer_info: Types::LoadBalancerInfo
|
1317
|
+
attr_accessor ec2_tag_set: Types::EC2TagSet
|
1318
|
+
attr_accessor ecs_services: ::Array[Types::ECSService]
|
1319
|
+
attr_accessor on_premises_tag_set: Types::OnPremisesTagSet
|
1320
|
+
attr_accessor termination_hook_enabled: bool
|
1321
|
+
SENSITIVE: []
|
1322
|
+
end
|
1323
|
+
|
1324
|
+
class UpdateDeploymentGroupOutput
|
1325
|
+
attr_accessor hooks_not_cleaned_up: ::Array[Types::AutoScalingGroup]
|
1326
|
+
SENSITIVE: []
|
1327
|
+
end
|
1328
|
+
|
1329
|
+
class ZonalConfig
|
1330
|
+
attr_accessor first_zone_monitor_duration_in_seconds: ::Integer
|
1331
|
+
attr_accessor monitor_duration_in_seconds: ::Integer
|
1332
|
+
attr_accessor minimum_healthy_hosts_per_zone: Types::MinimumHealthyHostsPerZone
|
1333
|
+
SENSITIVE: []
|
1334
|
+
end
|
1335
|
+
end
|
1336
|
+
end
|