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