@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
|
@@ -6,5 +6,7 @@ export { ElasticBeanstalkExtensionConfiguration } from "./extensionConfiguration
|
|
|
6
6
|
export * from "./commands";
|
|
7
7
|
export * from "./pagination";
|
|
8
8
|
export * from "./waiters";
|
|
9
|
-
export * from "./models";
|
|
9
|
+
export * from "./models/enums";
|
|
10
|
+
export * from "./models/errors";
|
|
11
|
+
export * from "./models/models_0";
|
|
10
12
|
export { ElasticBeanstalkSyntheticServiceException } from "./models/ElasticBeanstalkSyntheticServiceException";
|
|
@@ -0,0 +1,159 @@
|
|
|
1
|
+
export declare const ActionHistoryStatus: {
|
|
2
|
+
readonly Completed: "Completed";
|
|
3
|
+
readonly Failed: "Failed";
|
|
4
|
+
readonly Unknown: "Unknown";
|
|
5
|
+
};
|
|
6
|
+
export type ActionHistoryStatus =
|
|
7
|
+
(typeof ActionHistoryStatus)[keyof typeof ActionHistoryStatus];
|
|
8
|
+
export declare const ActionStatus: {
|
|
9
|
+
readonly Pending: "Pending";
|
|
10
|
+
readonly Running: "Running";
|
|
11
|
+
readonly Scheduled: "Scheduled";
|
|
12
|
+
readonly Unknown: "Unknown";
|
|
13
|
+
};
|
|
14
|
+
export type ActionStatus = (typeof ActionStatus)[keyof typeof ActionStatus];
|
|
15
|
+
export declare const ActionType: {
|
|
16
|
+
readonly InstanceRefresh: "InstanceRefresh";
|
|
17
|
+
readonly PlatformUpdate: "PlatformUpdate";
|
|
18
|
+
readonly Unknown: "Unknown";
|
|
19
|
+
};
|
|
20
|
+
export type ActionType = (typeof ActionType)[keyof typeof ActionType];
|
|
21
|
+
export declare const SourceRepository: {
|
|
22
|
+
readonly CodeCommit: "CodeCommit";
|
|
23
|
+
readonly S3: "S3";
|
|
24
|
+
};
|
|
25
|
+
export type SourceRepository =
|
|
26
|
+
(typeof SourceRepository)[keyof typeof SourceRepository];
|
|
27
|
+
export declare const SourceType: {
|
|
28
|
+
readonly Git: "Git";
|
|
29
|
+
readonly Zip: "Zip";
|
|
30
|
+
};
|
|
31
|
+
export type SourceType = (typeof SourceType)[keyof typeof SourceType];
|
|
32
|
+
export declare const ApplicationVersionStatus: {
|
|
33
|
+
readonly Building: "Building";
|
|
34
|
+
readonly Failed: "Failed";
|
|
35
|
+
readonly Processed: "Processed";
|
|
36
|
+
readonly Processing: "Processing";
|
|
37
|
+
readonly Unprocessed: "Unprocessed";
|
|
38
|
+
};
|
|
39
|
+
export type ApplicationVersionStatus =
|
|
40
|
+
(typeof ApplicationVersionStatus)[keyof typeof ApplicationVersionStatus];
|
|
41
|
+
export declare const EnvironmentHealth: {
|
|
42
|
+
readonly Green: "Green";
|
|
43
|
+
readonly Grey: "Grey";
|
|
44
|
+
readonly Red: "Red";
|
|
45
|
+
readonly Yellow: "Yellow";
|
|
46
|
+
};
|
|
47
|
+
export type EnvironmentHealth =
|
|
48
|
+
(typeof EnvironmentHealth)[keyof typeof EnvironmentHealth];
|
|
49
|
+
export declare const EnvironmentHealthStatus: {
|
|
50
|
+
readonly Degraded: "Degraded";
|
|
51
|
+
readonly Info: "Info";
|
|
52
|
+
readonly NoData: "NoData";
|
|
53
|
+
readonly Ok: "Ok";
|
|
54
|
+
readonly Pending: "Pending";
|
|
55
|
+
readonly Severe: "Severe";
|
|
56
|
+
readonly Suspended: "Suspended";
|
|
57
|
+
readonly Unknown: "Unknown";
|
|
58
|
+
readonly Warning: "Warning";
|
|
59
|
+
};
|
|
60
|
+
export type EnvironmentHealthStatus =
|
|
61
|
+
(typeof EnvironmentHealthStatus)[keyof typeof EnvironmentHealthStatus];
|
|
62
|
+
export declare const EnvironmentStatus: {
|
|
63
|
+
readonly Aborting: "Aborting";
|
|
64
|
+
readonly Launching: "Launching";
|
|
65
|
+
readonly LinkingFrom: "LinkingFrom";
|
|
66
|
+
readonly LinkingTo: "LinkingTo";
|
|
67
|
+
readonly Ready: "Ready";
|
|
68
|
+
readonly Terminated: "Terminated";
|
|
69
|
+
readonly Terminating: "Terminating";
|
|
70
|
+
readonly Updating: "Updating";
|
|
71
|
+
};
|
|
72
|
+
export type EnvironmentStatus =
|
|
73
|
+
(typeof EnvironmentStatus)[keyof typeof EnvironmentStatus];
|
|
74
|
+
export declare const ComputeType: {
|
|
75
|
+
readonly BUILD_GENERAL1_LARGE: "BUILD_GENERAL1_LARGE";
|
|
76
|
+
readonly BUILD_GENERAL1_MEDIUM: "BUILD_GENERAL1_MEDIUM";
|
|
77
|
+
readonly BUILD_GENERAL1_SMALL: "BUILD_GENERAL1_SMALL";
|
|
78
|
+
};
|
|
79
|
+
export type ComputeType = (typeof ComputeType)[keyof typeof ComputeType];
|
|
80
|
+
export declare const ConfigurationDeploymentStatus: {
|
|
81
|
+
readonly deployed: "deployed";
|
|
82
|
+
readonly failed: "failed";
|
|
83
|
+
readonly pending: "pending";
|
|
84
|
+
};
|
|
85
|
+
export type ConfigurationDeploymentStatus =
|
|
86
|
+
(typeof ConfigurationDeploymentStatus)[keyof typeof ConfigurationDeploymentStatus];
|
|
87
|
+
export declare const PlatformStatus: {
|
|
88
|
+
readonly Creating: "Creating";
|
|
89
|
+
readonly Deleted: "Deleted";
|
|
90
|
+
readonly Deleting: "Deleting";
|
|
91
|
+
readonly Failed: "Failed";
|
|
92
|
+
readonly Ready: "Ready";
|
|
93
|
+
};
|
|
94
|
+
export type PlatformStatus =
|
|
95
|
+
(typeof PlatformStatus)[keyof typeof PlatformStatus];
|
|
96
|
+
export declare const ConfigurationOptionValueType: {
|
|
97
|
+
readonly List: "List";
|
|
98
|
+
readonly Scalar: "Scalar";
|
|
99
|
+
};
|
|
100
|
+
export type ConfigurationOptionValueType =
|
|
101
|
+
(typeof ConfigurationOptionValueType)[keyof typeof ConfigurationOptionValueType];
|
|
102
|
+
export declare const EnvironmentHealthAttribute: {
|
|
103
|
+
readonly All: "All";
|
|
104
|
+
readonly ApplicationMetrics: "ApplicationMetrics";
|
|
105
|
+
readonly Causes: "Causes";
|
|
106
|
+
readonly Color: "Color";
|
|
107
|
+
readonly HealthStatus: "HealthStatus";
|
|
108
|
+
readonly InstancesHealth: "InstancesHealth";
|
|
109
|
+
readonly RefreshedAt: "RefreshedAt";
|
|
110
|
+
readonly Status: "Status";
|
|
111
|
+
};
|
|
112
|
+
export type EnvironmentHealthAttribute =
|
|
113
|
+
(typeof EnvironmentHealthAttribute)[keyof typeof EnvironmentHealthAttribute];
|
|
114
|
+
export declare const FailureType: {
|
|
115
|
+
readonly CancellationFailed: "CancellationFailed";
|
|
116
|
+
readonly InternalFailure: "InternalFailure";
|
|
117
|
+
readonly InvalidEnvironmentState: "InvalidEnvironmentState";
|
|
118
|
+
readonly PermissionsError: "PermissionsError";
|
|
119
|
+
readonly RollbackFailed: "RollbackFailed";
|
|
120
|
+
readonly RollbackSuccessful: "RollbackSuccessful";
|
|
121
|
+
readonly UpdateCancelled: "UpdateCancelled";
|
|
122
|
+
};
|
|
123
|
+
export type FailureType = (typeof FailureType)[keyof typeof FailureType];
|
|
124
|
+
export declare const EventSeverity: {
|
|
125
|
+
readonly DEBUG: "DEBUG";
|
|
126
|
+
readonly ERROR: "ERROR";
|
|
127
|
+
readonly FATAL: "FATAL";
|
|
128
|
+
readonly INFO: "INFO";
|
|
129
|
+
readonly TRACE: "TRACE";
|
|
130
|
+
readonly WARN: "WARN";
|
|
131
|
+
};
|
|
132
|
+
export type EventSeverity = (typeof EventSeverity)[keyof typeof EventSeverity];
|
|
133
|
+
export declare const InstancesHealthAttribute: {
|
|
134
|
+
readonly All: "All";
|
|
135
|
+
readonly ApplicationMetrics: "ApplicationMetrics";
|
|
136
|
+
readonly AvailabilityZone: "AvailabilityZone";
|
|
137
|
+
readonly Causes: "Causes";
|
|
138
|
+
readonly Color: "Color";
|
|
139
|
+
readonly Deployment: "Deployment";
|
|
140
|
+
readonly HealthStatus: "HealthStatus";
|
|
141
|
+
readonly InstanceType: "InstanceType";
|
|
142
|
+
readonly LaunchedAt: "LaunchedAt";
|
|
143
|
+
readonly RefreshedAt: "RefreshedAt";
|
|
144
|
+
readonly System: "System";
|
|
145
|
+
};
|
|
146
|
+
export type InstancesHealthAttribute =
|
|
147
|
+
(typeof InstancesHealthAttribute)[keyof typeof InstancesHealthAttribute];
|
|
148
|
+
export declare const EnvironmentInfoType: {
|
|
149
|
+
readonly bundle: "bundle";
|
|
150
|
+
readonly tail: "tail";
|
|
151
|
+
};
|
|
152
|
+
export type EnvironmentInfoType =
|
|
153
|
+
(typeof EnvironmentInfoType)[keyof typeof EnvironmentInfoType];
|
|
154
|
+
export declare const ValidationSeverity: {
|
|
155
|
+
readonly error: "error";
|
|
156
|
+
readonly warning: "warning";
|
|
157
|
+
};
|
|
158
|
+
export type ValidationSeverity =
|
|
159
|
+
(typeof ValidationSeverity)[keyof typeof ValidationSeverity];
|
|
@@ -0,0 +1,165 @@
|
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
|
+
import { ElasticBeanstalkSyntheticServiceException as __BaseException } from "./ElasticBeanstalkSyntheticServiceException";
|
|
3
|
+
export declare class InsufficientPrivilegesException extends __BaseException {
|
|
4
|
+
readonly name: "InsufficientPrivilegesException";
|
|
5
|
+
readonly $fault: "client";
|
|
6
|
+
constructor(
|
|
7
|
+
opts: __ExceptionOptionType<
|
|
8
|
+
InsufficientPrivilegesException,
|
|
9
|
+
__BaseException
|
|
10
|
+
>
|
|
11
|
+
);
|
|
12
|
+
}
|
|
13
|
+
export declare class ElasticBeanstalkServiceException extends __BaseException {
|
|
14
|
+
readonly name: "ElasticBeanstalkServiceException";
|
|
15
|
+
readonly $fault: "client";
|
|
16
|
+
constructor(
|
|
17
|
+
opts: __ExceptionOptionType<
|
|
18
|
+
ElasticBeanstalkServiceException,
|
|
19
|
+
__BaseException
|
|
20
|
+
>
|
|
21
|
+
);
|
|
22
|
+
}
|
|
23
|
+
export declare class ManagedActionInvalidStateException extends __BaseException {
|
|
24
|
+
readonly name: "ManagedActionInvalidStateException";
|
|
25
|
+
readonly $fault: "client";
|
|
26
|
+
constructor(
|
|
27
|
+
opts: __ExceptionOptionType<
|
|
28
|
+
ManagedActionInvalidStateException,
|
|
29
|
+
__BaseException
|
|
30
|
+
>
|
|
31
|
+
);
|
|
32
|
+
}
|
|
33
|
+
export declare class TooManyEnvironmentsException extends __BaseException {
|
|
34
|
+
readonly name: "TooManyEnvironmentsException";
|
|
35
|
+
readonly $fault: "client";
|
|
36
|
+
constructor(
|
|
37
|
+
opts: __ExceptionOptionType<TooManyEnvironmentsException, __BaseException>
|
|
38
|
+
);
|
|
39
|
+
}
|
|
40
|
+
export declare class TooManyApplicationsException extends __BaseException {
|
|
41
|
+
readonly name: "TooManyApplicationsException";
|
|
42
|
+
readonly $fault: "client";
|
|
43
|
+
constructor(
|
|
44
|
+
opts: __ExceptionOptionType<TooManyApplicationsException, __BaseException>
|
|
45
|
+
);
|
|
46
|
+
}
|
|
47
|
+
export declare class CodeBuildNotInServiceRegionException extends __BaseException {
|
|
48
|
+
readonly name: "CodeBuildNotInServiceRegionException";
|
|
49
|
+
readonly $fault: "client";
|
|
50
|
+
constructor(
|
|
51
|
+
opts: __ExceptionOptionType<
|
|
52
|
+
CodeBuildNotInServiceRegionException,
|
|
53
|
+
__BaseException
|
|
54
|
+
>
|
|
55
|
+
);
|
|
56
|
+
}
|
|
57
|
+
export declare class S3LocationNotInServiceRegionException extends __BaseException {
|
|
58
|
+
readonly name: "S3LocationNotInServiceRegionException";
|
|
59
|
+
readonly $fault: "client";
|
|
60
|
+
constructor(
|
|
61
|
+
opts: __ExceptionOptionType<
|
|
62
|
+
S3LocationNotInServiceRegionException,
|
|
63
|
+
__BaseException
|
|
64
|
+
>
|
|
65
|
+
);
|
|
66
|
+
}
|
|
67
|
+
export declare class TooManyApplicationVersionsException extends __BaseException {
|
|
68
|
+
readonly name: "TooManyApplicationVersionsException";
|
|
69
|
+
readonly $fault: "client";
|
|
70
|
+
constructor(
|
|
71
|
+
opts: __ExceptionOptionType<
|
|
72
|
+
TooManyApplicationVersionsException,
|
|
73
|
+
__BaseException
|
|
74
|
+
>
|
|
75
|
+
);
|
|
76
|
+
}
|
|
77
|
+
export declare class TooManyBucketsException extends __BaseException {
|
|
78
|
+
readonly name: "TooManyBucketsException";
|
|
79
|
+
readonly $fault: "client";
|
|
80
|
+
constructor(
|
|
81
|
+
opts: __ExceptionOptionType<TooManyBucketsException, __BaseException>
|
|
82
|
+
);
|
|
83
|
+
}
|
|
84
|
+
export declare class TooManyConfigurationTemplatesException extends __BaseException {
|
|
85
|
+
readonly name: "TooManyConfigurationTemplatesException";
|
|
86
|
+
readonly $fault: "client";
|
|
87
|
+
constructor(
|
|
88
|
+
opts: __ExceptionOptionType<
|
|
89
|
+
TooManyConfigurationTemplatesException,
|
|
90
|
+
__BaseException
|
|
91
|
+
>
|
|
92
|
+
);
|
|
93
|
+
}
|
|
94
|
+
export declare class TooManyPlatformsException extends __BaseException {
|
|
95
|
+
readonly name: "TooManyPlatformsException";
|
|
96
|
+
readonly $fault: "client";
|
|
97
|
+
constructor(
|
|
98
|
+
opts: __ExceptionOptionType<TooManyPlatformsException, __BaseException>
|
|
99
|
+
);
|
|
100
|
+
}
|
|
101
|
+
export declare class S3SubscriptionRequiredException extends __BaseException {
|
|
102
|
+
readonly name: "S3SubscriptionRequiredException";
|
|
103
|
+
readonly $fault: "client";
|
|
104
|
+
constructor(
|
|
105
|
+
opts: __ExceptionOptionType<
|
|
106
|
+
S3SubscriptionRequiredException,
|
|
107
|
+
__BaseException
|
|
108
|
+
>
|
|
109
|
+
);
|
|
110
|
+
}
|
|
111
|
+
export declare class OperationInProgressException extends __BaseException {
|
|
112
|
+
readonly name: "OperationInProgressException";
|
|
113
|
+
readonly $fault: "client";
|
|
114
|
+
constructor(
|
|
115
|
+
opts: __ExceptionOptionType<OperationInProgressException, __BaseException>
|
|
116
|
+
);
|
|
117
|
+
}
|
|
118
|
+
export declare class SourceBundleDeletionException extends __BaseException {
|
|
119
|
+
readonly name: "SourceBundleDeletionException";
|
|
120
|
+
readonly $fault: "client";
|
|
121
|
+
constructor(
|
|
122
|
+
opts: __ExceptionOptionType<SourceBundleDeletionException, __BaseException>
|
|
123
|
+
);
|
|
124
|
+
}
|
|
125
|
+
export declare class PlatformVersionStillReferencedException extends __BaseException {
|
|
126
|
+
readonly name: "PlatformVersionStillReferencedException";
|
|
127
|
+
readonly $fault: "client";
|
|
128
|
+
constructor(
|
|
129
|
+
opts: __ExceptionOptionType<
|
|
130
|
+
PlatformVersionStillReferencedException,
|
|
131
|
+
__BaseException
|
|
132
|
+
>
|
|
133
|
+
);
|
|
134
|
+
}
|
|
135
|
+
export declare class InvalidRequestException extends __BaseException {
|
|
136
|
+
readonly name: "InvalidRequestException";
|
|
137
|
+
readonly $fault: "client";
|
|
138
|
+
constructor(
|
|
139
|
+
opts: __ExceptionOptionType<InvalidRequestException, __BaseException>
|
|
140
|
+
);
|
|
141
|
+
}
|
|
142
|
+
export declare class ResourceNotFoundException extends __BaseException {
|
|
143
|
+
readonly name: "ResourceNotFoundException";
|
|
144
|
+
readonly $fault: "client";
|
|
145
|
+
constructor(
|
|
146
|
+
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
147
|
+
);
|
|
148
|
+
}
|
|
149
|
+
export declare class ResourceTypeNotSupportedException extends __BaseException {
|
|
150
|
+
readonly name: "ResourceTypeNotSupportedException";
|
|
151
|
+
readonly $fault: "client";
|
|
152
|
+
constructor(
|
|
153
|
+
opts: __ExceptionOptionType<
|
|
154
|
+
ResourceTypeNotSupportedException,
|
|
155
|
+
__BaseException
|
|
156
|
+
>
|
|
157
|
+
);
|
|
158
|
+
}
|
|
159
|
+
export declare class TooManyTagsException extends __BaseException {
|
|
160
|
+
readonly name: "TooManyTagsException";
|
|
161
|
+
readonly $fault: "client";
|
|
162
|
+
constructor(
|
|
163
|
+
opts: __ExceptionOptionType<TooManyTagsException, __BaseException>
|
|
164
|
+
);
|
|
165
|
+
}
|