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

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -31,29 +31,44 @@ export declare class InsufficientPrivilegesException extends __BaseException {
31
31
  }
32
32
  /**
33
33
  * @public
34
+ * @enum
34
35
  */
35
- export declare enum ActionHistoryStatus {
36
- Completed = "Completed",
37
- Failed = "Failed",
38
- Unknown = "Unknown"
39
- }
36
+ export declare const ActionHistoryStatus: {
37
+ readonly Completed: "Completed";
38
+ readonly Failed: "Failed";
39
+ readonly Unknown: "Unknown";
40
+ };
40
41
  /**
41
42
  * @public
42
43
  */
43
- export declare enum ActionStatus {
44
- Pending = "Pending",
45
- Running = "Running",
46
- Scheduled = "Scheduled",
47
- Unknown = "Unknown"
48
- }
44
+ export type ActionHistoryStatus = (typeof ActionHistoryStatus)[keyof typeof ActionHistoryStatus];
49
45
  /**
50
46
  * @public
47
+ * @enum
51
48
  */
52
- export declare enum ActionType {
53
- InstanceRefresh = "InstanceRefresh",
54
- PlatformUpdate = "PlatformUpdate",
55
- Unknown = "Unknown"
56
- }
49
+ export declare const ActionStatus: {
50
+ readonly Pending: "Pending";
51
+ readonly Running: "Running";
52
+ readonly Scheduled: "Scheduled";
53
+ readonly Unknown: "Unknown";
54
+ };
55
+ /**
56
+ * @public
57
+ */
58
+ export type ActionStatus = (typeof ActionStatus)[keyof typeof ActionStatus];
59
+ /**
60
+ * @public
61
+ * @enum
62
+ */
63
+ export declare const ActionType: {
64
+ readonly InstanceRefresh: "InstanceRefresh";
65
+ readonly PlatformUpdate: "PlatformUpdate";
66
+ readonly Unknown: "Unknown";
67
+ };
68
+ /**
69
+ * @public
70
+ */
71
+ export type ActionType = (typeof ActionType)[keyof typeof ActionType];
57
72
  /**
58
73
  * @public
59
74
  * <p>A lifecycle rule that deletes application versions after the specified number of
@@ -317,18 +332,28 @@ export interface ApplicationResourceLifecycleDescriptionMessage {
317
332
  }
318
333
  /**
319
334
  * @public
335
+ * @enum
320
336
  */
321
- export declare enum SourceRepository {
322
- CodeCommit = "CodeCommit",
323
- S3 = "S3"
324
- }
337
+ export declare const SourceRepository: {
338
+ readonly CodeCommit: "CodeCommit";
339
+ readonly S3: "S3";
340
+ };
325
341
  /**
326
342
  * @public
327
343
  */
328
- export declare enum SourceType {
329
- Git = "Git",
330
- Zip = "Zip"
331
- }
344
+ export type SourceRepository = (typeof SourceRepository)[keyof typeof SourceRepository];
345
+ /**
346
+ * @public
347
+ * @enum
348
+ */
349
+ export declare const SourceType: {
350
+ readonly Git: "Git";
351
+ readonly Zip: "Zip";
352
+ };
353
+ /**
354
+ * @public
355
+ */
356
+ export type SourceType = (typeof SourceType)[keyof typeof SourceType];
332
357
  /**
333
358
  * @public
334
359
  * <p>Location of the source code for an application version.</p>
@@ -402,14 +427,19 @@ export interface S3Location {
402
427
  }
403
428
  /**
404
429
  * @public
430
+ * @enum
405
431
  */
