@aws-sdk/client-elastic-beanstalk 3.987.0 → 3.989.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 +66 -1924
- package/dist-cjs/models/ElasticBeanstalkSyntheticServiceException.js +12 -0
- package/dist-cjs/models/errors.js +251 -0
- package/dist-cjs/runtimeConfig.shared.js +2 -0
- package/dist-cjs/schemas/schemas_0.js +1460 -0
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-es/schemas/schemas_0.js +122 -116
- package/dist-types/schemas/schemas_0.d.ts +27 -20
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +22 -20
- package/package.json +13 -13
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.ElasticBeanstalkSyntheticServiceException = exports.__ServiceException = void 0;
|
|
4
|
+
const smithy_client_1 = require("@smithy/smithy-client");
|
|
5
|
+
Object.defineProperty(exports, "__ServiceException", { enumerable: true, get: function () { return smithy_client_1.ServiceException; } });
|
|
6
|
+
class ElasticBeanstalkSyntheticServiceException extends smithy_client_1.ServiceException {
|
|
7
|
+
constructor(options) {
|
|
8
|
+
super(options);
|
|
9
|
+
Object.setPrototypeOf(this, ElasticBeanstalkSyntheticServiceException.prototype);
|
|
10
|
+
}
|
|
11
|
+
}
|
|
12
|
+
exports.ElasticBeanstalkSyntheticServiceException = ElasticBeanstalkSyntheticServiceException;
|
|
@@ -0,0 +1,251 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.TooManyTagsException = exports.ResourceTypeNotSupportedException = exports.ResourceNotFoundException = exports.InvalidRequestException = exports.PlatformVersionStillReferencedException = exports.SourceBundleDeletionException = exports.OperationInProgressException = exports.S3SubscriptionRequiredException = exports.TooManyPlatformsException = exports.TooManyConfigurationTemplatesException = exports.TooManyBucketsException = exports.TooManyApplicationVersionsException = exports.S3LocationNotInServiceRegionException = exports.CodeBuildNotInServiceRegionException = exports.TooManyApplicationsException = exports.TooManyEnvironmentsException = exports.ManagedActionInvalidStateException = exports.ElasticBeanstalkServiceException = exports.InsufficientPrivilegesException = void 0;
|
|
4
|
+
const ElasticBeanstalkSyntheticServiceException_1 = require("./ElasticBeanstalkSyntheticServiceException");
|
|
5
|
+
class InsufficientPrivilegesException extends ElasticBeanstalkSyntheticServiceException_1.ElasticBeanstalkSyntheticServiceException {
|
|
6
|
+
name = "InsufficientPrivilegesException";
|
|
7
|
+
$fault = "client";
|
|
8
|
+
constructor(opts) {
|
|
9
|
+
super({
|
|
10
|
+
name: "InsufficientPrivilegesException",
|
|
11
|
+
$fault: "client",
|
|
12
|
+
...opts,
|
|
13
|
+
});
|
|
14
|
+
Object.setPrototypeOf(this, InsufficientPrivilegesException.prototype);
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
exports.InsufficientPrivilegesException = InsufficientPrivilegesException;
|
|
18
|
+
class ElasticBeanstalkServiceException extends ElasticBeanstalkSyntheticServiceException_1.ElasticBeanstalkSyntheticServiceException {
|
|
19
|
+
name = "ElasticBeanstalkServiceException";
|
|
20
|
+
$fault = "client";
|
|
21
|
+
constructor(opts) {
|
|
22
|
+
super({
|
|
23
|
+
name: "ElasticBeanstalkServiceException",
|
|
24
|
+
$fault: "client",
|
|
25
|
+
...opts,
|
|
26
|
+
});
|
|
27
|
+
Object.setPrototypeOf(this, ElasticBeanstalkServiceException.prototype);
|
|
28
|
+
}
|
|
29
|
+
}
|
|
30
|
+
exports.ElasticBeanstalkServiceException = ElasticBeanstalkServiceException;
|
|
31
|
+
class ManagedActionInvalidStateException extends ElasticBeanstalkSyntheticServiceException_1.ElasticBeanstalkSyntheticServiceException {
|
|
32
|
+
name = "ManagedActionInvalidStateException";
|
|
33
|
+
$fault = "client";
|
|
34
|
+
constructor(opts) {
|
|
35
|
+
super({
|
|
36
|
+
name: "ManagedActionInvalidStateException",
|
|
37
|
+
$fault: "client",
|
|
38
|
+
...opts,
|
|
39
|
+
});
|
|
40
|
+
Object.setPrototypeOf(this, ManagedActionInvalidStateException.prototype);
|
|
41
|
+
}
|
|
42
|
+
}
|
|
43
|
+
exports.ManagedActionInvalidStateException = ManagedActionInvalidStateException;
|
|
44
|
+
class TooManyEnvironmentsException extends ElasticBeanstalkSyntheticServiceException_1.ElasticBeanstalkSyntheticServiceException {
|
|
45
|
+
name = "TooManyEnvironmentsException";
|
|
46
|
+
$fault = "client";
|
|
47
|
+
constructor(opts) {
|
|
48
|
+
super({
|
|
49
|
+
name: "TooManyEnvironmentsException",
|
|
50
|
+
$fault: "client",
|
|
51
|
+
...opts,
|
|
52
|
+
});
|
|
53
|
+
Object.setPrototypeOf(this, TooManyEnvironmentsException.prototype);
|
|
54
|
+
}
|
|
55
|
+
}
|
|
56
|
+
exports.TooManyEnvironmentsException = TooManyEnvironmentsException;
|
|
57
|
+
class TooManyApplicationsException extends ElasticBeanstalkSyntheticServiceException_1.ElasticBeanstalkSyntheticServiceException {
|
|
58
|
+
name = "TooManyApplicationsException";
|
|
59
|
+
$fault = "client";
|
|
60
|
+
constructor(opts) {
|
|
61
|
+
super({
|
|
62
|
+
name: "TooManyApplicationsException",
|
|
63
|
+
$fault: "client",
|
|
64
|
+
...opts,
|
|
65
|
+
});
|
|
66
|
+
Object.setPrototypeOf(this, TooManyApplicationsException.prototype);
|
|
67
|
+
}
|
|
68
|
+
}
|
|
69
|
+
exports.TooManyApplicationsException = TooManyApplicationsException;
|
|
70
|
+
class CodeBuildNotInServiceRegionException extends ElasticBeanstalkSyntheticServiceException_1.ElasticBeanstalkSyntheticServiceException {
|
|
71
|
+
name = "CodeBuildNotInServiceRegionException";
|
|
72
|
+
$fault = "client";
|
|
73
|
+
constructor(opts) {
|
|
74
|
+
super({
|
|
75
|
+
name: "CodeBuildNotInServiceRegionException",
|
|
76
|
+
$fault: "client",
|
|
77
|
+
...opts,
|
|
78
|
+
});
|
|
79
|
+
Object.setPrototypeOf(this, CodeBuildNotInServiceRegionException.prototype);
|
|
80
|
+
}
|
|
81
|
+
}
|
|
82
|
+
exports.CodeBuildNotInServiceRegionException = CodeBuildNotInServiceRegionException;
|
|
83
|
+
class S3LocationNotInServiceRegionException extends ElasticBeanstalkSyntheticServiceException_1.ElasticBeanstalkSyntheticServiceException {
|
|
84
|
+
name = "S3LocationNotInServiceRegionException";
|
|
85
|
+
$fault = "client";
|
|
86
|
+
constructor(opts) {
|
|
87
|
+
super({
|
|
88
|
+
name: "S3LocationNotInServiceRegionException",
|
|
89
|
+
$fault: "client",
|
|
90
|
+
...opts,
|
|
91
|
+
});
|
|
92
|
+
Object.setPrototypeOf(this, S3LocationNotInServiceRegionException.prototype);
|
|
93
|
+
}
|
|
94
|
+
}
|
|
95
|
+
exports.S3LocationNotInServiceRegionException = S3LocationNotInServiceRegionException;
|
|
96
|
+
class TooManyApplicationVersionsException extends ElasticBeanstalkSyntheticServiceException_1.ElasticBeanstalkSyntheticServiceException {
|
|
97
|
+
name = "TooManyApplicationVersionsException";
|
|
98
|
+
$fault = "client";
|
|
99
|
+
constructor(opts) {
|
|
100
|
+
super({
|
|
101
|
+
name: "TooManyApplicationVersionsException",
|
|
102
|
+
$fault: "client",
|
|
103
|
+
...opts,
|
|
104
|
+
});
|
|
105
|
+
Object.setPrototypeOf(this, TooManyApplicationVersionsException.prototype);
|
|
106
|
+
}
|
|
107
|
+
}
|
|
108
|
+
exports.TooManyApplicationVersionsException = TooManyApplicationVersionsException;
|
|
109
|
+
class TooManyBucketsException extends ElasticBeanstalkSyntheticServiceException_1.ElasticBeanstalkSyntheticServiceException {
|
|
110
|
+
name = "TooManyBucketsException";
|
|
111
|
+
$fault = "client";
|
|
112
|
+
constructor(opts) {
|
|
113
|
+
super({
|
|
114
|
+
name: "TooManyBucketsException",
|
|
115
|
+
$fault: "client",
|
|
116
|
+
...opts,
|
|
117
|
+
});
|
|
118
|
+
Object.setPrototypeOf(this, TooManyBucketsException.prototype);
|
|
119
|
+
}
|
|
120
|
+
}
|
|
121
|
+
exports.TooManyBucketsException = TooManyBucketsException;
|
|
122
|
+
class TooManyConfigurationTemplatesException extends ElasticBeanstalkSyntheticServiceException_1.ElasticBeanstalkSyntheticServiceException {
|
|
123
|
+
name = "TooManyConfigurationTemplatesException";
|
|
124
|
+
$fault = "client";
|
|
125
|
+
constructor(opts) {
|
|
126
|
+
super({
|
|
127
|
+
name: "TooManyConfigurationTemplatesException",
|
|
128
|
+
$fault: "client",
|
|
129
|
+
...opts,
|
|
130
|
+
});
|
|
131
|
+
Object.setPrototypeOf(this, TooManyConfigurationTemplatesException.prototype);
|
|
132
|
+
}
|
|
133
|
+
}
|
|
134
|
+
exports.TooManyConfigurationTemplatesException = TooManyConfigurationTemplatesException;
|
|
135
|
+
class TooManyPlatformsException extends ElasticBeanstalkSyntheticServiceException_1.ElasticBeanstalkSyntheticServiceException {
|
|
136
|
+
name = "TooManyPlatformsException";
|
|
137
|
+
$fault = "client";
|
|
138
|
+
constructor(opts) {
|
|
139
|
+
super({
|
|
140
|
+
name: "TooManyPlatformsException",
|
|
141
|
+
$fault: "client",
|
|
142
|
+
...opts,
|
|
143
|
+
});
|
|
144
|
+
Object.setPrototypeOf(this, TooManyPlatformsException.prototype);
|
|
145
|
+
}
|
|
146
|
+
}
|
|
147
|
+
exports.TooManyPlatformsException = TooManyPlatformsException;
|
|
148
|
+
class S3SubscriptionRequiredException extends ElasticBeanstalkSyntheticServiceException_1.ElasticBeanstalkSyntheticServiceException {
|
|
149
|
+
name = "S3SubscriptionRequiredException";
|
|
150
|
+
$fault = "client";
|
|
151
|
+
constructor(opts) {
|
|
152
|
+
super({
|
|
153
|
+
name: "S3SubscriptionRequiredException",
|
|
154
|
+
$fault: "client",
|
|
155
|
+
...opts,
|
|
156
|
+
});
|
|
157
|
+
Object.setPrototypeOf(this, S3SubscriptionRequiredException.prototype);
|
|
158
|
+
}
|
|
159
|
+
}
|
|
160
|
+
exports.S3SubscriptionRequiredException = S3SubscriptionRequiredException;
|
|
161
|
+
class OperationInProgressException extends ElasticBeanstalkSyntheticServiceException_1.ElasticBeanstalkSyntheticServiceException {
|
|
162
|
+
name = "OperationInProgressException";
|
|
163
|
+
$fault = "client";
|
|
164
|
+
constructor(opts) {
|
|
165
|
+
super({
|
|
166
|
+
name: "OperationInProgressException",
|
|
167
|
+
$fault: "client",
|
|
168
|
+
...opts,
|
|
169
|
+
});
|
|
170
|
+
Object.setPrototypeOf(this, OperationInProgressException.prototype);
|
|
171
|
+
}
|
|
172
|
+
}
|
|
173
|
+
exports.OperationInProgressException = OperationInProgressException;
|
|
174
|
+
class SourceBundleDeletionException extends ElasticBeanstalkSyntheticServiceException_1.ElasticBeanstalkSyntheticServiceException {
|
|
175
|
+
name = "SourceBundleDeletionException";
|
|
176
|
+
$fault = "client";
|
|
177
|
+
constructor(opts) {
|
|
178
|
+
super({
|
|
179
|
+
name: "SourceBundleDeletionException",
|
|
180
|
+
$fault: "client",
|
|
181
|
+
...opts,
|
|
182
|
+
});
|
|
183
|
+
Object.setPrototypeOf(this, SourceBundleDeletionException.prototype);
|
|
184
|
+
}
|
|
185
|
+
}
|
|
186
|
+
exports.SourceBundleDeletionException = SourceBundleDeletionException;
|
|
187
|
+
class PlatformVersionStillReferencedException extends ElasticBeanstalkSyntheticServiceException_1.ElasticBeanstalkSyntheticServiceException {
|
|
188
|
+
name = "PlatformVersionStillReferencedException";
|
|
189
|
+
$fault = "client";
|
|
190
|
+
constructor(opts) {
|
|
191
|
+
super({
|
|
192
|
+
name: "PlatformVersionStillReferencedException",
|
|
193
|
+
$fault: "client",
|
|
194
|
+
...opts,
|
|
195
|
+
});
|
|
196
|
+
Object.setPrototypeOf(this, PlatformVersionStillReferencedException.prototype);
|
|
197
|
+
}
|
|
198
|
+
}
|
|
199
|
+
exports.PlatformVersionStillReferencedException = PlatformVersionStillReferencedException;
|
|
200
|
+
class InvalidRequestException extends ElasticBeanstalkSyntheticServiceException_1.ElasticBeanstalkSyntheticServiceException {
|
|
201
|
+
name = "InvalidRequestException";
|
|
202
|
+
$fault = "client";
|
|
203
|
+
constructor(opts) {
|
|
204
|
+
super({
|
|
205
|
+
name: "InvalidRequestException",
|
|
206
|
+
$fault: "client",
|
|
207
|
+
...opts,
|
|
208
|
+
});
|
|
209
|
+
Object.setPrototypeOf(this, InvalidRequestException.prototype);
|
|
210
|
+
}
|
|
211
|
+
}
|
|
212
|
+
exports.InvalidRequestException = InvalidRequestException;
|
|
213
|
+
class ResourceNotFoundException extends ElasticBeanstalkSyntheticServiceException_1.ElasticBeanstalkSyntheticServiceException {
|
|
214
|
+
name = "ResourceNotFoundException";
|
|
215
|
+
$fault = "client";
|
|
216
|
+
constructor(opts) {
|
|
217
|
+
super({
|
|
218
|
+
name: "ResourceNotFoundException",
|
|
219
|
+
$fault: "client",
|
|
220
|
+
...opts,
|
|
221
|
+
});
|
|
222
|
+
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
223
|
+
}
|
|
224
|
+
}
|
|
225
|
+
exports.ResourceNotFoundException = ResourceNotFoundException;
|
|
226
|
+
class ResourceTypeNotSupportedException extends ElasticBeanstalkSyntheticServiceException_1.ElasticBeanstalkSyntheticServiceException {
|
|
227
|
+
name = "ResourceTypeNotSupportedException";
|
|
228
|
+
$fault = "client";
|
|
229
|
+
constructor(opts) {
|
|
230
|
+
super({
|
|
231
|
+
name: "ResourceTypeNotSupportedException",
|
|
232
|
+
$fault: "client",
|
|
233
|
+
...opts,
|
|
234
|
+
});
|
|
235
|
+
Object.setPrototypeOf(this, ResourceTypeNotSupportedException.prototype);
|
|
236
|
+
}
|
|
237
|
+
}
|
|
238
|
+
exports.ResourceTypeNotSupportedException = ResourceTypeNotSupportedException;
|
|
239
|
+
class TooManyTagsException extends ElasticBeanstalkSyntheticServiceException_1.ElasticBeanstalkSyntheticServiceException {
|
|
240
|
+
name = "TooManyTagsException";
|
|
241
|
+
$fault = "client";
|
|
242
|
+
constructor(opts) {
|
|
243
|
+
super({
|
|
244
|
+
name: "TooManyTagsException",
|
|
245
|
+
$fault: "client",
|
|
246
|
+
...opts,
|
|
247
|
+
});
|
|
248
|
+
Object.setPrototypeOf(this, TooManyTagsException.prototype);
|
|
249
|
+
}
|
|
250
|
+
}
|
|
251
|
+
exports.TooManyTagsException = TooManyTagsException;
|
|
@@ -9,6 +9,7 @@ const util_base64_1 = require("@smithy/util-base64");
|
|
|
9
9
|
const util_utf8_1 = require("@smithy/util-utf8");
|
|
10
10
|
const httpAuthSchemeProvider_1 = require("./auth/httpAuthSchemeProvider");
|
|
11
11
|
const endpointResolver_1 = require("./endpoint/endpointResolver");
|
|
12
|
+
const schemas_0_1 = require("./schemas/schemas_0");
|
|
12
13
|
const getRuntimeConfig = (config) => {
|
|
13
14
|
return {
|
|
14
15
|
apiVersion: "2010-12-01",
|
|
@@ -29,6 +30,7 @@ const getRuntimeConfig = (config) => {
|
|
|
29
30
|
protocol: config?.protocol ?? protocols_1.AwsQueryProtocol,
|
|
30
31
|
protocolSettings: config?.protocolSettings ?? {
|
|
31
32
|
defaultNamespace: "com.amazonaws.elasticbeanstalk",
|
|
33
|
+
errorTypeRegistries: schemas_0_1.errorTypeRegistries,
|
|
32
34
|
xmlNamespace: "http://elasticbeanstalk.amazonaws.com/docs/2010-12-01/",
|
|
33
35
|
version: "2010-12-01",
|
|
34
36
|
serviceTarget: "AWSElasticBeanstalkService",
|