@aws-sdk/client-evs 3.952.0 → 3.954.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.
Files changed (33) hide show
  1. package/dist-cjs/index.js +219 -157
  2. package/dist-cjs/runtimeConfig.shared.js +6 -6
  3. package/dist-es/commands/AssociateEipToVlanCommand.js +2 -2
  4. package/dist-es/commands/CreateEnvironmentCommand.js +2 -2
  5. package/dist-es/commands/CreateEnvironmentHostCommand.js +2 -2
  6. package/dist-es/commands/DeleteEnvironmentCommand.js +2 -2
  7. package/dist-es/commands/DeleteEnvironmentHostCommand.js +2 -2
  8. package/dist-es/commands/DisassociateEipFromVlanCommand.js +2 -2
  9. package/dist-es/commands/GetEnvironmentCommand.js +2 -2
  10. package/dist-es/commands/ListEnvironmentHostsCommand.js +2 -2
  11. package/dist-es/commands/ListEnvironmentVlansCommand.js +2 -2
  12. package/dist-es/commands/ListEnvironmentsCommand.js +2 -2
  13. package/dist-es/commands/ListTagsForResourceCommand.js +2 -2
  14. package/dist-es/commands/TagResourceCommand.js +2 -2
  15. package/dist-es/commands/UntagResourceCommand.js +2 -2
  16. package/dist-es/index.js +1 -0
  17. package/dist-es/runtimeConfig.shared.js +6 -6
  18. package/dist-es/schemas/schemas_0.js +131 -131
  19. package/dist-types/EvsClient.d.ts +1 -10
  20. package/dist-types/index.d.ts +1 -0
  21. package/dist-types/runtimeConfig.browser.d.ts +6 -2
  22. package/dist-types/runtimeConfig.d.ts +6 -2
  23. package/dist-types/runtimeConfig.native.d.ts +6 -2
  24. package/dist-types/runtimeConfig.shared.d.ts +6 -1
  25. package/dist-types/schemas/schemas_0.d.ts +63 -79
  26. package/dist-types/ts3.4/EvsClient.d.ts +0 -4
  27. package/dist-types/ts3.4/index.d.ts +1 -0
  28. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -5
  29. package/dist-types/ts3.4/runtimeConfig.d.ts +9 -5
  30. package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -5
  31. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +9 -4
  32. package/dist-types/ts3.4/schemas/schemas_0.d.ts +62 -79
  33. package/package.json +34 -34
package/dist-cjs/index.js CHANGED
@@ -110,14 +110,14 @@ class EvsClient extends smithyClient.Client {
110
110
  }
111
111
  }
112
112
 
113
- let EvsServiceException$1 = class EvsServiceException extends smithyClient.ServiceException {
113
+ class EvsServiceException extends smithyClient.ServiceException {
114
114
  constructor(options) {
115
115
  super(options);
116
116
  Object.setPrototypeOf(this, EvsServiceException.prototype);
117
117
  }
118
- };
118
+ }
119
119
 
120
- let ResourceNotFoundException$1 = class ResourceNotFoundException extends EvsServiceException$1 {
120
+ class ResourceNotFoundException extends EvsServiceException {
121
121
  name = "ResourceNotFoundException";
122
122
  $fault = "client";
123
123
  resourceId;
@@ -132,8 +132,8 @@ let ResourceNotFoundException$1 = class ResourceNotFoundException extends EvsSer
132
132
  this.resourceId = opts.resourceId;
133
133
  this.resourceType = opts.resourceType;
134
134
  }
135
- };
136
- let ThrottlingException$1 = class ThrottlingException extends EvsServiceException$1 {
135
+ }
136
+ class ThrottlingException extends EvsServiceException {
137
137
  name = "ThrottlingException";
138
138
  $fault = "client";
139
139
  $retryable = {};
@@ -147,8 +147,8 @@ let ThrottlingException$1 = class ThrottlingException extends EvsServiceExceptio
147
147
  Object.setPrototypeOf(this, ThrottlingException.prototype);
148
148
  this.retryAfterSeconds = opts.retryAfterSeconds;
149
149
  }
150
- };
151
- let ValidationException$1 = class ValidationException extends EvsServiceException$1 {
150
+ }
151
+ class ValidationException extends EvsServiceException {
152
152
  name = "ValidationException";
153
153
  $fault = "client";
154
154
  reason;
@@ -163,8 +163,8 @@ let ValidationException$1 = class ValidationException extends EvsServiceExceptio
163
163
  this.reason = opts.reason;
164
164
  this.fieldList = opts.fieldList;
165
165
  }
166
- };
167
- let ServiceQuotaExceededException$1 = class ServiceQuotaExceededException extends EvsServiceException$1 {
166
+ }
167
+ class ServiceQuotaExceededException extends EvsServiceException {
168
168
  name = "ServiceQuotaExceededException";
169
169
  $fault = "client";
170
170
  constructor(opts) {
@@ -175,8 +175,8 @@ let ServiceQuotaExceededException$1 = class ServiceQuotaExceededException extend
175
175
  });
176
176
  Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
177
177
  }
178
- };
179
- let TagPolicyException$1 = class TagPolicyException extends EvsServiceException$1 {
178
+ }
179
+ class TagPolicyException extends EvsServiceException {
180
180
  name = "TagPolicyException";
181
181
  $fault = "client";
182
182
  constructor(opts) {
@@ -187,8 +187,8 @@ let TagPolicyException$1 = class TagPolicyException extends EvsServiceException$
187
187
  });
188
188
  Object.setPrototypeOf(this, TagPolicyException.prototype);
189
189
  }