406
- export declare enum ApplicationVersionStatus {
407
- Building = "Building",
408
- Failed = "Failed",
409
- Processed = "Processed",
410
- Processing = "Processing",
411
- Unprocessed = "Unprocessed"
412
- }
432
+ export declare const ApplicationVersionStatus: {
433
+ readonly Building: "Building";
434
+ readonly Failed: "Failed";
435
+ readonly Processed: "Processed";
436
+ readonly Processing: "Processing";
437
+ readonly Unprocessed: "Unprocessed";
438
+ };
439
+ /**
440
+ * @public
441
+ */
442
+ export type ApplicationVersionStatus = (typeof ApplicationVersionStatus)[keyof typeof ApplicationVersionStatus];
413
443
  /**
414
444
  * @public
415
445
  * <p>Describes the properties of an application version.</p>
@@ -694,27 +724,37 @@ export interface EnvironmentLink {
694
724
  }
695
725
  /**
696
726
  * @public
727
+ * @enum
697
728
  */
698
- export declare enum EnvironmentHealth {
699
- Green = "Green",
700
- Grey = "Grey",
701
- Red = "Red",
702
- Yellow = "Yellow"
703
- }
729
+ export declare const EnvironmentHealth: {
730
+ readonly Green: "Green";
731
+ readonly Grey: "Grey";
732
+ readonly Red: "Red";
733
+ readonly Yellow: "Yellow";
734
+ };
704
735
  /**
705
736
  * @public
706
737
  */
707
- export declare enum EnvironmentHealthStatus {
708
- Degraded = "Degraded",
709
- Info = "Info",
710
- NoData = "NoData",
711
- Ok = "Ok",
712
- Pending = "Pending",
713
- Severe = "Severe",
714
- Suspended = "Suspended",
715
- Unknown = "Unknown",
716
- Warning = "Warning"
717
- }
738
+ export type EnvironmentHealth = (typeof EnvironmentHealth)[keyof typeof EnvironmentHealth];
739
+ /**
740
+ * @public
741
+ * @enum
742
+ */
743
+ export declare const EnvironmentHealthStatus: {
744
+ readonly Degraded: "Degraded";
745
+ readonly Info: "Info";
746
+ readonly NoData: "NoData";
747
+ readonly Ok: "Ok";
748
+ readonly Pending: "Pending";
749
+ readonly Severe: "Severe";
750
+ readonly Suspended: "Suspended";
751
+ readonly Unknown: "Unknown";
752
+ readonly Warning: "Warning";
753
+ };
754
+ /**
755
+ * @public
756
+ */
757
+ export type EnvironmentHealthStatus = (typeof EnvironmentHealthStatus)[keyof typeof EnvironmentHealthStatus];
718
758
  /**
719
759
  * @public
720
760
  * <p>Describes the properties of a Listener for the LoadBalancer.</p>
@@ -760,17 +800,22 @@ export interface EnvironmentResourcesDescription {
760
800
  }
761
801
  /**
762
802
  * @public
803
+ * @enum
763
804
  */
764
- export declare enum EnvironmentStatus {
765
- Aborting = "Aborting",
766
- Launching = "Launching",
767
- LinkingFrom = "LinkingFrom",
768
- LinkingTo = "LinkingTo",
769
- Ready = "Ready",
770
- Terminated = "Terminated",
771
- Terminating = "Terminating",
772
- Updating = "Updating"
773
- }
805
+ export declare const EnvironmentStatus: {
806
+ readonly Aborting: "Aborting";
807
+ readonly Launching: "Launching";
808
+ readonly LinkingFrom: "LinkingFrom";
809
+ readonly LinkingTo: "LinkingTo";
810
+ readonly Ready: "Ready";
811
+ readonly Terminated: "Terminated";
812
+ readonly Terminating: "Terminating";
813
+ readonly Updating: "Updating";
814
+ };
815
+ /**
816
+ * @public
817
+ */
818
+ export type EnvironmentStatus = (typeof EnvironmentStatus)[keyof typeof EnvironmentStatus];
774
819
  /**
775
820
  * @public
776
821
  * <p>Describes the properties of an environment tier</p>
@@ -1057,12 +1102,17 @@ export declare class CodeBuildNotInServiceRegionException extends __BaseExceptio
1057
1102
  }
1058
1103
  /**
1059
1104
  * @public
1105
+ * @enum
1060
1106
  */
