@aws-sdk/client-elastic-beanstalk 3.933.0 → 3.935.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/index.js +128 -127
- package/dist-es/index.js +2 -1
- package/dist-es/models/enums.js +127 -0
- package/dist-es/models/errors.js +229 -0
- package/dist-es/models/models_0.js +1 -356
- package/dist-es/schemas/schemas_0.js +1 -1
- package/dist-types/index.d.ts +3 -1
- package/dist-types/models/enums.d.ts +279 -0
- package/dist-types/models/errors.d.ts +249 -0
- package/dist-types/models/models_0.d.ts +1 -528
- package/dist-types/ts3.4/index.d.ts +3 -1
- package/dist-types/ts3.4/models/enums.d.ts +159 -0
- package/dist-types/ts3.4/models/errors.d.ts +165 -0
- package/dist-types/ts3.4/models/models_0.d.ts +21 -324
- package/package.json +12 -12
- package/dist-es/models/index.js +0 -1
- package/dist-types/models/index.d.ts +0 -1
- package/dist-types/ts3.4/models/index.d.ts +0 -1
package/dist-cjs/index.js
CHANGED
|
@@ -130,37 +130,6 @@ let InsufficientPrivilegesException$1 = class InsufficientPrivilegesException ex
|
|
|
130
130
|
Object.setPrototypeOf(this, InsufficientPrivilegesException.prototype);
|
|
131
131
|
}
|
|
132
132
|
};
|
|
133
|
-
const ActionHistoryStatus = {
|
|
134
|
-
Completed: "Completed",
|
|
135
|
-
Failed: "Failed",
|
|
136
|
-
Unknown: "Unknown",
|
|
137
|
-
};
|
|
138
|
-
const ActionStatus = {
|
|
139
|
-
Pending: "Pending",
|
|
140
|
-
Running: "Running",
|
|
141
|
-
Scheduled: "Scheduled",
|
|
142
|
-
Unknown: "Unknown",
|
|
143
|
-
};
|
|
144
|
-
const ActionType = {
|
|
145
|
-
InstanceRefresh: "InstanceRefresh",
|
|
146
|
-
PlatformUpdate: "PlatformUpdate",
|
|
147
|
-
Unknown: "Unknown",
|
|
148
|
-
};
|
|
149
|
-
const SourceRepository = {
|
|
150
|
-
CodeCommit: "CodeCommit",
|
|
151
|
-
S3: "S3",
|
|
152
|
-
};
|
|
153
|
-
const SourceType = {
|
|
154
|
-
Git: "Git",
|
|
155
|
-
Zip: "Zip",
|
|
156
|
-
};
|
|
157
|
-
const ApplicationVersionStatus = {
|
|
158
|
-
Building: "Building",
|
|
159
|
-
Failed: "Failed",
|
|
160
|
-
Processed: "Processed",
|
|
161
|
-
Processing: "Processing",
|
|
162
|
-
Unprocessed: "Unprocessed",
|
|
163
|
-
};
|
|
164
133
|
let ElasticBeanstalkServiceException$1 = class ElasticBeanstalkServiceException extends ElasticBeanstalkSyntheticServiceException$1 {
|
|
165
134
|
name = "ElasticBeanstalkServiceException";
|
|
166
135
|
$fault = "client";
|
|
@@ -185,33 +154,6 @@ let ManagedActionInvalidStateException$1 = class ManagedActionInvalidStateExcept
|
|
|
185
154
|
Object.setPrototypeOf(this, ManagedActionInvalidStateException.prototype);
|
|
186
155
|
}
|
|
187
156
|
};
|
|
188
|
-
const EnvironmentHealth = {
|
|
189
|
-
Green: "Green",
|
|
190
|
-
Grey: "Grey",
|
|
191
|
-
Red: "Red",
|
|
192
|
-
Yellow: "Yellow",
|
|
193
|
-
};
|
|
194
|
-
const EnvironmentHealthStatus = {
|
|
195
|
-
Degraded: "Degraded",
|
|
196
|
-
Info: "Info",
|
|
197
|
-
NoData: "NoData",
|
|
198
|
-
Ok: "Ok",
|
|
199
|
-
Pending: "Pending",
|
|
200
|
-
Severe: "Severe",
|
|
201
|
-
Suspended: "Suspended",
|
|
202
|
-
Unknown: "Unknown",
|
|
203
|
-
Warning: "Warning",
|
|
204
|
-
};
|
|
205
|
-
const EnvironmentStatus = {
|
|
206
|
-
Aborting: "Aborting",
|
|
207
|
-
Launching: "Launching",
|
|
208
|
-
LinkingFrom: "LinkingFrom",
|
|
209
|
-
LinkingTo: "LinkingTo",
|
|
210
|
-
Ready: "Ready",
|
|
211
|
-
Terminated: "Terminated",
|
|
212
|
-
Terminating: "Terminating",
|
|
213
|
-
Updating: "Updating",
|
|
214
|
-
};
|
|
215
157
|
let TooManyEnvironmentsException$1 = class TooManyEnvironmentsException extends ElasticBeanstalkSyntheticServiceException$1 {
|
|
216
158
|
name = "TooManyEnvironmentsException";
|
|
217
159
|
$fault = "client";
|
|
@@ -248,11 +190,6 @@ let CodeBuildNotInServiceRegionException$1 = class CodeBuildNotInServiceRegionEx
|
|
|
248
190
|
Object.setPrototypeOf(this, CodeBuildNotInServiceRegionException.prototype);
|
|
249
191
|
}
|
|
250
192
|
};
|
|
251
|
-
const ComputeType = {
|
|
252
|
-
BUILD_GENERAL1_LARGE: "BUILD_GENERAL1_LARGE",
|
|
253
|
-
BUILD_GENERAL1_MEDIUM: "BUILD_GENERAL1_MEDIUM",
|
|
254
|
-
BUILD_GENERAL1_SMALL: "BUILD_GENERAL1_SMALL",
|
|
255
|
-
};
|
|
256
193
|
let S3LocationNotInServiceRegionException$1 = class S3LocationNotInServiceRegionException extends ElasticBeanstalkSyntheticServiceException$1 {
|
|
257
194
|
name = "S3LocationNotInServiceRegionException";
|
|
258
195
|
$fault = "client";
|
|
@@ -277,11 +214,6 @@ let TooManyApplicationVersionsException$1 = class TooManyApplicationVersionsExce
|
|
|
277
214
|
Object.setPrototypeOf(this, TooManyApplicationVersionsException.prototype);
|
|
278
215
|
}
|
|
279
216
|
};
|
|
280
|
-
const ConfigurationDeploymentStatus = {
|
|
281
|
-
deployed: "deployed",
|
|
282
|
-
failed: "failed",
|
|
283
|
-
pending: "pending",
|
|
284
|
-
};
|
|
285
217
|
let TooManyBucketsException$1 = class TooManyBucketsException extends ElasticBeanstalkSyntheticServiceException$1 {
|
|
286
218
|
name = "TooManyBucketsException";
|
|
287
219
|
$fault = "client";
|
|
@@ -306,13 +238,6 @@ let TooManyConfigurationTemplatesException$1 = class TooManyConfigurationTemplat
|
|
|
306
238
|
Object.setPrototypeOf(this, TooManyConfigurationTemplatesException.prototype);
|
|
307
239
|
}
|
|
308
240
|
};
|
|
309
|
-
const PlatformStatus = {
|
|
310
|
-
Creating: "Creating",
|
|
311
|
-
Deleted: "Deleted",
|
|
312
|
-
Deleting: "Deleting",
|
|
313
|
-
Failed: "Failed",
|
|
314
|
-
Ready: "Ready",
|
|
315
|
-
};
|
|
316
241
|
let TooManyPlatformsException$1 = class TooManyPlatformsException extends ElasticBeanstalkSyntheticServiceException$1 {
|
|
317
242
|
name = "TooManyPlatformsException";
|
|
318
243
|
$fault = "client";
|
|
@@ -373,20 +298,6 @@ let PlatformVersionStillReferencedException$1 = class PlatformVersionStillRefere
|
|
|
373
298
|
Object.setPrototypeOf(this, PlatformVersionStillReferencedException.prototype);
|
|
374
299
|
}
|
|
375
300
|
};
|
|
376
|
-
const ConfigurationOptionValueType = {
|
|
377
|
-
List: "List",
|
|
378
|
-
Scalar: "Scalar",
|
|
379
|
-
};
|
|
380
|
-
const EnvironmentHealthAttribute = {
|
|
381
|
-
All: "All",
|
|
382
|
-
ApplicationMetrics: "ApplicationMetrics",
|
|
383
|
-
Causes: "Causes",
|
|
384
|
-
Color: "Color",
|
|
385
|
-
HealthStatus: "HealthStatus",
|
|
386
|
-
InstancesHealth: "InstancesHealth",
|
|
387
|
-
RefreshedAt: "RefreshedAt",
|
|
388
|
-
Status: "Status",
|
|
389
|
-
};
|
|
390
301
|
let InvalidRequestException$1 = class InvalidRequestException extends ElasticBeanstalkSyntheticServiceException$1 {
|
|
391
302
|
name = "InvalidRequestException";
|
|
392
303
|
$fault = "client";
|
|
@@ -399,36 +310,6 @@ let InvalidRequestException$1 = class InvalidRequestException extends ElasticBea
|
|
|
399
310
|
Object.setPrototypeOf(this, InvalidRequestException.prototype);
|
|
400
311
|
}
|
|
401
312
|
};
|
|
402
|
-
const FailureType = {
|
|
403
|
-
CancellationFailed: "CancellationFailed",
|
|
404
|
-
InternalFailure: "InternalFailure",
|
|
405
|
-
InvalidEnvironmentState: "InvalidEnvironmentState",
|
|
406
|
-
PermissionsError: "PermissionsError",
|
|
407
|
-
RollbackFailed: "RollbackFailed",
|
|
408
|
-
RollbackSuccessful: "RollbackSuccessful",
|
|
409
|
-
UpdateCancelled: "UpdateCancelled",
|
|
410
|
-
};
|
|
411
|
-
const EventSeverity = {
|
|
412
|
-
DEBUG: "DEBUG",
|
|
413
|
-
ERROR: "ERROR",
|
|
414
|
-
FATAL: "FATAL",
|
|
415
|
-
INFO: "INFO",
|
|
416
|
-
TRACE: "TRACE",
|
|
417
|
-
WARN: "WARN",
|
|
418
|
-
};
|
|
419
|
-
const InstancesHealthAttribute = {
|
|
420
|
-
All: "All",
|
|
421
|
-
ApplicationMetrics: "ApplicationMetrics",
|
|
422
|
-
AvailabilityZone: "AvailabilityZone",
|
|
423
|
-
Causes: "Causes",
|
|
424
|
-
Color: "Color",
|
|
425
|
-
Deployment: "Deployment",
|
|
426
|
-
HealthStatus: "HealthStatus",
|
|
427
|
-
InstanceType: "InstanceType",
|
|
428
|
-
LaunchedAt: "LaunchedAt",
|
|
429
|
-
RefreshedAt: "RefreshedAt",
|
|
430
|
-
System: "System",
|
|
431
|
-
};
|
|
432
313
|
let ResourceNotFoundException$1 = class ResourceNotFoundException extends ElasticBeanstalkSyntheticServiceException$1 {
|
|
433
314
|
name = "ResourceNotFoundException";
|
|
434
315
|
$fault = "client";
|
|
@@ -453,10 +334,6 @@ let ResourceTypeNotSupportedException$1 = class ResourceTypeNotSupportedExceptio
|
|
|
453
334
|
Object.setPrototypeOf(this, ResourceTypeNotSupportedException.prototype);
|
|
454
335
|
}
|
|
455
336
|
};
|
|
456
|
-
const EnvironmentInfoType = {
|
|
457
|
-
bundle: "bundle",
|
|
458
|
-
tail: "tail",
|
|
459
|
-
};
|
|
460
337
|
let TooManyTagsException$1 = class TooManyTagsException extends ElasticBeanstalkSyntheticServiceException$1 {
|
|
461
338
|
name = "TooManyTagsException";
|
|
462
339
|
$fault = "client";
|
|
@@ -469,10 +346,6 @@ let TooManyTagsException$1 = class TooManyTagsException extends ElasticBeanstalk
|
|
|
469
346
|
Object.setPrototypeOf(this, TooManyTagsException.prototype);
|
|
470
347
|
}
|
|
471
348
|
};
|
|
472
|
-
const ValidationSeverity = {
|
|
473
|
-
error: "error",
|
|
474
|
-
warning: "warning",
|
|
475
|
-
};
|
|
476
349
|
|
|
477
350
|
const _A = "Application";
|
|
478
351
|
const _AA = "ApplicationArn";
|
|
@@ -3002,6 +2875,134 @@ const waitUntilEnvironmentUpdated = async (params, input) => {
|
|
|
3002
2875
|
return utilWaiter.checkExceptions(result);
|
|
3003
2876
|
};
|
|
3004
2877
|
|
|
2878
|
+
const ActionHistoryStatus = {
|
|
2879
|
+
Completed: "Completed",
|
|
2880
|
+
Failed: "Failed",
|
|
2881
|
+
Unknown: "Unknown",
|
|
2882
|
+
};
|
|
2883
|
+
const ActionStatus = {
|
|
2884
|
+
Pending: "Pending",
|
|
2885
|
+
Running: "Running",
|
|
2886
|
+
Scheduled: "Scheduled",
|
|
2887
|
+
Unknown: "Unknown",
|
|
2888
|
+
};
|
|
2889
|
+
const ActionType = {
|
|
2890
|
+
InstanceRefresh: "InstanceRefresh",
|
|
2891
|
+
PlatformUpdate: "PlatformUpdate",
|
|
2892
|
+
Unknown: "Unknown",
|
|
2893
|
+
};
|
|
2894
|
+
const SourceRepository = {
|
|
2895
|
+
CodeCommit: "CodeCommit",
|
|
2896
|
+
S3: "S3",
|
|
2897
|
+
};
|
|
2898
|
+
const SourceType = {
|
|
2899
|
+
Git: "Git",
|
|
2900
|
+
Zip: "Zip",
|
|
2901
|
+
};
|
|
2902
|
+
const ApplicationVersionStatus = {
|
|
2903
|
+
Building: "Building",
|
|
2904
|
+
Failed: "Failed",
|
|
2905
|
+
Processed: "Processed",
|
|
2906
|
+
Processing: "Processing",
|
|
2907
|
+
Unprocessed: "Unprocessed",
|
|
2908
|
+
};
|
|
2909
|
+
const EnvironmentHealth = {
|
|
2910
|
+
Green: "Green",
|
|
2911
|
+
Grey: "Grey",
|
|
2912
|
+
Red: "Red",
|
|
2913
|
+
Yellow: "Yellow",
|
|
2914
|
+
};
|
|
2915
|
+
const EnvironmentHealthStatus = {
|
|
2916
|
+
Degraded: "Degraded",
|
|
2917
|
+
Info: "Info",
|
|
2918
|
+
NoData: "NoData",
|
|
2919
|
+
Ok: "Ok",
|
|
2920
|
+
Pending: "Pending",
|
|
2921
|
+
Severe: "Severe",
|
|
2922
|
+
Suspended: "Suspended",
|
|
2923
|
+
Unknown: "Unknown",
|
|
2924
|
+
Warning: "Warning",
|
|
2925
|
+
};
|
|
2926
|
+
const EnvironmentStatus = {
|
|
2927
|
+
Aborting: "Aborting",
|
|
2928
|
+
Launching: "Launching",
|
|
2929
|
+
LinkingFrom: "LinkingFrom",
|
|
2930
|
+
LinkingTo: "LinkingTo",
|
|
2931
|
+
Ready: "Ready",
|
|
2932
|
+
Terminated: "Terminated",
|
|
2933
|
+
Terminating: "Terminating",
|
|
2934
|
+
Updating: "Updating",
|
|
2935
|
+
};
|
|
2936
|
+
const ComputeType = {
|
|
2937
|
+
BUILD_GENERAL1_LARGE: "BUILD_GENERAL1_LARGE",
|
|
2938
|
+
BUILD_GENERAL1_MEDIUM: "BUILD_GENERAL1_MEDIUM",
|
|
2939
|
+
BUILD_GENERAL1_SMALL: "BUILD_GENERAL1_SMALL",
|
|
2940
|
+
};
|
|
2941
|
+
const ConfigurationDeploymentStatus = {
|
|
2942
|
+
deployed: "deployed",
|
|
2943
|
+
failed: "failed",
|
|
2944
|
+
pending: "pending",
|
|
2945
|
+
};
|
|
2946
|
+
const PlatformStatus = {
|
|
2947
|
+
Creating: "Creating",
|
|
2948
|
+
Deleted: "Deleted",
|
|
2949
|
+
Deleting: "Deleting",
|
|
2950
|
+
Failed: "Failed",
|
|
2951
|
+
Ready: "Ready",
|
|
2952
|
+
};
|
|
2953
|
+
const ConfigurationOptionValueType = {
|
|
2954
|
+
List: "List",
|
|
2955
|
+
Scalar: "Scalar",
|
|
2956
|
+
};
|
|
2957
|
+
const EnvironmentHealthAttribute = {
|
|
2958
|
+
All: "All",
|
|
2959
|
+
ApplicationMetrics: "ApplicationMetrics",
|
|
2960
|
+
Causes: "Causes",
|
|
2961
|
+
Color: "Color",
|
|
2962
|
+
HealthStatus: "HealthStatus",
|
|
2963
|
+
InstancesHealth: "InstancesHealth",
|
|
2964
|
+
RefreshedAt: "RefreshedAt",
|
|
2965
|
+
Status: "Status",
|
|
2966
|
+
};
|
|
2967
|
+
const FailureType = {
|
|
2968
|
+
CancellationFailed: "CancellationFailed",
|
|
2969
|
+
InternalFailure: "InternalFailure",
|
|
2970
|
+
InvalidEnvironmentState: "InvalidEnvironmentState",
|
|
2971
|
+
PermissionsError: "PermissionsError",
|
|
2972
|
+
RollbackFailed: "RollbackFailed",
|
|
2973
|
+
RollbackSuccessful: "RollbackSuccessful",
|
|
2974
|
+
UpdateCancelled: "UpdateCancelled",
|
|
2975
|
+
};
|
|
2976
|
+
const EventSeverity = {
|
|
2977
|
+
DEBUG: "DEBUG",
|
|
2978
|
+
ERROR: "ERROR",
|
|
2979
|
+
FATAL: "FATAL",
|
|
2980
|
+
INFO: "INFO",
|
|
2981
|
+
TRACE: "TRACE",
|
|
2982
|
+
WARN: "WARN",
|
|
2983
|
+
};
|
|
2984
|
+
const InstancesHealthAttribute = {
|
|
2985
|
+
All: "All",
|
|
2986
|
+
ApplicationMetrics: "ApplicationMetrics",
|
|
2987
|
+
AvailabilityZone: "AvailabilityZone",
|
|
2988
|
+
Causes: "Causes",
|
|
2989
|
+
Color: "Color",
|
|
2990
|
+
Deployment: "Deployment",
|
|
2991
|
+
HealthStatus: "HealthStatus",
|
|
2992
|
+
InstanceType: "InstanceType",
|
|
2993
|
+
LaunchedAt: "LaunchedAt",
|
|
2994
|
+
RefreshedAt: "RefreshedAt",
|
|
2995
|
+
System: "System",
|
|
2996
|
+
};
|
|
2997
|
+
const EnvironmentInfoType = {
|
|
2998
|
+
bundle: "bundle",
|
|
2999
|
+
tail: "tail",
|
|
3000
|
+
};
|
|
3001
|
+
const ValidationSeverity = {
|
|
3002
|
+
error: "error",
|
|
3003
|
+
warning: "warning",
|
|
3004
|
+
};
|
|
3005
|
+
|
|
3005
3006
|
Object.defineProperty(exports, "$Command", {
|
|
3006
3007
|
enumerable: true,
|
|
3007
3008
|
get: function () { return smithyClient.Command; }
|
package/dist-es/index.js
CHANGED
|
@@ -3,5 +3,6 @@ export * from "./ElasticBeanstalk";
|
|
|
3
3
|
export * from "./commands";
|
|
4
4
|
export * from "./pagination";
|
|
5
5
|
export * from "./waiters";
|
|
6
|
-
export * from "./models";
|
|
6
|
+
export * from "./models/enums";
|
|
7
|
+
export * from "./models/errors";
|
|
7
8
|
export { ElasticBeanstalkSyntheticServiceException } from "./models/ElasticBeanstalkSyntheticServiceException";
|
|
@@ -0,0 +1,127 @@
|
|
|
1
|
+
export const ActionHistoryStatus = {
|
|
2
|
+
Completed: "Completed",
|
|
3
|
+
Failed: "Failed",
|
|
4
|
+
Unknown: "Unknown",
|
|
5
|
+
};
|
|
6
|
+
export const ActionStatus = {
|
|
7
|
+
Pending: "Pending",
|
|
8
|
+
Running: "Running",
|
|
9
|
+
Scheduled: "Scheduled",
|
|
10
|
+
Unknown: "Unknown",
|
|
11
|
+
};
|
|
12
|
+
export const ActionType = {
|
|
13
|
+
InstanceRefresh: "InstanceRefresh",
|
|
14
|
+
PlatformUpdate: "PlatformUpdate",
|
|
15
|
+
Unknown: "Unknown",
|
|
16
|
+
};
|
|
17
|
+
export const SourceRepository = {
|
|
18
|
+
CodeCommit: "CodeCommit",
|
|
19
|
+
S3: "S3",
|
|
20
|
+
};
|
|
21
|
+
export const SourceType = {
|
|
22
|
+
Git: "Git",
|
|
23
|
+
Zip: "Zip",
|
|
24
|
+
};
|
|
25
|
+
export const ApplicationVersionStatus = {
|
|
26
|
+
Building: "Building",
|
|
27
|
+
Failed: "Failed",
|
|
28
|
+
Processed: "Processed",
|
|
29
|
+
Processing: "Processing",
|
|
30
|
+
Unprocessed: "Unprocessed",
|
|
31
|
+
};
|
|
32
|
+
export const EnvironmentHealth = {
|
|
33
|
+
Green: "Green",
|
|
34
|
+
Grey: "Grey",
|
|
35
|
+
Red: "Red",
|
|
36
|
+
Yellow: "Yellow",
|
|
37
|
+
};
|
|
38
|
+
export const EnvironmentHealthStatus = {
|
|
39
|
+
Degraded: "Degraded",
|
|
40
|
+
Info: "Info",
|
|
41
|
+
NoData: "NoData",
|
|
42
|
+
Ok: "Ok",
|
|
43
|
+
Pending: "Pending",
|
|
44
|
+
Severe: "Severe",
|
|
45
|
+
Suspended: "Suspended",
|
|
46
|
+
Unknown: "Unknown",
|
|
47
|
+
Warning: "Warning",
|
|
48
|
+
};
|
|
49
|
+
export const EnvironmentStatus = {
|
|
50
|
+
Aborting: "Aborting",
|
|
51
|
+
Launching: "Launching",
|
|
52
|
+
LinkingFrom: "LinkingFrom",
|
|
53
|
+
LinkingTo: "LinkingTo",
|
|
54
|
+
Ready: "Ready",
|
|
55
|
+
Terminated: "Terminated",
|
|
56
|
+
Terminating: "Terminating",
|
|
57
|
+
Updating: "Updating",
|
|
58
|
+
};
|
|
59
|
+
export const ComputeType = {
|
|
60
|
+
BUILD_GENERAL1_LARGE: "BUILD_GENERAL1_LARGE",
|
|
61
|
+
BUILD_GENERAL1_MEDIUM: "BUILD_GENERAL1_MEDIUM",
|
|
62
|
+
BUILD_GENERAL1_SMALL: "BUILD_GENERAL1_SMALL",
|
|
63
|
+
};
|
|
64
|
+
export const ConfigurationDeploymentStatus = {
|
|
65
|
+
deployed: "deployed",
|
|
66
|
+
failed: "failed",
|
|
67
|
+
pending: "pending",
|
|
68
|
+
};
|
|
69
|
+
export const PlatformStatus = {
|
|
70
|
+
Creating: "Creating",
|
|
71
|
+
Deleted: "Deleted",
|
|
72
|
+
Deleting: "Deleting",
|
|
73
|
+
Failed: "Failed",
|
|
74
|
+
Ready: "Ready",
|
|
75
|
+
};
|
|
76
|
+
export const ConfigurationOptionValueType = {
|
|
77
|
+
List: "List",
|
|
78
|
+
Scalar: "Scalar",
|
|
79
|
+
};
|
|
80
|
+
export const EnvironmentHealthAttribute = {
|
|
81
|
+
All: "All",
|
|
82
|
+
ApplicationMetrics: "ApplicationMetrics",
|
|
83
|
+
Causes: "Causes",
|
|
84
|
+
Color: "Color",
|
|
85
|
+
HealthStatus: "HealthStatus",
|
|
86
|
+
InstancesHealth: "InstancesHealth",
|
|
87
|
+
RefreshedAt: "RefreshedAt",
|
|
88
|
+
Status: "Status",
|
|
89
|
+
};
|
|
90
|
+
export const FailureType = {
|
|
91
|
+
CancellationFailed: "CancellationFailed",
|
|
92
|
+
InternalFailure: "InternalFailure",
|
|
93
|
+
InvalidEnvironmentState: "InvalidEnvironmentState",
|
|
94
|
+
PermissionsError: "PermissionsError",
|
|
95
|
+
RollbackFailed: "RollbackFailed",
|
|
96
|
+
RollbackSuccessful: "RollbackSuccessful",
|
|
97
|
+
UpdateCancelled: "UpdateCancelled",
|
|
98
|
+
};
|
|
99
|
+
export const EventSeverity = {
|
|
100
|
+
DEBUG: "DEBUG",
|
|
101
|
+
ERROR: "ERROR",
|
|
102
|
+
FATAL: "FATAL",
|
|
103
|
+
INFO: "INFO",
|
|
104
|
+
TRACE: "TRACE",
|
|
105
|
+
WARN: "WARN",
|
|
106
|
+
};
|
|
107
|
+
export const InstancesHealthAttribute = {
|
|
108
|
+
All: "All",
|
|
109
|
+
ApplicationMetrics: "ApplicationMetrics",
|
|
110
|
+
AvailabilityZone: "AvailabilityZone",
|
|
111
|
+
Causes: "Causes",
|
|
112
|
+
Color: "Color",
|
|
113
|
+
Deployment: "Deployment",
|
|
114
|
+
HealthStatus: "HealthStatus",
|
|
115
|
+
InstanceType: "InstanceType",
|
|
116
|
+
LaunchedAt: "LaunchedAt",
|
|
117
|
+
RefreshedAt: "RefreshedAt",
|
|
118
|
+
System: "System",
|
|
119
|
+
};
|
|
120
|
+
export const EnvironmentInfoType = {
|
|
121
|
+
bundle: "bundle",
|
|
122
|
+
tail: "tail",
|
|
123
|
+
};
|
|
124
|
+
export const ValidationSeverity = {
|
|
125
|
+
error: "error",
|
|
126
|
+
warning: "warning",
|
|
127
|
+
};
|
|
@@ -0,0 +1,229 @@
|
|
|
1
|
+
import { ElasticBeanstalkSyntheticServiceException as __BaseException } from "./ElasticBeanstalkSyntheticServiceException";
|
|
2
|
+
export class InsufficientPrivilegesException extends __BaseException {
|
|
3
|
+
name = "InsufficientPrivilegesException";
|
|
4
|
+
$fault = "client";
|
|
5
|
+
constructor(opts) {
|
|
6
|
+
super({
|
|
7
|
+
name: "InsufficientPrivilegesException",
|
|
8
|
+
$fault: "client",
|
|
9
|
+
...opts,
|
|
10
|
+
});
|
|
11
|
+
Object.setPrototypeOf(this, InsufficientPrivilegesException.prototype);
|
|
12
|
+
}
|
|
13
|
+
}
|
|
14
|
+
export class ElasticBeanstalkServiceException extends __BaseException {
|
|
15
|
+
name = "ElasticBeanstalkServiceException";
|
|
16
|
+
$fault = "client";
|
|
17
|
+
constructor(opts) {
|
|
18
|
+
super({
|
|
19
|
+
name: "ElasticBeanstalkServiceException",
|
|
20
|
+
$fault: "client",
|
|
21
|
+
...opts,
|
|
22
|
+
});
|
|
23
|
+
Object.setPrototypeOf(this, ElasticBeanstalkServiceException.prototype);
|
|
24
|
+
}
|
|
25
|
+
}
|
|
26
|
+
export class ManagedActionInvalidStateException extends __BaseException {
|
|
27
|
+
name = "ManagedActionInvalidStateException";
|
|
28
|
+
$fault = "client";
|
|
29
|
+
constructor(opts) {
|
|
30
|
+
super({
|
|
31
|
+
name: "ManagedActionInvalidStateException",
|
|
32
|
+
$fault: "client",
|
|
33
|
+
...opts,
|
|
34
|
+
});
|
|
35
|
+
Object.setPrototypeOf(this, ManagedActionInvalidStateException.prototype);
|
|
36
|
+
}
|
|
37
|
+
}
|
|
38
|
+
export class TooManyEnvironmentsException extends __BaseException {
|
|
39
|
+
name = "TooManyEnvironmentsException";
|
|
40
|
+
$fault = "client";
|
|
41
|
+
constructor(opts) {
|
|
42
|
+
super({
|
|
43
|
+
name: "TooManyEnvironmentsException",
|
|
44
|
+
$fault: "client",
|
|
45
|
+
...opts,
|
|
46
|
+
});
|
|
47
|
+
Object.setPrototypeOf(this, TooManyEnvironmentsException.prototype);
|
|
48
|
+
}
|
|
49
|
+
}
|
|
50
|
+
export class TooManyApplicationsException extends __BaseException {
|
|
51
|
+
name = "TooManyApplicationsException";
|
|
52
|
+
$fault = "client";
|
|
53
|
+
constructor(opts) {
|
|
54
|
+
super({
|
|
55
|
+
name: "TooManyApplicationsException",
|
|
56
|
+
$fault: "client",
|
|
57
|
+
...opts,
|
|
58
|
+
});
|
|
59
|
+
Object.setPrototypeOf(this, TooManyApplicationsException.prototype);
|
|
60
|
+
}
|
|
61
|
+
}
|
|
62
|
+
export class CodeBuildNotInServiceRegionException extends __BaseException {
|
|
63
|
+
name = "CodeBuildNotInServiceRegionException";
|
|
64
|
+
$fault = "client";
|
|
65
|
+
constructor(opts) {
|
|
66
|
+
super({
|
|
67
|
+
name: "CodeBuildNotInServiceRegionException",
|
|
68
|
+
$fault: "client",
|
|
69
|
+
...opts,
|
|
70
|
+
});
|
|
71
|
+
Object.setPrototypeOf(this, CodeBuildNotInServiceRegionException.prototype);
|
|
72
|
+
}
|
|
73
|
+
}
|
|
74
|
+
export class S3LocationNotInServiceRegionException extends __BaseException {
|
|
75
|
+
name = "S3LocationNotInServiceRegionException";
|
|
76
|
+
$fault = "client";
|
|
77
|
+
constructor(opts) {
|
|
78
|
+
super({
|
|
79
|
+
name: "S3LocationNotInServiceRegionException",
|
|
80
|
+
$fault: "client",
|
|
81
|
+
...opts,
|
|
82
|
+
});
|
|
83
|
+
Object.setPrototypeOf(this, S3LocationNotInServiceRegionException.prototype);
|
|
84
|
+
}
|
|
85
|
+
}
|
|
86
|
+
export class TooManyApplicationVersionsException extends __BaseException {
|
|
87
|
+
name = "TooManyApplicationVersionsException";
|
|
88
|
+
$fault = "client";
|
|
89
|
+
constructor(opts) {
|
|
90
|
+
super({
|
|
91
|
+
name: "TooManyApplicationVersionsException",
|
|
92
|
+
$fault: "client",
|
|
93
|
+
...opts,
|
|
94
|
+
});
|
|
95
|
+
Object.setPrototypeOf(this, TooManyApplicationVersionsException.prototype);
|
|
96
|
+
}
|
|
97
|
+
}
|
|
98
|
+
export class TooManyBucketsException extends __BaseException {
|
|
99
|
+
name = "TooManyBucketsException";
|
|
100
|
+
$fault = "client";
|
|
101
|
+
constructor(opts) {
|
|
102
|
+
super({
|
|
103
|
+
name: "TooManyBucketsException",
|
|
104
|
+
$fault: "client",
|
|
105
|
+
...opts,
|
|
106
|
+
});
|
|
107
|
+
Object.setPrototypeOf(this, TooManyBucketsException.prototype);
|
|
108
|
+
}
|
|
109
|
+
}
|
|
110
|
+
export class TooManyConfigurationTemplatesException extends __BaseException {
|
|
111
|
+
name = "TooManyConfigurationTemplatesException";
|
|
112
|
+
$fault = "client";
|
|
113
|
+
constructor(opts) {
|
|
114
|
+
super({
|
|
115
|
+
name: "TooManyConfigurationTemplatesException",
|
|
116
|
+
$fault: "client",
|
|
117
|
+
...opts,
|
|
118
|
+
});
|
|
119
|
+
Object.setPrototypeOf(this, TooManyConfigurationTemplatesException.prototype);
|
|
120
|
+
}
|
|
121
|
+
}
|
|
122
|
+
export class TooManyPlatformsException extends __BaseException {
|
|
123
|
+
name = "TooManyPlatformsException";
|
|
124
|
+
$fault = "client";
|
|
125
|
+
constructor(opts) {
|
|
126
|
+
super({
|
|
127
|
+
name: "TooManyPlatformsException",
|
|
128
|
+
$fault: "client",
|
|
129
|
+
...opts,
|
|
130
|
+
});
|
|
131
|
+
Object.setPrototypeOf(this, TooManyPlatformsException.prototype);
|
|
132
|
+
}
|
|
133
|
+
}
|
|
134
|
+
export class S3SubscriptionRequiredException extends __BaseException {
|
|
135
|
+
name = "S3SubscriptionRequiredException";
|
|
136
|
+
$fault = "client";
|
|
137
|
+
constructor(opts) {
|
|
138
|
+
super({
|
|
139
|
+
name: "S3SubscriptionRequiredException",
|
|
140
|
+
$fault: "client",
|
|
141
|
+
...opts,
|
|
142
|
+
});
|
|
143
|
+
Object.setPrototypeOf(this, S3SubscriptionRequiredException.prototype);
|
|
144
|
+
}
|
|
145
|
+
}
|
|
146
|
+
export class OperationInProgressException extends __BaseException {
|
|
147
|
+
name = "OperationInProgressException";
|
|
148
|
+
$fault = "client";
|
|
149
|
+
constructor(opts) {
|
|
150
|
+
super({
|
|
151
|
+
name: "OperationInProgressException",
|
|
152
|
+
$fault: "client",
|
|
153
|
+
...opts,
|
|
154
|
+
});
|
|
155
|
+
Object.setPrototypeOf(this, OperationInProgressException.prototype);
|
|
156
|
+
}
|
|
157
|
+
}
|
|
158
|
+
export class SourceBundleDeletionException extends __BaseException {
|
|
159
|
+
name = "SourceBundleDeletionException";
|
|
160
|
+
$fault = "client";
|
|
161
|
+
constructor(opts) {
|
|
162
|
+
super({
|
|
163
|
+
name: "SourceBundleDeletionException",
|
|
164
|
+
$fault: "client",
|
|
165
|
+
...opts,
|
|
166
|
+
});
|
|
167
|
+
Object.setPrototypeOf(this, SourceBundleDeletionException.prototype);
|
|
168
|
+
}
|
|
169
|
+
}
|
|
170
|
+
export class PlatformVersionStillReferencedException extends __BaseException {
|
|
171
|
+
name = "PlatformVersionStillReferencedException";
|
|
172
|
+
$fault = "client";
|
|
173
|
+
constructor(opts) {
|
|
174
|
+
super({
|
|
175
|
+
name: "PlatformVersionStillReferencedException",
|
|
176
|
+
$fault: "client",
|
|
177
|
+
...opts,
|
|
178
|
+
});
|
|
179
|
+
Object.setPrototypeOf(this, PlatformVersionStillReferencedException.prototype);
|
|
180
|
+
}
|
|
181
|
+
}
|
|
182
|
+
export class InvalidRequestException extends __BaseException {
|
|
183
|
+
name = "InvalidRequestException";
|
|
184
|
+
$fault = "client";
|
|
185
|
+
constructor(opts) {
|
|
186
|
+
super({
|
|
187
|
+
name: "InvalidRequestException",
|
|
188
|
+
$fault: "client",
|
|
189
|
+
...opts,
|
|
190
|
+
});
|
|
191
|
+
Object.setPrototypeOf(this, InvalidRequestException.prototype);
|
|
192
|
+
}
|
|
193
|
+
}
|
|
194
|
+
export class ResourceNotFoundException extends __BaseException {
|
|
195
|
+
name = "ResourceNotFoundException";
|
|
196
|
+
$fault = "client";
|
|
197
|
+
constructor(opts) {
|
|
198
|
+
super({
|
|
199
|
+
name: "ResourceNotFoundException",
|
|
200
|
+
$fault: "client",
|
|
201
|
+
...opts,
|
|
202
|
+
});
|
|
203
|
+
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
204
|
+
}
|
|
205
|
+
}
|
|
206
|
+
export class ResourceTypeNotSupportedException extends __BaseException {
|
|
207
|
+
name = "ResourceTypeNotSupportedException";
|
|
208
|
+
$fault = "client";
|
|
209
|
+
constructor(opts) {
|
|
210
|
+
super({
|
|
211
|
+
name: "ResourceTypeNotSupportedException",
|
|
212
|
+
$fault: "client",
|
|
213
|
+
...opts,
|
|
214
|
+
});
|
|
215
|
+
Object.setPrototypeOf(this, ResourceTypeNotSupportedException.prototype);
|
|
216
|
+
}
|
|
217
|
+
}
|
|
218
|
+
export class TooManyTagsException extends __BaseException {
|
|
219
|
+
name = "TooManyTagsException";
|
|
220
|
+
$fault = "client";
|
|
221
|
+
constructor(opts) {
|
|
222
|
+
super({
|
|
223
|
+
name: "TooManyTagsException",
|
|
224
|
+
$fault: "client",
|
|
225
|
+
...opts,
|
|
226
|
+
});
|
|
227
|
+
Object.setPrototypeOf(this, TooManyTagsException.prototype);
|
|
228
|
+
}
|
|
229
|
+
}
|