@aws-sdk/client-codedeploy 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, defaultCodeDeployHttpAuthSchemeParametersProvider } = require("./auth/httpAuthSchemeProvider");
13
- const { getRuntimeConfig } = require("./runtimeConfig");
14
- const { AddTagsToOnPremisesInstances$, BatchGetApplicationRevisions$, BatchGetApplications$, BatchGetDeploymentGroups$, BatchGetDeploymentInstances$, BatchGetDeployments$, BatchGetDeploymentTargets$, BatchGetOnPremisesInstances$, ContinueDeployment$, CreateApplication$, CreateDeployment$, CreateDeploymentConfig$, CreateDeploymentGroup$, DeleteApplication$, DeleteDeploymentConfig$, DeleteDeploymentGroup$, DeleteGitHubAccountToken$, DeleteResourcesByExternalId$, DeregisterOnPremisesInstance$, GetApplication$, GetApplicationRevision$, GetDeployment$, GetDeploymentConfig$, GetDeploymentGroup$, GetDeploymentInstance$, GetDeploymentTarget$, GetOnPremisesInstance$, ListApplicationRevisions$, ListApplications$, ListDeploymentConfigs$, ListDeploymentGroups$, ListDeploymentInstances$, ListDeployments$, ListDeploymentTargets$, ListGitHubAccountTokenNames$, ListOnPremisesInstances$, ListTagsForResource$, PutLifecycleEventHookExecutionStatus$, RegisterApplicationRevision$, RegisterOnPremisesInstance$, RemoveTagsFromOnPremisesInstances$, SkipWaitTimeForInstanceTermination$, StopDeployment$, TagResource$, UntagResource$, UpdateApplication$, UpdateDeploymentGroup$ } = require("./schemas/schemas_0");
15
- __exportStar(require("./schemas/schemas_0"), exports);
16
- __exportStar(require("./models/errors"), exports);
17
- const { CodeDeployServiceException } = require("./models/CodeDeployServiceException");
18
- exports.CodeDeployServiceException = CodeDeployServiceException;
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 { AwsJson1_1Protocol } = require("@aws-sdk/core/protocols");
16
+
17
+ const defaultCodeDeployHttpAuthSchemeParametersProvider = 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: "codedeploy",
30
+ region: authParameters.region,
31
+ },
32
+ propertiesExtractor: (config, context) => ({
33
+ signingProperties: {
34
+ config,
35
+ context,
36
+ },
37
+ }),
38
+ };
39
+ }
40
+ const defaultCodeDeployHttpAuthSchemeProvider = (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,3587 @@ 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
+ ],
86
+ results: [
87
+ [a],
88
+ [a, "Invalid Configuration: FIPS and custom endpoint are not supported"],
89
+ [a, "Invalid Configuration: Dualstack and custom endpoint are not supported"],
90
+ [g, i],
91
+ ["https://codedeploy-fips.{Region}.{PartitionResult#dualStackDnsSuffix}", i],
92
+ [a, "FIPS and DualStack are enabled, but this partition does not support one or both"],
93
+ ["https://codedeploy-fips.{Region}.{PartitionResult#dnsSuffix}", i],
94
+ [a, "FIPS is enabled but this partition does not support FIPS"],
95
+ ["https://codedeploy.{Region}.{PartitionResult#dualStackDnsSuffix}", i],
96
+ [a, "DualStack is enabled but this partition does not support DualStack"],
97
+ ["https://codedeploy.{Region}.{PartitionResult#dnsSuffix}", i],
98
+ [a, "Invalid Configuration: Missing Region"]
99
+ ]
100
+ };
101
+ const root = 2;
102
+ const r = 100_000_000;
103
+ const nodes = new Int32Array([
104
+ -1, 1, -1,
105
+ 0, 12, 3,
106
+ 1, 4, r + 11,
107
+ 2, 5, r + 11,
108
+ 3, 8, 6,
109
+ 4, 7, r + 10,
110
+ 5, r + 8, r + 9,
111
+ 4, 10, 9,
112
+ 6, r + 6, r + 7,
113
+ 5, 11, r + 5,
114
+ 6, r + 4, r + 5,
115
+ 3, r + 1, 13,
116
+ 4, r + 2, r + 3,
117
+ ]);
118
+ const bdd = BinaryDecisionDiagram.from(nodes, root, _data.conditions, _data.results);
119
+
120
+ const cache = new EndpointCache({
121
+ size: 50,
122
+ params: ["Endpoint", "Region", "UseDualStack", "UseFIPS"],
123
+ });
124
+ const defaultEndpointResolver = (endpointParams, context = {}) => {
125
+ return cache.get(endpointParams, () => decideEndpoint(bdd, {
126
+ endpointParams: endpointParams,
127
+ logger: context.logger,
128
+ }));
129
+ };
130
+ customEndpointFunctions.aws = awsEndpointFunctions;
131
+
132
+ class CodeDeployServiceException extends ServiceException {
133
+ constructor(options) {
134
+ super(options);
135
+ Object.setPrototypeOf(this, CodeDeployServiceException.prototype);
136
+ }
137
+ }
138
+
139
+ class InstanceLimitExceededException extends CodeDeployServiceException {
140
+ name = "InstanceLimitExceededException";
141
+ $fault = "client";
142
+ constructor(opts) {
143
+ super({
144
+ name: "InstanceLimitExceededException",
145
+ $fault: "client",
146
+ ...opts,
147
+ });
148
+ Object.setPrototypeOf(this, InstanceLimitExceededException.prototype);
149
+ }
150
+ }
151
+ class InstanceNameRequiredException extends CodeDeployServiceException {
152
+ name = "InstanceNameRequiredException";
153
+ $fault = "client";
154
+ constructor(opts) {
155
+ super({
156
+ name: "InstanceNameRequiredException",
157
+ $fault: "client",
158
+ ...opts,
159
+ });
160
+ Object.setPrototypeOf(this, InstanceNameRequiredException.prototype);
161
+ }
162
+ }
163
+ class InstanceNotRegisteredException extends CodeDeployServiceException {
164
+ name = "InstanceNotRegisteredException";
165
+ $fault = "client";
166
+ constructor(opts) {
167
+ super({
168
+ name: "InstanceNotRegisteredException",
169
+ $fault: "client",
170
+ ...opts,
171
+ });
172
+ Object.setPrototypeOf(this, InstanceNotRegisteredException.prototype);
173
+ }
174
+ }
175
+ class InvalidInstanceNameException extends CodeDeployServiceException {
176
+ name = "InvalidInstanceNameException";
177
+ $fault = "client";
178
+ constructor(opts) {
179
+ super({
180
+ name: "InvalidInstanceNameException",
181
+ $fault: "client",
182
+ ...opts,
183
+ });
184
+ Object.setPrototypeOf(this, InvalidInstanceNameException.prototype);
185
+ }
186
+ }
187
+ class InvalidTagException extends CodeDeployServiceException {
188
+ name = "InvalidTagException";
189
+ $fault = "client";
190
+ constructor(opts) {
191
+ super({
192
+ name: "InvalidTagException",
193
+ $fault: "client",
194
+ ...opts,
195
+ });
196
+ Object.setPrototypeOf(this, InvalidTagException.prototype);
197
+ }
198
+ }
199
+ class TagLimitExceededException extends CodeDeployServiceException {
200
+ name = "TagLimitExceededException";
201
+ $fault = "client";
202
+ constructor(opts) {
203
+ super({
204
+ name: "TagLimitExceededException",
205
+ $fault: "client",
206
+ ...opts,
207
+ });
208
+ Object.setPrototypeOf(this, TagLimitExceededException.prototype);
209
+ }
210
+ }
211
+ class TagRequiredException extends CodeDeployServiceException {
212
+ name = "TagRequiredException";
213
+ $fault = "client";
214
+ constructor(opts) {
215
+ super({
216
+ name: "TagRequiredException",
217
+ $fault: "client",
218
+ ...opts,
219
+ });
220
+ Object.setPrototypeOf(this, TagRequiredException.prototype);
221
+ }
222
+ }
223
+ class AlarmsLimitExceededException extends CodeDeployServiceException {
224
+ name = "AlarmsLimitExceededException";
225
+ $fault = "client";
226
+ constructor(opts) {
227
+ super({
228
+ name: "AlarmsLimitExceededException",
229
+ $fault: "client",
230
+ ...opts,
231
+ });
232
+ Object.setPrototypeOf(this, AlarmsLimitExceededException.prototype);
233
+ }
234
+ }
235
+ class ApplicationAlreadyExistsException extends CodeDeployServiceException {
236
+ name = "ApplicationAlreadyExistsException";
237
+ $fault = "client";
238
+ constructor(opts) {
239
+ super({
240
+ name: "ApplicationAlreadyExistsException",
241
+ $fault: "client",
242
+ ...opts,
243
+ });
244
+ Object.setPrototypeOf(this, ApplicationAlreadyExistsException.prototype);
245
+ }
246
+ }
247
+ class ApplicationDoesNotExistException extends CodeDeployServiceException {
248
+ name = "ApplicationDoesNotExistException";
249
+ $fault = "client";
250
+ constructor(opts) {
251
+ super({
252
+ name: "ApplicationDoesNotExistException",
253
+ $fault: "client",
254
+ ...opts,
255
+ });
256
+ Object.setPrototypeOf(this, ApplicationDoesNotExistException.prototype);
257
+ }
258
+ }
259
+ class ApplicationLimitExceededException extends CodeDeployServiceException {
260
+ name = "ApplicationLimitExceededException";
261
+ $fault = "client";
262
+ constructor(opts) {
263
+ super({
264
+ name: "ApplicationLimitExceededException",
265
+ $fault: "client",
266
+ ...opts,
267
+ });
268
+ Object.setPrototypeOf(this, ApplicationLimitExceededException.prototype);
269
+ }
270
+ }
271
+ class ApplicationNameRequiredException extends CodeDeployServiceException {
272
+ name = "ApplicationNameRequiredException";
273
+ $fault = "client";
274
+ constructor(opts) {
275
+ super({
276
+ name: "ApplicationNameRequiredException",
277
+ $fault: "client",
278
+ ...opts,
279
+ });
280
+ Object.setPrototypeOf(this, ApplicationNameRequiredException.prototype);
281
+ }
282
+ }
283
+ class ArnNotSupportedException extends CodeDeployServiceException {
284
+ name = "ArnNotSupportedException";
285
+ $fault = "client";
286
+ constructor(opts) {
287
+ super({
288
+ name: "ArnNotSupportedException",
289
+ $fault: "client",
290
+ ...opts,
291
+ });
292
+ Object.setPrototypeOf(this, ArnNotSupportedException.prototype);
293
+ }
294
+ }
295
+ class BatchLimitExceededException extends CodeDeployServiceException {
296
+ name = "BatchLimitExceededException";
297
+ $fault = "client";
298
+ constructor(opts) {
299
+ super({
300
+ name: "BatchLimitExceededException",
301
+ $fault: "client",
302
+ ...opts,
303
+ });
304
+ Object.setPrototypeOf(this, BatchLimitExceededException.prototype);
305
+ }
306
+ }
307
+ class InvalidApplicationNameException extends CodeDeployServiceException {
308
+ name = "InvalidApplicationNameException";
309
+ $fault = "client";
310
+ constructor(opts) {
311
+ super({
312
+ name: "InvalidApplicationNameException",
313
+ $fault: "client",
314
+ ...opts,
315
+ });
316
+ Object.setPrototypeOf(this, InvalidApplicationNameException.prototype);
317
+ }
318
+ }
319
+ class InvalidRevisionException extends CodeDeployServiceException {
320
+ name = "InvalidRevisionException";
321
+ $fault = "client";
322
+ constructor(opts) {
323
+ super({
324
+ name: "InvalidRevisionException",
325
+ $fault: "client",
326
+ ...opts,
327
+ });
328
+ Object.setPrototypeOf(this, InvalidRevisionException.prototype);
329
+ }
330
+ }
331
+ class RevisionRequiredException extends CodeDeployServiceException {
332
+ name = "RevisionRequiredException";
333
+ $fault = "client";
334
+ constructor(opts) {
335
+ super({
336
+ name: "RevisionRequiredException",
337
+ $fault: "client",
338
+ ...opts,
339
+ });
340
+ Object.setPrototypeOf(this, RevisionRequiredException.prototype);
341
+ }
342
+ }
343
+ class DeploymentConfigDoesNotExistException extends CodeDeployServiceException {
344
+ name = "DeploymentConfigDoesNotExistException";
345
+ $fault = "client";
346
+ constructor(opts) {
347
+ super({
348
+ name: "DeploymentConfigDoesNotExistException",
349
+ $fault: "client",
350
+ ...opts,
351
+ });
352
+ Object.setPrototypeOf(this, DeploymentConfigDoesNotExistException.prototype);
353
+ }
354
+ }
355
+ class DeploymentGroupNameRequiredException extends CodeDeployServiceException {
356
+ name = "DeploymentGroupNameRequiredException";
357
+ $fault = "client";
358
+ constructor(opts) {
359
+ super({
360
+ name: "DeploymentGroupNameRequiredException",
361
+ $fault: "client",
362
+ ...opts,
363
+ });
364
+ Object.setPrototypeOf(this, DeploymentGroupNameRequiredException.prototype);
365
+ }
366
+ }
367
+ class InvalidDeploymentGroupNameException extends CodeDeployServiceException {
368
+ name = "InvalidDeploymentGroupNameException";
369
+ $fault = "client";
370
+ constructor(opts) {
371
+ super({
372
+ name: "InvalidDeploymentGroupNameException",
373
+ $fault: "client",
374
+ ...opts,
375
+ });
376
+ Object.setPrototypeOf(this, InvalidDeploymentGroupNameException.prototype);
377
+ }
378
+ }
379
+ class DeploymentDoesNotExistException extends CodeDeployServiceException {
380
+ name = "DeploymentDoesNotExistException";
381
+ $fault = "client";
382
+ constructor(opts) {
383
+ super({
384
+ name: "DeploymentDoesNotExistException",
385
+ $fault: "client",
386
+ ...opts,
387
+ });
388
+ Object.setPrototypeOf(this, DeploymentDoesNotExistException.prototype);
389
+ }
390
+ }
391
+ class DeploymentIdRequiredException extends CodeDeployServiceException {
392
+ name = "DeploymentIdRequiredException";
393
+ $fault = "client";
394
+ constructor(opts) {
395
+ super({
396
+ name: "DeploymentIdRequiredException",
397
+ $fault: "client",
398
+ ...opts,
399
+ });
400
+ Object.setPrototypeOf(this, DeploymentIdRequiredException.prototype);
401
+ }
402
+ }
403
+ class InstanceIdRequiredException extends CodeDeployServiceException {
404
+ name = "InstanceIdRequiredException";
405
+ $fault = "client";
406
+ constructor(opts) {
407
+ super({
408
+ name: "InstanceIdRequiredException",
409
+ $fault: "client",
410
+ ...opts,
411
+ });
412
+ Object.setPrototypeOf(this, InstanceIdRequiredException.prototype);
413
+ }
414
+ }
415
+ class InvalidComputePlatformException extends CodeDeployServiceException {
416
+ name = "InvalidComputePlatformException";
417
+ $fault = "client";
418
+ constructor(opts) {
419
+ super({
420
+ name: "InvalidComputePlatformException",
421
+ $fault: "client",
422
+ ...opts,
423
+ });
424
+ Object.setPrototypeOf(this, InvalidComputePlatformException.prototype);
425
+ }
426
+ }
427
+ class InvalidDeploymentIdException extends CodeDeployServiceException {
428
+ name = "InvalidDeploymentIdException";
429
+ $fault = "client";
430
+ constructor(opts) {
431
+ super({
432
+ name: "InvalidDeploymentIdException",
433
+ $fault: "client",
434
+ ...opts,
435
+ });
436
+ Object.setPrototypeOf(this, InvalidDeploymentIdException.prototype);
437
+ }
438
+ }
439
+ class DeploymentNotStartedException extends CodeDeployServiceException {
440
+ name = "DeploymentNotStartedException";
441
+ $fault = "client";
442
+ constructor(opts) {
443
+ super({
444
+ name: "DeploymentNotStartedException",
445
+ $fault: "client",
446
+ ...opts,
447
+ });
448
+ Object.setPrototypeOf(this, DeploymentNotStartedException.prototype);
449
+ }
450
+ }
451
+ class DeploymentTargetDoesNotExistException extends CodeDeployServiceException {
452
+ name = "DeploymentTargetDoesNotExistException";
453
+ $fault = "client";
454
+ constructor(opts) {
455
+ super({
456
+ name: "DeploymentTargetDoesNotExistException",
457
+ $fault: "client",
458
+ ...opts,
459
+ });
460
+ Object.setPrototypeOf(this, DeploymentTargetDoesNotExistException.prototype);
461
+ }
462
+ }
463
+ class DeploymentTargetIdRequiredException extends CodeDeployServiceException {
464
+ name = "DeploymentTargetIdRequiredException";
465
+ $fault = "client";
466
+ constructor(opts) {
467
+ super({
468
+ name: "DeploymentTargetIdRequiredException",
469
+ $fault: "client",
470
+ ...opts,
471
+ });
472
+ Object.setPrototypeOf(this, DeploymentTargetIdRequiredException.prototype);
473
+ }
474
+ }
475
+ class DeploymentTargetListSizeExceededException extends CodeDeployServiceException {
476
+ name = "DeploymentTargetListSizeExceededException";
477
+ $fault = "client";
478
+ constructor(opts) {
479
+ super({
480
+ name: "DeploymentTargetListSizeExceededException",
481
+ $fault: "client",
482
+ ...opts,
483
+ });
484
+ Object.setPrototypeOf(this, DeploymentTargetListSizeExceededException.prototype);
485
+ }
486
+ }
487
+ class InstanceDoesNotExistException extends CodeDeployServiceException {
488
+ name = "InstanceDoesNotExistException";
489
+ $fault = "client";
490
+ constructor(opts) {
491
+ super({
492
+ name: "InstanceDoesNotExistException",
493
+ $fault: "client",
494
+ ...opts,
495
+ });
496
+ Object.setPrototypeOf(this, InstanceDoesNotExistException.prototype);
497
+ }
498
+ }
499
+ class InvalidDeploymentTargetIdException extends CodeDeployServiceException {
500
+ name = "InvalidDeploymentTargetIdException";
501
+ $fault = "client";
502
+ constructor(opts) {
503
+ super({
504
+ name: "InvalidDeploymentTargetIdException",
505
+ $fault: "client",
506
+ ...opts,
507
+ });
508
+ Object.setPrototypeOf(this, InvalidDeploymentTargetIdException.prototype);
509
+ }
510
+ }
511
+ class BucketNameFilterRequiredException extends CodeDeployServiceException {
512
+ name = "BucketNameFilterRequiredException";
513
+ $fault = "client";
514
+ constructor(opts) {
515
+ super({
516
+ name: "BucketNameFilterRequiredException",
517
+ $fault: "client",
518
+ ...opts,
519
+ });
520
+ Object.setPrototypeOf(this, BucketNameFilterRequiredException.prototype);
521
+ }
522
+ }
523
+ class DeploymentAlreadyCompletedException extends CodeDeployServiceException {
524
+ name = "DeploymentAlreadyCompletedException";
525
+ $fault = "client";
526
+ constructor(opts) {
527
+ super({
528
+ name: "DeploymentAlreadyCompletedException",
529
+ $fault: "client",
530
+ ...opts,
531
+ });
532
+ Object.setPrototypeOf(this, DeploymentAlreadyCompletedException.prototype);
533
+ }
534
+ }
535
+ class DeploymentIsNotInReadyStateException extends CodeDeployServiceException {
536
+ name = "DeploymentIsNotInReadyStateException";
537
+ $fault = "client";
538
+ constructor(opts) {
539
+ super({
540
+ name: "DeploymentIsNotInReadyStateException",
541
+ $fault: "client",
542
+ ...opts,
543
+ });
544
+ Object.setPrototypeOf(this, DeploymentIsNotInReadyStateException.prototype);
545
+ }
546
+ }
547
+ class InvalidDeploymentStatusException extends CodeDeployServiceException {
548
+ name = "InvalidDeploymentStatusException";
549
+ $fault = "client";
550
+ constructor(opts) {
551
+ super({
552
+ name: "InvalidDeploymentStatusException",
553
+ $fault: "client",
554
+ ...opts,
555
+ });
556
+ Object.setPrototypeOf(this, InvalidDeploymentStatusException.prototype);
557
+ }
558
+ }
559
+ class InvalidDeploymentWaitTypeException extends CodeDeployServiceException {
560
+ name = "InvalidDeploymentWaitTypeException";
561
+ $fault = "client";
562
+ constructor(opts) {
563
+ super({
564
+ name: "InvalidDeploymentWaitTypeException",
565
+ $fault: "client",
566
+ ...opts,
567
+ });
568
+ Object.setPrototypeOf(this, InvalidDeploymentWaitTypeException.prototype);
569
+ }
570
+ }
571
+ class UnsupportedActionForDeploymentTypeException extends CodeDeployServiceException {
572
+ name = "UnsupportedActionForDeploymentTypeException";
573
+ $fault = "client";
574
+ constructor(opts) {
575
+ super({
576
+ name: "UnsupportedActionForDeploymentTypeException",
577
+ $fault: "client",
578
+ ...opts,
579
+ });
580
+ Object.setPrototypeOf(this, UnsupportedActionForDeploymentTypeException.prototype);
581
+ }
582
+ }
583
+ class InvalidTagsToAddException extends CodeDeployServiceException {
584
+ name = "InvalidTagsToAddException";
585
+ $fault = "client";
586
+ constructor(opts) {
587
+ super({
588
+ name: "InvalidTagsToAddException",
589
+ $fault: "client",
590
+ ...opts,
591
+ });
592
+ Object.setPrototypeOf(this, InvalidTagsToAddException.prototype);
593
+ }
594
+ }
595
+ class DeploymentGroupDoesNotExistException extends CodeDeployServiceException {
596
+ name = "DeploymentGroupDoesNotExistException";
597
+ $fault = "client";
598
+ constructor(opts) {
599
+ super({
600
+ name: "DeploymentGroupDoesNotExistException",
601
+ $fault: "client",
602
+ ...opts,
603
+ });
604
+ Object.setPrototypeOf(this, DeploymentGroupDoesNotExistException.prototype);
605
+ }
606
+ }
607
+ class DeploymentLimitExceededException extends CodeDeployServiceException {
608
+ name = "DeploymentLimitExceededException";
609
+ $fault = "client";
610
+ constructor(opts) {
611
+ super({
612
+ name: "DeploymentLimitExceededException",
613
+ $fault: "client",
614
+ ...opts,
615
+ });
616
+ Object.setPrototypeOf(this, DeploymentLimitExceededException.prototype);
617
+ }
618
+ }
619
+ class DescriptionTooLongException extends CodeDeployServiceException {
620
+ name = "DescriptionTooLongException";
621
+ $fault = "client";
622
+ constructor(opts) {
623
+ super({
624
+ name: "DescriptionTooLongException",
625
+ $fault: "client",
626
+ ...opts,
627
+ });
628
+ Object.setPrototypeOf(this, DescriptionTooLongException.prototype);
629
+ }
630
+ }
631
+ class InvalidAlarmConfigException extends CodeDeployServiceException {
632
+ name = "InvalidAlarmConfigException";
633
+ $fault = "client";
634
+ constructor(opts) {
635
+ super({
636
+ name: "InvalidAlarmConfigException",
637
+ $fault: "client",
638
+ ...opts,
639
+ });
640
+ Object.setPrototypeOf(this, InvalidAlarmConfigException.prototype);
641
+ }
642
+ }
643
+ class InvalidAutoRollbackConfigException extends CodeDeployServiceException {
644
+ name = "InvalidAutoRollbackConfigException";
645
+ $fault = "client";
646
+ constructor(opts) {
647
+ super({
648
+ name: "InvalidAutoRollbackConfigException",
649
+ $fault: "client",
650
+ ...opts,
651
+ });
652
+ Object.setPrototypeOf(this, InvalidAutoRollbackConfigException.prototype);
653
+ }
654
+ }
655
+ class InvalidAutoScalingGroupException extends CodeDeployServiceException {
656
+ name = "InvalidAutoScalingGroupException";
657
+ $fault = "client";
658
+ constructor(opts) {
659
+ super({
660
+ name: "InvalidAutoScalingGroupException",
661
+ $fault: "client",
662
+ ...opts,
663
+ });
664
+ Object.setPrototypeOf(this, InvalidAutoScalingGroupException.prototype);
665
+ }
666
+ }
667
+ class InvalidDeploymentConfigNameException extends CodeDeployServiceException {
668
+ name = "InvalidDeploymentConfigNameException";
669
+ $fault = "client";
670
+ constructor(opts) {
671
+ super({
672
+ name: "InvalidDeploymentConfigNameException",
673
+ $fault: "client",
674
+ ...opts,
675
+ });
676
+ Object.setPrototypeOf(this, InvalidDeploymentConfigNameException.prototype);
677
+ }
678
+ }
679
+ class InvalidFileExistsBehaviorException extends CodeDeployServiceException {
680
+ name = "InvalidFileExistsBehaviorException";
681
+ $fault = "client";
682
+ constructor(opts) {
683
+ super({
684
+ name: "InvalidFileExistsBehaviorException",
685
+ $fault: "client",
686
+ ...opts,
687
+ });
688
+ Object.setPrototypeOf(this, InvalidFileExistsBehaviorException.prototype);
689
+ }
690
+ }
691
+ class InvalidGitHubAccountTokenException extends CodeDeployServiceException {
692
+ name = "InvalidGitHubAccountTokenException";
693
+ $fault = "client";
694
+ constructor(opts) {
695
+ super({
696
+ name: "InvalidGitHubAccountTokenException",
697
+ $fault: "client",
698
+ ...opts,
699
+ });
700
+ Object.setPrototypeOf(this, InvalidGitHubAccountTokenException.prototype);
701
+ }
702
+ }
703
+ class InvalidIgnoreApplicationStopFailuresValueException extends CodeDeployServiceException {
704
+ name = "InvalidIgnoreApplicationStopFailuresValueException";
705
+ $fault = "client";
706
+ constructor(opts) {
707
+ super({
708
+ name: "InvalidIgnoreApplicationStopFailuresValueException",
709
+ $fault: "client",
710
+ ...opts,
711
+ });
712
+ Object.setPrototypeOf(this, InvalidIgnoreApplicationStopFailuresValueException.prototype);
713
+ }
714
+ }
715
+ class InvalidLoadBalancerInfoException extends CodeDeployServiceException {
716
+ name = "InvalidLoadBalancerInfoException";
717
+ $fault = "client";
718
+ constructor(opts) {
719
+ super({
720
+ name: "InvalidLoadBalancerInfoException",
721
+ $fault: "client",
722
+ ...opts,
723
+ });
724
+ Object.setPrototypeOf(this, InvalidLoadBalancerInfoException.prototype);
725
+ }
726
+ }
727
+ class InvalidRoleException extends CodeDeployServiceException {
728
+ name = "InvalidRoleException";
729
+ $fault = "client";
730
+ constructor(opts) {
731
+ super({
732
+ name: "InvalidRoleException",
733
+ $fault: "client",
734
+ ...opts,
735
+ });
736
+ Object.setPrototypeOf(this, InvalidRoleException.prototype);
737
+ }
738
+ }
739
+ class InvalidTargetInstancesException extends CodeDeployServiceException {
740
+ name = "InvalidTargetInstancesException";
741
+ $fault = "client";
742
+ constructor(opts) {
743
+ super({
744
+ name: "InvalidTargetInstancesException",
745
+ $fault: "client",
746
+ ...opts,
747
+ });
748
+ Object.setPrototypeOf(this, InvalidTargetInstancesException.prototype);
749
+ }
750
+ }
751
+ class InvalidTrafficRoutingConfigurationException extends CodeDeployServiceException {
752
+ name = "InvalidTrafficRoutingConfigurationException";
753
+ $fault = "client";
754
+ constructor(opts) {
755
+ super({
756
+ name: "InvalidTrafficRoutingConfigurationException",
757
+ $fault: "client",
758
+ ...opts,
759
+ });
760
+ Object.setPrototypeOf(this, InvalidTrafficRoutingConfigurationException.prototype);
761
+ }
762
+ }
763
+ class InvalidUpdateOutdatedInstancesOnlyValueException extends CodeDeployServiceException {
764
+ name = "InvalidUpdateOutdatedInstancesOnlyValueException";
765
+ $fault = "client";
766
+ constructor(opts) {
767
+ super({
768
+ name: "InvalidUpdateOutdatedInstancesOnlyValueException",
769
+ $fault: "client",
770
+ ...opts,
771
+ });
772
+ Object.setPrototypeOf(this, InvalidUpdateOutdatedInstancesOnlyValueException.prototype);
773
+ }
774
+ }
775
+ class RevisionDoesNotExistException extends CodeDeployServiceException {
776
+ name = "RevisionDoesNotExistException";
777
+ $fault = "client";
778
+ constructor(opts) {
779
+ super({
780
+ name: "RevisionDoesNotExistException",
781
+ $fault: "client",
782
+ ...opts,
783
+ });
784
+ Object.setPrototypeOf(this, RevisionDoesNotExistException.prototype);
785
+ }
786
+ }
787
+ class ThrottlingException extends CodeDeployServiceException {
788
+ name = "ThrottlingException";
789
+ $fault = "client";
790
+ constructor(opts) {
791
+ super({
792
+ name: "ThrottlingException",
793
+ $fault: "client",
794
+ ...opts,
795
+ });
796
+ Object.setPrototypeOf(this, ThrottlingException.prototype);
797
+ }
798
+ }
799
+ class DeploymentConfigAlreadyExistsException extends CodeDeployServiceException {
800
+ name = "DeploymentConfigAlreadyExistsException";
801
+ $fault = "client";
802
+ constructor(opts) {
803
+ super({
804
+ name: "DeploymentConfigAlreadyExistsException",
805
+ $fault: "client",
806
+ ...opts,
807
+ });
808
+ Object.setPrototypeOf(this, DeploymentConfigAlreadyExistsException.prototype);
809
+ }
810
+ }
811
+ class DeploymentConfigLimitExceededException extends CodeDeployServiceException {
812
+ name = "DeploymentConfigLimitExceededException";
813
+ $fault = "client";
814
+ constructor(opts) {
815
+ super({
816
+ name: "DeploymentConfigLimitExceededException",
817
+ $fault: "client",
818
+ ...opts,
819
+ });
820
+ Object.setPrototypeOf(this, DeploymentConfigLimitExceededException.prototype);
821
+ }
822
+ }
823
+ class DeploymentConfigNameRequiredException extends CodeDeployServiceException {
824
+ name = "DeploymentConfigNameRequiredException";
825
+ $fault = "client";
826
+ constructor(opts) {
827
+ super({
828
+ name: "DeploymentConfigNameRequiredException",
829
+ $fault: "client",
830
+ ...opts,
831
+ });
832
+ Object.setPrototypeOf(this, DeploymentConfigNameRequiredException.prototype);
833
+ }
834
+ }
835
+ class InvalidMinimumHealthyHostValueException extends CodeDeployServiceException {
836
+ name = "InvalidMinimumHealthyHostValueException";
837
+ $fault = "client";
838
+ constructor(opts) {
839
+ super({
840
+ name: "InvalidMinimumHealthyHostValueException",
841
+ $fault: "client",
842
+ ...opts,
843
+ });
844
+ Object.setPrototypeOf(this, InvalidMinimumHealthyHostValueException.prototype);
845
+ }
846
+ }
847
+ class InvalidZonalDeploymentConfigurationException extends CodeDeployServiceException {
848
+ name = "InvalidZonalDeploymentConfigurationException";
849
+ $fault = "client";
850
+ constructor(opts) {
851
+ super({
852
+ name: "InvalidZonalDeploymentConfigurationException",
853
+ $fault: "client",
854
+ ...opts,
855
+ });
856
+ Object.setPrototypeOf(this, InvalidZonalDeploymentConfigurationException.prototype);
857
+ }
858
+ }
859
+ class DeploymentGroupAlreadyExistsException extends CodeDeployServiceException {
860
+ name = "DeploymentGroupAlreadyExistsException";
861
+ $fault = "client";
862
+ constructor(opts) {
863
+ super({
864
+ name: "DeploymentGroupAlreadyExistsException",
865
+ $fault: "client",
866
+ ...opts,
867
+ });
868
+ Object.setPrototypeOf(this, DeploymentGroupAlreadyExistsException.prototype);
869
+ }
870
+ }
871
+ class DeploymentGroupLimitExceededException extends CodeDeployServiceException {
872
+ name = "DeploymentGroupLimitExceededException";
873
+ $fault = "client";
874
+ constructor(opts) {
875
+ super({
876
+ name: "DeploymentGroupLimitExceededException",
877
+ $fault: "client",
878
+ ...opts,
879
+ });
880
+ Object.setPrototypeOf(this, DeploymentGroupLimitExceededException.prototype);
881
+ }
882
+ }
883
+ class ECSServiceMappingLimitExceededException extends CodeDeployServiceException {
884
+ name = "ECSServiceMappingLimitExceededException";
885
+ $fault = "client";
886
+ constructor(opts) {
887
+ super({
888
+ name: "ECSServiceMappingLimitExceededException",
889
+ $fault: "client",
890
+ ...opts,
891
+ });
892
+ Object.setPrototypeOf(this, ECSServiceMappingLimitExceededException.prototype);
893
+ }
894
+ }
895
+ class InvalidBlueGreenDeploymentConfigurationException extends CodeDeployServiceException {
896
+ name = "InvalidBlueGreenDeploymentConfigurationException";
897
+ $fault = "client";
898
+ constructor(opts) {
899
+ super({
900
+ name: "InvalidBlueGreenDeploymentConfigurationException",
901
+ $fault: "client",
902
+ ...opts,
903
+ });
904
+ Object.setPrototypeOf(this, InvalidBlueGreenDeploymentConfigurationException.prototype);
905
+ }
906
+ }
907
+ class InvalidDeploymentStyleException extends CodeDeployServiceException {
908
+ name = "InvalidDeploymentStyleException";
909
+ $fault = "client";
910
+ constructor(opts) {
911
+ super({
912
+ name: "InvalidDeploymentStyleException",
913
+ $fault: "client",
914
+ ...opts,
915
+ });
916
+ Object.setPrototypeOf(this, InvalidDeploymentStyleException.prototype);
917
+ }
918
+ }
919
+ class InvalidEC2TagCombinationException extends CodeDeployServiceException {
920
+ name = "InvalidEC2TagCombinationException";
921
+ $fault = "client";
922
+ constructor(opts) {
923
+ super({
924
+ name: "InvalidEC2TagCombinationException",
925
+ $fault: "client",
926
+ ...opts,
927
+ });
928
+ Object.setPrototypeOf(this, InvalidEC2TagCombinationException.prototype);
929
+ }
930
+ }
931
+ class InvalidEC2TagException extends CodeDeployServiceException {
932
+ name = "InvalidEC2TagException";
933
+ $fault = "client";
934
+ constructor(opts) {
935
+ super({
936
+ name: "InvalidEC2TagException",
937
+ $fault: "client",
938
+ ...opts,
939
+ });
940
+ Object.setPrototypeOf(this, InvalidEC2TagException.prototype);
941
+ }
942
+ }
943
+ class InvalidECSServiceException extends CodeDeployServiceException {
944
+ name = "InvalidECSServiceException";
945
+ $fault = "client";
946
+ constructor(opts) {
947
+ super({
948
+ name: "InvalidECSServiceException",
949
+ $fault: "client",
950
+ ...opts,
951
+ });
952
+ Object.setPrototypeOf(this, InvalidECSServiceException.prototype);
953
+ }
954
+ }
955
+ class InvalidInputException extends CodeDeployServiceException {
956
+ name = "InvalidInputException";
957
+ $fault = "client";
958
+ constructor(opts) {
959
+ super({
960
+ name: "InvalidInputException",
961
+ $fault: "client",
962
+ ...opts,
963
+ });
964
+ Object.setPrototypeOf(this, InvalidInputException.prototype);
965
+ }
966
+ }
967
+ class InvalidOnPremisesTagCombinationException extends CodeDeployServiceException {
968
+ name = "InvalidOnPremisesTagCombinationException";
969
+ $fault = "client";
970
+ constructor(opts) {
971
+ super({
972
+ name: "InvalidOnPremisesTagCombinationException",
973
+ $fault: "client",
974
+ ...opts,
975
+ });
976
+ Object.setPrototypeOf(this, InvalidOnPremisesTagCombinationException.prototype);
977
+ }
978
+ }
979
+ class InvalidTargetGroupPairException extends CodeDeployServiceException {
980
+ name = "InvalidTargetGroupPairException";
981
+ $fault = "client";
982
+ constructor(opts) {
983
+ super({
984
+ name: "InvalidTargetGroupPairException",
985
+ $fault: "client",
986
+ ...opts,
987
+ });
988
+ Object.setPrototypeOf(this, InvalidTargetGroupPairException.prototype);
989
+ }
990
+ }
991
+ class InvalidTriggerConfigException extends CodeDeployServiceException {
992
+ name = "InvalidTriggerConfigException";
993
+ $fault = "client";
994
+ constructor(opts) {
995
+ super({
996
+ name: "InvalidTriggerConfigException",
997
+ $fault: "client",
998
+ ...opts,
999
+ });
1000
+ Object.setPrototypeOf(this, InvalidTriggerConfigException.prototype);
1001
+ }
1002
+ }
1003
+ class LifecycleHookLimitExceededException extends CodeDeployServiceException {
1004
+ name = "LifecycleHookLimitExceededException";
1005
+ $fault = "client";
1006
+ constructor(opts) {
1007
+ super({
1008
+ name: "LifecycleHookLimitExceededException",
1009
+ $fault: "client",
1010
+ ...opts,
1011
+ });
1012
+ Object.setPrototypeOf(this, LifecycleHookLimitExceededException.prototype);
1013
+ }
1014
+ }
1015
+ class RoleRequiredException extends CodeDeployServiceException {
1016
+ name = "RoleRequiredException";
1017
+ $fault = "client";
1018
+ constructor(opts) {
1019
+ super({
1020
+ name: "RoleRequiredException",
1021
+ $fault: "client",
1022
+ ...opts,
1023
+ });
1024
+ Object.setPrototypeOf(this, RoleRequiredException.prototype);
1025
+ }
1026
+ }
1027
+ class TagSetListLimitExceededException extends CodeDeployServiceException {
1028
+ name = "TagSetListLimitExceededException";
1029
+ $fault = "client";
1030
+ constructor(opts) {
1031
+ super({
1032
+ name: "TagSetListLimitExceededException",
1033
+ $fault: "client",
1034
+ ...opts,
1035
+ });
1036
+ Object.setPrototypeOf(this, TagSetListLimitExceededException.prototype);
1037
+ }
1038
+ }
1039
+ class TriggerTargetsLimitExceededException extends CodeDeployServiceException {
1040
+ name = "TriggerTargetsLimitExceededException";
1041
+ $fault = "client";
1042
+ constructor(opts) {
1043
+ super({
1044
+ name: "TriggerTargetsLimitExceededException",
1045
+ $fault: "client",
1046
+ ...opts,
1047
+ });
1048
+ Object.setPrototypeOf(this, TriggerTargetsLimitExceededException.prototype);
1049
+ }
1050
+ }
1051
+ class DeploymentConfigInUseException extends CodeDeployServiceException {
1052
+ name = "DeploymentConfigInUseException";
1053
+ $fault = "client";
1054
+ constructor(opts) {
1055
+ super({
1056
+ name: "DeploymentConfigInUseException",
1057
+ $fault: "client",
1058
+ ...opts,
1059
+ });
1060
+ Object.setPrototypeOf(this, DeploymentConfigInUseException.prototype);
1061
+ }
1062
+ }
1063
+ class InvalidOperationException extends CodeDeployServiceException {
1064
+ name = "InvalidOperationException";
1065
+ $fault = "client";
1066
+ constructor(opts) {
1067
+ super({
1068
+ name: "InvalidOperationException",
1069
+ $fault: "client",
1070
+ ...opts,
1071
+ });
1072
+ Object.setPrototypeOf(this, InvalidOperationException.prototype);
1073
+ }
1074
+ }
1075
+ class GitHubAccountTokenDoesNotExistException extends CodeDeployServiceException {
1076
+ name = "GitHubAccountTokenDoesNotExistException";
1077
+ $fault = "client";
1078
+ constructor(opts) {
1079
+ super({
1080
+ name: "GitHubAccountTokenDoesNotExistException",
1081
+ $fault: "client",
1082
+ ...opts,
1083
+ });
1084
+ Object.setPrototypeOf(this, GitHubAccountTokenDoesNotExistException.prototype);
1085
+ }
1086
+ }
1087
+ class GitHubAccountTokenNameRequiredException extends CodeDeployServiceException {
1088
+ name = "GitHubAccountTokenNameRequiredException";
1089
+ $fault = "client";
1090
+ constructor(opts) {
1091
+ super({
1092
+ name: "GitHubAccountTokenNameRequiredException",
1093
+ $fault: "client",
1094
+ ...opts,
1095
+ });
1096
+ Object.setPrototypeOf(this, GitHubAccountTokenNameRequiredException.prototype);
1097
+ }
1098
+ }
1099
+ class InvalidGitHubAccountTokenNameException extends CodeDeployServiceException {
1100
+ name = "InvalidGitHubAccountTokenNameException";
1101
+ $fault = "client";
1102
+ constructor(opts) {
1103
+ super({
1104
+ name: "InvalidGitHubAccountTokenNameException",
1105
+ $fault: "client",
1106
+ ...opts,
1107
+ });
1108
+ Object.setPrototypeOf(this, InvalidGitHubAccountTokenNameException.prototype);
1109
+ }
1110
+ }
1111
+ class OperationNotSupportedException extends CodeDeployServiceException {
1112
+ name = "OperationNotSupportedException";
1113
+ $fault = "client";
1114
+ constructor(opts) {
1115
+ super({
1116
+ name: "OperationNotSupportedException",
1117
+ $fault: "client",
1118
+ ...opts,
1119
+ });
1120
+ Object.setPrototypeOf(this, OperationNotSupportedException.prototype);
1121
+ }
1122
+ }
1123
+ class ResourceValidationException extends CodeDeployServiceException {
1124
+ name = "ResourceValidationException";
1125
+ $fault = "client";
1126
+ constructor(opts) {
1127
+ super({
1128
+ name: "ResourceValidationException",
1129
+ $fault: "client",
1130
+ ...opts,
1131
+ });
1132
+ Object.setPrototypeOf(this, ResourceValidationException.prototype);
1133
+ }
1134
+ }
1135
+ class InvalidBucketNameFilterException extends CodeDeployServiceException {
1136
+ name = "InvalidBucketNameFilterException";
1137
+ $fault = "client";
1138
+ constructor(opts) {
1139
+ super({
1140
+ name: "InvalidBucketNameFilterException",
1141
+ $fault: "client",
1142
+ ...opts,
1143
+ });
1144
+ Object.setPrototypeOf(this, InvalidBucketNameFilterException.prototype);
1145
+ }
1146
+ }
1147
+ class InvalidDeployedStateFilterException extends CodeDeployServiceException {
1148
+ name = "InvalidDeployedStateFilterException";
1149
+ $fault = "client";
1150
+ constructor(opts) {
1151
+ super({
1152
+ name: "InvalidDeployedStateFilterException",
1153
+ $fault: "client",
1154
+ ...opts,
1155
+ });
1156
+ Object.setPrototypeOf(this, InvalidDeployedStateFilterException.prototype);
1157
+ }
1158
+ }
1159
+ class InvalidKeyPrefixFilterException extends CodeDeployServiceException {
1160
+ name = "InvalidKeyPrefixFilterException";
1161
+ $fault = "client";
1162
+ constructor(opts) {
1163
+ super({
1164
+ name: "InvalidKeyPrefixFilterException",
1165
+ $fault: "client",
1166
+ ...opts,
1167
+ });
1168
+ Object.setPrototypeOf(this, InvalidKeyPrefixFilterException.prototype);
1169
+ }
1170
+ }
1171
+ class InvalidNextTokenException extends CodeDeployServiceException {
1172
+ name = "InvalidNextTokenException";
1173
+ $fault = "client";
1174
+ constructor(opts) {
1175
+ super({
1176
+ name: "InvalidNextTokenException",
1177
+ $fault: "client",
1178
+ ...opts,
1179
+ });
1180
+ Object.setPrototypeOf(this, InvalidNextTokenException.prototype);
1181
+ }
1182
+ }
1183
+ class InvalidSortByException extends CodeDeployServiceException {
1184
+ name = "InvalidSortByException";
1185
+ $fault = "client";
1186
+ constructor(opts) {
1187
+ super({
1188
+ name: "InvalidSortByException",
1189
+ $fault: "client",
1190
+ ...opts,
1191
+ });
1192
+ Object.setPrototypeOf(this, InvalidSortByException.prototype);
1193
+ }
1194
+ }
1195
+ class InvalidSortOrderException extends CodeDeployServiceException {
1196
+ name = "InvalidSortOrderException";
1197
+ $fault = "client";
1198
+ constructor(opts) {
1199
+ super({
1200
+ name: "InvalidSortOrderException",
1201
+ $fault: "client",
1202
+ ...opts,
1203
+ });
1204
+ Object.setPrototypeOf(this, InvalidSortOrderException.prototype);
1205
+ }
1206
+ }
1207
+ class InvalidDeploymentInstanceTypeException extends CodeDeployServiceException {
1208
+ name = "InvalidDeploymentInstanceTypeException";
1209
+ $fault = "client";
1210
+ constructor(opts) {
1211
+ super({
1212
+ name: "InvalidDeploymentInstanceTypeException",
1213
+ $fault: "client",
1214
+ ...opts,
1215
+ });
1216
+ Object.setPrototypeOf(this, InvalidDeploymentInstanceTypeException.prototype);
1217
+ }
1218
+ }
1219
+ class InvalidInstanceStatusException extends CodeDeployServiceException {
1220
+ name = "InvalidInstanceStatusException";
1221
+ $fault = "client";
1222
+ constructor(opts) {
1223
+ super({
1224
+ name: "InvalidInstanceStatusException",
1225
+ $fault: "client",
1226
+ ...opts,
1227
+ });
1228
+ Object.setPrototypeOf(this, InvalidInstanceStatusException.prototype);
1229
+ }
1230
+ }
1231
+ class InvalidInstanceTypeException extends CodeDeployServiceException {
1232
+ name = "InvalidInstanceTypeException";
1233
+ $fault = "client";
1234
+ constructor(opts) {
1235
+ super({
1236
+ name: "InvalidInstanceTypeException",
1237
+ $fault: "client",
1238
+ ...opts,
1239
+ });
1240
+ Object.setPrototypeOf(this, InvalidInstanceTypeException.prototype);
1241
+ }
1242
+ }
1243
+ class InvalidTargetFilterNameException extends CodeDeployServiceException {
1244
+ name = "InvalidTargetFilterNameException";
1245
+ $fault = "client";
1246
+ constructor(opts) {
1247
+ super({
1248
+ name: "InvalidTargetFilterNameException",
1249
+ $fault: "client",
1250
+ ...opts,
1251
+ });
1252
+ Object.setPrototypeOf(this, InvalidTargetFilterNameException.prototype);
1253
+ }
1254
+ }
1255
+ class InvalidExternalIdException extends CodeDeployServiceException {
1256
+ name = "InvalidExternalIdException";
1257
+ $fault = "client";
1258
+ constructor(opts) {
1259
+ super({
1260
+ name: "InvalidExternalIdException",
1261
+ $fault: "client",
1262
+ ...opts,
1263
+ });
1264
+ Object.setPrototypeOf(this, InvalidExternalIdException.prototype);
1265
+ }
1266
+ }
1267
+ class InvalidTimeRangeException extends CodeDeployServiceException {
1268
+ name = "InvalidTimeRangeException";
1269
+ $fault = "client";
1270
+ constructor(opts) {
1271
+ super({
1272
+ name: "InvalidTimeRangeException",
1273
+ $fault: "client",
1274
+ ...opts,
1275
+ });
1276
+ Object.setPrototypeOf(this, InvalidTimeRangeException.prototype);
1277
+ }
1278
+ }
1279
+ class InvalidRegistrationStatusException extends CodeDeployServiceException {
1280
+ name = "InvalidRegistrationStatusException";
1281
+ $fault = "client";
1282
+ constructor(opts) {
1283
+ super({
1284
+ name: "InvalidRegistrationStatusException",
1285
+ $fault: "client",
1286
+ ...opts,
1287
+ });
1288
+ Object.setPrototypeOf(this, InvalidRegistrationStatusException.prototype);
1289
+ }
1290
+ }
1291
+ class InvalidTagFilterException extends CodeDeployServiceException {
1292
+ name = "InvalidTagFilterException";
1293
+ $fault = "client";
1294
+ constructor(opts) {
1295
+ super({
1296
+ name: "InvalidTagFilterException",
1297
+ $fault: "client",
1298
+ ...opts,
1299
+ });
1300
+ Object.setPrototypeOf(this, InvalidTagFilterException.prototype);
1301
+ }
1302
+ }
1303
+ class InvalidArnException extends CodeDeployServiceException {
1304
+ name = "InvalidArnException";
1305
+ $fault = "client";
1306
+ constructor(opts) {
1307
+ super({
1308
+ name: "InvalidArnException",
1309
+ $fault: "client",
1310
+ ...opts,
1311
+ });
1312
+ Object.setPrototypeOf(this, InvalidArnException.prototype);
1313
+ }
1314
+ }
1315
+ class ResourceArnRequiredException extends CodeDeployServiceException {
1316
+ name = "ResourceArnRequiredException";
1317
+ $fault = "client";
1318
+ constructor(opts) {
1319
+ super({
1320
+ name: "ResourceArnRequiredException",
1321
+ $fault: "client",
1322
+ ...opts,
1323
+ });
1324
+ Object.setPrototypeOf(this, ResourceArnRequiredException.prototype);
1325
+ }
1326
+ }
1327
+ class InvalidLifecycleEventHookExecutionIdException extends CodeDeployServiceException {
1328
+ name = "InvalidLifecycleEventHookExecutionIdException";
1329
+ $fault = "client";
1330
+ constructor(opts) {
1331
+ super({
1332
+ name: "InvalidLifecycleEventHookExecutionIdException",
1333
+ $fault: "client",
1334
+ ...opts,
1335
+ });
1336
+ Object.setPrototypeOf(this, InvalidLifecycleEventHookExecutionIdException.prototype);
1337
+ }
1338
+ }
1339
+ class InvalidLifecycleEventHookExecutionStatusException extends CodeDeployServiceException {
1340
+ name = "InvalidLifecycleEventHookExecutionStatusException";
1341
+ $fault = "client";
1342
+ constructor(opts) {
1343
+ super({
1344
+ name: "InvalidLifecycleEventHookExecutionStatusException",
1345
+ $fault: "client",
1346
+ ...opts,
1347
+ });
1348
+ Object.setPrototypeOf(this, InvalidLifecycleEventHookExecutionStatusException.prototype);
1349
+ }
1350
+ }
1351
+ class LifecycleEventAlreadyCompletedException extends CodeDeployServiceException {
1352
+ name = "LifecycleEventAlreadyCompletedException";
1353
+ $fault = "client";
1354
+ constructor(opts) {
1355
+ super({
1356
+ name: "LifecycleEventAlreadyCompletedException",
1357
+ $fault: "client",
1358
+ ...opts,
1359
+ });
1360
+ Object.setPrototypeOf(this, LifecycleEventAlreadyCompletedException.prototype);
1361
+ }
1362
+ }
1363
+ class IamArnRequiredException extends CodeDeployServiceException {
1364
+ name = "IamArnRequiredException";
1365
+ $fault = "client";
1366
+ constructor(opts) {
1367
+ super({
1368
+ name: "IamArnRequiredException",
1369
+ $fault: "client",
1370
+ ...opts,
1371
+ });
1372
+ Object.setPrototypeOf(this, IamArnRequiredException.prototype);
1373
+ }
1374
+ }
1375
+ class IamSessionArnAlreadyRegisteredException extends CodeDeployServiceException {
1376
+ name = "IamSessionArnAlreadyRegisteredException";
1377
+ $fault = "client";
1378
+ constructor(opts) {
1379
+ super({
1380
+ name: "IamSessionArnAlreadyRegisteredException",
1381
+ $fault: "client",
1382
+ ...opts,
1383
+ });
1384
+ Object.setPrototypeOf(this, IamSessionArnAlreadyRegisteredException.prototype);
1385
+ }
1386
+ }
1387
+ class IamUserArnAlreadyRegisteredException extends CodeDeployServiceException {
1388
+ name = "IamUserArnAlreadyRegisteredException";
1389
+ $fault = "client";
1390
+ constructor(opts) {
1391
+ super({
1392
+ name: "IamUserArnAlreadyRegisteredException",
1393
+ $fault: "client",
1394
+ ...opts,
1395
+ });
1396
+ Object.setPrototypeOf(this, IamUserArnAlreadyRegisteredException.prototype);
1397
+ }
1398
+ }
1399
+ class IamUserArnRequiredException extends CodeDeployServiceException {
1400
+ name = "IamUserArnRequiredException";
1401
+ $fault = "client";
1402
+ constructor(opts) {
1403
+ super({
1404
+ name: "IamUserArnRequiredException",
1405
+ $fault: "client",
1406
+ ...opts,
1407
+ });
1408
+ Object.setPrototypeOf(this, IamUserArnRequiredException.prototype);
1409
+ }
1410
+ }
1411
+ class InstanceNameAlreadyRegisteredException extends CodeDeployServiceException {
1412
+ name = "InstanceNameAlreadyRegisteredException";
1413
+ $fault = "client";
1414
+ constructor(opts) {
1415
+ super({
1416
+ name: "InstanceNameAlreadyRegisteredException",
1417
+ $fault: "client",
1418
+ ...opts,
1419
+ });
1420
+ Object.setPrototypeOf(this, InstanceNameAlreadyRegisteredException.prototype);
1421
+ }
1422
+ }
1423
+ class InvalidIamSessionArnException extends CodeDeployServiceException {
1424
+ name = "InvalidIamSessionArnException";
1425
+ $fault = "client";
1426
+ constructor(opts) {
1427
+ super({
1428
+ name: "InvalidIamSessionArnException",
1429
+ $fault: "client",
1430
+ ...opts,
1431
+ });
1432
+ Object.setPrototypeOf(this, InvalidIamSessionArnException.prototype);
1433
+ }
1434
+ }
1435
+ class InvalidIamUserArnException extends CodeDeployServiceException {
1436
+ name = "InvalidIamUserArnException";
1437
+ $fault = "client";
1438
+ constructor(opts) {
1439
+ super({
1440
+ name: "InvalidIamUserArnException",
1441
+ $fault: "client",
1442
+ ...opts,
1443
+ });
1444
+ Object.setPrototypeOf(this, InvalidIamUserArnException.prototype);
1445
+ }
1446
+ }
1447
+ class MultipleIamArnsProvidedException extends CodeDeployServiceException {
1448
+ name = "MultipleIamArnsProvidedException";
1449
+ $fault = "client";
1450
+ constructor(opts) {
1451
+ super({
1452
+ name: "MultipleIamArnsProvidedException",
1453
+ $fault: "client",
1454
+ ...opts,
1455
+ });
1456
+ Object.setPrototypeOf(this, MultipleIamArnsProvidedException.prototype);
1457
+ }
1458
+ }
1459
+
1460
+ const _A = "Alarm";
1461
+ const _AAEE = "ApplicationAlreadyExistsException";
1462
+ const _AC = "AlarmConfiguration";
1463
+ const _ADNEE = "ApplicationDoesNotExistException";
1464
+ const _AI = "ApplicationInfo";
1465
+ const _AIL = "ApplicationsInfoList";
1466
+ const _AL = "AlarmList";
1467
+ const _ALEE = "AlarmsLimitExceededException";
1468
+ const _ALEEp = "ApplicationLimitExceededException";
1469
+ const _ANRE = "ApplicationNameRequiredException";
1470
+ const _ANSE = "ArnNotSupportedException";
1471
+ const _ARC = "AutoRollbackConfiguration";
1472
+ const _ASC = "AppSpecContent";
1473
+ const _ASG = "AutoScalingGroup";
1474
+ const _ASGL = "AutoScalingGroupList";
1475
+ const _ATTOPI = "AddTagsToOnPremisesInstances";
1476
+ const _ATTOPII = "AddTagsToOnPremisesInstancesInput";
1477
+ const _BGA = "BatchGetApplications";
1478
+ const _BGAI = "BatchGetApplicationsInput";
1479
+ const _BGAO = "BatchGetApplicationsOutput";
1480
+ const _BGAR = "BatchGetApplicationRevisions";
1481
+ const _BGARI = "BatchGetApplicationRevisionsInput";
1482
+ const _BGARO = "BatchGetApplicationRevisionsOutput";
1483
+ const _BGD = "BatchGetDeployments";
1484
+ const _BGDC = "BlueGreenDeploymentConfiguration";
1485
+ const _BGDG = "BatchGetDeploymentGroups";
1486
+ const _BGDGI = "BatchGetDeploymentGroupsInput";
1487
+ const _BGDGO = "BatchGetDeploymentGroupsOutput";
1488
+ const _BGDI = "BatchGetDeploymentsInput";
1489
+ const _BGDII = "BatchGetDeploymentInstancesInput";
1490
+ const _BGDIO = "BatchGetDeploymentInstancesOutput";
1491
+ const _BGDIa = "BatchGetDeploymentInstances";
1492
+ const _BGDO = "BatchGetDeploymentsOutput";
1493
+ const _BGDT = "BatchGetDeploymentTargets";
1494
+ const _BGDTI = "BatchGetDeploymentTargetsInput";
1495
+ const _BGDTO = "BatchGetDeploymentTargetsOutput";
1496
+ const _BGOPI = "BatchGetOnPremisesInstances";
1497
+ const _BGOPII = "BatchGetOnPremisesInstancesInput";
1498
+ const _BGOPIO = "BatchGetOnPremisesInstancesOutput";
1499
+ const _BITO = "BlueInstanceTerminationOption";
1500
+ const _BLEE = "BatchLimitExceededException";
1501
+ const _BNFRE = "BucketNameFilterRequiredException";
1502
+ const _CA = "CreateApplication";
1503
+ const _CAI = "CreateApplicationInput";
1504
+ const _CAO = "CreateApplicationOutput";
1505
+ const _CD = "ContinueDeployment";
1506
+ const _CDC = "CreateDeploymentConfig";
1507
+ const _CDCI = "CreateDeploymentConfigInput";
1508
+ const _CDCO = "CreateDeploymentConfigOutput";
1509
+ const _CDG = "CreateDeploymentGroup";
1510
+ const _CDGI = "CreateDeploymentGroupInput";
1511
+ const _CDGO = "CreateDeploymentGroupOutput";
1512
+ const _CDI = "ContinueDeploymentInput";
1513
+ const _CDIr = "CreateDeploymentInput";
1514
+ const _CDO = "CreateDeploymentOutput";
1515
+ const _CDr = "CreateDeployment";
1516
+ const _CFT = "CloudFormationTarget";
1517
+ const _D = "Diagnostics";
1518
+ const _DA = "DeleteApplication";
1519
+ const _DACE = "DeploymentAlreadyCompletedException";
1520
+ const _DAI = "DeleteApplicationInput";
1521
+ const _DCAEE = "DeploymentConfigAlreadyExistsException";
1522
+ const _DCDNEE = "DeploymentConfigDoesNotExistException";
1523
+ const _DCI = "DeploymentConfigInfo";
1524
+ const _DCIUE = "DeploymentConfigInUseException";
1525
+ const _DCLEE = "DeploymentConfigLimitExceededException";
1526
+ const _DCNRE = "DeploymentConfigNameRequiredException";
1527
+ const _DDC = "DeleteDeploymentConfig";
1528
+ const _DDCI = "DeleteDeploymentConfigInput";
1529
+ const _DDG = "DeleteDeploymentGroup";
1530
+ const _DDGI = "DeleteDeploymentGroupInput";
1531
+ const _DDGO = "DeleteDeploymentGroupOutput";
1532
+ const _DDNEE = "DeploymentDoesNotExistException";
1533
+ const _DGAEE = "DeploymentGroupAlreadyExistsException";
1534
+ const _DGDNEE = "DeploymentGroupDoesNotExistException";
1535
+ const _DGHAT = "DeleteGitHubAccountToken";
1536
+ const _DGHATI = "DeleteGitHubAccountTokenInput";
1537
+ const _DGHATO = "DeleteGitHubAccountTokenOutput";
1538
+ const _DGI = "DeploymentGroupInfo";
1539
+ const _DGIL = "DeploymentGroupInfoList";
1540
+ const _DGLEE = "DeploymentGroupLimitExceededException";
1541
+ const _DGNRE = "DeploymentGroupNameRequiredException";
1542
+ const _DI = "DeploymentInfo";
1543
+ const _DIL = "DeploymentsInfoList";
1544
+ const _DINIRSE = "DeploymentIsNotInReadyStateException";
1545
+ const _DIRE = "DeploymentIdRequiredException";
1546
+ const _DLEE = "DeploymentLimitExceededException";
1547
+ const _DNSE = "DeploymentNotStartedException";
1548
+ const _DO = "DeploymentOverview";
1549
+ const _DOPI = "DeregisterOnPremisesInstance";
1550
+ const _DOPII = "DeregisterOnPremisesInstanceInput";
1551
+ const _DRBEI = "DeleteResourcesByExternalId";
1552
+ const _DRBEII = "DeleteResourcesByExternalIdInput";
1553
+ const _DRBEIO = "DeleteResourcesByExternalIdOutput";
1554
+ const _DRO = "DeploymentReadyOption";
1555
+ const _DS = "DeploymentStyle";
1556
+ const _DT = "DeploymentTarget";
1557
+ const _DTDNEE = "DeploymentTargetDoesNotExistException";
1558
+ const _DTIRE = "DeploymentTargetIdRequiredException";
1559
+ const _DTL = "DeploymentTargetList";
1560
+ const _DTLE = "DescriptionTooLongException";
1561
+ const _DTLSEE = "DeploymentTargetListSizeExceededException";
1562
+ const _ECSS = "ECSService";
1563
+ const _ECSSL = "ECSServiceList";
1564
+ const _ECSSMLEE = "ECSServiceMappingLimitExceededException";
1565
+ const _ECST = "ECSTarget";
1566
+ const _ECSTS = "ECSTaskSet";
1567
+ const _ECSTSL = "ECSTaskSetList";
1568
+ const _ECTF = "EC2TagFilter";
1569
+ const _ECTFL = "EC2TagFilterList";
1570
+ const _ECTS = "EC2TagSet";
1571
+ const _ECTSL = "EC2TagSetList";
1572
+ const _EI = "ErrorInformation";
1573
+ const _ELBI = "ELBInfo";
1574
+ const _ELBIL = "ELBInfoList";
1575
+ const _F = "Failed";
1576
+ const _GA = "GetApplication";
1577
+ const _GAI = "GetApplicationInput";
1578
+ const _GAO = "GetApplicationOutput";
1579
+ const _GAR = "GetApplicationRevision";
1580
+ const _GARI = "GetApplicationRevisionInput";
1581
+ const _GARO = "GetApplicationRevisionOutput";
1582
+ const _GD = "GetDeployment";
1583
+ const _GDC = "GetDeploymentConfig";
1584
+ const _GDCI = "GetDeploymentConfigInput";
1585
+ const _GDCO = "GetDeploymentConfigOutput";
1586
+ const _GDG = "GetDeploymentGroup";
1587
+ const _GDGI = "GetDeploymentGroupInput";
1588
+ const _GDGO = "GetDeploymentGroupOutput";
1589
+ const _GDI = "GetDeploymentInput";
1590
+ const _GDII = "GetDeploymentInstanceInput";
1591
+ const _GDIO = "GetDeploymentInstanceOutput";
1592
+ const _GDIe = "GetDeploymentInstance";
1593
+ const _GDO = "GetDeploymentOutput";
1594
+ const _GDT = "GetDeploymentTarget";
1595
+ const _GDTI = "GetDeploymentTargetInput";
1596
+ const _GDTO = "GetDeploymentTargetOutput";
1597
+ const _GFPO = "GreenFleetProvisioningOption";
1598
+ const _GHATDNEE = "GitHubAccountTokenDoesNotExistException";
1599
+ const _GHATNRE = "GitHubAccountTokenNameRequiredException";
1600
+ const _GHL = "GitHubLocation";
1601
+ const _GOPI = "GetOnPremisesInstance";
1602
+ const _GOPII = "GetOnPremisesInstanceInput";
1603
+ const _GOPIO = "GetOnPremisesInstanceOutput";
1604
+ const _GRI = "GenericRevisionInfo";
1605
+ const _IACE = "InvalidAlarmConfigException";
1606
+ const _IAE = "InvalidArnException";
1607
+ const _IANE = "InvalidApplicationNameException";
1608
+ const _IARCE = "InvalidAutoRollbackConfigException";
1609
+ const _IARE = "IamArnRequiredException";
1610
+ const _IASGE = "InvalidAutoScalingGroupException";
1611
+ const _IBGDCE = "InvalidBlueGreenDeploymentConfigurationException";
1612
+ const _IBNFE = "InvalidBucketNameFilterException";
1613
+ const _ICPE = "InvalidComputePlatformException";
1614
+ const _IDCNE = "InvalidDeploymentConfigNameException";
1615
+ const _IDGNE = "InvalidDeploymentGroupNameException";
1616
+ const _IDIE = "InvalidDeploymentIdException";
1617
+ const _IDITE = "InvalidDeploymentInstanceTypeException";
1618
+ const _IDNEE = "InstanceDoesNotExistException";
1619
+ const _IDSE = "InvalidDeploymentStatusException";
1620
+ const _IDSEn = "InvalidDeploymentStyleException";
1621
+ const _IDSFE = "InvalidDeployedStateFilterException";
1622
+ const _IDTIE = "InvalidDeploymentTargetIdException";
1623
+ const _IDWTE = "InvalidDeploymentWaitTypeException";
1624
+ const _IECSSE = "InvalidECSServiceException";
1625
+ const _IECTCE = "InvalidEC2TagCombinationException";
1626
+ const _IECTE = "InvalidEC2TagException";
1627
+ const _IEIE = "InvalidExternalIdException";
1628
+ const _IFEBE = "InvalidFileExistsBehaviorException";
1629
+ const _IGHATE = "InvalidGitHubAccountTokenException";
1630
+ const _IGHATNE = "InvalidGitHubAccountTokenNameException";
1631
+ const _II = "InstanceInfo";
1632
+ const _IIASFVE = "InvalidIgnoreApplicationStopFailuresValueException";
1633
+ const _IIE = "InvalidInputException";
1634
+ const _IIL = "InstanceInfoList";
1635
+ const _IINE = "InvalidInstanceNameException";
1636
+ const _IIRE = "InstanceIdRequiredException";
1637
+ const _IISAE = "InvalidIamSessionArnException";
1638
+ const _IISE = "InvalidInstanceStatusException";
1639
+ const _IITE = "InvalidInstanceTypeException";
1640
+ const _IIUAE = "InvalidIamUserArnException";
1641
+ const _IKPFE = "InvalidKeyPrefixFilterException";
1642
+ const _ILBIE = "InvalidLoadBalancerInfoException";
1643
+ const _ILEE = "InstanceLimitExceededException";
1644
+ const _ILEHEIE = "InvalidLifecycleEventHookExecutionIdException";
1645
+ const _ILEHESE = "InvalidLifecycleEventHookExecutionStatusException";
1646
+ const _IMHHVE = "InvalidMinimumHealthyHostValueException";
1647
+ const _INARE = "InstanceNameAlreadyRegisteredException";
1648
+ const _INRE = "InstanceNameRequiredException";
1649
+ const _INREn = "InstanceNotRegisteredException";
1650
+ const _INTE = "InvalidNextTokenException";
1651
+ const _IOE = "InvalidOperationException";
1652
+ const _IOPTCE = "InvalidOnPremisesTagCombinationException";
1653
+ const _IP = "InProgress";
1654
+ const _IRE = "InvalidRevisionException";
1655
+ const _IREn = "InvalidRoleException";
1656
+ const _IRSE = "InvalidRegistrationStatusException";
1657
+ const _IS = "InstanceSummary";
1658
+ const _ISAARE = "IamSessionArnAlreadyRegisteredException";
1659
+ const _ISBE = "InvalidSortByException";
1660
+ const _ISL = "InstanceSummaryList";
1661
+ const _ISOE = "InvalidSortOrderException";
1662
+ const _IT = "InstanceTarget";
1663
+ const _ITCE = "InvalidTriggerConfigException";
1664
+ const _ITE = "InvalidTagException";
1665
+ const _ITFE = "InvalidTagFilterException";
1666
+ const _ITFNE = "InvalidTargetFilterNameException";
1667
+ const _ITGPE = "InvalidTargetGroupPairException";
1668
+ const _ITIE = "InvalidTargetInstancesException";
1669
+ const _ITRCE = "InvalidTrafficRoutingConfigurationException";
1670
+ const _ITRE = "InvalidTimeRangeException";
1671
+ const _ITTAE = "InvalidTagsToAddException";
1672
+ const _IUAARE = "IamUserArnAlreadyRegisteredException";
1673
+ const _IUARE = "IamUserArnRequiredException";
1674
+ const _IUOIOVE = "InvalidUpdateOutdatedInstancesOnlyValueException";
1675
+ const _IZDCE = "InvalidZonalDeploymentConfigurationException";
1676
+ const _K = "Key";
1677
+ const _LA = "ListApplications";
1678
+ const _LAI = "ListApplicationsInput";
1679
+ const _LAO = "ListApplicationsOutput";
1680
+ const _LAR = "ListApplicationRevisions";
1681
+ const _LARI = "ListApplicationRevisionsInput";
1682
+ const _LARO = "ListApplicationRevisionsOutput";
1683
+ const _LBI = "LoadBalancerInfo";
1684
+ const _LD = "ListDeployments";
1685
+ const _LDC = "ListDeploymentConfigs";
1686
+ const _LDCI = "ListDeploymentConfigsInput";
1687
+ const _LDCO = "ListDeploymentConfigsOutput";
1688
+ const _LDG = "ListDeploymentGroups";
1689
+ const _LDGI = "ListDeploymentGroupsInput";
1690
+ const _LDGO = "ListDeploymentGroupsOutput";
1691
+ const _LDI = "LastDeploymentInfo";
1692
+ const _LDII = "ListDeploymentInstancesInput";
1693
+ const _LDIO = "ListDeploymentInstancesOutput";
1694
+ const _LDIi = "ListDeploymentsInput";
1695
+ const _LDIis = "ListDeploymentInstances";
1696
+ const _LDO = "ListDeploymentsOutput";
1697
+ const _LDT = "ListDeploymentTargets";
1698
+ const _LDTI = "ListDeploymentTargetsInput";
1699
+ const _LDTO = "ListDeploymentTargetsOutput";
1700
+ const _LE = "LifecycleEvent";
1701
+ const _LEACE = "LifecycleEventAlreadyCompletedException";
1702
+ const _LEL = "LifecycleEventList";
1703
+ const _LFI = "LambdaFunctionInfo";
1704
+ const _LGHATN = "ListGitHubAccountTokenNames";
1705
+ const _LGHATNI = "ListGitHubAccountTokenNamesInput";
1706
+ const _LGHATNO = "ListGitHubAccountTokenNamesOutput";
1707
+ const _LHLEE = "LifecycleHookLimitExceededException";
1708
+ const _LOPI = "ListOnPremisesInstances";
1709
+ const _LOPII = "ListOnPremisesInstancesInput";
1710
+ const _LOPIO = "ListOnPremisesInstancesOutput";
1711
+ const _LT = "LambdaTarget";
1712
+ const _LTFR = "ListTagsForResource";
1713
+ const _LTFRI = "ListTagsForResourceInput";
1714
+ const _LTFRO = "ListTagsForResourceOutput";
1715
+ const _MHH = "MinimumHealthyHosts";
1716
+ const _MHHPZ = "MinimumHealthyHostsPerZone";
1717
+ const _MIAPE = "MultipleIamArnsProvidedException";
1718
+ const _NT = "NextToken";
1719
+ const _ONSE = "OperationNotSupportedException";
1720
+ const _OPTS = "OnPremisesTagSet";
1721
+ const _OPTSL = "OnPremisesTagSetList";
1722
+ const _P = "Pending";
1723
+ const _PLEHES = "PutLifecycleEventHookExecutionStatus";
1724
+ const _PLEHESI = "PutLifecycleEventHookExecutionStatusInput";
1725
+ const _PLEHESO = "PutLifecycleEventHookExecutionStatusOutput";
1726
+ const _R = "Ready";
1727
+ const _RA = "ResourceArn";
1728
+ const _RAR = "RegisterApplicationRevision";
1729
+ const _RARE = "ResourceArnRequiredException";
1730
+ const _RARI = "RegisterApplicationRevisionInput";
1731
+ const _RD = "RelatedDeployments";
1732
+ const _RDNEE = "RevisionDoesNotExistException";
1733
+ const _RI = "RevisionInfo";
1734
+ const _RIL = "RevisionInfoList";
1735
+ const _RIo = "RollbackInfo";
1736
+ const _RL = "RevisionLocation";
1737
+ const _RLL = "RevisionLocationList";
1738
+ const _ROPI = "RegisterOnPremisesInstance";
1739
+ const _ROPII = "RegisterOnPremisesInstanceInput";
1740
+ const _RRE = "RevisionRequiredException";
1741
+ const _RREo = "RoleRequiredException";
1742
+ const _RS = "RawString";
1743
+ const _RTFOPI = "RemoveTagsFromOnPremisesInstances";
1744
+ const _RTFOPII = "RemoveTagsFromOnPremisesInstancesInput";
1745
+ const _RVE = "ResourceValidationException";
1746
+ const _S = "Succeeded";
1747
+ const _SD = "StopDeployment";
1748
+ const _SDI = "StopDeploymentInput";
1749
+ const _SDO = "StopDeploymentOutput";
1750
+ const _SL = "S3Location";
1751
+ const _SWTFIT = "SkipWaitTimeForInstanceTermination";
1752
+ const _SWTFITI = "SkipWaitTimeForInstanceTerminationInput";
1753
+ const _Sk = "Skipped";
1754
+ const _T = "Type";
1755
+ const _TBC = "TimeBasedCanary";
1756
+ const _TBL = "TimeBasedLinear";
1757
+ const _TC = "TriggerConfig";
1758
+ const _TCL = "TriggerConfigList";
1759
+ const _TE = "ThrottlingException";
1760
+ const _TF = "TargetFilters";
1761
+ const _TFL = "TagFilterList";
1762
+ const _TFa = "TagFilter";
1763
+ const _TGI = "TargetGroupInfo";
1764
+ const _TGIL = "TargetGroupInfoList";
1765
+ const _TGPI = "TargetGroupPairInfo";
1766
+ const _TGPIL = "TargetGroupPairInfoList";
1767
+ const _TI = "TargetInstances";
1768
+ const _TK = "TagKeys";
1769
+ const _TL = "TagList";
1770
+ const _TLEE = "TagLimitExceededException";
1771
+ const _TR = "TimeRange";
1772
+ const _TRC = "TrafficRoutingConfig";
1773
+ const _TRE = "TagRequiredException";
1774
+ const _TRI = "TagResourceInput";
1775
+ const _TRO = "TagResourceOutput";
1776
+ const _TRa = "TagResource";
1777
+ const _TRr = "TrafficRoute";
1778
+ const _TSLLEE = "TagSetListLimitExceededException";
1779
+ const _TTLEE = "TriggerTargetsLimitExceededException";
1780
+ const _Ta = "Tags";
1781
+ const _Tag = "Tag";
1782
+ const _UA = "UpdateApplication";
1783
+ const _UAFDTE = "UnsupportedActionForDeploymentTypeException";
1784
+ const _UAI = "UpdateApplicationInput";
1785
+ const _UDG = "UpdateDeploymentGroup";
1786
+ const _UDGI = "UpdateDeploymentGroupInput";
1787
+ const _UDGO = "UpdateDeploymentGroupOutput";
1788
+ const _UR = "UntagResource";
1789
+ const _URI = "UntagResourceInput";
1790
+ const _URO = "UntagResourceOutput";
1791
+ const _V = "Value";
1792
+ const _ZC = "ZonalConfig";
1793
+ const _a = "alarms";
1794
+ const _aC = "alarmConfiguration";
1795
+ const _aDSI = "additionalDeploymentStatusInfo";
1796
+ const _aI = "applicationId";
1797
+ const _aIp = "applicationsInfo";
1798
+ const _aN = "applicationName";
1799
+ const _aNp = "applicationNames";
1800
+ const _aOT = "actionOnTimeout";
1801
+ const _aRC = "autoRollbackConfiguration";
1802
+ const _aRE = "autoRollbackEnabled";
1803
+ const _aSC = "appSpecContent";
1804
+ const _aSG = "autoScalingGroups";
1805
+ const _aUOIDI = "autoUpdateOutdatedInstancesDeploymentIds";
1806
+ const _aUOIRDI = "autoUpdateOutdatedInstancesRootDeploymentId";
1807
+ const _ac = "action";
1808
+ const _ap = "application";
1809
+ const _app = "applications";
1810
+ const _b = "bucket";
1811
+ const _bGDC = "blueGreenDeploymentConfiguration";
1812
+ const _bT = "bundleType";
1813
+ const _c = "client";
1814
+ const _cDGN = "currentDeploymentGroupName";
1815
+ const _cFT = "cloudFormationTarget";
1816
+ const _cI = "commitId";
1817
+ const _cIa = "canaryInterval";
1818
+ const _cN = "clusterName";
1819
+ const _cP = "computePlatform";
1820
+ const _cPa = "canaryPercentage";
1821
+ const _cT = "createTime";
1822
+ const _cTR = "createTimeRange";
1823
+ const _cTo = "completeTime";
1824
+ const _cV = "currentVersion";
1825
+ const _co = "content";
1826
+ const _cod = "code";
1827
+ const _cr = "creator";
1828
+ const _d = "description";
1829
+ const _dC = "desiredCount";
1830
+ const _dCI = "deploymentConfigId";
1831
+ const _dCIe = "deploymentConfigInfo";
1832
+ const _dCL = "deploymentConfigsList";
1833
+ const _dCN = "deploymentConfigName";
1834
+ const _dG = "deploymentGroups";
1835
+ const _dGI = "deploymentGroupsInfo";
1836
+ const _dGIe = "deploymentGroupId";
1837
+ const _dGIep = "deploymentGroupInfo";
1838
+ const _dGN = "deploymentGroupNames";
1839
+ const _dGNe = "deploymentGroupName";
1840
+ const _dI = "deploymentId";
1841
+ const _dIe = "deploymentIds";
1842
+ const _dIep = "deploymentsInfo";
1843
+ const _dIepl = "deploymentInfo";
1844
+ const _dO = "deploymentOverview";
1845
+ const _dOe = "deploymentOption";
1846
+ const _dRO = "deploymentReadyOption";
1847
+ const _dS = "deploymentStyle";
1848
+ const _dSM = "deploymentStatusMessages";
1849
+ const _dT = "deploymentTargets";
1850
+ const _dTT = "deploymentTargetType";
1851
+ const _dTe = "deploymentType";
1852
+ const _dTep = "deploymentTarget";
1853
+ const _dTer = "deregisterTime";
1854
+ const _dWT = "deploymentWaitType";
1855
+ const _de = "deployed";
1856
+ const _dep = "deployments";
1857
+ const _di = "diagnostics";
1858
+ const _e = "error";
1859
+ const _eC = "errorCode";
1860
+ const _eI = "externalId";
1861
+ const _eIL = "elbInfoList";
1862
+ const _eIr = "errorInformation";
1863
+ const _eM = "errorMessage";
1864
+ const _eS = "ecsServices";
1865
+ const _eT = "ecsTarget";
1866
+ const _eTF = "ec2TagFilters";
1867
+ const _eTS = "ec2TagSet";
1868
+ const _eTSL = "ec2TagSetList";
1869
+ const _eTa = "eTag";
1870
+ const _eTn = "endTime";
1871
+ const _en = "enabled";
1872
+ const _end = "end";
1873
+ const _ev = "events";
1874
+ const _fA = "functionAlias";
1875
+ const _fEB = "fileExistsBehavior";
1876
+ const _fN = "functionName";
1877
+ const _fUT = "firstUsedTime";
1878
+ const _fZMDIS = "firstZoneMonitorDurationInSeconds";
1879
+ const _gFPO = "greenFleetProvisioningOption";
1880
+ const _gHAN = "gitHubAccountName";
1881
+ const _gHL = "gitHubLocation";
1882
+ const _gRI = "genericRevisionInfo";
1883
+ const _h = "hook";
1884
+ const _hNCU = "hooksNotCleanedUp";
1885
+ const _i = "identifer";
1886
+ const _iA = "instanceArn";
1887
+ const _iASF = "ignoreApplicationStopFailures";
1888
+ const _iI = "instanceIds";
1889
+ const _iIn = "instanceInfos";
1890
+ const _iIns = "instanceId";
1891
+ const _iInst = "instanceInfo";
1892
+ const _iL = "instanceLabel";
1893
+ const _iLn = "instancesList";
1894
+ const _iN = "instanceNames";
1895
+ const _iNn = "instanceName";
1896
+ const _iOS = "includeOnlyStatuses";
1897
+ const _iPAF = "ignorePollAlarmFailure";
1898
+ const _iS = "instancesSummary";
1899
+ const _iSA = "iamSessionArn";
1900
+ const _iSF = "instanceStatusFilter";
1901
+ const _iSn = "instanceSummary";
1902
+ const _iT = "instanceTarget";
1903
+ const _iTF = "instanceTypeFilter";
1904
+ const _iTWTS = "instanceTerminationWaitTimeStarted";
1905
+ const _iTn = "instanceType";
1906
+ const _iUA = "iamUserArn";
1907
+ const _k = "key";
1908
+ const _lA = "listenerArns";
1909
+ const _lAD = "lastAttemptedDeployment";
1910
+ const _lBI = "loadBalancerInfo";
1911
+ const _lE = "lifecycleEvents";
1912
+ const _lEHEI = "lifecycleEventHookExecutionId";
1913
+ const _lEN = "lifecycleEventName";
1914
+ const _lFI = "lambdaFunctionInfo";
1915
+ const _lI = "linearInterval";
1916
+ const _lP = "linearPercentage";
1917
+ const _lSD = "lastSuccessfulDeployment";
1918
+ const _lT = "lambdaTarget";
1919
+ const _lTGH = "linkedToGitHub";
1920
+ const _lTo = "logTail";
1921
+ const _lUA = "lastUpdatedAt";
1922
+ const _lUT = "lastUsedTime";
1923
+ const _m = "message";
1924
+ const _mDIS = "monitorDurationInSeconds";
1925
+ const _mHH = "minimumHealthyHosts";
1926
+ const _mHHPZ = "minimumHealthyHostsPerZone";
1927
+ const _n = "name";
1928
+ const _nAN = "newApplicationName";
1929
+ const _nDGN = "newDeploymentGroupName";
1930
+ const _nT = "nextToken";
1931
+ const _oAC = "overrideAlarmConfiguration";
1932
+ const _oIS = "outdatedInstancesStrategy";
1933
+ const _oPITF = "onPremisesInstanceTagFilters";
1934
+ const _oPTS = "onPremisesTagSet";
1935
+ const _oPTSL = "onPremisesTagSetList";
1936
+ const _pC = "pendingCount";
1937
+ const _pR = "previousRevision";
1938
+ const _pTR = "prodTrafficRoute";
1939
+ const _r = "revisions";
1940
+ const _rC = "runningCount";
1941
+ const _rD = "relatedDeployments";
1942
+ const _rDI = "rollbackDeploymentId";
1943
+ const _rI = "rollbackInfo";
1944
+ const _rIe = "revisionInfo";
1945
+ const _rL = "revisionLocation";
1946
+ const _rM = "rollbackMessage";
1947
+ const _rS = "registrationStatus";
1948
+ const _rT = "resourceType";
1949
+ const _rTDI = "rollbackTriggeringDeploymentId";
1950
+ const _rTe = "registerTime";
1951
+ const _rTev = "revisionType";
1952
+ const _re = "revision";
1953
+ const _rep = "repository";
1954
+ const _s = "smithy.ts.sdk.synthetic.com.amazonaws.codedeploy";
1955
+ const _sB = "sortBy";
1956
+ const _sBu = "s3Bucket";
1957
+ const _sKP = "s3KeyPrefix";
1958
+ const _sL = "s3Location";
1959
+ const _sM = "statusMessage";
1960
+ const _sN = "scriptName";
1961
+ const _sNe = "serviceName";
1962
+ const _sO = "sortOrder";
1963
+ const _sRA = "serviceRoleArn";
1964
+ const _sT = "startTime";
1965
+ const _sh = "sha256";
1966
+ const _st = "status";
1967
+ const _sta = "start";
1968
+ const _str = "string";
1969
+ const _t = "tags";
1970
+ const _tA = "targetArn";
1971
+ const _tBC = "timeBasedCanary";
1972
+ const _tBIODS = "terminateBlueInstancesOnDeploymentSuccess";
1973
+ const _tBL = "timeBasedLinear";
1974
+ const _tC = "triggerConfigurations";
1975
+ const _tE = "triggerEvents";
1976
+ const _tF = "targetFilters";
1977
+ const _tFa = "tagFilters";
1978
+ const _tG = "targetGroup";
1979
+ const _tGIL = "targetGroupInfoList";
1980
+ const _tGPIL = "targetGroupPairInfoList";
1981
+ const _tGa = "targetGroups";
1982
+ const _tH = "terminationHook";
1983
+ const _tHE = "terminationHookEnabled";
1984
+ const _tI = "targetIds";
1985
+ const _tIa = "targetId";
1986
+ const _tIar = "targetInstances";
1987
+ const _tN = "tokenName";
1988
+ const _tNL = "tokenNameList";
1989
+ const _tNr = "triggerName";
1990
+ const _tR = "targetRevision";
1991
+ const _tRC = "trafficRoutingConfig";
1992
+ const _tSI = "taskSetsInfo";
1993
+ const _tSL = "taskSetLabel";
1994
+ const _tTA = "triggerTargetArn";
1995
+ const _tTR = "testTrafficRoute";
1996
+ const _tV = "targetVersion";
1997
+ const _tVW = "targetVersionWeight";
1998
+ const _tW = "trafficWeight";
1999
+ const _tWTIM = "terminationWaitTimeInMinutes";
2000
+ const _ty = "type";
2001
+ const _uOIO = "updateOutdatedInstancesOnly";
2002
+ const _v = "value";
2003
+ const _ve = "version";
2004
+ const _wTIM = "waitTimeInMinutes";
2005
+ const _zC = "zonalConfig";
2006
+ const n0 = "com.amazonaws.codedeploy";
2007
+ const _s_registry = TypeRegistry.for(_s);
2008
+ var CodeDeployServiceException$ = [-3, _s, "CodeDeployServiceException", 0, [], []];
2009
+ _s_registry.registerError(CodeDeployServiceException$, CodeDeployServiceException);
2010
+ const n0_registry = TypeRegistry.for(n0);
2011
+ var AlarmsLimitExceededException$ = [-3, n0, _ALEE,
2012
+ { [_e]: _c },
2013
+ [_m],
2014
+ [0]
2015
+ ];
2016
+ n0_registry.registerError(AlarmsLimitExceededException$, AlarmsLimitExceededException);
2017
+ var ApplicationAlreadyExistsException$ = [-3, n0, _AAEE,
2018
+ { [_e]: _c },
2019
+ [_m],
2020
+ [0]
2021
+ ];
2022
+ n0_registry.registerError(ApplicationAlreadyExistsException$, ApplicationAlreadyExistsException);
2023
+ var ApplicationDoesNotExistException$ = [-3, n0, _ADNEE,
2024
+ { [_e]: _c },
2025
+ [_m],
2026
+ [0]
2027
+ ];
2028
+ n0_registry.registerError(ApplicationDoesNotExistException$, ApplicationDoesNotExistException);
2029
+ var ApplicationLimitExceededException$ = [-3, n0, _ALEEp,
2030
+ { [_e]: _c },
2031
+ [_m],
2032
+ [0]
2033
+ ];
2034
+ n0_registry.registerError(ApplicationLimitExceededException$, ApplicationLimitExceededException);
2035
+ var ApplicationNameRequiredException$ = [-3, n0, _ANRE,
2036
+ { [_e]: _c },
2037
+ [_m],
2038
+ [0]
2039
+ ];
2040
+ n0_registry.registerError(ApplicationNameRequiredException$, ApplicationNameRequiredException);
2041
+ var ArnNotSupportedException$ = [-3, n0, _ANSE,
2042
+ { [_e]: _c },
2043
+ [_m],
2044
+ [0]
2045
+ ];
2046
+ n0_registry.registerError(ArnNotSupportedException$, ArnNotSupportedException);
2047
+ var BatchLimitExceededException$ = [-3, n0, _BLEE,
2048
+ { [_e]: _c },
2049
+ [_m],
2050
+ [0]
2051
+ ];
2052
+ n0_registry.registerError(BatchLimitExceededException$, BatchLimitExceededException);
2053
+ var BucketNameFilterRequiredException$ = [-3, n0, _BNFRE,
2054
+ { [_e]: _c },
2055
+ [_m],
2056
+ [0]
2057
+ ];
2058
+ n0_registry.registerError(BucketNameFilterRequiredException$, BucketNameFilterRequiredException);
2059
+ var DeploymentAlreadyCompletedException$ = [-3, n0, _DACE,
2060
+ { [_e]: _c },
2061
+ [_m],
2062
+ [0]
2063
+ ];
2064
+ n0_registry.registerError(DeploymentAlreadyCompletedException$, DeploymentAlreadyCompletedException);
2065
+ var DeploymentConfigAlreadyExistsException$ = [-3, n0, _DCAEE,
2066
+ { [_e]: _c },
2067
+ [_m],
2068
+ [0]
2069
+ ];
2070
+ n0_registry.registerError(DeploymentConfigAlreadyExistsException$, DeploymentConfigAlreadyExistsException);
2071
+ var DeploymentConfigDoesNotExistException$ = [-3, n0, _DCDNEE,
2072
+ { [_e]: _c },
2073
+ [_m],
2074
+ [0]
2075
+ ];
2076
+ n0_registry.registerError(DeploymentConfigDoesNotExistException$, DeploymentConfigDoesNotExistException);
2077
+ var DeploymentConfigInUseException$ = [-3, n0, _DCIUE,
2078
+ { [_e]: _c },
2079
+ [_m],
2080
+ [0]
2081
+ ];
2082
+ n0_registry.registerError(DeploymentConfigInUseException$, DeploymentConfigInUseException);
2083
+ var DeploymentConfigLimitExceededException$ = [-3, n0, _DCLEE,
2084
+ { [_e]: _c },
2085
+ [_m],
2086
+ [0]
2087
+ ];
2088
+ n0_registry.registerError(DeploymentConfigLimitExceededException$, DeploymentConfigLimitExceededException);
2089
+ var DeploymentConfigNameRequiredException$ = [-3, n0, _DCNRE,
2090
+ { [_e]: _c },
2091
+ [_m],
2092
+ [0]
2093
+ ];
2094
+ n0_registry.registerError(DeploymentConfigNameRequiredException$, DeploymentConfigNameRequiredException);
2095
+ var DeploymentDoesNotExistException$ = [-3, n0, _DDNEE,
2096
+ { [_e]: _c },
2097
+ [_m],
2098
+ [0]
2099
+ ];
2100
+ n0_registry.registerError(DeploymentDoesNotExistException$, DeploymentDoesNotExistException);
2101
+ var DeploymentGroupAlreadyExistsException$ = [-3, n0, _DGAEE,
2102
+ { [_e]: _c },
2103
+ [_m],
2104
+ [0]
2105
+ ];
2106
+ n0_registry.registerError(DeploymentGroupAlreadyExistsException$, DeploymentGroupAlreadyExistsException);
2107
+ var DeploymentGroupDoesNotExistException$ = [-3, n0, _DGDNEE,
2108
+ { [_e]: _c },
2109
+ [_m],
2110
+ [0]
2111
+ ];
2112
+ n0_registry.registerError(DeploymentGroupDoesNotExistException$, DeploymentGroupDoesNotExistException);
2113
+ var DeploymentGroupLimitExceededException$ = [-3, n0, _DGLEE,
2114
+ { [_e]: _c },
2115
+ [_m],
2116
+ [0]
2117
+ ];
2118
+ n0_registry.registerError(DeploymentGroupLimitExceededException$, DeploymentGroupLimitExceededException);
2119
+ var DeploymentGroupNameRequiredException$ = [-3, n0, _DGNRE,
2120
+ { [_e]: _c },
2121
+ [_m],
2122
+ [0]
2123
+ ];
2124
+ n0_registry.registerError(DeploymentGroupNameRequiredException$, DeploymentGroupNameRequiredException);
2125
+ var DeploymentIdRequiredException$ = [-3, n0, _DIRE,
2126
+ { [_e]: _c },
2127
+ [_m],
2128
+ [0]
2129
+ ];
2130
+ n0_registry.registerError(DeploymentIdRequiredException$, DeploymentIdRequiredException);
2131
+ var DeploymentIsNotInReadyStateException$ = [-3, n0, _DINIRSE,
2132
+ { [_e]: _c },
2133
+ [_m],
2134
+ [0]
2135
+ ];
2136
+ n0_registry.registerError(DeploymentIsNotInReadyStateException$, DeploymentIsNotInReadyStateException);
2137
+ var DeploymentLimitExceededException$ = [-3, n0, _DLEE,
2138
+ { [_e]: _c },
2139
+ [_m],
2140
+ [0]
2141
+ ];
2142
+ n0_registry.registerError(DeploymentLimitExceededException$, DeploymentLimitExceededException);
2143
+ var DeploymentNotStartedException$ = [-3, n0, _DNSE,
2144
+ { [_e]: _c },
2145
+ [_m],
2146
+ [0]
2147
+ ];
2148
+ n0_registry.registerError(DeploymentNotStartedException$, DeploymentNotStartedException);
2149
+ var DeploymentTargetDoesNotExistException$ = [-3, n0, _DTDNEE,
2150
+ { [_e]: _c },
2151
+ [_m],
2152
+ [0]
2153
+ ];
2154
+ n0_registry.registerError(DeploymentTargetDoesNotExistException$, DeploymentTargetDoesNotExistException);
2155
+ var DeploymentTargetIdRequiredException$ = [-3, n0, _DTIRE,
2156
+ { [_e]: _c },
2157
+ [_m],
2158
+ [0]
2159
+ ];
2160
+ n0_registry.registerError(DeploymentTargetIdRequiredException$, DeploymentTargetIdRequiredException);
2161
+ var DeploymentTargetListSizeExceededException$ = [-3, n0, _DTLSEE,
2162
+ { [_e]: _c },
2163
+ [_m],
2164
+ [0]
2165
+ ];
2166
+ n0_registry.registerError(DeploymentTargetListSizeExceededException$, DeploymentTargetListSizeExceededException);
2167
+ var DescriptionTooLongException$ = [-3, n0, _DTLE,
2168
+ { [_e]: _c },
2169
+ [_m],
2170
+ [0]
2171
+ ];
2172
+ n0_registry.registerError(DescriptionTooLongException$, DescriptionTooLongException);
2173
+ var ECSServiceMappingLimitExceededException$ = [-3, n0, _ECSSMLEE,
2174
+ { [_e]: _c },
2175
+ [_m],
2176
+ [0]
2177
+ ];
2178
+ n0_registry.registerError(ECSServiceMappingLimitExceededException$, ECSServiceMappingLimitExceededException);
2179
+ var GitHubAccountTokenDoesNotExistException$ = [-3, n0, _GHATDNEE,
2180
+ { [_e]: _c },
2181
+ [_m],
2182
+ [0]
2183
+ ];
2184
+ n0_registry.registerError(GitHubAccountTokenDoesNotExistException$, GitHubAccountTokenDoesNotExistException);
2185
+ var GitHubAccountTokenNameRequiredException$ = [-3, n0, _GHATNRE,
2186
+ { [_e]: _c },
2187
+ [_m],
2188
+ [0]
2189
+ ];
2190
+ n0_registry.registerError(GitHubAccountTokenNameRequiredException$, GitHubAccountTokenNameRequiredException);
2191
+ var IamArnRequiredException$ = [-3, n0, _IARE,
2192
+ { [_e]: _c },
2193
+ [_m],
2194
+ [0]
2195
+ ];
2196
+ n0_registry.registerError(IamArnRequiredException$, IamArnRequiredException);
2197
+ var IamSessionArnAlreadyRegisteredException$ = [-3, n0, _ISAARE,
2198
+ { [_e]: _c },
2199
+ [_m],
2200
+ [0]
2201
+ ];
2202
+ n0_registry.registerError(IamSessionArnAlreadyRegisteredException$, IamSessionArnAlreadyRegisteredException);
2203
+ var IamUserArnAlreadyRegisteredException$ = [-3, n0, _IUAARE,
2204
+ { [_e]: _c },
2205
+ [_m],
2206
+ [0]
2207
+ ];
2208
+ n0_registry.registerError(IamUserArnAlreadyRegisteredException$, IamUserArnAlreadyRegisteredException);
2209
+ var IamUserArnRequiredException$ = [-3, n0, _IUARE,
2210
+ { [_e]: _c },
2211
+ [_m],
2212
+ [0]
2213
+ ];
2214
+ n0_registry.registerError(IamUserArnRequiredException$, IamUserArnRequiredException);
2215
+ var InstanceDoesNotExistException$ = [-3, n0, _IDNEE,
2216
+ { [_e]: _c },
2217
+ [_m],
2218
+ [0]
2219
+ ];
2220
+ n0_registry.registerError(InstanceDoesNotExistException$, InstanceDoesNotExistException);
2221
+ var InstanceIdRequiredException$ = [-3, n0, _IIRE,
2222
+ { [_e]: _c },
2223
+ [_m],
2224
+ [0]
2225
+ ];
2226
+ n0_registry.registerError(InstanceIdRequiredException$, InstanceIdRequiredException);
2227
+ var InstanceLimitExceededException$ = [-3, n0, _ILEE,
2228
+ { [_e]: _c },
2229
+ [_m],
2230
+ [0]
2231
+ ];
2232
+ n0_registry.registerError(InstanceLimitExceededException$, InstanceLimitExceededException);
2233
+ var InstanceNameAlreadyRegisteredException$ = [-3, n0, _INARE,
2234
+ { [_e]: _c },
2235
+ [_m],
2236
+ [0]
2237
+ ];
2238
+ n0_registry.registerError(InstanceNameAlreadyRegisteredException$, InstanceNameAlreadyRegisteredException);
2239
+ var InstanceNameRequiredException$ = [-3, n0, _INRE,
2240
+ { [_e]: _c },
2241
+ [_m],
2242
+ [0]
2243
+ ];
2244
+ n0_registry.registerError(InstanceNameRequiredException$, InstanceNameRequiredException);
2245
+ var InstanceNotRegisteredException$ = [-3, n0, _INREn,
2246
+ { [_e]: _c },
2247
+ [_m],
2248
+ [0]
2249
+ ];
2250
+ n0_registry.registerError(InstanceNotRegisteredException$, InstanceNotRegisteredException);
2251
+ var InvalidAlarmConfigException$ = [-3, n0, _IACE,
2252
+ { [_e]: _c },
2253
+ [_m],
2254
+ [0]
2255
+ ];
2256
+ n0_registry.registerError(InvalidAlarmConfigException$, InvalidAlarmConfigException);
2257
+ var InvalidApplicationNameException$ = [-3, n0, _IANE,
2258
+ { [_e]: _c },
2259
+ [_m],
2260
+ [0]
2261
+ ];
2262
+ n0_registry.registerError(InvalidApplicationNameException$, InvalidApplicationNameException);
2263
+ var InvalidArnException$ = [-3, n0, _IAE,
2264
+ { [_e]: _c },
2265
+ [_m],
2266
+ [0]
2267
+ ];
2268
+ n0_registry.registerError(InvalidArnException$, InvalidArnException);
2269
+ var InvalidAutoRollbackConfigException$ = [-3, n0, _IARCE,
2270
+ { [_e]: _c },
2271
+ [_m],
2272
+ [0]
2273
+ ];
2274
+ n0_registry.registerError(InvalidAutoRollbackConfigException$, InvalidAutoRollbackConfigException);
2275
+ var InvalidAutoScalingGroupException$ = [-3, n0, _IASGE,
2276
+ { [_e]: _c },
2277
+ [_m],
2278
+ [0]
2279
+ ];
2280
+ n0_registry.registerError(InvalidAutoScalingGroupException$, InvalidAutoScalingGroupException);
2281
+ var InvalidBlueGreenDeploymentConfigurationException$ = [-3, n0, _IBGDCE,
2282
+ { [_e]: _c },
2283
+ [_m],
2284
+ [0]
2285
+ ];
2286
+ n0_registry.registerError(InvalidBlueGreenDeploymentConfigurationException$, InvalidBlueGreenDeploymentConfigurationException);
2287
+ var InvalidBucketNameFilterException$ = [-3, n0, _IBNFE,
2288
+ { [_e]: _c },
2289
+ [_m],
2290
+ [0]
2291
+ ];
2292
+ n0_registry.registerError(InvalidBucketNameFilterException$, InvalidBucketNameFilterException);
2293
+ var InvalidComputePlatformException$ = [-3, n0, _ICPE,
2294
+ { [_e]: _c },
2295
+ [_m],
2296
+ [0]
2297
+ ];
2298
+ n0_registry.registerError(InvalidComputePlatformException$, InvalidComputePlatformException);
2299
+ var InvalidDeployedStateFilterException$ = [-3, n0, _IDSFE,
2300
+ { [_e]: _c },
2301
+ [_m],
2302
+ [0]
2303
+ ];
2304
+ n0_registry.registerError(InvalidDeployedStateFilterException$, InvalidDeployedStateFilterException);
2305
+ var InvalidDeploymentConfigNameException$ = [-3, n0, _IDCNE,
2306
+ { [_e]: _c },
2307
+ [_m],
2308
+ [0]
2309
+ ];
2310
+ n0_registry.registerError(InvalidDeploymentConfigNameException$, InvalidDeploymentConfigNameException);
2311
+ var InvalidDeploymentGroupNameException$ = [-3, n0, _IDGNE,
2312
+ { [_e]: _c },
2313
+ [_m],
2314
+ [0]
2315
+ ];
2316
+ n0_registry.registerError(InvalidDeploymentGroupNameException$, InvalidDeploymentGroupNameException);
2317
+ var InvalidDeploymentIdException$ = [-3, n0, _IDIE,
2318
+ { [_e]: _c },
2319
+ [_m],
2320
+ [0]
2321
+ ];
2322
+ n0_registry.registerError(InvalidDeploymentIdException$, InvalidDeploymentIdException);
2323
+ var InvalidDeploymentInstanceTypeException$ = [-3, n0, _IDITE,
2324
+ { [_e]: _c },
2325
+ [_m],
2326
+ [0]
2327
+ ];
2328
+ n0_registry.registerError(InvalidDeploymentInstanceTypeException$, InvalidDeploymentInstanceTypeException);
2329
+ var InvalidDeploymentStatusException$ = [-3, n0, _IDSE,
2330
+ { [_e]: _c },
2331
+ [_m],
2332
+ [0]
2333
+ ];
2334
+ n0_registry.registerError(InvalidDeploymentStatusException$, InvalidDeploymentStatusException);
2335
+ var InvalidDeploymentStyleException$ = [-3, n0, _IDSEn,
2336
+ { [_e]: _c },
2337
+ [_m],
2338
+ [0]
2339
+ ];
2340
+ n0_registry.registerError(InvalidDeploymentStyleException$, InvalidDeploymentStyleException);
2341
+ var InvalidDeploymentTargetIdException$ = [-3, n0, _IDTIE,
2342
+ { [_e]: _c },
2343
+ [_m],
2344
+ [0]
2345
+ ];
2346
+ n0_registry.registerError(InvalidDeploymentTargetIdException$, InvalidDeploymentTargetIdException);
2347
+ var InvalidDeploymentWaitTypeException$ = [-3, n0, _IDWTE,
2348
+ { [_e]: _c },
2349
+ [_m],
2350
+ [0]
2351
+ ];
2352
+ n0_registry.registerError(InvalidDeploymentWaitTypeException$, InvalidDeploymentWaitTypeException);
2353
+ var InvalidEC2TagCombinationException$ = [-3, n0, _IECTCE,
2354
+ { [_e]: _c },
2355
+ [_m],
2356
+ [0]
2357
+ ];
2358
+ n0_registry.registerError(InvalidEC2TagCombinationException$, InvalidEC2TagCombinationException);
2359
+ var InvalidEC2TagException$ = [-3, n0, _IECTE,
2360
+ { [_e]: _c },
2361
+ [_m],
2362
+ [0]
2363
+ ];
2364
+ n0_registry.registerError(InvalidEC2TagException$, InvalidEC2TagException);
2365
+ var InvalidECSServiceException$ = [-3, n0, _IECSSE,
2366
+ { [_e]: _c },
2367
+ [_m],
2368
+ [0]
2369
+ ];
2370
+ n0_registry.registerError(InvalidECSServiceException$, InvalidECSServiceException);
2371
+ var InvalidExternalIdException$ = [-3, n0, _IEIE,
2372
+ { [_e]: _c },
2373
+ [_m],
2374
+ [0]
2375
+ ];
2376
+ n0_registry.registerError(InvalidExternalIdException$, InvalidExternalIdException);
2377
+ var InvalidFileExistsBehaviorException$ = [-3, n0, _IFEBE,
2378
+ { [_e]: _c },
2379
+ [_m],
2380
+ [0]
2381
+ ];
2382
+ n0_registry.registerError(InvalidFileExistsBehaviorException$, InvalidFileExistsBehaviorException);
2383
+ var InvalidGitHubAccountTokenException$ = [-3, n0, _IGHATE,
2384
+ { [_e]: _c },
2385
+ [_m],
2386
+ [0]
2387
+ ];
2388
+ n0_registry.registerError(InvalidGitHubAccountTokenException$, InvalidGitHubAccountTokenException);
2389
+ var InvalidGitHubAccountTokenNameException$ = [-3, n0, _IGHATNE,
2390
+ { [_e]: _c },
2391
+ [_m],
2392
+ [0]
2393
+ ];
2394
+ n0_registry.registerError(InvalidGitHubAccountTokenNameException$, InvalidGitHubAccountTokenNameException);
2395
+ var InvalidIamSessionArnException$ = [-3, n0, _IISAE,
2396
+ { [_e]: _c },
2397
+ [_m],
2398
+ [0]
2399
+ ];
2400
+ n0_registry.registerError(InvalidIamSessionArnException$, InvalidIamSessionArnException);
2401
+ var InvalidIamUserArnException$ = [-3, n0, _IIUAE,
2402
+ { [_e]: _c },
2403
+ [_m],
2404
+ [0]
2405
+ ];
2406
+ n0_registry.registerError(InvalidIamUserArnException$, InvalidIamUserArnException);
2407
+ var InvalidIgnoreApplicationStopFailuresValueException$ = [-3, n0, _IIASFVE,
2408
+ { [_e]: _c },
2409
+ [_m],
2410
+ [0]
2411
+ ];
2412
+ n0_registry.registerError(InvalidIgnoreApplicationStopFailuresValueException$, InvalidIgnoreApplicationStopFailuresValueException);
2413
+ var InvalidInputException$ = [-3, n0, _IIE,
2414
+ { [_e]: _c },
2415
+ [_m],
2416
+ [0]
2417
+ ];
2418
+ n0_registry.registerError(InvalidInputException$, InvalidInputException);
2419
+ var InvalidInstanceNameException$ = [-3, n0, _IINE,
2420
+ { [_e]: _c },
2421
+ [_m],
2422
+ [0]
2423
+ ];
2424
+ n0_registry.registerError(InvalidInstanceNameException$, InvalidInstanceNameException);
2425
+ var InvalidInstanceStatusException$ = [-3, n0, _IISE,
2426
+ { [_e]: _c },
2427
+ [_m],
2428
+ [0]
2429
+ ];
2430
+ n0_registry.registerError(InvalidInstanceStatusException$, InvalidInstanceStatusException);
2431
+ var InvalidInstanceTypeException$ = [-3, n0, _IITE,
2432
+ { [_e]: _c },
2433
+ [_m],
2434
+ [0]
2435
+ ];
2436
+ n0_registry.registerError(InvalidInstanceTypeException$, InvalidInstanceTypeException);
2437
+ var InvalidKeyPrefixFilterException$ = [-3, n0, _IKPFE,
2438
+ { [_e]: _c },
2439
+ [_m],
2440
+ [0]
2441
+ ];
2442
+ n0_registry.registerError(InvalidKeyPrefixFilterException$, InvalidKeyPrefixFilterException);
2443
+ var InvalidLifecycleEventHookExecutionIdException$ = [-3, n0, _ILEHEIE,
2444
+ { [_e]: _c },
2445
+ [_m],
2446
+ [0]
2447
+ ];
2448
+ n0_registry.registerError(InvalidLifecycleEventHookExecutionIdException$, InvalidLifecycleEventHookExecutionIdException);
2449
+ var InvalidLifecycleEventHookExecutionStatusException$ = [-3, n0, _ILEHESE,
2450
+ { [_e]: _c },
2451
+ [_m],
2452
+ [0]
2453
+ ];
2454
+ n0_registry.registerError(InvalidLifecycleEventHookExecutionStatusException$, InvalidLifecycleEventHookExecutionStatusException);
2455
+ var InvalidLoadBalancerInfoException$ = [-3, n0, _ILBIE,
2456
+ { [_e]: _c },
2457
+ [_m],
2458
+ [0]
2459
+ ];
2460
+ n0_registry.registerError(InvalidLoadBalancerInfoException$, InvalidLoadBalancerInfoException);
2461
+ var InvalidMinimumHealthyHostValueException$ = [-3, n0, _IMHHVE,
2462
+ { [_e]: _c },
2463
+ [_m],
2464
+ [0]
2465
+ ];
2466
+ n0_registry.registerError(InvalidMinimumHealthyHostValueException$, InvalidMinimumHealthyHostValueException);
2467
+ var InvalidNextTokenException$ = [-3, n0, _INTE,
2468
+ { [_e]: _c },
2469
+ [_m],
2470
+ [0]
2471
+ ];
2472
+ n0_registry.registerError(InvalidNextTokenException$, InvalidNextTokenException);
2473
+ var InvalidOnPremisesTagCombinationException$ = [-3, n0, _IOPTCE,
2474
+ { [_e]: _c },
2475
+ [_m],
2476
+ [0]
2477
+ ];
2478
+ n0_registry.registerError(InvalidOnPremisesTagCombinationException$, InvalidOnPremisesTagCombinationException);
2479
+ var InvalidOperationException$ = [-3, n0, _IOE,
2480
+ { [_e]: _c },
2481
+ [_m],
2482
+ [0]
2483
+ ];
2484
+ n0_registry.registerError(InvalidOperationException$, InvalidOperationException);
2485
+ var InvalidRegistrationStatusException$ = [-3, n0, _IRSE,
2486
+ { [_e]: _c },
2487
+ [_m],
2488
+ [0]
2489
+ ];
2490
+ n0_registry.registerError(InvalidRegistrationStatusException$, InvalidRegistrationStatusException);
2491
+ var InvalidRevisionException$ = [-3, n0, _IRE,
2492
+ { [_e]: _c },
2493
+ [_m],
2494
+ [0]
2495
+ ];
2496
+ n0_registry.registerError(InvalidRevisionException$, InvalidRevisionException);
2497
+ var InvalidRoleException$ = [-3, n0, _IREn,
2498
+ { [_e]: _c },
2499
+ [_m],
2500
+ [0]
2501
+ ];
2502
+ n0_registry.registerError(InvalidRoleException$, InvalidRoleException);
2503
+ var InvalidSortByException$ = [-3, n0, _ISBE,
2504
+ { [_e]: _c },
2505
+ [_m],
2506
+ [0]
2507
+ ];
2508
+ n0_registry.registerError(InvalidSortByException$, InvalidSortByException);
2509
+ var InvalidSortOrderException$ = [-3, n0, _ISOE,
2510
+ { [_e]: _c },
2511
+ [_m],
2512
+ [0]
2513
+ ];
2514
+ n0_registry.registerError(InvalidSortOrderException$, InvalidSortOrderException);
2515
+ var InvalidTagException$ = [-3, n0, _ITE,
2516
+ { [_e]: _c },
2517
+ [_m],
2518
+ [0]
2519
+ ];
2520
+ n0_registry.registerError(InvalidTagException$, InvalidTagException);
2521
+ var InvalidTagFilterException$ = [-3, n0, _ITFE,
2522
+ { [_e]: _c },
2523
+ [_m],
2524
+ [0]
2525
+ ];
2526
+ n0_registry.registerError(InvalidTagFilterException$, InvalidTagFilterException);
2527
+ var InvalidTagsToAddException$ = [-3, n0, _ITTAE,
2528
+ { [_e]: _c },
2529
+ [_m],
2530
+ [0]
2531
+ ];
2532
+ n0_registry.registerError(InvalidTagsToAddException$, InvalidTagsToAddException);
2533
+ var InvalidTargetFilterNameException$ = [-3, n0, _ITFNE,
2534
+ { [_e]: _c },
2535
+ [_m],
2536
+ [0]
2537
+ ];
2538
+ n0_registry.registerError(InvalidTargetFilterNameException$, InvalidTargetFilterNameException);
2539
+ var InvalidTargetGroupPairException$ = [-3, n0, _ITGPE,
2540
+ { [_e]: _c },
2541
+ [_m],
2542
+ [0]
2543
+ ];
2544
+ n0_registry.registerError(InvalidTargetGroupPairException$, InvalidTargetGroupPairException);
2545
+ var InvalidTargetInstancesException$ = [-3, n0, _ITIE,
2546
+ { [_e]: _c },
2547
+ [_m],
2548
+ [0]
2549
+ ];
2550
+ n0_registry.registerError(InvalidTargetInstancesException$, InvalidTargetInstancesException);
2551
+ var InvalidTimeRangeException$ = [-3, n0, _ITRE,
2552
+ { [_e]: _c },
2553
+ [_m],
2554
+ [0]
2555
+ ];
2556
+ n0_registry.registerError(InvalidTimeRangeException$, InvalidTimeRangeException);
2557
+ var InvalidTrafficRoutingConfigurationException$ = [-3, n0, _ITRCE,
2558
+ { [_e]: _c },
2559
+ [_m],
2560
+ [0]
2561
+ ];
2562
+ n0_registry.registerError(InvalidTrafficRoutingConfigurationException$, InvalidTrafficRoutingConfigurationException);
2563
+ var InvalidTriggerConfigException$ = [-3, n0, _ITCE,
2564
+ { [_e]: _c },
2565
+ [_m],
2566
+ [0]
2567
+ ];
2568
+ n0_registry.registerError(InvalidTriggerConfigException$, InvalidTriggerConfigException);
2569
+ var InvalidUpdateOutdatedInstancesOnlyValueException$ = [-3, n0, _IUOIOVE,
2570
+ { [_e]: _c },
2571
+ [_m],
2572
+ [0]
2573
+ ];
2574
+ n0_registry.registerError(InvalidUpdateOutdatedInstancesOnlyValueException$, InvalidUpdateOutdatedInstancesOnlyValueException);
2575
+ var InvalidZonalDeploymentConfigurationException$ = [-3, n0, _IZDCE,
2576
+ { [_e]: _c },
2577
+ [_m],
2578
+ [0]
2579
+ ];
2580
+ n0_registry.registerError(InvalidZonalDeploymentConfigurationException$, InvalidZonalDeploymentConfigurationException);
2581
+ var LifecycleEventAlreadyCompletedException$ = [-3, n0, _LEACE,
2582
+ { [_e]: _c },
2583
+ [_m],
2584
+ [0]
2585
+ ];
2586
+ n0_registry.registerError(LifecycleEventAlreadyCompletedException$, LifecycleEventAlreadyCompletedException);
2587
+ var LifecycleHookLimitExceededException$ = [-3, n0, _LHLEE,
2588
+ { [_e]: _c },
2589
+ [_m],
2590
+ [0]
2591
+ ];
2592
+ n0_registry.registerError(LifecycleHookLimitExceededException$, LifecycleHookLimitExceededException);
2593
+ var MultipleIamArnsProvidedException$ = [-3, n0, _MIAPE,
2594
+ { [_e]: _c },
2595
+ [_m],
2596
+ [0]
2597
+ ];
2598
+ n0_registry.registerError(MultipleIamArnsProvidedException$, MultipleIamArnsProvidedException);
2599
+ var OperationNotSupportedException$ = [-3, n0, _ONSE,
2600
+ { [_e]: _c },
2601
+ [_m],
2602
+ [0]
2603
+ ];
2604
+ n0_registry.registerError(OperationNotSupportedException$, OperationNotSupportedException);
2605
+ var ResourceArnRequiredException$ = [-3, n0, _RARE,
2606
+ { [_e]: _c },
2607
+ [_m],
2608
+ [0]
2609
+ ];
2610
+ n0_registry.registerError(ResourceArnRequiredException$, ResourceArnRequiredException);
2611
+ var ResourceValidationException$ = [-3, n0, _RVE,
2612
+ { [_e]: _c },
2613
+ [_m],
2614
+ [0]
2615
+ ];
2616
+ n0_registry.registerError(ResourceValidationException$, ResourceValidationException);
2617
+ var RevisionDoesNotExistException$ = [-3, n0, _RDNEE,
2618
+ { [_e]: _c },
2619
+ [_m],
2620
+ [0]
2621
+ ];
2622
+ n0_registry.registerError(RevisionDoesNotExistException$, RevisionDoesNotExistException);
2623
+ var RevisionRequiredException$ = [-3, n0, _RRE,
2624
+ { [_e]: _c },
2625
+ [_m],
2626
+ [0]
2627
+ ];
2628
+ n0_registry.registerError(RevisionRequiredException$, RevisionRequiredException);
2629
+ var RoleRequiredException$ = [-3, n0, _RREo,
2630
+ { [_e]: _c },
2631
+ [_m],
2632
+ [0]
2633
+ ];
2634
+ n0_registry.registerError(RoleRequiredException$, RoleRequiredException);
2635
+ var TagLimitExceededException$ = [-3, n0, _TLEE,
2636
+ { [_e]: _c },
2637
+ [_m],
2638
+ [0]
2639
+ ];
2640
+ n0_registry.registerError(TagLimitExceededException$, TagLimitExceededException);
2641
+ var TagRequiredException$ = [-3, n0, _TRE,
2642
+ { [_e]: _c },
2643
+ [_m],
2644
+ [0]
2645
+ ];
2646
+ n0_registry.registerError(TagRequiredException$, TagRequiredException);
2647
+ var TagSetListLimitExceededException$ = [-3, n0, _TSLLEE,
2648
+ { [_e]: _c },
2649
+ [_m],
2650
+ [0]
2651
+ ];
2652
+ n0_registry.registerError(TagSetListLimitExceededException$, TagSetListLimitExceededException);
2653
+ var ThrottlingException$ = [-3, n0, _TE,
2654
+ { [_e]: _c },
2655
+ [_m],
2656
+ [0]
2657
+ ];
2658
+ n0_registry.registerError(ThrottlingException$, ThrottlingException);
2659
+ var TriggerTargetsLimitExceededException$ = [-3, n0, _TTLEE,
2660
+ { [_e]: _c },
2661
+ [_m],
2662
+ [0]
2663
+ ];
2664
+ n0_registry.registerError(TriggerTargetsLimitExceededException$, TriggerTargetsLimitExceededException);
2665
+ var UnsupportedActionForDeploymentTypeException$ = [-3, n0, _UAFDTE,
2666
+ { [_e]: _c },
2667
+ [_m],
2668
+ [0]
2669
+ ];
2670
+ n0_registry.registerError(UnsupportedActionForDeploymentTypeException$, UnsupportedActionForDeploymentTypeException);
2671
+ const errorTypeRegistries = [
2672
+ _s_registry,
2673
+ n0_registry,
2674
+ ];
2675
+ var AddTagsToOnPremisesInstancesInput$ = [3, n0, _ATTOPII,
2676
+ 0,
2677
+ [_t, _iN],
2678
+ [() => TagList, 64 | 0], 2
2679
+ ];
2680
+ var Alarm$ = [3, n0, _A,
2681
+ 0,
2682
+ [_n],
2683
+ [0]
2684
+ ];
2685
+ var AlarmConfiguration$ = [3, n0, _AC,
2686
+ 0,
2687
+ [_en, _iPAF, _a],
2688
+ [2, 2, () => AlarmList]
2689
+ ];
2690
+ var ApplicationInfo$ = [3, n0, _AI,
2691
+ 0,
2692
+ [_aI, _aN, _cT, _lTGH, _gHAN, _cP],
2693
+ [0, 0, 4, 2, 0, 0]
2694
+ ];
2695
+ var AppSpecContent$ = [3, n0, _ASC,
2696
+ 0,
2697
+ [_co, _sh],
2698
+ [0, 0]
2699
+ ];
2700
+ var AutoRollbackConfiguration$ = [3, n0, _ARC,
2701
+ 0,
2702
+ [_en, _ev],
2703
+ [2, 64 | 0]
2704
+ ];
2705
+ var AutoScalingGroup$ = [3, n0, _ASG,
2706
+ 0,
2707
+ [_n, _h, _tH],
2708
+ [0, 0, 0]
2709
+ ];
2710
+ var BatchGetApplicationRevisionsInput$ = [3, n0, _BGARI,
2711
+ 0,
2712
+ [_aN, _r],
2713
+ [0, () => RevisionLocationList], 2
2714
+ ];
2715
+ var BatchGetApplicationRevisionsOutput$ = [3, n0, _BGARO,
2716
+ 0,
2717
+ [_aN, _eM, _r],
2718
+ [0, 0, () => RevisionInfoList]
2719
+ ];
2720
+ var BatchGetApplicationsInput$ = [3, n0, _BGAI,
2721
+ 0,
2722
+ [_aNp],
2723
+ [64 | 0], 1
2724
+ ];
2725
+ var BatchGetApplicationsOutput$ = [3, n0, _BGAO,
2726
+ 0,
2727
+ [_aIp],
2728
+ [() => ApplicationsInfoList]
2729
+ ];
2730
+ var BatchGetDeploymentGroupsInput$ = [3, n0, _BGDGI,
2731
+ 0,
2732
+ [_aN, _dGN],
2733
+ [0, 64 | 0], 2
2734
+ ];
2735
+ var BatchGetDeploymentGroupsOutput$ = [3, n0, _BGDGO,
2736
+ 0,
2737
+ [_dGI, _eM],
2738
+ [() => DeploymentGroupInfoList, 0]
2739
+ ];
2740
+ var BatchGetDeploymentInstancesInput$ = [3, n0, _BGDII,
2741
+ 0,
2742
+ [_dI, _iI],
2743
+ [0, 64 | 0], 2
2744
+ ];
2745
+ var BatchGetDeploymentInstancesOutput$ = [3, n0, _BGDIO,
2746
+ 0,
2747
+ [_iS, _eM],
2748
+ [() => InstanceSummaryList, 0]
2749
+ ];
2750
+ var BatchGetDeploymentsInput$ = [3, n0, _BGDI,
2751
+ 0,
2752
+ [_dIe],
2753
+ [64 | 0], 1
2754
+ ];
2755
+ var BatchGetDeploymentsOutput$ = [3, n0, _BGDO,
2756
+ 0,
2757
+ [_dIep],
2758
+ [() => DeploymentsInfoList]
2759
+ ];
2760
+ var BatchGetDeploymentTargetsInput$ = [3, n0, _BGDTI,
2761
+ 0,
2762
+ [_dI, _tI],
2763
+ [0, 64 | 0], 2
2764
+ ];
2765
+ var BatchGetDeploymentTargetsOutput$ = [3, n0, _BGDTO,
2766
+ 0,
2767
+ [_dT],
2768
+ [() => DeploymentTargetList]
2769
+ ];
2770
+ var BatchGetOnPremisesInstancesInput$ = [3, n0, _BGOPII,
2771
+ 0,
2772
+ [_iN],
2773
+ [64 | 0], 1
2774
+ ];
2775
+ var BatchGetOnPremisesInstancesOutput$ = [3, n0, _BGOPIO,
2776
+ 0,
2777
+ [_iIn],
2778
+ [() => InstanceInfoList]
2779
+ ];
2780
+ var BlueGreenDeploymentConfiguration$ = [3, n0, _BGDC,
2781
+ 0,
2782
+ [_tBIODS, _dRO, _gFPO],
2783
+ [() => BlueInstanceTerminationOption$, () => DeploymentReadyOption$, () => GreenFleetProvisioningOption$]
2784
+ ];
2785
+ var BlueInstanceTerminationOption$ = [3, n0, _BITO,
2786
+ 0,
2787
+ [_ac, _tWTIM],
2788
+ [0, 1]
2789
+ ];
2790
+ var CloudFormationTarget$ = [3, n0, _CFT,
2791
+ 0,
2792
+ [_dI, _tIa, _lUA, _lE, _st, _rT, _tVW],
2793
+ [0, 0, 4, () => LifecycleEventList, 0, 0, 1]
2794
+ ];
2795
+ var ContinueDeploymentInput$ = [3, n0, _CDI,
2796
+ 0,
2797
+ [_dI, _dWT],
2798
+ [0, 0]
2799
+ ];
2800
+ var CreateApplicationInput$ = [3, n0, _CAI,
2801
+ 0,
2802
+ [_aN, _cP, _t],
2803
+ [0, 0, () => TagList], 1
2804
+ ];
2805
+ var CreateApplicationOutput$ = [3, n0, _CAO,
2806
+ 0,
2807
+ [_aI],
2808
+ [0]
2809
+ ];
2810
+ var CreateDeploymentConfigInput$ = [3, n0, _CDCI,
2811
+ 0,
2812
+ [_dCN, _mHH, _tRC, _cP, _zC],
2813
+ [0, () => MinimumHealthyHosts$, () => TrafficRoutingConfig$, 0, () => ZonalConfig$], 1
2814
+ ];
2815
+ var CreateDeploymentConfigOutput$ = [3, n0, _CDCO,
2816
+ 0,
2817
+ [_dCI],
2818
+ [0]
2819
+ ];
2820
+ var CreateDeploymentGroupInput$ = [3, n0, _CDGI,
2821
+ 0,
2822
+ [_aN, _dGNe, _sRA, _dCN, _eTF, _oPITF, _aSG, _tC, _aC, _aRC, _oIS, _dS, _bGDC, _lBI, _eTS, _eS, _oPTS, _t, _tHE],
2823
+ [0, 0, 0, 0, () => EC2TagFilterList, () => TagFilterList, 64 | 0, () => TriggerConfigList, () => AlarmConfiguration$, () => AutoRollbackConfiguration$, 0, () => DeploymentStyle$, () => BlueGreenDeploymentConfiguration$, () => LoadBalancerInfo$, () => EC2TagSet$, () => ECSServiceList, () => OnPremisesTagSet$, () => TagList, 2], 3
2824
+ ];
2825
+ var CreateDeploymentGroupOutput$ = [3, n0, _CDGO,
2826
+ 0,
2827
+ [_dGIe],
2828
+ [0]
2829
+ ];
2830
+ var CreateDeploymentInput$ = [3, n0, _CDIr,
2831
+ 0,
2832
+ [_aN, _dGNe, _re, _dCN, _d, _iASF, _tIar, _aRC, _uOIO, _fEB, _oAC],
2833
+ [0, 0, () => RevisionLocation$, 0, 0, 2, () => TargetInstances$, () => AutoRollbackConfiguration$, 2, 0, () => AlarmConfiguration$], 1
2834
+ ];
2835
+ var CreateDeploymentOutput$ = [3, n0, _CDO,
2836
+ 0,
2837
+ [_dI],
2838
+ [0]
2839
+ ];
2840
+ var DeleteApplicationInput$ = [3, n0, _DAI,
2841
+ 0,
2842
+ [_aN],
2843
+ [0], 1
2844
+ ];
2845
+ var DeleteDeploymentConfigInput$ = [3, n0, _DDCI,
2846
+ 0,
2847
+ [_dCN],
2848
+ [0], 1
2849
+ ];
2850
+ var DeleteDeploymentGroupInput$ = [3, n0, _DDGI,
2851
+ 0,
2852
+ [_aN, _dGNe],
2853
+ [0, 0], 2
2854
+ ];
2855
+ var DeleteDeploymentGroupOutput$ = [3, n0, _DDGO,
2856
+ 0,
2857
+ [_hNCU],
2858
+ [() => AutoScalingGroupList]
2859
+ ];
2860
+ var DeleteGitHubAccountTokenInput$ = [3, n0, _DGHATI,
2861
+ 0,
2862
+ [_tN],
2863
+ [0]
2864
+ ];
2865
+ var DeleteGitHubAccountTokenOutput$ = [3, n0, _DGHATO,
2866
+ 0,
2867
+ [_tN],
2868
+ [0]
2869
+ ];
2870
+ var DeleteResourcesByExternalIdInput$ = [3, n0, _DRBEII,
2871
+ 0,
2872
+ [_eI],
2873
+ [0]
2874
+ ];
2875
+ var DeleteResourcesByExternalIdOutput$ = [3, n0, _DRBEIO,
2876
+ 0,
2877
+ [],
2878
+ []
2879
+ ];
2880
+ var DeploymentConfigInfo$ = [3, n0, _DCI,
2881
+ 0,
2882
+ [_dCI, _dCN, _mHH, _cT, _cP, _tRC, _zC],
2883
+ [0, 0, () => MinimumHealthyHosts$, 4, 0, () => TrafficRoutingConfig$, () => ZonalConfig$]
2884
+ ];
2885
+ var DeploymentGroupInfo$ = [3, n0, _DGI,
2886
+ 0,
2887
+ [_aN, _dGIe, _dGNe, _dCN, _eTF, _oPITF, _aSG, _sRA, _tR, _tC, _aC, _aRC, _dS, _oIS, _bGDC, _lBI, _lSD, _lAD, _eTS, _oPTS, _cP, _eS, _tHE],
2888
+ [0, 0, 0, 0, () => EC2TagFilterList, () => TagFilterList, () => AutoScalingGroupList, 0, () => RevisionLocation$, () => TriggerConfigList, () => AlarmConfiguration$, () => AutoRollbackConfiguration$, () => DeploymentStyle$, 0, () => BlueGreenDeploymentConfiguration$, () => LoadBalancerInfo$, () => LastDeploymentInfo$, () => LastDeploymentInfo$, () => EC2TagSet$, () => OnPremisesTagSet$, 0, () => ECSServiceList, 2]
2889
+ ];
2890
+ var DeploymentInfo$ = [3, n0, _DI,
2891
+ 0,
2892
+ [_aN, _dGNe, _dCN, _dI, _pR, _re, _st, _eIr, _cT, _sT, _cTo, _dO, _d, _cr, _iASF, _aRC, _uOIO, _rI, _dS, _tIar, _iTWTS, _bGDC, _lBI, _aDSI, _fEB, _dSM, _cP, _eI, _rD, _oAC],
2893
+ [0, 0, 0, 0, () => RevisionLocation$, () => RevisionLocation$, 0, () => ErrorInformation$, 4, 4, 4, () => DeploymentOverview$, 0, 0, 2, () => AutoRollbackConfiguration$, 2, () => RollbackInfo$, () => DeploymentStyle$, () => TargetInstances$, 2, () => BlueGreenDeploymentConfiguration$, () => LoadBalancerInfo$, 0, 0, 64 | 0, 0, 0, () => RelatedDeployments$, () => AlarmConfiguration$]
2894
+ ];
2895
+ var DeploymentOverview$ = [3, n0, _DO,
2896
+ 0,
2897
+ [_P, _IP, _S, _F, _Sk, _R],
2898
+ [1, 1, 1, 1, 1, 1]
2899
+ ];
2900
+ var DeploymentReadyOption$ = [3, n0, _DRO,
2901
+ 0,
2902
+ [_aOT, _wTIM],
2903
+ [0, 1]
2904
+ ];
2905
+ var DeploymentStyle$ = [3, n0, _DS,
2906
+ 0,
2907
+ [_dTe, _dOe],
2908
+ [0, 0]
2909
+ ];
2910
+ var DeploymentTarget$ = [3, n0, _DT,
2911
+ 0,
2912
+ [_dTT, _iT, _lT, _eT, _cFT],
2913
+ [0, () => InstanceTarget$, () => LambdaTarget$, () => ECSTarget$, () => CloudFormationTarget$]
2914
+ ];
2915
+ var DeregisterOnPremisesInstanceInput$ = [3, n0, _DOPII,
2916
+ 0,
2917
+ [_iNn],
2918
+ [0], 1
2919
+ ];
2920
+ var Diagnostics$ = [3, n0, _D,
2921
+ 0,
2922
+ [_eC, _sN, _m, _lTo],
2923
+ [0, 0, 0, 0]
2924
+ ];
2925
+ var EC2TagFilter$ = [3, n0, _ECTF,
2926
+ 0,
2927
+ [_K, _V, _T],
2928
+ [0, 0, 0]
2929
+ ];
2930
+ var EC2TagSet$ = [3, n0, _ECTS,
2931
+ 0,
2932
+ [_eTSL],
2933
+ [() => EC2TagSetList]
2934
+ ];
2935
+ var ECSService$ = [3, n0, _ECSS,
2936
+ 0,
2937
+ [_sNe, _cN],
2938
+ [0, 0]
2939
+ ];
2940
+ var ECSTarget$ = [3, n0, _ECST,
2941
+ 0,
2942
+ [_dI, _tIa, _tA, _lUA, _lE, _st, _tSI],
2943
+ [0, 0, 0, 4, () => LifecycleEventList, 0, () => ECSTaskSetList]
2944
+ ];
2945
+ var ECSTaskSet$ = [3, n0, _ECSTS,
2946
+ 0,
2947
+ [_i, _dC, _pC, _rC, _st, _tW, _tG, _tSL],
2948
+ [0, 1, 1, 1, 0, 1, () => TargetGroupInfo$, 0]
2949
+ ];
2950
+ var ELBInfo$ = [3, n0, _ELBI,
2951
+ 0,
2952
+ [_n],
2953
+ [0]
2954
+ ];
2955
+ var ErrorInformation$ = [3, n0, _EI,
2956
+ 0,
2957
+ [_cod, _m],
2958
+ [0, 0]
2959
+ ];
2960
+ var GenericRevisionInfo$ = [3, n0, _GRI,
2961
+ 0,
2962
+ [_d, _dG, _fUT, _lUT, _rTe],
2963
+ [0, 64 | 0, 4, 4, 4]
2964
+ ];
2965
+ var GetApplicationInput$ = [3, n0, _GAI,
2966
+ 0,
2967
+ [_aN],
2968
+ [0], 1
2969
+ ];
2970
+ var GetApplicationOutput$ = [3, n0, _GAO,
2971
+ 0,
2972
+ [_ap],
2973
+ [() => ApplicationInfo$]
2974
+ ];
2975
+ var GetApplicationRevisionInput$ = [3, n0, _GARI,
2976
+ 0,
2977
+ [_aN, _re],
2978
+ [0, () => RevisionLocation$], 2
2979
+ ];
2980
+ var GetApplicationRevisionOutput$ = [3, n0, _GARO,
2981
+ 0,
2982
+ [_aN, _re, _rIe],
2983
+ [0, () => RevisionLocation$, () => GenericRevisionInfo$]
2984
+ ];
2985
+ var GetDeploymentConfigInput$ = [3, n0, _GDCI,
2986
+ 0,
2987
+ [_dCN],
2988
+ [0], 1
2989
+ ];
2990
+ var GetDeploymentConfigOutput$ = [3, n0, _GDCO,
2991
+ 0,
2992
+ [_dCIe],
2993
+ [() => DeploymentConfigInfo$]
2994
+ ];
2995
+ var GetDeploymentGroupInput$ = [3, n0, _GDGI,
2996
+ 0,
2997
+ [_aN, _dGNe],
2998
+ [0, 0], 2
2999
+ ];
3000
+ var GetDeploymentGroupOutput$ = [3, n0, _GDGO,
3001
+ 0,
3002
+ [_dGIep],
3003
+ [() => DeploymentGroupInfo$]
3004
+ ];
3005
+ var GetDeploymentInput$ = [3, n0, _GDI,
3006
+ 0,
3007
+ [_dI],
3008
+ [0], 1
3009
+ ];
3010
+ var GetDeploymentInstanceInput$ = [3, n0, _GDII,
3011
+ 0,
3012
+ [_dI, _iIns],
3013
+ [0, 0], 2
3014
+ ];
3015
+ var GetDeploymentInstanceOutput$ = [3, n0, _GDIO,
3016
+ 0,
3017
+ [_iSn],
3018
+ [() => InstanceSummary$]
3019
+ ];
3020
+ var GetDeploymentOutput$ = [3, n0, _GDO,
3021
+ 0,
3022
+ [_dIepl],
3023
+ [() => DeploymentInfo$]
3024
+ ];
3025
+ var GetDeploymentTargetInput$ = [3, n0, _GDTI,
3026
+ 0,
3027
+ [_dI, _tIa],
3028
+ [0, 0], 2
3029
+ ];
3030
+ var GetDeploymentTargetOutput$ = [3, n0, _GDTO,
3031
+ 0,
3032
+ [_dTep],
3033
+ [() => DeploymentTarget$]
3034
+ ];
3035
+ var GetOnPremisesInstanceInput$ = [3, n0, _GOPII,
3036
+ 0,
3037
+ [_iNn],
3038
+ [0], 1
3039
+ ];
3040
+ var GetOnPremisesInstanceOutput$ = [3, n0, _GOPIO,
3041
+ 0,
3042
+ [_iInst],
3043
+ [() => InstanceInfo$]
3044
+ ];
3045
+ var GitHubLocation$ = [3, n0, _GHL,
3046
+ 0,
3047
+ [_rep, _cI],
3048
+ [0, 0]
3049
+ ];
3050
+ var GreenFleetProvisioningOption$ = [3, n0, _GFPO,
3051
+ 0,
3052
+ [_ac],
3053
+ [0]
3054
+ ];
3055
+ var InstanceInfo$ = [3, n0, _II,
3056
+ 0,
3057
+ [_iNn, _iSA, _iUA, _iA, _rTe, _dTer, _t],
3058
+ [0, 0, 0, 0, 4, 4, () => TagList]
3059
+ ];
3060
+ var InstanceSummary$ = [3, n0, _IS,
3061
+ 0,
3062
+ [_dI, _iIns, _st, _lUA, _lE, _iTn],
3063
+ [0, 0, 0, 4, () => LifecycleEventList, 0]
3064
+ ];
3065
+ var InstanceTarget$ = [3, n0, _IT,
3066
+ 0,
3067
+ [_dI, _tIa, _tA, _st, _lUA, _lE, _iL],
3068
+ [0, 0, 0, 0, 4, () => LifecycleEventList, 0]
3069
+ ];
3070
+ var LambdaFunctionInfo$ = [3, n0, _LFI,
3071
+ 0,
3072
+ [_fN, _fA, _cV, _tV, _tVW],
3073
+ [0, 0, 0, 0, 1]
3074
+ ];
3075
+ var LambdaTarget$ = [3, n0, _LT,
3076
+ 0,
3077
+ [_dI, _tIa, _tA, _st, _lUA, _lE, _lFI],
3078
+ [0, 0, 0, 0, 4, () => LifecycleEventList, () => LambdaFunctionInfo$]
3079
+ ];
3080
+ var LastDeploymentInfo$ = [3, n0, _LDI,
3081
+ 0,
3082
+ [_dI, _st, _eTn, _cT],
3083
+ [0, 0, 4, 4]
3084
+ ];
3085
+ var LifecycleEvent$ = [3, n0, _LE,
3086
+ 0,
3087
+ [_lEN, _di, _sT, _eTn, _st],
3088
+ [0, () => Diagnostics$, 4, 4, 0]
3089
+ ];
3090
+ var ListApplicationRevisionsInput$ = [3, n0, _LARI,
3091
+ 0,
3092
+ [_aN, _sB, _sO, _sBu, _sKP, _de, _nT],
3093
+ [0, 0, 0, 0, 0, 0, 0], 1
3094
+ ];
3095
+ var ListApplicationRevisionsOutput$ = [3, n0, _LARO,
3096
+ 0,
3097
+ [_r, _nT],
3098
+ [() => RevisionLocationList, 0]
3099
+ ];
3100
+ var ListApplicationsInput$ = [3, n0, _LAI,
3101
+ 0,
3102
+ [_nT],
3103
+ [0]
3104
+ ];
3105
+ var ListApplicationsOutput$ = [3, n0, _LAO,
3106
+ 0,
3107
+ [_app, _nT],
3108
+ [64 | 0, 0]
3109
+ ];
3110
+ var ListDeploymentConfigsInput$ = [3, n0, _LDCI,
3111
+ 0,
3112
+ [_nT],
3113
+ [0]
3114
+ ];
3115
+ var ListDeploymentConfigsOutput$ = [3, n0, _LDCO,
3116
+ 0,
3117
+ [_dCL, _nT],
3118
+ [64 | 0, 0]
3119
+ ];
3120
+ var ListDeploymentGroupsInput$ = [3, n0, _LDGI,
3121
+ 0,
3122
+ [_aN, _nT],
3123
+ [0, 0], 1
3124
+ ];
3125
+ var ListDeploymentGroupsOutput$ = [3, n0, _LDGO,
3126
+ 0,
3127
+ [_aN, _dG, _nT],
3128
+ [0, 64 | 0, 0]
3129
+ ];
3130
+ var ListDeploymentInstancesInput$ = [3, n0, _LDII,
3131
+ 0,
3132
+ [_dI, _nT, _iSF, _iTF],
3133
+ [0, 0, 64 | 0, 64 | 0], 1
3134
+ ];
3135
+ var ListDeploymentInstancesOutput$ = [3, n0, _LDIO,
3136
+ 0,
3137
+ [_iLn, _nT],
3138
+ [64 | 0, 0]
3139
+ ];
3140
+ var ListDeploymentsInput$ = [3, n0, _LDIi,
3141
+ 0,
3142
+ [_aN, _dGNe, _eI, _iOS, _cTR, _nT],
3143
+ [0, 0, 0, 64 | 0, () => TimeRange$, 0]
3144
+ ];
3145
+ var ListDeploymentsOutput$ = [3, n0, _LDO,
3146
+ 0,
3147
+ [_dep, _nT],
3148
+ [64 | 0, 0]
3149
+ ];
3150
+ var ListDeploymentTargetsInput$ = [3, n0, _LDTI,
3151
+ 0,
3152
+ [_dI, _nT, _tF],
3153
+ [0, 0, [2, n0, _TF, 0, 0, 64 | 0]], 1
3154
+ ];
3155
+ var ListDeploymentTargetsOutput$ = [3, n0, _LDTO,
3156
+ 0,
3157
+ [_tI, _nT],
3158
+ [64 | 0, 0]
3159
+ ];
3160
+ var ListGitHubAccountTokenNamesInput$ = [3, n0, _LGHATNI,
3161
+ 0,
3162
+ [_nT],
3163
+ [0]
3164
+ ];
3165
+ var ListGitHubAccountTokenNamesOutput$ = [3, n0, _LGHATNO,
3166
+ 0,
3167
+ [_tNL, _nT],
3168
+ [64 | 0, 0]
3169
+ ];
3170
+ var ListOnPremisesInstancesInput$ = [3, n0, _LOPII,
3171
+ 0,
3172
+ [_rS, _tFa, _nT],
3173
+ [0, () => TagFilterList, 0]
3174
+ ];
3175
+ var ListOnPremisesInstancesOutput$ = [3, n0, _LOPIO,
3176
+ 0,
3177
+ [_iN, _nT],
3178
+ [64 | 0, 0]
3179
+ ];
3180
+ var ListTagsForResourceInput$ = [3, n0, _LTFRI,
3181
+ 0,
3182
+ [_RA, _NT],
3183
+ [0, 0], 1
3184
+ ];
3185
+ var ListTagsForResourceOutput$ = [3, n0, _LTFRO,
3186
+ 0,
3187
+ [_Ta, _NT],
3188
+ [() => TagList, 0]
3189
+ ];
3190
+ var LoadBalancerInfo$ = [3, n0, _LBI,
3191
+ 0,
3192
+ [_eIL, _tGIL, _tGPIL],
3193
+ [() => ELBInfoList, () => TargetGroupInfoList, () => TargetGroupPairInfoList]
3194
+ ];
3195
+ var MinimumHealthyHosts$ = [3, n0, _MHH,
3196
+ 0,
3197
+ [_ty, _v],
3198
+ [0, 1]
3199
+ ];
3200
+ var MinimumHealthyHostsPerZone$ = [3, n0, _MHHPZ,
3201
+ 0,
3202
+ [_ty, _v],
3203
+ [0, 1]
3204
+ ];
3205
+ var OnPremisesTagSet$ = [3, n0, _OPTS,
3206
+ 0,
3207
+ [_oPTSL],
3208
+ [() => OnPremisesTagSetList]
3209
+ ];
3210
+ var PutLifecycleEventHookExecutionStatusInput$ = [3, n0, _PLEHESI,
3211
+ 0,
3212
+ [_dI, _lEHEI, _st],
3213
+ [0, 0, 0]
3214
+ ];
3215
+ var PutLifecycleEventHookExecutionStatusOutput$ = [3, n0, _PLEHESO,
3216
+ 0,
3217
+ [_lEHEI],
3218
+ [0]
3219
+ ];
3220
+ var RawString$ = [3, n0, _RS,
3221
+ 0,
3222
+ [_co, _sh],
3223
+ [0, 0]
3224
+ ];
3225
+ var RegisterApplicationRevisionInput$ = [3, n0, _RARI,
3226
+ 0,
3227
+ [_aN, _re, _d],
3228
+ [0, () => RevisionLocation$, 0], 2
3229
+ ];
3230
+ var RegisterOnPremisesInstanceInput$ = [3, n0, _ROPII,
3231
+ 0,
3232
+ [_iNn, _iSA, _iUA],
3233
+ [0, 0, 0], 1
3234
+ ];
3235
+ var RelatedDeployments$ = [3, n0, _RD,
3236
+ 0,
3237
+ [_aUOIRDI, _aUOIDI],
3238
+ [0, 64 | 0]
3239
+ ];
3240
+ var RemoveTagsFromOnPremisesInstancesInput$ = [3, n0, _RTFOPII,
3241
+ 0,
3242
+ [_t, _iN],
3243
+ [() => TagList, 64 | 0], 2
3244
+ ];
3245
+ var RevisionInfo$ = [3, n0, _RI,
3246
+ 0,
3247
+ [_rL, _gRI],
3248
+ [() => RevisionLocation$, () => GenericRevisionInfo$]
3249
+ ];
3250
+ var RevisionLocation$ = [3, n0, _RL,
3251
+ 0,
3252
+ [_rTev, _sL, _gHL, _str, _aSC],
3253
+ [0, () => S3Location$, () => GitHubLocation$, () => RawString$, () => AppSpecContent$]
3254
+ ];
3255
+ var RollbackInfo$ = [3, n0, _RIo,
3256
+ 0,
3257
+ [_rDI, _rTDI, _rM],
3258
+ [0, 0, 0]
3259
+ ];
3260
+ var S3Location$ = [3, n0, _SL,
3261
+ 0,
3262
+ [_b, _k, _bT, _ve, _eTa],
3263
+ [0, 0, 0, 0, 0]
3264
+ ];
3265
+ var SkipWaitTimeForInstanceTerminationInput$ = [3, n0, _SWTFITI,
3266
+ 0,
3267
+ [_dI],
3268
+ [0]
3269
+ ];
3270
+ var StopDeploymentInput$ = [3, n0, _SDI,
3271
+ 0,
3272
+ [_dI, _aRE],
3273
+ [0, 2], 1
3274
+ ];
3275
+ var StopDeploymentOutput$ = [3, n0, _SDO,
3276
+ 0,
3277
+ [_st, _sM],
3278
+ [0, 0]
3279
+ ];
3280
+ var Tag$ = [3, n0, _Tag,
3281
+ 0,
3282
+ [_K, _V],
3283
+ [0, 0]
3284
+ ];
3285
+ var TagFilter$ = [3, n0, _TFa,
3286
+ 0,
3287
+ [_K, _V, _T],
3288
+ [0, 0, 0]
3289
+ ];
3290
+ var TagResourceInput$ = [3, n0, _TRI,
3291
+ 0,
3292
+ [_RA, _Ta],
3293
+ [0, () => TagList], 2
3294
+ ];
3295
+ var TagResourceOutput$ = [3, n0, _TRO,
3296
+ 0,
3297
+ [],
3298
+ []
3299
+ ];
3300
+ var TargetGroupInfo$ = [3, n0, _TGI,
3301
+ 0,
3302
+ [_n],
3303
+ [0]
3304
+ ];
3305
+ var TargetGroupPairInfo$ = [3, n0, _TGPI,
3306
+ 0,
3307
+ [_tGa, _pTR, _tTR],
3308
+ [() => TargetGroupInfoList, () => TrafficRoute$, () => TrafficRoute$]
3309
+ ];
3310
+ var TargetInstances$ = [3, n0, _TI,
3311
+ 0,
3312
+ [_tFa, _aSG, _eTS],
3313
+ [() => EC2TagFilterList, 64 | 0, () => EC2TagSet$]
3314
+ ];
3315
+ var TimeBasedCanary$ = [3, n0, _TBC,
3316
+ 0,
3317
+ [_cPa, _cIa],
3318
+ [1, 1]
3319
+ ];
3320
+ var TimeBasedLinear$ = [3, n0, _TBL,
3321
+ 0,
3322
+ [_lP, _lI],
3323
+ [1, 1]
3324
+ ];
3325
+ var TimeRange$ = [3, n0, _TR,
3326
+ 0,
3327
+ [_sta, _end],
3328
+ [4, 4]
3329
+ ];
3330
+ var TrafficRoute$ = [3, n0, _TRr,
3331
+ 0,
3332
+ [_lA],
3333
+ [64 | 0]
3334
+ ];
3335
+ var TrafficRoutingConfig$ = [3, n0, _TRC,
3336
+ 0,
3337
+ [_ty, _tBC, _tBL],
3338
+ [0, () => TimeBasedCanary$, () => TimeBasedLinear$]
3339
+ ];
3340
+ var TriggerConfig$ = [3, n0, _TC,
3341
+ 0,
3342
+ [_tNr, _tTA, _tE],
3343
+ [0, 0, 64 | 0]
3344
+ ];
3345
+ var UntagResourceInput$ = [3, n0, _URI,
3346
+ 0,
3347
+ [_RA, _TK],
3348
+ [0, 64 | 0], 2
3349
+ ];
3350
+ var UntagResourceOutput$ = [3, n0, _URO,
3351
+ 0,
3352
+ [],
3353
+ []
3354
+ ];
3355
+ var UpdateApplicationInput$ = [3, n0, _UAI,
3356
+ 0,
3357
+ [_aN, _nAN],
3358
+ [0, 0]
3359
+ ];
3360
+ var UpdateDeploymentGroupInput$ = [3, n0, _UDGI,
3361
+ 0,
3362
+ [_aN, _cDGN, _nDGN, _dCN, _eTF, _oPITF, _aSG, _sRA, _tC, _aC, _aRC, _oIS, _dS, _bGDC, _lBI, _eTS, _eS, _oPTS, _tHE],
3363
+ [0, 0, 0, 0, () => EC2TagFilterList, () => TagFilterList, 64 | 0, 0, () => TriggerConfigList, () => AlarmConfiguration$, () => AutoRollbackConfiguration$, 0, () => DeploymentStyle$, () => BlueGreenDeploymentConfiguration$, () => LoadBalancerInfo$, () => EC2TagSet$, () => ECSServiceList, () => OnPremisesTagSet$, 2], 2
3364
+ ];
3365
+ var UpdateDeploymentGroupOutput$ = [3, n0, _UDGO,
3366
+ 0,
3367
+ [_hNCU],
3368
+ [() => AutoScalingGroupList]
3369
+ ];
3370
+ var ZonalConfig$ = [3, n0, _ZC,
3371
+ 0,
3372
+ [_fZMDIS, _mDIS, _mHHPZ],
3373
+ [1, 1, () => MinimumHealthyHostsPerZone$]
3374
+ ];
3375
+ var __Unit = "unit";
3376
+ var AlarmList = [1, n0, _AL,
3377
+ 0, () => Alarm$
3378
+ ];
3379
+ var ApplicationsInfoList = [1, n0, _AIL,
3380
+ 0, () => ApplicationInfo$
3381
+ ];
3382
+ var AutoScalingGroupList = [1, n0, _ASGL,
3383
+ 0, () => AutoScalingGroup$
3384
+ ];
3385
+ var DeploymentGroupInfoList = [1, n0, _DGIL,
3386
+ 0, () => DeploymentGroupInfo$
3387
+ ];
3388
+ var DeploymentsInfoList = [1, n0, _DIL,
3389
+ 0, () => DeploymentInfo$
3390
+ ];
3391
+ var DeploymentTargetList = [1, n0, _DTL,
3392
+ 0, () => DeploymentTarget$
3393
+ ];
3394
+ var EC2TagFilterList = [1, n0, _ECTFL,
3395
+ 0, () => EC2TagFilter$
3396
+ ];
3397
+ var EC2TagSetList = [1, n0, _ECTSL,
3398
+ 0, () => EC2TagFilterList
3399
+ ];
3400
+ var ECSServiceList = [1, n0, _ECSSL,
3401
+ 0, () => ECSService$
3402
+ ];
3403
+ var ECSTaskSetList = [1, n0, _ECSTSL,
3404
+ 0, () => ECSTaskSet$
3405
+ ];
3406
+ var ELBInfoList = [1, n0, _ELBIL,
3407
+ 0, () => ELBInfo$
3408
+ ];
3409
+ var InstanceInfoList = [1, n0, _IIL,
3410
+ 0, () => InstanceInfo$
3411
+ ];
3412
+ var InstanceSummaryList = [1, n0, _ISL,
3413
+ 0, () => InstanceSummary$
3414
+ ];
3415
+ var LifecycleEventList = [1, n0, _LEL,
3416
+ 0, () => LifecycleEvent$
3417
+ ];
3418
+ var OnPremisesTagSetList = [1, n0, _OPTSL,
3419
+ 0, () => TagFilterList
3420
+ ];
3421
+ var RevisionInfoList = [1, n0, _RIL,
3422
+ 0, () => RevisionInfo$
3423
+ ];
3424
+ var RevisionLocationList = [1, n0, _RLL,
3425
+ 0, () => RevisionLocation$
3426
+ ];
3427
+ var TagFilterList = [1, n0, _TFL,
3428
+ 0, () => TagFilter$
3429
+ ];
3430
+ var TagList = [1, n0, _TL,
3431
+ 0, () => Tag$
3432
+ ];
3433
+ var TargetGroupInfoList = [1, n0, _TGIL,
3434
+ 0, () => TargetGroupInfo$
3435
+ ];
3436
+ var TargetGroupPairInfoList = [1, n0, _TGPIL,
3437
+ 0, () => TargetGroupPairInfo$
3438
+ ];
3439
+ var TriggerConfigList = [1, n0, _TCL,
3440
+ 0, () => TriggerConfig$
3441
+ ];
3442
+ var AddTagsToOnPremisesInstances$ = [9, n0, _ATTOPI,
3443
+ 0, () => AddTagsToOnPremisesInstancesInput$, () => __Unit
3444
+ ];
3445
+ var BatchGetApplicationRevisions$ = [9, n0, _BGAR,
3446
+ 0, () => BatchGetApplicationRevisionsInput$, () => BatchGetApplicationRevisionsOutput$
3447
+ ];
3448
+ var BatchGetApplications$ = [9, n0, _BGA,
3449
+ 0, () => BatchGetApplicationsInput$, () => BatchGetApplicationsOutput$
3450
+ ];
3451
+ var BatchGetDeploymentGroups$ = [9, n0, _BGDG,
3452
+ 0, () => BatchGetDeploymentGroupsInput$, () => BatchGetDeploymentGroupsOutput$
3453
+ ];
3454
+ var BatchGetDeploymentInstances$ = [9, n0, _BGDIa,
3455
+ 0, () => BatchGetDeploymentInstancesInput$, () => BatchGetDeploymentInstancesOutput$
3456
+ ];
3457
+ var BatchGetDeployments$ = [9, n0, _BGD,
3458
+ 0, () => BatchGetDeploymentsInput$, () => BatchGetDeploymentsOutput$
3459
+ ];
3460
+ var BatchGetDeploymentTargets$ = [9, n0, _BGDT,
3461
+ 0, () => BatchGetDeploymentTargetsInput$, () => BatchGetDeploymentTargetsOutput$
3462
+ ];
3463
+ var BatchGetOnPremisesInstances$ = [9, n0, _BGOPI,
3464
+ 0, () => BatchGetOnPremisesInstancesInput$, () => BatchGetOnPremisesInstancesOutput$
3465
+ ];
3466
+ var ContinueDeployment$ = [9, n0, _CD,
3467
+ 0, () => ContinueDeploymentInput$, () => __Unit
3468
+ ];
3469
+ var CreateApplication$ = [9, n0, _CA,
3470
+ 0, () => CreateApplicationInput$, () => CreateApplicationOutput$
3471
+ ];
3472
+ var CreateDeployment$ = [9, n0, _CDr,
3473
+ 0, () => CreateDeploymentInput$, () => CreateDeploymentOutput$
3474
+ ];
3475
+ var CreateDeploymentConfig$ = [9, n0, _CDC,
3476
+ 0, () => CreateDeploymentConfigInput$, () => CreateDeploymentConfigOutput$
3477
+ ];
3478
+ var CreateDeploymentGroup$ = [9, n0, _CDG,
3479
+ 0, () => CreateDeploymentGroupInput$, () => CreateDeploymentGroupOutput$
3480
+ ];
3481
+ var DeleteApplication$ = [9, n0, _DA,
3482
+ 0, () => DeleteApplicationInput$, () => __Unit
3483
+ ];
3484
+ var DeleteDeploymentConfig$ = [9, n0, _DDC,
3485
+ 0, () => DeleteDeploymentConfigInput$, () => __Unit
3486
+ ];
3487
+ var DeleteDeploymentGroup$ = [9, n0, _DDG,
3488
+ 0, () => DeleteDeploymentGroupInput$, () => DeleteDeploymentGroupOutput$
3489
+ ];
3490
+ var DeleteGitHubAccountToken$ = [9, n0, _DGHAT,
3491
+ 0, () => DeleteGitHubAccountTokenInput$, () => DeleteGitHubAccountTokenOutput$
3492
+ ];
3493
+ var DeleteResourcesByExternalId$ = [9, n0, _DRBEI,
3494
+ 0, () => DeleteResourcesByExternalIdInput$, () => DeleteResourcesByExternalIdOutput$
3495
+ ];
3496
+ var DeregisterOnPremisesInstance$ = [9, n0, _DOPI,
3497
+ 0, () => DeregisterOnPremisesInstanceInput$, () => __Unit
3498
+ ];
3499
+ var GetApplication$ = [9, n0, _GA,
3500
+ 0, () => GetApplicationInput$, () => GetApplicationOutput$
3501
+ ];
3502
+ var GetApplicationRevision$ = [9, n0, _GAR,
3503
+ 0, () => GetApplicationRevisionInput$, () => GetApplicationRevisionOutput$
3504
+ ];
3505
+ var GetDeployment$ = [9, n0, _GD,
3506
+ 0, () => GetDeploymentInput$, () => GetDeploymentOutput$
3507
+ ];
3508
+ var GetDeploymentConfig$ = [9, n0, _GDC,
3509
+ 0, () => GetDeploymentConfigInput$, () => GetDeploymentConfigOutput$
3510
+ ];
3511
+ var GetDeploymentGroup$ = [9, n0, _GDG,
3512
+ 0, () => GetDeploymentGroupInput$, () => GetDeploymentGroupOutput$
3513
+ ];
3514
+ var GetDeploymentInstance$ = [9, n0, _GDIe,
3515
+ 0, () => GetDeploymentInstanceInput$, () => GetDeploymentInstanceOutput$
3516
+ ];
3517
+ var GetDeploymentTarget$ = [9, n0, _GDT,
3518
+ 0, () => GetDeploymentTargetInput$, () => GetDeploymentTargetOutput$
3519
+ ];
3520
+ var GetOnPremisesInstance$ = [9, n0, _GOPI,
3521
+ 0, () => GetOnPremisesInstanceInput$, () => GetOnPremisesInstanceOutput$
3522
+ ];
3523
+ var ListApplicationRevisions$ = [9, n0, _LAR,
3524
+ 0, () => ListApplicationRevisionsInput$, () => ListApplicationRevisionsOutput$
3525
+ ];
3526
+ var ListApplications$ = [9, n0, _LA,
3527
+ 0, () => ListApplicationsInput$, () => ListApplicationsOutput$
3528
+ ];
3529
+ var ListDeploymentConfigs$ = [9, n0, _LDC,
3530
+ 0, () => ListDeploymentConfigsInput$, () => ListDeploymentConfigsOutput$
3531
+ ];
3532
+ var ListDeploymentGroups$ = [9, n0, _LDG,
3533
+ 0, () => ListDeploymentGroupsInput$, () => ListDeploymentGroupsOutput$
3534
+ ];
3535
+ var ListDeploymentInstances$ = [9, n0, _LDIis,
3536
+ 0, () => ListDeploymentInstancesInput$, () => ListDeploymentInstancesOutput$
3537
+ ];
3538
+ var ListDeployments$ = [9, n0, _LD,
3539
+ 0, () => ListDeploymentsInput$, () => ListDeploymentsOutput$
3540
+ ];
3541
+ var ListDeploymentTargets$ = [9, n0, _LDT,
3542
+ 0, () => ListDeploymentTargetsInput$, () => ListDeploymentTargetsOutput$
3543
+ ];
3544
+ var ListGitHubAccountTokenNames$ = [9, n0, _LGHATN,
3545
+ 0, () => ListGitHubAccountTokenNamesInput$, () => ListGitHubAccountTokenNamesOutput$
3546
+ ];
3547
+ var ListOnPremisesInstances$ = [9, n0, _LOPI,
3548
+ 0, () => ListOnPremisesInstancesInput$, () => ListOnPremisesInstancesOutput$
3549
+ ];
3550
+ var ListTagsForResource$ = [9, n0, _LTFR,
3551
+ 0, () => ListTagsForResourceInput$, () => ListTagsForResourceOutput$
3552
+ ];
3553
+ var PutLifecycleEventHookExecutionStatus$ = [9, n0, _PLEHES,
3554
+ 0, () => PutLifecycleEventHookExecutionStatusInput$, () => PutLifecycleEventHookExecutionStatusOutput$
3555
+ ];
3556
+ var RegisterApplicationRevision$ = [9, n0, _RAR,
3557
+ 0, () => RegisterApplicationRevisionInput$, () => __Unit
3558
+ ];
3559
+ var RegisterOnPremisesInstance$ = [9, n0, _ROPI,
3560
+ 0, () => RegisterOnPremisesInstanceInput$, () => __Unit
3561
+ ];
3562
+ var RemoveTagsFromOnPremisesInstances$ = [9, n0, _RTFOPI,
3563
+ 0, () => RemoveTagsFromOnPremisesInstancesInput$, () => __Unit
3564
+ ];
3565
+ var SkipWaitTimeForInstanceTermination$ = [9, n0, _SWTFIT,
3566
+ 0, () => SkipWaitTimeForInstanceTerminationInput$, () => __Unit
3567
+ ];
3568
+ var StopDeployment$ = [9, n0, _SD,
3569
+ 0, () => StopDeploymentInput$, () => StopDeploymentOutput$
3570
+ ];
3571
+ var TagResource$ = [9, n0, _TRa,
3572
+ 0, () => TagResourceInput$, () => TagResourceOutput$
3573
+ ];
3574
+ var UntagResource$ = [9, n0, _UR,
3575
+ 0, () => UntagResourceInput$, () => UntagResourceOutput$
3576
+ ];
3577
+ var UpdateApplication$ = [9, n0, _UA,
3578
+ 0, () => UpdateApplicationInput$, () => __Unit
3579
+ ];
3580
+ var UpdateDeploymentGroup$ = [9, n0, _UDG,
3581
+ 0, () => UpdateDeploymentGroupInput$, () => UpdateDeploymentGroupOutput$
3582
+ ];
3583
+
3584
+ const getRuntimeConfig$1 = (config) => {
3585
+ return {
3586
+ apiVersion: "2014-10-06",
3587
+ base64Decoder: config?.base64Decoder ?? fromBase64,
3588
+ base64Encoder: config?.base64Encoder ?? toBase64,
3589
+ disableHostPrefix: config?.disableHostPrefix ?? false,
3590
+ endpointProvider: config?.endpointProvider ?? defaultEndpointResolver,
3591
+ extensions: config?.extensions ?? [],
3592
+ httpAuthSchemeProvider: config?.httpAuthSchemeProvider ?? defaultCodeDeployHttpAuthSchemeProvider,
3593
+ httpAuthSchemes: config?.httpAuthSchemes ?? [
3594
+ {
3595
+ schemeId: "aws.auth#sigv4",
3596
+ identityProvider: (ipc) => ipc.getIdentityProvider("aws.auth#sigv4"),
3597
+ signer: new AwsSdkSigV4Signer(),
3598
+ },
3599
+ ],
3600
+ logger: config?.logger ?? new NoOpLogger(),
3601
+ protocol: config?.protocol ?? AwsJson1_1Protocol,
3602
+ protocolSettings: config?.protocolSettings ?? {
3603
+ defaultNamespace: "com.amazonaws.codedeploy",
3604
+ errorTypeRegistries,
3605
+ xmlNamespace: "http://codedeploy.amazonaws.com/doc/2014-10-06/",
3606
+ version: "2014-10-06",
3607
+ serviceTarget: "CodeDeploy_20141006",
3608
+ },
3609
+ serviceId: config?.serviceId ?? "CodeDeploy",
3610
+ urlParser: config?.urlParser ?? parseUrl,
3611
+ utf8Decoder: config?.utf8Decoder ?? fromUtf8,
3612
+ utf8Encoder: config?.utf8Encoder ?? toUtf8,
3613
+ };
3614
+ };
3615
+
3616
+ const getRuntimeConfig = (config) => {
3617
+ emitWarningIfUnsupportedVersion(process.version);
3618
+ const defaultsMode = resolveDefaultsModeConfig(config);
3619
+ const defaultConfigProvider = () => defaultsMode().then(loadConfigsForDefaultMode);
3620
+ const clientSharedValues = getRuntimeConfig$1(config);
3621
+ emitWarningIfUnsupportedVersion$1(process.version);
3622
+ const loaderConfig = {
3623
+ profile: config?.profile,
3624
+ logger: clientSharedValues.logger,
3625
+ };
3626
+ return {
3627
+ ...clientSharedValues,
3628
+ ...config,
3629
+ runtime: "node",
3630
+ defaultsMode,
3631
+ authSchemePreference: config?.authSchemePreference ?? loadConfig(NODE_AUTH_SCHEME_PREFERENCE_OPTIONS, loaderConfig),
3632
+ bodyLengthChecker: config?.bodyLengthChecker ?? calculateBodyLength,
3633
+ credentialDefaultProvider: config?.credentialDefaultProvider ?? defaultProvider,
3634
+ defaultUserAgentProvider: config?.defaultUserAgentProvider ?? createDefaultUserAgentProvider({ serviceId: clientSharedValues.serviceId, clientVersion: packageInfo.version }),
3635
+ maxAttempts: config?.maxAttempts ?? loadConfig(NODE_MAX_ATTEMPT_CONFIG_OPTIONS, config),
3636
+ region: config?.region ?? loadConfig(NODE_REGION_CONFIG_OPTIONS, { ...NODE_REGION_CONFIG_FILE_OPTIONS, ...loaderConfig }),
3637
+ requestHandler: NodeHttpHandler.create(config?.requestHandler ?? defaultConfigProvider),
3638
+ retryMode: config?.retryMode ??
3639
+ loadConfig({
3640
+ ...NODE_RETRY_MODE_CONFIG_OPTIONS,
3641
+ default: async () => (await defaultConfigProvider()).retryMode || DEFAULT_RETRY_MODE,
3642
+ }, config),
3643
+ sha256: config?.sha256 ?? Hash.bind(null, "sha256"),
3644
+ streamCollector: config?.streamCollector ?? streamCollector,
3645
+ useDualstackEndpoint: config?.useDualstackEndpoint ?? loadConfig(NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
3646
+ useFipsEndpoint: config?.useFipsEndpoint ?? loadConfig(NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
3647
+ userAgentAppId: config?.userAgentAppId ?? loadConfig(NODE_APP_ID_CONFIG_OPTIONS, loaderConfig),
3648
+ };
3649
+ };
3650
+
34
3651
  const getHttpAuthExtensionConfiguration = (runtimeConfig) => {
35
3652
  const _httpAuthSchemes = runtimeConfig.httpAuthSchemes;
36
3653
  let _httpAuthSchemeProvider = runtimeConfig.httpAuthSchemeProvider;
@@ -1021,89 +4638,499 @@ const StopStatus = {
1021
4638
  SUCCEEDED: "Succeeded",
1022
4639
  };
1023
4640
 
4641
+ exports.AddTagsToOnPremisesInstances$ = AddTagsToOnPremisesInstances$;
1024
4642
  exports.AddTagsToOnPremisesInstancesCommand = AddTagsToOnPremisesInstancesCommand;
4643
+ exports.AddTagsToOnPremisesInstancesInput$ = AddTagsToOnPremisesInstancesInput$;
4644
+ exports.Alarm$ = Alarm$;
4645
+ exports.AlarmConfiguration$ = AlarmConfiguration$;
4646
+ exports.AlarmsLimitExceededException = AlarmsLimitExceededException;
4647
+ exports.AlarmsLimitExceededException$ = AlarmsLimitExceededException$;
4648
+ exports.AppSpecContent$ = AppSpecContent$;
4649
+ exports.ApplicationAlreadyExistsException = ApplicationAlreadyExistsException;
4650
+ exports.ApplicationAlreadyExistsException$ = ApplicationAlreadyExistsException$;
4651
+ exports.ApplicationDoesNotExistException = ApplicationDoesNotExistException;
4652
+ exports.ApplicationDoesNotExistException$ = ApplicationDoesNotExistException$;
4653
+ exports.ApplicationInfo$ = ApplicationInfo$;
4654
+ exports.ApplicationLimitExceededException = ApplicationLimitExceededException;
4655
+ exports.ApplicationLimitExceededException$ = ApplicationLimitExceededException$;
4656
+ exports.ApplicationNameRequiredException = ApplicationNameRequiredException;
4657
+ exports.ApplicationNameRequiredException$ = ApplicationNameRequiredException$;
1025
4658
  exports.ApplicationRevisionSortBy = ApplicationRevisionSortBy;
4659
+ exports.ArnNotSupportedException = ArnNotSupportedException;
4660
+ exports.ArnNotSupportedException$ = ArnNotSupportedException$;
4661
+ exports.AutoRollbackConfiguration$ = AutoRollbackConfiguration$;
1026
4662
  exports.AutoRollbackEvent = AutoRollbackEvent;
4663
+ exports.AutoScalingGroup$ = AutoScalingGroup$;
4664
+ exports.BatchGetApplicationRevisions$ = BatchGetApplicationRevisions$;
1027
4665
  exports.BatchGetApplicationRevisionsCommand = BatchGetApplicationRevisionsCommand;
4666
+ exports.BatchGetApplicationRevisionsInput$ = BatchGetApplicationRevisionsInput$;
4667
+ exports.BatchGetApplicationRevisionsOutput$ = BatchGetApplicationRevisionsOutput$;
4668
+ exports.BatchGetApplications$ = BatchGetApplications$;
1028
4669
  exports.BatchGetApplicationsCommand = BatchGetApplicationsCommand;
4670
+ exports.BatchGetApplicationsInput$ = BatchGetApplicationsInput$;
4671
+ exports.BatchGetApplicationsOutput$ = BatchGetApplicationsOutput$;
4672
+ exports.BatchGetDeploymentGroups$ = BatchGetDeploymentGroups$;
1029
4673
  exports.BatchGetDeploymentGroupsCommand = BatchGetDeploymentGroupsCommand;
4674
+ exports.BatchGetDeploymentGroupsInput$ = BatchGetDeploymentGroupsInput$;
4675
+ exports.BatchGetDeploymentGroupsOutput$ = BatchGetDeploymentGroupsOutput$;
4676
+ exports.BatchGetDeploymentInstances$ = BatchGetDeploymentInstances$;
1030
4677
  exports.BatchGetDeploymentInstancesCommand = BatchGetDeploymentInstancesCommand;
4678
+ exports.BatchGetDeploymentInstancesInput$ = BatchGetDeploymentInstancesInput$;
4679
+ exports.BatchGetDeploymentInstancesOutput$ = BatchGetDeploymentInstancesOutput$;
4680
+ exports.BatchGetDeploymentTargets$ = BatchGetDeploymentTargets$;
1031
4681
  exports.BatchGetDeploymentTargetsCommand = BatchGetDeploymentTargetsCommand;
4682
+ exports.BatchGetDeploymentTargetsInput$ = BatchGetDeploymentTargetsInput$;
4683
+ exports.BatchGetDeploymentTargetsOutput$ = BatchGetDeploymentTargetsOutput$;
4684
+ exports.BatchGetDeployments$ = BatchGetDeployments$;
1032
4685
  exports.BatchGetDeploymentsCommand = BatchGetDeploymentsCommand;
4686
+ exports.BatchGetDeploymentsInput$ = BatchGetDeploymentsInput$;
4687
+ exports.BatchGetDeploymentsOutput$ = BatchGetDeploymentsOutput$;
4688
+ exports.BatchGetOnPremisesInstances$ = BatchGetOnPremisesInstances$;
1033
4689
  exports.BatchGetOnPremisesInstancesCommand = BatchGetOnPremisesInstancesCommand;
4690
+ exports.BatchGetOnPremisesInstancesInput$ = BatchGetOnPremisesInstancesInput$;
4691
+ exports.BatchGetOnPremisesInstancesOutput$ = BatchGetOnPremisesInstancesOutput$;
4692
+ exports.BatchLimitExceededException = BatchLimitExceededException;
4693
+ exports.BatchLimitExceededException$ = BatchLimitExceededException$;
4694
+ exports.BlueGreenDeploymentConfiguration$ = BlueGreenDeploymentConfiguration$;
4695
+ exports.BlueInstanceTerminationOption$ = BlueInstanceTerminationOption$;
4696
+ exports.BucketNameFilterRequiredException = BucketNameFilterRequiredException;
4697
+ exports.BucketNameFilterRequiredException$ = BucketNameFilterRequiredException$;
1034
4698
  exports.BundleType = BundleType;
4699
+ exports.CloudFormationTarget$ = CloudFormationTarget$;
1035
4700
  exports.CodeDeploy = CodeDeploy;
1036
4701
  exports.CodeDeployClient = CodeDeployClient;
4702
+ exports.CodeDeployServiceException = CodeDeployServiceException;
4703
+ exports.CodeDeployServiceException$ = CodeDeployServiceException$;
1037
4704
  exports.ComputePlatform = ComputePlatform;
4705
+ exports.ContinueDeployment$ = ContinueDeployment$;
1038
4706
  exports.ContinueDeploymentCommand = ContinueDeploymentCommand;
4707
+ exports.ContinueDeploymentInput$ = ContinueDeploymentInput$;
4708
+ exports.CreateApplication$ = CreateApplication$;
1039
4709
  exports.CreateApplicationCommand = CreateApplicationCommand;
4710
+ exports.CreateApplicationInput$ = CreateApplicationInput$;
4711
+ exports.CreateApplicationOutput$ = CreateApplicationOutput$;
4712
+ exports.CreateDeployment$ = CreateDeployment$;
1040
4713
  exports.CreateDeploymentCommand = CreateDeploymentCommand;
4714
+ exports.CreateDeploymentConfig$ = CreateDeploymentConfig$;
1041
4715
  exports.CreateDeploymentConfigCommand = CreateDeploymentConfigCommand;
4716
+ exports.CreateDeploymentConfigInput$ = CreateDeploymentConfigInput$;
4717
+ exports.CreateDeploymentConfigOutput$ = CreateDeploymentConfigOutput$;
4718
+ exports.CreateDeploymentGroup$ = CreateDeploymentGroup$;
1042
4719
  exports.CreateDeploymentGroupCommand = CreateDeploymentGroupCommand;
4720
+ exports.CreateDeploymentGroupInput$ = CreateDeploymentGroupInput$;
4721
+ exports.CreateDeploymentGroupOutput$ = CreateDeploymentGroupOutput$;
4722
+ exports.CreateDeploymentInput$ = CreateDeploymentInput$;
4723
+ exports.CreateDeploymentOutput$ = CreateDeploymentOutput$;
4724
+ exports.DeleteApplication$ = DeleteApplication$;
1043
4725
  exports.DeleteApplicationCommand = DeleteApplicationCommand;
4726
+ exports.DeleteApplicationInput$ = DeleteApplicationInput$;
4727
+ exports.DeleteDeploymentConfig$ = DeleteDeploymentConfig$;
1044
4728
  exports.DeleteDeploymentConfigCommand = DeleteDeploymentConfigCommand;
4729
+ exports.DeleteDeploymentConfigInput$ = DeleteDeploymentConfigInput$;
4730
+ exports.DeleteDeploymentGroup$ = DeleteDeploymentGroup$;
1045
4731
  exports.DeleteDeploymentGroupCommand = DeleteDeploymentGroupCommand;
4732
+ exports.DeleteDeploymentGroupInput$ = DeleteDeploymentGroupInput$;
4733
+ exports.DeleteDeploymentGroupOutput$ = DeleteDeploymentGroupOutput$;
4734
+ exports.DeleteGitHubAccountToken$ = DeleteGitHubAccountToken$;
1046
4735
  exports.DeleteGitHubAccountTokenCommand = DeleteGitHubAccountTokenCommand;
4736
+ exports.DeleteGitHubAccountTokenInput$ = DeleteGitHubAccountTokenInput$;
4737
+ exports.DeleteGitHubAccountTokenOutput$ = DeleteGitHubAccountTokenOutput$;
4738
+ exports.DeleteResourcesByExternalId$ = DeleteResourcesByExternalId$;
1047
4739
  exports.DeleteResourcesByExternalIdCommand = DeleteResourcesByExternalIdCommand;
4740
+ exports.DeleteResourcesByExternalIdInput$ = DeleteResourcesByExternalIdInput$;
4741
+ exports.DeleteResourcesByExternalIdOutput$ = DeleteResourcesByExternalIdOutput$;
4742
+ exports.DeploymentAlreadyCompletedException = DeploymentAlreadyCompletedException;
4743
+ exports.DeploymentAlreadyCompletedException$ = DeploymentAlreadyCompletedException$;
4744
+ exports.DeploymentConfigAlreadyExistsException = DeploymentConfigAlreadyExistsException;
4745
+ exports.DeploymentConfigAlreadyExistsException$ = DeploymentConfigAlreadyExistsException$;
4746
+ exports.DeploymentConfigDoesNotExistException = DeploymentConfigDoesNotExistException;
4747
+ exports.DeploymentConfigDoesNotExistException$ = DeploymentConfigDoesNotExistException$;
4748
+ exports.DeploymentConfigInUseException = DeploymentConfigInUseException;
4749
+ exports.DeploymentConfigInUseException$ = DeploymentConfigInUseException$;
4750
+ exports.DeploymentConfigInfo$ = DeploymentConfigInfo$;
4751
+ exports.DeploymentConfigLimitExceededException = DeploymentConfigLimitExceededException;
4752
+ exports.DeploymentConfigLimitExceededException$ = DeploymentConfigLimitExceededException$;
4753
+ exports.DeploymentConfigNameRequiredException = DeploymentConfigNameRequiredException;
4754
+ exports.DeploymentConfigNameRequiredException$ = DeploymentConfigNameRequiredException$;
1048
4755
  exports.DeploymentCreator = DeploymentCreator;
4756
+ exports.DeploymentDoesNotExistException = DeploymentDoesNotExistException;
4757
+ exports.DeploymentDoesNotExistException$ = DeploymentDoesNotExistException$;
4758
+ exports.DeploymentGroupAlreadyExistsException = DeploymentGroupAlreadyExistsException;
4759
+ exports.DeploymentGroupAlreadyExistsException$ = DeploymentGroupAlreadyExistsException$;
4760
+ exports.DeploymentGroupDoesNotExistException = DeploymentGroupDoesNotExistException;
4761
+ exports.DeploymentGroupDoesNotExistException$ = DeploymentGroupDoesNotExistException$;
4762
+ exports.DeploymentGroupInfo$ = DeploymentGroupInfo$;
4763
+ exports.DeploymentGroupLimitExceededException = DeploymentGroupLimitExceededException;
4764
+ exports.DeploymentGroupLimitExceededException$ = DeploymentGroupLimitExceededException$;
4765
+ exports.DeploymentGroupNameRequiredException = DeploymentGroupNameRequiredException;
4766
+ exports.DeploymentGroupNameRequiredException$ = DeploymentGroupNameRequiredException$;
4767
+ exports.DeploymentIdRequiredException = DeploymentIdRequiredException;
4768
+ exports.DeploymentIdRequiredException$ = DeploymentIdRequiredException$;
4769
+ exports.DeploymentInfo$ = DeploymentInfo$;
4770
+ exports.DeploymentIsNotInReadyStateException = DeploymentIsNotInReadyStateException;
4771
+ exports.DeploymentIsNotInReadyStateException$ = DeploymentIsNotInReadyStateException$;
4772
+ exports.DeploymentLimitExceededException = DeploymentLimitExceededException;
4773
+ exports.DeploymentLimitExceededException$ = DeploymentLimitExceededException$;
4774
+ exports.DeploymentNotStartedException = DeploymentNotStartedException;
4775
+ exports.DeploymentNotStartedException$ = DeploymentNotStartedException$;
1049
4776
  exports.DeploymentOption = DeploymentOption;
4777
+ exports.DeploymentOverview$ = DeploymentOverview$;
1050
4778
  exports.DeploymentReadyAction = DeploymentReadyAction;
4779
+ exports.DeploymentReadyOption$ = DeploymentReadyOption$;
1051
4780
  exports.DeploymentStatus = DeploymentStatus;
4781
+ exports.DeploymentStyle$ = DeploymentStyle$;
4782
+ exports.DeploymentTarget$ = DeploymentTarget$;
4783
+ exports.DeploymentTargetDoesNotExistException = DeploymentTargetDoesNotExistException;
4784
+ exports.DeploymentTargetDoesNotExistException$ = DeploymentTargetDoesNotExistException$;
4785
+ exports.DeploymentTargetIdRequiredException = DeploymentTargetIdRequiredException;
4786
+ exports.DeploymentTargetIdRequiredException$ = DeploymentTargetIdRequiredException$;
4787
+ exports.DeploymentTargetListSizeExceededException = DeploymentTargetListSizeExceededException;
4788
+ exports.DeploymentTargetListSizeExceededException$ = DeploymentTargetListSizeExceededException$;
1052
4789
  exports.DeploymentTargetType = DeploymentTargetType;
1053
4790
  exports.DeploymentType = DeploymentType;
1054
4791
  exports.DeploymentWaitType = DeploymentWaitType;
4792
+ exports.DeregisterOnPremisesInstance$ = DeregisterOnPremisesInstance$;
1055
4793
  exports.DeregisterOnPremisesInstanceCommand = DeregisterOnPremisesInstanceCommand;
4794
+ exports.DeregisterOnPremisesInstanceInput$ = DeregisterOnPremisesInstanceInput$;
4795
+ exports.DescriptionTooLongException = DescriptionTooLongException;
4796
+ exports.DescriptionTooLongException$ = DescriptionTooLongException$;
4797
+ exports.Diagnostics$ = Diagnostics$;
4798
+ exports.EC2TagFilter$ = EC2TagFilter$;
1056
4799
  exports.EC2TagFilterType = EC2TagFilterType;
4800
+ exports.EC2TagSet$ = EC2TagSet$;
4801
+ exports.ECSService$ = ECSService$;
4802
+ exports.ECSServiceMappingLimitExceededException = ECSServiceMappingLimitExceededException;
4803
+ exports.ECSServiceMappingLimitExceededException$ = ECSServiceMappingLimitExceededException$;
4804
+ exports.ECSTarget$ = ECSTarget$;
4805
+ exports.ECSTaskSet$ = ECSTaskSet$;
4806
+ exports.ELBInfo$ = ELBInfo$;
1057
4807
  exports.ErrorCode = ErrorCode;
4808
+ exports.ErrorInformation$ = ErrorInformation$;
1058
4809
  exports.FileExistsBehavior = FileExistsBehavior;
4810
+ exports.GenericRevisionInfo$ = GenericRevisionInfo$;
4811
+ exports.GetApplication$ = GetApplication$;
1059
4812
  exports.GetApplicationCommand = GetApplicationCommand;
4813
+ exports.GetApplicationInput$ = GetApplicationInput$;
4814
+ exports.GetApplicationOutput$ = GetApplicationOutput$;
4815
+ exports.GetApplicationRevision$ = GetApplicationRevision$;
1060
4816
  exports.GetApplicationRevisionCommand = GetApplicationRevisionCommand;
4817
+ exports.GetApplicationRevisionInput$ = GetApplicationRevisionInput$;
4818
+ exports.GetApplicationRevisionOutput$ = GetApplicationRevisionOutput$;
4819
+ exports.GetDeployment$ = GetDeployment$;
1061
4820
  exports.GetDeploymentCommand = GetDeploymentCommand;
4821
+ exports.GetDeploymentConfig$ = GetDeploymentConfig$;
1062
4822
  exports.GetDeploymentConfigCommand = GetDeploymentConfigCommand;
4823
+ exports.GetDeploymentConfigInput$ = GetDeploymentConfigInput$;
4824
+ exports.GetDeploymentConfigOutput$ = GetDeploymentConfigOutput$;
4825
+ exports.GetDeploymentGroup$ = GetDeploymentGroup$;
1063
4826
  exports.GetDeploymentGroupCommand = GetDeploymentGroupCommand;
4827
+ exports.GetDeploymentGroupInput$ = GetDeploymentGroupInput$;
4828
+ exports.GetDeploymentGroupOutput$ = GetDeploymentGroupOutput$;
4829
+ exports.GetDeploymentInput$ = GetDeploymentInput$;
4830
+ exports.GetDeploymentInstance$ = GetDeploymentInstance$;
1064
4831
  exports.GetDeploymentInstanceCommand = GetDeploymentInstanceCommand;
4832
+ exports.GetDeploymentInstanceInput$ = GetDeploymentInstanceInput$;
4833
+ exports.GetDeploymentInstanceOutput$ = GetDeploymentInstanceOutput$;
4834
+ exports.GetDeploymentOutput$ = GetDeploymentOutput$;
4835
+ exports.GetDeploymentTarget$ = GetDeploymentTarget$;
1065
4836
  exports.GetDeploymentTargetCommand = GetDeploymentTargetCommand;
4837
+ exports.GetDeploymentTargetInput$ = GetDeploymentTargetInput$;
4838
+ exports.GetDeploymentTargetOutput$ = GetDeploymentTargetOutput$;
4839
+ exports.GetOnPremisesInstance$ = GetOnPremisesInstance$;
1066
4840
  exports.GetOnPremisesInstanceCommand = GetOnPremisesInstanceCommand;
4841
+ exports.GetOnPremisesInstanceInput$ = GetOnPremisesInstanceInput$;
4842
+ exports.GetOnPremisesInstanceOutput$ = GetOnPremisesInstanceOutput$;
4843
+ exports.GitHubAccountTokenDoesNotExistException = GitHubAccountTokenDoesNotExistException;
4844
+ exports.GitHubAccountTokenDoesNotExistException$ = GitHubAccountTokenDoesNotExistException$;
4845
+ exports.GitHubAccountTokenNameRequiredException = GitHubAccountTokenNameRequiredException;
4846
+ exports.GitHubAccountTokenNameRequiredException$ = GitHubAccountTokenNameRequiredException$;
4847
+ exports.GitHubLocation$ = GitHubLocation$;
1067
4848
  exports.GreenFleetProvisioningAction = GreenFleetProvisioningAction;
4849
+ exports.GreenFleetProvisioningOption$ = GreenFleetProvisioningOption$;
4850
+ exports.IamArnRequiredException = IamArnRequiredException;
4851
+ exports.IamArnRequiredException$ = IamArnRequiredException$;
4852
+ exports.IamSessionArnAlreadyRegisteredException = IamSessionArnAlreadyRegisteredException;
4853
+ exports.IamSessionArnAlreadyRegisteredException$ = IamSessionArnAlreadyRegisteredException$;
4854
+ exports.IamUserArnAlreadyRegisteredException = IamUserArnAlreadyRegisteredException;
4855
+ exports.IamUserArnAlreadyRegisteredException$ = IamUserArnAlreadyRegisteredException$;
4856
+ exports.IamUserArnRequiredException = IamUserArnRequiredException;
4857
+ exports.IamUserArnRequiredException$ = IamUserArnRequiredException$;
1068
4858
  exports.InstanceAction = InstanceAction;
4859
+ exports.InstanceDoesNotExistException = InstanceDoesNotExistException;
4860
+ exports.InstanceDoesNotExistException$ = InstanceDoesNotExistException$;
4861
+ exports.InstanceIdRequiredException = InstanceIdRequiredException;
4862
+ exports.InstanceIdRequiredException$ = InstanceIdRequiredException$;
4863
+ exports.InstanceInfo$ = InstanceInfo$;
4864
+ exports.InstanceLimitExceededException = InstanceLimitExceededException;
4865
+ exports.InstanceLimitExceededException$ = InstanceLimitExceededException$;
4866
+ exports.InstanceNameAlreadyRegisteredException = InstanceNameAlreadyRegisteredException;
4867
+ exports.InstanceNameAlreadyRegisteredException$ = InstanceNameAlreadyRegisteredException$;
4868
+ exports.InstanceNameRequiredException = InstanceNameRequiredException;
4869
+ exports.InstanceNameRequiredException$ = InstanceNameRequiredException$;
4870
+ exports.InstanceNotRegisteredException = InstanceNotRegisteredException;
4871
+ exports.InstanceNotRegisteredException$ = InstanceNotRegisteredException$;
1069
4872
  exports.InstanceStatus = InstanceStatus;
4873
+ exports.InstanceSummary$ = InstanceSummary$;
4874
+ exports.InstanceTarget$ = InstanceTarget$;
4875
+ exports.InvalidAlarmConfigException = InvalidAlarmConfigException;
4876
+ exports.InvalidAlarmConfigException$ = InvalidAlarmConfigException$;
4877
+ exports.InvalidApplicationNameException = InvalidApplicationNameException;
4878
+ exports.InvalidApplicationNameException$ = InvalidApplicationNameException$;
4879
+ exports.InvalidArnException = InvalidArnException;
4880
+ exports.InvalidArnException$ = InvalidArnException$;
4881
+ exports.InvalidAutoRollbackConfigException = InvalidAutoRollbackConfigException;
4882
+ exports.InvalidAutoRollbackConfigException$ = InvalidAutoRollbackConfigException$;
4883
+ exports.InvalidAutoScalingGroupException = InvalidAutoScalingGroupException;
4884
+ exports.InvalidAutoScalingGroupException$ = InvalidAutoScalingGroupException$;
4885
+ exports.InvalidBlueGreenDeploymentConfigurationException = InvalidBlueGreenDeploymentConfigurationException;
4886
+ exports.InvalidBlueGreenDeploymentConfigurationException$ = InvalidBlueGreenDeploymentConfigurationException$;
4887
+ exports.InvalidBucketNameFilterException = InvalidBucketNameFilterException;
4888
+ exports.InvalidBucketNameFilterException$ = InvalidBucketNameFilterException$;
4889
+ exports.InvalidComputePlatformException = InvalidComputePlatformException;
4890
+ exports.InvalidComputePlatformException$ = InvalidComputePlatformException$;
4891
+ exports.InvalidDeployedStateFilterException = InvalidDeployedStateFilterException;
4892
+ exports.InvalidDeployedStateFilterException$ = InvalidDeployedStateFilterException$;
4893
+ exports.InvalidDeploymentConfigNameException = InvalidDeploymentConfigNameException;
4894
+ exports.InvalidDeploymentConfigNameException$ = InvalidDeploymentConfigNameException$;
4895
+ exports.InvalidDeploymentGroupNameException = InvalidDeploymentGroupNameException;
4896
+ exports.InvalidDeploymentGroupNameException$ = InvalidDeploymentGroupNameException$;
4897
+ exports.InvalidDeploymentIdException = InvalidDeploymentIdException;
4898
+ exports.InvalidDeploymentIdException$ = InvalidDeploymentIdException$;
4899
+ exports.InvalidDeploymentInstanceTypeException = InvalidDeploymentInstanceTypeException;
4900
+ exports.InvalidDeploymentInstanceTypeException$ = InvalidDeploymentInstanceTypeException$;
4901
+ exports.InvalidDeploymentStatusException = InvalidDeploymentStatusException;
4902
+ exports.InvalidDeploymentStatusException$ = InvalidDeploymentStatusException$;
4903
+ exports.InvalidDeploymentStyleException = InvalidDeploymentStyleException;
4904
+ exports.InvalidDeploymentStyleException$ = InvalidDeploymentStyleException$;
4905
+ exports.InvalidDeploymentTargetIdException = InvalidDeploymentTargetIdException;
4906
+ exports.InvalidDeploymentTargetIdException$ = InvalidDeploymentTargetIdException$;
4907
+ exports.InvalidDeploymentWaitTypeException = InvalidDeploymentWaitTypeException;
4908
+ exports.InvalidDeploymentWaitTypeException$ = InvalidDeploymentWaitTypeException$;
4909
+ exports.InvalidEC2TagCombinationException = InvalidEC2TagCombinationException;
4910
+ exports.InvalidEC2TagCombinationException$ = InvalidEC2TagCombinationException$;
4911
+ exports.InvalidEC2TagException = InvalidEC2TagException;
4912
+ exports.InvalidEC2TagException$ = InvalidEC2TagException$;
4913
+ exports.InvalidECSServiceException = InvalidECSServiceException;
4914
+ exports.InvalidECSServiceException$ = InvalidECSServiceException$;
4915
+ exports.InvalidExternalIdException = InvalidExternalIdException;
4916
+ exports.InvalidExternalIdException$ = InvalidExternalIdException$;
4917
+ exports.InvalidFileExistsBehaviorException = InvalidFileExistsBehaviorException;
4918
+ exports.InvalidFileExistsBehaviorException$ = InvalidFileExistsBehaviorException$;
4919
+ exports.InvalidGitHubAccountTokenException = InvalidGitHubAccountTokenException;
4920
+ exports.InvalidGitHubAccountTokenException$ = InvalidGitHubAccountTokenException$;
4921
+ exports.InvalidGitHubAccountTokenNameException = InvalidGitHubAccountTokenNameException;
4922
+ exports.InvalidGitHubAccountTokenNameException$ = InvalidGitHubAccountTokenNameException$;
4923
+ exports.InvalidIamSessionArnException = InvalidIamSessionArnException;
4924
+ exports.InvalidIamSessionArnException$ = InvalidIamSessionArnException$;
4925
+ exports.InvalidIamUserArnException = InvalidIamUserArnException;
4926
+ exports.InvalidIamUserArnException$ = InvalidIamUserArnException$;
4927
+ exports.InvalidIgnoreApplicationStopFailuresValueException = InvalidIgnoreApplicationStopFailuresValueException;
4928
+ exports.InvalidIgnoreApplicationStopFailuresValueException$ = InvalidIgnoreApplicationStopFailuresValueException$;
4929
+ exports.InvalidInputException = InvalidInputException;
4930
+ exports.InvalidInputException$ = InvalidInputException$;
4931
+ exports.InvalidInstanceNameException = InvalidInstanceNameException;
4932
+ exports.InvalidInstanceNameException$ = InvalidInstanceNameException$;
4933
+ exports.InvalidInstanceStatusException = InvalidInstanceStatusException;
4934
+ exports.InvalidInstanceStatusException$ = InvalidInstanceStatusException$;
4935
+ exports.InvalidInstanceTypeException = InvalidInstanceTypeException;
4936
+ exports.InvalidInstanceTypeException$ = InvalidInstanceTypeException$;
4937
+ exports.InvalidKeyPrefixFilterException = InvalidKeyPrefixFilterException;
4938
+ exports.InvalidKeyPrefixFilterException$ = InvalidKeyPrefixFilterException$;
4939
+ exports.InvalidLifecycleEventHookExecutionIdException = InvalidLifecycleEventHookExecutionIdException;
4940
+ exports.InvalidLifecycleEventHookExecutionIdException$ = InvalidLifecycleEventHookExecutionIdException$;
4941
+ exports.InvalidLifecycleEventHookExecutionStatusException = InvalidLifecycleEventHookExecutionStatusException;
4942
+ exports.InvalidLifecycleEventHookExecutionStatusException$ = InvalidLifecycleEventHookExecutionStatusException$;
4943
+ exports.InvalidLoadBalancerInfoException = InvalidLoadBalancerInfoException;
4944
+ exports.InvalidLoadBalancerInfoException$ = InvalidLoadBalancerInfoException$;
4945
+ exports.InvalidMinimumHealthyHostValueException = InvalidMinimumHealthyHostValueException;
4946
+ exports.InvalidMinimumHealthyHostValueException$ = InvalidMinimumHealthyHostValueException$;
4947
+ exports.InvalidNextTokenException = InvalidNextTokenException;
4948
+ exports.InvalidNextTokenException$ = InvalidNextTokenException$;
4949
+ exports.InvalidOnPremisesTagCombinationException = InvalidOnPremisesTagCombinationException;
4950
+ exports.InvalidOnPremisesTagCombinationException$ = InvalidOnPremisesTagCombinationException$;
4951
+ exports.InvalidOperationException = InvalidOperationException;
4952
+ exports.InvalidOperationException$ = InvalidOperationException$;
4953
+ exports.InvalidRegistrationStatusException = InvalidRegistrationStatusException;
4954
+ exports.InvalidRegistrationStatusException$ = InvalidRegistrationStatusException$;
4955
+ exports.InvalidRevisionException = InvalidRevisionException;
4956
+ exports.InvalidRevisionException$ = InvalidRevisionException$;
4957
+ exports.InvalidRoleException = InvalidRoleException;
4958
+ exports.InvalidRoleException$ = InvalidRoleException$;
4959
+ exports.InvalidSortByException = InvalidSortByException;
4960
+ exports.InvalidSortByException$ = InvalidSortByException$;
4961
+ exports.InvalidSortOrderException = InvalidSortOrderException;
4962
+ exports.InvalidSortOrderException$ = InvalidSortOrderException$;
4963
+ exports.InvalidTagException = InvalidTagException;
4964
+ exports.InvalidTagException$ = InvalidTagException$;
4965
+ exports.InvalidTagFilterException = InvalidTagFilterException;
4966
+ exports.InvalidTagFilterException$ = InvalidTagFilterException$;
4967
+ exports.InvalidTagsToAddException = InvalidTagsToAddException;
4968
+ exports.InvalidTagsToAddException$ = InvalidTagsToAddException$;
4969
+ exports.InvalidTargetFilterNameException = InvalidTargetFilterNameException;
4970
+ exports.InvalidTargetFilterNameException$ = InvalidTargetFilterNameException$;
4971
+ exports.InvalidTargetGroupPairException = InvalidTargetGroupPairException;
4972
+ exports.InvalidTargetGroupPairException$ = InvalidTargetGroupPairException$;
4973
+ exports.InvalidTargetInstancesException = InvalidTargetInstancesException;
4974
+ exports.InvalidTargetInstancesException$ = InvalidTargetInstancesException$;
4975
+ exports.InvalidTimeRangeException = InvalidTimeRangeException;
4976
+ exports.InvalidTimeRangeException$ = InvalidTimeRangeException$;
4977
+ exports.InvalidTrafficRoutingConfigurationException = InvalidTrafficRoutingConfigurationException;
4978
+ exports.InvalidTrafficRoutingConfigurationException$ = InvalidTrafficRoutingConfigurationException$;
4979
+ exports.InvalidTriggerConfigException = InvalidTriggerConfigException;
4980
+ exports.InvalidTriggerConfigException$ = InvalidTriggerConfigException$;
4981
+ exports.InvalidUpdateOutdatedInstancesOnlyValueException = InvalidUpdateOutdatedInstancesOnlyValueException;
4982
+ exports.InvalidUpdateOutdatedInstancesOnlyValueException$ = InvalidUpdateOutdatedInstancesOnlyValueException$;
4983
+ exports.InvalidZonalDeploymentConfigurationException = InvalidZonalDeploymentConfigurationException;
4984
+ exports.InvalidZonalDeploymentConfigurationException$ = InvalidZonalDeploymentConfigurationException$;
4985
+ exports.LambdaFunctionInfo$ = LambdaFunctionInfo$;
4986
+ exports.LambdaTarget$ = LambdaTarget$;
4987
+ exports.LastDeploymentInfo$ = LastDeploymentInfo$;
1070
4988
  exports.LifecycleErrorCode = LifecycleErrorCode;
4989
+ exports.LifecycleEvent$ = LifecycleEvent$;
4990
+ exports.LifecycleEventAlreadyCompletedException = LifecycleEventAlreadyCompletedException;
4991
+ exports.LifecycleEventAlreadyCompletedException$ = LifecycleEventAlreadyCompletedException$;
1071
4992
  exports.LifecycleEventStatus = LifecycleEventStatus;
4993
+ exports.LifecycleHookLimitExceededException = LifecycleHookLimitExceededException;
4994
+ exports.LifecycleHookLimitExceededException$ = LifecycleHookLimitExceededException$;
4995
+ exports.ListApplicationRevisions$ = ListApplicationRevisions$;
1072
4996
  exports.ListApplicationRevisionsCommand = ListApplicationRevisionsCommand;
4997
+ exports.ListApplicationRevisionsInput$ = ListApplicationRevisionsInput$;
4998
+ exports.ListApplicationRevisionsOutput$ = ListApplicationRevisionsOutput$;
4999
+ exports.ListApplications$ = ListApplications$;
1073
5000
  exports.ListApplicationsCommand = ListApplicationsCommand;
5001
+ exports.ListApplicationsInput$ = ListApplicationsInput$;
5002
+ exports.ListApplicationsOutput$ = ListApplicationsOutput$;
5003
+ exports.ListDeploymentConfigs$ = ListDeploymentConfigs$;
1074
5004
  exports.ListDeploymentConfigsCommand = ListDeploymentConfigsCommand;
5005
+ exports.ListDeploymentConfigsInput$ = ListDeploymentConfigsInput$;
5006
+ exports.ListDeploymentConfigsOutput$ = ListDeploymentConfigsOutput$;
5007
+ exports.ListDeploymentGroups$ = ListDeploymentGroups$;
1075
5008
  exports.ListDeploymentGroupsCommand = ListDeploymentGroupsCommand;
5009
+ exports.ListDeploymentGroupsInput$ = ListDeploymentGroupsInput$;
5010
+ exports.ListDeploymentGroupsOutput$ = ListDeploymentGroupsOutput$;
5011
+ exports.ListDeploymentInstances$ = ListDeploymentInstances$;
1076
5012
  exports.ListDeploymentInstancesCommand = ListDeploymentInstancesCommand;
5013
+ exports.ListDeploymentInstancesInput$ = ListDeploymentInstancesInput$;
5014
+ exports.ListDeploymentInstancesOutput$ = ListDeploymentInstancesOutput$;
5015
+ exports.ListDeploymentTargets$ = ListDeploymentTargets$;
1077
5016
  exports.ListDeploymentTargetsCommand = ListDeploymentTargetsCommand;
5017
+ exports.ListDeploymentTargetsInput$ = ListDeploymentTargetsInput$;
5018
+ exports.ListDeploymentTargetsOutput$ = ListDeploymentTargetsOutput$;
5019
+ exports.ListDeployments$ = ListDeployments$;
1078
5020
  exports.ListDeploymentsCommand = ListDeploymentsCommand;
5021
+ exports.ListDeploymentsInput$ = ListDeploymentsInput$;
5022
+ exports.ListDeploymentsOutput$ = ListDeploymentsOutput$;
5023
+ exports.ListGitHubAccountTokenNames$ = ListGitHubAccountTokenNames$;
1079
5024
  exports.ListGitHubAccountTokenNamesCommand = ListGitHubAccountTokenNamesCommand;
5025
+ exports.ListGitHubAccountTokenNamesInput$ = ListGitHubAccountTokenNamesInput$;
5026
+ exports.ListGitHubAccountTokenNamesOutput$ = ListGitHubAccountTokenNamesOutput$;
5027
+ exports.ListOnPremisesInstances$ = ListOnPremisesInstances$;
1080
5028
  exports.ListOnPremisesInstancesCommand = ListOnPremisesInstancesCommand;
5029
+ exports.ListOnPremisesInstancesInput$ = ListOnPremisesInstancesInput$;
5030
+ exports.ListOnPremisesInstancesOutput$ = ListOnPremisesInstancesOutput$;
1081
5031
  exports.ListStateFilterAction = ListStateFilterAction;
5032
+ exports.ListTagsForResource$ = ListTagsForResource$;
1082
5033
  exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
5034
+ exports.ListTagsForResourceInput$ = ListTagsForResourceInput$;
5035
+ exports.ListTagsForResourceOutput$ = ListTagsForResourceOutput$;
5036
+ exports.LoadBalancerInfo$ = LoadBalancerInfo$;
5037
+ exports.MinimumHealthyHosts$ = MinimumHealthyHosts$;
5038
+ exports.MinimumHealthyHostsPerZone$ = MinimumHealthyHostsPerZone$;
1083
5039
  exports.MinimumHealthyHostsPerZoneType = MinimumHealthyHostsPerZoneType;
1084
5040
  exports.MinimumHealthyHostsType = MinimumHealthyHostsType;
5041
+ exports.MultipleIamArnsProvidedException = MultipleIamArnsProvidedException;
5042
+ exports.MultipleIamArnsProvidedException$ = MultipleIamArnsProvidedException$;
5043
+ exports.OnPremisesTagSet$ = OnPremisesTagSet$;
5044
+ exports.OperationNotSupportedException = OperationNotSupportedException;
5045
+ exports.OperationNotSupportedException$ = OperationNotSupportedException$;
1085
5046
  exports.OutdatedInstancesStrategy = OutdatedInstancesStrategy;
5047
+ exports.PutLifecycleEventHookExecutionStatus$ = PutLifecycleEventHookExecutionStatus$;
1086
5048
  exports.PutLifecycleEventHookExecutionStatusCommand = PutLifecycleEventHookExecutionStatusCommand;
5049
+ exports.PutLifecycleEventHookExecutionStatusInput$ = PutLifecycleEventHookExecutionStatusInput$;
5050
+ exports.PutLifecycleEventHookExecutionStatusOutput$ = PutLifecycleEventHookExecutionStatusOutput$;
5051
+ exports.RawString$ = RawString$;
5052
+ exports.RegisterApplicationRevision$ = RegisterApplicationRevision$;
1087
5053
  exports.RegisterApplicationRevisionCommand = RegisterApplicationRevisionCommand;
5054
+ exports.RegisterApplicationRevisionInput$ = RegisterApplicationRevisionInput$;
5055
+ exports.RegisterOnPremisesInstance$ = RegisterOnPremisesInstance$;
1088
5056
  exports.RegisterOnPremisesInstanceCommand = RegisterOnPremisesInstanceCommand;
5057
+ exports.RegisterOnPremisesInstanceInput$ = RegisterOnPremisesInstanceInput$;
1089
5058
  exports.RegistrationStatus = RegistrationStatus;
5059
+ exports.RelatedDeployments$ = RelatedDeployments$;
5060
+ exports.RemoveTagsFromOnPremisesInstances$ = RemoveTagsFromOnPremisesInstances$;
1090
5061
  exports.RemoveTagsFromOnPremisesInstancesCommand = RemoveTagsFromOnPremisesInstancesCommand;
5062
+ exports.RemoveTagsFromOnPremisesInstancesInput$ = RemoveTagsFromOnPremisesInstancesInput$;
5063
+ exports.ResourceArnRequiredException = ResourceArnRequiredException;
5064
+ exports.ResourceArnRequiredException$ = ResourceArnRequiredException$;
5065
+ exports.ResourceValidationException = ResourceValidationException;
5066
+ exports.ResourceValidationException$ = ResourceValidationException$;
5067
+ exports.RevisionDoesNotExistException = RevisionDoesNotExistException;
5068
+ exports.RevisionDoesNotExistException$ = RevisionDoesNotExistException$;
5069
+ exports.RevisionInfo$ = RevisionInfo$;
5070
+ exports.RevisionLocation$ = RevisionLocation$;
1091
5071
  exports.RevisionLocationType = RevisionLocationType;
5072
+ exports.RevisionRequiredException = RevisionRequiredException;
5073
+ exports.RevisionRequiredException$ = RevisionRequiredException$;
5074
+ exports.RoleRequiredException = RoleRequiredException;
5075
+ exports.RoleRequiredException$ = RoleRequiredException$;
5076
+ exports.RollbackInfo$ = RollbackInfo$;
5077
+ exports.S3Location$ = S3Location$;
5078
+ exports.SkipWaitTimeForInstanceTermination$ = SkipWaitTimeForInstanceTermination$;
1092
5079
  exports.SkipWaitTimeForInstanceTerminationCommand = SkipWaitTimeForInstanceTerminationCommand;
5080
+ exports.SkipWaitTimeForInstanceTerminationInput$ = SkipWaitTimeForInstanceTerminationInput$;
1093
5081
  exports.SortOrder = SortOrder;
5082
+ exports.StopDeployment$ = StopDeployment$;
1094
5083
  exports.StopDeploymentCommand = StopDeploymentCommand;
5084
+ exports.StopDeploymentInput$ = StopDeploymentInput$;
5085
+ exports.StopDeploymentOutput$ = StopDeploymentOutput$;
1095
5086
  exports.StopStatus = StopStatus;
5087
+ exports.Tag$ = Tag$;
5088
+ exports.TagFilter$ = TagFilter$;
1096
5089
  exports.TagFilterType = TagFilterType;
5090
+ exports.TagLimitExceededException = TagLimitExceededException;
5091
+ exports.TagLimitExceededException$ = TagLimitExceededException$;
5092
+ exports.TagRequiredException = TagRequiredException;
5093
+ exports.TagRequiredException$ = TagRequiredException$;
5094
+ exports.TagResource$ = TagResource$;
1097
5095
  exports.TagResourceCommand = TagResourceCommand;
5096
+ exports.TagResourceInput$ = TagResourceInput$;
5097
+ exports.TagResourceOutput$ = TagResourceOutput$;
5098
+ exports.TagSetListLimitExceededException = TagSetListLimitExceededException;
5099
+ exports.TagSetListLimitExceededException$ = TagSetListLimitExceededException$;
1098
5100
  exports.TargetFilterName = TargetFilterName;
5101
+ exports.TargetGroupInfo$ = TargetGroupInfo$;
5102
+ exports.TargetGroupPairInfo$ = TargetGroupPairInfo$;
5103
+ exports.TargetInstances$ = TargetInstances$;
1099
5104
  exports.TargetLabel = TargetLabel;
1100
5105
  exports.TargetStatus = TargetStatus;
5106
+ exports.ThrottlingException = ThrottlingException;
5107
+ exports.ThrottlingException$ = ThrottlingException$;
5108
+ exports.TimeBasedCanary$ = TimeBasedCanary$;
5109
+ exports.TimeBasedLinear$ = TimeBasedLinear$;
5110
+ exports.TimeRange$ = TimeRange$;
5111
+ exports.TrafficRoute$ = TrafficRoute$;
5112
+ exports.TrafficRoutingConfig$ = TrafficRoutingConfig$;
1101
5113
  exports.TrafficRoutingType = TrafficRoutingType;
5114
+ exports.TriggerConfig$ = TriggerConfig$;
1102
5115
  exports.TriggerEventType = TriggerEventType;
5116
+ exports.TriggerTargetsLimitExceededException = TriggerTargetsLimitExceededException;
5117
+ exports.TriggerTargetsLimitExceededException$ = TriggerTargetsLimitExceededException$;
5118
+ exports.UnsupportedActionForDeploymentTypeException = UnsupportedActionForDeploymentTypeException;
5119
+ exports.UnsupportedActionForDeploymentTypeException$ = UnsupportedActionForDeploymentTypeException$;
5120
+ exports.UntagResource$ = UntagResource$;
1103
5121
  exports.UntagResourceCommand = UntagResourceCommand;
5122
+ exports.UntagResourceInput$ = UntagResourceInput$;
5123
+ exports.UntagResourceOutput$ = UntagResourceOutput$;
5124
+ exports.UpdateApplication$ = UpdateApplication$;
1104
5125
  exports.UpdateApplicationCommand = UpdateApplicationCommand;
5126
+ exports.UpdateApplicationInput$ = UpdateApplicationInput$;
5127
+ exports.UpdateDeploymentGroup$ = UpdateDeploymentGroup$;
1105
5128
  exports.UpdateDeploymentGroupCommand = UpdateDeploymentGroupCommand;
5129
+ exports.UpdateDeploymentGroupInput$ = UpdateDeploymentGroupInput$;
5130
+ exports.UpdateDeploymentGroupOutput$ = UpdateDeploymentGroupOutput$;
5131
+ exports.ZonalConfig$ = ZonalConfig$;
1106
5132
  exports._InstanceType = _InstanceType;
5133
+ exports.errorTypeRegistries = errorTypeRegistries;
1107
5134
  exports.paginateListApplicationRevisions = paginateListApplicationRevisions;
1108
5135
  exports.paginateListApplications = paginateListApplications;
1109
5136
  exports.paginateListDeploymentConfigs = paginateListDeploymentConfigs;