1061
- export declare enum ComputeType {
1062
- BUILD_GENERAL1_LARGE = "BUILD_GENERAL1_LARGE",
1063
- BUILD_GENERAL1_MEDIUM = "BUILD_GENERAL1_MEDIUM",
1064
- BUILD_GENERAL1_SMALL = "BUILD_GENERAL1_SMALL"
1065
- }
1107
+ export declare const ComputeType: {
1108
+ readonly BUILD_GENERAL1_LARGE: "BUILD_GENERAL1_LARGE";
1109
+ readonly BUILD_GENERAL1_MEDIUM: "BUILD_GENERAL1_MEDIUM";
1110
+ readonly BUILD_GENERAL1_SMALL: "BUILD_GENERAL1_SMALL";
1111
+ };
1112
+ /**
1113
+ * @public
1114
+ */
1115
+ export type ComputeType = (typeof ComputeType)[keyof typeof ComputeType];
1066
1116
  /**
1067
1117
  * @public
1068
1118
  * <p>Settings for an AWS CodeBuild build.</p>
@@ -1220,12 +1270,17 @@ export declare class TooManyApplicationVersionsException extends __BaseException
1220
1270
  }
1221
1271
  /**
1222
1272
  * @public
1273
+ * @enum
1223
1274
  */
1224
- export declare enum ConfigurationDeploymentStatus {
1225
- deployed = "deployed",
1226
- failed = "failed",
1227
- pending = "pending"
1228
- }
1275
+ export declare const ConfigurationDeploymentStatus: {
1276
+ readonly deployed: "deployed";
1277
+ readonly failed: "failed";
1278
+ readonly pending: "pending";
1279
+ };
1280
+ /**
1281
+ * @public
1282
+ */
1283
+ export type ConfigurationDeploymentStatus = (typeof ConfigurationDeploymentStatus)[keyof typeof ConfigurationDeploymentStatus];
1229
1284
  /**
1230
1285
  * @public
1231
1286
  * <p>A specification identifying an individual configuration option along with its current
@@ -1600,14 +1655,19 @@ export interface Builder {
1600
1655
  }
1601
1656
  /**
1602
1657
  * @public
1658
+ * @enum
1603
1659
  */
1604
- export declare enum PlatformStatus {
1605
- Creating = "Creating",
1606
- Deleted = "Deleted",
1607
- Deleting = "Deleting",
1608
- Failed = "Failed",
1609
- Ready = "Ready"
1610
- }
1660
+ export declare const PlatformStatus: {
1661
+ readonly Creating: "Creating";
1662
+ readonly Deleted: "Deleted";
1663
+ readonly Deleting: "Deleting";
1664
+ readonly Failed: "Failed";
1665
+ readonly Ready: "Ready";
1666
+ };
1667
+ /**
1668
+ * @public
1669
+ */
1670
+ export type PlatformStatus = (typeof PlatformStatus)[keyof typeof PlatformStatus];
1611
1671
  /**
1612
1672
  * @public
1613
1673
  * <p>Summary information about a platform version.</p>
@@ -1940,11 +2000,16 @@ export interface OptionRestrictionRegex {
1940
2000
  }
1941
2001
  /**
1942
2002
  * @public
2003
+ * @enum
1943
2004
  */
1944
- export declare enum ConfigurationOptionValueType {
1945
- List = "List",
1946
- Scalar = "Scalar"
1947
- }
2005
+ export declare const ConfigurationOptionValueType: {
2006
+ readonly List: "List";
2007
+ readonly Scalar: "Scalar";
2008
+ };
2009
+ /**
2010
+ * @public
2011
+ */
2012
+ export type ConfigurationOptionValueType = (typeof ConfigurationOptionValueType)[keyof typeof ConfigurationOptionValueType];
1948
2013
  /**
1949
2014
  * @public
1950
2015
  * <p>Describes the possible values for a configuration option.</p>
@@ -2151,17 +2216,22 @@ export interface DescribeConfigurationSettingsMessage {
2151
2216
  }
2152
2217
  /**
2153
2218
  * @public
2219
+ * @enum
2154
2220
  */
