@aws-sdk/client-elastic-beanstalk 3.1075.0 → 3.1077.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 +2068 -15
- package/dist-es/runtimeConfig.browser.js +0 -2
- package/dist-es/runtimeConfig.js +1 -2
- package/dist-es/runtimeConfig.native.js +0 -2
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-types/runtimeConfig.browser.d.ts +2 -2
- package/dist-types/runtimeConfig.d.ts +2 -2
- package/dist-types/runtimeConfig.native.d.ts +2 -2
- package/dist-types/runtimeConfig.shared.d.ts +1 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +8 -2
- package/dist-types/ts3.4/runtimeConfig.d.ts +8 -2
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +8 -2
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +1 -0
- package/package.json +8 -10
- package/dist-cjs/auth/httpAuthSchemeProvider.js +0 -40
- package/dist-cjs/endpoint/bdd.js +0 -49
- package/dist-cjs/endpoint/endpointResolver.js +0 -14
- package/dist-cjs/models/ElasticBeanstalkSyntheticServiceException.js +0 -8
- package/dist-cjs/models/errors.js +0 -229
- package/dist-cjs/runtimeConfig.browser.js +0 -32
- package/dist-cjs/runtimeConfig.js +0 -45
- package/dist-cjs/runtimeConfig.native.js +0 -12
- package/dist-cjs/runtimeConfig.shared.js +0 -39
- package/dist-cjs/schemas/schemas_0.js +0 -1600
package/dist-cjs/index.js
CHANGED
|
@@ -1,21 +1,58 @@
|
|
|
1
|
-
|
|
2
|
-
const { getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfiguration, resolveUserAgentConfig, resolveHostHeaderConfig, getUserAgentPlugin, getHostHeaderPlugin, getLoggerPlugin, getRecursionDetectionPlugin } = require("@aws-sdk/core/client");
|
|
1
|
+
const { awsEndpointFunctions, emitWarningIfUnsupportedVersion: emitWarningIfUnsupportedVersion$1, createDefaultUserAgentProvider, NODE_APP_ID_CONFIG_OPTIONS, getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfiguration, resolveUserAgentConfig, resolveHostHeaderConfig, getUserAgentPlugin, getHostHeaderPlugin, getLoggerPlugin, getRecursionDetectionPlugin } = require("@aws-sdk/core/client");
|
|
3
2
|
const { getHttpAuthSchemeEndpointRuleSetPlugin, DefaultIdentityProviderConfig, getHttpSigningPlugin, createPaginator } = require("@smithy/core");
|
|
4
|
-
const { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, Command, createWaiter, checkExceptions, WaiterState, createAggregatedClient } = require("@smithy/core/client");
|
|
3
|
+
const { normalizeProvider, getSmithyContext, ServiceException, NoOpLogger, emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode, getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, Command, createWaiter, checkExceptions, WaiterState, createAggregatedClient } = require("@smithy/core/client");
|
|
5
4
|
exports.$Command = Command;
|
|
6
5
|
exports.__Client = Client;
|
|
7
|
-
const { resolveRegionConfig } = require("@smithy/core/config");
|
|
8
|
-
const { resolveEndpointConfig, getEndpointPlugin } = require("@smithy/core/endpoints");
|
|
9
|
-
const { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig, getContentLengthPlugin } = require("@smithy/core/protocols");
|
|
10
|
-
const { resolveRetryConfig, getRetryPlugin } = require("@smithy/core/retry");
|
|
11
|
-
const { getSchemaSerdePlugin } = require("@smithy/core/schema");
|
|
12
|
-
const {
|
|
13
|
-
const {
|
|
14
|
-
const {
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
const {
|
|
18
|
-
|
|
6
|
+
const { resolveDefaultsModeConfig, loadConfig, NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, NODE_REGION_CONFIG_OPTIONS, NODE_REGION_CONFIG_FILE_OPTIONS, resolveRegionConfig } = require("@smithy/core/config");
|
|
7
|
+
const { BinaryDecisionDiagram, EndpointCache, decideEndpoint, customEndpointFunctions, resolveEndpointConfig, getEndpointPlugin } = require("@smithy/core/endpoints");
|
|
8
|
+
const { parseUrl, getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig, getContentLengthPlugin } = require("@smithy/core/protocols");
|
|
9
|
+
const { DEFAULT_RETRY_MODE, NODE_RETRY_MODE_CONFIG_OPTIONS, NODE_MAX_ATTEMPT_CONFIG_OPTIONS, resolveRetryConfig, getRetryPlugin } = require("@smithy/core/retry");
|
|
10
|
+
const { TypeRegistry, getSchemaSerdePlugin } = require("@smithy/core/schema");
|
|
11
|
+
const { resolveAwsSdkSigV4Config, AwsSdkSigV4Signer, NODE_AUTH_SCHEME_PREFERENCE_OPTIONS } = require("@aws-sdk/core/httpAuthSchemes");
|
|
12
|
+
const { defaultProvider } = require("@aws-sdk/credential-provider-node");
|
|
13
|
+
const { toUtf8, fromUtf8, toBase64, fromBase64, calculateBodyLength } = require("@smithy/core/serde");
|
|
14
|
+
const { streamCollector, NodeHttpHandler } = require("@smithy/node-http-handler");
|
|
15
|
+
const { AwsQueryProtocol } = require("@aws-sdk/core/protocols");
|
|
16
|
+
const { Sha256 } = require("@smithy/core/checksum");
|
|
17
|
+
|
|
18
|
+
const defaultElasticBeanstalkHttpAuthSchemeParametersProvider = async (config, context, input) => {
|
|
19
|
+
return {
|
|
20
|
+
operation: getSmithyContext(context).operation,
|
|
21
|
+
region: await normalizeProvider(config.region)() || (() => {
|
|
22
|
+
throw new Error("expected `region` to be configured for `aws.auth#sigv4`");
|
|
23
|
+
})(),
|
|
24
|
+
};
|
|
25
|
+
};
|
|
26
|
+
function createAwsAuthSigv4HttpAuthOption(authParameters) {
|
|
27
|
+
return {
|
|
28
|
+
schemeId: "aws.auth#sigv4",
|
|
29
|
+
signingProperties: {
|
|
30
|
+
name: "elasticbeanstalk",
|
|
31
|
+
region: authParameters.region,
|
|
32
|
+
},
|
|
33
|
+
propertiesExtractor: (config, context) => ({
|
|
34
|
+
signingProperties: {
|
|
35
|
+
config,
|
|
36
|
+
context,
|
|
37
|
+
},
|
|
38
|
+
}),
|
|
39
|
+
};
|
|
40
|
+
}
|
|
41
|
+
const defaultElasticBeanstalkHttpAuthSchemeProvider = (authParameters) => {
|
|
42
|
+
const options = [];
|
|
43
|
+
switch (authParameters.operation) {
|
|
44
|
+
default: {
|
|
45
|
+
options.push(createAwsAuthSigv4HttpAuthOption(authParameters));
|
|
46
|
+
}
|
|
47
|
+
}
|
|
48
|
+
return options;
|
|
49
|
+
};
|
|
50
|
+
const resolveHttpAuthSchemeConfig = (config) => {
|
|
51
|
+
const config_0 = resolveAwsSdkSigV4Config(config);
|
|
52
|
+
return Object.assign(config_0, {
|
|
53
|
+
authSchemePreference: normalizeProvider(config.authSchemePreference ?? []),
|
|
54
|
+
});
|
|
55
|
+
};
|
|
19
56
|
|
|
20
57
|
const resolveClientEndpointParameters = (options) => {
|
|
21
58
|
return Object.assign(options, {
|
|
@@ -31,6 +68,1808 @@ const commonParams = {
|
|
|
31
68
|
UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
|
|
32
69
|
};
|
|
33
70
|
|
|
71
|
+
var version = "3.1076.0";
|
|
72
|
+
var packageInfo = {
|
|
73
|
+
version: version};
|
|
74
|
+
|
|
75
|
+
const k = "ref";
|
|
76
|
+
const a = -1, b = true, c = "isSet", d = "PartitionResult", e = "booleanEquals", f = "getAttr", g = { [k]: "Endpoint" }, h = { [k]: d }, i = {}, j = [{ [k]: "Region" }];
|
|
77
|
+
const _data = {
|
|
78
|
+
conditions: [
|
|
79
|
+
[c, [g]],
|
|
80
|
+
[c, j],
|
|
81
|
+
["aws.partition", j, d],
|
|
82
|
+
[e, [{ [k]: "UseFIPS" }, b]],
|
|
83
|
+
[e, [{ [k]: "UseDualStack" }, b]],
|
|
84
|
+
[e, [{ fn: f, argv: [h, "supportsDualStack"] }, b]],
|
|
85
|
+
[e, [{ fn: f, argv: [h, "supportsFIPS"] }, b]],
|
|
86
|
+
["stringEquals", [{ fn: f, argv: [h, "name"] }, "aws-us-gov"]]
|
|
87
|
+
],
|
|
88
|
+
results: [
|
|
89
|
+
[a],
|
|
90
|
+
[a, "Invalid Configuration: FIPS and custom endpoint are not supported"],
|
|
91
|
+
[a, "Invalid Configuration: Dualstack and custom endpoint are not supported"],
|
|
92
|
+
[g, i],
|
|
93
|
+
["https://elasticbeanstalk-fips.{Region}.{PartitionResult#dualStackDnsSuffix}", i],
|
|
94
|
+
[a, "FIPS and DualStack are enabled, but this partition does not support one or both"],
|
|
95
|
+
["https://elasticbeanstalk.{Region}.amazonaws.com", i],
|
|
96
|
+
["https://elasticbeanstalk-fips.{Region}.{PartitionResult#dnsSuffix}", i],
|
|
97
|
+
[a, "FIPS is enabled but this partition does not support FIPS"],
|
|
98
|
+
["https://elasticbeanstalk.{Region}.{PartitionResult#dualStackDnsSuffix}", i],
|
|
99
|
+
[a, "DualStack is enabled but this partition does not support DualStack"],
|
|
100
|
+
["https://elasticbeanstalk.{Region}.{PartitionResult#dnsSuffix}", i],
|
|
101
|
+
[a, "Invalid Configuration: Missing Region"]
|
|
102
|
+
]
|
|
103
|
+
};
|
|
104
|
+
const root = 2;
|
|
105
|
+
const r = 100_000_000;
|
|
106
|
+
const nodes = new Int32Array([
|
|
107
|
+
-1, 1, -1,
|
|
108
|
+
0, 13, 3,
|
|
109
|
+
1, 4, r + 12,
|
|
110
|
+
2, 5, r + 12,
|
|
111
|
+
3, 8, 6,
|
|
112
|
+
4, 7, r + 11,
|
|
113
|
+
5, r + 9, r + 10,
|
|
114
|
+
4, 11, 9,
|
|
115
|
+
6, 10, r + 8,
|
|
116
|
+
7, r + 6, r + 7,
|
|
117
|
+
5, 12, r + 5,
|
|
118
|
+
6, r + 4, r + 5,
|
|
119
|
+
3, r + 1, 14,
|
|
120
|
+
4, r + 2, r + 3,
|
|
121
|
+
]);
|
|
122
|
+
const bdd = BinaryDecisionDiagram.from(nodes, root, _data.conditions, _data.results);
|
|
123
|
+
|
|
124
|
+
const cache = new EndpointCache({
|
|
125
|
+
size: 50,
|
|
126
|
+
params: ["Endpoint", "Region", "UseDualStack", "UseFIPS"],
|
|
127
|
+
});
|
|
128
|
+
const defaultEndpointResolver = (endpointParams, context = {}) => {
|
|
129
|
+
return cache.get(endpointParams, () => decideEndpoint(bdd, {
|
|
130
|
+
endpointParams: endpointParams,
|
|
131
|
+
logger: context.logger,
|
|
132
|
+
}));
|
|
133
|
+
};
|
|
134
|
+
customEndpointFunctions.aws = awsEndpointFunctions;
|
|
135
|
+
|
|
136
|
+
class ElasticBeanstalkSyntheticServiceException extends ServiceException {
|
|
137
|
+
constructor(options) {
|
|
138
|
+
super(options);
|
|
139
|
+
Object.setPrototypeOf(this, ElasticBeanstalkSyntheticServiceException.prototype);
|
|
140
|
+
}
|
|
141
|
+
}
|
|
142
|
+
|
|
143
|
+
class InsufficientPrivilegesException extends ElasticBeanstalkSyntheticServiceException {
|
|
144
|
+
name = "InsufficientPrivilegesException";
|
|
145
|
+
$fault = "client";
|
|
146
|
+
constructor(opts) {
|
|
147
|
+
super({
|
|
148
|
+
name: "InsufficientPrivilegesException",
|
|
149
|
+
$fault: "client",
|
|
150
|
+
...opts,
|
|
151
|
+
});
|
|
152
|
+
Object.setPrototypeOf(this, InsufficientPrivilegesException.prototype);
|
|
153
|
+
}
|
|
154
|
+
}
|
|
155
|
+
class ElasticBeanstalkServiceException extends ElasticBeanstalkSyntheticServiceException {
|
|
156
|
+
name = "ElasticBeanstalkServiceException";
|
|
157
|
+
$fault = "client";
|
|
158
|
+
constructor(opts) {
|
|
159
|
+
super({
|
|
160
|
+
name: "ElasticBeanstalkServiceException",
|
|
161
|
+
$fault: "client",
|
|
162
|
+
...opts,
|
|
163
|
+
});
|
|
164
|
+
Object.setPrototypeOf(this, ElasticBeanstalkServiceException.prototype);
|
|
165
|
+
}
|
|
166
|
+
}
|
|
167
|
+
class ManagedActionInvalidStateException extends ElasticBeanstalkSyntheticServiceException {
|
|
168
|
+
name = "ManagedActionInvalidStateException";
|
|
169
|
+
$fault = "client";
|
|
170
|
+
constructor(opts) {
|
|
171
|
+
super({
|
|
172
|
+
name: "ManagedActionInvalidStateException",
|
|
173
|
+
$fault: "client",
|
|
174
|
+
...opts,
|
|
175
|
+
});
|
|
176
|
+
Object.setPrototypeOf(this, ManagedActionInvalidStateException.prototype);
|
|
177
|
+
}
|
|
178
|
+
}
|
|
179
|
+
class TooManyEnvironmentsException extends ElasticBeanstalkSyntheticServiceException {
|
|
180
|
+
name = "TooManyEnvironmentsException";
|
|
181
|
+
$fault = "client";
|
|
182
|
+
constructor(opts) {
|
|
183
|
+
super({
|
|
184
|
+
name: "TooManyEnvironmentsException",
|
|
185
|
+
$fault: "client",
|
|
186
|
+
...opts,
|
|
187
|
+
});
|
|
188
|
+
Object.setPrototypeOf(this, TooManyEnvironmentsException.prototype);
|
|
189
|
+
}
|
|
190
|
+
}
|
|
191
|
+
class TooManyApplicationsException extends ElasticBeanstalkSyntheticServiceException {
|
|
192
|
+
name = "TooManyApplicationsException";
|
|
193
|
+
$fault = "client";
|
|
194
|
+
constructor(opts) {
|
|
195
|
+
super({
|
|
196
|
+
name: "TooManyApplicationsException",
|
|
197
|
+
$fault: "client",
|
|
198
|
+
...opts,
|
|
199
|
+
});
|
|
200
|
+
Object.setPrototypeOf(this, TooManyApplicationsException.prototype);
|
|
201
|
+
}
|
|
202
|
+
}
|
|
203
|
+
class CodeBuildNotInServiceRegionException extends ElasticBeanstalkSyntheticServiceException {
|
|
204
|
+
name = "CodeBuildNotInServiceRegionException";
|
|
205
|
+
$fault = "client";
|
|
206
|
+
constructor(opts) {
|
|
207
|
+
super({
|
|
208
|
+
name: "CodeBuildNotInServiceRegionException",
|
|
209
|
+
$fault: "client",
|
|
210
|
+
...opts,
|
|
211
|
+
});
|
|
212
|
+
Object.setPrototypeOf(this, CodeBuildNotInServiceRegionException.prototype);
|
|
213
|
+
}
|
|
214
|
+
}
|
|
215
|
+
class S3LocationNotInServiceRegionException extends ElasticBeanstalkSyntheticServiceException {
|
|
216
|
+
name = "S3LocationNotInServiceRegionException";
|
|
217
|
+
$fault = "client";
|
|
218
|
+
constructor(opts) {
|
|
219
|
+
super({
|
|
220
|
+
name: "S3LocationNotInServiceRegionException",
|
|
221
|
+
$fault: "client",
|
|
222
|
+
...opts,
|
|
223
|
+
});
|
|
224
|
+
Object.setPrototypeOf(this, S3LocationNotInServiceRegionException.prototype);
|
|
225
|
+
}
|
|
226
|
+
}
|
|
227
|
+
class TooManyApplicationVersionsException extends ElasticBeanstalkSyntheticServiceException {
|
|
228
|
+
name = "TooManyApplicationVersionsException";
|
|
229
|
+
$fault = "client";
|
|
230
|
+
constructor(opts) {
|
|
231
|
+
super({
|
|
232
|
+
name: "TooManyApplicationVersionsException",
|
|
233
|
+
$fault: "client",
|
|
234
|
+
...opts,
|
|
235
|
+
});
|
|
236
|
+
Object.setPrototypeOf(this, TooManyApplicationVersionsException.prototype);
|
|
237
|
+
}
|
|
238
|
+
}
|
|
239
|
+
class TooManyBucketsException extends ElasticBeanstalkSyntheticServiceException {
|
|
240
|
+
name = "TooManyBucketsException";
|
|
241
|
+
$fault = "client";
|
|
242
|
+
constructor(opts) {
|
|
243
|
+
super({
|
|
244
|
+
name: "TooManyBucketsException",
|
|
245
|
+
$fault: "client",
|
|
246
|
+
...opts,
|
|
247
|
+
});
|
|
248
|
+
Object.setPrototypeOf(this, TooManyBucketsException.prototype);
|
|
249
|
+
}
|
|
250
|
+
}
|
|
251
|
+
class TooManyConfigurationTemplatesException extends ElasticBeanstalkSyntheticServiceException {
|
|
252
|
+
name = "TooManyConfigurationTemplatesException";
|
|
253
|
+
$fault = "client";
|
|
254
|
+
constructor(opts) {
|
|
255
|
+
super({
|
|
256
|
+
name: "TooManyConfigurationTemplatesException",
|
|
257
|
+
$fault: "client",
|
|
258
|
+
...opts,
|
|
259
|
+
});
|
|
260
|
+
Object.setPrototypeOf(this, TooManyConfigurationTemplatesException.prototype);
|
|
261
|
+
}
|
|
262
|
+
}
|
|
263
|
+
class TooManyPlatformsException extends ElasticBeanstalkSyntheticServiceException {
|
|
264
|
+
name = "TooManyPlatformsException";
|
|
265
|
+
$fault = "client";
|
|
266
|
+
constructor(opts) {
|
|
267
|
+
super({
|
|
268
|
+
name: "TooManyPlatformsException",
|
|
269
|
+
$fault: "client",
|
|
270
|
+
...opts,
|
|
271
|
+
});
|
|
272
|
+
Object.setPrototypeOf(this, TooManyPlatformsException.prototype);
|
|
273
|
+
}
|
|
274
|
+
}
|
|
275
|
+
class S3SubscriptionRequiredException extends ElasticBeanstalkSyntheticServiceException {
|
|
276
|
+
name = "S3SubscriptionRequiredException";
|
|
277
|
+
$fault = "client";
|
|
278
|
+
constructor(opts) {
|
|
279
|
+
super({
|
|
280
|
+
name: "S3SubscriptionRequiredException",
|
|
281
|
+
$fault: "client",
|
|
282
|
+
...opts,
|
|
283
|
+
});
|
|
284
|
+
Object.setPrototypeOf(this, S3SubscriptionRequiredException.prototype);
|
|
285
|
+
}
|
|
286
|
+
}
|
|
287
|
+
class OperationInProgressException extends ElasticBeanstalkSyntheticServiceException {
|
|
288
|
+
name = "OperationInProgressException";
|
|
289
|
+
$fault = "client";
|
|
290
|
+
constructor(opts) {
|
|
291
|
+
super({
|
|
292
|
+
name: "OperationInProgressException",
|
|
293
|
+
$fault: "client",
|
|
294
|
+
...opts,
|
|
295
|
+
});
|
|
296
|
+
Object.setPrototypeOf(this, OperationInProgressException.prototype);
|
|
297
|
+
}
|
|
298
|
+
}
|
|
299
|
+
class SourceBundleDeletionException extends ElasticBeanstalkSyntheticServiceException {
|
|
300
|
+
name = "SourceBundleDeletionException";
|
|
301
|
+
$fault = "client";
|
|
302
|
+
constructor(opts) {
|
|
303
|
+
super({
|
|
304
|
+
name: "SourceBundleDeletionException",
|
|
305
|
+
$fault: "client",
|
|
306
|
+
...opts,
|
|
307
|
+
});
|
|
308
|
+
Object.setPrototypeOf(this, SourceBundleDeletionException.prototype);
|
|
309
|
+
}
|
|
310
|
+
}
|
|
311
|
+
class PlatformVersionStillReferencedException extends ElasticBeanstalkSyntheticServiceException {
|
|
312
|
+
name = "PlatformVersionStillReferencedException";
|
|
313
|
+
$fault = "client";
|
|
314
|
+
constructor(opts) {
|
|
315
|
+
super({
|
|
316
|
+
name: "PlatformVersionStillReferencedException",
|
|
317
|
+
$fault: "client",
|
|
318
|
+
...opts,
|
|
319
|
+
});
|
|
320
|
+
Object.setPrototypeOf(this, PlatformVersionStillReferencedException.prototype);
|
|
321
|
+
}
|
|
322
|
+
}
|
|
323
|
+
class InvalidRequestException extends ElasticBeanstalkSyntheticServiceException {
|
|
324
|
+
name = "InvalidRequestException";
|
|
325
|
+
$fault = "client";
|
|
326
|
+
constructor(opts) {
|
|
327
|
+
super({
|
|
328
|
+
name: "InvalidRequestException",
|
|
329
|
+
$fault: "client",
|
|
330
|
+
...opts,
|
|
331
|
+
});
|
|
332
|
+
Object.setPrototypeOf(this, InvalidRequestException.prototype);
|
|
333
|
+
}
|
|
334
|
+
}
|
|
335
|
+
class ResourceNotFoundException extends ElasticBeanstalkSyntheticServiceException {
|
|
336
|
+
name = "ResourceNotFoundException";
|
|
337
|
+
$fault = "client";
|
|
338
|
+
constructor(opts) {
|
|
339
|
+
super({
|
|
340
|
+
name: "ResourceNotFoundException",
|
|
341
|
+
$fault: "client",
|
|
342
|
+
...opts,
|
|
343
|
+
});
|
|
344
|
+
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
345
|
+
}
|
|
346
|
+
}
|
|
347
|
+
class ResourceTypeNotSupportedException extends ElasticBeanstalkSyntheticServiceException {
|
|
348
|
+
name = "ResourceTypeNotSupportedException";
|
|
349
|
+
$fault = "client";
|
|
350
|
+
constructor(opts) {
|
|
351
|
+
super({
|
|
352
|
+
name: "ResourceTypeNotSupportedException",
|
|
353
|
+
$fault: "client",
|
|
354
|
+
...opts,
|
|
355
|
+
});
|
|
356
|
+
Object.setPrototypeOf(this, ResourceTypeNotSupportedException.prototype);
|
|
357
|
+
}
|
|
358
|
+
}
|
|
359
|
+
class TooManyTagsException extends ElasticBeanstalkSyntheticServiceException {
|
|
360
|
+
name = "TooManyTagsException";
|
|
361
|
+
$fault = "client";
|
|
362
|
+
constructor(opts) {
|
|
363
|
+
super({
|
|
364
|
+
name: "TooManyTagsException",
|
|
365
|
+
$fault: "client",
|
|
366
|
+
...opts,
|
|
367
|
+
});
|
|
368
|
+
Object.setPrototypeOf(this, TooManyTagsException.prototype);
|
|
369
|
+
}
|
|
370
|
+
}
|
|
371
|
+
|
|
372
|
+
const _A = "Application";
|
|
373
|
+
const _AA = "ApplicationArn";
|
|
374
|
+
const _ACA = "AutoCreateApplication";
|
|
375
|
+
const _AD = "ApplicationDescription";
|
|
376
|
+
const _ADL = "ApplicationDescriptionList";
|
|
377
|
+
const _ADM = "ApplicationDescriptionMessage";
|
|
378
|
+
const _ADMp = "ApplicationDescriptionsMessage";
|
|
379
|
+
const _ADc = "ActionDescription";
|
|
380
|
+
const _AEMA = "ApplyEnvironmentManagedAction";
|
|
381
|
+
const _AEMAR = "ApplyEnvironmentManagedActionRequest";
|
|
382
|
+
const _AEMARp = "ApplyEnvironmentManagedActionResult";
|
|
383
|
+
const _AEOR = "AssociateEnvironmentOperationsRole";
|
|
384
|
+
const _AEORM = "AssociateEnvironmentOperationsRoleMessage";
|
|
385
|
+
const _AEU = "AbortEnvironmentUpdate";
|
|
386
|
+
const _AEUM = "AbortEnvironmentUpdateMessage";
|
|
387
|
+
const _AI = "ActionId";
|
|
388
|
+
const _AM = "ApplicationMetrics";
|
|
389
|
+
const _AN = "ApplicationName";
|
|
390
|
+
const _ANp = "ApplicationNames";
|
|
391
|
+
const _ANr = "ArtifactName";
|
|
392
|
+
const _ANt = "AttributeNames";
|
|
393
|
+
const _AOIP = "AbortableOperationInProgress";
|
|
394
|
+
const _AQ = "ApplicationQuota";
|
|
395
|
+
const _ARLC = "ApplicationResourceLifecycleConfig";
|
|
396
|
+
const _ARLDM = "ApplicationResourceLifecycleDescriptionMessage";
|
|
397
|
+
const _ARN = "ARN";
|
|
398
|
+
const _ASG = "AutoScalingGroup";
|
|
399
|
+
const _ASGL = "AutoScalingGroupList";
|
|
400
|
+
const _ASGu = "AutoScalingGroups";
|
|
401
|
+
const _ASSDL = "AvailableSolutionStackDetailsList";
|
|
402
|
+
const _AT = "ActionType";
|
|
403
|
+
const _AV = "ApplicationVersion";
|
|
404
|
+
const _AVA = "ApplicationVersionArn";
|
|
405
|
+
const _AVD = "ApplicationVersionDescription";
|
|
406
|
+
const _AVDL = "ApplicationVersionDescriptionList";
|
|
407
|
+
const _AVDM = "ApplicationVersionDescriptionMessage";
|
|
408
|
+
const _AVDMp = "ApplicationVersionDescriptionsMessage";
|
|
409
|
+
const _AVLC = "ApplicationVersionLifecycleConfig";
|
|
410
|
+
const _AVQ = "ApplicationVersionQuota";
|
|
411
|
+
const _AVp = "ApplicationVersions";
|
|
412
|
+
const _AZ = "AvailabilityZone";
|
|
413
|
+
const _Ap = "Applications";
|
|
414
|
+
const _At = "Attribute";
|
|
415
|
+
const _Av = "Available";
|
|
416
|
+
const _B = "Builder";
|
|
417
|
+
const _BA = "BuildArn";
|
|
418
|
+
const _BC = "BuildConfiguration";
|
|
419
|
+
const _BN = "BranchName";
|
|
420
|
+
const _BO = "BranchOrder";
|
|
421
|
+
const _C = "Color";
|
|
422
|
+
const _CA = "CustomAmi";
|
|
423
|
+
const _CAL = "CustomAmiList";
|
|
424
|
+
const _CAM = "CreateApplicationMessage";
|
|
425
|
+
const _CAV = "CreateApplicationVersion";
|
|
426
|
+
const _CAVM = "CreateApplicationVersionMessage";
|
|
427
|
+
const _CAr = "CreateApplication";
|
|
428
|
+
const _CBNISRE = "CodeBuildNotInServiceRegionException";
|
|
429
|
+
const _CBSR = "CodeBuildServiceRole";
|
|
430
|
+
const _CCT = "CreateConfigurationTemplate";
|
|
431
|
+
const _CCTM = "CreateConfigurationTemplateMessage";
|
|
432
|
+
const _CDNSA = "CheckDNSAvailability";
|
|
433
|
+
const _CDNSAM = "CheckDNSAvailabilityMessage";
|
|
434
|
+
const _CDNSARM = "CheckDNSAvailabilityResultMessage";
|
|
435
|
+
const _CE = "ComposeEnvironments";
|
|
436
|
+
const _CEM = "ComposeEnvironmentsMessage";
|
|
437
|
+
const _CEMr = "CreateEnvironmentMessage";
|
|
438
|
+
const _CEr = "CreateEnvironment";
|
|
439
|
+
const _CNAME = "CNAME";
|
|
440
|
+
const _CNAMEP = "CNAMEPrefix";
|
|
441
|
+
const _COD = "ConfigurationOptionDescription";
|
|
442
|
+
const _CODL = "ConfigurationOptionDescriptionsList";
|
|
443
|
+
const _CODo = "ConfigurationOptionsDescription";
|
|
444
|
+
const _COS = "ConfigurationOptionSetting";
|
|
445
|
+
const _COSL = "ConfigurationOptionSettingsList";
|
|
446
|
+
const _CPQ = "CustomPlatformQuota";
|
|
447
|
+
const _CPUU = "CPUUtilization";
|
|
448
|
+
const _CPV = "CreatePlatformVersion";
|
|
449
|
+
const _CPVR = "CreatePlatformVersionRequest";
|
|
450
|
+
const _CPVRr = "CreatePlatformVersionResult";
|
|
451
|
+
const _CS = "ChangeSeverity";
|
|
452
|
+
const _CSD = "ConfigurationSettingsDescription";
|
|
453
|
+
const _CSDL = "ConfigurationSettingsDescriptionList";
|
|
454
|
+
const _CSDo = "ConfigurationSettingsDescriptions";
|
|
455
|
+
const _CSL = "CreateStorageLocation";
|
|
456
|
+
const _CSLRM = "CreateStorageLocationResultMessage";
|
|
457
|
+
const _CSVM = "ConfigurationSettingsValidationMessages";
|
|
458
|
+
const _CSo = "ConfigurationSettings";
|
|
459
|
+
const _CT = "ConfigurationTemplates";
|
|
460
|
+
const _CTQ = "ConfigurationTemplateQuota";
|
|
461
|
+
const _CTo = "ComputeType";
|
|
462
|
+
const _Ca = "Causes";
|
|
463
|
+
const _D = "Description";
|
|
464
|
+
const _DA = "DeleteApplication";
|
|
465
|
+
const _DAA = "DescribeAccountAttributes";
|
|
466
|
+
const _DAAR = "DescribeAccountAttributesResult";
|
|
467
|
+
const _DAM = "DeleteApplicationMessage";
|
|
468
|
+
const _DAMe = "DescribeApplicationsMessage";
|
|
469
|
+
const _DAV = "DeleteApplicationVersion";
|
|
470
|
+
const _DAVM = "DeleteApplicationVersionMessage";
|
|
471
|
+
const _DAVMe = "DescribeApplicationVersionsMessage";
|
|
472
|
+
const _DAVe = "DescribeApplicationVersions";
|
|
473
|
+
const _DAe = "DescribeApplications";
|
|
474
|
+
const _DC = "DateCreated";
|
|
475
|
+
const _DCO = "DescribeConfigurationOptions";
|
|
476
|
+
const _DCOM = "DescribeConfigurationOptionsMessage";
|
|
477
|
+
const _DCS = "DescribeConfigurationSettings";
|
|
478
|
+
const _DCSM = "DescribeConfigurationSettingsMessage";
|
|
479
|
+
const _DCT = "DeleteConfigurationTemplate";
|
|
480
|
+
const _DCTM = "DeleteConfigurationTemplateMessage";
|
|
481
|
+
const _DE = "DescribeEnvironments";
|
|
482
|
+
const _DEC = "DeleteEnvironmentConfiguration";
|
|
483
|
+
const _DECM = "DeleteEnvironmentConfigurationMessage";
|
|
484
|
+
const _DEH = "DescribeEnvironmentHealth";
|
|
485
|
+
const _DEHR = "DescribeEnvironmentHealthRequest";
|
|
486
|
+
const _DEHRe = "DescribeEnvironmentHealthResult";
|
|
487
|
+
const _DEI = "DestinationEnvironmentId";
|
|
488
|
+
const _DEM = "DescribeEnvironmentsMessage";
|
|
489
|
+
const _DEMA = "DescribeEnvironmentManagedActions";
|
|
490
|
+
const _DEMAH = "DescribeEnvironmentManagedActionHistory";
|
|
491
|
+
const _DEMAHR = "DescribeEnvironmentManagedActionHistoryRequest";
|
|
492
|
+
const _DEMAHRe = "DescribeEnvironmentManagedActionHistoryResult";
|
|
493
|
+
const _DEMAR = "DescribeEnvironmentManagedActionsRequest";
|
|
494
|
+
const _DEMARe = "DescribeEnvironmentManagedActionsResult";
|
|
495
|
+
const _DEMe = "DescribeEventsMessage";
|
|
496
|
+
const _DEN = "DestinationEnvironmentName";
|
|
497
|
+
const _DEOR = "DisassociateEnvironmentOperationsRole";
|
|
498
|
+
const _DEORM = "DisassociateEnvironmentOperationsRoleMessage";
|
|
499
|
+
const _DER = "DescribeEnvironmentResources";
|
|
500
|
+
const _DERM = "DescribeEnvironmentResourcesMessage";
|
|
501
|
+
const _DEe = "DescribeEvents";
|
|
502
|
+
const _DI = "DeploymentId";
|
|
503
|
+
const _DIH = "DescribeInstancesHealth";
|
|
504
|
+
const _DIHR = "DescribeInstancesHealthRequest";
|
|
505
|
+
const _DIHRe = "DescribeInstancesHealthResult";
|
|
506
|
+
const _DPV = "DeletePlatformVersion";
|
|
507
|
+
const _DPVR = "DeletePlatformVersionRequest";
|
|
508
|
+
const _DPVRe = "DeletePlatformVersionResult";
|
|
509
|
+
const _DPVRes = "DescribePlatformVersionRequest";
|
|
510
|
+
const _DPVResc = "DescribePlatformVersionResult";
|
|
511
|
+
const _DPVe = "DescribePlatformVersion";
|
|
512
|
+
const _DS = "DeploymentStatus";
|
|
513
|
+
const _DSB = "DeleteSourceBundle";
|
|
514
|
+
const _DSFS = "DeleteSourceFromS3";
|
|
515
|
+
const _DT = "DeploymentTime";
|
|
516
|
+
const _DU = "DateUpdated";
|
|
517
|
+
const _DV = "DefaultValue";
|
|
518
|
+
const _De = "Deployment";
|
|
519
|
+
const _Deg = "Degraded";
|
|
520
|
+
const _Do = "Domain";
|
|
521
|
+
const _Du = "Duration";
|
|
522
|
+
const _E = "Environments";
|
|
523
|
+
const _EA = "EnvironmentArn";
|
|
524
|
+
const _EBSE = "ElasticBeanstalkServiceException";
|
|
525
|
+
const _ED = "EnvironmentDescription";
|
|
526
|
+
const _EDL = "EnvironmentDescriptionsList";
|
|
527
|
+
const _EDLv = "EventDescriptionList";
|
|
528
|
+
const _EDM = "EnvironmentDescriptionsMessage";
|
|
529
|
+
const _EDMv = "EventDescriptionsMessage";
|
|
530
|
+
const _EDv = "EventDescription";
|
|
531
|
+
const _EDve = "EventDate";
|
|
532
|
+
const _EI = "EnvironmentId";
|
|
533
|
+
const _EID = "EnvironmentInfoDescription";
|
|
534
|
+
const _EIDL = "EnvironmentInfoDescriptionList";
|
|
535
|
+
const _EII = "Ec2InstanceId";
|
|
536
|
+
const _EIn = "EnvironmentIds";
|
|
537
|
+
const _EInv = "EnvironmentInfo";
|
|
538
|
+
const _EL = "EnvironmentLinks";
|
|
539
|
+
const _ELn = "EnvironmentLink";
|
|
540
|
+
const _EN = "EnvironmentName";
|
|
541
|
+
const _ENn = "EnvironmentNames";
|
|
542
|
+
const _EQ = "EnvironmentQuota";
|
|
543
|
+
const _ER = "EnvironmentResources";
|
|
544
|
+
const _ERD = "EnvironmentResourceDescription";
|
|
545
|
+
const _ERDM = "EnvironmentResourceDescriptionsMessage";
|
|
546
|
+
const _ERDn = "EnvironmentResourcesDescription";
|
|
547
|
+
const _ET = "EndTime";
|
|
548
|
+
const _ETn = "EnvironmentTier";
|
|
549
|
+
const _ETx = "ExecutedTime";
|
|
550
|
+
const _EURL = "EndpointURL";
|
|
551
|
+
const _En = "Enabled";
|
|
552
|
+
const _Ev = "Events";
|
|
553
|
+
const _F = "Filters";
|
|
554
|
+
const _FD = "FailureDescription";
|
|
555
|
+
const _FQCNAME = "FullyQualifiedCNAME";
|
|
556
|
+
const _FT = "FailureType";
|
|
557
|
+
const _FTi = "FinishedTime";
|
|
558
|
+
const _FTo = "ForceTerminate";
|
|
559
|
+
const _Fr = "Frameworks";
|
|
560
|
+
const _GN = "GroupName";
|
|
561
|
+
const _H = "Health";
|
|
562
|
+
const _HS = "HealthStatus";
|
|
563
|
+
const _I = "Image";
|
|
564
|
+
const _ID = "IncludeDeleted";
|
|
565
|
+
const _IDBT = "IncludedDeletedBackTo";
|
|
566
|
+
const _IH = "InstancesHealth";
|
|
567
|
+
const _IHL = "InstanceHealthList";
|
|
568
|
+
const _IHS = "InstanceHealthSummary";
|
|
569
|
+
const _II = "ImageId";
|
|
570
|
+
const _IIn = "InstanceId";
|
|
571
|
+
const _IL = "InstanceList";
|
|
572
|
+
const _IOW = "IOWait";
|
|
573
|
+
const _IPE = "InsufficientPrivilegesException";
|
|
574
|
+
const _IRE = "InvalidRequestException";
|
|
575
|
+
const _IRQ = "IRQ";
|
|
576
|
+
const _IT = "InfoType";
|
|
577
|
+
const _ITn = "InstanceType";
|
|
578
|
+
const _Id = "Idle";
|
|
579
|
+
const _Id_ = "Id";
|
|
580
|
+
const _In = "Instances";
|
|
581
|
+
const _Inf = "Info";
|
|
582
|
+
const _Ins = "Instance";
|
|
583
|
+
const _K = "Key";
|
|
584
|
+
const _L = "Latency";
|
|
585
|
+
const _LA = "LaunchedAt";
|
|
586
|
+
const _LASS = "ListAvailableSolutionStacks";
|
|
587
|
+
const _LASSRM = "ListAvailableSolutionStacksResultMessage";
|
|
588
|
+
const _LAo = "LoadAverage";
|
|
589
|
+
const _LB = "LoadBalancers";
|
|
590
|
+
const _LBD = "LoadBalancerDescription";
|
|
591
|
+
const _LBL = "LoadBalancerList";
|
|
592
|
+
const _LBLD = "LoadBalancerListenersDescription";
|
|
593
|
+
const _LBN = "LoadBalancerName";
|
|
594
|
+
const _LBo = "LoadBalancer";
|
|
595
|
+
const _LC = "LaunchConfigurations";
|
|
596
|
+
const _LCL = "LaunchConfigurationList";
|
|
597
|
+
const _LCa = "LaunchConfiguration";
|
|
598
|
+
const _LN = "LinkName";
|
|
599
|
+
const _LPB = "ListPlatformBranches";
|
|
600
|
+
const _LPBR = "ListPlatformBranchesRequest";
|
|
601
|
+
const _LPBRi = "ListPlatformBranchesResult";
|
|
602
|
+
const _LPV = "ListPlatformVersions";
|
|
603
|
+
const _LPVR = "ListPlatformVersionsRequest";
|
|
604
|
+
const _LPVRi = "ListPlatformVersionsResult";
|
|
605
|
+
const _LS = "LifecycleState";
|
|
606
|
+
const _LT = "LaunchTemplates";
|
|
607
|
+
const _LTFR = "ListTagsForResource";
|
|
608
|
+
const _LTFRM = "ListTagsForResourceMessage";
|
|
609
|
+
const _LTL = "LaunchTemplateList";
|
|
610
|
+
const _LTa = "LaunchTemplate";
|
|
611
|
+
const _La = "Label";
|
|
612
|
+
const _Li = "Listener";
|
|
613
|
+
const _Lis = "Listeners";
|
|
614
|
+
const _M = "Messages";
|
|
615
|
+
const _MA = "ManagedActions";
|
|
616
|
+
const _MAHI = "ManagedActionHistoryItems";
|
|
617
|
+
const _MAHIa = "ManagedActionHistoryItem";
|
|
618
|
+
const _MAID = "MaxAgeInDays";
|
|
619
|
+
const _MAISE = "ManagedActionInvalidStateException";
|
|
620
|
+
const _MAR = "MaxAgeRule";
|
|
621
|
+
const _MAa = "ManagedAction";
|
|
622
|
+
const _MC = "MaxCount";
|
|
623
|
+
const _MCR = "MaxCountRule";
|
|
624
|
+
const _MI = "MaxItems";
|
|
625
|
+
const _ML = "MaxLength";
|
|
626
|
+
const _MR = "MaxRecords";
|
|
627
|
+
const _MV = "MinValue";
|
|
628
|
+
const _MVa = "MaxValue";
|
|
629
|
+
const _Ma = "Maintainer";
|
|
630
|
+
const _Max = "Maximum";
|
|
631
|
+
const _Me = "Message";
|
|
632
|
+
const _N = "Name";
|
|
633
|
+
const _ND = "NoData";
|
|
634
|
+
const _NT = "NextToken";
|
|
635
|
+
const _Na = "Namespace";
|
|
636
|
+
const _Ni = "Nice";
|
|
637
|
+
const _O = "Options";
|
|
638
|
+
const _OIPE = "OperationInProgressException";
|
|
639
|
+
const _ON = "OptionName";
|
|
640
|
+
const _OR = "OperationsRole";
|
|
641
|
+
const _ORR = "OptionRestrictionRegex";
|
|
642
|
+
const _OS = "OptionSettings";
|
|
643
|
+
const _OSL = "OptionsSpecifierList";
|
|
644
|
+
const _OSN = "OperatingSystemName";
|
|
645
|
+
const _OSV = "OperatingSystemVersion";
|
|
646
|
+
const _OSp = "OptionSpecification";
|
|
647
|
+
const _OTR = "OptionsToRemove";
|
|
648
|
+
const _Ok = "Ok";
|
|
649
|
+
const _Op = "Operator";
|
|
650
|
+
const _P = "Privileged";
|
|
651
|
+
const _PA = "PlatformArn";
|
|
652
|
+
const _PBLS = "PlatformBranchLifecycleState";
|
|
653
|
+
const _PBN = "PlatformBranchName";
|
|
654
|
+
const _PBS = "PlatformBranchSummary";
|
|
655
|
+
const _PBSL = "PlatformBranchSummaryList";
|
|
656
|
+
const _PC = "PlatformCategory";
|
|
657
|
+
const _PD = "PlatformDescription";
|
|
658
|
+
const _PDB = "PlatformDefinitionBundle";
|
|
659
|
+
const _PF = "PlatformFilter";
|
|
660
|
+
const _PFT = "PermittedFileTypes";
|
|
661
|
+
const _PFl = "PlatformFramework";
|
|
662
|
+
const _PFla = "PlatformFilters";
|
|
663
|
+
const _PFlat = "PlatformFrameworks";
|
|
664
|
+
const _PL = "ProgrammingLanguages";
|
|
665
|
+
const _PLS = "PlatformLifecycleState";
|
|
666
|
+
const _PN = "PlatformName";
|
|
667
|
+
const _PO = "PlatformOwner";
|
|
668
|
+
const _PPL = "PlatformProgrammingLanguage";
|
|
669
|
+
const _PPLl = "PlatformProgrammingLanguages";
|
|
670
|
+
const _PS = "PlatformSummary";
|
|
671
|
+
const _PSL = "PlatformSummaryList";
|
|
672
|
+
const _PSl = "PlatformStatus";
|
|
673
|
+
const _PV = "PlatformVersion";
|
|
674
|
+
const _PVSRE = "PlatformVersionStillReferencedException";
|
|
675
|
+
const _P_ = "P999";
|
|
676
|
+
const _P__ = "P99";
|
|
677
|
+
const _P___ = "P95";
|
|
678
|
+
const _P____ = "P90";
|
|
679
|
+
const _P_____ = "P85";
|
|
680
|
+
const _P______ = "P75";
|
|
681
|
+
const _P_______ = "P50";
|
|
682
|
+
const _P________ = "P10";
|
|
683
|
+
const _Pa = "Pattern";
|
|
684
|
+
const _Pe = "Pending";
|
|
685
|
+
const _Po = "Port";
|
|
686
|
+
const _Pr = "Process";
|
|
687
|
+
const _Pro = "Protocol";
|
|
688
|
+
const _Q = "Queues";
|
|
689
|
+
const _QL = "QueueList";
|
|
690
|
+
const _Qu = "Queue";
|
|
691
|
+
const _R = "Regex";
|
|
692
|
+
const _RA = "RefreshedAt";
|
|
693
|
+
const _RAS = "RestartAppServer";
|
|
694
|
+
const _RASM = "RestartAppServerMessage";
|
|
695
|
+
const _RAe = "ResourceArn";
|
|
696
|
+
const _RC = "RequestCount";
|
|
697
|
+
const _RE = "RebuildEnvironment";
|
|
698
|
+
const _REI = "RequestEnvironmentInfo";
|
|
699
|
+
const _REIM = "RequestEnvironmentInfoMessage";
|
|
700
|
+
const _REIMe = "RetrieveEnvironmentInfoMessage";
|
|
701
|
+
const _REIRM = "RetrieveEnvironmentInfoResultMessage";
|
|
702
|
+
const _REIe = "RetrieveEnvironmentInfo";
|
|
703
|
+
const _REM = "RebuildEnvironmentMessage";
|
|
704
|
+
const _RI = "RequestId";
|
|
705
|
+
const _RLC = "ResourceLifecycleConfig";
|
|
706
|
+
const _RN = "ResourceName";
|
|
707
|
+
const _RNFE = "ResourceNotFoundException";
|
|
708
|
+
const _RQ = "ResourceQuotas";
|
|
709
|
+
const _RQe = "ResourceQuota";
|
|
710
|
+
const _RT = "ResourceTags";
|
|
711
|
+
const _RTDM = "ResourceTagsDescriptionMessage";
|
|
712
|
+
const _RTNSE = "ResourceTypeNotSupportedException";
|
|
713
|
+
const _Re = "Resources";
|
|
714
|
+
const _S = "Status";
|
|
715
|
+
const _SAL = "SupportedAddonList";
|
|
716
|
+
const _SB = "SourceBundle";
|
|
717
|
+
const _SBDE = "SourceBundleDeletionException";
|
|
718
|
+
const _SBI = "SourceBuildInformation";
|
|
719
|
+
const _SBu = "S3Bucket";
|
|
720
|
+
const _SC = "StatusCodes";
|
|
721
|
+
const _SCo = "SourceConfiguration";
|
|
722
|
+
const _SECNAME = "SwapEnvironmentCNAMEs";
|
|
723
|
+
const _SECNAMEM = "SwapEnvironmentCNAMEsMessage";
|
|
724
|
+
const _SEI = "SourceEnvironmentId";
|
|
725
|
+
const _SEN = "SourceEnvironmentName";
|
|
726
|
+
const _SF = "SearchFilter";
|
|
727
|
+
const _SFe = "SearchFilters";
|
|
728
|
+
const _SIH = "SingleInstanceHealth";
|
|
729
|
+
const _SIRQ = "SoftIRQ";
|
|
730
|
+
const _SK = "S3Key";
|
|
731
|
+
const _SL = "S3Location";
|
|
732
|
+
const _SLNISRE = "S3LocationNotInServiceRegionException";
|
|
733
|
+
const _SLo = "SourceLocation";
|
|
734
|
+
const _SR = "ServiceRole";
|
|
735
|
+
const _SRo = "SourceRepository";
|
|
736
|
+
const _SS = "SolutionStacks";
|
|
737
|
+
const _SSD = "SolutionStackDetails";
|
|
738
|
+
const _SSDo = "SolutionStackDescription";
|
|
739
|
+
const _SSN = "SolutionStackName";
|
|
740
|
+
const _SSRE = "S3SubscriptionRequiredException";
|
|
741
|
+
const _SSy = "SystemStatus";
|
|
742
|
+
const _ST = "StartTime";
|
|
743
|
+
const _STL = "SupportedTierList";
|
|
744
|
+
const _STa = "SampleTimestamp";
|
|
745
|
+
const _STo = "SourceType";
|
|
746
|
+
const _Se = "Severity";
|
|
747
|
+
const _Sev = "Severe";
|
|
748
|
+
const _St = "Status2xx";
|
|
749
|
+
const _Sta = "Status3xx";
|
|
750
|
+
const _Stat = "Status4xx";
|
|
751
|
+
const _Statu = "Status5xx";
|
|
752
|
+
const _Sy = "System";
|
|
753
|
+
const _T = "Tags";
|
|
754
|
+
const _TE = "TerminateEnvironment";
|
|
755
|
+
const _TEBF = "TerminateEnvByForce";
|
|
756
|
+
const _TEM = "TerminateEnvironmentMessage";
|
|
757
|
+
const _TIM = "TimeoutInMinutes";
|
|
758
|
+
const _TL = "TagList";
|
|
759
|
+
const _TLr = "TriggerList";
|
|
760
|
+
const _TMAE = "TooManyApplicationsException";
|
|
761
|
+
const _TMAVE = "TooManyApplicationVersionsException";
|
|
762
|
+
const _TMBE = "TooManyBucketsException";
|
|
763
|
+
const _TMCTE = "TooManyConfigurationTemplatesException";
|
|
764
|
+
const _TMEE = "TooManyEnvironmentsException";
|
|
765
|
+
const _TMPE = "TooManyPlatformsException";
|
|
766
|
+
const _TMTE = "TooManyTagsException";
|
|
767
|
+
const _TN = "TemplateName";
|
|
768
|
+
const _TR = "TerminateResources";
|
|
769
|
+
const _TTA = "TagsToAdd";
|
|
770
|
+
const _TTR = "TagsToRemove";
|
|
771
|
+
const _Ta = "Tag";
|
|
772
|
+
const _Ti = "Tier";
|
|
773
|
+
const _Tr = "Triggers";
|
|
774
|
+
const _Tri = "Trigger";
|
|
775
|
+
const _Ty = "Type";
|
|
776
|
+
const _U = "User";
|
|
777
|
+
const _UA = "UpdateApplication";
|
|
778
|
+
const _UAM = "UpdateApplicationMessage";
|
|
779
|
+
const _UARL = "UpdateApplicationResourceLifecycle";
|
|
780
|
+
const _UARLM = "UpdateApplicationResourceLifecycleMessage";
|
|
781
|
+
const _UAV = "UpdateApplicationVersion";
|
|
782
|
+
const _UAVM = "UpdateApplicationVersionMessage";
|
|
783
|
+
const _UCT = "UpdateConfigurationTemplate";
|
|
784
|
+
const _UCTM = "UpdateConfigurationTemplateMessage";
|
|
785
|
+
const _UD = "UserDefined";
|
|
786
|
+
const _UE = "UpdateEnvironment";
|
|
787
|
+
const _UEM = "UpdateEnvironmentMessage";
|
|
788
|
+
const _URL = "URL";
|
|
789
|
+
const _UTFR = "UpdateTagsForResource";
|
|
790
|
+
const _UTFRM = "UpdateTagsForResourceMessage";
|
|
791
|
+
const _Un = "Unknown";
|
|
792
|
+
const _V = "Versions";
|
|
793
|
+
const _VCS = "ValidateConfigurationSettings";
|
|
794
|
+
const _VCSM = "ValidateConfigurationSettingsMessage";
|
|
795
|
+
const _VL = "VersionLabel";
|
|
796
|
+
const _VLC = "VersionLifecycleConfig";
|
|
797
|
+
const _VLe = "VersionLabels";
|
|
798
|
+
const _VM = "ValidationMessage";
|
|
799
|
+
const _VML = "ValidationMessagesList";
|
|
800
|
+
const _VO = "ValueOptions";
|
|
801
|
+
const _VT = "ValueType";
|
|
802
|
+
const _VTi = "VirtualizationType";
|
|
803
|
+
const _Va = "Value";
|
|
804
|
+
const _Val = "Values";
|
|
805
|
+
const _Ve = "Version";
|
|
806
|
+
const _W = "Warning";
|
|
807
|
+
const _WST = "WindowStartTime";
|
|
808
|
+
const _aQE = "awsQueryError";
|
|
809
|
+
const _c = "client";
|
|
810
|
+
const _e = "error";
|
|
811
|
+
const _hE = "httpError";
|
|
812
|
+
const _m = "message";
|
|
813
|
+
const _s = "smithy.ts.sdk.synthetic.com.amazonaws.elasticbeanstalk";
|
|
814
|
+
const n0 = "com.amazonaws.elasticbeanstalk";
|
|
815
|
+
const _s_registry = TypeRegistry.for(_s);
|
|
816
|
+
var ElasticBeanstalkSyntheticServiceException$ = [-3, _s, "ElasticBeanstalkSyntheticServiceException", 0, [], []];
|
|
817
|
+
_s_registry.registerError(ElasticBeanstalkSyntheticServiceException$, ElasticBeanstalkSyntheticServiceException);
|
|
818
|
+
const n0_registry = TypeRegistry.for(n0);
|
|
819
|
+
var CodeBuildNotInServiceRegionException$ = [-3, n0, _CBNISRE,
|
|
820
|
+
{ [_aQE]: [`CodeBuildNotInServiceRegionException`, 400], [_e]: _c, [_hE]: 400 },
|
|
821
|
+
[_m],
|
|
822
|
+
[0]
|
|
823
|
+
];
|
|
824
|
+
n0_registry.registerError(CodeBuildNotInServiceRegionException$, CodeBuildNotInServiceRegionException);
|
|
825
|
+
var ElasticBeanstalkServiceException$ = [-3, n0, _EBSE,
|
|
826
|
+
{ [_e]: _c },
|
|
827
|
+
[_m],
|
|
828
|
+
[0]
|
|
829
|
+
];
|
|
830
|
+
n0_registry.registerError(ElasticBeanstalkServiceException$, ElasticBeanstalkServiceException);
|
|
831
|
+
var InsufficientPrivilegesException$ = [-3, n0, _IPE,
|
|
832
|
+
{ [_aQE]: [`InsufficientPrivilegesException`, 403], [_e]: _c, [_hE]: 403 },
|
|
833
|
+
[_m],
|
|
834
|
+
[0]
|
|
835
|
+
];
|
|
836
|
+
n0_registry.registerError(InsufficientPrivilegesException$, InsufficientPrivilegesException);
|
|
837
|
+
var InvalidRequestException$ = [-3, n0, _IRE,
|
|
838
|
+
{ [_aQE]: [`InvalidRequestException`, 400], [_e]: _c, [_hE]: 400 },
|
|
839
|
+
[_m],
|
|
840
|
+
[0]
|
|
841
|
+
];
|
|
842
|
+
n0_registry.registerError(InvalidRequestException$, InvalidRequestException);
|
|
843
|
+
var ManagedActionInvalidStateException$ = [-3, n0, _MAISE,
|
|
844
|
+
{ [_aQE]: [`ManagedActionInvalidStateException`, 400], [_e]: _c, [_hE]: 400 },
|
|
845
|
+
[_m],
|
|
846
|
+
[0]
|
|
847
|
+
];
|
|
848
|
+
n0_registry.registerError(ManagedActionInvalidStateException$, ManagedActionInvalidStateException);
|
|
849
|
+
var OperationInProgressException$ = [-3, n0, _OIPE,
|
|
850
|
+
{ [_aQE]: [`OperationInProgressFailure`, 400], [_e]: _c, [_hE]: 400 },
|
|
851
|
+
[_m],
|
|
852
|
+
[0]
|
|
853
|
+
];
|
|
854
|
+
n0_registry.registerError(OperationInProgressException$, OperationInProgressException);
|
|
855
|
+
var PlatformVersionStillReferencedException$ = [-3, n0, _PVSRE,
|
|
856
|
+
{ [_aQE]: [`PlatformVersionStillReferencedException`, 400], [_e]: _c, [_hE]: 400 },
|
|
857
|
+
[_m],
|
|
858
|
+
[0]
|
|
859
|
+
];
|
|
860
|
+
n0_registry.registerError(PlatformVersionStillReferencedException$, PlatformVersionStillReferencedException);
|
|
861
|
+
var ResourceNotFoundException$ = [-3, n0, _RNFE,
|
|
862
|
+
{ [_aQE]: [`ResourceNotFoundException`, 400], [_e]: _c, [_hE]: 400 },
|
|
863
|
+
[_m],
|
|
864
|
+
[0]
|
|
865
|
+
];
|
|
866
|
+
n0_registry.registerError(ResourceNotFoundException$, ResourceNotFoundException);
|
|
867
|
+
var ResourceTypeNotSupportedException$ = [-3, n0, _RTNSE,
|
|
868
|
+
{ [_aQE]: [`ResourceTypeNotSupportedException`, 400], [_e]: _c, [_hE]: 400 },
|
|
869
|
+
[_m],
|
|
870
|
+
[0]
|
|
871
|
+
];
|
|
872
|
+
n0_registry.registerError(ResourceTypeNotSupportedException$, ResourceTypeNotSupportedException);
|
|
873
|
+
var S3LocationNotInServiceRegionException$ = [-3, n0, _SLNISRE,
|
|
874
|
+
{ [_aQE]: [`S3LocationNotInServiceRegionException`, 400], [_e]: _c, [_hE]: 400 },
|
|
875
|
+
[_m],
|
|
876
|
+
[0]
|
|
877
|
+
];
|
|
878
|
+
n0_registry.registerError(S3LocationNotInServiceRegionException$, S3LocationNotInServiceRegionException);
|
|
879
|
+
var S3SubscriptionRequiredException$ = [-3, n0, _SSRE,
|
|
880
|
+
{ [_aQE]: [`S3SubscriptionRequiredException`, 400], [_e]: _c, [_hE]: 400 },
|
|
881
|
+
[_m],
|
|
882
|
+
[0]
|
|
883
|
+
];
|
|
884
|
+
n0_registry.registerError(S3SubscriptionRequiredException$, S3SubscriptionRequiredException);
|
|
885
|
+
var SourceBundleDeletionException$ = [-3, n0, _SBDE,
|
|
886
|
+
{ [_aQE]: [`SourceBundleDeletionFailure`, 400], [_e]: _c, [_hE]: 400 },
|
|
887
|
+
[_m],
|
|
888
|
+
[0]
|
|
889
|
+
];
|
|
890
|
+
n0_registry.registerError(SourceBundleDeletionException$, SourceBundleDeletionException);
|
|
891
|
+
var TooManyApplicationsException$ = [-3, n0, _TMAE,
|
|
892
|
+
{ [_aQE]: [`TooManyApplicationsException`, 400], [_e]: _c, [_hE]: 400 },
|
|
893
|
+
[_m],
|
|
894
|
+
[0]
|
|
895
|
+
];
|
|
896
|
+
n0_registry.registerError(TooManyApplicationsException$, TooManyApplicationsException);
|
|
897
|
+
var TooManyApplicationVersionsException$ = [-3, n0, _TMAVE,
|
|
898
|
+
{ [_e]: _c },
|
|
899
|
+
[_m],
|
|
900
|
+
[0]
|
|
901
|
+
];
|
|
902
|
+
n0_registry.registerError(TooManyApplicationVersionsException$, TooManyApplicationVersionsException);
|
|
903
|
+
var TooManyBucketsException$ = [-3, n0, _TMBE,
|
|
904
|
+
{ [_aQE]: [`TooManyBucketsException`, 400], [_e]: _c, [_hE]: 400 },
|
|
905
|
+
[_m],
|
|
906
|
+
[0]
|
|
907
|
+
];
|
|
908
|
+
n0_registry.registerError(TooManyBucketsException$, TooManyBucketsException);
|
|
909
|
+
var TooManyConfigurationTemplatesException$ = [-3, n0, _TMCTE,
|
|
910
|
+
{ [_aQE]: [`TooManyConfigurationTemplatesException`, 400], [_e]: _c, [_hE]: 400 },
|
|
911
|
+
[_m],
|
|
912
|
+
[0]
|
|
913
|
+
];
|
|
914
|
+
n0_registry.registerError(TooManyConfigurationTemplatesException$, TooManyConfigurationTemplatesException);
|
|
915
|
+
var TooManyEnvironmentsException$ = [-3, n0, _TMEE,
|
|
916
|
+
{ [_aQE]: [`TooManyEnvironmentsException`, 400], [_e]: _c, [_hE]: 400 },
|
|
917
|
+
[_m],
|
|
918
|
+
[0]
|
|
919
|
+
];
|
|
920
|
+
n0_registry.registerError(TooManyEnvironmentsException$, TooManyEnvironmentsException);
|
|
921
|
+
var TooManyPlatformsException$ = [-3, n0, _TMPE,
|
|
922
|
+
{ [_aQE]: [`TooManyPlatformsException`, 400], [_e]: _c, [_hE]: 400 },
|
|
923
|
+
[_m],
|
|
924
|
+
[0]
|
|
925
|
+
];
|
|
926
|
+
n0_registry.registerError(TooManyPlatformsException$, TooManyPlatformsException);
|
|
927
|
+
var TooManyTagsException$ = [-3, n0, _TMTE,
|
|
928
|
+
{ [_aQE]: [`TooManyTagsException`, 400], [_e]: _c, [_hE]: 400 },
|
|
929
|
+
[_m],
|
|
930
|
+
[0]
|
|
931
|
+
];
|
|
932
|
+
n0_registry.registerError(TooManyTagsException$, TooManyTagsException);
|
|
933
|
+
const errorTypeRegistries = [
|
|
934
|
+
_s_registry,
|
|
935
|
+
n0_registry,
|
|
936
|
+
];
|
|
937
|
+
var AbortEnvironmentUpdateMessage$ = [3, n0, _AEUM,
|
|
938
|
+
0,
|
|
939
|
+
[_EI, _EN],
|
|
940
|
+
[0, 0]
|
|
941
|
+
];
|
|
942
|
+
var ApplicationDescription$ = [3, n0, _AD,
|
|
943
|
+
0,
|
|
944
|
+
[_AA, _AN, _D, _DC, _DU, _V, _CT, _RLC],
|
|
945
|
+
[0, 0, 0, 4, 4, 64 | 0, 64 | 0, () => ApplicationResourceLifecycleConfig$]
|
|
946
|
+
];
|
|
947
|
+
var ApplicationDescriptionMessage$ = [3, n0, _ADM,
|
|
948
|
+
0,
|
|
949
|
+
[_A],
|
|
950
|
+
[() => ApplicationDescription$]
|
|
951
|
+
];
|
|
952
|
+
var ApplicationDescriptionsMessage$ = [3, n0, _ADMp,
|
|
953
|
+
0,
|
|
954
|
+
[_Ap],
|
|
955
|
+
[() => ApplicationDescriptionList]
|
|
956
|
+
];
|
|
957
|
+
var ApplicationMetrics$ = [3, n0, _AM,
|
|
958
|
+
0,
|
|
959
|
+
[_Du, _RC, _SC, _L],
|
|
960
|
+
[1, 1, () => StatusCodes$, () => Latency$]
|
|
961
|
+
];
|
|
962
|
+
var ApplicationResourceLifecycleConfig$ = [3, n0, _ARLC,
|
|
963
|
+
0,
|
|
964
|
+
[_SR, _VLC],
|
|
965
|
+
[0, () => ApplicationVersionLifecycleConfig$]
|
|
966
|
+
];
|
|
967
|
+
var ApplicationResourceLifecycleDescriptionMessage$ = [3, n0, _ARLDM,
|
|
968
|
+
0,
|
|
969
|
+
[_AN, _RLC],
|
|
970
|
+
[0, () => ApplicationResourceLifecycleConfig$]
|
|
971
|
+
];
|
|
972
|
+
var ApplicationVersionDescription$ = [3, n0, _AVD,
|
|
973
|
+
0,
|
|
974
|
+
[_AVA, _AN, _D, _VL, _SBI, _BA, _SB, _DC, _DU, _S],
|
|
975
|
+
[0, 0, 0, 0, () => SourceBuildInformation$, 0, () => S3Location$, 4, 4, 0]
|
|
976
|
+
];
|
|
977
|
+
var ApplicationVersionDescriptionMessage$ = [3, n0, _AVDM,
|
|
978
|
+
0,
|
|
979
|
+
[_AV],
|
|
980
|
+
[() => ApplicationVersionDescription$]
|
|
981
|
+
];
|
|
982
|
+
var ApplicationVersionDescriptionsMessage$ = [3, n0, _AVDMp,
|
|
983
|
+
0,
|
|
984
|
+
[_AVp, _NT],
|
|
985
|
+
[() => ApplicationVersionDescriptionList, 0]
|
|
986
|
+
];
|
|
987
|
+
var ApplicationVersionLifecycleConfig$ = [3, n0, _AVLC,
|
|
988
|
+
0,
|
|
989
|
+
[_MCR, _MAR],
|
|
990
|
+
[() => MaxCountRule$, () => MaxAgeRule$]
|
|
991
|
+
];
|
|
992
|
+
var ApplyEnvironmentManagedActionRequest$ = [3, n0, _AEMAR,
|
|
993
|
+
0,
|
|
994
|
+
[_AI, _EN, _EI],
|
|
995
|
+
[0, 0, 0], 1
|
|
996
|
+
];
|
|
997
|
+
var ApplyEnvironmentManagedActionResult$ = [3, n0, _AEMARp,
|
|
998
|
+
0,
|
|
999
|
+
[_AI, _ADc, _AT, _S],
|
|
1000
|
+
[0, 0, 0, 0]
|
|
1001
|
+
];
|
|
1002
|
+
var AssociateEnvironmentOperationsRoleMessage$ = [3, n0, _AEORM,
|
|
1003
|
+
0,
|
|
1004
|
+
[_EN, _OR],
|
|
1005
|
+
[0, 0], 2
|
|
1006
|
+
];
|
|
1007
|
+
var AutoScalingGroup$ = [3, n0, _ASG,
|
|
1008
|
+
0,
|
|
1009
|
+
[_N],
|
|
1010
|
+
[0]
|
|
1011
|
+
];
|
|
1012
|
+
var BuildConfiguration$ = [3, n0, _BC,
|
|
1013
|
+
0,
|
|
1014
|
+
[_CBSR, _I, _ANr, _CTo, _TIM],
|
|
1015
|
+
[0, 0, 0, 0, 1], 2
|
|
1016
|
+
];
|
|
1017
|
+
var Builder$ = [3, n0, _B,
|
|
1018
|
+
0,
|
|
1019
|
+
[_ARN],
|
|
1020
|
+
[0]
|
|
1021
|
+
];
|
|
1022
|
+
var CheckDNSAvailabilityMessage$ = [3, n0, _CDNSAM,
|
|
1023
|
+
0,
|
|
1024
|
+
[_CNAMEP],
|
|
1025
|
+
[0], 1
|
|
1026
|
+
];
|
|
1027
|
+
var CheckDNSAvailabilityResultMessage$ = [3, n0, _CDNSARM,
|
|
1028
|
+
0,
|
|
1029
|
+
[_Av, _FQCNAME],
|
|
1030
|
+
[2, 0]
|
|
1031
|
+
];
|
|
1032
|
+
var ComposeEnvironmentsMessage$ = [3, n0, _CEM,
|
|
1033
|
+
0,
|
|
1034
|
+
[_AN, _GN, _VLe],
|
|
1035
|
+
[0, 0, 64 | 0]
|
|
1036
|
+
];
|
|
1037
|
+
var ConfigurationOptionDescription$ = [3, n0, _COD,
|
|
1038
|
+
0,
|
|
1039
|
+
[_Na, _N, _DV, _CS, _UD, _VT, _VO, _MV, _MVa, _ML, _R],
|
|
1040
|
+
[0, 0, 0, 0, 2, 0, 64 | 0, 1, 1, 1, () => OptionRestrictionRegex$]
|
|
1041
|
+
];
|
|
1042
|
+
var ConfigurationOptionsDescription$ = [3, n0, _CODo,
|
|
1043
|
+
0,
|
|
1044
|
+
[_SSN, _PA, _O],
|
|
1045
|
+
[0, 0, () => ConfigurationOptionDescriptionsList]
|
|
1046
|
+
];
|
|
1047
|
+
var ConfigurationOptionSetting$ = [3, n0, _COS,
|
|
1048
|
+
0,
|
|
1049
|
+
[_RN, _Na, _ON, _Va],
|
|
1050
|
+
[0, 0, 0, 0]
|
|
1051
|
+
];
|
|
1052
|
+
var ConfigurationSettingsDescription$ = [3, n0, _CSD,
|
|
1053
|
+
0,
|
|
1054
|
+
[_SSN, _PA, _AN, _TN, _D, _EN, _DS, _DC, _DU, _OS],
|
|
1055
|
+
[0, 0, 0, 0, 0, 0, 0, 4, 4, () => ConfigurationOptionSettingsList]
|
|
1056
|
+
];
|
|
1057
|
+
var ConfigurationSettingsDescriptions$ = [3, n0, _CSDo,
|
|
1058
|
+
0,
|
|
1059
|
+
[_CSo],
|
|
1060
|
+
[() => ConfigurationSettingsDescriptionList]
|
|
1061
|
+
];
|
|
1062
|
+
var ConfigurationSettingsValidationMessages$ = [3, n0, _CSVM,
|
|
1063
|
+
0,
|
|
1064
|
+
[_M],
|
|
1065
|
+
[() => ValidationMessagesList]
|
|
1066
|
+
];
|
|
1067
|
+
var CPUUtilization$ = [3, n0, _CPUU,
|
|
1068
|
+
0,
|
|
1069
|
+
[_U, _Ni, _Sy, _Id, _IOW, _IRQ, _SIRQ, _P],
|
|
1070
|
+
[1, 1, 1, 1, 1, 1, 1, 1]
|
|
1071
|
+
];
|
|
1072
|
+
var CreateApplicationMessage$ = [3, n0, _CAM,
|
|
1073
|
+
0,
|
|
1074
|
+
[_AN, _D, _RLC, _T],
|
|
1075
|
+
[0, 0, () => ApplicationResourceLifecycleConfig$, () => Tags], 1
|
|
1076
|
+
];
|
|
1077
|
+
var CreateApplicationVersionMessage$ = [3, n0, _CAVM,
|
|
1078
|
+
0,
|
|
1079
|
+
[_AN, _VL, _D, _SBI, _SB, _BC, _ACA, _Pr, _T],
|
|
1080
|
+
[0, 0, 0, () => SourceBuildInformation$, () => S3Location$, () => BuildConfiguration$, 2, 2, () => Tags], 2
|
|
1081
|
+
];
|
|
1082
|
+
var CreateConfigurationTemplateMessage$ = [3, n0, _CCTM,
|
|
1083
|
+
0,
|
|
1084
|
+
[_AN, _TN, _SSN, _PA, _SCo, _EI, _D, _OS, _T],
|
|
1085
|
+
[0, 0, 0, 0, () => SourceConfiguration$, 0, 0, () => ConfigurationOptionSettingsList, () => Tags], 2
|
|
1086
|
+
];
|
|
1087
|
+
var CreateEnvironmentMessage$ = [3, n0, _CEMr,
|
|
1088
|
+
0,
|
|
1089
|
+
[_AN, _EN, _GN, _D, _CNAMEP, _Ti, _T, _VL, _TN, _SSN, _PA, _OS, _OTR, _OR],
|
|
1090
|
+
[0, 0, 0, 0, 0, () => EnvironmentTier$, () => Tags, 0, 0, 0, 0, () => ConfigurationOptionSettingsList, () => OptionsSpecifierList, 0], 1
|
|
1091
|
+
];
|
|
1092
|
+
var CreatePlatformVersionRequest$ = [3, n0, _CPVR,
|
|
1093
|
+
0,
|
|
1094
|
+
[_PN, _PV, _PDB, _EN, _OS, _T],
|
|
1095
|
+
[0, 0, () => S3Location$, 0, () => ConfigurationOptionSettingsList, () => Tags], 3
|
|
1096
|
+
];
|
|
1097
|
+
var CreatePlatformVersionResult$ = [3, n0, _CPVRr,
|
|
1098
|
+
0,
|
|
1099
|
+
[_PS, _B],
|
|
1100
|
+
[() => PlatformSummary$, () => Builder$]
|
|
1101
|
+
];
|
|
1102
|
+
var CreateStorageLocationResultMessage$ = [3, n0, _CSLRM,
|
|
1103
|
+
0,
|
|
1104
|
+
[_SBu],
|
|
1105
|
+
[0]
|
|
1106
|
+
];
|
|
1107
|
+
var CustomAmi$ = [3, n0, _CA,
|
|
1108
|
+
0,
|
|
1109
|
+
[_VTi, _II],
|
|
1110
|
+
[0, 0]
|
|
1111
|
+
];
|
|
1112
|
+
var DeleteApplicationMessage$ = [3, n0, _DAM,
|
|
1113
|
+
0,
|
|
1114
|
+
[_AN, _TEBF],
|
|
1115
|
+
[0, 2], 1
|
|
1116
|
+
];
|
|
1117
|
+
var DeleteApplicationVersionMessage$ = [3, n0, _DAVM,
|
|
1118
|
+
0,
|
|
1119
|
+
[_AN, _VL, _DSB],
|
|
1120
|
+
[0, 0, 2], 2
|
|
1121
|
+
];
|
|
1122
|
+
var DeleteConfigurationTemplateMessage$ = [3, n0, _DCTM,
|
|
1123
|
+
0,
|
|
1124
|
+
[_AN, _TN],
|
|
1125
|
+
[0, 0], 2
|
|
1126
|
+
];
|
|
1127
|
+
var DeleteEnvironmentConfigurationMessage$ = [3, n0, _DECM,
|
|
1128
|
+
0,
|
|
1129
|
+
[_AN, _EN],
|
|
1130
|
+
[0, 0], 2
|
|
1131
|
+
];
|
|
1132
|
+
var DeletePlatformVersionRequest$ = [3, n0, _DPVR,
|
|
1133
|
+
0,
|
|
1134
|
+
[_PA],
|
|
1135
|
+
[0]
|
|
1136
|
+
];
|
|
1137
|
+
var DeletePlatformVersionResult$ = [3, n0, _DPVRe,
|
|
1138
|
+
0,
|
|
1139
|
+
[_PS],
|
|
1140
|
+
[() => PlatformSummary$]
|
|
1141
|
+
];
|
|
1142
|
+
var Deployment$ = [3, n0, _De,
|
|
1143
|
+
0,
|
|
1144
|
+
[_VL, _DI, _S, _DT],
|
|
1145
|
+
[0, 1, 0, 4]
|
|
1146
|
+
];
|
|
1147
|
+
var DescribeAccountAttributesResult$ = [3, n0, _DAAR,
|
|
1148
|
+
0,
|
|
1149
|
+
[_RQ],
|
|
1150
|
+
[() => ResourceQuotas$]
|
|
1151
|
+
];
|
|
1152
|
+
var DescribeApplicationsMessage$ = [3, n0, _DAMe,
|
|
1153
|
+
0,
|
|
1154
|
+
[_ANp],
|
|
1155
|
+
[64 | 0]
|
|
1156
|
+
];
|
|
1157
|
+
var DescribeApplicationVersionsMessage$ = [3, n0, _DAVMe,
|
|
1158
|
+
0,
|
|
1159
|
+
[_AN, _VLe, _MR, _NT],
|
|
1160
|
+
[0, 64 | 0, 1, 0]
|
|
1161
|
+
];
|
|
1162
|
+
var DescribeConfigurationOptionsMessage$ = [3, n0, _DCOM,
|
|
1163
|
+
0,
|
|
1164
|
+
[_AN, _TN, _EN, _SSN, _PA, _O],
|
|
1165
|
+
[0, 0, 0, 0, 0, () => OptionsSpecifierList]
|
|
1166
|
+
];
|
|
1167
|
+
var DescribeConfigurationSettingsMessage$ = [3, n0, _DCSM,
|
|
1168
|
+
0,
|
|
1169
|
+
[_AN, _TN, _EN],
|
|
1170
|
+
[0, 0, 0], 1
|
|
1171
|
+
];
|
|
1172
|
+
var DescribeEnvironmentHealthRequest$ = [3, n0, _DEHR,
|
|
1173
|
+
0,
|
|
1174
|
+
[_EN, _EI, _ANt],
|
|
1175
|
+
[0, 0, 64 | 0]
|
|
1176
|
+
];
|
|
1177
|
+
var DescribeEnvironmentHealthResult$ = [3, n0, _DEHRe,
|
|
1178
|
+
0,
|
|
1179
|
+
[_EN, _HS, _S, _C, _Ca, _AM, _IH, _RA],
|
|
1180
|
+
[0, 0, 0, 0, 64 | 0, () => ApplicationMetrics$, () => InstanceHealthSummary$, 4]
|
|
1181
|
+
];
|
|
1182
|
+
var DescribeEnvironmentManagedActionHistoryRequest$ = [3, n0, _DEMAHR,
|
|
1183
|
+
0,
|
|
1184
|
+
[_EI, _EN, _NT, _MI],
|
|
1185
|
+
[0, 0, 0, 1]
|
|
1186
|
+
];
|
|
1187
|
+
var DescribeEnvironmentManagedActionHistoryResult$ = [3, n0, _DEMAHRe,
|
|
1188
|
+
0,
|
|
1189
|
+
[_MAHI, _NT],
|
|
1190
|
+
[() => ManagedActionHistoryItems, 0]
|
|
1191
|
+
];
|
|
1192
|
+
var DescribeEnvironmentManagedActionsRequest$ = [3, n0, _DEMAR,
|
|
1193
|
+
0,
|
|
1194
|
+
[_EN, _EI, _S],
|
|
1195
|
+
[0, 0, 0]
|
|
1196
|
+
];
|
|
1197
|
+
var DescribeEnvironmentManagedActionsResult$ = [3, n0, _DEMARe,
|
|
1198
|
+
0,
|
|
1199
|
+
[_MA],
|
|
1200
|
+
[() => ManagedActions]
|
|
1201
|
+
];
|
|
1202
|
+
var DescribeEnvironmentResourcesMessage$ = [3, n0, _DERM,
|
|
1203
|
+
0,
|
|
1204
|
+
[_EI, _EN],
|
|
1205
|
+
[0, 0]
|
|
1206
|
+
];
|
|
1207
|
+
var DescribeEnvironmentsMessage$ = [3, n0, _DEM,
|
|
1208
|
+
0,
|
|
1209
|
+
[_AN, _VL, _EIn, _ENn, _ID, _IDBT, _MR, _NT],
|
|
1210
|
+
[0, 0, 64 | 0, 64 | 0, 2, 4, 1, 0]
|
|
1211
|
+
];
|
|
1212
|
+
var DescribeEventsMessage$ = [3, n0, _DEMe,
|
|
1213
|
+
0,
|
|
1214
|
+
[_AN, _VL, _TN, _EI, _EN, _PA, _RI, _Se, _ST, _ET, _MR, _NT],
|
|
1215
|
+
[0, 0, 0, 0, 0, 0, 0, 0, 4, 4, 1, 0]
|
|
1216
|
+
];
|
|
1217
|
+
var DescribeInstancesHealthRequest$ = [3, n0, _DIHR,
|
|
1218
|
+
0,
|
|
1219
|
+
[_EN, _EI, _ANt, _NT],
|
|
1220
|
+
[0, 0, 64 | 0, 0]
|
|
1221
|
+
];
|
|
1222
|
+
var DescribeInstancesHealthResult$ = [3, n0, _DIHRe,
|
|
1223
|
+
0,
|
|
1224
|
+
[_IHL, _RA, _NT],
|
|
1225
|
+
[() => InstanceHealthList, 4, 0]
|
|
1226
|
+
];
|
|
1227
|
+
var DescribePlatformVersionRequest$ = [3, n0, _DPVRes,
|
|
1228
|
+
0,
|
|
1229
|
+
[_PA],
|
|
1230
|
+
[0]
|
|
1231
|
+
];
|
|
1232
|
+
var DescribePlatformVersionResult$ = [3, n0, _DPVResc,
|
|
1233
|
+
0,
|
|
1234
|
+
[_PD],
|
|
1235
|
+
[() => PlatformDescription$]
|
|
1236
|
+
];
|
|
1237
|
+
var DisassociateEnvironmentOperationsRoleMessage$ = [3, n0, _DEORM,
|
|
1238
|
+
0,
|
|
1239
|
+
[_EN],
|
|
1240
|
+
[0], 1
|
|
1241
|
+
];
|
|
1242
|
+
var EnvironmentDescription$ = [3, n0, _ED,
|
|
1243
|
+
0,
|
|
1244
|
+
[_EN, _EI, _AN, _VL, _SSN, _PA, _TN, _D, _EURL, _CNAME, _DC, _DU, _S, _AOIP, _H, _HS, _Re, _Ti, _EL, _EA, _OR],
|
|
1245
|
+
[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 4, 0, 2, 0, 0, () => EnvironmentResourcesDescription$, () => EnvironmentTier$, () => EnvironmentLinks, 0, 0]
|
|
1246
|
+
];
|
|
1247
|
+
var EnvironmentDescriptionsMessage$ = [3, n0, _EDM,
|
|
1248
|
+
0,
|
|
1249
|
+
[_E, _NT],
|
|
1250
|
+
[() => EnvironmentDescriptionsList, 0]
|
|
1251
|
+
];
|
|
1252
|
+
var EnvironmentInfoDescription$ = [3, n0, _EID,
|
|
1253
|
+
0,
|
|
1254
|
+
[_IT, _EII, _STa, _Me],
|
|
1255
|
+
[0, 0, 4, 0]
|
|
1256
|
+
];
|
|
1257
|
+
var EnvironmentLink$ = [3, n0, _ELn,
|
|
1258
|
+
0,
|
|
1259
|
+
[_LN, _EN],
|
|
1260
|
+
[0, 0]
|
|
1261
|
+
];
|
|
1262
|
+
var EnvironmentResourceDescription$ = [3, n0, _ERD,
|
|
1263
|
+
0,
|
|
1264
|
+
[_EN, _ASGu, _In, _LC, _LT, _LB, _Tr, _Q],
|
|
1265
|
+
[0, () => AutoScalingGroupList, () => InstanceList, () => LaunchConfigurationList, () => LaunchTemplateList, () => LoadBalancerList, () => TriggerList, () => QueueList]
|
|
1266
|
+
];
|
|
1267
|
+
var EnvironmentResourceDescriptionsMessage$ = [3, n0, _ERDM,
|
|
1268
|
+
0,
|
|
1269
|
+
[_ER],
|
|
1270
|
+
[() => EnvironmentResourceDescription$]
|
|
1271
|
+
];
|
|
1272
|
+
var EnvironmentResourcesDescription$ = [3, n0, _ERDn,
|
|
1273
|
+
0,
|
|
1274
|
+
[_LBo],
|
|
1275
|
+
[() => LoadBalancerDescription$]
|
|
1276
|
+
];
|
|
1277
|
+
var EnvironmentTier$ = [3, n0, _ETn,
|
|
1278
|
+
0,
|
|
1279
|
+
[_N, _Ty, _Ve],
|
|
1280
|
+
[0, 0, 0]
|
|
1281
|
+
];
|
|
1282
|
+
var EventDescription$ = [3, n0, _EDv,
|
|
1283
|
+
0,
|
|
1284
|
+
[_EDve, _Me, _AN, _VL, _TN, _EN, _PA, _RI, _Se],
|
|
1285
|
+
[4, 0, 0, 0, 0, 0, 0, 0, 0]
|
|
1286
|
+
];
|
|
1287
|
+
var EventDescriptionsMessage$ = [3, n0, _EDMv,
|
|
1288
|
+
0,
|
|
1289
|
+
[_Ev, _NT],
|
|
1290
|
+
[() => EventDescriptionList, 0]
|
|
1291
|
+
];
|
|
1292
|
+
var Instance$ = [3, n0, _Ins,
|
|
1293
|
+
0,
|
|
1294
|
+
[_Id_],
|
|
1295
|
+
[0]
|
|
1296
|
+
];
|
|
1297
|
+
var InstanceHealthSummary$ = [3, n0, _IHS,
|
|
1298
|
+
0,
|
|
1299
|
+
[_ND, _Un, _Pe, _Ok, _Inf, _W, _Deg, _Sev],
|
|
1300
|
+
[1, 1, 1, 1, 1, 1, 1, 1]
|
|
1301
|
+
];
|
|
1302
|
+
var Latency$ = [3, n0, _L,
|
|
1303
|
+
0,
|
|
1304
|
+
[_P_, _P__, _P___, _P____, _P_____, _P______, _P_______, _P________],
|
|
1305
|
+
[1, 1, 1, 1, 1, 1, 1, 1]
|
|
1306
|
+
];
|
|
1307
|
+
var LaunchConfiguration$ = [3, n0, _LCa,
|
|
1308
|
+
0,
|
|
1309
|
+
[_N],
|
|
1310
|
+
[0]
|
|
1311
|
+
];
|
|
1312
|
+
var LaunchTemplate$ = [3, n0, _LTa,
|
|
1313
|
+
0,
|
|
1314
|
+
[_Id_],
|
|
1315
|
+
[0]
|
|
1316
|
+
];
|
|
1317
|
+
var ListAvailableSolutionStacksResultMessage$ = [3, n0, _LASSRM,
|
|
1318
|
+
0,
|
|
1319
|
+
[_SS, _SSD],
|
|
1320
|
+
[64 | 0, () => AvailableSolutionStackDetailsList]
|
|
1321
|
+
];
|
|
1322
|
+
var Listener$ = [3, n0, _Li,
|
|
1323
|
+
0,
|
|
1324
|
+
[_Pro, _Po],
|
|
1325
|
+
[0, 1]
|
|
1326
|
+
];
|
|
1327
|
+
var ListPlatformBranchesRequest$ = [3, n0, _LPBR,
|
|
1328
|
+
0,
|
|
1329
|
+
[_F, _MR, _NT],
|
|
1330
|
+
[() => SearchFilters, 1, 0]
|
|
1331
|
+
];
|
|
1332
|
+
var ListPlatformBranchesResult$ = [3, n0, _LPBRi,
|
|
1333
|
+
0,
|
|
1334
|
+
[_PBSL, _NT],
|
|
1335
|
+
[() => PlatformBranchSummaryList, 0]
|
|
1336
|
+
];
|
|
1337
|
+
var ListPlatformVersionsRequest$ = [3, n0, _LPVR,
|
|
1338
|
+
0,
|
|
1339
|
+
[_F, _MR, _NT],
|
|
1340
|
+
[() => PlatformFilters, 1, 0]
|
|
1341
|
+
];
|
|
1342
|
+
var ListPlatformVersionsResult$ = [3, n0, _LPVRi,
|
|
1343
|
+
0,
|
|
1344
|
+
[_PSL, _NT],
|
|
1345
|
+
[() => PlatformSummaryList, 0]
|
|
1346
|
+
];
|
|
1347
|
+
var ListTagsForResourceMessage$ = [3, n0, _LTFRM,
|
|
1348
|
+
0,
|
|
1349
|
+
[_RAe],
|
|
1350
|
+
[0], 1
|
|
1351
|
+
];
|
|
1352
|
+
var LoadBalancer$ = [3, n0, _LBo,
|
|
1353
|
+
0,
|
|
1354
|
+
[_N],
|
|
1355
|
+
[0]
|
|
1356
|
+
];
|
|
1357
|
+
var LoadBalancerDescription$ = [3, n0, _LBD,
|
|
1358
|
+
0,
|
|
1359
|
+
[_LBN, _Do, _Lis],
|
|
1360
|
+
[0, 0, () => LoadBalancerListenersDescription]
|
|
1361
|
+
];
|
|
1362
|
+
var ManagedAction$ = [3, n0, _MAa,
|
|
1363
|
+
0,
|
|
1364
|
+
[_AI, _ADc, _AT, _S, _WST],
|
|
1365
|
+
[0, 0, 0, 0, 4]
|
|
1366
|
+
];
|
|
1367
|
+
var ManagedActionHistoryItem$ = [3, n0, _MAHIa,
|
|
1368
|
+
0,
|
|
1369
|
+
[_AI, _AT, _ADc, _FT, _S, _FD, _ETx, _FTi],
|
|
1370
|
+
[0, 0, 0, 0, 0, 0, 4, 4]
|
|
1371
|
+
];
|
|
1372
|
+
var MaxAgeRule$ = [3, n0, _MAR,
|
|
1373
|
+
0,
|
|
1374
|
+
[_En, _MAID, _DSFS],
|
|
1375
|
+
[2, 1, 2], 1
|
|
1376
|
+
];
|
|
1377
|
+
var MaxCountRule$ = [3, n0, _MCR,
|
|
1378
|
+
0,
|
|
1379
|
+
[_En, _MC, _DSFS],
|
|
1380
|
+
[2, 1, 2], 1
|
|
1381
|
+
];
|
|
1382
|
+
var OptionRestrictionRegex$ = [3, n0, _ORR,
|
|
1383
|
+
0,
|
|
1384
|
+
[_Pa, _La],
|
|
1385
|
+
[0, 0]
|
|
1386
|
+
];
|
|
1387
|
+
var OptionSpecification$ = [3, n0, _OSp,
|
|
1388
|
+
0,
|
|
1389
|
+
[_RN, _Na, _ON],
|
|
1390
|
+
[0, 0, 0]
|
|
1391
|
+
];
|
|
1392
|
+
var PlatformBranchSummary$ = [3, n0, _PBS,
|
|
1393
|
+
0,
|
|
1394
|
+
[_PN, _BN, _LS, _BO, _STL],
|
|
1395
|
+
[0, 0, 0, 1, 64 | 0]
|
|
1396
|
+
];
|
|
1397
|
+
var PlatformDescription$ = [3, n0, _PD,
|
|
1398
|
+
0,
|
|
1399
|
+
[_PA, _PO, _PN, _PV, _SSN, _PSl, _DC, _DU, _PC, _D, _Ma, _OSN, _OSV, _PL, _Fr, _CAL, _STL, _SAL, _PLS, _PBN, _PBLS],
|
|
1400
|
+
[0, 0, 0, 0, 0, 0, 4, 4, 0, 0, 0, 0, 0, () => PlatformProgrammingLanguages, () => PlatformFrameworks, () => CustomAmiList, 64 | 0, 64 | 0, 0, 0, 0]
|
|
1401
|
+
];
|
|
1402
|
+
var PlatformFilter$ = [3, n0, _PF,
|
|
1403
|
+
0,
|
|
1404
|
+
[_Ty, _Op, _Val],
|
|
1405
|
+
[0, 0, 64 | 0]
|
|
1406
|
+
];
|
|
1407
|
+
var PlatformFramework$ = [3, n0, _PFl,
|
|
1408
|
+
0,
|
|
1409
|
+
[_N, _Ve],
|
|
1410
|
+
[0, 0]
|
|
1411
|
+
];
|
|
1412
|
+
var PlatformProgrammingLanguage$ = [3, n0, _PPL,
|
|
1413
|
+
0,
|
|
1414
|
+
[_N, _Ve],
|
|
1415
|
+
[0, 0]
|
|
1416
|
+
];
|
|
1417
|
+
var PlatformSummary$ = [3, n0, _PS,
|
|
1418
|
+
0,
|
|
1419
|
+
[_PA, _PO, _PSl, _PC, _OSN, _OSV, _STL, _SAL, _PLS, _PV, _PBN, _PBLS],
|
|
1420
|
+
[0, 0, 0, 0, 0, 0, 64 | 0, 64 | 0, 0, 0, 0, 0]
|
|
1421
|
+
];
|
|
1422
|
+
var Queue$ = [3, n0, _Qu,
|
|
1423
|
+
0,
|
|
1424
|
+
[_N, _URL],
|
|
1425
|
+
[0, 0]
|
|
1426
|
+
];
|
|
1427
|
+
var RebuildEnvironmentMessage$ = [3, n0, _REM,
|
|
1428
|
+
0,
|
|
1429
|
+
[_EI, _EN],
|
|
1430
|
+
[0, 0]
|
|
1431
|
+
];
|
|
1432
|
+
var RequestEnvironmentInfoMessage$ = [3, n0, _REIM,
|
|
1433
|
+
0,
|
|
1434
|
+
[_IT, _EI, _EN],
|
|
1435
|
+
[0, 0, 0], 1
|
|
1436
|
+
];
|
|
1437
|
+
var ResourceQuota$ = [3, n0, _RQe,
|
|
1438
|
+
0,
|
|
1439
|
+
[_Max],
|
|
1440
|
+
[1]
|
|
1441
|
+
];
|
|
1442
|
+
var ResourceQuotas$ = [3, n0, _RQ,
|
|
1443
|
+
0,
|
|
1444
|
+
[_AQ, _AVQ, _EQ, _CTQ, _CPQ],
|
|
1445
|
+
[() => ResourceQuota$, () => ResourceQuota$, () => ResourceQuota$, () => ResourceQuota$, () => ResourceQuota$]
|
|
1446
|
+
];
|
|
1447
|
+
var ResourceTagsDescriptionMessage$ = [3, n0, _RTDM,
|
|
1448
|
+
0,
|
|
1449
|
+
[_RAe, _RT],
|
|
1450
|
+
[0, () => TagList]
|
|
1451
|
+
];
|
|
1452
|
+
var RestartAppServerMessage$ = [3, n0, _RASM,
|
|
1453
|
+
0,
|
|
1454
|
+
[_EI, _EN],
|
|
1455
|
+
[0, 0]
|
|
1456
|
+
];
|
|
1457
|
+
var RetrieveEnvironmentInfoMessage$ = [3, n0, _REIMe,
|
|
1458
|
+
0,
|
|
1459
|
+
[_IT, _EI, _EN],
|
|
1460
|
+
[0, 0, 0], 1
|
|
1461
|
+
];
|
|
1462
|
+
var RetrieveEnvironmentInfoResultMessage$ = [3, n0, _REIRM,
|
|
1463
|
+
0,
|
|
1464
|
+
[_EInv],
|
|
1465
|
+
[() => EnvironmentInfoDescriptionList]
|
|
1466
|
+
];
|
|
1467
|
+
var S3Location$ = [3, n0, _SL,
|
|
1468
|
+
0,
|
|
1469
|
+
[_SBu, _SK],
|
|
1470
|
+
[0, 0]
|
|
1471
|
+
];
|
|
1472
|
+
var SearchFilter$ = [3, n0, _SF,
|
|
1473
|
+
0,
|
|
1474
|
+
[_At, _Op, _Val],
|
|
1475
|
+
[0, 0, 64 | 0]
|
|
1476
|
+
];
|
|
1477
|
+
var SingleInstanceHealth$ = [3, n0, _SIH,
|
|
1478
|
+
0,
|
|
1479
|
+
[_IIn, _HS, _C, _Ca, _LA, _AM, _Sy, _De, _AZ, _ITn],
|
|
1480
|
+
[0, 0, 0, 64 | 0, 4, () => ApplicationMetrics$, () => SystemStatus$, () => Deployment$, 0, 0]
|
|
1481
|
+
];
|
|
1482
|
+
var SolutionStackDescription$ = [3, n0, _SSDo,
|
|
1483
|
+
0,
|
|
1484
|
+
[_SSN, _PFT],
|
|
1485
|
+
[0, 64 | 0]
|
|
1486
|
+
];
|
|
1487
|
+
var SourceBuildInformation$ = [3, n0, _SBI,
|
|
1488
|
+
0,
|
|
1489
|
+
[_STo, _SRo, _SLo],
|
|
1490
|
+
[0, 0, 0], 3
|
|
1491
|
+
];
|
|
1492
|
+
var SourceConfiguration$ = [3, n0, _SCo,
|
|
1493
|
+
0,
|
|
1494
|
+
[_AN, _TN],
|
|
1495
|
+
[0, 0]
|
|
1496
|
+
];
|
|
1497
|
+
var StatusCodes$ = [3, n0, _SC,
|
|
1498
|
+
0,
|
|
1499
|
+
[_St, _Sta, _Stat, _Statu],
|
|
1500
|
+
[1, 1, 1, 1]
|
|
1501
|
+
];
|
|
1502
|
+
var SwapEnvironmentCNAMEsMessage$ = [3, n0, _SECNAMEM,
|
|
1503
|
+
0,
|
|
1504
|
+
[_SEI, _SEN, _DEI, _DEN],
|
|
1505
|
+
[0, 0, 0, 0]
|
|
1506
|
+
];
|
|
1507
|
+
var SystemStatus$ = [3, n0, _SSy,
|
|
1508
|
+
0,
|
|
1509
|
+
[_CPUU, _LAo],
|
|
1510
|
+
[() => CPUUtilization$, 64 | 1]
|
|
1511
|
+
];
|
|
1512
|
+
var Tag$ = [3, n0, _Ta,
|
|
1513
|
+
0,
|
|
1514
|
+
[_K, _Va],
|
|
1515
|
+
[0, 0]
|
|
1516
|
+
];
|
|
1517
|
+
var TerminateEnvironmentMessage$ = [3, n0, _TEM,
|
|
1518
|
+
0,
|
|
1519
|
+
[_EI, _EN, _TR, _FTo],
|
|
1520
|
+
[0, 0, 2, 2]
|
|
1521
|
+
];
|
|
1522
|
+
var Trigger$ = [3, n0, _Tri,
|
|
1523
|
+
0,
|
|
1524
|
+
[_N],
|
|
1525
|
+
[0]
|
|
1526
|
+
];
|
|
1527
|
+
var UpdateApplicationMessage$ = [3, n0, _UAM,
|
|
1528
|
+
0,
|
|
1529
|
+
[_AN, _D],
|
|
1530
|
+
[0, 0], 1
|
|
1531
|
+
];
|
|
1532
|
+
var UpdateApplicationResourceLifecycleMessage$ = [3, n0, _UARLM,
|
|
1533
|
+
0,
|
|
1534
|
+
[_AN, _RLC],
|
|
1535
|
+
[0, () => ApplicationResourceLifecycleConfig$], 2
|
|
1536
|
+
];
|
|
1537
|
+
var UpdateApplicationVersionMessage$ = [3, n0, _UAVM,
|
|
1538
|
+
0,
|
|
1539
|
+
[_AN, _VL, _D],
|
|
1540
|
+
[0, 0, 0], 2
|
|
1541
|
+
];
|
|
1542
|
+
var UpdateConfigurationTemplateMessage$ = [3, n0, _UCTM,
|
|
1543
|
+
0,
|
|
1544
|
+
[_AN, _TN, _D, _OS, _OTR],
|
|
1545
|
+
[0, 0, 0, () => ConfigurationOptionSettingsList, () => OptionsSpecifierList], 2
|
|
1546
|
+
];
|
|
1547
|
+
var UpdateEnvironmentMessage$ = [3, n0, _UEM,
|
|
1548
|
+
0,
|
|
1549
|
+
[_AN, _EI, _EN, _GN, _D, _Ti, _VL, _TN, _SSN, _PA, _OS, _OTR],
|
|
1550
|
+
[0, 0, 0, 0, 0, () => EnvironmentTier$, 0, 0, 0, 0, () => ConfigurationOptionSettingsList, () => OptionsSpecifierList]
|
|
1551
|
+
];
|
|
1552
|
+
var UpdateTagsForResourceMessage$ = [3, n0, _UTFRM,
|
|
1553
|
+
0,
|
|
1554
|
+
[_RAe, _TTA, _TTR],
|
|
1555
|
+
[0, () => TagList, 64 | 0], 1
|
|
1556
|
+
];
|
|
1557
|
+
var ValidateConfigurationSettingsMessage$ = [3, n0, _VCSM,
|
|
1558
|
+
0,
|
|
1559
|
+
[_AN, _OS, _TN, _EN],
|
|
1560
|
+
[0, () => ConfigurationOptionSettingsList, 0, 0], 2
|
|
1561
|
+
];
|
|
1562
|
+
var ValidationMessage$ = [3, n0, _VM,
|
|
1563
|
+
0,
|
|
1564
|
+
[_Me, _Se, _Na, _ON],
|
|
1565
|
+
[0, 0, 0, 0]
|
|
1566
|
+
];
|
|
1567
|
+
var __Unit = "unit";
|
|
1568
|
+
var ApplicationDescriptionList = [1, n0, _ADL,
|
|
1569
|
+
0, () => ApplicationDescription$
|
|
1570
|
+
];
|
|
1571
|
+
var ApplicationVersionDescriptionList = [1, n0, _AVDL,
|
|
1572
|
+
0, () => ApplicationVersionDescription$
|
|
1573
|
+
];
|
|
1574
|
+
var AutoScalingGroupList = [1, n0, _ASGL,
|
|
1575
|
+
0, () => AutoScalingGroup$
|
|
1576
|
+
];
|
|
1577
|
+
var AvailableSolutionStackDetailsList = [1, n0, _ASSDL,
|
|
1578
|
+
0, () => SolutionStackDescription$
|
|
1579
|
+
];
|
|
1580
|
+
var ConfigurationOptionDescriptionsList = [1, n0, _CODL,
|
|
1581
|
+
0, () => ConfigurationOptionDescription$
|
|
1582
|
+
];
|
|
1583
|
+
var ConfigurationOptionSettingsList = [1, n0, _COSL,
|
|
1584
|
+
0, () => ConfigurationOptionSetting$
|
|
1585
|
+
];
|
|
1586
|
+
var ConfigurationSettingsDescriptionList = [1, n0, _CSDL,
|
|
1587
|
+
0, () => ConfigurationSettingsDescription$
|
|
1588
|
+
];
|
|
1589
|
+
var CustomAmiList = [1, n0, _CAL,
|
|
1590
|
+
0, () => CustomAmi$
|
|
1591
|
+
];
|
|
1592
|
+
var EnvironmentDescriptionsList = [1, n0, _EDL,
|
|
1593
|
+
0, () => EnvironmentDescription$
|
|
1594
|
+
];
|
|
1595
|
+
var EnvironmentInfoDescriptionList = [1, n0, _EIDL,
|
|
1596
|
+
0, () => EnvironmentInfoDescription$
|
|
1597
|
+
];
|
|
1598
|
+
var EnvironmentLinks = [1, n0, _EL,
|
|
1599
|
+
0, () => EnvironmentLink$
|
|
1600
|
+
];
|
|
1601
|
+
var EventDescriptionList = [1, n0, _EDLv,
|
|
1602
|
+
0, () => EventDescription$
|
|
1603
|
+
];
|
|
1604
|
+
var InstanceHealthList = [1, n0, _IHL,
|
|
1605
|
+
0, () => SingleInstanceHealth$
|
|
1606
|
+
];
|
|
1607
|
+
var InstanceList = [1, n0, _IL,
|
|
1608
|
+
0, () => Instance$
|
|
1609
|
+
];
|
|
1610
|
+
var LaunchConfigurationList = [1, n0, _LCL,
|
|
1611
|
+
0, () => LaunchConfiguration$
|
|
1612
|
+
];
|
|
1613
|
+
var LaunchTemplateList = [1, n0, _LTL,
|
|
1614
|
+
0, () => LaunchTemplate$
|
|
1615
|
+
];
|
|
1616
|
+
var LoadBalancerList = [1, n0, _LBL,
|
|
1617
|
+
0, () => LoadBalancer$
|
|
1618
|
+
];
|
|
1619
|
+
var LoadBalancerListenersDescription = [1, n0, _LBLD,
|
|
1620
|
+
0, () => Listener$
|
|
1621
|
+
];
|
|
1622
|
+
var ManagedActionHistoryItems = [1, n0, _MAHI,
|
|
1623
|
+
0, () => ManagedActionHistoryItem$
|
|
1624
|
+
];
|
|
1625
|
+
var ManagedActions = [1, n0, _MA,
|
|
1626
|
+
0, () => ManagedAction$
|
|
1627
|
+
];
|
|
1628
|
+
var OptionsSpecifierList = [1, n0, _OSL,
|
|
1629
|
+
0, () => OptionSpecification$
|
|
1630
|
+
];
|
|
1631
|
+
var PlatformBranchSummaryList = [1, n0, _PBSL,
|
|
1632
|
+
0, () => PlatformBranchSummary$
|
|
1633
|
+
];
|
|
1634
|
+
var PlatformFilters = [1, n0, _PFla,
|
|
1635
|
+
0, () => PlatformFilter$
|
|
1636
|
+
];
|
|
1637
|
+
var PlatformFrameworks = [1, n0, _PFlat,
|
|
1638
|
+
0, () => PlatformFramework$
|
|
1639
|
+
];
|
|
1640
|
+
var PlatformProgrammingLanguages = [1, n0, _PPLl,
|
|
1641
|
+
0, () => PlatformProgrammingLanguage$
|
|
1642
|
+
];
|
|
1643
|
+
var PlatformSummaryList = [1, n0, _PSL,
|
|
1644
|
+
0, () => PlatformSummary$
|
|
1645
|
+
];
|
|
1646
|
+
var QueueList = [1, n0, _QL,
|
|
1647
|
+
0, () => Queue$
|
|
1648
|
+
];
|
|
1649
|
+
var SearchFilters = [1, n0, _SFe,
|
|
1650
|
+
0, () => SearchFilter$
|
|
1651
|
+
];
|
|
1652
|
+
var TagList = [1, n0, _TL,
|
|
1653
|
+
0, () => Tag$
|
|
1654
|
+
];
|
|
1655
|
+
var Tags = [1, n0, _T,
|
|
1656
|
+
0, () => Tag$
|
|
1657
|
+
];
|
|
1658
|
+
var TriggerList = [1, n0, _TLr,
|
|
1659
|
+
0, () => Trigger$
|
|
1660
|
+
];
|
|
1661
|
+
var ValidationMessagesList = [1, n0, _VML,
|
|
1662
|
+
0, () => ValidationMessage$
|
|
1663
|
+
];
|
|
1664
|
+
var AbortEnvironmentUpdate$ = [9, n0, _AEU,
|
|
1665
|
+
0, () => AbortEnvironmentUpdateMessage$, () => __Unit
|
|
1666
|
+
];
|
|
1667
|
+
var ApplyEnvironmentManagedAction$ = [9, n0, _AEMA,
|
|
1668
|
+
0, () => ApplyEnvironmentManagedActionRequest$, () => ApplyEnvironmentManagedActionResult$
|
|
1669
|
+
];
|
|
1670
|
+
var AssociateEnvironmentOperationsRole$ = [9, n0, _AEOR,
|
|
1671
|
+
0, () => AssociateEnvironmentOperationsRoleMessage$, () => __Unit
|
|
1672
|
+
];
|
|
1673
|
+
var CheckDNSAvailability$ = [9, n0, _CDNSA,
|
|
1674
|
+
0, () => CheckDNSAvailabilityMessage$, () => CheckDNSAvailabilityResultMessage$
|
|
1675
|
+
];
|
|
1676
|
+
var ComposeEnvironments$ = [9, n0, _CE,
|
|
1677
|
+
0, () => ComposeEnvironmentsMessage$, () => EnvironmentDescriptionsMessage$
|
|
1678
|
+
];
|
|
1679
|
+
var CreateApplication$ = [9, n0, _CAr,
|
|
1680
|
+
0, () => CreateApplicationMessage$, () => ApplicationDescriptionMessage$
|
|
1681
|
+
];
|
|
1682
|
+
var CreateApplicationVersion$ = [9, n0, _CAV,
|
|
1683
|
+
0, () => CreateApplicationVersionMessage$, () => ApplicationVersionDescriptionMessage$
|
|
1684
|
+
];
|
|
1685
|
+
var CreateConfigurationTemplate$ = [9, n0, _CCT,
|
|
1686
|
+
0, () => CreateConfigurationTemplateMessage$, () => ConfigurationSettingsDescription$
|
|
1687
|
+
];
|
|
1688
|
+
var CreateEnvironment$ = [9, n0, _CEr,
|
|
1689
|
+
0, () => CreateEnvironmentMessage$, () => EnvironmentDescription$
|
|
1690
|
+
];
|
|
1691
|
+
var CreatePlatformVersion$ = [9, n0, _CPV,
|
|
1692
|
+
0, () => CreatePlatformVersionRequest$, () => CreatePlatformVersionResult$
|
|
1693
|
+
];
|
|
1694
|
+
var CreateStorageLocation$ = [9, n0, _CSL,
|
|
1695
|
+
0, () => __Unit, () => CreateStorageLocationResultMessage$
|
|
1696
|
+
];
|
|
1697
|
+
var DeleteApplication$ = [9, n0, _DA,
|
|
1698
|
+
0, () => DeleteApplicationMessage$, () => __Unit
|
|
1699
|
+
];
|
|
1700
|
+
var DeleteApplicationVersion$ = [9, n0, _DAV,
|
|
1701
|
+
0, () => DeleteApplicationVersionMessage$, () => __Unit
|
|
1702
|
+
];
|
|
1703
|
+
var DeleteConfigurationTemplate$ = [9, n0, _DCT,
|
|
1704
|
+
0, () => DeleteConfigurationTemplateMessage$, () => __Unit
|
|
1705
|
+
];
|
|
1706
|
+
var DeleteEnvironmentConfiguration$ = [9, n0, _DEC,
|
|
1707
|
+
0, () => DeleteEnvironmentConfigurationMessage$, () => __Unit
|
|
1708
|
+
];
|
|
1709
|
+
var DeletePlatformVersion$ = [9, n0, _DPV,
|
|
1710
|
+
0, () => DeletePlatformVersionRequest$, () => DeletePlatformVersionResult$
|
|
1711
|
+
];
|
|
1712
|
+
var DescribeAccountAttributes$ = [9, n0, _DAA,
|
|
1713
|
+
0, () => __Unit, () => DescribeAccountAttributesResult$
|
|
1714
|
+
];
|
|
1715
|
+
var DescribeApplications$ = [9, n0, _DAe,
|
|
1716
|
+
0, () => DescribeApplicationsMessage$, () => ApplicationDescriptionsMessage$
|
|
1717
|
+
];
|
|
1718
|
+
var DescribeApplicationVersions$ = [9, n0, _DAVe,
|
|
1719
|
+
0, () => DescribeApplicationVersionsMessage$, () => ApplicationVersionDescriptionsMessage$
|
|
1720
|
+
];
|
|
1721
|
+
var DescribeConfigurationOptions$ = [9, n0, _DCO,
|
|
1722
|
+
0, () => DescribeConfigurationOptionsMessage$, () => ConfigurationOptionsDescription$
|
|
1723
|
+
];
|
|
1724
|
+
var DescribeConfigurationSettings$ = [9, n0, _DCS,
|
|
1725
|
+
0, () => DescribeConfigurationSettingsMessage$, () => ConfigurationSettingsDescriptions$
|
|
1726
|
+
];
|
|
1727
|
+
var DescribeEnvironmentHealth$ = [9, n0, _DEH,
|
|
1728
|
+
0, () => DescribeEnvironmentHealthRequest$, () => DescribeEnvironmentHealthResult$
|
|
1729
|
+
];
|
|
1730
|
+
var DescribeEnvironmentManagedActionHistory$ = [9, n0, _DEMAH,
|
|
1731
|
+
0, () => DescribeEnvironmentManagedActionHistoryRequest$, () => DescribeEnvironmentManagedActionHistoryResult$
|
|
1732
|
+
];
|
|
1733
|
+
var DescribeEnvironmentManagedActions$ = [9, n0, _DEMA,
|
|
1734
|
+
0, () => DescribeEnvironmentManagedActionsRequest$, () => DescribeEnvironmentManagedActionsResult$
|
|
1735
|
+
];
|
|
1736
|
+
var DescribeEnvironmentResources$ = [9, n0, _DER,
|
|
1737
|
+
0, () => DescribeEnvironmentResourcesMessage$, () => EnvironmentResourceDescriptionsMessage$
|
|
1738
|
+
];
|
|
1739
|
+
var DescribeEnvironments$ = [9, n0, _DE,
|
|
1740
|
+
0, () => DescribeEnvironmentsMessage$, () => EnvironmentDescriptionsMessage$
|
|
1741
|
+
];
|
|
1742
|
+
var DescribeEvents$ = [9, n0, _DEe,
|
|
1743
|
+
0, () => DescribeEventsMessage$, () => EventDescriptionsMessage$
|
|
1744
|
+
];
|
|
1745
|
+
var DescribeInstancesHealth$ = [9, n0, _DIH,
|
|
1746
|
+
0, () => DescribeInstancesHealthRequest$, () => DescribeInstancesHealthResult$
|
|
1747
|
+
];
|
|
1748
|
+
var DescribePlatformVersion$ = [9, n0, _DPVe,
|
|
1749
|
+
0, () => DescribePlatformVersionRequest$, () => DescribePlatformVersionResult$
|
|
1750
|
+
];
|
|
1751
|
+
var DisassociateEnvironmentOperationsRole$ = [9, n0, _DEOR,
|
|
1752
|
+
0, () => DisassociateEnvironmentOperationsRoleMessage$, () => __Unit
|
|
1753
|
+
];
|
|
1754
|
+
var ListAvailableSolutionStacks$ = [9, n0, _LASS,
|
|
1755
|
+
0, () => __Unit, () => ListAvailableSolutionStacksResultMessage$
|
|
1756
|
+
];
|
|
1757
|
+
var ListPlatformBranches$ = [9, n0, _LPB,
|
|
1758
|
+
0, () => ListPlatformBranchesRequest$, () => ListPlatformBranchesResult$
|
|
1759
|
+
];
|
|
1760
|
+
var ListPlatformVersions$ = [9, n0, _LPV,
|
|
1761
|
+
0, () => ListPlatformVersionsRequest$, () => ListPlatformVersionsResult$
|
|
1762
|
+
];
|
|
1763
|
+
var ListTagsForResource$ = [9, n0, _LTFR,
|
|
1764
|
+
0, () => ListTagsForResourceMessage$, () => ResourceTagsDescriptionMessage$
|
|
1765
|
+
];
|
|
1766
|
+
var RebuildEnvironment$ = [9, n0, _RE,
|
|
1767
|
+
0, () => RebuildEnvironmentMessage$, () => __Unit
|
|
1768
|
+
];
|
|
1769
|
+
var RequestEnvironmentInfo$ = [9, n0, _REI,
|
|
1770
|
+
0, () => RequestEnvironmentInfoMessage$, () => __Unit
|
|
1771
|
+
];
|
|
1772
|
+
var RestartAppServer$ = [9, n0, _RAS,
|
|
1773
|
+
0, () => RestartAppServerMessage$, () => __Unit
|
|
1774
|
+
];
|
|
1775
|
+
var RetrieveEnvironmentInfo$ = [9, n0, _REIe,
|
|
1776
|
+
0, () => RetrieveEnvironmentInfoMessage$, () => RetrieveEnvironmentInfoResultMessage$
|
|
1777
|
+
];
|
|
1778
|
+
var SwapEnvironmentCNAMEs$ = [9, n0, _SECNAME,
|
|
1779
|
+
0, () => SwapEnvironmentCNAMEsMessage$, () => __Unit
|
|
1780
|
+
];
|
|
1781
|
+
var TerminateEnvironment$ = [9, n0, _TE,
|
|
1782
|
+
0, () => TerminateEnvironmentMessage$, () => EnvironmentDescription$
|
|
1783
|
+
];
|
|
1784
|
+
var UpdateApplication$ = [9, n0, _UA,
|
|
1785
|
+
0, () => UpdateApplicationMessage$, () => ApplicationDescriptionMessage$
|
|
1786
|
+
];
|
|
1787
|
+
var UpdateApplicationResourceLifecycle$ = [9, n0, _UARL,
|
|
1788
|
+
0, () => UpdateApplicationResourceLifecycleMessage$, () => ApplicationResourceLifecycleDescriptionMessage$
|
|
1789
|
+
];
|
|
1790
|
+
var UpdateApplicationVersion$ = [9, n0, _UAV,
|
|
1791
|
+
0, () => UpdateApplicationVersionMessage$, () => ApplicationVersionDescriptionMessage$
|
|
1792
|
+
];
|
|
1793
|
+
var UpdateConfigurationTemplate$ = [9, n0, _UCT,
|
|
1794
|
+
0, () => UpdateConfigurationTemplateMessage$, () => ConfigurationSettingsDescription$
|
|
1795
|
+
];
|
|
1796
|
+
var UpdateEnvironment$ = [9, n0, _UE,
|
|
1797
|
+
0, () => UpdateEnvironmentMessage$, () => EnvironmentDescription$
|
|
1798
|
+
];
|
|
1799
|
+
var UpdateTagsForResource$ = [9, n0, _UTFR,
|
|
1800
|
+
0, () => UpdateTagsForResourceMessage$, () => __Unit
|
|
1801
|
+
];
|
|
1802
|
+
var ValidateConfigurationSettings$ = [9, n0, _VCS,
|
|
1803
|
+
0, () => ValidateConfigurationSettingsMessage$, () => ConfigurationSettingsValidationMessages$
|
|
1804
|
+
];
|
|
1805
|
+
|
|
1806
|
+
const getRuntimeConfig$1 = (config) => {
|
|
1807
|
+
return {
|
|
1808
|
+
apiVersion: "2010-12-01",
|
|
1809
|
+
base64Decoder: config?.base64Decoder ?? fromBase64,
|
|
1810
|
+
base64Encoder: config?.base64Encoder ?? toBase64,
|
|
1811
|
+
disableHostPrefix: config?.disableHostPrefix ?? false,
|
|
1812
|
+
endpointProvider: config?.endpointProvider ?? defaultEndpointResolver,
|
|
1813
|
+
extensions: config?.extensions ?? [],
|
|
1814
|
+
httpAuthSchemeProvider: config?.httpAuthSchemeProvider ?? defaultElasticBeanstalkHttpAuthSchemeProvider,
|
|
1815
|
+
httpAuthSchemes: config?.httpAuthSchemes ?? [
|
|
1816
|
+
{
|
|
1817
|
+
schemeId: "aws.auth#sigv4",
|
|
1818
|
+
identityProvider: (ipc) => ipc.getIdentityProvider("aws.auth#sigv4"),
|
|
1819
|
+
signer: new AwsSdkSigV4Signer(),
|
|
1820
|
+
},
|
|
1821
|
+
],
|
|
1822
|
+
logger: config?.logger ?? new NoOpLogger(),
|
|
1823
|
+
protocol: config?.protocol ?? AwsQueryProtocol,
|
|
1824
|
+
protocolSettings: config?.protocolSettings ?? {
|
|
1825
|
+
defaultNamespace: "com.amazonaws.elasticbeanstalk",
|
|
1826
|
+
errorTypeRegistries,
|
|
1827
|
+
xmlNamespace: "http://elasticbeanstalk.amazonaws.com/docs/2010-12-01/",
|
|
1828
|
+
version: "2010-12-01",
|
|
1829
|
+
serviceTarget: "AWSElasticBeanstalkService",
|
|
1830
|
+
},
|
|
1831
|
+
serviceId: config?.serviceId ?? "Elastic Beanstalk",
|
|
1832
|
+
sha256: config?.sha256 ?? Sha256,
|
|
1833
|
+
urlParser: config?.urlParser ?? parseUrl,
|
|
1834
|
+
utf8Decoder: config?.utf8Decoder ?? fromUtf8,
|
|
1835
|
+
utf8Encoder: config?.utf8Encoder ?? toUtf8,
|
|
1836
|
+
};
|
|
1837
|
+
};
|
|
1838
|
+
|
|
1839
|
+
const getRuntimeConfig = (config) => {
|
|
1840
|
+
emitWarningIfUnsupportedVersion(process.version);
|
|
1841
|
+
const defaultsMode = resolveDefaultsModeConfig(config);
|
|
1842
|
+
const defaultConfigProvider = () => defaultsMode().then(loadConfigsForDefaultMode);
|
|
1843
|
+
const clientSharedValues = getRuntimeConfig$1(config);
|
|
1844
|
+
emitWarningIfUnsupportedVersion$1(process.version);
|
|
1845
|
+
const loaderConfig = {
|
|
1846
|
+
profile: config?.profile,
|
|
1847
|
+
logger: clientSharedValues.logger,
|
|
1848
|
+
};
|
|
1849
|
+
return {
|
|
1850
|
+
...clientSharedValues,
|
|
1851
|
+
...config,
|
|
1852
|
+
runtime: "node",
|
|
1853
|
+
defaultsMode,
|
|
1854
|
+
authSchemePreference: config?.authSchemePreference ?? loadConfig(NODE_AUTH_SCHEME_PREFERENCE_OPTIONS, loaderConfig),
|
|
1855
|
+
bodyLengthChecker: config?.bodyLengthChecker ?? calculateBodyLength,
|
|
1856
|
+
credentialDefaultProvider: config?.credentialDefaultProvider ?? defaultProvider,
|
|
1857
|
+
defaultUserAgentProvider: config?.defaultUserAgentProvider ?? createDefaultUserAgentProvider({ serviceId: clientSharedValues.serviceId, clientVersion: packageInfo.version }),
|
|
1858
|
+
maxAttempts: config?.maxAttempts ?? loadConfig(NODE_MAX_ATTEMPT_CONFIG_OPTIONS, config),
|
|
1859
|
+
region: config?.region ?? loadConfig(NODE_REGION_CONFIG_OPTIONS, { ...NODE_REGION_CONFIG_FILE_OPTIONS, ...loaderConfig }),
|
|
1860
|
+
requestHandler: NodeHttpHandler.create(config?.requestHandler ?? defaultConfigProvider),
|
|
1861
|
+
retryMode: config?.retryMode ??
|
|
1862
|
+
loadConfig({
|
|
1863
|
+
...NODE_RETRY_MODE_CONFIG_OPTIONS,
|
|
1864
|
+
default: async () => (await defaultConfigProvider()).retryMode || DEFAULT_RETRY_MODE,
|
|
1865
|
+
}, config),
|
|
1866
|
+
streamCollector: config?.streamCollector ?? streamCollector,
|
|
1867
|
+
useDualstackEndpoint: config?.useDualstackEndpoint ?? loadConfig(NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
|
|
1868
|
+
useFipsEndpoint: config?.useFipsEndpoint ?? loadConfig(NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
|
|
1869
|
+
userAgentAppId: config?.userAgentAppId ?? loadConfig(NODE_APP_ID_CONFIG_OPTIONS, loaderConfig),
|
|
1870
|
+
};
|
|
1871
|
+
};
|
|
1872
|
+
|
|
34
1873
|
const getHttpAuthExtensionConfiguration = (runtimeConfig) => {
|
|
35
1874
|
const _httpAuthSchemes = runtimeConfig.httpAuthSchemes;
|
|
36
1875
|
let _httpAuthSchemeProvider = runtimeConfig.httpAuthSchemeProvider;
|
|
@@ -1041,74 +2880,288 @@ const ValidationSeverity = {
|
|
|
1041
2880
|
warning: "warning",
|
|
1042
2881
|
};
|
|
1043
2882
|
|
|
2883
|
+
exports.AbortEnvironmentUpdate$ = AbortEnvironmentUpdate$;
|
|
1044
2884
|
exports.AbortEnvironmentUpdateCommand = AbortEnvironmentUpdateCommand;
|
|
2885
|
+
exports.AbortEnvironmentUpdateMessage$ = AbortEnvironmentUpdateMessage$;
|
|
1045
2886
|
exports.ActionHistoryStatus = ActionHistoryStatus;
|
|
1046
2887
|
exports.ActionStatus = ActionStatus;
|
|
1047
2888
|
exports.ActionType = ActionType;
|
|
2889
|
+
exports.ApplicationDescription$ = ApplicationDescription$;
|
|
2890
|
+
exports.ApplicationDescriptionMessage$ = ApplicationDescriptionMessage$;
|
|
2891
|
+
exports.ApplicationDescriptionsMessage$ = ApplicationDescriptionsMessage$;
|
|
2892
|
+
exports.ApplicationMetrics$ = ApplicationMetrics$;
|
|
2893
|
+
exports.ApplicationResourceLifecycleConfig$ = ApplicationResourceLifecycleConfig$;
|
|
2894
|
+
exports.ApplicationResourceLifecycleDescriptionMessage$ = ApplicationResourceLifecycleDescriptionMessage$;
|
|
2895
|
+
exports.ApplicationVersionDescription$ = ApplicationVersionDescription$;
|
|
2896
|
+
exports.ApplicationVersionDescriptionMessage$ = ApplicationVersionDescriptionMessage$;
|
|
2897
|
+
exports.ApplicationVersionDescriptionsMessage$ = ApplicationVersionDescriptionsMessage$;
|
|
2898
|
+
exports.ApplicationVersionLifecycleConfig$ = ApplicationVersionLifecycleConfig$;
|
|
1048
2899
|
exports.ApplicationVersionStatus = ApplicationVersionStatus;
|
|
2900
|
+
exports.ApplyEnvironmentManagedAction$ = ApplyEnvironmentManagedAction$;
|
|
1049
2901
|
exports.ApplyEnvironmentManagedActionCommand = ApplyEnvironmentManagedActionCommand;
|
|
2902
|
+
exports.ApplyEnvironmentManagedActionRequest$ = ApplyEnvironmentManagedActionRequest$;
|
|
2903
|
+
exports.ApplyEnvironmentManagedActionResult$ = ApplyEnvironmentManagedActionResult$;
|
|
2904
|
+
exports.AssociateEnvironmentOperationsRole$ = AssociateEnvironmentOperationsRole$;
|
|
1050
2905
|
exports.AssociateEnvironmentOperationsRoleCommand = AssociateEnvironmentOperationsRoleCommand;
|
|
2906
|
+
exports.AssociateEnvironmentOperationsRoleMessage$ = AssociateEnvironmentOperationsRoleMessage$;
|
|
2907
|
+
exports.AutoScalingGroup$ = AutoScalingGroup$;
|
|
2908
|
+
exports.BuildConfiguration$ = BuildConfiguration$;
|
|
2909
|
+
exports.Builder$ = Builder$;
|
|
2910
|
+
exports.CPUUtilization$ = CPUUtilization$;
|
|
2911
|
+
exports.CheckDNSAvailability$ = CheckDNSAvailability$;
|
|
1051
2912
|
exports.CheckDNSAvailabilityCommand = CheckDNSAvailabilityCommand;
|
|
2913
|
+
exports.CheckDNSAvailabilityMessage$ = CheckDNSAvailabilityMessage$;
|
|
2914
|
+
exports.CheckDNSAvailabilityResultMessage$ = CheckDNSAvailabilityResultMessage$;
|
|
2915
|
+
exports.CodeBuildNotInServiceRegionException = CodeBuildNotInServiceRegionException;
|
|
2916
|
+
exports.CodeBuildNotInServiceRegionException$ = CodeBuildNotInServiceRegionException$;
|
|
2917
|
+
exports.ComposeEnvironments$ = ComposeEnvironments$;
|
|
1052
2918
|
exports.ComposeEnvironmentsCommand = ComposeEnvironmentsCommand;
|
|
2919
|
+
exports.ComposeEnvironmentsMessage$ = ComposeEnvironmentsMessage$;
|
|
1053
2920
|
exports.ComputeType = ComputeType;
|
|
1054
2921
|
exports.ConfigurationDeploymentStatus = ConfigurationDeploymentStatus;
|
|
2922
|
+
exports.ConfigurationOptionDescription$ = ConfigurationOptionDescription$;
|
|
2923
|
+
exports.ConfigurationOptionSetting$ = ConfigurationOptionSetting$;
|
|
1055
2924
|
exports.ConfigurationOptionValueType = ConfigurationOptionValueType;
|
|
2925
|
+
exports.ConfigurationOptionsDescription$ = ConfigurationOptionsDescription$;
|
|
2926
|
+
exports.ConfigurationSettingsDescription$ = ConfigurationSettingsDescription$;
|
|
2927
|
+
exports.ConfigurationSettingsDescriptions$ = ConfigurationSettingsDescriptions$;
|
|
2928
|
+
exports.ConfigurationSettingsValidationMessages$ = ConfigurationSettingsValidationMessages$;
|
|
2929
|
+
exports.CreateApplication$ = CreateApplication$;
|
|
1056
2930
|
exports.CreateApplicationCommand = CreateApplicationCommand;
|
|
2931
|
+
exports.CreateApplicationMessage$ = CreateApplicationMessage$;
|
|
2932
|
+
exports.CreateApplicationVersion$ = CreateApplicationVersion$;
|
|
1057
2933
|
exports.CreateApplicationVersionCommand = CreateApplicationVersionCommand;
|
|
2934
|
+
exports.CreateApplicationVersionMessage$ = CreateApplicationVersionMessage$;
|
|
2935
|
+
exports.CreateConfigurationTemplate$ = CreateConfigurationTemplate$;
|
|
1058
2936
|
exports.CreateConfigurationTemplateCommand = CreateConfigurationTemplateCommand;
|
|
2937
|
+
exports.CreateConfigurationTemplateMessage$ = CreateConfigurationTemplateMessage$;
|
|
2938
|
+
exports.CreateEnvironment$ = CreateEnvironment$;
|
|
1059
2939
|
exports.CreateEnvironmentCommand = CreateEnvironmentCommand;
|
|
2940
|
+
exports.CreateEnvironmentMessage$ = CreateEnvironmentMessage$;
|
|
2941
|
+
exports.CreatePlatformVersion$ = CreatePlatformVersion$;
|
|
1060
2942
|
exports.CreatePlatformVersionCommand = CreatePlatformVersionCommand;
|
|
2943
|
+
exports.CreatePlatformVersionRequest$ = CreatePlatformVersionRequest$;
|
|
2944
|
+
exports.CreatePlatformVersionResult$ = CreatePlatformVersionResult$;
|
|
2945
|
+
exports.CreateStorageLocation$ = CreateStorageLocation$;
|
|
1061
2946
|
exports.CreateStorageLocationCommand = CreateStorageLocationCommand;
|
|
2947
|
+
exports.CreateStorageLocationResultMessage$ = CreateStorageLocationResultMessage$;
|
|
2948
|
+
exports.CustomAmi$ = CustomAmi$;
|
|
2949
|
+
exports.DeleteApplication$ = DeleteApplication$;
|
|
1062
2950
|
exports.DeleteApplicationCommand = DeleteApplicationCommand;
|
|
2951
|
+
exports.DeleteApplicationMessage$ = DeleteApplicationMessage$;
|
|
2952
|
+
exports.DeleteApplicationVersion$ = DeleteApplicationVersion$;
|
|
1063
2953
|
exports.DeleteApplicationVersionCommand = DeleteApplicationVersionCommand;
|
|
2954
|
+
exports.DeleteApplicationVersionMessage$ = DeleteApplicationVersionMessage$;
|
|
2955
|
+
exports.DeleteConfigurationTemplate$ = DeleteConfigurationTemplate$;
|
|
1064
2956
|
exports.DeleteConfigurationTemplateCommand = DeleteConfigurationTemplateCommand;
|
|
2957
|
+
exports.DeleteConfigurationTemplateMessage$ = DeleteConfigurationTemplateMessage$;
|
|
2958
|
+
exports.DeleteEnvironmentConfiguration$ = DeleteEnvironmentConfiguration$;
|
|
1065
2959
|
exports.DeleteEnvironmentConfigurationCommand = DeleteEnvironmentConfigurationCommand;
|
|
2960
|
+
exports.DeleteEnvironmentConfigurationMessage$ = DeleteEnvironmentConfigurationMessage$;
|
|
2961
|
+
exports.DeletePlatformVersion$ = DeletePlatformVersion$;
|
|
1066
2962
|
exports.DeletePlatformVersionCommand = DeletePlatformVersionCommand;
|
|
2963
|
+
exports.DeletePlatformVersionRequest$ = DeletePlatformVersionRequest$;
|
|
2964
|
+
exports.DeletePlatformVersionResult$ = DeletePlatformVersionResult$;
|
|
2965
|
+
exports.Deployment$ = Deployment$;
|
|
2966
|
+
exports.DescribeAccountAttributes$ = DescribeAccountAttributes$;
|
|
1067
2967
|
exports.DescribeAccountAttributesCommand = DescribeAccountAttributesCommand;
|
|
2968
|
+
exports.DescribeAccountAttributesResult$ = DescribeAccountAttributesResult$;
|
|
2969
|
+
exports.DescribeApplicationVersions$ = DescribeApplicationVersions$;
|
|
1068
2970
|
exports.DescribeApplicationVersionsCommand = DescribeApplicationVersionsCommand;
|
|
2971
|
+
exports.DescribeApplicationVersionsMessage$ = DescribeApplicationVersionsMessage$;
|
|
2972
|
+
exports.DescribeApplications$ = DescribeApplications$;
|
|
1069
2973
|
exports.DescribeApplicationsCommand = DescribeApplicationsCommand;
|
|
2974
|
+
exports.DescribeApplicationsMessage$ = DescribeApplicationsMessage$;
|
|
2975
|
+
exports.DescribeConfigurationOptions$ = DescribeConfigurationOptions$;
|
|
1070
2976
|
exports.DescribeConfigurationOptionsCommand = DescribeConfigurationOptionsCommand;
|
|
2977
|
+
exports.DescribeConfigurationOptionsMessage$ = DescribeConfigurationOptionsMessage$;
|
|
2978
|
+
exports.DescribeConfigurationSettings$ = DescribeConfigurationSettings$;
|
|
1071
2979
|
exports.DescribeConfigurationSettingsCommand = DescribeConfigurationSettingsCommand;
|
|
2980
|
+
exports.DescribeConfigurationSettingsMessage$ = DescribeConfigurationSettingsMessage$;
|
|
2981
|
+
exports.DescribeEnvironmentHealth$ = DescribeEnvironmentHealth$;
|
|
1072
2982
|
exports.DescribeEnvironmentHealthCommand = DescribeEnvironmentHealthCommand;
|
|
2983
|
+
exports.DescribeEnvironmentHealthRequest$ = DescribeEnvironmentHealthRequest$;
|
|
2984
|
+
exports.DescribeEnvironmentHealthResult$ = DescribeEnvironmentHealthResult$;
|
|
2985
|
+
exports.DescribeEnvironmentManagedActionHistory$ = DescribeEnvironmentManagedActionHistory$;
|
|
1073
2986
|
exports.DescribeEnvironmentManagedActionHistoryCommand = DescribeEnvironmentManagedActionHistoryCommand;
|
|
2987
|
+
exports.DescribeEnvironmentManagedActionHistoryRequest$ = DescribeEnvironmentManagedActionHistoryRequest$;
|
|
2988
|
+
exports.DescribeEnvironmentManagedActionHistoryResult$ = DescribeEnvironmentManagedActionHistoryResult$;
|
|
2989
|
+
exports.DescribeEnvironmentManagedActions$ = DescribeEnvironmentManagedActions$;
|
|
1074
2990
|
exports.DescribeEnvironmentManagedActionsCommand = DescribeEnvironmentManagedActionsCommand;
|
|
2991
|
+
exports.DescribeEnvironmentManagedActionsRequest$ = DescribeEnvironmentManagedActionsRequest$;
|
|
2992
|
+
exports.DescribeEnvironmentManagedActionsResult$ = DescribeEnvironmentManagedActionsResult$;
|
|
2993
|
+
exports.DescribeEnvironmentResources$ = DescribeEnvironmentResources$;
|
|
1075
2994
|
exports.DescribeEnvironmentResourcesCommand = DescribeEnvironmentResourcesCommand;
|
|
2995
|
+
exports.DescribeEnvironmentResourcesMessage$ = DescribeEnvironmentResourcesMessage$;
|
|
2996
|
+
exports.DescribeEnvironments$ = DescribeEnvironments$;
|
|
1076
2997
|
exports.DescribeEnvironmentsCommand = DescribeEnvironmentsCommand;
|
|
2998
|
+
exports.DescribeEnvironmentsMessage$ = DescribeEnvironmentsMessage$;
|
|
2999
|
+
exports.DescribeEvents$ = DescribeEvents$;
|
|
1077
3000
|
exports.DescribeEventsCommand = DescribeEventsCommand;
|
|
3001
|
+
exports.DescribeEventsMessage$ = DescribeEventsMessage$;
|
|
3002
|
+
exports.DescribeInstancesHealth$ = DescribeInstancesHealth$;
|
|
1078
3003
|
exports.DescribeInstancesHealthCommand = DescribeInstancesHealthCommand;
|
|
3004
|
+
exports.DescribeInstancesHealthRequest$ = DescribeInstancesHealthRequest$;
|
|
3005
|
+
exports.DescribeInstancesHealthResult$ = DescribeInstancesHealthResult$;
|
|
3006
|
+
exports.DescribePlatformVersion$ = DescribePlatformVersion$;
|
|
1079
3007
|
exports.DescribePlatformVersionCommand = DescribePlatformVersionCommand;
|
|
3008
|
+
exports.DescribePlatformVersionRequest$ = DescribePlatformVersionRequest$;
|
|
3009
|
+
exports.DescribePlatformVersionResult$ = DescribePlatformVersionResult$;
|
|
3010
|
+
exports.DisassociateEnvironmentOperationsRole$ = DisassociateEnvironmentOperationsRole$;
|
|
1080
3011
|
exports.DisassociateEnvironmentOperationsRoleCommand = DisassociateEnvironmentOperationsRoleCommand;
|
|
3012
|
+
exports.DisassociateEnvironmentOperationsRoleMessage$ = DisassociateEnvironmentOperationsRoleMessage$;
|
|
1081
3013
|
exports.ElasticBeanstalk = ElasticBeanstalk;
|
|
1082
3014
|
exports.ElasticBeanstalkClient = ElasticBeanstalkClient;
|
|
3015
|
+
exports.ElasticBeanstalkServiceException = ElasticBeanstalkServiceException;
|
|
3016
|
+
exports.ElasticBeanstalkServiceException$ = ElasticBeanstalkServiceException$;
|
|
3017
|
+
exports.ElasticBeanstalkSyntheticServiceException = ElasticBeanstalkSyntheticServiceException;
|
|
3018
|
+
exports.ElasticBeanstalkSyntheticServiceException$ = ElasticBeanstalkSyntheticServiceException$;
|
|
3019
|
+
exports.EnvironmentDescription$ = EnvironmentDescription$;
|
|
3020
|
+
exports.EnvironmentDescriptionsMessage$ = EnvironmentDescriptionsMessage$;
|
|
1083
3021
|
exports.EnvironmentHealth = EnvironmentHealth;
|
|
1084
3022
|
exports.EnvironmentHealthAttribute = EnvironmentHealthAttribute;
|
|
1085
3023
|
exports.EnvironmentHealthStatus = EnvironmentHealthStatus;
|
|
3024
|
+
exports.EnvironmentInfoDescription$ = EnvironmentInfoDescription$;
|
|
1086
3025
|
exports.EnvironmentInfoType = EnvironmentInfoType;
|
|
3026
|
+
exports.EnvironmentLink$ = EnvironmentLink$;
|
|
3027
|
+
exports.EnvironmentResourceDescription$ = EnvironmentResourceDescription$;
|
|
3028
|
+
exports.EnvironmentResourceDescriptionsMessage$ = EnvironmentResourceDescriptionsMessage$;
|
|
3029
|
+
exports.EnvironmentResourcesDescription$ = EnvironmentResourcesDescription$;
|
|
1087
3030
|
exports.EnvironmentStatus = EnvironmentStatus;
|
|
3031
|
+
exports.EnvironmentTier$ = EnvironmentTier$;
|
|
3032
|
+
exports.EventDescription$ = EventDescription$;
|
|
3033
|
+
exports.EventDescriptionsMessage$ = EventDescriptionsMessage$;
|
|
1088
3034
|
exports.EventSeverity = EventSeverity;
|
|
1089
3035
|
exports.FailureType = FailureType;
|
|
3036
|
+
exports.Instance$ = Instance$;
|
|
3037
|
+
exports.InstanceHealthSummary$ = InstanceHealthSummary$;
|
|
1090
3038
|
exports.InstancesHealthAttribute = InstancesHealthAttribute;
|
|
3039
|
+
exports.InsufficientPrivilegesException = InsufficientPrivilegesException;
|
|
3040
|
+
exports.InsufficientPrivilegesException$ = InsufficientPrivilegesException$;
|
|
3041
|
+
exports.InvalidRequestException = InvalidRequestException;
|
|
3042
|
+
exports.InvalidRequestException$ = InvalidRequestException$;
|
|
3043
|
+
exports.Latency$ = Latency$;
|
|
3044
|
+
exports.LaunchConfiguration$ = LaunchConfiguration$;
|
|
3045
|
+
exports.LaunchTemplate$ = LaunchTemplate$;
|
|
3046
|
+
exports.ListAvailableSolutionStacks$ = ListAvailableSolutionStacks$;
|
|
1091
3047
|
exports.ListAvailableSolutionStacksCommand = ListAvailableSolutionStacksCommand;
|
|
3048
|
+
exports.ListAvailableSolutionStacksResultMessage$ = ListAvailableSolutionStacksResultMessage$;
|
|
3049
|
+
exports.ListPlatformBranches$ = ListPlatformBranches$;
|
|
1092
3050
|
exports.ListPlatformBranchesCommand = ListPlatformBranchesCommand;
|
|
3051
|
+
exports.ListPlatformBranchesRequest$ = ListPlatformBranchesRequest$;
|
|
3052
|
+
exports.ListPlatformBranchesResult$ = ListPlatformBranchesResult$;
|
|
3053
|
+
exports.ListPlatformVersions$ = ListPlatformVersions$;
|
|
1093
3054
|
exports.ListPlatformVersionsCommand = ListPlatformVersionsCommand;
|
|
3055
|
+
exports.ListPlatformVersionsRequest$ = ListPlatformVersionsRequest$;
|
|
3056
|
+
exports.ListPlatformVersionsResult$ = ListPlatformVersionsResult$;
|
|
3057
|
+
exports.ListTagsForResource$ = ListTagsForResource$;
|
|
1094
3058
|
exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
|
|
3059
|
+
exports.ListTagsForResourceMessage$ = ListTagsForResourceMessage$;
|
|
3060
|
+
exports.Listener$ = Listener$;
|
|
3061
|
+
exports.LoadBalancer$ = LoadBalancer$;
|
|
3062
|
+
exports.LoadBalancerDescription$ = LoadBalancerDescription$;
|
|
3063
|
+
exports.ManagedAction$ = ManagedAction$;
|
|
3064
|
+
exports.ManagedActionHistoryItem$ = ManagedActionHistoryItem$;
|
|
3065
|
+
exports.ManagedActionInvalidStateException = ManagedActionInvalidStateException;
|
|
3066
|
+
exports.ManagedActionInvalidStateException$ = ManagedActionInvalidStateException$;
|
|
3067
|
+
exports.MaxAgeRule$ = MaxAgeRule$;
|
|
3068
|
+
exports.MaxCountRule$ = MaxCountRule$;
|
|
3069
|
+
exports.OperationInProgressException = OperationInProgressException;
|
|
3070
|
+
exports.OperationInProgressException$ = OperationInProgressException$;
|
|
3071
|
+
exports.OptionRestrictionRegex$ = OptionRestrictionRegex$;
|
|
3072
|
+
exports.OptionSpecification$ = OptionSpecification$;
|
|
3073
|
+
exports.PlatformBranchSummary$ = PlatformBranchSummary$;
|
|
3074
|
+
exports.PlatformDescription$ = PlatformDescription$;
|
|
3075
|
+
exports.PlatformFilter$ = PlatformFilter$;
|
|
3076
|
+
exports.PlatformFramework$ = PlatformFramework$;
|
|
3077
|
+
exports.PlatformProgrammingLanguage$ = PlatformProgrammingLanguage$;
|
|
1095
3078
|
exports.PlatformStatus = PlatformStatus;
|
|
3079
|
+
exports.PlatformSummary$ = PlatformSummary$;
|
|
3080
|
+
exports.PlatformVersionStillReferencedException = PlatformVersionStillReferencedException;
|
|
3081
|
+
exports.PlatformVersionStillReferencedException$ = PlatformVersionStillReferencedException$;
|
|
3082
|
+
exports.Queue$ = Queue$;
|
|
3083
|
+
exports.RebuildEnvironment$ = RebuildEnvironment$;
|
|
1096
3084
|
exports.RebuildEnvironmentCommand = RebuildEnvironmentCommand;
|
|
3085
|
+
exports.RebuildEnvironmentMessage$ = RebuildEnvironmentMessage$;
|
|
3086
|
+
exports.RequestEnvironmentInfo$ = RequestEnvironmentInfo$;
|
|
1097
3087
|
exports.RequestEnvironmentInfoCommand = RequestEnvironmentInfoCommand;
|
|
3088
|
+
exports.RequestEnvironmentInfoMessage$ = RequestEnvironmentInfoMessage$;
|
|
3089
|
+
exports.ResourceNotFoundException = ResourceNotFoundException;
|
|
3090
|
+
exports.ResourceNotFoundException$ = ResourceNotFoundException$;
|
|
3091
|
+
exports.ResourceQuota$ = ResourceQuota$;
|
|
3092
|
+
exports.ResourceQuotas$ = ResourceQuotas$;
|
|
3093
|
+
exports.ResourceTagsDescriptionMessage$ = ResourceTagsDescriptionMessage$;
|
|
3094
|
+
exports.ResourceTypeNotSupportedException = ResourceTypeNotSupportedException;
|
|
3095
|
+
exports.ResourceTypeNotSupportedException$ = ResourceTypeNotSupportedException$;
|
|
3096
|
+
exports.RestartAppServer$ = RestartAppServer$;
|
|
1098
3097
|
exports.RestartAppServerCommand = RestartAppServerCommand;
|
|
3098
|
+
exports.RestartAppServerMessage$ = RestartAppServerMessage$;
|
|
3099
|
+
exports.RetrieveEnvironmentInfo$ = RetrieveEnvironmentInfo$;
|
|
1099
3100
|
exports.RetrieveEnvironmentInfoCommand = RetrieveEnvironmentInfoCommand;
|
|
3101
|
+
exports.RetrieveEnvironmentInfoMessage$ = RetrieveEnvironmentInfoMessage$;
|
|
3102
|
+
exports.RetrieveEnvironmentInfoResultMessage$ = RetrieveEnvironmentInfoResultMessage$;
|
|
3103
|
+
exports.S3Location$ = S3Location$;
|
|
3104
|
+
exports.S3LocationNotInServiceRegionException = S3LocationNotInServiceRegionException;
|
|
3105
|
+
exports.S3LocationNotInServiceRegionException$ = S3LocationNotInServiceRegionException$;
|
|
3106
|
+
exports.S3SubscriptionRequiredException = S3SubscriptionRequiredException;
|
|
3107
|
+
exports.S3SubscriptionRequiredException$ = S3SubscriptionRequiredException$;
|
|
3108
|
+
exports.SearchFilter$ = SearchFilter$;
|
|
3109
|
+
exports.SingleInstanceHealth$ = SingleInstanceHealth$;
|
|
3110
|
+
exports.SolutionStackDescription$ = SolutionStackDescription$;
|
|
3111
|
+
exports.SourceBuildInformation$ = SourceBuildInformation$;
|
|
3112
|
+
exports.SourceBundleDeletionException = SourceBundleDeletionException;
|
|
3113
|
+
exports.SourceBundleDeletionException$ = SourceBundleDeletionException$;
|
|
3114
|
+
exports.SourceConfiguration$ = SourceConfiguration$;
|
|
1100
3115
|
exports.SourceRepository = SourceRepository;
|
|
1101
3116
|
exports.SourceType = SourceType;
|
|
3117
|
+
exports.StatusCodes$ = StatusCodes$;
|
|
3118
|
+
exports.SwapEnvironmentCNAMEs$ = SwapEnvironmentCNAMEs$;
|
|
1102
3119
|
exports.SwapEnvironmentCNAMEsCommand = SwapEnvironmentCNAMEsCommand;
|
|
3120
|
+
exports.SwapEnvironmentCNAMEsMessage$ = SwapEnvironmentCNAMEsMessage$;
|
|
3121
|
+
exports.SystemStatus$ = SystemStatus$;
|
|
3122
|
+
exports.Tag$ = Tag$;
|
|
3123
|
+
exports.TerminateEnvironment$ = TerminateEnvironment$;
|
|
1103
3124
|
exports.TerminateEnvironmentCommand = TerminateEnvironmentCommand;
|
|
3125
|
+
exports.TerminateEnvironmentMessage$ = TerminateEnvironmentMessage$;
|
|
3126
|
+
exports.TooManyApplicationVersionsException = TooManyApplicationVersionsException;
|
|
3127
|
+
exports.TooManyApplicationVersionsException$ = TooManyApplicationVersionsException$;
|
|
3128
|
+
exports.TooManyApplicationsException = TooManyApplicationsException;
|
|
3129
|
+
exports.TooManyApplicationsException$ = TooManyApplicationsException$;
|
|
3130
|
+
exports.TooManyBucketsException = TooManyBucketsException;
|
|
3131
|
+
exports.TooManyBucketsException$ = TooManyBucketsException$;
|
|
3132
|
+
exports.TooManyConfigurationTemplatesException = TooManyConfigurationTemplatesException;
|
|
3133
|
+
exports.TooManyConfigurationTemplatesException$ = TooManyConfigurationTemplatesException$;
|
|
3134
|
+
exports.TooManyEnvironmentsException = TooManyEnvironmentsException;
|
|
3135
|
+
exports.TooManyEnvironmentsException$ = TooManyEnvironmentsException$;
|
|
3136
|
+
exports.TooManyPlatformsException = TooManyPlatformsException;
|
|
3137
|
+
exports.TooManyPlatformsException$ = TooManyPlatformsException$;
|
|
3138
|
+
exports.TooManyTagsException = TooManyTagsException;
|
|
3139
|
+
exports.TooManyTagsException$ = TooManyTagsException$;
|
|
3140
|
+
exports.Trigger$ = Trigger$;
|
|
3141
|
+
exports.UpdateApplication$ = UpdateApplication$;
|
|
1104
3142
|
exports.UpdateApplicationCommand = UpdateApplicationCommand;
|
|
3143
|
+
exports.UpdateApplicationMessage$ = UpdateApplicationMessage$;
|
|
3144
|
+
exports.UpdateApplicationResourceLifecycle$ = UpdateApplicationResourceLifecycle$;
|
|
1105
3145
|
exports.UpdateApplicationResourceLifecycleCommand = UpdateApplicationResourceLifecycleCommand;
|
|
3146
|
+
exports.UpdateApplicationResourceLifecycleMessage$ = UpdateApplicationResourceLifecycleMessage$;
|
|
3147
|
+
exports.UpdateApplicationVersion$ = UpdateApplicationVersion$;
|
|
1106
3148
|
exports.UpdateApplicationVersionCommand = UpdateApplicationVersionCommand;
|
|
3149
|
+
exports.UpdateApplicationVersionMessage$ = UpdateApplicationVersionMessage$;
|
|
3150
|
+
exports.UpdateConfigurationTemplate$ = UpdateConfigurationTemplate$;
|
|
1107
3151
|
exports.UpdateConfigurationTemplateCommand = UpdateConfigurationTemplateCommand;
|
|
3152
|
+
exports.UpdateConfigurationTemplateMessage$ = UpdateConfigurationTemplateMessage$;
|
|
3153
|
+
exports.UpdateEnvironment$ = UpdateEnvironment$;
|
|
1108
3154
|
exports.UpdateEnvironmentCommand = UpdateEnvironmentCommand;
|
|
3155
|
+
exports.UpdateEnvironmentMessage$ = UpdateEnvironmentMessage$;
|
|
3156
|
+
exports.UpdateTagsForResource$ = UpdateTagsForResource$;
|
|
1109
3157
|
exports.UpdateTagsForResourceCommand = UpdateTagsForResourceCommand;
|
|
3158
|
+
exports.UpdateTagsForResourceMessage$ = UpdateTagsForResourceMessage$;
|
|
3159
|
+
exports.ValidateConfigurationSettings$ = ValidateConfigurationSettings$;
|
|
1110
3160
|
exports.ValidateConfigurationSettingsCommand = ValidateConfigurationSettingsCommand;
|
|
3161
|
+
exports.ValidateConfigurationSettingsMessage$ = ValidateConfigurationSettingsMessage$;
|
|
3162
|
+
exports.ValidationMessage$ = ValidationMessage$;
|
|
1111
3163
|
exports.ValidationSeverity = ValidationSeverity;
|
|
3164
|
+
exports.errorTypeRegistries = errorTypeRegistries;
|
|
1112
3165
|
exports.paginateDescribeEnvironmentManagedActionHistory = paginateDescribeEnvironmentManagedActionHistory;
|
|
1113
3166
|
exports.paginateDescribeEvents = paginateDescribeEvents;
|
|
1114
3167
|
exports.paginateListPlatformBranches = paginateListPlatformBranches;
|