@aws-sdk/client-elastic-beanstalk 3.300.0 → 3.303.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/commands/AbortEnvironmentUpdateCommand.d.ts +1 -1
- package/dist-types/commands/ApplyEnvironmentManagedActionCommand.d.ts +1 -1
- package/dist-types/commands/AssociateEnvironmentOperationsRoleCommand.d.ts +1 -1
- package/dist-types/commands/CheckDNSAvailabilityCommand.d.ts +1 -1
- package/dist-types/commands/ComposeEnvironmentsCommand.d.ts +2 -2
- package/dist-types/commands/CreateApplicationCommand.d.ts +7 -7
- package/dist-types/commands/CreateApplicationVersionCommand.d.ts +6 -6
- package/dist-types/commands/CreateConfigurationTemplateCommand.d.ts +6 -6
- package/dist-types/commands/CreateEnvironmentCommand.d.ts +8 -8
- package/dist-types/commands/CreatePlatformVersionCommand.d.ts +6 -6
- package/dist-types/commands/DeleteApplicationCommand.d.ts +1 -1
- package/dist-types/commands/DeleteApplicationVersionCommand.d.ts +1 -1
- package/dist-types/commands/DeleteConfigurationTemplateCommand.d.ts +1 -1
- package/dist-types/commands/DeleteEnvironmentConfigurationCommand.d.ts +1 -1
- package/dist-types/commands/DeletePlatformVersionCommand.d.ts +1 -1
- package/dist-types/commands/DescribeApplicationVersionsCommand.d.ts +2 -2
- package/dist-types/commands/DescribeApplicationsCommand.d.ts +2 -2
- package/dist-types/commands/DescribeConfigurationOptionsCommand.d.ts +3 -3
- package/dist-types/commands/DescribeConfigurationSettingsCommand.d.ts +1 -1
- package/dist-types/commands/DescribeEnvironmentHealthCommand.d.ts +2 -2
- package/dist-types/commands/DescribeEnvironmentManagedActionHistoryCommand.d.ts +1 -1
- package/dist-types/commands/DescribeEnvironmentManagedActionsCommand.d.ts +1 -1
- package/dist-types/commands/DescribeEnvironmentResourcesCommand.d.ts +1 -1
- package/dist-types/commands/DescribeEnvironmentsCommand.d.ts +3 -3
- package/dist-types/commands/DescribeEventsCommand.d.ts +1 -1
- package/dist-types/commands/DescribeInstancesHealthCommand.d.ts +2 -2
- package/dist-types/commands/DescribePlatformVersionCommand.d.ts +1 -1
- package/dist-types/commands/DisassociateEnvironmentOperationsRoleCommand.d.ts +1 -1
- package/dist-types/commands/ListPlatformBranchesCommand.d.ts +4 -4
- package/dist-types/commands/ListPlatformVersionsCommand.d.ts +4 -4
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +1 -1
- package/dist-types/commands/RebuildEnvironmentCommand.d.ts +1 -1
- package/dist-types/commands/RequestEnvironmentInfoCommand.d.ts +1 -1
- package/dist-types/commands/RestartAppServerCommand.d.ts +1 -1
- package/dist-types/commands/RetrieveEnvironmentInfoCommand.d.ts +1 -1
- package/dist-types/commands/SwapEnvironmentCNAMEsCommand.d.ts +1 -1
- package/dist-types/commands/TerminateEnvironmentCommand.d.ts +1 -1
- package/dist-types/commands/UpdateApplicationCommand.d.ts +1 -1
- package/dist-types/commands/UpdateApplicationResourceLifecycleCommand.d.ts +5 -5
- package/dist-types/commands/UpdateApplicationVersionCommand.d.ts +1 -1
- package/dist-types/commands/UpdateConfigurationTemplateCommand.d.ts +5 -5
- package/dist-types/commands/UpdateEnvironmentCommand.d.ts +6 -6
- package/dist-types/commands/UpdateTagsForResourceCommand.d.ts +4 -4
- package/dist-types/commands/ValidateConfigurationSettingsCommand.d.ts +3 -3
- 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
|
@@ -15,43 +15,37 @@ class InsufficientPrivilegesException extends ElasticBeanstalkServiceException_1
|
|
|
15
15
|
}
|
|
16
16
|
}
|
|
17
17
|
exports.InsufficientPrivilegesException = InsufficientPrivilegesException;
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
}
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
ApplicationVersionStatus["Building"] = "Building";
|
|
50
|
-
ApplicationVersionStatus["Failed"] = "Failed";
|
|
51
|
-
ApplicationVersionStatus["Processed"] = "Processed";
|
|
52
|
-
ApplicationVersionStatus["Processing"] = "Processing";
|
|
53
|
-
ApplicationVersionStatus["Unprocessed"] = "Unprocessed";
|
|
54
|
-
})(ApplicationVersionStatus = exports.ApplicationVersionStatus || (exports.ApplicationVersionStatus = {}));
|
|
18
|
+
exports.ActionHistoryStatus = {
|
|
19
|
+
Completed: "Completed",
|
|
20
|
+
Failed: "Failed",
|
|
21
|
+
Unknown: "Unknown",
|
|
22
|
+
};
|
|
23
|
+
exports.ActionStatus = {
|
|
24
|
+
Pending: "Pending",
|
|
25
|
+
Running: "Running",
|
|
26
|
+
Scheduled: "Scheduled",
|
|
27
|
+
Unknown: "Unknown",
|
|
28
|
+
};
|
|
29
|
+
exports.ActionType = {
|
|
30
|
+
InstanceRefresh: "InstanceRefresh",
|
|
31
|
+
PlatformUpdate: "PlatformUpdate",
|
|
32
|
+
Unknown: "Unknown",
|
|
33
|
+
};
|
|
34
|
+
exports.SourceRepository = {
|
|
35
|
+
CodeCommit: "CodeCommit",
|
|
36
|
+
S3: "S3",
|
|
37
|
+
};
|
|
38
|
+
exports.SourceType = {
|
|
39
|
+
Git: "Git",
|
|
40
|
+
Zip: "Zip",
|
|
41
|
+
};
|
|
42
|
+
exports.ApplicationVersionStatus = {
|
|
43
|
+
Building: "Building",
|
|
44
|
+
Failed: "Failed",
|
|
45
|
+
Processed: "Processed",
|
|
46
|
+
Processing: "Processing",
|
|
47
|
+
Unprocessed: "Unprocessed",
|
|
48
|
+
};
|
|
55
49
|
class ElasticBeanstalkServiceException extends ElasticBeanstalkServiceException_1.ElasticBeanstalkServiceException {
|
|
56
50
|
constructor(opts) {
|
|
57
51
|
super({
|
|
@@ -78,36 +72,33 @@ class ManagedActionInvalidStateException extends ElasticBeanstalkServiceExceptio
|
|
|
78
72
|
}
|
|
79
73
|
}
|
|
80
74
|
exports.ManagedActionInvalidStateException = ManagedActionInvalidStateException;
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
EnvironmentStatus["Terminating"] = "Terminating";
|
|
109
|
-
EnvironmentStatus["Updating"] = "Updating";
|
|
110
|
-
})(EnvironmentStatus = exports.EnvironmentStatus || (exports.EnvironmentStatus = {}));
|
|
75
|
+
exports.EnvironmentHealth = {
|
|
76
|
+
Green: "Green",
|
|
77
|
+
Grey: "Grey",
|
|
78
|
+
Red: "Red",
|
|
79
|
+
Yellow: "Yellow",
|
|
80
|
+
};
|
|
81
|
+
exports.EnvironmentHealthStatus = {
|
|
82
|
+
Degraded: "Degraded",
|
|
83
|
+
Info: "Info",
|
|
84
|
+
NoData: "NoData",
|
|
85
|
+
Ok: "Ok",
|
|
86
|
+
Pending: "Pending",
|
|
87
|
+
Severe: "Severe",
|
|
88
|
+
Suspended: "Suspended",
|
|
89
|
+
Unknown: "Unknown",
|
|
90
|
+
Warning: "Warning",
|
|
91
|
+
};
|
|
92
|
+
exports.EnvironmentStatus = {
|
|
93
|
+
Aborting: "Aborting",
|
|
94
|
+
Launching: "Launching",
|
|
95
|
+
LinkingFrom: "LinkingFrom",
|
|
96
|
+
LinkingTo: "LinkingTo",
|
|
97
|
+
Ready: "Ready",
|
|
98
|
+
Terminated: "Terminated",
|
|
99
|
+
Terminating: "Terminating",
|
|
100
|
+
Updating: "Updating",
|
|
101
|
+
};
|
|
111
102
|
class TooManyEnvironmentsException extends ElasticBeanstalkServiceException_1.ElasticBeanstalkServiceException {
|
|
112
103
|
constructor(opts) {
|
|
113
104
|
super({
|
|
@@ -147,12 +138,11 @@ class CodeBuildNotInServiceRegionException extends ElasticBeanstalkServiceExcept
|
|
|
147
138
|
}
|
|
148
139
|
}
|
|
149
140
|
exports.CodeBuildNotInServiceRegionException = CodeBuildNotInServiceRegionException;
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
})(ComputeType = exports.ComputeType || (exports.ComputeType = {}));
|
|
141
|
+
exports.ComputeType = {
|
|
142
|
+
BUILD_GENERAL1_LARGE: "BUILD_GENERAL1_LARGE",
|
|
143
|
+
BUILD_GENERAL1_MEDIUM: "BUILD_GENERAL1_MEDIUM",
|
|
144
|
+
BUILD_GENERAL1_SMALL: "BUILD_GENERAL1_SMALL",
|
|
145
|
+
};
|
|
156
146
|
class S3LocationNotInServiceRegionException extends ElasticBeanstalkServiceException_1.ElasticBeanstalkServiceException {
|
|
157
147
|
constructor(opts) {
|
|
158
148
|
super({
|
|
@@ -179,12 +169,11 @@ class TooManyApplicationVersionsException extends ElasticBeanstalkServiceExcepti
|
|
|
179
169
|
}
|
|
180
170
|
}
|
|
181
171
|
exports.TooManyApplicationVersionsException = TooManyApplicationVersionsException;
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
})(ConfigurationDeploymentStatus = exports.ConfigurationDeploymentStatus || (exports.ConfigurationDeploymentStatus = {}));
|
|
172
|
+
exports.ConfigurationDeploymentStatus = {
|
|
173
|
+
deployed: "deployed",
|
|
174
|
+
failed: "failed",
|
|
175
|
+
pending: "pending",
|
|
176
|
+
};
|
|
188
177
|
class TooManyBucketsException extends ElasticBeanstalkServiceException_1.ElasticBeanstalkServiceException {
|
|
189
178
|
constructor(opts) {
|
|
190
179
|
super({
|
|
@@ -211,14 +200,13 @@ class TooManyConfigurationTemplatesException extends ElasticBeanstalkServiceExce
|
|
|
211
200
|
}
|
|
212
201
|
}
|
|
213
202
|
exports.TooManyConfigurationTemplatesException = TooManyConfigurationTemplatesException;
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
})(PlatformStatus = exports.PlatformStatus || (exports.PlatformStatus = {}));
|
|
203
|
+
exports.PlatformStatus = {
|
|
204
|
+
Creating: "Creating",
|
|
205
|
+
Deleted: "Deleted",
|
|
206
|
+
Deleting: "Deleting",
|
|
207
|
+
Failed: "Failed",
|
|
208
|
+
Ready: "Ready",
|
|
209
|
+
};
|
|
222
210
|
class TooManyPlatformsException extends ElasticBeanstalkServiceException_1.ElasticBeanstalkServiceException {
|
|
223
211
|
constructor(opts) {
|
|
224
212
|
super({
|
|
@@ -284,22 +272,20 @@ class PlatformVersionStillReferencedException extends ElasticBeanstalkServiceExc
|
|
|
284
272
|
}
|
|
285
273
|
}
|
|
286
274
|
exports.PlatformVersionStillReferencedException = PlatformVersionStillReferencedException;
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
EnvironmentHealthAttribute["Status"] = "Status";
|
|
302
|
-
})(EnvironmentHealthAttribute = exports.EnvironmentHealthAttribute || (exports.EnvironmentHealthAttribute = {}));
|
|
275
|
+
exports.ConfigurationOptionValueType = {
|
|
276
|
+
List: "List",
|
|
277
|
+
Scalar: "Scalar",
|
|
278
|
+
};
|
|
279
|
+
exports.EnvironmentHealthAttribute = {
|
|
280
|
+
All: "All",
|
|
281
|
+
ApplicationMetrics: "ApplicationMetrics",
|
|
282
|
+
Causes: "Causes",
|
|
283
|
+
Color: "Color",
|
|
284
|
+
HealthStatus: "HealthStatus",
|
|
285
|
+
InstancesHealth: "InstancesHealth",
|
|
286
|
+
RefreshedAt: "RefreshedAt",
|
|
287
|
+
Status: "Status",
|
|
288
|
+
};
|
|
303
289
|
class InvalidRequestException extends ElasticBeanstalkServiceException_1.ElasticBeanstalkServiceException {
|
|
304
290
|
constructor(opts) {
|
|
305
291
|
super({
|
|
@@ -313,39 +299,36 @@ class InvalidRequestException extends ElasticBeanstalkServiceException_1.Elastic
|
|
|
313
299
|
}
|
|
314
300
|
}
|
|
315
301
|
exports.InvalidRequestException = InvalidRequestException;
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
InstancesHealthAttribute["RefreshedAt"] = "RefreshedAt";
|
|
347
|
-
InstancesHealthAttribute["System"] = "System";
|
|
348
|
-
})(InstancesHealthAttribute = exports.InstancesHealthAttribute || (exports.InstancesHealthAttribute = {}));
|
|
302
|
+
exports.FailureType = {
|
|
303
|
+
CancellationFailed: "CancellationFailed",
|
|
304
|
+
InternalFailure: "InternalFailure",
|
|
305
|
+
InvalidEnvironmentState: "InvalidEnvironmentState",
|
|
306
|
+
PermissionsError: "PermissionsError",
|
|
307
|
+
RollbackFailed: "RollbackFailed",
|
|
308
|
+
RollbackSuccessful: "RollbackSuccessful",
|
|
309
|
+
UpdateCancelled: "UpdateCancelled",
|
|
310
|
+
};
|
|
311
|
+
exports.EventSeverity = {
|
|
312
|
+
DEBUG: "DEBUG",
|
|
313
|
+
ERROR: "ERROR",
|
|
314
|
+
FATAL: "FATAL",
|
|
315
|
+
INFO: "INFO",
|
|
316
|
+
TRACE: "TRACE",
|
|
317
|
+
WARN: "WARN",
|
|
318
|
+
};
|
|
319
|
+
exports.InstancesHealthAttribute = {
|
|
320
|
+
All: "All",
|
|
321
|
+
ApplicationMetrics: "ApplicationMetrics",
|
|
322
|
+
AvailabilityZone: "AvailabilityZone",
|
|
323
|
+
Causes: "Causes",
|
|
324
|
+
Color: "Color",
|
|
325
|
+
Deployment: "Deployment",
|
|
326
|
+
HealthStatus: "HealthStatus",
|
|
327
|
+
InstanceType: "InstanceType",
|
|
328
|
+
LaunchedAt: "LaunchedAt",
|
|
329
|
+
RefreshedAt: "RefreshedAt",
|
|
330
|
+
System: "System",
|
|
331
|
+
};
|
|
349
332
|
class ResourceNotFoundException extends ElasticBeanstalkServiceException_1.ElasticBeanstalkServiceException {
|
|
350
333
|
constructor(opts) {
|
|
351
334
|
super({
|
|
@@ -372,11 +355,10 @@ class ResourceTypeNotSupportedException extends ElasticBeanstalkServiceException
|
|
|
372
355
|
}
|
|
373
356
|
}
|
|
374
357
|
exports.ResourceTypeNotSupportedException = ResourceTypeNotSupportedException;
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
})(EnvironmentInfoType = exports.EnvironmentInfoType || (exports.EnvironmentInfoType = {}));
|
|
358
|
+
exports.EnvironmentInfoType = {
|
|
359
|
+
bundle: "bundle",
|
|
360
|
+
tail: "tail",
|
|
361
|
+
};
|
|
380
362
|
class TooManyTagsException extends ElasticBeanstalkServiceException_1.ElasticBeanstalkServiceException {
|
|
381
363
|
constructor(opts) {
|
|
382
364
|
super({
|
|
@@ -390,8 +372,7 @@ class TooManyTagsException extends ElasticBeanstalkServiceException_1.ElasticBea
|
|
|
390
372
|
}
|
|
391
373
|
}
|
|
392
374
|
exports.TooManyTagsException = TooManyTagsException;
|
|
393
|
-
|
|
394
|
-
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
})(ValidationSeverity = exports.ValidationSeverity || (exports.ValidationSeverity = {}));
|
|
375
|
+
exports.ValidationSeverity = {
|
|
376
|
+
error: "error",
|
|
377
|
+
warning: "warning",
|
|
378
|
+
};
|