2155
- export declare enum EnvironmentHealthAttribute {
2156
- All = "All",
2157
- ApplicationMetrics = "ApplicationMetrics",
2158
- Causes = "Causes",
2159
- Color = "Color",
2160
- HealthStatus = "HealthStatus",
2161
- InstancesHealth = "InstancesHealth",
2162
- RefreshedAt = "RefreshedAt",
2163
- Status = "Status"
2164
- }
2221
+ export declare const EnvironmentHealthAttribute: {
2222
+ readonly All: "All";
2223
+ readonly ApplicationMetrics: "ApplicationMetrics";
2224
+ readonly Causes: "Causes";
2225
+ readonly Color: "Color";
2226
+ readonly HealthStatus: "HealthStatus";
2227
+ readonly InstancesHealth: "InstancesHealth";
2228
+ readonly RefreshedAt: "RefreshedAt";
2229
+ readonly Status: "Status";
2230
+ };
2231
+ /**
2232
+ * @public
2233
+ */
2234
+ export type EnvironmentHealthAttribute = (typeof EnvironmentHealthAttribute)[keyof typeof EnvironmentHealthAttribute];
2165
2235
  /**
2166
2236
  * @public
2167
2237
  * <p>See the example below to learn how to create a request body.</p>
@@ -2317,16 +2387,21 @@ export interface DescribeEnvironmentManagedActionHistoryRequest {
2317
2387
  }
2318
2388
  /**
2319
2389
  * @public
2390
+ * @enum
2320
2391
  */
2321
- export declare enum FailureType {
2322
- CancellationFailed = "CancellationFailed",
2323
- InternalFailure = "InternalFailure",
2324
- InvalidEnvironmentState = "InvalidEnvironmentState",
2325
- PermissionsError = "PermissionsError",
2326
- RollbackFailed = "RollbackFailed",
2327
- RollbackSuccessful = "RollbackSuccessful",
2328
- UpdateCancelled = "UpdateCancelled"
2329
- }
2392
+ export declare const FailureType: {
2393
+ readonly CancellationFailed: "CancellationFailed";
2394
+ readonly InternalFailure: "InternalFailure";
2395
+ readonly InvalidEnvironmentState: "InvalidEnvironmentState";
2396
+ readonly PermissionsError: "PermissionsError";
2397
+ readonly RollbackFailed: "RollbackFailed";
2398
+ readonly RollbackSuccessful: "RollbackSuccessful";
2399
+ readonly UpdateCancelled: "UpdateCancelled";
2400
+ };
2401
+ /**
2402
+ * @public
2403
+ */
2404
+ export type FailureType = (typeof FailureType)[keyof typeof FailureType];
2330
2405
  /**
2331
2406
  * @public
2332
2407
  * <p>The record of a completed or failed managed action.</p>
@@ -2623,15 +2698,20 @@ export interface DescribeEnvironmentsMessage {
2623
2698
  }
2624
2699
  /**
2625
2700
  * @public
2701
+ * @enum
2626
2702
  */
