@aws-sdk/client-elastic-beanstalk 3.301.0 → 3.306.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -14,22 +14,26 @@ export declare class InsufficientPrivilegesException extends __BaseException {
14
14
  >
15
15
  );
16
16
  }
17
- export declare enum ActionHistoryStatus {
18
- Completed = "Completed",
19
- Failed = "Failed",
20
- Unknown = "Unknown",
21
- }
22
- export declare enum ActionStatus {
23
- Pending = "Pending",
24
- Running = "Running",
25
- Scheduled = "Scheduled",
26
- Unknown = "Unknown",
27
- }
28
- export declare enum ActionType {
29
- InstanceRefresh = "InstanceRefresh",
30
- PlatformUpdate = "PlatformUpdate",
31
- Unknown = "Unknown",
32
- }
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];
33
37
  export interface MaxAgeRule {
34
38
  Enabled: boolean | undefined;
35
39
  MaxAgeInDays?: number;
@@ -90,14 +94,17 @@ export interface ApplicationResourceLifecycleDescriptionMessage {
90
94
  ApplicationName?: string;
91
95
  ResourceLifecycleConfig?: ApplicationResourceLifecycleConfig;
92
96
  }
93
- export declare enum SourceRepository {
94
- CodeCommit = "CodeCommit",
95
- S3 = "S3",
96
- }
97
- export declare enum SourceType {
98
- Git = "Git",
99
- Zip = "Zip",
100
- }
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];
101
108
  export interface SourceBuildInformation {
102
109
  SourceType: SourceType | string | undefined;
103
110
  SourceRepository: SourceRepository | string | undefined;
@@ -107,13 +114,15 @@ export interface S3Location {
107
114
  S3Bucket?: string;
108
115
  S3Key?: string;
109
116
  }
110
- export declare enum ApplicationVersionStatus {
111
- Building = "Building",
112
- Failed = "Failed",
113
- Processed = "Processed",
114
- Processing = "Processing",
115
- Unprocessed = "Unprocessed",
116
- }
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];
117
126
  export interface ApplicationVersionDescription {
118
127
  ApplicationVersionArn?: string;
119
128
  ApplicationName?: string;
@@ -191,23 +200,27 @@ export interface EnvironmentLink {
191
200
  LinkName?: string;
192
201
  EnvironmentName?: string;
193
202
  }
194
- export declare enum EnvironmentHealth {
195
- Green = "Green",
196
- Grey = "Grey",
197
- Red = "Red",
198
- Yellow = "Yellow",
199
- }
200
- export declare enum EnvironmentHealthStatus {
201
- Degraded = "Degraded",
202
- Info = "Info",
203
- NoData = "NoData",
204
- Ok = "Ok",
205
- Pending = "Pending",
206
- Severe = "Severe",
207
- Suspended = "Suspended",
208
- Unknown = "Unknown",
209
- Warning = "Warning",
210
- }
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];
211
224
  export interface Listener {
212
225
  Protocol?: string;
213
226
  Port?: number;
@@ -220,16 +233,18 @@ export interface LoadBalancerDescription {
220
233
  export interface EnvironmentResourcesDescription {
221
234
  LoadBalancer?: LoadBalancerDescription;
222
235
  }
223
- export declare enum EnvironmentStatus {
224
- Aborting = "Aborting",
225
- Launching = "Launching",
226
- LinkingFrom = "LinkingFrom",
227
- LinkingTo = "LinkingTo",
228
- Ready = "Ready",
229
- Terminated = "Terminated",
230
- Terminating = "Terminating",
231
- Updating = "Updating",
232
- }
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];
233
248
  export interface EnvironmentTier {
234
249
  Name?: string;
235
250
  Type?: string;
@@ -296,11 +311,12 @@ export declare class CodeBuildNotInServiceRegionException extends __BaseExceptio
296
311
  >
297
312
  );
298
313
  }
