@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
|
@@ -1,39 +1,28 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
1
|
+
import {
|
|
2
|
+
ActionHistoryStatus,
|
|
3
|
+
ActionStatus,
|
|
4
|
+
ActionType,
|
|
5
|
+
ApplicationVersionStatus,
|
|
6
|
+
ComputeType,
|
|
7
|
+
ConfigurationDeploymentStatus,
|
|
8
|
+
ConfigurationOptionValueType,
|
|
9
|
+
EnvironmentHealth,
|
|
10
|
+
EnvironmentHealthAttribute,
|
|
11
|
+
EnvironmentHealthStatus,
|
|
12
|
+
EnvironmentInfoType,
|
|
13
|
+
EnvironmentStatus,
|
|
14
|
+
EventSeverity,
|
|
15
|
+
FailureType,
|
|
16
|
+
InstancesHealthAttribute,
|
|
17
|
+
PlatformStatus,
|
|
18
|
+
SourceRepository,
|
|
19
|
+
SourceType,
|
|
20
|
+
ValidationSeverity,
|
|
21
|
+
} from "./enums";
|
|
3
22
|
export interface AbortEnvironmentUpdateMessage {
|
|
4
23
|
EnvironmentId?: string | undefined;
|
|
5
24
|
EnvironmentName?: string | undefined;
|
|
6
25
|
}
|
|
7
|
-
export declare class InsufficientPrivilegesException extends __BaseException {
|
|
8
|
-
readonly name: "InsufficientPrivilegesException";
|
|
9
|
-
readonly $fault: "client";
|
|
10
|
-
constructor(
|
|
11
|
-
opts: __ExceptionOptionType<
|
|
12
|
-
InsufficientPrivilegesException,
|
|
13
|
-
__BaseException
|
|
14
|
-
>
|
|
15
|
-
);
|
|
16
|
-
}
|
|
17
|
-
export declare const ActionHistoryStatus: {
|
|
18
|
-
readonly Completed: "Completed";
|
|
19
|
-
readonly Failed: "Failed";
|
|
20
|
-
readonly Unknown: "Unknown";
|
|
21
|
-
};
|
|
22
|
-
export type ActionHistoryStatus =
|
|
23
|
-
(typeof ActionHistoryStatus)[keyof typeof ActionHistoryStatus];
|
|
24
|
-
export declare const ActionStatus: {
|
|
25
|
-
readonly Pending: "Pending";
|
|
26
|
-
readonly Running: "Running";
|
|
27
|
-
readonly Scheduled: "Scheduled";
|
|
28
|
-
readonly Unknown: "Unknown";
|
|
29
|
-
};
|
|
30
|
-
export type ActionStatus = (typeof ActionStatus)[keyof typeof ActionStatus];
|
|
31
|
-
export declare const ActionType: {
|
|
32
|
-
readonly InstanceRefresh: "InstanceRefresh";
|
|
33
|
-
readonly PlatformUpdate: "PlatformUpdate";
|
|
34
|
-
readonly Unknown: "Unknown";
|
|
35
|
-
};
|
|
36
|
-
export type ActionType = (typeof ActionType)[keyof typeof ActionType];
|
|
37
26
|
export interface MaxAgeRule {
|
|
38
27
|
Enabled: boolean | undefined;
|
|
39
28
|
MaxAgeInDays?: number | undefined;
|
|
@@ -94,17 +83,6 @@ export interface ApplicationResourceLifecycleDescriptionMessage {
|
|
|
94
83
|
ApplicationName?: string | undefined;
|
|
95
84
|
ResourceLifecycleConfig?: ApplicationResourceLifecycleConfig | undefined;
|
|
96
85
|
}
|
|
97
|
-
export declare const SourceRepository: {
|
|
98
|
-
readonly CodeCommit: "CodeCommit";
|
|
99
|
-
readonly S3: "S3";
|
|
100
|
-
};
|
|
101
|
-
export type SourceRepository =
|
|
102
|
-
(typeof SourceRepository)[keyof typeof SourceRepository];
|
|
103
|
-
export declare const SourceType: {
|
|
104
|
-
readonly Git: "Git";
|
|
105
|
-
readonly Zip: "Zip";
|
|
106
|
-
};
|
|
107
|
-
export type SourceType = (typeof SourceType)[keyof typeof SourceType];
|
|
108
86
|
export interface SourceBuildInformation {
|
|
109
87
|
SourceType: SourceType | undefined;
|
|
110
88
|
SourceRepository: SourceRepository | undefined;
|
|
@@ -114,15 +92,6 @@ export interface S3Location {
|
|
|
114
92
|
S3Bucket?: string | undefined;
|
|
115
93
|
S3Key?: string | undefined;
|
|
116
94
|
}
|
|
117
|
-
export declare const ApplicationVersionStatus: {
|
|
118
|
-
readonly Building: "Building";
|
|
119
|
-
readonly Failed: "Failed";
|
|
120
|
-
readonly Processed: "Processed";
|
|
121
|
-
readonly Processing: "Processing";
|
|
122
|
-
readonly Unprocessed: "Unprocessed";
|
|
123
|
-
};
|
|
124
|
-
export type ApplicationVersionStatus =
|
|
125
|
-
(typeof ApplicationVersionStatus)[keyof typeof ApplicationVersionStatus];
|
|
126
95
|
export interface ApplicationVersionDescription {
|
|
127
96
|
ApplicationVersionArn?: string | undefined;
|
|
128
97
|
ApplicationName?: string | undefined;
|
|
@@ -153,26 +122,6 @@ export interface ApplyEnvironmentManagedActionResult {
|
|
|
153
122
|
ActionType?: ActionType | undefined;
|
|
154
123
|
Status?: string | undefined;
|
|
155
124
|
}
|
|
156
|
-
export declare class ElasticBeanstalkServiceException extends __BaseException {
|
|
157
|
-
readonly name: "ElasticBeanstalkServiceException";
|
|
158
|
-
readonly $fault: "client";
|
|
159
|
-
constructor(
|
|
160
|
-
opts: __ExceptionOptionType<
|
|
161
|
-
ElasticBeanstalkServiceException,
|
|
162
|
-
__BaseException
|
|
163
|
-
>
|
|
164
|
-
);
|
|
165
|
-
}
|
|
166
|
-
export declare class ManagedActionInvalidStateException extends __BaseException {
|
|
167
|
-
readonly name: "ManagedActionInvalidStateException";
|
|
168
|
-
readonly $fault: "client";
|
|
169
|
-
constructor(
|
|
170
|
-
opts: __ExceptionOptionType<
|
|
171
|
-
ManagedActionInvalidStateException,
|
|
172
|
-
__BaseException
|
|
173
|
-
>
|
|
174
|
-
);
|
|
175
|
-
}
|
|
176
125
|
export interface AssociateEnvironmentOperationsRoleMessage {
|
|
177
126
|
EnvironmentName: string | undefined;
|
|
178
127
|
OperationsRole: string | undefined;
|
|
@@ -200,27 +149,6 @@ export interface EnvironmentLink {
|
|
|
200
149
|
LinkName?: string | undefined;
|
|
201
150
|
EnvironmentName?: string | undefined;
|
|
202
151
|
}
|
|
203
|
-
export declare const EnvironmentHealth: {
|
|
204
|
-
readonly Green: "Green";
|
|
205
|
-
readonly Grey: "Grey";
|
|
206
|
-
readonly Red: "Red";
|
|
207
|
-
readonly Yellow: "Yellow";
|
|
208
|
-
};
|
|
209
|
-
export type EnvironmentHealth =
|
|
210
|
-
(typeof EnvironmentHealth)[keyof typeof EnvironmentHealth];
|
|
211
|
-
export declare const EnvironmentHealthStatus: {
|
|
212
|
-
readonly Degraded: "Degraded";
|
|
213
|
-
readonly Info: "Info";
|
|
214
|
-
readonly NoData: "NoData";
|
|
215
|
-
readonly Ok: "Ok";
|
|
216
|
-
readonly Pending: "Pending";
|
|
217
|
-
readonly Severe: "Severe";
|
|
218
|
-
readonly Suspended: "Suspended";
|
|
219
|
-
readonly Unknown: "Unknown";
|
|
220
|
-
readonly Warning: "Warning";
|
|
221
|
-
};
|
|
222
|
-
export type EnvironmentHealthStatus =
|
|
223
|
-
(typeof EnvironmentHealthStatus)[keyof typeof EnvironmentHealthStatus];
|
|
224
152
|
export interface Listener {
|
|
225
153
|
Protocol?: string | undefined;
|
|
226
154
|
Port?: number | undefined;
|
|
@@ -233,18 +161,6 @@ export interface LoadBalancerDescription {
|
|
|
233
161
|
export interface EnvironmentResourcesDescription {
|
|
234
162
|
LoadBalancer?: LoadBalancerDescription | undefined;
|
|
235
163
|
}
|
|
236
|
-
export declare const EnvironmentStatus: {
|
|
237
|
-
readonly Aborting: "Aborting";
|
|
238
|
-
readonly Launching: "Launching";
|
|
239
|
-
readonly LinkingFrom: "LinkingFrom";
|
|
240
|
-
readonly LinkingTo: "LinkingTo";
|
|
241
|
-
readonly Ready: "Ready";
|
|
242
|
-
readonly Terminated: "Terminated";
|
|
243
|
-
readonly Terminating: "Terminating";
|
|
244
|
-
readonly Updating: "Updating";
|
|
245
|
-
};
|
|
246
|
-
export type EnvironmentStatus =
|
|
247
|
-
(typeof EnvironmentStatus)[keyof typeof EnvironmentStatus];
|
|
248
164
|
export interface EnvironmentTier {
|
|
249
165
|
Name?: string | undefined;
|
|
250
166
|
Type?: string | undefined;
|
|
@@ -277,13 +193,6 @@ export interface EnvironmentDescriptionsMessage {
|
|
|
277
193
|
Environments?: EnvironmentDescription[] | undefined;
|
|
278
194
|
NextToken?: string | undefined;
|
|
279
195
|
}
|
|
280
|
-
export declare class TooManyEnvironmentsException extends __BaseException {
|
|
281
|
-
readonly name: "TooManyEnvironmentsException";
|
|
282
|
-
readonly $fault: "client";
|
|
283
|
-
constructor(
|
|
284
|
-
opts: __ExceptionOptionType<TooManyEnvironmentsException, __BaseException>
|
|
285
|
-
);
|
|
286
|
-
}
|
|
287
196
|
export interface Tag {
|
|
288
197
|
Key?: string | undefined;
|
|
289
198
|
Value?: string | undefined;
|
|
@@ -294,29 +203,6 @@ export interface CreateApplicationMessage {
|
|
|
294
203
|
ResourceLifecycleConfig?: ApplicationResourceLifecycleConfig | undefined;
|
|
295
204
|
Tags?: Tag[] | undefined;
|
|
296
205
|
}
|
|
297
|
-
export declare class TooManyApplicationsException extends __BaseException {
|
|
298
|
-
readonly name: "TooManyApplicationsException";
|
|
299
|
-
readonly $fault: "client";
|
|
300
|
-
constructor(
|
|
301
|
-
opts: __ExceptionOptionType<TooManyApplicationsException, __BaseException>
|
|
302
|
-
);
|
|
303
|
-
}
|
|
304
|
-
export declare class CodeBuildNotInServiceRegionException extends __BaseException {
|
|
305
|
-
readonly name: "CodeBuildNotInServiceRegionException";
|
|
306
|
-
readonly $fault: "client";
|
|
307
|
-
constructor(
|
|
308
|
-
opts: __ExceptionOptionType<
|
|
309
|
-
CodeBuildNotInServiceRegionException,
|
|
310
|
-
__BaseException
|
|
311
|
-
>
|
|
312
|
-
);
|
|
313
|
-
}
|
|
314
|
-
export declare const ComputeType: {
|
|
315
|
-
readonly BUILD_GENERAL1_LARGE: "BUILD_GENERAL1_LARGE";
|
|
316
|
-
readonly BUILD_GENERAL1_MEDIUM: "BUILD_GENERAL1_MEDIUM";
|
|
317
|
-
readonly BUILD_GENERAL1_SMALL: "BUILD_GENERAL1_SMALL";
|
|
318
|
-
};
|
|
319
|
-
export type ComputeType = (typeof ComputeType)[keyof typeof ComputeType];
|
|
320
206
|
export interface BuildConfiguration {
|
|
321
207
|
ArtifactName?: string | undefined;
|
|
322
208
|
CodeBuildServiceRole: string | undefined;
|
|
@@ -335,33 +221,6 @@ export interface CreateApplicationVersionMessage {
|
|
|
335
221
|
Process?: boolean | undefined;
|
|
336
222
|
Tags?: Tag[] | undefined;
|
|
337
223
|
}
|
|
338
|
-
export declare class S3LocationNotInServiceRegionException extends __BaseException {
|
|
339
|
-
readonly name: "S3LocationNotInServiceRegionException";
|
|
340
|
-
readonly $fault: "client";
|
|
341
|
-
constructor(
|
|
342
|
-
opts: __ExceptionOptionType<
|
|
343
|
-
S3LocationNotInServiceRegionException,
|
|
344
|
-
__BaseException
|
|
345
|
-
>
|
|
346
|
-
);
|
|
347
|
-
}
|
|
348
|
-
export declare class TooManyApplicationVersionsException extends __BaseException {
|
|
349
|
-
readonly name: "TooManyApplicationVersionsException";
|
|
350
|
-
readonly $fault: "client";
|
|
351
|
-
constructor(
|
|
352
|
-
opts: __ExceptionOptionType<
|
|
353
|
-
TooManyApplicationVersionsException,
|
|
354
|
-
__BaseException
|
|
355
|
-
>
|
|
356
|
-
);
|
|
357
|
-
}
|
|
358
|
-
export declare const ConfigurationDeploymentStatus: {
|
|
359
|
-
readonly deployed: "deployed";
|
|
360
|
-
readonly failed: "failed";
|
|
361
|
-
readonly pending: "pending";
|
|
362
|
-
};
|
|
363
|
-
export type ConfigurationDeploymentStatus =
|
|
364
|
-
(typeof ConfigurationDeploymentStatus)[keyof typeof ConfigurationDeploymentStatus];
|
|
365
224
|
export interface ConfigurationOptionSetting {
|
|
366
225
|
ResourceName?: string | undefined;
|
|
367
226
|
Namespace?: string | undefined;
|
|
@@ -395,23 +254,6 @@ export interface CreateConfigurationTemplateMessage {
|
|
|
395
254
|
OptionSettings?: ConfigurationOptionSetting[] | undefined;
|
|
396
255
|
Tags?: Tag[] | undefined;
|
|
397
256
|
}
|
|
398
|
-
export declare class TooManyBucketsException extends __BaseException {
|
|
399
|
-
readonly name: "TooManyBucketsException";
|
|
400
|
-
readonly $fault: "client";
|
|
401
|
-
constructor(
|
|
402
|
-
opts: __ExceptionOptionType<TooManyBucketsException, __BaseException>
|
|
403
|
-
);
|
|
404
|
-
}
|
|
405
|
-
export declare class TooManyConfigurationTemplatesException extends __BaseException {
|
|
406
|
-
readonly name: "TooManyConfigurationTemplatesException";
|
|
407
|
-
readonly $fault: "client";
|
|
408
|
-
constructor(
|
|
409
|
-
opts: __ExceptionOptionType<
|
|
410
|
-
TooManyConfigurationTemplatesException,
|
|
411
|
-
__BaseException
|
|
412
|
-
>
|
|
413
|
-
);
|
|
414
|
-
}
|
|
415
257
|
export interface OptionSpecification {
|
|
416
258
|
ResourceName?: string | undefined;
|
|
417
259
|
Namespace?: string | undefined;
|
|
@@ -444,15 +286,6 @@ export interface CreatePlatformVersionRequest {
|
|
|
444
286
|
export interface Builder {
|
|
445
287
|
ARN?: string | undefined;
|
|
446
288
|
}
|
|
447
|
-
export declare const PlatformStatus: {
|
|
448
|
-
readonly Creating: "Creating";
|
|
449
|
-
readonly Deleted: "Deleted";
|
|
450
|
-
readonly Deleting: "Deleting";
|
|
451
|
-
readonly Failed: "Failed";
|
|
452
|
-
readonly Ready: "Ready";
|
|
453
|
-
};
|
|
454
|
-
export type PlatformStatus =
|
|
455
|
-
(typeof PlatformStatus)[keyof typeof PlatformStatus];
|
|
456
289
|
export interface PlatformSummary {
|
|
457
290
|
PlatformArn?: string | undefined;
|
|
458
291
|
PlatformOwner?: string | undefined;
|
|
@@ -471,49 +304,18 @@ export interface CreatePlatformVersionResult {
|
|
|
471
304
|
PlatformSummary?: PlatformSummary | undefined;
|
|
472
305
|
Builder?: Builder | undefined;
|
|
473
306
|
}
|
|
474
|
-
export declare class TooManyPlatformsException extends __BaseException {
|
|
475
|
-
readonly name: "TooManyPlatformsException";
|
|
476
|
-
readonly $fault: "client";
|
|
477
|
-
constructor(
|
|
478
|
-
opts: __ExceptionOptionType<TooManyPlatformsException, __BaseException>
|
|
479
|
-
);
|
|
480
|
-
}
|
|
481
307
|
export interface CreateStorageLocationResultMessage {
|
|
482
308
|
S3Bucket?: string | undefined;
|
|
483
309
|
}
|
|
484
|
-
export declare class S3SubscriptionRequiredException extends __BaseException {
|
|
485
|
-
readonly name: "S3SubscriptionRequiredException";
|
|
486
|
-
readonly $fault: "client";
|
|
487
|
-
constructor(
|
|
488
|
-
opts: __ExceptionOptionType<
|
|
489
|
-
S3SubscriptionRequiredException,
|
|
490
|
-
__BaseException
|
|
491
|
-
>
|
|
492
|
-
);
|
|
493
|
-
}
|
|
494
310
|
export interface DeleteApplicationMessage {
|
|
495
311
|
ApplicationName: string | undefined;
|
|
496
312
|
TerminateEnvByForce?: boolean | undefined;
|
|
497
313
|
}
|
|
498
|
-
export declare class OperationInProgressException extends __BaseException {
|
|
499
|
-
readonly name: "OperationInProgressException";
|
|
500
|
-
readonly $fault: "client";
|
|
501
|
-
constructor(
|
|
502
|
-
opts: __ExceptionOptionType<OperationInProgressException, __BaseException>
|
|
503
|
-
);
|
|
504
|
-
}
|
|
505
314
|
export interface DeleteApplicationVersionMessage {
|
|
506
315
|
ApplicationName: string | undefined;
|
|
507
316
|
VersionLabel: string | undefined;
|
|
508
317
|
DeleteSourceBundle?: boolean | undefined;
|
|
509
318
|
}
|
|
510
|
-
export declare class SourceBundleDeletionException extends __BaseException {
|
|
511
|
-
readonly name: "SourceBundleDeletionException";
|
|
512
|
-
readonly $fault: "client";
|
|
513
|
-
constructor(
|
|
514
|
-
opts: __ExceptionOptionType<SourceBundleDeletionException, __BaseException>
|
|
515
|
-
);
|
|
516
|
-
}
|
|
517
319
|
export interface DeleteConfigurationTemplateMessage {
|
|
518
320
|
ApplicationName: string | undefined;
|
|
519
321
|
TemplateName: string | undefined;
|
|
@@ -528,16 +330,6 @@ export interface DeletePlatformVersionRequest {
|
|
|
528
330
|
export interface DeletePlatformVersionResult {
|
|
529
331
|
PlatformSummary?: PlatformSummary | undefined;
|
|
530
332
|
}
|
|
531
|
-
export declare class PlatformVersionStillReferencedException extends __BaseException {
|
|
532
|
-
readonly name: "PlatformVersionStillReferencedException";
|
|
533
|
-
readonly $fault: "client";
|
|
534
|
-
constructor(
|
|
535
|
-
opts: __ExceptionOptionType<
|
|
536
|
-
PlatformVersionStillReferencedException,
|
|
537
|
-
__BaseException
|
|
538
|
-
>
|
|
539
|
-
);
|
|
540
|
-
}
|
|
541
333
|
export interface ResourceQuota {
|
|
542
334
|
Maximum?: number | undefined;
|
|
543
335
|
}
|
|
@@ -564,12 +356,6 @@ export interface OptionRestrictionRegex {
|
|
|
564
356
|
Pattern?: string | undefined;
|
|
565
357
|
Label?: string | undefined;
|
|
566
358
|
}
|
|
567
|
-
export declare const ConfigurationOptionValueType: {
|
|
568
|
-
readonly List: "List";
|
|
569
|
-
readonly Scalar: "Scalar";
|
|
570
|
-
};
|
|
571
|
-
export type ConfigurationOptionValueType =
|
|
572
|
-
(typeof ConfigurationOptionValueType)[keyof typeof ConfigurationOptionValueType];
|
|
573
359
|
export interface ConfigurationOptionDescription {
|
|
574
360
|
Namespace?: string | undefined;
|
|
575
361
|
Name?: string | undefined;
|
|
@@ -604,18 +390,6 @@ export interface DescribeConfigurationSettingsMessage {
|
|
|
604
390
|
TemplateName?: string | undefined;
|
|
605
391
|
EnvironmentName?: string | undefined;
|
|
606
392
|
}
|
|
607
|
-
export declare const EnvironmentHealthAttribute: {
|
|
608
|
-
readonly All: "All";
|
|
609
|
-
readonly ApplicationMetrics: "ApplicationMetrics";
|
|
610
|
-
readonly Causes: "Causes";
|
|
611
|
-
readonly Color: "Color";
|
|
612
|
-
readonly HealthStatus: "HealthStatus";
|
|
613
|
-
readonly InstancesHealth: "InstancesHealth";
|
|
614
|
-
readonly RefreshedAt: "RefreshedAt";
|
|
615
|
-
readonly Status: "Status";
|
|
616
|
-
};
|
|
617
|
-
export type EnvironmentHealthAttribute =
|
|
618
|
-
(typeof EnvironmentHealthAttribute)[keyof typeof EnvironmentHealthAttribute];
|
|
619
393
|
export interface DescribeEnvironmentHealthRequest {
|
|
620
394
|
EnvironmentName?: string | undefined;
|
|
621
395
|
EnvironmentId?: string | undefined;
|
|
@@ -641,29 +415,12 @@ export interface DescribeEnvironmentHealthResult {
|
|
|
641
415
|
InstancesHealth?: InstanceHealthSummary | undefined;
|
|
642
416
|
RefreshedAt?: Date | undefined;
|
|
643
417
|
}
|
|
644
|
-
export declare class InvalidRequestException extends __BaseException {
|
|
645
|
-
readonly name: "InvalidRequestException";
|
|
646
|
-
readonly $fault: "client";
|
|
647
|
-
constructor(
|
|
648
|
-
opts: __ExceptionOptionType<InvalidRequestException, __BaseException>
|
|
649
|
-
);
|
|
650
|
-
}
|
|
651
418
|
export interface DescribeEnvironmentManagedActionHistoryRequest {
|
|
652
419
|
EnvironmentId?: string | undefined;
|
|
653
420
|
EnvironmentName?: string | undefined;
|
|
654
421
|
NextToken?: string | undefined;
|
|
655
422
|
MaxItems?: number | undefined;
|
|
656
423
|
}
|
|
657
|
-
export declare const FailureType: {
|
|
658
|
-
readonly CancellationFailed: "CancellationFailed";
|
|
659
|
-
readonly InternalFailure: "InternalFailure";
|
|
660
|
-
readonly InvalidEnvironmentState: "InvalidEnvironmentState";
|
|
661
|
-
readonly PermissionsError: "PermissionsError";
|
|
662
|
-
readonly RollbackFailed: "RollbackFailed";
|
|
663
|
-
readonly RollbackSuccessful: "RollbackSuccessful";
|
|
664
|
-
readonly UpdateCancelled: "UpdateCancelled";
|
|
665
|
-
};
|
|
666
|
-
export type FailureType = (typeof FailureType)[keyof typeof FailureType];
|
|
667
424
|
export interface ManagedActionHistoryItem {
|
|
668
425
|
ActionId?: string | undefined;
|
|
669
426
|
ActionType?: ActionType | undefined;
|
|
@@ -739,15 +496,6 @@ export interface DescribeEnvironmentsMessage {
|
|
|
739
496
|
MaxRecords?: number | undefined;
|
|
740
497
|
NextToken?: string | undefined;
|
|
741
498
|
}
|
|
742
|
-
export declare const EventSeverity: {
|
|
743
|
-
readonly DEBUG: "DEBUG";
|
|
744
|
-
readonly ERROR: "ERROR";
|
|
745
|
-
readonly FATAL: "FATAL";
|
|
746
|
-
readonly INFO: "INFO";
|
|
747
|
-
readonly TRACE: "TRACE";
|
|
748
|
-
readonly WARN: "WARN";
|
|
749
|
-
};
|
|
750
|
-
export type EventSeverity = (typeof EventSeverity)[keyof typeof EventSeverity];
|
|
751
499
|
export interface DescribeEventsMessage {
|
|
752
500
|
ApplicationName?: string | undefined;
|
|
753
501
|
VersionLabel?: string | undefined;
|
|
@@ -777,21 +525,6 @@ export interface EventDescriptionsMessage {
|
|
|
777
525
|
Events?: EventDescription[] | undefined;
|
|
778
526
|
NextToken?: string | undefined;
|
|
779
527
|
}
|
|
780
|
-
export declare const InstancesHealthAttribute: {
|
|
781
|
-
readonly All: "All";
|
|
782
|
-
readonly ApplicationMetrics: "ApplicationMetrics";
|
|
783
|
-
readonly AvailabilityZone: "AvailabilityZone";
|
|
784
|
-
readonly Causes: "Causes";
|
|
785
|
-
readonly Color: "Color";
|
|
786
|
-
readonly Deployment: "Deployment";
|
|
787
|
-
readonly HealthStatus: "HealthStatus";
|
|
788
|
-
readonly InstanceType: "InstanceType";
|
|
789
|
-
readonly LaunchedAt: "LaunchedAt";
|
|
790
|
-
readonly RefreshedAt: "RefreshedAt";
|
|
791
|
-
readonly System: "System";
|
|
792
|
-
};
|
|
793
|
-
export type InstancesHealthAttribute =
|
|
794
|
-
(typeof InstancesHealthAttribute)[keyof typeof InstancesHealthAttribute];
|
|
795
528
|
export interface DescribeInstancesHealthRequest {
|
|
796
529
|
EnvironmentName?: string | undefined;
|
|
797
530
|
EnvironmentId?: string | undefined;
|
|
@@ -921,37 +654,14 @@ export interface ListPlatformVersionsResult {
|
|
|
921
654
|
export interface ListTagsForResourceMessage {
|
|
922
655
|
ResourceArn: string | undefined;
|
|
923
656
|
}
|
|
924
|
-
export declare class ResourceNotFoundException extends __BaseException {
|
|
925
|
-
readonly name: "ResourceNotFoundException";
|
|
926
|
-
readonly $fault: "client";
|
|
927
|
-
constructor(
|
|
928
|
-
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
929
|
-
);
|
|
930
|
-
}
|
|
931
657
|
export interface ResourceTagsDescriptionMessage {
|
|
932
658
|
ResourceArn?: string | undefined;
|
|
933
659
|
ResourceTags?: Tag[] | undefined;
|
|
934
660
|
}
|
|
935
|
-
export declare class ResourceTypeNotSupportedException extends __BaseException {
|
|
936
|
-
readonly name: "ResourceTypeNotSupportedException";
|
|
937
|
-
readonly $fault: "client";
|
|
938
|
-
constructor(
|
|
939
|
-
opts: __ExceptionOptionType<
|
|
940
|
-
ResourceTypeNotSupportedException,
|
|
941
|
-
__BaseException
|
|
942
|
-
>
|
|
943
|
-
);
|
|
944
|
-
}
|
|
945
661
|
export interface RebuildEnvironmentMessage {
|
|
946
662
|
EnvironmentId?: string | undefined;
|
|
947
663
|
EnvironmentName?: string | undefined;
|
|
948
664
|
}
|
|
949
|
-
export declare const EnvironmentInfoType: {
|
|
950
|
-
readonly bundle: "bundle";
|
|
951
|
-
readonly tail: "tail";
|
|
952
|
-
};
|
|
953
|
-
export type EnvironmentInfoType =
|
|
954
|
-
(typeof EnvironmentInfoType)[keyof typeof EnvironmentInfoType];
|
|
955
665
|
export interface RequestEnvironmentInfoMessage {
|
|
956
666
|
EnvironmentId?: string | undefined;
|
|
957
667
|
EnvironmentName?: string | undefined;
|
|
@@ -1021,24 +731,11 @@ export interface UpdateEnvironmentMessage {
|
|
|
1021
731
|
OptionSettings?: ConfigurationOptionSetting[] | undefined;
|
|
1022
732
|
OptionsToRemove?: OptionSpecification[] | undefined;
|
|
1023
733
|
}
|
|
1024
|
-
export declare class TooManyTagsException extends __BaseException {
|
|
1025
|
-
readonly name: "TooManyTagsException";
|
|
1026
|
-
readonly $fault: "client";
|
|
1027
|
-
constructor(
|
|
1028
|
-
opts: __ExceptionOptionType<TooManyTagsException, __BaseException>
|
|
1029
|
-
);
|
|
1030
|
-
}
|
|
1031
734
|
export interface UpdateTagsForResourceMessage {
|
|
1032
735
|
ResourceArn: string | undefined;
|
|
1033
736
|
TagsToAdd?: Tag[] | undefined;
|
|
1034
737
|
TagsToRemove?: string[] | undefined;
|
|
1035
738
|
}
|
|
1036
|
-
export declare const ValidationSeverity: {
|
|
1037
|
-
readonly error: "error";
|
|
1038
|
-
readonly warning: "warning";
|
|
1039
|
-
};
|
|
1040
|
-
export type ValidationSeverity =
|
|
1041
|
-
(typeof ValidationSeverity)[keyof typeof ValidationSeverity];
|
|
1042
739
|
export interface ValidationMessage {
|
|
1043
740
|
Message?: string | undefined;
|
|
1044
741
|
Severity?: ValidationSeverity | undefined;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-elastic-beanstalk",
|
|
3
3
|
"description": "AWS SDK for JavaScript Elastic Beanstalk Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.935.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-elastic-beanstalk",
|
|
@@ -20,38 +20,38 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
|
-
"@aws-sdk/core": "3.
|
|
24
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
23
|
+
"@aws-sdk/core": "3.935.0",
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.935.0",
|
|
25
25
|
"@aws-sdk/middleware-host-header": "3.930.0",
|
|
26
26
|
"@aws-sdk/middleware-logger": "3.930.0",
|
|
27
27
|
"@aws-sdk/middleware-recursion-detection": "3.933.0",
|
|
28
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
28
|
+
"@aws-sdk/middleware-user-agent": "3.935.0",
|
|
29
29
|
"@aws-sdk/region-config-resolver": "3.930.0",
|
|
30
30
|
"@aws-sdk/types": "3.930.0",
|
|
31
31
|
"@aws-sdk/util-endpoints": "3.930.0",
|
|
32
32
|
"@aws-sdk/util-user-agent-browser": "3.930.0",
|
|
33
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
33
|
+
"@aws-sdk/util-user-agent-node": "3.935.0",
|
|
34
34
|
"@smithy/config-resolver": "^4.4.3",
|
|
35
|
-
"@smithy/core": "^3.18.
|
|
35
|
+
"@smithy/core": "^3.18.5",
|
|
36
36
|
"@smithy/fetch-http-handler": "^5.3.6",
|
|
37
37
|
"@smithy/hash-node": "^4.2.5",
|
|
38
38
|
"@smithy/invalid-dependency": "^4.2.5",
|
|
39
39
|
"@smithy/middleware-content-length": "^4.2.5",
|
|
40
|
-
"@smithy/middleware-endpoint": "^4.3.
|
|
41
|
-
"@smithy/middleware-retry": "^4.4.
|
|
42
|
-
"@smithy/middleware-serde": "^4.2.
|
|
40
|
+
"@smithy/middleware-endpoint": "^4.3.12",
|
|
41
|
+
"@smithy/middleware-retry": "^4.4.12",
|
|
42
|
+
"@smithy/middleware-serde": "^4.2.6",
|
|
43
43
|
"@smithy/middleware-stack": "^4.2.5",
|
|
44
44
|
"@smithy/node-config-provider": "^4.3.5",
|
|
45
45
|
"@smithy/node-http-handler": "^4.4.5",
|
|
46
46
|
"@smithy/protocol-http": "^5.3.5",
|
|
47
|
-
"@smithy/smithy-client": "^4.9.
|
|
47
|
+
"@smithy/smithy-client": "^4.9.8",
|
|
48
48
|
"@smithy/types": "^4.9.0",
|
|
49
49
|
"@smithy/url-parser": "^4.2.5",
|
|
50
50
|
"@smithy/util-base64": "^4.3.0",
|
|
51
51
|
"@smithy/util-body-length-browser": "^4.2.0",
|
|
52
52
|
"@smithy/util-body-length-node": "^4.2.1",
|
|
53
|
-
"@smithy/util-defaults-mode-browser": "^4.3.
|
|
54
|
-
"@smithy/util-defaults-mode-node": "^4.2.
|
|
53
|
+
"@smithy/util-defaults-mode-browser": "^4.3.11",
|
|
54
|
+
"@smithy/util-defaults-mode-node": "^4.2.14",
|
|
55
55
|
"@smithy/util-endpoints": "^3.2.5",
|
|
56
56
|
"@smithy/util-middleware": "^4.2.5",
|
|
57
57
|
"@smithy/util-retry": "^4.2.5",
|
package/dist-es/models/index.js
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "./models_0";
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "./models_0";
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "./models_0";
|