@aws-sdk/client-elastic-beanstalk 3.301.0 → 3.306.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.
- package/dist-cjs/models/models_0.js +127 -146
- package/dist-es/models/models_0.js +127 -146
- package/dist-types/models/models_0.d.ts +222 -127
- package/dist-types/ts3.4/models/models_0.d.ts +159 -127
- package/package.json +35 -35
|
@@ -11,43 +11,37 @@ export class InsufficientPrivilegesException extends __BaseException {
|
|
|
11
11
|
Object.setPrototypeOf(this, InsufficientPrivilegesException.prototype);
|
|
12
12
|
}
|
|
13
13
|
}
|
|
14
|
-
export
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
}
|
|
38
|
-
export
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
ApplicationVersionStatus["Building"] = "Building";
|
|
46
|
-
ApplicationVersionStatus["Failed"] = "Failed";
|
|
47
|
-
ApplicationVersionStatus["Processed"] = "Processed";
|
|
48
|
-
ApplicationVersionStatus["Processing"] = "Processing";
|
|
49
|
-
ApplicationVersionStatus["Unprocessed"] = "Unprocessed";
|
|
50
|
-
})(ApplicationVersionStatus || (ApplicationVersionStatus = {}));
|
|
14
|
+
export const ActionHistoryStatus = {
|
|
15
|
+
Completed: "Completed",
|
|
16
|
+
Failed: "Failed",
|
|
17
|
+
Unknown: "Unknown",
|
|
18
|
+
};
|
|
19
|
+
export const ActionStatus = {
|
|
20
|
+
Pending: "Pending",
|
|
21
|
+
Running: "Running",
|
|
22
|
+
Scheduled: "Scheduled",
|
|
23
|
+
Unknown: "Unknown",
|
|
24
|
+
};
|
|
25
|
+
export const ActionType = {
|
|
26
|
+
InstanceRefresh: "InstanceRefresh",
|
|
27
|
+
PlatformUpdate: "PlatformUpdate",
|
|
28
|
+
Unknown: "Unknown",
|
|
29
|
+
};
|
|
30
|
+
export const SourceRepository = {
|
|
31
|
+
CodeCommit: "CodeCommit",
|
|
32
|
+
S3: "S3",
|
|
33
|
+
};
|
|
34
|
+
export const SourceType = {
|
|
35
|
+
Git: "Git",
|
|
36
|
+
Zip: "Zip",
|
|
37
|
+
};
|
|
38
|
+
export const ApplicationVersionStatus = {
|
|
39
|
+
Building: "Building",
|
|
40
|
+
Failed: "Failed",
|
|
41
|
+
Processed: "Processed",
|
|
42
|
+
Processing: "Processing",
|
|
43
|
+
Unprocessed: "Unprocessed",
|
|
44
|
+
};
|
|
51
45
|
export class ElasticBeanstalkServiceException extends __BaseException {
|
|
52
46
|
constructor(opts) {
|
|
53
47
|
super({
|
|
@@ -72,36 +66,33 @@ export class ManagedActionInvalidStateException extends __BaseException {
|
|
|
72
66
|
Object.setPrototypeOf(this, ManagedActionInvalidStateException.prototype);
|
|
73
67
|
}
|
|
74
68
|
}
|
|
75
|
-
export
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
EnvironmentStatus["Terminating"] = "Terminating";
|
|
103
|
-
EnvironmentStatus["Updating"] = "Updating";
|
|
104
|
-
})(EnvironmentStatus || (EnvironmentStatus = {}));
|
|
69
|
+
export const EnvironmentHealth = {
|
|
70
|
+
Green: "Green",
|
|
71
|
+
Grey: "Grey",
|
|
72
|
+
Red: "Red",
|
|
73
|
+
Yellow: "Yellow",
|
|
74
|
+
};
|
|
75
|
+
export const EnvironmentHealthStatus = {
|
|
76
|
+
Degraded: "Degraded",
|
|
77
|
+
Info: "Info",
|
|
78
|
+
NoData: "NoData",
|
|
79
|
+
Ok: "Ok",
|
|
80
|
+
Pending: "Pending",
|
|
81
|
+
Severe: "Severe",
|
|
82
|
+
Suspended: "Suspended",
|
|
83
|
+
Unknown: "Unknown",
|
|
84
|
+
Warning: "Warning",
|
|
85
|
+
};
|
|
86
|
+
export const EnvironmentStatus = {
|
|
87
|
+
Aborting: "Aborting",
|
|
88
|
+
Launching: "Launching",
|
|
89
|
+
LinkingFrom: "LinkingFrom",
|
|
90
|
+
LinkingTo: "LinkingTo",
|
|
91
|
+
Ready: "Ready",
|
|
92
|
+
Terminated: "Terminated",
|
|
93
|
+
Terminating: "Terminating",
|
|
94
|
+
Updating: "Updating",
|
|
95
|
+
};
|
|
105
96
|
export class TooManyEnvironmentsException extends __BaseException {
|
|
106
97
|
constructor(opts) {
|
|
107
98
|
super({
|
|
@@ -138,12 +129,11 @@ export class CodeBuildNotInServiceRegionException extends __BaseException {
|
|
|
138
129
|
Object.setPrototypeOf(this, CodeBuildNotInServiceRegionException.prototype);
|
|
139
130
|
}
|
|
140
131
|
}
|
|
141
|
-
export
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
})(ComputeType || (ComputeType = {}));
|
|
132
|
+
export const ComputeType = {
|
|
133
|
+
BUILD_GENERAL1_LARGE: "BUILD_GENERAL1_LARGE",
|
|
134
|
+
BUILD_GENERAL1_MEDIUM: "BUILD_GENERAL1_MEDIUM",
|
|
135
|
+
BUILD_GENERAL1_SMALL: "BUILD_GENERAL1_SMALL",
|
|
136
|
+
};
|
|
147
137
|
export class S3LocationNotInServiceRegionException extends __BaseException {
|
|
148
138
|
constructor(opts) {
|
|
149
139
|
super({
|
|
@@ -168,12 +158,11 @@ export class TooManyApplicationVersionsException extends __BaseException {
|
|
|
168
158
|
Object.setPrototypeOf(this, TooManyApplicationVersionsException.prototype);
|
|
169
159
|
}
|
|
170
160
|
}
|
|
171
|
-
export
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
})(ConfigurationDeploymentStatus || (ConfigurationDeploymentStatus = {}));
|
|
161
|
+
export const ConfigurationDeploymentStatus = {
|
|
162
|
+
deployed: "deployed",
|
|
163
|
+
failed: "failed",
|
|
164
|
+
pending: "pending",
|
|
165
|
+
};
|
|
177
166
|
export class TooManyBucketsException extends __BaseException {
|
|
178
167
|
constructor(opts) {
|
|
179
168
|
super({
|
|
@@ -198,14 +187,13 @@ export class TooManyConfigurationTemplatesException extends __BaseException {
|
|
|
198
187
|
Object.setPrototypeOf(this, TooManyConfigurationTemplatesException.prototype);
|
|
199
188
|
}
|
|
200
189
|
}
|
|
201
|
-
export
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
})(PlatformStatus || (PlatformStatus = {}));
|
|
190
|
+
export const PlatformStatus = {
|
|
191
|
+
Creating: "Creating",
|
|
192
|
+
Deleted: "Deleted",
|
|
193
|
+
Deleting: "Deleting",
|
|
194
|
+
Failed: "Failed",
|
|
195
|
+
Ready: "Ready",
|
|
196
|
+
};
|
|
209
197
|
export class TooManyPlatformsException extends __BaseException {
|
|
210
198
|
constructor(opts) {
|
|
211
199
|
super({
|
|
@@ -266,22 +254,20 @@ export class PlatformVersionStillReferencedException extends __BaseException {
|
|
|
266
254
|
Object.setPrototypeOf(this, PlatformVersionStillReferencedException.prototype);
|
|
267
255
|
}
|
|
268
256
|
}
|
|
269
|
-
export
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
EnvironmentHealthAttribute["Status"] = "Status";
|
|
284
|
-
})(EnvironmentHealthAttribute || (EnvironmentHealthAttribute = {}));
|
|
257
|
+
export const ConfigurationOptionValueType = {
|
|
258
|
+
List: "List",
|
|
259
|
+
Scalar: "Scalar",
|
|
260
|
+
};
|
|
261
|
+
export const EnvironmentHealthAttribute = {
|
|
262
|
+
All: "All",
|
|
263
|
+
ApplicationMetrics: "ApplicationMetrics",
|
|
264
|
+
Causes: "Causes",
|
|
265
|
+
Color: "Color",
|
|
266
|
+
HealthStatus: "HealthStatus",
|
|
267
|
+
InstancesHealth: "InstancesHealth",
|
|
268
|
+
RefreshedAt: "RefreshedAt",
|
|
269
|
+
Status: "Status",
|
|
270
|
+
};
|
|
285
271
|
export class InvalidRequestException extends __BaseException {
|
|
286
272
|
constructor(opts) {
|
|
287
273
|
super({
|
|
@@ -294,39 +280,36 @@ export class InvalidRequestException extends __BaseException {
|
|
|
294
280
|
Object.setPrototypeOf(this, InvalidRequestException.prototype);
|
|
295
281
|
}
|
|
296
282
|
}
|
|
297
|
-
export
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
InstancesHealthAttribute["RefreshedAt"] = "RefreshedAt";
|
|
328
|
-
InstancesHealthAttribute["System"] = "System";
|
|
329
|
-
})(InstancesHealthAttribute || (InstancesHealthAttribute = {}));
|
|
283
|
+
export const FailureType = {
|
|
284
|
+
CancellationFailed: "CancellationFailed",
|
|
285
|
+
InternalFailure: "InternalFailure",
|
|
286
|
+
InvalidEnvironmentState: "InvalidEnvironmentState",
|
|
287
|
+
PermissionsError: "PermissionsError",
|
|
288
|
+
RollbackFailed: "RollbackFailed",
|
|
289
|
+
RollbackSuccessful: "RollbackSuccessful",
|
|
290
|
+
UpdateCancelled: "UpdateCancelled",
|
|
291
|
+
};
|
|
292
|
+
export const EventSeverity = {
|
|
293
|
+
DEBUG: "DEBUG",
|
|
294
|
+
ERROR: "ERROR",
|
|
295
|
+
FATAL: "FATAL",
|
|
296
|
+
INFO: "INFO",
|
|
297
|
+
TRACE: "TRACE",
|
|
298
|
+
WARN: "WARN",
|
|
299
|
+
};
|
|
300
|
+
export const InstancesHealthAttribute = {
|
|
301
|
+
All: "All",
|
|
302
|
+
ApplicationMetrics: "ApplicationMetrics",
|
|
303
|
+
AvailabilityZone: "AvailabilityZone",
|
|
304
|
+
Causes: "Causes",
|
|
305
|
+
Color: "Color",
|
|
306
|
+
Deployment: "Deployment",
|
|
307
|
+
HealthStatus: "HealthStatus",
|
|
308
|
+
InstanceType: "InstanceType",
|
|
309
|
+
LaunchedAt: "LaunchedAt",
|
|
310
|
+
RefreshedAt: "RefreshedAt",
|
|
311
|
+
System: "System",
|
|
312
|
+
};
|
|
330
313
|
export class ResourceNotFoundException extends __BaseException {
|
|
331
314
|
constructor(opts) {
|
|
332
315
|
super({
|
|
@@ -351,11 +334,10 @@ export class ResourceTypeNotSupportedException extends __BaseException {
|
|
|
351
334
|
Object.setPrototypeOf(this, ResourceTypeNotSupportedException.prototype);
|
|
352
335
|
}
|
|
353
336
|
}
|
|
354
|
-
export
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
})(EnvironmentInfoType || (EnvironmentInfoType = {}));
|
|
337
|
+
export const EnvironmentInfoType = {
|
|
338
|
+
bundle: "bundle",
|
|
339
|
+
tail: "tail",
|
|
340
|
+
};
|
|
359
341
|
export class TooManyTagsException extends __BaseException {
|
|
360
342
|
constructor(opts) {
|
|
361
343
|
super({
|
|
@@ -368,8 +350,7 @@ export class TooManyTagsException extends __BaseException {
|
|
|
368
350
|
Object.setPrototypeOf(this, TooManyTagsException.prototype);
|
|
369
351
|
}
|
|
370
352
|
}
|
|
371
|
-
export
|
|
372
|
-
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
})(ValidationSeverity || (ValidationSeverity = {}));
|
|
353
|
+
export const ValidationSeverity = {
|
|
354
|
+
error: "error",
|
|
355
|
+
warning: "warning",
|
|
356
|
+
};
|