@aws-sdk/client-elastic-beanstalk 3.934.0 → 3.936.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 +19 -19
- 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
|
@@ -1,356 +1 @@
|
|
|
1
|
-
|
|
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 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
|
-
};
|
|
45
|
-
export class ElasticBeanstalkServiceException extends __BaseException {
|
|
46
|
-
name = "ElasticBeanstalkServiceException";
|
|
47
|
-
$fault = "client";
|
|
48
|
-
constructor(opts) {
|
|
49
|
-
super({
|
|
50
|
-
name: "ElasticBeanstalkServiceException",
|
|
51
|
-
$fault: "client",
|
|
52
|
-
...opts,
|
|
53
|
-
});
|
|
54
|
-
Object.setPrototypeOf(this, ElasticBeanstalkServiceException.prototype);
|
|
55
|
-
}
|
|
56
|
-
}
|
|
57
|
-
export class ManagedActionInvalidStateException extends __BaseException {
|
|
58
|
-
name = "ManagedActionInvalidStateException";
|
|
59
|
-
$fault = "client";
|
|
60
|
-
constructor(opts) {
|
|
61
|
-
super({
|
|
62
|
-
name: "ManagedActionInvalidStateException",
|
|
63
|
-
$fault: "client",
|
|
64
|
-
...opts,
|
|
65
|
-
});
|
|
66
|
-
Object.setPrototypeOf(this, ManagedActionInvalidStateException.prototype);
|
|
67
|
-
}
|
|
68
|
-
}
|
|
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
|
-
};
|
|
96
|
-
export class TooManyEnvironmentsException extends __BaseException {
|
|
97
|
-
name = "TooManyEnvironmentsException";
|
|
98
|
-
$fault = "client";
|
|
99
|
-
constructor(opts) {
|
|
100
|
-
super({
|
|
101
|
-
name: "TooManyEnvironmentsException",
|
|
102
|
-
$fault: "client",
|
|
103
|
-
...opts,
|
|
104
|
-
});
|
|
105
|
-
Object.setPrototypeOf(this, TooManyEnvironmentsException.prototype);
|
|
106
|
-
}
|
|
107
|
-
}
|
|
108
|
-
export class TooManyApplicationsException extends __BaseException {
|
|
109
|
-
name = "TooManyApplicationsException";
|
|
110
|
-
$fault = "client";
|
|
111
|
-
constructor(opts) {
|
|
112
|
-
super({
|
|
113
|
-
name: "TooManyApplicationsException",
|
|
114
|
-
$fault: "client",
|
|
115
|
-
...opts,
|
|
116
|
-
});
|
|
117
|
-
Object.setPrototypeOf(this, TooManyApplicationsException.prototype);
|
|
118
|
-
}
|
|
119
|
-
}
|
|
120
|
-
export class CodeBuildNotInServiceRegionException extends __BaseException {
|
|
121
|
-
name = "CodeBuildNotInServiceRegionException";
|
|
122
|
-
$fault = "client";
|
|
123
|
-
constructor(opts) {
|
|
124
|
-
super({
|
|
125
|
-
name: "CodeBuildNotInServiceRegionException",
|
|
126
|
-
$fault: "client",
|
|
127
|
-
...opts,
|
|
128
|
-
});
|
|
129
|
-
Object.setPrototypeOf(this, CodeBuildNotInServiceRegionException.prototype);
|
|
130
|
-
}
|
|
131
|
-
}
|
|
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
|
-
};
|
|
137
|
-
export class S3LocationNotInServiceRegionException extends __BaseException {
|
|
138
|
-
name = "S3LocationNotInServiceRegionException";
|
|
139
|
-
$fault = "client";
|
|
140
|
-
constructor(opts) {
|
|
141
|
-
super({
|
|
142
|
-
name: "S3LocationNotInServiceRegionException",
|
|
143
|
-
$fault: "client",
|
|
144
|
-
...opts,
|
|
145
|
-
});
|
|
146
|
-
Object.setPrototypeOf(this, S3LocationNotInServiceRegionException.prototype);
|
|
147
|
-
}
|
|
148
|
-
}
|
|
149
|
-
export class TooManyApplicationVersionsException extends __BaseException {
|
|
150
|
-
name = "TooManyApplicationVersionsException";
|
|
151
|
-
$fault = "client";
|
|
152
|
-
constructor(opts) {
|
|
153
|
-
super({
|
|
154
|
-
name: "TooManyApplicationVersionsException",
|
|
155
|
-
$fault: "client",
|
|
156
|
-
...opts,
|
|
157
|
-
});
|
|
158
|
-
Object.setPrototypeOf(this, TooManyApplicationVersionsException.prototype);
|
|
159
|
-
}
|
|
160
|
-
}
|
|
161
|
-
export const ConfigurationDeploymentStatus = {
|
|
162
|
-
deployed: "deployed",
|
|
163
|
-
failed: "failed",
|
|
164
|
-
pending: "pending",
|
|
165
|
-
};
|
|
166
|
-
export class TooManyBucketsException extends __BaseException {
|
|
167
|
-
name = "TooManyBucketsException";
|
|
168
|
-
$fault = "client";
|
|
169
|
-
constructor(opts) {
|
|
170
|
-
super({
|
|
171
|
-
name: "TooManyBucketsException",
|
|
172
|
-
$fault: "client",
|
|
173
|
-
...opts,
|
|
174
|
-
});
|
|
175
|
-
Object.setPrototypeOf(this, TooManyBucketsException.prototype);
|
|
176
|
-
}
|
|
177
|
-
}
|
|
178
|
-
export class TooManyConfigurationTemplatesException extends __BaseException {
|
|
179
|
-
name = "TooManyConfigurationTemplatesException";
|
|
180
|
-
$fault = "client";
|
|
181
|
-
constructor(opts) {
|
|
182
|
-
super({
|
|
183
|
-
name: "TooManyConfigurationTemplatesException",
|
|
184
|
-
$fault: "client",
|
|
185
|
-
...opts,
|
|
186
|
-
});
|
|
187
|
-
Object.setPrototypeOf(this, TooManyConfigurationTemplatesException.prototype);
|
|
188
|
-
}
|
|
189
|
-
}
|
|
190
|
-
export const PlatformStatus = {
|
|
191
|
-
Creating: "Creating",
|
|
192
|
-
Deleted: "Deleted",
|
|
193
|
-
Deleting: "Deleting",
|
|
194
|
-
Failed: "Failed",
|
|
195
|
-
Ready: "Ready",
|
|
196
|
-
};
|
|
197
|
-
export class TooManyPlatformsException extends __BaseException {
|
|
198
|
-
name = "TooManyPlatformsException";
|
|
199
|
-
$fault = "client";
|
|
200
|
-
constructor(opts) {
|
|
201
|
-
super({
|
|
202
|
-
name: "TooManyPlatformsException",
|
|
203
|
-
$fault: "client",
|
|
204
|
-
...opts,
|
|
205
|
-
});
|
|
206
|
-
Object.setPrototypeOf(this, TooManyPlatformsException.prototype);
|
|
207
|
-
}
|
|
208
|
-
}
|
|
209
|
-
export class S3SubscriptionRequiredException extends __BaseException {
|
|
210
|
-
name = "S3SubscriptionRequiredException";
|
|
211
|
-
$fault = "client";
|
|
212
|
-
constructor(opts) {
|
|
213
|
-
super({
|
|
214
|
-
name: "S3SubscriptionRequiredException",
|
|
215
|
-
$fault: "client",
|
|
216
|
-
...opts,
|
|
217
|
-
});
|
|
218
|
-
Object.setPrototypeOf(this, S3SubscriptionRequiredException.prototype);
|
|
219
|
-
}
|
|
220
|
-
}
|
|
221
|
-
export class OperationInProgressException extends __BaseException {
|
|
222
|
-
name = "OperationInProgressException";
|
|
223
|
-
$fault = "client";
|
|
224
|
-
constructor(opts) {
|
|
225
|
-
super({
|
|
226
|
-
name: "OperationInProgressException",
|
|
227
|
-
$fault: "client",
|
|
228
|
-
...opts,
|
|
229
|
-
});
|
|
230
|
-
Object.setPrototypeOf(this, OperationInProgressException.prototype);
|
|
231
|
-
}
|
|
232
|
-
}
|
|
233
|
-
export class SourceBundleDeletionException extends __BaseException {
|
|
234
|
-
name = "SourceBundleDeletionException";
|
|
235
|
-
$fault = "client";
|
|
236
|
-
constructor(opts) {
|
|
237
|
-
super({
|
|
238
|
-
name: "SourceBundleDeletionException",
|
|
239
|
-
$fault: "client",
|
|
240
|
-
...opts,
|
|
241
|
-
});
|
|
242
|
-
Object.setPrototypeOf(this, SourceBundleDeletionException.prototype);
|
|
243
|
-
}
|
|
244
|
-
}
|
|
245
|
-
export class PlatformVersionStillReferencedException extends __BaseException {
|
|
246
|
-
name = "PlatformVersionStillReferencedException";
|
|
247
|
-
$fault = "client";
|
|
248
|
-
constructor(opts) {
|
|
249
|
-
super({
|
|
250
|
-
name: "PlatformVersionStillReferencedException",
|
|
251
|
-
$fault: "client",
|
|
252
|
-
...opts,
|
|
253
|
-
});
|
|
254
|
-
Object.setPrototypeOf(this, PlatformVersionStillReferencedException.prototype);
|
|
255
|
-
}
|
|
256
|
-
}
|
|
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
|
-
};
|
|
271
|
-
export class InvalidRequestException extends __BaseException {
|
|
272
|
-
name = "InvalidRequestException";
|
|
273
|
-
$fault = "client";
|
|
274
|
-
constructor(opts) {
|
|
275
|
-
super({
|
|
276
|
-
name: "InvalidRequestException",
|
|
277
|
-
$fault: "client",
|
|
278
|
-
...opts,
|
|
279
|
-
});
|
|
280
|
-
Object.setPrototypeOf(this, InvalidRequestException.prototype);
|
|
281
|
-
}
|
|
282
|
-
}
|
|
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
|
-
};
|
|
313
|
-
export class ResourceNotFoundException extends __BaseException {
|
|
314
|
-
name = "ResourceNotFoundException";
|
|
315
|
-
$fault = "client";
|
|
316
|
-
constructor(opts) {
|
|
317
|
-
super({
|
|
318
|
-
name: "ResourceNotFoundException",
|
|
319
|
-
$fault: "client",
|
|
320
|
-
...opts,
|
|
321
|
-
});
|
|
322
|
-
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
323
|
-
}
|
|
324
|
-
}
|
|
325
|
-
export class ResourceTypeNotSupportedException extends __BaseException {
|
|
326
|
-
name = "ResourceTypeNotSupportedException";
|
|
327
|
-
$fault = "client";
|
|
328
|
-
constructor(opts) {
|
|
329
|
-
super({
|
|
330
|
-
name: "ResourceTypeNotSupportedException",
|
|
331
|
-
$fault: "client",
|
|
332
|
-
...opts,
|
|
333
|
-
});
|
|
334
|
-
Object.setPrototypeOf(this, ResourceTypeNotSupportedException.prototype);
|
|
335
|
-
}
|
|
336
|
-
}
|
|
337
|
-
export const EnvironmentInfoType = {
|
|
338
|
-
bundle: "bundle",
|
|
339
|
-
tail: "tail",
|
|
340
|
-
};
|
|
341
|
-
export class TooManyTagsException extends __BaseException {
|
|
342
|
-
name = "TooManyTagsException";
|
|
343
|
-
$fault = "client";
|
|
344
|
-
constructor(opts) {
|
|
345
|
-
super({
|
|
346
|
-
name: "TooManyTagsException",
|
|
347
|
-
$fault: "client",
|
|
348
|
-
...opts,
|
|
349
|
-
});
|
|
350
|
-
Object.setPrototypeOf(this, TooManyTagsException.prototype);
|
|
351
|
-
}
|
|
352
|
-
}
|
|
353
|
-
export const ValidationSeverity = {
|
|
354
|
-
error: "error",
|
|
355
|
-
warning: "warning",
|
|
356
|
-
};
|
|
1
|
+
export {};
|
|
@@ -443,7 +443,7 @@ const _s = "smithy.ts.sdk.synthetic.com.amazonaws.elasticbeanstalk";
|
|
|
443
443
|
const n0 = "com.amazonaws.elasticbeanstalk";
|
|
444
444
|
import { TypeRegistry } from "@smithy/core/schema";
|
|
445
445
|
import { ElasticBeanstalkSyntheticServiceException as __ElasticBeanstalkSyntheticServiceException } from "../models/ElasticBeanstalkSyntheticServiceException";
|
|
446
|
-
import { CodeBuildNotInServiceRegionException as __CodeBuildNotInServiceRegionException, ElasticBeanstalkServiceException as __ElasticBeanstalkServiceException, InsufficientPrivilegesException as __InsufficientPrivilegesException, InvalidRequestException as __InvalidRequestException, ManagedActionInvalidStateException as __ManagedActionInvalidStateException, OperationInProgressException as __OperationInProgressException, PlatformVersionStillReferencedException as __PlatformVersionStillReferencedException, ResourceNotFoundException as __ResourceNotFoundException, ResourceTypeNotSupportedException as __ResourceTypeNotSupportedException, S3LocationNotInServiceRegionException as __S3LocationNotInServiceRegionException, S3SubscriptionRequiredException as __S3SubscriptionRequiredException, SourceBundleDeletionException as __SourceBundleDeletionException, TooManyApplicationsException as __TooManyApplicationsException, TooManyApplicationVersionsException as __TooManyApplicationVersionsException, TooManyBucketsException as __TooManyBucketsException, TooManyConfigurationTemplatesException as __TooManyConfigurationTemplatesException, TooManyEnvironmentsException as __TooManyEnvironmentsException, TooManyPlatformsException as __TooManyPlatformsException, TooManyTagsException as __TooManyTagsException, } from "../models/
|
|
446
|
+
import { CodeBuildNotInServiceRegionException as __CodeBuildNotInServiceRegionException, ElasticBeanstalkServiceException as __ElasticBeanstalkServiceException, InsufficientPrivilegesException as __InsufficientPrivilegesException, InvalidRequestException as __InvalidRequestException, ManagedActionInvalidStateException as __ManagedActionInvalidStateException, OperationInProgressException as __OperationInProgressException, PlatformVersionStillReferencedException as __PlatformVersionStillReferencedException, ResourceNotFoundException as __ResourceNotFoundException, ResourceTypeNotSupportedException as __ResourceTypeNotSupportedException, S3LocationNotInServiceRegionException as __S3LocationNotInServiceRegionException, S3SubscriptionRequiredException as __S3SubscriptionRequiredException, SourceBundleDeletionException as __SourceBundleDeletionException, TooManyApplicationsException as __TooManyApplicationsException, TooManyApplicationVersionsException as __TooManyApplicationVersionsException, TooManyBucketsException as __TooManyBucketsException, TooManyConfigurationTemplatesException as __TooManyConfigurationTemplatesException, TooManyEnvironmentsException as __TooManyEnvironmentsException, TooManyPlatformsException as __TooManyPlatformsException, TooManyTagsException as __TooManyTagsException, } from "../models/errors";
|
|
447
447
|
export var AbortEnvironmentUpdateMessage = [3, n0, _AEUM, 0, [_EI, _EN], [0, 0]];
|
|
448
448
|
export var ApplicationDescription = [
|
|
449
449
|
3,
|
package/dist-types/index.d.ts
CHANGED
|
@@ -23,5 +23,7 @@ export type { ElasticBeanstalkExtensionConfiguration } from "./extensionConfigur
|
|
|
23
23
|
export * from "./commands";
|
|
24
24
|
export * from "./pagination";
|
|
25
25
|
export * from "./waiters";
|
|
26
|
-
export * from "./models";
|
|
26
|
+
export * from "./models/enums";
|
|
27
|
+
export * from "./models/errors";
|
|
28
|
+
export type * from "./models/models_0";
|
|
27
29
|
export { ElasticBeanstalkSyntheticServiceException } from "./models/ElasticBeanstalkSyntheticServiceException";
|
|
@@ -0,0 +1,279 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @public
|
|
3
|
+
* @enum
|
|
4
|
+
*/
|
|
5
|
+
export declare const ActionHistoryStatus: {
|
|
6
|
+
readonly Completed: "Completed";
|
|
7
|
+
readonly Failed: "Failed";
|
|
8
|
+
readonly Unknown: "Unknown";
|
|
9
|
+
};
|
|
10
|
+
/**
|
|
11
|
+
* @public
|
|
12
|
+
*/
|
|
13
|
+
export type ActionHistoryStatus = (typeof ActionHistoryStatus)[keyof typeof ActionHistoryStatus];
|
|
14
|
+
/**
|
|
15
|
+
* @public
|
|
16
|
+
* @enum
|
|
17
|
+
*/
|
|
18
|
+
export declare const ActionStatus: {
|
|
19
|
+
readonly Pending: "Pending";
|
|
20
|
+
readonly Running: "Running";
|
|
21
|
+
readonly Scheduled: "Scheduled";
|
|
22
|
+
readonly Unknown: "Unknown";
|
|
23
|
+
};
|
|
24
|
+
/**
|
|
25
|
+
* @public
|
|
26
|
+
*/
|
|
27
|
+
export type ActionStatus = (typeof ActionStatus)[keyof typeof ActionStatus];
|
|
28
|
+
/**
|
|
29
|
+
* @public
|
|
30
|
+
* @enum
|
|
31
|
+
*/
|
|
32
|
+
export declare const ActionType: {
|
|
33
|
+
readonly InstanceRefresh: "InstanceRefresh";
|
|
34
|
+
readonly PlatformUpdate: "PlatformUpdate";
|
|
35
|
+
readonly Unknown: "Unknown";
|
|
36
|
+
};
|
|
37
|
+
/**
|
|
38
|
+
* @public
|
|
39
|
+
*/
|
|
40
|
+
export type ActionType = (typeof ActionType)[keyof typeof ActionType];
|
|
41
|
+
/**
|
|
42
|
+
* @public
|
|
43
|
+
* @enum
|
|
44
|
+
*/
|
|
45
|
+
export declare const SourceRepository: {
|
|
46
|
+
readonly CodeCommit: "CodeCommit";
|
|
47
|
+
readonly S3: "S3";
|
|
48
|
+
};
|
|
49
|
+
/**
|
|
50
|
+
* @public
|
|
51
|
+
*/
|
|
52
|
+
export type SourceRepository = (typeof SourceRepository)[keyof typeof SourceRepository];
|
|
53
|
+
/**
|
|
54
|
+
* @public
|
|
55
|
+
* @enum
|
|
56
|
+
*/
|
|
57
|
+
export declare const SourceType: {
|
|
58
|
+
readonly Git: "Git";
|
|
59
|
+
readonly Zip: "Zip";
|
|
60
|
+
};
|
|
61
|
+
/**
|
|
62
|
+
* @public
|
|
63
|
+
*/
|
|
64
|
+
export type SourceType = (typeof SourceType)[keyof typeof SourceType];
|
|
65
|
+
/**
|
|
66
|
+
* @public
|
|
67
|
+
* @enum
|
|
68
|
+
*/
|
|
69
|
+
export declare const ApplicationVersionStatus: {
|
|
70
|
+
readonly Building: "Building";
|
|
71
|
+
readonly Failed: "Failed";
|
|
72
|
+
readonly Processed: "Processed";
|
|
73
|
+
readonly Processing: "Processing";
|
|
74
|
+
readonly Unprocessed: "Unprocessed";
|
|
75
|
+
};
|
|
76
|
+
/**
|
|
77
|
+
* @public
|
|
78
|
+
*/
|
|
79
|
+
export type ApplicationVersionStatus = (typeof ApplicationVersionStatus)[keyof typeof ApplicationVersionStatus];
|
|
80
|
+
/**
|
|
81
|
+
* @public
|
|
82
|
+
* @enum
|
|
83
|
+
*/
|
|
84
|
+
export declare const EnvironmentHealth: {
|
|
85
|
+
readonly Green: "Green";
|
|
86
|
+
readonly Grey: "Grey";
|
|
87
|
+
readonly Red: "Red";
|
|
88
|
+
readonly Yellow: "Yellow";
|
|
89
|
+
};
|
|
90
|
+
/**
|
|
91
|
+
* @public
|
|
92
|
+
*/
|
|
93
|
+
export type EnvironmentHealth = (typeof EnvironmentHealth)[keyof typeof EnvironmentHealth];
|
|
94
|
+
/**
|
|
95
|
+
* @public
|
|
96
|
+
* @enum
|
|
97
|
+
*/
|
|
98
|
+
export declare const EnvironmentHealthStatus: {
|
|
99
|
+
readonly Degraded: "Degraded";
|
|
100
|
+
readonly Info: "Info";
|
|
101
|
+
readonly NoData: "NoData";
|
|
102
|
+
readonly Ok: "Ok";
|
|
103
|
+
readonly Pending: "Pending";
|
|
104
|
+
readonly Severe: "Severe";
|
|
105
|
+
readonly Suspended: "Suspended";
|
|
106
|
+
readonly Unknown: "Unknown";
|
|
107
|
+
readonly Warning: "Warning";
|
|
108
|
+
};
|
|
109
|
+
/**
|
|
110
|
+
* @public
|
|
111
|
+
*/
|
|
112
|
+
export type EnvironmentHealthStatus = (typeof EnvironmentHealthStatus)[keyof typeof EnvironmentHealthStatus];
|
|
113
|
+
/**
|
|
114
|
+
* @public
|
|
115
|
+
* @enum
|
|
116
|
+
*/
|
|
117
|
+
export declare const EnvironmentStatus: {
|
|
118
|
+
readonly Aborting: "Aborting";
|
|
119
|
+
readonly Launching: "Launching";
|
|
120
|
+
readonly LinkingFrom: "LinkingFrom";
|
|
121
|
+
readonly LinkingTo: "LinkingTo";
|
|
122
|
+
readonly Ready: "Ready";
|
|
123
|
+
readonly Terminated: "Terminated";
|
|
124
|
+
readonly Terminating: "Terminating";
|
|
125
|
+
readonly Updating: "Updating";
|
|
126
|
+
};
|
|
127
|
+
/**
|
|
128
|
+
* @public
|
|
129
|
+
*/
|
|
130
|
+
export type EnvironmentStatus = (typeof EnvironmentStatus)[keyof typeof EnvironmentStatus];
|
|
131
|
+
/**
|
|
132
|
+
* @public
|
|
133
|
+
* @enum
|
|
134
|
+
*/
|
|
135
|
+
export declare const ComputeType: {
|
|
136
|
+
readonly BUILD_GENERAL1_LARGE: "BUILD_GENERAL1_LARGE";
|
|
137
|
+
readonly BUILD_GENERAL1_MEDIUM: "BUILD_GENERAL1_MEDIUM";
|
|
138
|
+
readonly BUILD_GENERAL1_SMALL: "BUILD_GENERAL1_SMALL";
|
|
139
|
+
};
|
|
140
|
+
/**
|
|
141
|
+
* @public
|
|
142
|
+
*/
|
|
143
|
+
export type ComputeType = (typeof ComputeType)[keyof typeof ComputeType];
|
|
144
|
+
/**
|
|
145
|
+
* @public
|
|
146
|
+
* @enum
|
|
147
|
+
*/
|
|
148
|
+
export declare const ConfigurationDeploymentStatus: {
|
|
149
|
+
readonly deployed: "deployed";
|
|
150
|
+
readonly failed: "failed";
|
|
151
|
+
readonly pending: "pending";
|
|
152
|
+
};
|
|
153
|
+
/**
|
|
154
|
+
* @public
|
|
155
|
+
*/
|
|
156
|
+
export type ConfigurationDeploymentStatus = (typeof ConfigurationDeploymentStatus)[keyof typeof ConfigurationDeploymentStatus];
|
|
157
|
+
/**
|
|
158
|
+
* @public
|
|
159
|
+
* @enum
|
|
160
|
+
*/
|
|
161
|
+
export declare const PlatformStatus: {
|
|
162
|
+
readonly Creating: "Creating";
|
|
163
|
+
readonly Deleted: "Deleted";
|
|
164
|
+
readonly Deleting: "Deleting";
|
|
165
|
+
readonly Failed: "Failed";
|
|
166
|
+
readonly Ready: "Ready";
|
|
167
|
+
};
|
|
168
|
+
/**
|
|
169
|
+
* @public
|
|
170
|
+
*/
|
|
171
|
+
export type PlatformStatus = (typeof PlatformStatus)[keyof typeof PlatformStatus];
|
|
172
|
+
/**
|
|
173
|
+
* @public
|
|
174
|
+
* @enum
|
|
175
|
+
*/
|
|
176
|
+
export declare const ConfigurationOptionValueType: {
|
|
177
|
+
readonly List: "List";
|
|
178
|
+
readonly Scalar: "Scalar";
|
|
179
|
+
};
|
|
180
|
+
/**
|
|
181
|
+
* @public
|
|
182
|
+
*/
|
|
183
|
+
export type ConfigurationOptionValueType = (typeof ConfigurationOptionValueType)[keyof typeof ConfigurationOptionValueType];
|
|
184
|
+
/**
|
|
185
|
+
* @public
|
|
186
|
+
* @enum
|
|
187
|
+
*/
|
|
188
|
+
export declare const EnvironmentHealthAttribute: {
|
|
189
|
+
readonly All: "All";
|
|
190
|
+
readonly ApplicationMetrics: "ApplicationMetrics";
|
|
191
|
+
readonly Causes: "Causes";
|
|
192
|
+
readonly Color: "Color";
|
|
193
|
+
readonly HealthStatus: "HealthStatus";
|
|
194
|
+
readonly InstancesHealth: "InstancesHealth";
|
|
195
|
+
readonly RefreshedAt: "RefreshedAt";
|
|
196
|
+
readonly Status: "Status";
|
|
197
|
+
};
|
|
198
|
+
/**
|
|
199
|
+
* @public
|
|
200
|
+
*/
|
|
201
|
+
export type EnvironmentHealthAttribute = (typeof EnvironmentHealthAttribute)[keyof typeof EnvironmentHealthAttribute];
|
|
202
|
+
/**
|
|
203
|
+
* @public
|
|
204
|
+
* @enum
|
|
205
|
+
*/
|
|
206
|
+
export declare const FailureType: {
|
|
207
|
+
readonly CancellationFailed: "CancellationFailed";
|
|
208
|
+
readonly InternalFailure: "InternalFailure";
|
|
209
|
+
readonly InvalidEnvironmentState: "InvalidEnvironmentState";
|
|
210
|
+
readonly PermissionsError: "PermissionsError";
|
|
211
|
+
readonly RollbackFailed: "RollbackFailed";
|
|
212
|
+
readonly RollbackSuccessful: "RollbackSuccessful";
|
|
213
|
+
readonly UpdateCancelled: "UpdateCancelled";
|
|
214
|
+
};
|
|
215
|
+
/**
|
|
216
|
+
* @public
|
|
217
|
+
*/
|
|
218
|
+
export type FailureType = (typeof FailureType)[keyof typeof FailureType];
|
|
219
|
+
/**
|
|
220
|
+
* @public
|
|
221
|
+
* @enum
|
|
222
|
+
*/
|
|
223
|
+
export declare const EventSeverity: {
|
|
224
|
+
readonly DEBUG: "DEBUG";
|
|
225
|
+
readonly ERROR: "ERROR";
|
|
226
|
+
readonly FATAL: "FATAL";
|
|
227
|
+
readonly INFO: "INFO";
|
|
228
|
+
readonly TRACE: "TRACE";
|
|
229
|
+
readonly WARN: "WARN";
|
|
230
|
+
};
|
|
231
|
+
/**
|
|
232
|
+
* @public
|
|
233
|
+
*/
|
|
234
|
+
export type EventSeverity = (typeof EventSeverity)[keyof typeof EventSeverity];
|
|
235
|
+
/**
|
|
236
|
+
* @public
|
|
237
|
+
* @enum
|
|
238
|
+
*/
|
|
239
|
+
export declare const InstancesHealthAttribute: {
|
|
240
|
+
readonly All: "All";
|
|
241
|
+
readonly ApplicationMetrics: "ApplicationMetrics";
|
|
242
|
+
readonly AvailabilityZone: "AvailabilityZone";
|
|
243
|
+
readonly Causes: "Causes";
|
|
244
|
+
readonly Color: "Color";
|
|
245
|
+
readonly Deployment: "Deployment";
|
|
246
|
+
readonly HealthStatus: "HealthStatus";
|
|
247
|
+
readonly InstanceType: "InstanceType";
|
|
248
|
+
readonly LaunchedAt: "LaunchedAt";
|
|
249
|
+
readonly RefreshedAt: "RefreshedAt";
|
|
250
|
+
readonly System: "System";
|
|
251
|
+
};
|
|
252
|
+
/**
|
|
253
|
+
* @public
|
|
254
|
+
*/
|
|
255
|
+
export type InstancesHealthAttribute = (typeof InstancesHealthAttribute)[keyof typeof InstancesHealthAttribute];
|
|
256
|
+
/**
|
|
257
|
+
* @public
|
|
258
|
+
* @enum
|
|
259
|
+
*/
|
|
260
|
+
export declare const EnvironmentInfoType: {
|
|
261
|
+
readonly bundle: "bundle";
|
|
262
|
+
readonly tail: "tail";
|
|
263
|
+
};
|
|
264
|
+
/**
|
|
265
|
+
* @public
|
|
266
|
+
*/
|
|
267
|
+
export type EnvironmentInfoType = (typeof EnvironmentInfoType)[keyof typeof EnvironmentInfoType];
|
|
268
|
+
/**
|
|
269
|
+
* @public
|
|
270
|
+
* @enum
|
|
271
|
+
*/
|
|
272
|
+
export declare const ValidationSeverity: {
|
|
273
|
+
readonly error: "error";
|
|
274
|
+
readonly warning: "warning";
|
|
275
|
+
};
|
|
276
|
+
/**
|
|
277
|
+
* @public
|
|
278
|
+
*/
|
|
279
|
+
export type ValidationSeverity = (typeof ValidationSeverity)[keyof typeof ValidationSeverity];
|