2627
- export declare enum EventSeverity {
2628
- DEBUG = "DEBUG",
2629
- ERROR = "ERROR",
2630
- FATAL = "FATAL",
2631
- INFO = "INFO",
2632
- TRACE = "TRACE",
2633
- WARN = "WARN"
2634
- }
2703
+ export declare const EventSeverity: {
2704
+ readonly DEBUG: "DEBUG";
2705
+ readonly ERROR: "ERROR";
2706
+ readonly FATAL: "FATAL";
2707
+ readonly INFO: "INFO";
2708
+ readonly TRACE: "TRACE";
2709
+ readonly WARN: "WARN";
2710
+ };
2711
+ /**
2712
+ * @public
2713
+ */
2714
+ export type EventSeverity = (typeof EventSeverity)[keyof typeof EventSeverity];
2635
2715
  /**
2636
2716
  * @public
2637
2717
  * <p>Request to retrieve a list of events for an environment.</p>
@@ -2756,20 +2836,25 @@ export interface EventDescriptionsMessage {
2756
2836
  }
2757
2837
  /**
2758
2838
  * @public
2839
+ * @enum
2759
2840
  */
2760
- export declare enum InstancesHealthAttribute {
2761
- All = "All",
2762
- ApplicationMetrics = "ApplicationMetrics",
2763
- AvailabilityZone = "AvailabilityZone",
2764
- Causes = "Causes",
2765
- Color = "Color",
2766
- Deployment = "Deployment",
2767
- HealthStatus = "HealthStatus",
2768
- InstanceType = "InstanceType",
2769
- LaunchedAt = "LaunchedAt",
2770
- RefreshedAt = "RefreshedAt",
2771
- System = "System"
2772
- }
2841
+ export declare const InstancesHealthAttribute: {
2842
+ readonly All: "All";
2843
+ readonly ApplicationMetrics: "ApplicationMetrics";
2844
+ readonly AvailabilityZone: "AvailabilityZone";
2845
+ readonly Causes: "Causes";
2846
+ readonly Color: "Color";
2847
+ readonly Deployment: "Deployment";
2848
+ readonly HealthStatus: "HealthStatus";
2849
+ readonly InstanceType: "InstanceType";
2850
+ readonly LaunchedAt: "LaunchedAt";
2851
+ readonly RefreshedAt: "RefreshedAt";
2852
+ readonly System: "System";
2853
+ };
2854
+ /**
2855
+ * @public
2856
+ */
2857
+ export type InstancesHealthAttribute = (typeof InstancesHealthAttribute)[keyof typeof InstancesHealthAttribute];
2773
2858
  /**
2774
2859
  * @public
2775
2860
  * <p>Parameters for a call to <code>DescribeInstancesHealth</code>.</p>
@@ -3489,11 +3574,16 @@ export interface RebuildEnvironmentMessage {
3489
3574
  }
3490
3575
  /**
3491
3576
  * @public
3577
+ * @enum
3492
3578
  */
3493
- export declare enum EnvironmentInfoType {
3494
- bundle = "bundle",
3495
- tail = "tail"
3496
- }
3579
+ export declare const EnvironmentInfoType: {
3580
+ readonly bundle: "bundle";
3581
+ readonly tail: "tail";
3582
+ };
3583
+ /**
3584
+ * @public
3585
+ */
3586
+ export type EnvironmentInfoType = (typeof EnvironmentInfoType)[keyof typeof EnvironmentInfoType];
3497
3587
  /**
3498
3588
  * @public
3499
3589
  * <p>Request to retrieve logs from an environment and store them in your Elastic Beanstalk
@@ -3895,11 +3985,16 @@ export interface UpdateTagsForResourceMessage {
3895
3985
  }
3896
3986
  /**
3897
3987
  * @public
3988
+ * @enum
3898
3989
  */
3899
- export declare enum ValidationSeverity {
3900
- error = "error",
3901
- warning = "warning"
3902
- }
3990
+ export declare const ValidationSeverity: {
3991
+ readonly error: "error";
3992
+ readonly warning: "warning";
3993
+ };
3994
+ /**
3995
+ * @public
3996
+ */
3997
+ export type ValidationSeverity = (typeof ValidationSeverity)[keyof typeof ValidationSeverity];
3903
3998
  /**
3904
3999
  * @public
3905
4000
  * <p>An error or warning for a desired configuration option value.</p>