aws-sdk-codedeploy 1.26.0 → 1.31.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 +5 -5
- data/lib/aws-sdk-codedeploy.rb +7 -4
- data/lib/aws-sdk-codedeploy/client.rb +252 -99
- data/lib/aws-sdk-codedeploy/client_api.rb +264 -0
- data/lib/aws-sdk-codedeploy/errors.rb +1265 -0
- data/lib/aws-sdk-codedeploy/resource.rb +1 -0
- data/lib/aws-sdk-codedeploy/types.rb +1068 -198
- data/lib/aws-sdk-codedeploy/waiters.rb +61 -0
- metadata +5 -5
@@ -6,9 +6,1274 @@
|
|
6
6
|
# WARNING ABOUT GENERATED CODE
|
7
7
|
|
8
8
|
module Aws::CodeDeploy
|
9
|
+
|
10
|
+
# When CodeDeploy returns an error response, the Ruby SDK constructs and raises an error.
|
11
|
+
# These errors all extend Aws::CodeDeploy::Errors::ServiceError < {Aws::Errors::ServiceError}
|
12
|
+
#
|
13
|
+
# You can rescue all CodeDeploy errors using ServiceError:
|
14
|
+
#
|
15
|
+
# begin
|
16
|
+
# # do stuff
|
17
|
+
# rescue Aws::CodeDeploy::Errors::ServiceError
|
18
|
+
# # rescues all CodeDeploy API errors
|
19
|
+
# end
|
20
|
+
#
|
21
|
+
#
|
22
|
+
# ## Request Context
|
23
|
+
# ServiceError objects have a {Aws::Errors::ServiceError#context #context} method that returns
|
24
|
+
# information about the request that generated the error.
|
25
|
+
# See {Seahorse::Client::RequestContext} for more information.
|
26
|
+
#
|
27
|
+
# ## Error Classes
|
28
|
+
# * {AlarmsLimitExceededException}
|
29
|
+
# * {ApplicationAlreadyExistsException}
|
30
|
+
# * {ApplicationDoesNotExistException}
|
31
|
+
# * {ApplicationLimitExceededException}
|
32
|
+
# * {ApplicationNameRequiredException}
|
33
|
+
# * {ArnNotSupportedException}
|
34
|
+
# * {BatchLimitExceededException}
|
35
|
+
# * {BucketNameFilterRequiredException}
|
36
|
+
# * {DeploymentAlreadyCompletedException}
|
37
|
+
# * {DeploymentAlreadyStartedException}
|
38
|
+
# * {DeploymentConfigAlreadyExistsException}
|
39
|
+
# * {DeploymentConfigDoesNotExistException}
|
40
|
+
# * {DeploymentConfigInUseException}
|
41
|
+
# * {DeploymentConfigLimitExceededException}
|
42
|
+
# * {DeploymentConfigNameRequiredException}
|
43
|
+
# * {DeploymentDoesNotExistException}
|
44
|
+
# * {DeploymentGroupAlreadyExistsException}
|
45
|
+
# * {DeploymentGroupDoesNotExistException}
|
46
|
+
# * {DeploymentGroupLimitExceededException}
|
47
|
+
# * {DeploymentGroupNameRequiredException}
|
48
|
+
# * {DeploymentIdRequiredException}
|
49
|
+
# * {DeploymentIsNotInReadyStateException}
|
50
|
+
# * {DeploymentLimitExceededException}
|
51
|
+
# * {DeploymentNotStartedException}
|
52
|
+
# * {DeploymentTargetDoesNotExistException}
|
53
|
+
# * {DeploymentTargetIdRequiredException}
|
54
|
+
# * {DeploymentTargetListSizeExceededException}
|
55
|
+
# * {DescriptionTooLongException}
|
56
|
+
# * {ECSServiceMappingLimitExceededException}
|
57
|
+
# * {GitHubAccountTokenDoesNotExistException}
|
58
|
+
# * {GitHubAccountTokenNameRequiredException}
|
59
|
+
# * {IamArnRequiredException}
|
60
|
+
# * {IamSessionArnAlreadyRegisteredException}
|
61
|
+
# * {IamUserArnAlreadyRegisteredException}
|
62
|
+
# * {IamUserArnRequiredException}
|
63
|
+
# * {InstanceDoesNotExistException}
|
64
|
+
# * {InstanceIdRequiredException}
|
65
|
+
# * {InstanceLimitExceededException}
|
66
|
+
# * {InstanceNameAlreadyRegisteredException}
|
67
|
+
# * {InstanceNameRequiredException}
|
68
|
+
# * {InstanceNotRegisteredException}
|
69
|
+
# * {InvalidAlarmConfigException}
|
70
|
+
# * {InvalidApplicationNameException}
|
71
|
+
# * {InvalidArnException}
|
72
|
+
# * {InvalidAutoRollbackConfigException}
|
73
|
+
# * {InvalidAutoScalingGroupException}
|
74
|
+
# * {InvalidBlueGreenDeploymentConfigurationException}
|
75
|
+
# * {InvalidBucketNameFilterException}
|
76
|
+
# * {InvalidComputePlatformException}
|
77
|
+
# * {InvalidDeployedStateFilterException}
|
78
|
+
# * {InvalidDeploymentConfigIdException}
|
79
|
+
# * {InvalidDeploymentConfigNameException}
|
80
|
+
# * {InvalidDeploymentGroupNameException}
|
81
|
+
# * {InvalidDeploymentIdException}
|
82
|
+
# * {InvalidDeploymentInstanceTypeException}
|
83
|
+
# * {InvalidDeploymentStatusException}
|
84
|
+
# * {InvalidDeploymentStyleException}
|
85
|
+
# * {InvalidDeploymentTargetIdException}
|
86
|
+
# * {InvalidDeploymentWaitTypeException}
|
87
|
+
# * {InvalidEC2TagCombinationException}
|
88
|
+
# * {InvalidEC2TagException}
|
89
|
+
# * {InvalidECSServiceException}
|
90
|
+
# * {InvalidExternalIdException}
|
91
|
+
# * {InvalidFileExistsBehaviorException}
|
92
|
+
# * {InvalidGitHubAccountTokenException}
|
93
|
+
# * {InvalidGitHubAccountTokenNameException}
|
94
|
+
# * {InvalidIamSessionArnException}
|
95
|
+
# * {InvalidIamUserArnException}
|
96
|
+
# * {InvalidIgnoreApplicationStopFailuresValueException}
|
97
|
+
# * {InvalidInputException}
|
98
|
+
# * {InvalidInstanceIdException}
|
99
|
+
# * {InvalidInstanceNameException}
|
100
|
+
# * {InvalidInstanceStatusException}
|
101
|
+
# * {InvalidInstanceTypeException}
|
102
|
+
# * {InvalidKeyPrefixFilterException}
|
103
|
+
# * {InvalidLifecycleEventHookExecutionIdException}
|
104
|
+
# * {InvalidLifecycleEventHookExecutionStatusException}
|
105
|
+
# * {InvalidLoadBalancerInfoException}
|
106
|
+
# * {InvalidMinimumHealthyHostValueException}
|
107
|
+
# * {InvalidNextTokenException}
|
108
|
+
# * {InvalidOnPremisesTagCombinationException}
|
109
|
+
# * {InvalidOperationException}
|
110
|
+
# * {InvalidRegistrationStatusException}
|
111
|
+
# * {InvalidRevisionException}
|
112
|
+
# * {InvalidRoleException}
|
113
|
+
# * {InvalidSortByException}
|
114
|
+
# * {InvalidSortOrderException}
|
115
|
+
# * {InvalidTagException}
|
116
|
+
# * {InvalidTagFilterException}
|
117
|
+
# * {InvalidTagsToAddException}
|
118
|
+
# * {InvalidTargetException}
|
119
|
+
# * {InvalidTargetFilterNameException}
|
120
|
+
# * {InvalidTargetGroupPairException}
|
121
|
+
# * {InvalidTargetInstancesException}
|
122
|
+
# * {InvalidTimeRangeException}
|
123
|
+
# * {InvalidTrafficRoutingConfigurationException}
|
124
|
+
# * {InvalidTriggerConfigException}
|
125
|
+
# * {InvalidUpdateOutdatedInstancesOnlyValueException}
|
126
|
+
# * {LifecycleEventAlreadyCompletedException}
|
127
|
+
# * {LifecycleHookLimitExceededException}
|
128
|
+
# * {MultipleIamArnsProvidedException}
|
129
|
+
# * {OperationNotSupportedException}
|
130
|
+
# * {ResourceArnRequiredException}
|
131
|
+
# * {ResourceValidationException}
|
132
|
+
# * {RevisionDoesNotExistException}
|
133
|
+
# * {RevisionRequiredException}
|
134
|
+
# * {RoleRequiredException}
|
135
|
+
# * {TagLimitExceededException}
|
136
|
+
# * {TagRequiredException}
|
137
|
+
# * {TagSetListLimitExceededException}
|
138
|
+
# * {ThrottlingException}
|
139
|
+
# * {TriggerTargetsLimitExceededException}
|
140
|
+
# * {UnsupportedActionForDeploymentTypeException}
|
141
|
+
#
|
142
|
+
# Additionally, error classes are dynamically generated for service errors based on the error code
|
143
|
+
# if they are not defined above.
|
9
144
|
module Errors
|
10
145
|
|
11
146
|
extend Aws::Errors::DynamicErrors
|
12
147
|
|
148
|
+
class AlarmsLimitExceededException < ServiceError
|
149
|
+
|
150
|
+
# @param [Seahorse::Client::RequestContext] context
|
151
|
+
# @param [String] message
|
152
|
+
# @param [Aws::CodeDeploy::Types::AlarmsLimitExceededException] data
|
153
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
154
|
+
super(context, message, data)
|
155
|
+
end
|
156
|
+
end
|
157
|
+
|
158
|
+
class ApplicationAlreadyExistsException < ServiceError
|
159
|
+
|
160
|
+
# @param [Seahorse::Client::RequestContext] context
|
161
|
+
# @param [String] message
|
162
|
+
# @param [Aws::CodeDeploy::Types::ApplicationAlreadyExistsException] data
|
163
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
164
|
+
super(context, message, data)
|
165
|
+
end
|
166
|
+
end
|
167
|
+
|
168
|
+
class ApplicationDoesNotExistException < ServiceError
|
169
|
+
|
170
|
+
# @param [Seahorse::Client::RequestContext] context
|
171
|
+
# @param [String] message
|
172
|
+
# @param [Aws::CodeDeploy::Types::ApplicationDoesNotExistException] data
|
173
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
174
|
+
super(context, message, data)
|
175
|
+
end
|
176
|
+
end
|
177
|
+
|
178
|
+
class ApplicationLimitExceededException < ServiceError
|
179
|
+
|
180
|
+
# @param [Seahorse::Client::RequestContext] context
|
181
|
+
# @param [String] message
|
182
|
+
# @param [Aws::CodeDeploy::Types::ApplicationLimitExceededException] data
|
183
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
184
|
+
super(context, message, data)
|
185
|
+
end
|
186
|
+
end
|
187
|
+
|
188
|
+
class ApplicationNameRequiredException < ServiceError
|
189
|
+
|
190
|
+
# @param [Seahorse::Client::RequestContext] context
|
191
|
+
# @param [String] message
|
192
|
+
# @param [Aws::CodeDeploy::Types::ApplicationNameRequiredException] data
|
193
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
194
|
+
super(context, message, data)
|
195
|
+
end
|
196
|
+
end
|
197
|
+
|
198
|
+
class ArnNotSupportedException < ServiceError
|
199
|
+
|
200
|
+
# @param [Seahorse::Client::RequestContext] context
|
201
|
+
# @param [String] message
|
202
|
+
# @param [Aws::CodeDeploy::Types::ArnNotSupportedException] data
|
203
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
204
|
+
super(context, message, data)
|
205
|
+
end
|
206
|
+
end
|
207
|
+
|
208
|
+
class BatchLimitExceededException < ServiceError
|
209
|
+
|
210
|
+
# @param [Seahorse::Client::RequestContext] context
|
211
|
+
# @param [String] message
|
212
|
+
# @param [Aws::CodeDeploy::Types::BatchLimitExceededException] data
|
213
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
214
|
+
super(context, message, data)
|
215
|
+
end
|
216
|
+
end
|
217
|
+
|
218
|
+
class BucketNameFilterRequiredException < ServiceError
|
219
|
+
|
220
|
+
# @param [Seahorse::Client::RequestContext] context
|
221
|
+
# @param [String] message
|
222
|
+
# @param [Aws::CodeDeploy::Types::BucketNameFilterRequiredException] data
|
223
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
224
|
+
super(context, message, data)
|
225
|
+
end
|
226
|
+
end
|
227
|
+
|
228
|
+
class DeploymentAlreadyCompletedException < ServiceError
|
229
|
+
|
230
|
+
# @param [Seahorse::Client::RequestContext] context
|
231
|
+
# @param [String] message
|
232
|
+
# @param [Aws::CodeDeploy::Types::DeploymentAlreadyCompletedException] data
|
233
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
234
|
+
super(context, message, data)
|
235
|
+
end
|
236
|
+
end
|
237
|
+
|
238
|
+
class DeploymentAlreadyStartedException < ServiceError
|
239
|
+
|
240
|
+
# @param [Seahorse::Client::RequestContext] context
|
241
|
+
# @param [String] message
|
242
|
+
# @param [Aws::CodeDeploy::Types::DeploymentAlreadyStartedException] data
|
243
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
244
|
+
super(context, message, data)
|
245
|
+
end
|
246
|
+
end
|
247
|
+
|
248
|
+
class DeploymentConfigAlreadyExistsException < ServiceError
|
249
|
+
|
250
|
+
# @param [Seahorse::Client::RequestContext] context
|
251
|
+
# @param [String] message
|
252
|
+
# @param [Aws::CodeDeploy::Types::DeploymentConfigAlreadyExistsException] data
|
253
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
254
|
+
super(context, message, data)
|
255
|
+
end
|
256
|
+
end
|
257
|
+
|
258
|
+
class DeploymentConfigDoesNotExistException < ServiceError
|
259
|
+
|
260
|
+
# @param [Seahorse::Client::RequestContext] context
|
261
|
+
# @param [String] message
|
262
|
+
# @param [Aws::CodeDeploy::Types::DeploymentConfigDoesNotExistException] data
|
263
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
264
|
+
super(context, message, data)
|
265
|
+
end
|
266
|
+
end
|
267
|
+
|
268
|
+
class DeploymentConfigInUseException < ServiceError
|
269
|
+
|
270
|
+
# @param [Seahorse::Client::RequestContext] context
|
271
|
+
# @param [String] message
|
272
|
+
# @param [Aws::CodeDeploy::Types::DeploymentConfigInUseException] data
|
273
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
274
|
+
super(context, message, data)
|
275
|
+
end
|
276
|
+
end
|
277
|
+
|
278
|
+
class DeploymentConfigLimitExceededException < ServiceError
|
279
|
+
|
280
|
+
# @param [Seahorse::Client::RequestContext] context
|
281
|
+
# @param [String] message
|
282
|
+
# @param [Aws::CodeDeploy::Types::DeploymentConfigLimitExceededException] data
|
283
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
284
|
+
super(context, message, data)
|
285
|
+
end
|
286
|
+
end
|
287
|
+
|
288
|
+
class DeploymentConfigNameRequiredException < ServiceError
|
289
|
+
|
290
|
+
# @param [Seahorse::Client::RequestContext] context
|
291
|
+
# @param [String] message
|
292
|
+
# @param [Aws::CodeDeploy::Types::DeploymentConfigNameRequiredException] data
|
293
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
294
|
+
super(context, message, data)
|
295
|
+
end
|
296
|
+
end
|
297
|
+
|
298
|
+
class DeploymentDoesNotExistException < ServiceError
|
299
|
+
|
300
|
+
# @param [Seahorse::Client::RequestContext] context
|
301
|
+
# @param [String] message
|
302
|
+
# @param [Aws::CodeDeploy::Types::DeploymentDoesNotExistException] data
|
303
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
304
|
+
super(context, message, data)
|
305
|
+
end
|
306
|
+
end
|
307
|
+
|
308
|
+
class DeploymentGroupAlreadyExistsException < ServiceError
|
309
|
+
|
310
|
+
# @param [Seahorse::Client::RequestContext] context
|
311
|
+
# @param [String] message
|
312
|
+
# @param [Aws::CodeDeploy::Types::DeploymentGroupAlreadyExistsException] data
|
313
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
314
|
+
super(context, message, data)
|
315
|
+
end
|
316
|
+
end
|
317
|
+
|
318
|
+
class DeploymentGroupDoesNotExistException < ServiceError
|
319
|
+
|
320
|
+
# @param [Seahorse::Client::RequestContext] context
|
321
|
+
# @param [String] message
|
322
|
+
# @param [Aws::CodeDeploy::Types::DeploymentGroupDoesNotExistException] data
|
323
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
324
|
+
super(context, message, data)
|
325
|
+
end
|
326
|
+
end
|
327
|
+
|
328
|
+
class DeploymentGroupLimitExceededException < ServiceError
|
329
|
+
|
330
|
+
# @param [Seahorse::Client::RequestContext] context
|
331
|
+
# @param [String] message
|
332
|
+
# @param [Aws::CodeDeploy::Types::DeploymentGroupLimitExceededException] data
|
333
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
334
|
+
super(context, message, data)
|
335
|
+
end
|
336
|
+
end
|
337
|
+
|
338
|
+
class DeploymentGroupNameRequiredException < ServiceError
|
339
|
+
|
340
|
+
# @param [Seahorse::Client::RequestContext] context
|
341
|
+
# @param [String] message
|
342
|
+
# @param [Aws::CodeDeploy::Types::DeploymentGroupNameRequiredException] data
|
343
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
344
|
+
super(context, message, data)
|
345
|
+
end
|
346
|
+
end
|
347
|
+
|
348
|
+
class DeploymentIdRequiredException < ServiceError
|
349
|
+
|
350
|
+
# @param [Seahorse::Client::RequestContext] context
|
351
|
+
# @param [String] message
|
352
|
+
# @param [Aws::CodeDeploy::Types::DeploymentIdRequiredException] data
|
353
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
354
|
+
super(context, message, data)
|
355
|
+
end
|
356
|
+
end
|
357
|
+
|
358
|
+
class DeploymentIsNotInReadyStateException < ServiceError
|
359
|
+
|
360
|
+
# @param [Seahorse::Client::RequestContext] context
|
361
|
+
# @param [String] message
|
362
|
+
# @param [Aws::CodeDeploy::Types::DeploymentIsNotInReadyStateException] data
|
363
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
364
|
+
super(context, message, data)
|
365
|
+
end
|
366
|
+
end
|
367
|
+
|
368
|
+
class DeploymentLimitExceededException < ServiceError
|
369
|
+
|
370
|
+
# @param [Seahorse::Client::RequestContext] context
|
371
|
+
# @param [String] message
|
372
|
+
# @param [Aws::CodeDeploy::Types::DeploymentLimitExceededException] data
|
373
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
374
|
+
super(context, message, data)
|
375
|
+
end
|
376
|
+
end
|
377
|
+
|
378
|
+
class DeploymentNotStartedException < ServiceError
|
379
|
+
|
380
|
+
# @param [Seahorse::Client::RequestContext] context
|
381
|
+
# @param [String] message
|
382
|
+
# @param [Aws::CodeDeploy::Types::DeploymentNotStartedException] data
|
383
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
384
|
+
super(context, message, data)
|
385
|
+
end
|
386
|
+
end
|
387
|
+
|
388
|
+
class DeploymentTargetDoesNotExistException < ServiceError
|
389
|
+
|
390
|
+
# @param [Seahorse::Client::RequestContext] context
|
391
|
+
# @param [String] message
|
392
|
+
# @param [Aws::CodeDeploy::Types::DeploymentTargetDoesNotExistException] data
|
393
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
394
|
+
super(context, message, data)
|
395
|
+
end
|
396
|
+
end
|
397
|
+
|
398
|
+
class DeploymentTargetIdRequiredException < ServiceError
|
399
|
+
|
400
|
+
# @param [Seahorse::Client::RequestContext] context
|
401
|
+
# @param [String] message
|
402
|
+
# @param [Aws::CodeDeploy::Types::DeploymentTargetIdRequiredException] data
|
403
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
404
|
+
super(context, message, data)
|
405
|
+
end
|
406
|
+
end
|
407
|
+
|
408
|
+
class DeploymentTargetListSizeExceededException < ServiceError
|
409
|
+
|
410
|
+
# @param [Seahorse::Client::RequestContext] context
|
411
|
+
# @param [String] message
|
412
|
+
# @param [Aws::CodeDeploy::Types::DeploymentTargetListSizeExceededException] data
|
413
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
414
|
+
super(context, message, data)
|
415
|
+
end
|
416
|
+
end
|
417
|
+
|
418
|
+
class DescriptionTooLongException < ServiceError
|
419
|
+
|
420
|
+
# @param [Seahorse::Client::RequestContext] context
|
421
|
+
# @param [String] message
|
422
|
+
# @param [Aws::CodeDeploy::Types::DescriptionTooLongException] data
|
423
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
424
|
+
super(context, message, data)
|
425
|
+
end
|
426
|
+
end
|
427
|
+
|
428
|
+
class ECSServiceMappingLimitExceededException < ServiceError
|
429
|
+
|
430
|
+
# @param [Seahorse::Client::RequestContext] context
|
431
|
+
# @param [String] message
|
432
|
+
# @param [Aws::CodeDeploy::Types::ECSServiceMappingLimitExceededException] data
|
433
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
434
|
+
super(context, message, data)
|
435
|
+
end
|
436
|
+
end
|
437
|
+
|
438
|
+
class GitHubAccountTokenDoesNotExistException < ServiceError
|
439
|
+
|
440
|
+
# @param [Seahorse::Client::RequestContext] context
|
441
|
+
# @param [String] message
|
442
|
+
# @param [Aws::CodeDeploy::Types::GitHubAccountTokenDoesNotExistException] data
|
443
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
444
|
+
super(context, message, data)
|
445
|
+
end
|
446
|
+
end
|
447
|
+
|
448
|
+
class GitHubAccountTokenNameRequiredException < ServiceError
|
449
|
+
|
450
|
+
# @param [Seahorse::Client::RequestContext] context
|
451
|
+
# @param [String] message
|
452
|
+
# @param [Aws::CodeDeploy::Types::GitHubAccountTokenNameRequiredException] data
|
453
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
454
|
+
super(context, message, data)
|
455
|
+
end
|
456
|
+
end
|
457
|
+
|
458
|
+
class IamArnRequiredException < ServiceError
|
459
|
+
|
460
|
+
# @param [Seahorse::Client::RequestContext] context
|
461
|
+
# @param [String] message
|
462
|
+
# @param [Aws::CodeDeploy::Types::IamArnRequiredException] data
|
463
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
464
|
+
super(context, message, data)
|
465
|
+
end
|
466
|
+
end
|
467
|
+
|
468
|
+
class IamSessionArnAlreadyRegisteredException < ServiceError
|
469
|
+
|
470
|
+
# @param [Seahorse::Client::RequestContext] context
|
471
|
+
# @param [String] message
|
472
|
+
# @param [Aws::CodeDeploy::Types::IamSessionArnAlreadyRegisteredException] data
|
473
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
474
|
+
super(context, message, data)
|
475
|
+
end
|
476
|
+
end
|
477
|
+
|
478
|
+
class IamUserArnAlreadyRegisteredException < ServiceError
|
479
|
+
|
480
|
+
# @param [Seahorse::Client::RequestContext] context
|
481
|
+
# @param [String] message
|
482
|
+
# @param [Aws::CodeDeploy::Types::IamUserArnAlreadyRegisteredException] data
|
483
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
484
|
+
super(context, message, data)
|
485
|
+
end
|
486
|
+
end
|
487
|
+
|
488
|
+
class IamUserArnRequiredException < ServiceError
|
489
|
+
|
490
|
+
# @param [Seahorse::Client::RequestContext] context
|
491
|
+
# @param [String] message
|
492
|
+
# @param [Aws::CodeDeploy::Types::IamUserArnRequiredException] data
|
493
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
494
|
+
super(context, message, data)
|
495
|
+
end
|
496
|
+
end
|
497
|
+
|
498
|
+
class InstanceDoesNotExistException < ServiceError
|
499
|
+
|
500
|
+
# @param [Seahorse::Client::RequestContext] context
|
501
|
+
# @param [String] message
|
502
|
+
# @param [Aws::CodeDeploy::Types::InstanceDoesNotExistException] data
|
503
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
504
|
+
super(context, message, data)
|
505
|
+
end
|
506
|
+
end
|
507
|
+
|
508
|
+
class InstanceIdRequiredException < ServiceError
|
509
|
+
|
510
|
+
# @param [Seahorse::Client::RequestContext] context
|
511
|
+
# @param [String] message
|
512
|
+
# @param [Aws::CodeDeploy::Types::InstanceIdRequiredException] data
|
513
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
514
|
+
super(context, message, data)
|
515
|
+
end
|
516
|
+
end
|
517
|
+
|
518
|
+
class InstanceLimitExceededException < ServiceError
|
519
|
+
|
520
|
+
# @param [Seahorse::Client::RequestContext] context
|
521
|
+
# @param [String] message
|
522
|
+
# @param [Aws::CodeDeploy::Types::InstanceLimitExceededException] data
|
523
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
524
|
+
super(context, message, data)
|
525
|
+
end
|
526
|
+
end
|
527
|
+
|
528
|
+
class InstanceNameAlreadyRegisteredException < ServiceError
|
529
|
+
|
530
|
+
# @param [Seahorse::Client::RequestContext] context
|
531
|
+
# @param [String] message
|
532
|
+
# @param [Aws::CodeDeploy::Types::InstanceNameAlreadyRegisteredException] data
|
533
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
534
|
+
super(context, message, data)
|
535
|
+
end
|
536
|
+
end
|
537
|
+
|
538
|
+
class InstanceNameRequiredException < ServiceError
|
539
|
+
|
540
|
+
# @param [Seahorse::Client::RequestContext] context
|
541
|
+
# @param [String] message
|
542
|
+
# @param [Aws::CodeDeploy::Types::InstanceNameRequiredException] data
|
543
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
544
|
+
super(context, message, data)
|
545
|
+
end
|
546
|
+
end
|
547
|
+
|
548
|
+
class InstanceNotRegisteredException < ServiceError
|
549
|
+
|
550
|
+
# @param [Seahorse::Client::RequestContext] context
|
551
|
+
# @param [String] message
|
552
|
+
# @param [Aws::CodeDeploy::Types::InstanceNotRegisteredException] data
|
553
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
554
|
+
super(context, message, data)
|
555
|
+
end
|
556
|
+
end
|
557
|
+
|
558
|
+
class InvalidAlarmConfigException < ServiceError
|
559
|
+
|
560
|
+
# @param [Seahorse::Client::RequestContext] context
|
561
|
+
# @param [String] message
|
562
|
+
# @param [Aws::CodeDeploy::Types::InvalidAlarmConfigException] data
|
563
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
564
|
+
super(context, message, data)
|
565
|
+
end
|
566
|
+
end
|
567
|
+
|
568
|
+
class InvalidApplicationNameException < ServiceError
|
569
|
+
|
570
|
+
# @param [Seahorse::Client::RequestContext] context
|
571
|
+
# @param [String] message
|
572
|
+
# @param [Aws::CodeDeploy::Types::InvalidApplicationNameException] data
|
573
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
574
|
+
super(context, message, data)
|
575
|
+
end
|
576
|
+
end
|
577
|
+
|
578
|
+
class InvalidArnException < ServiceError
|
579
|
+
|
580
|
+
# @param [Seahorse::Client::RequestContext] context
|
581
|
+
# @param [String] message
|
582
|
+
# @param [Aws::CodeDeploy::Types::InvalidArnException] data
|
583
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
584
|
+
super(context, message, data)
|
585
|
+
end
|
586
|
+
end
|
587
|
+
|
588
|
+
class InvalidAutoRollbackConfigException < ServiceError
|
589
|
+
|
590
|
+
# @param [Seahorse::Client::RequestContext] context
|
591
|
+
# @param [String] message
|
592
|
+
# @param [Aws::CodeDeploy::Types::InvalidAutoRollbackConfigException] data
|
593
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
594
|
+
super(context, message, data)
|
595
|
+
end
|
596
|
+
end
|
597
|
+
|
598
|
+
class InvalidAutoScalingGroupException < ServiceError
|
599
|
+
|
600
|
+
# @param [Seahorse::Client::RequestContext] context
|
601
|
+
# @param [String] message
|
602
|
+
# @param [Aws::CodeDeploy::Types::InvalidAutoScalingGroupException] data
|
603
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
604
|
+
super(context, message, data)
|
605
|
+
end
|
606
|
+
end
|
607
|
+
|
608
|
+
class InvalidBlueGreenDeploymentConfigurationException < ServiceError
|
609
|
+
|
610
|
+
# @param [Seahorse::Client::RequestContext] context
|
611
|
+
# @param [String] message
|
612
|
+
# @param [Aws::CodeDeploy::Types::InvalidBlueGreenDeploymentConfigurationException] data
|
613
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
614
|
+
super(context, message, data)
|
615
|
+
end
|
616
|
+
end
|
617
|
+
|
618
|
+
class InvalidBucketNameFilterException < ServiceError
|
619
|
+
|
620
|
+
# @param [Seahorse::Client::RequestContext] context
|
621
|
+
# @param [String] message
|
622
|
+
# @param [Aws::CodeDeploy::Types::InvalidBucketNameFilterException] data
|
623
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
624
|
+
super(context, message, data)
|
625
|
+
end
|
626
|
+
end
|
627
|
+
|
628
|
+
class InvalidComputePlatformException < ServiceError
|
629
|
+
|
630
|
+
# @param [Seahorse::Client::RequestContext] context
|
631
|
+
# @param [String] message
|
632
|
+
# @param [Aws::CodeDeploy::Types::InvalidComputePlatformException] data
|
633
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
634
|
+
super(context, message, data)
|
635
|
+
end
|
636
|
+
end
|
637
|
+
|
638
|
+
class InvalidDeployedStateFilterException < ServiceError
|
639
|
+
|
640
|
+
# @param [Seahorse::Client::RequestContext] context
|
641
|
+
# @param [String] message
|
642
|
+
# @param [Aws::CodeDeploy::Types::InvalidDeployedStateFilterException] data
|
643
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
644
|
+
super(context, message, data)
|
645
|
+
end
|
646
|
+
end
|
647
|
+
|
648
|
+
class InvalidDeploymentConfigIdException < ServiceError
|
649
|
+
|
650
|
+
# @param [Seahorse::Client::RequestContext] context
|
651
|
+
# @param [String] message
|
652
|
+
# @param [Aws::CodeDeploy::Types::InvalidDeploymentConfigIdException] data
|
653
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
654
|
+
super(context, message, data)
|
655
|
+
end
|
656
|
+
end
|
657
|
+
|
658
|
+
class InvalidDeploymentConfigNameException < ServiceError
|
659
|
+
|
660
|
+
# @param [Seahorse::Client::RequestContext] context
|
661
|
+
# @param [String] message
|
662
|
+
# @param [Aws::CodeDeploy::Types::InvalidDeploymentConfigNameException] data
|
663
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
664
|
+
super(context, message, data)
|
665
|
+
end
|
666
|
+
end
|
667
|
+
|
668
|
+
class InvalidDeploymentGroupNameException < ServiceError
|
669
|
+
|
670
|
+
# @param [Seahorse::Client::RequestContext] context
|
671
|
+
# @param [String] message
|
672
|
+
# @param [Aws::CodeDeploy::Types::InvalidDeploymentGroupNameException] data
|
673
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
674
|
+
super(context, message, data)
|
675
|
+
end
|
676
|
+
end
|
677
|
+
|
678
|
+
class InvalidDeploymentIdException < ServiceError
|
679
|
+
|
680
|
+
# @param [Seahorse::Client::RequestContext] context
|
681
|
+
# @param [String] message
|
682
|
+
# @param [Aws::CodeDeploy::Types::InvalidDeploymentIdException] data
|
683
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
684
|
+
super(context, message, data)
|
685
|
+
end
|
686
|
+
end
|
687
|
+
|
688
|
+
class InvalidDeploymentInstanceTypeException < ServiceError
|
689
|
+
|
690
|
+
# @param [Seahorse::Client::RequestContext] context
|
691
|
+
# @param [String] message
|
692
|
+
# @param [Aws::CodeDeploy::Types::InvalidDeploymentInstanceTypeException] data
|
693
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
694
|
+
super(context, message, data)
|
695
|
+
end
|
696
|
+
end
|
697
|
+
|
698
|
+
class InvalidDeploymentStatusException < ServiceError
|
699
|
+
|
700
|
+
# @param [Seahorse::Client::RequestContext] context
|
701
|
+
# @param [String] message
|
702
|
+
# @param [Aws::CodeDeploy::Types::InvalidDeploymentStatusException] data
|
703
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
704
|
+
super(context, message, data)
|
705
|
+
end
|
706
|
+
end
|
707
|
+
|
708
|
+
class InvalidDeploymentStyleException < ServiceError
|
709
|
+
|
710
|
+
# @param [Seahorse::Client::RequestContext] context
|
711
|
+
# @param [String] message
|
712
|
+
# @param [Aws::CodeDeploy::Types::InvalidDeploymentStyleException] data
|
713
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
714
|
+
super(context, message, data)
|
715
|
+
end
|
716
|
+
end
|
717
|
+
|
718
|
+
class InvalidDeploymentTargetIdException < ServiceError
|
719
|
+
|
720
|
+
# @param [Seahorse::Client::RequestContext] context
|
721
|
+
# @param [String] message
|
722
|
+
# @param [Aws::CodeDeploy::Types::InvalidDeploymentTargetIdException] data
|
723
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
724
|
+
super(context, message, data)
|
725
|
+
end
|
726
|
+
end
|
727
|
+
|
728
|
+
class InvalidDeploymentWaitTypeException < ServiceError
|
729
|
+
|
730
|
+
# @param [Seahorse::Client::RequestContext] context
|
731
|
+
# @param [String] message
|
732
|
+
# @param [Aws::CodeDeploy::Types::InvalidDeploymentWaitTypeException] data
|
733
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
734
|
+
super(context, message, data)
|
735
|
+
end
|
736
|
+
end
|
737
|
+
|
738
|
+
class InvalidEC2TagCombinationException < ServiceError
|
739
|
+
|
740
|
+
# @param [Seahorse::Client::RequestContext] context
|
741
|
+
# @param [String] message
|
742
|
+
# @param [Aws::CodeDeploy::Types::InvalidEC2TagCombinationException] data
|
743
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
744
|
+
super(context, message, data)
|
745
|
+
end
|
746
|
+
end
|
747
|
+
|
748
|
+
class InvalidEC2TagException < ServiceError
|
749
|
+
|
750
|
+
# @param [Seahorse::Client::RequestContext] context
|
751
|
+
# @param [String] message
|
752
|
+
# @param [Aws::CodeDeploy::Types::InvalidEC2TagException] data
|
753
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
754
|
+
super(context, message, data)
|
755
|
+
end
|
756
|
+
end
|
757
|
+
|
758
|
+
class InvalidECSServiceException < ServiceError
|
759
|
+
|
760
|
+
# @param [Seahorse::Client::RequestContext] context
|
761
|
+
# @param [String] message
|
762
|
+
# @param [Aws::CodeDeploy::Types::InvalidECSServiceException] data
|
763
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
764
|
+
super(context, message, data)
|
765
|
+
end
|
766
|
+
end
|
767
|
+
|
768
|
+
class InvalidExternalIdException < ServiceError
|
769
|
+
|
770
|
+
# @param [Seahorse::Client::RequestContext] context
|
771
|
+
# @param [String] message
|
772
|
+
# @param [Aws::CodeDeploy::Types::InvalidExternalIdException] data
|
773
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
774
|
+
super(context, message, data)
|
775
|
+
end
|
776
|
+
end
|
777
|
+
|
778
|
+
class InvalidFileExistsBehaviorException < ServiceError
|
779
|
+
|
780
|
+
# @param [Seahorse::Client::RequestContext] context
|
781
|
+
# @param [String] message
|
782
|
+
# @param [Aws::CodeDeploy::Types::InvalidFileExistsBehaviorException] data
|
783
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
784
|
+
super(context, message, data)
|
785
|
+
end
|
786
|
+
end
|
787
|
+
|
788
|
+
class InvalidGitHubAccountTokenException < ServiceError
|
789
|
+
|
790
|
+
# @param [Seahorse::Client::RequestContext] context
|
791
|
+
# @param [String] message
|
792
|
+
# @param [Aws::CodeDeploy::Types::InvalidGitHubAccountTokenException] data
|
793
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
794
|
+
super(context, message, data)
|
795
|
+
end
|
796
|
+
end
|
797
|
+
|
798
|
+
class InvalidGitHubAccountTokenNameException < ServiceError
|
799
|
+
|
800
|
+
# @param [Seahorse::Client::RequestContext] context
|
801
|
+
# @param [String] message
|
802
|
+
# @param [Aws::CodeDeploy::Types::InvalidGitHubAccountTokenNameException] data
|
803
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
804
|
+
super(context, message, data)
|
805
|
+
end
|
806
|
+
end
|
807
|
+
|
808
|
+
class InvalidIamSessionArnException < ServiceError
|
809
|
+
|
810
|
+
# @param [Seahorse::Client::RequestContext] context
|
811
|
+
# @param [String] message
|
812
|
+
# @param [Aws::CodeDeploy::Types::InvalidIamSessionArnException] data
|
813
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
814
|
+
super(context, message, data)
|
815
|
+
end
|
816
|
+
end
|
817
|
+
|
818
|
+
class InvalidIamUserArnException < ServiceError
|
819
|
+
|
820
|
+
# @param [Seahorse::Client::RequestContext] context
|
821
|
+
# @param [String] message
|
822
|
+
# @param [Aws::CodeDeploy::Types::InvalidIamUserArnException] data
|
823
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
824
|
+
super(context, message, data)
|
825
|
+
end
|
826
|
+
end
|
827
|
+
|
828
|
+
class InvalidIgnoreApplicationStopFailuresValueException < ServiceError
|
829
|
+
|
830
|
+
# @param [Seahorse::Client::RequestContext] context
|
831
|
+
# @param [String] message
|
832
|
+
# @param [Aws::CodeDeploy::Types::InvalidIgnoreApplicationStopFailuresValueException] data
|
833
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
834
|
+
super(context, message, data)
|
835
|
+
end
|
836
|
+
end
|
837
|
+
|
838
|
+
class InvalidInputException < ServiceError
|
839
|
+
|
840
|
+
# @param [Seahorse::Client::RequestContext] context
|
841
|
+
# @param [String] message
|
842
|
+
# @param [Aws::CodeDeploy::Types::InvalidInputException] data
|
843
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
844
|
+
super(context, message, data)
|
845
|
+
end
|
846
|
+
end
|
847
|
+
|
848
|
+
class InvalidInstanceIdException < ServiceError
|
849
|
+
|
850
|
+
# @param [Seahorse::Client::RequestContext] context
|
851
|
+
# @param [String] message
|
852
|
+
# @param [Aws::CodeDeploy::Types::InvalidInstanceIdException] data
|
853
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
854
|
+
super(context, message, data)
|
855
|
+
end
|
856
|
+
end
|
857
|
+
|
858
|
+
class InvalidInstanceNameException < ServiceError
|
859
|
+
|
860
|
+
# @param [Seahorse::Client::RequestContext] context
|
861
|
+
# @param [String] message
|
862
|
+
# @param [Aws::CodeDeploy::Types::InvalidInstanceNameException] data
|
863
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
864
|
+
super(context, message, data)
|
865
|
+
end
|
866
|
+
end
|
867
|
+
|
868
|
+
class InvalidInstanceStatusException < ServiceError
|
869
|
+
|
870
|
+
# @param [Seahorse::Client::RequestContext] context
|
871
|
+
# @param [String] message
|
872
|
+
# @param [Aws::CodeDeploy::Types::InvalidInstanceStatusException] data
|
873
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
874
|
+
super(context, message, data)
|
875
|
+
end
|
876
|
+
end
|
877
|
+
|
878
|
+
class InvalidInstanceTypeException < ServiceError
|
879
|
+
|
880
|
+
# @param [Seahorse::Client::RequestContext] context
|
881
|
+
# @param [String] message
|
882
|
+
# @param [Aws::CodeDeploy::Types::InvalidInstanceTypeException] data
|
883
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
884
|
+
super(context, message, data)
|
885
|
+
end
|
886
|
+
end
|
887
|
+
|
888
|
+
class InvalidKeyPrefixFilterException < ServiceError
|
889
|
+
|
890
|
+
# @param [Seahorse::Client::RequestContext] context
|
891
|
+
# @param [String] message
|
892
|
+
# @param [Aws::CodeDeploy::Types::InvalidKeyPrefixFilterException] data
|
893
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
894
|
+
super(context, message, data)
|
895
|
+
end
|
896
|
+
end
|
897
|
+
|
898
|
+
class InvalidLifecycleEventHookExecutionIdException < ServiceError
|
899
|
+
|
900
|
+
# @param [Seahorse::Client::RequestContext] context
|
901
|
+
# @param [String] message
|
902
|
+
# @param [Aws::CodeDeploy::Types::InvalidLifecycleEventHookExecutionIdException] data
|
903
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
904
|
+
super(context, message, data)
|
905
|
+
end
|
906
|
+
end
|
907
|
+
|
908
|
+
class InvalidLifecycleEventHookExecutionStatusException < ServiceError
|
909
|
+
|
910
|
+
# @param [Seahorse::Client::RequestContext] context
|
911
|
+
# @param [String] message
|
912
|
+
# @param [Aws::CodeDeploy::Types::InvalidLifecycleEventHookExecutionStatusException] data
|
913
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
914
|
+
super(context, message, data)
|
915
|
+
end
|
916
|
+
end
|
917
|
+
|
918
|
+
class InvalidLoadBalancerInfoException < ServiceError
|
919
|
+
|
920
|
+
# @param [Seahorse::Client::RequestContext] context
|
921
|
+
# @param [String] message
|
922
|
+
# @param [Aws::CodeDeploy::Types::InvalidLoadBalancerInfoException] data
|
923
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
924
|
+
super(context, message, data)
|
925
|
+
end
|
926
|
+
end
|
927
|
+
|
928
|
+
class InvalidMinimumHealthyHostValueException < ServiceError
|
929
|
+
|
930
|
+
# @param [Seahorse::Client::RequestContext] context
|
931
|
+
# @param [String] message
|
932
|
+
# @param [Aws::CodeDeploy::Types::InvalidMinimumHealthyHostValueException] data
|
933
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
934
|
+
super(context, message, data)
|
935
|
+
end
|
936
|
+
end
|
937
|
+
|
938
|
+
class InvalidNextTokenException < ServiceError
|
939
|
+
|
940
|
+
# @param [Seahorse::Client::RequestContext] context
|
941
|
+
# @param [String] message
|
942
|
+
# @param [Aws::CodeDeploy::Types::InvalidNextTokenException] data
|
943
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
944
|
+
super(context, message, data)
|
945
|
+
end
|
946
|
+
end
|
947
|
+
|
948
|
+
class InvalidOnPremisesTagCombinationException < ServiceError
|
949
|
+
|
950
|
+
# @param [Seahorse::Client::RequestContext] context
|
951
|
+
# @param [String] message
|
952
|
+
# @param [Aws::CodeDeploy::Types::InvalidOnPremisesTagCombinationException] data
|
953
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
954
|
+
super(context, message, data)
|
955
|
+
end
|
956
|
+
end
|
957
|
+
|
958
|
+
class InvalidOperationException < ServiceError
|
959
|
+
|
960
|
+
# @param [Seahorse::Client::RequestContext] context
|
961
|
+
# @param [String] message
|
962
|
+
# @param [Aws::CodeDeploy::Types::InvalidOperationException] data
|
963
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
964
|
+
super(context, message, data)
|
965
|
+
end
|
966
|
+
end
|
967
|
+
|
968
|
+
class InvalidRegistrationStatusException < ServiceError
|
969
|
+
|
970
|
+
# @param [Seahorse::Client::RequestContext] context
|
971
|
+
# @param [String] message
|
972
|
+
# @param [Aws::CodeDeploy::Types::InvalidRegistrationStatusException] data
|
973
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
974
|
+
super(context, message, data)
|
975
|
+
end
|
976
|
+
end
|
977
|
+
|
978
|
+
class InvalidRevisionException < ServiceError
|
979
|
+
|
980
|
+
# @param [Seahorse::Client::RequestContext] context
|
981
|
+
# @param [String] message
|
982
|
+
# @param [Aws::CodeDeploy::Types::InvalidRevisionException] data
|
983
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
984
|
+
super(context, message, data)
|
985
|
+
end
|
986
|
+
end
|
987
|
+
|
988
|
+
class InvalidRoleException < ServiceError
|
989
|
+
|
990
|
+
# @param [Seahorse::Client::RequestContext] context
|
991
|
+
# @param [String] message
|
992
|
+
# @param [Aws::CodeDeploy::Types::InvalidRoleException] data
|
993
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
994
|
+
super(context, message, data)
|
995
|
+
end
|
996
|
+
end
|
997
|
+
|
998
|
+
class InvalidSortByException < ServiceError
|
999
|
+
|
1000
|
+
# @param [Seahorse::Client::RequestContext] context
|
1001
|
+
# @param [String] message
|
1002
|
+
# @param [Aws::CodeDeploy::Types::InvalidSortByException] data
|
1003
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
1004
|
+
super(context, message, data)
|
1005
|
+
end
|
1006
|
+
end
|
1007
|
+
|
1008
|
+
class InvalidSortOrderException < ServiceError
|
1009
|
+
|
1010
|
+
# @param [Seahorse::Client::RequestContext] context
|
1011
|
+
# @param [String] message
|
1012
|
+
# @param [Aws::CodeDeploy::Types::InvalidSortOrderException] data
|
1013
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
1014
|
+
super(context, message, data)
|
1015
|
+
end
|
1016
|
+
end
|
1017
|
+
|
1018
|
+
class InvalidTagException < ServiceError
|
1019
|
+
|
1020
|
+
# @param [Seahorse::Client::RequestContext] context
|
1021
|
+
# @param [String] message
|
1022
|
+
# @param [Aws::CodeDeploy::Types::InvalidTagException] data
|
1023
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
1024
|
+
super(context, message, data)
|
1025
|
+
end
|
1026
|
+
end
|
1027
|
+
|
1028
|
+
class InvalidTagFilterException < ServiceError
|
1029
|
+
|
1030
|
+
# @param [Seahorse::Client::RequestContext] context
|
1031
|
+
# @param [String] message
|
1032
|
+
# @param [Aws::CodeDeploy::Types::InvalidTagFilterException] data
|
1033
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
1034
|
+
super(context, message, data)
|
1035
|
+
end
|
1036
|
+
end
|
1037
|
+
|
1038
|
+
class InvalidTagsToAddException < ServiceError
|
1039
|
+
|
1040
|
+
# @param [Seahorse::Client::RequestContext] context
|
1041
|
+
# @param [String] message
|
1042
|
+
# @param [Aws::CodeDeploy::Types::InvalidTagsToAddException] data
|
1043
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
1044
|
+
super(context, message, data)
|
1045
|
+
end
|
1046
|
+
end
|
1047
|
+
|
1048
|
+
class InvalidTargetException < ServiceError
|
1049
|
+
|
1050
|
+
# @param [Seahorse::Client::RequestContext] context
|
1051
|
+
# @param [String] message
|
1052
|
+
# @param [Aws::CodeDeploy::Types::InvalidTargetException] data
|
1053
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
1054
|
+
super(context, message, data)
|
1055
|
+
end
|
1056
|
+
end
|
1057
|
+
|
1058
|
+
class InvalidTargetFilterNameException < ServiceError
|
1059
|
+
|
1060
|
+
# @param [Seahorse::Client::RequestContext] context
|
1061
|
+
# @param [String] message
|
1062
|
+
# @param [Aws::CodeDeploy::Types::InvalidTargetFilterNameException] data
|
1063
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
1064
|
+
super(context, message, data)
|
1065
|
+
end
|
1066
|
+
end
|
1067
|
+
|
1068
|
+
class InvalidTargetGroupPairException < ServiceError
|
1069
|
+
|
1070
|
+
# @param [Seahorse::Client::RequestContext] context
|
1071
|
+
# @param [String] message
|
1072
|
+
# @param [Aws::CodeDeploy::Types::InvalidTargetGroupPairException] data
|
1073
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
1074
|
+
super(context, message, data)
|
1075
|
+
end
|
1076
|
+
end
|
1077
|
+
|
1078
|
+
class InvalidTargetInstancesException < ServiceError
|
1079
|
+
|
1080
|
+
# @param [Seahorse::Client::RequestContext] context
|
1081
|
+
# @param [String] message
|
1082
|
+
# @param [Aws::CodeDeploy::Types::InvalidTargetInstancesException] data
|
1083
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
1084
|
+
super(context, message, data)
|
1085
|
+
end
|
1086
|
+
end
|
1087
|
+
|
1088
|
+
class InvalidTimeRangeException < ServiceError
|
1089
|
+
|
1090
|
+
# @param [Seahorse::Client::RequestContext] context
|
1091
|
+
# @param [String] message
|
1092
|
+
# @param [Aws::CodeDeploy::Types::InvalidTimeRangeException] data
|
1093
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
1094
|
+
super(context, message, data)
|
1095
|
+
end
|
1096
|
+
end
|
1097
|
+
|
1098
|
+
class InvalidTrafficRoutingConfigurationException < ServiceError
|
1099
|
+
|
1100
|
+
# @param [Seahorse::Client::RequestContext] context
|
1101
|
+
# @param [String] message
|
1102
|
+
# @param [Aws::CodeDeploy::Types::InvalidTrafficRoutingConfigurationException] data
|
1103
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
1104
|
+
super(context, message, data)
|
1105
|
+
end
|
1106
|
+
end
|
1107
|
+
|
1108
|
+
class InvalidTriggerConfigException < ServiceError
|
1109
|
+
|
1110
|
+
# @param [Seahorse::Client::RequestContext] context
|
1111
|
+
# @param [String] message
|
1112
|
+
# @param [Aws::CodeDeploy::Types::InvalidTriggerConfigException] data
|
1113
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
1114
|
+
super(context, message, data)
|
1115
|
+
end
|
1116
|
+
end
|
1117
|
+
|
1118
|
+
class InvalidUpdateOutdatedInstancesOnlyValueException < ServiceError
|
1119
|
+
|
1120
|
+
# @param [Seahorse::Client::RequestContext] context
|
1121
|
+
# @param [String] message
|
1122
|
+
# @param [Aws::CodeDeploy::Types::InvalidUpdateOutdatedInstancesOnlyValueException] data
|
1123
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
1124
|
+
super(context, message, data)
|
1125
|
+
end
|
1126
|
+
end
|
1127
|
+
|
1128
|
+
class LifecycleEventAlreadyCompletedException < ServiceError
|
1129
|
+
|
1130
|
+
# @param [Seahorse::Client::RequestContext] context
|
1131
|
+
# @param [String] message
|
1132
|
+
# @param [Aws::CodeDeploy::Types::LifecycleEventAlreadyCompletedException] data
|
1133
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
1134
|
+
super(context, message, data)
|
1135
|
+
end
|
1136
|
+
end
|
1137
|
+
|
1138
|
+
class LifecycleHookLimitExceededException < ServiceError
|
1139
|
+
|
1140
|
+
# @param [Seahorse::Client::RequestContext] context
|
1141
|
+
# @param [String] message
|
1142
|
+
# @param [Aws::CodeDeploy::Types::LifecycleHookLimitExceededException] data
|
1143
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
1144
|
+
super(context, message, data)
|
1145
|
+
end
|
1146
|
+
end
|
1147
|
+
|
1148
|
+
class MultipleIamArnsProvidedException < ServiceError
|
1149
|
+
|
1150
|
+
# @param [Seahorse::Client::RequestContext] context
|
1151
|
+
# @param [String] message
|
1152
|
+
# @param [Aws::CodeDeploy::Types::MultipleIamArnsProvidedException] data
|
1153
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
1154
|
+
super(context, message, data)
|
1155
|
+
end
|
1156
|
+
end
|
1157
|
+
|
1158
|
+
class OperationNotSupportedException < ServiceError
|
1159
|
+
|
1160
|
+
# @param [Seahorse::Client::RequestContext] context
|
1161
|
+
# @param [String] message
|
1162
|
+
# @param [Aws::CodeDeploy::Types::OperationNotSupportedException] data
|
1163
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
1164
|
+
super(context, message, data)
|
1165
|
+
end
|
1166
|
+
end
|
1167
|
+
|
1168
|
+
class ResourceArnRequiredException < ServiceError
|
1169
|
+
|
1170
|
+
# @param [Seahorse::Client::RequestContext] context
|
1171
|
+
# @param [String] message
|
1172
|
+
# @param [Aws::CodeDeploy::Types::ResourceArnRequiredException] data
|
1173
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
1174
|
+
super(context, message, data)
|
1175
|
+
end
|
1176
|
+
end
|
1177
|
+
|
1178
|
+
class ResourceValidationException < ServiceError
|
1179
|
+
|
1180
|
+
# @param [Seahorse::Client::RequestContext] context
|
1181
|
+
# @param [String] message
|
1182
|
+
# @param [Aws::CodeDeploy::Types::ResourceValidationException] data
|
1183
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
1184
|
+
super(context, message, data)
|
1185
|
+
end
|
1186
|
+
end
|
1187
|
+
|
1188
|
+
class RevisionDoesNotExistException < ServiceError
|
1189
|
+
|
1190
|
+
# @param [Seahorse::Client::RequestContext] context
|
1191
|
+
# @param [String] message
|
1192
|
+
# @param [Aws::CodeDeploy::Types::RevisionDoesNotExistException] data
|
1193
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
1194
|
+
super(context, message, data)
|
1195
|
+
end
|
1196
|
+
end
|
1197
|
+
|
1198
|
+
class RevisionRequiredException < ServiceError
|
1199
|
+
|
1200
|
+
# @param [Seahorse::Client::RequestContext] context
|
1201
|
+
# @param [String] message
|
1202
|
+
# @param [Aws::CodeDeploy::Types::RevisionRequiredException] data
|
1203
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
1204
|
+
super(context, message, data)
|
1205
|
+
end
|
1206
|
+
end
|
1207
|
+
|
1208
|
+
class RoleRequiredException < ServiceError
|
1209
|
+
|
1210
|
+
# @param [Seahorse::Client::RequestContext] context
|
1211
|
+
# @param [String] message
|
1212
|
+
# @param [Aws::CodeDeploy::Types::RoleRequiredException] data
|
1213
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
1214
|
+
super(context, message, data)
|
1215
|
+
end
|
1216
|
+
end
|
1217
|
+
|
1218
|
+
class TagLimitExceededException < ServiceError
|
1219
|
+
|
1220
|
+
# @param [Seahorse::Client::RequestContext] context
|
1221
|
+
# @param [String] message
|
1222
|
+
# @param [Aws::CodeDeploy::Types::TagLimitExceededException] data
|
1223
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
1224
|
+
super(context, message, data)
|
1225
|
+
end
|
1226
|
+
end
|
1227
|
+
|
1228
|
+
class TagRequiredException < ServiceError
|
1229
|
+
|
1230
|
+
# @param [Seahorse::Client::RequestContext] context
|
1231
|
+
# @param [String] message
|
1232
|
+
# @param [Aws::CodeDeploy::Types::TagRequiredException] data
|
1233
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
1234
|
+
super(context, message, data)
|
1235
|
+
end
|
1236
|
+
end
|
1237
|
+
|
1238
|
+
class TagSetListLimitExceededException < ServiceError
|
1239
|
+
|
1240
|
+
# @param [Seahorse::Client::RequestContext] context
|
1241
|
+
# @param [String] message
|
1242
|
+
# @param [Aws::CodeDeploy::Types::TagSetListLimitExceededException] data
|
1243
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
1244
|
+
super(context, message, data)
|
1245
|
+
end
|
1246
|
+
end
|
1247
|
+
|
1248
|
+
class ThrottlingException < ServiceError
|
1249
|
+
|
1250
|
+
# @param [Seahorse::Client::RequestContext] context
|
1251
|
+
# @param [String] message
|
1252
|
+
# @param [Aws::CodeDeploy::Types::ThrottlingException] data
|
1253
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
1254
|
+
super(context, message, data)
|
1255
|
+
end
|
1256
|
+
end
|
1257
|
+
|
1258
|
+
class TriggerTargetsLimitExceededException < ServiceError
|
1259
|
+
|
1260
|
+
# @param [Seahorse::Client::RequestContext] context
|
1261
|
+
# @param [String] message
|
1262
|
+
# @param [Aws::CodeDeploy::Types::TriggerTargetsLimitExceededException] data
|
1263
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
1264
|
+
super(context, message, data)
|
1265
|
+
end
|
1266
|
+
end
|
1267
|
+
|
1268
|
+
class UnsupportedActionForDeploymentTypeException < ServiceError
|
1269
|
+
|
1270
|
+
# @param [Seahorse::Client::RequestContext] context
|
1271
|
+
# @param [String] message
|
1272
|
+
# @param [Aws::CodeDeploy::Types::UnsupportedActionForDeploymentTypeException] data
|
1273
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
1274
|
+
super(context, message, data)
|
1275
|
+
end
|
1276
|
+
end
|
1277
|
+
|
13
1278
|
end
|
14
1279
|
end
|