190
- };
191
- let TooManyTagsException$1 = class TooManyTagsException extends EvsServiceException$1 {
190
+ }
191
+ class TooManyTagsException extends EvsServiceException {
192
192
  name = "TooManyTagsException";
193
193
  $fault = "client";
194
194
  constructor(opts) {
@@ -199,7 +199,7 @@ let TooManyTagsException$1 = class TooManyTagsException extends EvsServiceExcept
199
199
  });
200
200
  Object.setPrototypeOf(this, TooManyTagsException.prototype);
201
201
  }
202
- };
202
+ }
203
203
 
204
204
  const _AETV = "AssociateEipToVlan";
205
205
  const _AETVR = "AssociateEipToVlanRequest";
@@ -374,7 +374,7 @@ const _vSl = "vlanState";
374
374
  const _vT = "vTep";
375
375
  const _vV = "vcfVersion";
376
376
  const n0 = "com.amazonaws.evs";
377
- var AssociateEipToVlanRequest = [
377
+ var AssociateEipToVlanRequest$ = [
378
378
  3,
379
379
  n0,
380
380
  _AETVR,
@@ -382,26 +382,26 @@ var AssociateEipToVlanRequest = [
382
382
  [_cT, _eI, _vN, _aI],
383
383
  [[0, 4], 0, 0, 0],
384
384
  ];
385
- var AssociateEipToVlanResponse = [3, n0, _AETVRs, 0, [_v], [() => Vlan]];
386
- var Check = [3, n0, _C, 0, [_t, _r, _iS], [0, 0, 4]];
387
- var ConnectivityInfo = [3, n0, _CI, 0, [_pRSP], [64 | 0]];
388
- var CreateEnvironmentHostRequest = [
385
+ var AssociateEipToVlanResponse$ = [3, n0, _AETVRs, 0, [_v], [() => Vlan$]];
386
+ var Check$ = [3, n0, _C, 0, [_t, _r, _iS], [0, 0, 4]];
387
+ var ConnectivityInfo$ = [3, n0, _CI, 0, [_pRSP], [64 | 0]];
388
+ var CreateEnvironmentHostRequest$ = [
389
389
  3,
390
390
  n0,
391
391
  _CEHR,
392
392
  0,
393
393
  [_cT, _eI, _h],
394
- [[0, 4], 0, () => HostInfoForCreate],
394
+ [[0, 4], 0, () => HostInfoForCreate$],
395
395
  ];
396
- var CreateEnvironmentHostResponse = [
396
+ var CreateEnvironmentHostResponse$ = [
397
397
  3,
398
398
  n0,
399
399
  _CEHRr,
400
400
  0,
401
401
  [_eS, _h],
402
- [() => EnvironmentSummary, () => Host],
402
+ [() => EnvironmentSummary$, () => Host$],
403
403
  ];
404
- var CreateEnvironmentRequest = [
404
+ var CreateEnvironmentRequest$ = [
405
405
  3,
406
406
  n0,
407
407
  _CER,
@@ -412,30 +412,30 @@ var CreateEnvironmentRequest = [
412
412
  0,
413
413
  0,
414
414
  128 | 0,
415
- () => ServiceAccessSecurityGroups,
415
+ () => ServiceAccessSecurityGroups$,
416
416
  0,
417
417
  0,
418
418
  0,
419
419
  2,
420
420
  () => LicenseInfoList,
421
- () => InitialVlans,
421
+ () => InitialVlans$,
422
422
  () => HostInfoForCreateList,
423
- () => ConnectivityInfo,
424
- () => VcfHostnames,
423
+ () => ConnectivityInfo$,
424
+ () => VcfHostnames$,
425
425
  0,
426
426
  ],
427
427
  ];
428
- var CreateEnvironmentResponse = [3, n0, _CERr, 0, [_e], [() => Environment]];
429
- var DeleteEnvironmentHostRequest = [3, n0, _DEHR, 0, [_cT, _eI, _hN], [[0, 4], 0, 0]];
430
- var DeleteEnvironmentHostResponse = [
428
+ var CreateEnvironmentResponse$ = [3, n0, _CERr, 0, [_e], [() => Environment$]];
429
+ var DeleteEnvironmentHostRequest$ = [3, n0, _DEHR, 0, [_cT, _eI, _hN], [[0, 4], 0, 0]];
430
+ var DeleteEnvironmentHostResponse$ = [
431
431
  3,
432
432
  n0,
433
433
  _DEHRe,
434
434
  0,
435
435
  [_eS, _h],
436
- [() => EnvironmentSummary, () => Host],
436
+ [() => EnvironmentSummary$, () => Host$],
437
437
  ];
438
- var DeleteEnvironmentRequest = [
438
+ var DeleteEnvironmentRequest$ = [
439
439
  3,
440
440
  n0,
441
441
  _DER,
@@ -446,8 +446,8 @@ var DeleteEnvironmentRequest = [
446
446
  [0, 1],
447
447
  ],
448
448
  ];
449
- var DeleteEnvironmentResponse = [3, n0, _DERe, 0, [_e], [() => Environment]];
450
- var DisassociateEipFromVlanRequest = [
449
+ var DeleteEnvironmentResponse$ = [3, n0, _DERe, 0, [_e], [() => Environment$]];
450
+ var DisassociateEipFromVlanRequest$ = [
451
451
  3,
452
452
  n0,
453
453
  _DEFVR,
@@ -455,9 +455,9 @@ var DisassociateEipFromVlanRequest = [
455
455
  [_cT, _eI, _vN, _aIs],
456
456
  [[0, 4], 0, 0, 0],
457
457
  ];
458
- var DisassociateEipFromVlanResponse = [3, n0, _DEFVRi, 0, [_v], [() => Vlan]];
459
- var EipAssociation = [3, n0, _EA, 0, [_aIs, _aI, _iA], [0, 0, 0]];
460
- var Environment = [
458
+ var DisassociateEipFromVlanResponse$ = [3, n0, _DEFVRi, 0, [_v], [() => Vlan$]];
459
+ var EipAssociation$ = [3, n0, _EA, 0, [_aIs, _aI, _iA], [0, 0, 0]];
460
+ var Environment$ = [
461
461
  3,
462
462
  n0,
463
463
  _E,
@@ -479,14 +479,14 @@ var Environment = [
479
479
  0,
480
480
  0,
481
481
  () => ChecksList,
482
- () => ConnectivityInfo,
483
- () => VcfHostnames,
482
+ () => ConnectivityInfo$,
483
+ () => VcfHostnames$,
484
484
  0,
485
- () => ServiceAccessSecurityGroups,
485
+ () => ServiceAccessSecurityGroups$,
486
486
  () => SecretList,
487
487
  ],
488
488
  ];
489
- var EnvironmentSummary = [
489
+ var EnvironmentSummary$ = [
490
490
  3,
491
491
  n0,
492
492
  _ES,
@@ -494,9 +494,9 @@ var EnvironmentSummary = [
494
494
  [_eI, _eN, _vV, _eSnv, _eSn, _cA, _mA, _eA],
495
495
  [0, 0, 0, 0, 0, 4, 4, 0],
496
496
  ];
497
- var GetEnvironmentRequest = [3, n0, _GER, 0, [_eI], [[0, 1]]];
498
- var GetEnvironmentResponse = [3, n0, _GERe, 0, [_e], [() => Environment]];
499
- var Host = [
497
+ var GetEnvironmentRequest$ = [3, n0, _GER, 0, [_eI], [[0, 1]]];
498
+ var GetEnvironmentResponse$ = [3, n0, _GERe, 0, [_e], [() => Environment$]];
499
+ var Host$ = [
500
500
  3,
501
501
  n0,
502
502
  _H,
@@ -504,31 +504,31 @@ var Host = [
504
504
  [_hN, _iA, _kN, _iT, _pGI, _dHI, _cA, _mA, _hS, _sD, _eII, _nI],
505
505
  [0, 0, 0, 0, 0, 0, 4, 4, 0, 0, 0, () => NetworkInterfaceList],
506
506
  ];
507
- var HostInfoForCreate = [3, n0, _HIFC, 0, [_hN, _kN, _iT, _pGI, _dHI], [0, 0, 0, 0, 0]];
508
- var InitialVlanInfo = [3, n0, _IVI, 0, [_ci], [0]];
509
- var InitialVlans = [
507
+ var HostInfoForCreate$ = [3, n0, _HIFC, 0, [_hN, _kN, _iT, _pGI, _dHI], [0, 0, 0, 0, 0]];
508
+ var InitialVlanInfo$ = [3, n0, _IVI, 0, [_ci], [0]];
509
+ var InitialVlans$ = [
510
510
  3,
511
511
  n0,
512
512
  _IV,
513
513
  0,
514
514
  [_vM, _vMm, _vMo, _vS, _vT, _eVT, _nU, _hc, _eV, _eVx, _iHP, _hNAI],
515
515
  [
516
- () => InitialVlanInfo,
517
- () => InitialVlanInfo,
518
- () => InitialVlanInfo,
519
- () => InitialVlanInfo,
520
- () => InitialVlanInfo,
521
- () => InitialVlanInfo,
522
- () => InitialVlanInfo,
523
- () => InitialVlanInfo,
524
- () => InitialVlanInfo,
525
- () => InitialVlanInfo,
516
+ () => InitialVlanInfo$,
517
+ () => InitialVlanInfo$,
518
+ () => InitialVlanInfo$,
519
+ () => InitialVlanInfo$,
520
+ () => InitialVlanInfo$,
521
+ () => InitialVlanInfo$,
522
+ () => InitialVlanInfo$,
523
+ () => InitialVlanInfo$,
524
+ () => InitialVlanInfo$,
525
+ () => InitialVlanInfo$,
526
526
  2,
527
527
  0,
528
528
  ],
529
529
  ];
530
- var LicenseInfo = [3, n0, _LI, 0, [_sK, _vK], [0, 0]];
531
- var ListEnvironmentHostsRequest = [
530
+ var LicenseInfo$ = [3, n0, _LI, 0, [_sK, _vK], [0, 0]];
531
+ var ListEnvironmentHostsRequest$ = [
532
532
  3,
533
533
  n0,
534
534
  _LEHR,
@@ -540,8 +540,8 @@ var ListEnvironmentHostsRequest = [
540
540
  [0, 1],
541
541
  ],
542
542
  ];
543
- var ListEnvironmentHostsResponse = [3, n0, _LEHRi, 0, [_nT, _eH], [0, () => HostList]];
544
- var ListEnvironmentsRequest = [
543
+ var ListEnvironmentHostsResponse$ = [3, n0, _LEHRi, 0, [_nT, _eH], [0, () => HostList]];
544
+ var ListEnvironmentsRequest$ = [
545
545
  3,
546
546
  n0,
547
547
  _LER,
@@ -553,7 +553,7 @@ var ListEnvironmentsRequest = [
553
553
  [64 | 0, { [_hQ]: _s }],
554
554
  ],
555
555
  ];
556
- var ListEnvironmentsResponse = [
556
+ var ListEnvironmentsResponse$ = [
557
557
  3,
558
558
  n0,
559
559
  _LERi,
@@ -561,7 +561,7 @@ var ListEnvironmentsResponse = [
561
561
  [_nT, _eSnvi],
562
562
  [0, () => EnvironmentSummaryList],
563
563
  ];
564
- var ListEnvironmentVlansRequest = [
564
+ var ListEnvironmentVlansRequest$ = [
565
565
  3,
566
566
  n0,
567
567
  _LEVR,
@@ -573,11 +573,11 @@ var ListEnvironmentVlansRequest = [
573
573
  [0, 1],
574
574
  ],
575
575
  ];
576
- var ListEnvironmentVlansResponse = [3, n0, _LEVRi, 0, [_nT, _eVn], [0, () => VlanList]];
577
- var ListTagsForResourceRequest = [3, n0, _LTFRR, 0, [_rA], [0]];
578
- var ListTagsForResourceResponse = [3, n0, _LTFRRi, 0, [_ta], [128 | 0]];
579
- var NetworkInterface = [3, n0, _NI, 0, [_nII], [0]];
580
- var ResourceNotFoundException = [
576
+ var ListEnvironmentVlansResponse$ = [3, n0, _LEVRi, 0, [_nT, _eVn], [0, () => VlanList]];
577
+ var ListTagsForResourceRequest$ = [3, n0, _LTFRR, 0, [_rA], [0]];
578
+ var ListTagsForResourceResponse$ = [3, n0, _LTFRRi, 0, [_ta], [128 | 0]];
579
+ var NetworkInterface$ = [3, n0, _NI, 0, [_nII], [0]];
580
+ var ResourceNotFoundException$ = [
581
581
  -3,
582
582
  n0,
583
583
  _RNFE,
@@ -585,16 +585,16 @@ var ResourceNotFoundException = [
585
585
  [_m, _rI, _rT],
586
586
  [0, 0, 0],
587
587
  ];
588
- schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException, ResourceNotFoundException$1);
589
- var Secret = [3, n0, _S, 0, [_sA], [0]];
590
- var ServiceAccessSecurityGroups = [3, n0, _SASG, 0, [_sG], [64 | 0]];
591
- var ServiceQuotaExceededException = [-3, n0, _SQEE, { [_er]: _cl, [_hE]: 402 }, [_m], [0]];
592
- schema.TypeRegistry.for(n0).registerError(ServiceQuotaExceededException, ServiceQuotaExceededException$1);
593
- var TagPolicyException = [-3, n0, _TPE, { [_er]: _cl, [_hE]: 400 }, [_m], [0]];
594
- schema.TypeRegistry.for(n0).registerError(TagPolicyException, TagPolicyException$1);
595
- var TagResourceRequest = [3, n0, _TRR, 0, [_rA, _ta], [0, 128 | 0]];
596
- var TagResourceResponse = [3, n0, _TRRa, 0, [], []];
597
- var ThrottlingException = [
588
+ schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException$, ResourceNotFoundException);
589
+ var Secret$ = [3, n0, _S, 0, [_sA], [0]];
590
+ var ServiceAccessSecurityGroups$ = [3, n0, _SASG, 0, [_sG], [64 | 0]];
591
+ var ServiceQuotaExceededException$ = [-3, n0, _SQEE, { [_er]: _cl, [_hE]: 402 }, [_m], [0]];
592
+ schema.TypeRegistry.for(n0).registerError(ServiceQuotaExceededException$, ServiceQuotaExceededException);
593
+ var TagPolicyException$ = [-3, n0, _TPE, { [_er]: _cl, [_hE]: 400 }, [_m], [0]];
594
+ schema.TypeRegistry.for(n0).registerError(TagPolicyException$, TagPolicyException);
595
+ var TagResourceRequest$ = [3, n0, _TRR, 0, [_rA, _ta], [0, 128 | 0]];
596
+ var TagResourceResponse$ = [3, n0, _TRRa, 0, [], []];
597
+ var ThrottlingException$ = [
598
598
  -3,
599
599
  n0,
600
600
  _TE,
@@ -602,12 +602,12 @@ var ThrottlingException = [
602
602
  [_m, _rAS],
603
603
  [0, [1, { [_hH]: _RA }]],
604
604
  ];
605
- schema.TypeRegistry.for(n0).registerError(ThrottlingException, ThrottlingException$1);
606
- var TooManyTagsException = [-3, n0, _TMTE, { [_er]: _cl, [_hE]: 400 }, [_m], [0]];
607
- schema.TypeRegistry.for(n0).registerError(TooManyTagsException, TooManyTagsException$1);
608
- var UntagResourceRequest = [3, n0, _URR, 0, [_rA, _tK], [0, 64 | 0]];
609
- var UntagResourceResponse = [3, n0, _URRn, 0, [], []];
610
- var ValidationException = [
605
+ schema.TypeRegistry.for(n0).registerError(ThrottlingException$, ThrottlingException);
606
+ var TooManyTagsException$ = [-3, n0, _TMTE, { [_er]: _cl, [_hE]: 400 }, [_m], [0]];
607
+ schema.TypeRegistry.for(n0).registerError(TooManyTagsException$, TooManyTagsException);
608
+ var UntagResourceRequest$ = [3, n0, _URR, 0, [_rA, _tK], [0, 64 | 0]];
609
+ var UntagResourceResponse$ = [3, n0, _URRn, 0, [], []];
610
+ var ValidationException$ = [
611
611
  -3,
612
612
  n0,
613
613
  _VE,
@@ -615,9 +615,9 @@ var ValidationException = [
615
615
  [_m, _re, _fL],
616
616
  [0, 0, () => ValidationExceptionFieldList],
617
617
  ];
618
- schema.TypeRegistry.for(n0).registerError(ValidationException, ValidationException$1);
619
- var ValidationExceptionField = [3, n0, _VEF, 0, [_n, _m], [0, 0]];
620
- var VcfHostnames = [
618
+ schema.TypeRegistry.for(n0).registerError(ValidationException$, ValidationException);
619
+ var ValidationExceptionField$ = [3, n0, _VEF, 0, [_n, _m], [0, 0]];
620
+ var VcfHostnames$ = [
621
621
  3,
622
622
  n0,
623
623
  _VH,
@@ -625,7 +625,7 @@ var VcfHostnames = [
625
625
  [_vC, _ns, _nM, _nMs, _nMsx, _nE, _nEs, _sM, _cB],
626
626
  [0, 0, 0, 0, 0, 0, 0, 0, 0],
627
627
  ];
628
- var Vlan = [
628
+ var Vlan$ = [
629
629
  3,
630
630
  n0,
631
631
  _V,
@@ -633,114 +633,114 @@ var Vlan = [
633
633
  [_vIl, _ci, _aZ, _fN, _sIu, _cA, _mA, _vSl, _sD, _eAi, _iP, _nAI],
634
634
  [1, 0, 0, 0, 0, 4, 4, 0, 0, () => EipAssociationList, 2, 0],
635
635
  ];
636
- var EvsServiceException = [-3, _sm, "EvsServiceException", 0, [], []];
637
- schema.TypeRegistry.for(_sm).registerError(EvsServiceException, EvsServiceException$1);
638
- var ChecksList = [1, n0, _CL, 0, () => Check];
639
- var EipAssociationList = [1, n0, _EAL, 0, () => EipAssociation];
640
- var EnvironmentSummaryList = [1, n0, _ESL, 0, () => EnvironmentSummary];
641
- var HostInfoForCreateList = [1, n0, _HIFCL, 0, () => HostInfoForCreate];
642
- var HostList = [1, n0, _HL, 0, () => Host];
643
- var LicenseInfoList = [1, n0, _LIL, 0, () => LicenseInfo];
644
- var NetworkInterfaceList = [1, n0, _NIL, 0, () => NetworkInterface];
645
- var SecretList = [1, n0, _SL, 0, () => Secret];
646
- var ValidationExceptionFieldList = [1, n0, _VEFL, 0, () => ValidationExceptionField];
647
- var VlanList = [1, n0, _VL, 0, () => Vlan];
648
- var AssociateEipToVlan = [
636
+ var EvsServiceException$ = [-3, _sm, "EvsServiceException", 0, [], []];
637
+ schema.TypeRegistry.for(_sm).registerError(EvsServiceException$, EvsServiceException);
638
+ var ChecksList = [1, n0, _CL, 0, () => Check$];
639
+ var EipAssociationList = [1, n0, _EAL, 0, () => EipAssociation$];
640
+ var EnvironmentSummaryList = [1, n0, _ESL, 0, () => EnvironmentSummary$];
641
+ var HostInfoForCreateList = [1, n0, _HIFCL, 0, () => HostInfoForCreate$];
642
+ var HostList = [1, n0, _HL, 0, () => Host$];
643
+ var LicenseInfoList = [1, n0, _LIL, 0, () => LicenseInfo$];
644
+ var NetworkInterfaceList = [1, n0, _NIL, 0, () => NetworkInterface$];
645
+ var SecretList = [1, n0, _SL, 0, () => Secret$];
646
+ var ValidationExceptionFieldList = [1, n0, _VEFL, 0, () => ValidationExceptionField$];
647
+ var VlanList = [1, n0, _VL, 0, () => Vlan$];
648
+ var AssociateEipToVlan$ = [
649
649
  9,
650
650
  n0,
651
651
  _AETV,
652
652
  2,
653
- () => AssociateEipToVlanRequest,
654
- () => AssociateEipToVlanResponse,
653
+ () => AssociateEipToVlanRequest$,
654
+ () => AssociateEipToVlanResponse$,
655
655
  ];
656
- var CreateEnvironment = [
656
+ var CreateEnvironment$ = [
657
657
  9,
658
658
  n0,
659
659
  _CE,
660
660
  2,
661
- () => CreateEnvironmentRequest,
662
- () => CreateEnvironmentResponse,
661
+ () => CreateEnvironmentRequest$,
662
+ () => CreateEnvironmentResponse$,
663
663
  ];
664
- var CreateEnvironmentHost = [
664
+ var CreateEnvironmentHost$ = [
665
665
  9,
666
666
  n0,
667
667
  _CEH,
668
668
  2,
669
- () => CreateEnvironmentHostRequest,
670
- () => CreateEnvironmentHostResponse,
669
+ () => CreateEnvironmentHostRequest$,
670
+ () => CreateEnvironmentHostResponse$,
671
671
  ];
672
- var DeleteEnvironment = [
672
+ var DeleteEnvironment$ = [
673
673
  9,
674
674
  n0,
675
675
  _DE,
676
676
  2,
677
- () => DeleteEnvironmentRequest,
678
- () => DeleteEnvironmentResponse,
677
+ () => DeleteEnvironmentRequest$,
678
+ () => DeleteEnvironmentResponse$,
679
679
  ];
680
- var DeleteEnvironmentHost = [
680
+ var DeleteEnvironmentHost$ = [
681
681
  9,
682
682
  n0,
683
683
  _DEH,
684
684
  2,
685
- () => DeleteEnvironmentHostRequest,
686
- () => DeleteEnvironmentHostResponse,
685
+ () => DeleteEnvironmentHostRequest$,
686
+ () => DeleteEnvironmentHostResponse$,
687
687
  ];
688
- var DisassociateEipFromVlan = [
688
+ var DisassociateEipFromVlan$ = [
689
689
  9,
690
690
  n0,
691
691
  _DEFV,
692
692
  2,
693
- () => DisassociateEipFromVlanRequest,
694
- () => DisassociateEipFromVlanResponse,
693
+ () => DisassociateEipFromVlanRequest$,
694
+ () => DisassociateEipFromVlanResponse$,
695
695
  ];
696
- var GetEnvironment = [
696
+ var GetEnvironment$ = [
697
697
  9,
698
698
  n0,
699
699
  _GE,
700
700
  0,
701
- () => GetEnvironmentRequest,
702
- () => GetEnvironmentResponse,
701
+ () => GetEnvironmentRequest$,
702
+ () => GetEnvironmentResponse$,
703
703
  ];
704
- var ListEnvironmentHosts = [
704
+ var ListEnvironmentHosts$ = [
705
705
  9,
706
706
  n0,
707
707
  _LEH,
708
708
  0,
709
- () => ListEnvironmentHostsRequest,
710
- () => ListEnvironmentHostsResponse,
709
+ () => ListEnvironmentHostsRequest$,
710
+ () => ListEnvironmentHostsResponse$,
711
711
  ];
712
- var ListEnvironments = [
712
+ var ListEnvironments$ = [
713
713
  9,
714
714
  n0,
715
715
  _LE,
716
716
  0,
717
- () => ListEnvironmentsRequest,
718
- () => ListEnvironmentsResponse,
717
+ () => ListEnvironmentsRequest$,
718
+ () => ListEnvironmentsResponse$,
719
719
  ];
720
- var ListEnvironmentVlans = [
720
+ var ListEnvironmentVlans$ = [
721
721
  9,
722
722
  n0,
723
723
  _LEV,
724
724
  0,
725
- () => ListEnvironmentVlansRequest,
726
- () => ListEnvironmentVlansResponse,
725
+ () => ListEnvironmentVlansRequest$,
726
+ () => ListEnvironmentVlansResponse$,
727
727
  ];
728
- var ListTagsForResource = [
728
+ var ListTagsForResource$ = [
729
729
  9,
730
730
  n0,
731
731
  _LTFR,
732
732
  0,
733
- () => ListTagsForResourceRequest,
734
- () => ListTagsForResourceResponse,
733
+ () => ListTagsForResourceRequest$,
734
+ () => ListTagsForResourceResponse$,
735
735
  ];
736
- var TagResource = [9, n0, _TR, 2, () => TagResourceRequest, () => TagResourceResponse];
737
- var UntagResource = [
736
+ var TagResource$ = [9, n0, _TR, 2, () => TagResourceRequest$, () => TagResourceResponse$];
737
+ var UntagResource$ = [
738
738
  9,
739
739
  n0,
740
740
  _UR,
741
741
  2,
742
- () => UntagResourceRequest,
743
- () => UntagResourceResponse,
742
+ () => UntagResourceRequest$,
743
+ () => UntagResourceResponse$,
744
744
  ];
745
745
 
746
746
  class AssociateEipToVlanCommand extends smithyClient.Command
@@ -751,7 +751,7 @@ class AssociateEipToVlanCommand extends smithyClient.Command
751
751
  })
752
752
  .s("AmazonElasticVMwareService", "AssociateEipToVlan", {})
753
753
  .n("EvsClient", "AssociateEipToVlanCommand")
754
- .sc(AssociateEipToVlan)
754
+ .sc(AssociateEipToVlan$)
755
755
  .build() {
756
756
  }
757
757
 
@@ -763,7 +763,7 @@ class CreateEnvironmentCommand extends smithyClient.Command
763
763
  })
764
764
  .s("AmazonElasticVMwareService", "CreateEnvironment", {})
765
765
  .n("EvsClient", "CreateEnvironmentCommand")
766
- .sc(CreateEnvironment)
766
+ .sc(CreateEnvironment$)
767
767
  .build() {
768
768
  }
769
769
 
@@ -775,7 +775,7 @@ class CreateEnvironmentHostCommand extends smithyClient.Command
775
775
  })
776
776
  .s("AmazonElasticVMwareService", "CreateEnvironmentHost", {})
777
777
  .n("EvsClient", "CreateEnvironmentHostCommand")
778
- .sc(CreateEnvironmentHost)
778
+ .sc(CreateEnvironmentHost$)
779
779
  .build() {
780
780
  }
781
781
 
@@ -787,7 +787,7 @@ class DeleteEnvironmentCommand extends smithyClient.Command
787
787
  })
788
788
  .s("AmazonElasticVMwareService", "DeleteEnvironment", {})
789
789
  .n("EvsClient", "DeleteEnvironmentCommand")
790
- .sc(DeleteEnvironment)
790
+ .sc(DeleteEnvironment$)
791
791
  .build() {
792
792
  }
793
793
 
@@ -799,7 +799,7 @@ class DeleteEnvironmentHostCommand extends smithyClient.Command
799
799
  })
800
800
  .s("AmazonElasticVMwareService", "DeleteEnvironmentHost", {})
801
801
  .n("EvsClient", "DeleteEnvironmentHostCommand")
802
- .sc(DeleteEnvironmentHost)
802
+ .sc(DeleteEnvironmentHost$)
803
803
  .build() {
804
804
  }
805
805
 
@@ -811,7 +811,7 @@ class DisassociateEipFromVlanCommand extends smithyClient.Command
811
811
  })
812
812
  .s("AmazonElasticVMwareService", "DisassociateEipFromVlan", {})
813
813
  .n("EvsClient", "DisassociateEipFromVlanCommand")
814
- .sc(DisassociateEipFromVlan)
814
+ .sc(DisassociateEipFromVlan$)
815
815
  .build() {
816
816
  }
817
817
 
@@ -823,7 +823,7 @@ class GetEnvironmentCommand extends smithyClient.Command
823
823
  })
824
824
  .s("AmazonElasticVMwareService", "GetEnvironment", {})
825
825
  .n("EvsClient", "GetEnvironmentCommand")
826
- .sc(GetEnvironment)
826
+ .sc(GetEnvironment$)
827
827
  .build() {
828
828
  }
829
829
 
@@ -835,7 +835,7 @@ class ListEnvironmentHostsCommand extends smithyClient.Command
835
835
  })
836
836
  .s("AmazonElasticVMwareService", "ListEnvironmentHosts", {})
837
837
  .n("EvsClient", "ListEnvironmentHostsCommand")
838
- .sc(ListEnvironmentHosts)
838
+ .sc(ListEnvironmentHosts$)
839
839
  .build() {
840
840
  }
841
841
 
@@ -847,7 +847,7 @@ class ListEnvironmentsCommand extends smithyClient.Command
847
847
  })
848
848
  .s("AmazonElasticVMwareService", "ListEnvironments", {})
849
849
  .n("EvsClient", "ListEnvironmentsCommand")
850
- .sc(ListEnvironments)
850
+ .sc(ListEnvironments$)
851
851
  .build() {
852
852
  }
853
853
 
@@ -859,7 +859,7 @@ class ListEnvironmentVlansCommand extends smithyClient.Command
859
859
  })
860
860
  .s("AmazonElasticVMwareService", "ListEnvironmentVlans", {})
861
861
  .n("EvsClient", "ListEnvironmentVlansCommand")
862
- .sc(ListEnvironmentVlans)
862
+ .sc(ListEnvironmentVlans$)
863
863
  .build() {
864
864
  }
865
865
 
@@ -871,7 +871,7 @@ class ListTagsForResourceCommand extends smithyClient.Command
871
871
  })
872
872
  .s("AmazonElasticVMwareService", "ListTagsForResource", {})
873
873
  .n("EvsClient", "ListTagsForResourceCommand")
874
- .sc(ListTagsForResource)
874
+ .sc(ListTagsForResource$)
875
875
  .build() {
876
876
  }
877
877
 
@@ -883,7 +883,7 @@ class TagResourceCommand extends smithyClient.Command
883
883
  })
884
884
  .s("AmazonElasticVMwareService", "TagResource", {})
885
885
  .n("EvsClient", "TagResourceCommand")
886
- .sc(TagResource)
886
+ .sc(TagResource$)
887
887
  .build() {
888
888
  }
889
889
 
@@ -895,7 +895,7 @@ class UntagResourceCommand extends smithyClient.Command
895
895
  })
896
896
  .s("AmazonElasticVMwareService", "UntagResource", {})
897
897
  .n("EvsClient", "UntagResourceCommand")
898
- .sc(UntagResource)
898
+ .sc(UntagResource$)
899
899
  .build() {
900
900
  }
901
901
 
@@ -979,34 +979,96 @@ Object.defineProperty(exports, "__Client", {
979
979
  enumerable: true,
980
980
  get: function () { return smithyClient.Client; }
981
981
  });
982
+ exports.AssociateEipToVlan$ = AssociateEipToVlan$;
982
983
  exports.AssociateEipToVlanCommand = AssociateEipToVlanCommand;
984
+ exports.AssociateEipToVlanRequest$ = AssociateEipToVlanRequest$;
985
+ exports.AssociateEipToVlanResponse$ = AssociateEipToVlanResponse$;
986
+ exports.Check$ = Check$;
983
987
  exports.CheckResult = CheckResult;
984
988
  exports.CheckType = CheckType;
989
+ exports.ConnectivityInfo$ = ConnectivityInfo$;
990
+ exports.CreateEnvironment$ = CreateEnvironment$;
985
991
  exports.CreateEnvironmentCommand = CreateEnvironmentCommand;
992
+ exports.CreateEnvironmentHost$ = CreateEnvironmentHost$;
986
993
  exports.CreateEnvironmentHostCommand = CreateEnvironmentHostCommand;
994
+ exports.CreateEnvironmentHostRequest$ = CreateEnvironmentHostRequest$;
995
+ exports.CreateEnvironmentHostResponse$ = CreateEnvironmentHostResponse$;
996
+ exports.CreateEnvironmentRequest$ = CreateEnvironmentRequest$;
997
+ exports.CreateEnvironmentResponse$ = CreateEnvironmentResponse$;
998
+ exports.DeleteEnvironment$ = DeleteEnvironment$;
987
999
  exports.DeleteEnvironmentCommand = DeleteEnvironmentCommand;
1000
+ exports.DeleteEnvironmentHost$ = DeleteEnvironmentHost$;
988
1001
  exports.DeleteEnvironmentHostCommand = DeleteEnvironmentHostCommand;
1002
+ exports.DeleteEnvironmentHostRequest$ = DeleteEnvironmentHostRequest$;
1003
+ exports.DeleteEnvironmentHostResponse$ = DeleteEnvironmentHostResponse$;
1004
+ exports.DeleteEnvironmentRequest$ = DeleteEnvironmentRequest$;
1005
+ exports.DeleteEnvironmentResponse$ = DeleteEnvironmentResponse$;
1006
+ exports.DisassociateEipFromVlan$ = DisassociateEipFromVlan$;
989
1007
  exports.DisassociateEipFromVlanCommand = DisassociateEipFromVlanCommand;
1008
+ exports.DisassociateEipFromVlanRequest$ = DisassociateEipFromVlanRequest$;
1009
+ exports.DisassociateEipFromVlanResponse$ = DisassociateEipFromVlanResponse$;
1010
+ exports.EipAssociation$ = EipAssociation$;
1011
+ exports.Environment$ = Environment$;
990
1012
  exports.EnvironmentState = EnvironmentState;
1013
+ exports.EnvironmentSummary$ = EnvironmentSummary$;
991
1014
  exports.Evs = Evs;
992
1015
  exports.EvsClient = EvsClient;
993
- exports.EvsServiceException = EvsServiceException$1;
1016
+ exports.EvsServiceException = EvsServiceException;
1017
+ exports.EvsServiceException$ = EvsServiceException$;
1018
+ exports.GetEnvironment$ = GetEnvironment$;
994
1019
  exports.GetEnvironmentCommand = GetEnvironmentCommand;
1020
+ exports.GetEnvironmentRequest$ = GetEnvironmentRequest$;
1021
+ exports.GetEnvironmentResponse$ = GetEnvironmentResponse$;
1022
+ exports.Host$ = Host$;
1023
+ exports.HostInfoForCreate$ = HostInfoForCreate$;
995
1024
  exports.HostState = HostState;
1025
+ exports.InitialVlanInfo$ = InitialVlanInfo$;
1026
+ exports.InitialVlans$ = InitialVlans$;
1027
+ exports.LicenseInfo$ = LicenseInfo$;
1028
+ exports.ListEnvironmentHosts$ = ListEnvironmentHosts$;
996
1029
  exports.ListEnvironmentHostsCommand = ListEnvironmentHostsCommand;
1030
+ exports.ListEnvironmentHostsRequest$ = ListEnvironmentHostsRequest$;
1031
+ exports.ListEnvironmentHostsResponse$ = ListEnvironmentHostsResponse$;
1032
+ exports.ListEnvironmentVlans$ = ListEnvironmentVlans$;
997
1033
  exports.ListEnvironmentVlansCommand = ListEnvironmentVlansCommand;
1034
+ exports.ListEnvironmentVlansRequest$ = ListEnvironmentVlansRequest$;
1035
+ exports.ListEnvironmentVlansResponse$ = ListEnvironmentVlansResponse$;
1036
+ exports.ListEnvironments$ = ListEnvironments$;
998
1037
  exports.ListEnvironmentsCommand = ListEnvironmentsCommand;
1038
+ exports.ListEnvironmentsRequest$ = ListEnvironmentsRequest$;
1039
+ exports.ListEnvironmentsResponse$ = ListEnvironmentsResponse$;
1040
+ exports.ListTagsForResource$ = ListTagsForResource$;
999
1041
  exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
1000
- exports.ResourceNotFoundException = ResourceNotFoundException$1;
1001
- exports.ServiceQuotaExceededException = ServiceQuotaExceededException$1;
1002
- exports.TagPolicyException = TagPolicyException$1;
1042
+ exports.ListTagsForResourceRequest$ = ListTagsForResourceRequest$;
1043
+ exports.ListTagsForResourceResponse$ = ListTagsForResourceResponse$;
1044
+ exports.NetworkInterface$ = NetworkInterface$;
1045
+ exports.ResourceNotFoundException = ResourceNotFoundException;
1046
+ exports.ResourceNotFoundException$ = ResourceNotFoundException$;
1047
+ exports.Secret$ = Secret$;
1048
+ exports.ServiceAccessSecurityGroups$ = ServiceAccessSecurityGroups$;
1049
+ exports.ServiceQuotaExceededException = ServiceQuotaExceededException;
1050
+ exports.ServiceQuotaExceededException$ = ServiceQuotaExceededException$;
1051
+ exports.TagPolicyException = TagPolicyException;
1052
+ exports.TagPolicyException$ = TagPolicyException$;
1053
+ exports.TagResource$ = TagResource$;
1003
1054
  exports.TagResourceCommand = TagResourceCommand;
1004
- exports.ThrottlingException = ThrottlingException$1;
1005
- exports.TooManyTagsException = TooManyTagsException$1;
1055
+ exports.TagResourceRequest$ = TagResourceRequest$;
1056
+ exports.TagResourceResponse$ = TagResourceResponse$;
1057
+ exports.ThrottlingException = ThrottlingException;
1058
+ exports.ThrottlingException$ = ThrottlingException$;
1059
+ exports.TooManyTagsException = TooManyTagsException;
1060
+ exports.TooManyTagsException$ = TooManyTagsException$;
1061
+ exports.UntagResource$ = UntagResource$;
1006
1062
  exports.UntagResourceCommand = UntagResourceCommand;
1007
- exports.ValidationException = ValidationException$1;
1063
+ exports.UntagResourceRequest$ = UntagResourceRequest$;
1064
+ exports.UntagResourceResponse$ = UntagResourceResponse$;
1065
+ exports.ValidationException = ValidationException;
1066
+ exports.ValidationException$ = ValidationException$;
1067
+ exports.ValidationExceptionField$ = ValidationExceptionField$;
1008
1068
  exports.ValidationExceptionReason = ValidationExceptionReason;
1069
+ exports.VcfHostnames$ = VcfHostnames$;
1009
1070
  exports.VcfVersion = VcfVersion;
1071
+ exports.Vlan$ = Vlan$;
1010
1072
  exports.VlanState = VlanState;
1011
1073
  exports._InstanceType = _InstanceType;
1012
1074
  exports.paginateListEnvironmentHosts = paginateListEnvironmentHosts;