299
- export declare enum ComputeType {
300
- BUILD_GENERAL1_LARGE = "BUILD_GENERAL1_LARGE",
301
- BUILD_GENERAL1_MEDIUM = "BUILD_GENERAL1_MEDIUM",
302
- BUILD_GENERAL1_SMALL = "BUILD_GENERAL1_SMALL",
303
- }
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];
304
320
  export interface BuildConfiguration {
305
321
  ArtifactName?: string;
306
322
  CodeBuildServiceRole: string | undefined;
@@ -339,11 +355,13 @@ export declare class TooManyApplicationVersionsException extends __BaseException
339
355
  >
340
356
  );
341
357
  }
342
- export declare enum ConfigurationDeploymentStatus {
343
- deployed = "deployed",
344
- failed = "failed",
345
- pending = "pending",
346
- }
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];
347
365
  export interface ConfigurationOptionSetting {
348
366
  ResourceName?: string;
349
367
  Namespace?: string;
@@ -426,13 +444,15 @@ export interface CreatePlatformVersionRequest {
426
444
  export interface Builder {
427
445
  ARN?: string;
428
446
  }
429
- export declare enum PlatformStatus {
430
- Creating = "Creating",
431
- Deleted = "Deleted",
432
- Deleting = "Deleting",
433
- Failed = "Failed",
434
- Ready = "Ready",
435
- }
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];
436
456
  export interface PlatformSummary {
437
457
  PlatformArn?: string;
438
458
  PlatformOwner?: string;
@@ -544,10 +564,12 @@ export interface OptionRestrictionRegex {
544
564
  Pattern?: string;
545
565
  Label?: string;
546
566
  }
547
- export declare enum ConfigurationOptionValueType {
548
- List = "List",
549
- Scalar = "Scalar",
550
- }
567
+ export declare const ConfigurationOptionValueType: {
568
+ readonly List: "List";
569
+ readonly Scalar: "Scalar";
570
+ };
571
+ export type ConfigurationOptionValueType =
572
+ (typeof ConfigurationOptionValueType)[keyof typeof ConfigurationOptionValueType];
551
573
  export interface ConfigurationOptionDescription {
552
574
  Namespace?: string;
553
575
  Name?: string;
@@ -582,16 +604,18 @@ export interface DescribeConfigurationSettingsMessage {
582
604
  TemplateName?: string;
583
605
  EnvironmentName?: string;
584
606
  }
585
- export declare enum EnvironmentHealthAttribute {
586
- All = "All",
587
- ApplicationMetrics = "ApplicationMetrics",
588
- Causes = "Causes",
589
- Color = "Color",
590
- HealthStatus = "HealthStatus",
591
- InstancesHealth = "InstancesHealth",
592
- RefreshedAt = "RefreshedAt",
593
- Status = "Status",
594
- }
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];
595
619
  export interface DescribeEnvironmentHealthRequest {
596
620
  EnvironmentName?: string;
597
621
  EnvironmentId?: string;
@@ -630,15 +654,16 @@ export interface DescribeEnvironmentManagedActionHistoryRequest {
630
654
  NextToken?: string;
631
655
  MaxItems?: number;
632
656
  }
633
- export declare enum FailureType {
634
- CancellationFailed = "CancellationFailed",
635
- InternalFailure = "InternalFailure",
636
- InvalidEnvironmentState = "InvalidEnvironmentState",
637
- PermissionsError = "PermissionsError",
638
- RollbackFailed = "RollbackFailed",
639
- RollbackSuccessful = "RollbackSuccessful",
640
- UpdateCancelled = "UpdateCancelled",
641
- }
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];
642
667
  export interface ManagedActionHistoryItem {
643
668
  ActionId?: string;
644
669
  ActionType?: ActionType | string;
@@ -714,14 +739,15 @@ export interface DescribeEnvironmentsMessage {
714
739
  MaxRecords?: number;
715
740
  NextToken?: string;
716
741
  }
717
- export declare enum EventSeverity {
718
- DEBUG = "DEBUG",
719
- ERROR = "ERROR",
720
- FATAL = "FATAL",
721
- INFO = "INFO",
722
- TRACE = "TRACE",
723
- WARN = "WARN",
724
- }
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];
725
751
  export interface DescribeEventsMessage {
726
752
  ApplicationName?: string;
727
753
  VersionLabel?: string;
@@ -751,19 +777,21 @@ export interface EventDescriptionsMessage {
751
777
  Events?: EventDescription[];
752
778
  NextToken?: string;
753
779
  }
754
- export declare enum InstancesHealthAttribute {
755
- All = "All",
756
- ApplicationMetrics = "ApplicationMetrics",
757
- AvailabilityZone = "AvailabilityZone",
758
- Causes = "Causes",
759
- Color = "Color",
760
- Deployment = "Deployment",
761
- HealthStatus = "HealthStatus",
762
- InstanceType = "InstanceType",
763
- LaunchedAt = "LaunchedAt",
764
- RefreshedAt = "RefreshedAt",
765
- System = "System",
766
- }
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];
767
795
  export interface DescribeInstancesHealthRequest {
768
796
  EnvironmentName?: string;
769
797
  EnvironmentId?: string;
@@ -918,10 +946,12 @@ export interface RebuildEnvironmentMessage {
918
946
  EnvironmentId?: string;
919
947
  EnvironmentName?: string;
920
948
  }
921
- export declare enum EnvironmentInfoType {
922
- bundle = "bundle",
923
- tail = "tail",
924
- }
949
+ export declare const EnvironmentInfoType: {
950
+ readonly bundle: "bundle";
951
+ readonly tail: "tail";
952
+ };
953
+ export type EnvironmentInfoType =
954
+ (typeof EnvironmentInfoType)[keyof typeof EnvironmentInfoType];
925
955
  export interface RequestEnvironmentInfoMessage {
926
956
  EnvironmentId?: string;
927
957
  EnvironmentName?: string;
@@ -1003,10 +1033,12 @@ export interface UpdateTagsForResourceMessage {
1003
1033
  TagsToAdd?: Tag[];
1004
1034
  TagsToRemove?: string[];
1005
1035
  }
1006
- export declare enum ValidationSeverity {
1007
- error = "error",
1008
- warning = "warning",
1009
- }
1036
+ export declare const ValidationSeverity: {
1037
+ readonly error: "error";
1038
+ readonly warning: "warning";
1039
+ };
1040
+ export type ValidationSeverity =
1041
+ (typeof ValidationSeverity)[keyof typeof ValidationSeverity];
1010
1042
  export interface ValidationMessage {
1011
1043
  Message?: string;
1012
1044
  Severity?: ValidationSeverity | string;
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.301.0",
4
+ "version": "3.306.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "tsc -p tsconfig.cjs.json",
@@ -21,44 +21,44 @@
21
21
  "dependencies": {
22
22
  "@aws-crypto/sha256-browser": "3.0.0",
23
23
  "@aws-crypto/sha256-js": "3.0.0",
24
- "@aws-sdk/client-sts": "3.301.0",
25
- "@aws-sdk/config-resolver": "3.300.0",
26
- "@aws-sdk/credential-provider-node": "3.301.0",
27
- "@aws-sdk/fetch-http-handler": "3.296.0",
28
- "@aws-sdk/hash-node": "3.296.0",
29
- "@aws-sdk/invalid-dependency": "3.296.0",
30
- "@aws-sdk/middleware-content-length": "3.296.0",
31
- "@aws-sdk/middleware-endpoint": "3.299.0",
32
- "@aws-sdk/middleware-host-header": "3.296.0",
33
- "@aws-sdk/middleware-logger": "3.296.0",
34
- "@aws-sdk/middleware-recursion-detection": "3.296.0",
35
- "@aws-sdk/middleware-retry": "3.300.0",
36
- "@aws-sdk/middleware-serde": "3.296.0",
37
- "@aws-sdk/middleware-signing": "3.299.0",
38
- "@aws-sdk/middleware-stack": "3.296.0",
39
- "@aws-sdk/middleware-user-agent": "3.299.0",
40
- "@aws-sdk/node-config-provider": "3.300.0",
41
- "@aws-sdk/node-http-handler": "3.296.0",
42
- "@aws-sdk/protocol-http": "3.296.0",
43
- "@aws-sdk/smithy-client": "3.296.0",
44
- "@aws-sdk/types": "3.296.0",
45
- "@aws-sdk/url-parser": "3.296.0",
46
- "@aws-sdk/util-base64": "3.295.0",
47
- "@aws-sdk/util-body-length-browser": "3.295.0",
48
- "@aws-sdk/util-body-length-node": "3.295.0",
49
- "@aws-sdk/util-defaults-mode-browser": "3.296.0",
50
- "@aws-sdk/util-defaults-mode-node": "3.300.0",
51
- "@aws-sdk/util-endpoints": "3.296.0",
52
- "@aws-sdk/util-retry": "3.296.0",
53
- "@aws-sdk/util-user-agent-browser": "3.299.0",
54
- "@aws-sdk/util-user-agent-node": "3.300.0",
55
- "@aws-sdk/util-utf8": "3.295.0",
56
- "@aws-sdk/util-waiter": "3.296.0",
24
+ "@aws-sdk/client-sts": "3.306.0",
25
+ "@aws-sdk/config-resolver": "3.306.0",
26
+ "@aws-sdk/credential-provider-node": "3.306.0",
27
+ "@aws-sdk/fetch-http-handler": "3.306.0",
28
+ "@aws-sdk/hash-node": "3.306.0",
29
+ "@aws-sdk/invalid-dependency": "3.306.0",
30
+ "@aws-sdk/middleware-content-length": "3.306.0",
31
+ "@aws-sdk/middleware-endpoint": "3.306.0",
32
+ "@aws-sdk/middleware-host-header": "3.306.0",
33
+ "@aws-sdk/middleware-logger": "3.306.0",
34
+ "@aws-sdk/middleware-recursion-detection": "3.306.0",
35
+ "@aws-sdk/middleware-retry": "3.306.0",
36
+ "@aws-sdk/middleware-serde": "3.306.0",
37
+ "@aws-sdk/middleware-signing": "3.306.0",
38
+ "@aws-sdk/middleware-stack": "3.306.0",
39
+ "@aws-sdk/middleware-user-agent": "3.306.0",
40
+ "@aws-sdk/node-config-provider": "3.306.0",
41
+ "@aws-sdk/node-http-handler": "3.306.0",
42
+ "@aws-sdk/protocol-http": "3.306.0",
43
+ "@aws-sdk/smithy-client": "3.306.0",
44
+ "@aws-sdk/types": "3.306.0",
45
+ "@aws-sdk/url-parser": "3.306.0",
46
+ "@aws-sdk/util-base64": "3.303.0",
47
+ "@aws-sdk/util-body-length-browser": "3.303.0",
48
+ "@aws-sdk/util-body-length-node": "3.303.0",
49
+ "@aws-sdk/util-defaults-mode-browser": "3.306.0",
50
+ "@aws-sdk/util-defaults-mode-node": "3.306.0",
51
+ "@aws-sdk/util-endpoints": "3.306.0",
52
+ "@aws-sdk/util-retry": "3.306.0",
53
+ "@aws-sdk/util-user-agent-browser": "3.306.0",
54
+ "@aws-sdk/util-user-agent-node": "3.306.0",
55
+ "@aws-sdk/util-utf8": "3.303.0",
56
+ "@aws-sdk/util-waiter": "3.306.0",
57
57
  "fast-xml-parser": "4.1.2",
58
58
  "tslib": "^2.5.0"
59
59
  },
60
60
  "devDependencies": {
61
- "@aws-sdk/service-client-documentation-generator": "3.295.0",
61
+ "@aws-sdk/service-client-documentation-generator": "3.303.0",
62
62
  "@tsconfig/node14": "1.0.3",
63
63
  "@types/node": "^14.14.31",
64
64
  "concurrently": "7.0.0",