@aws-sdk/client-evs 3.987.0 → 3.989.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,12 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.EvsServiceException = exports.__ServiceException = void 0;
4
+ const smithy_client_1 = require("@smithy/smithy-client");
5
+ Object.defineProperty(exports, "__ServiceException", { enumerable: true, get: function () { return smithy_client_1.ServiceException; } });
6
+ class EvsServiceException extends smithy_client_1.ServiceException {
7
+ constructor(options) {
8
+ super(options);
9
+ Object.setPrototypeOf(this, EvsServiceException.prototype);
10
+ }
11
+ }
12
+ exports.EvsServiceException = EvsServiceException;
@@ -0,0 +1,107 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.TooManyTagsException = exports.TagPolicyException = exports.ServiceQuotaExceededException = exports.InternalServerException = exports.ValidationException = exports.ThrottlingException = exports.ResourceNotFoundException = void 0;
4
+ const EvsServiceException_1 = require("./EvsServiceException");
5
+ class ResourceNotFoundException extends EvsServiceException_1.EvsServiceException {
6
+ name = "ResourceNotFoundException";
7
+ $fault = "client";
8
+ resourceId;
9
+ resourceType;
10
+ constructor(opts) {
11
+ super({
12
+ name: "ResourceNotFoundException",
13
+ $fault: "client",
14
+ ...opts,
15
+ });
16
+ Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
17
+ this.resourceId = opts.resourceId;
18
+ this.resourceType = opts.resourceType;
19
+ }
20
+ }
21
+ exports.ResourceNotFoundException = ResourceNotFoundException;
22
+ class ThrottlingException extends EvsServiceException_1.EvsServiceException {
23
+ name = "ThrottlingException";
24
+ $fault = "client";
25
+ $retryable = {};
26
+ retryAfterSeconds;
27
+ constructor(opts) {
28
+ super({
29
+ name: "ThrottlingException",
30
+ $fault: "client",
31
+ ...opts,
32
+ });
33
+ Object.setPrototypeOf(this, ThrottlingException.prototype);
34
+ this.retryAfterSeconds = opts.retryAfterSeconds;
35
+ }
36
+ }
37
+ exports.ThrottlingException = ThrottlingException;
38
+ class ValidationException extends EvsServiceException_1.EvsServiceException {
39
+ name = "ValidationException";
40
+ $fault = "client";
41
+ reason;
42
+ fieldList;
43
+ constructor(opts) {
44
+ super({
45
+ name: "ValidationException",
46
+ $fault: "client",
47
+ ...opts,
48
+ });
49
+ Object.setPrototypeOf(this, ValidationException.prototype);
50
+ this.reason = opts.reason;
51
+ this.fieldList = opts.fieldList;
52
+ }
53
+ }
54
+ exports.ValidationException = ValidationException;
55
+ class InternalServerException extends EvsServiceException_1.EvsServiceException {
56
+ name = "InternalServerException";
57
+ $fault = "server";
58
+ $retryable = {};
59
+ constructor(opts) {
60
+ super({
61
+ name: "InternalServerException",
62
+ $fault: "server",
63
+ ...opts,
64
+ });
65
+ Object.setPrototypeOf(this, InternalServerException.prototype);
66
+ }
67
+ }
68
+ exports.InternalServerException = InternalServerException;
69
+ class ServiceQuotaExceededException extends EvsServiceException_1.EvsServiceException {
70
+ name = "ServiceQuotaExceededException";
71
+ $fault = "client";
72
+ constructor(opts) {
73
+ super({
74
+ name: "ServiceQuotaExceededException",
75
+ $fault: "client",
76
+ ...opts,
77
+ });
78
+ Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
79
+ }
80
+ }
81
+ exports.ServiceQuotaExceededException = ServiceQuotaExceededException;
82
+ class TagPolicyException extends EvsServiceException_1.EvsServiceException {
83
+ name = "TagPolicyException";
84
+ $fault = "client";
85
+ constructor(opts) {
86
+ super({
87
+ name: "TagPolicyException",
88
+ $fault: "client",
89
+ ...opts,
90
+ });
91
+ Object.setPrototypeOf(this, TagPolicyException.prototype);
92
+ }
93
+ }
94
+ exports.TagPolicyException = TagPolicyException;
95
+ class TooManyTagsException extends EvsServiceException_1.EvsServiceException {
96
+ name = "TooManyTagsException";
97
+ $fault = "client";
98
+ constructor(opts) {
99
+ super({
100
+ name: "TooManyTagsException",
101
+ $fault: "client",
102
+ ...opts,
103
+ });
104
+ Object.setPrototypeOf(this, TooManyTagsException.prototype);
105
+ }
106
+ }
107
+ exports.TooManyTagsException = TooManyTagsException;
@@ -9,6 +9,7 @@ const util_base64_1 = require("@smithy/util-base64");
9
9
  const util_utf8_1 = require("@smithy/util-utf8");
10
10
  const httpAuthSchemeProvider_1 = require("./auth/httpAuthSchemeProvider");
11
11
  const endpointResolver_1 = require("./endpoint/endpointResolver");
12
+ const schemas_0_1 = require("./schemas/schemas_0");
12
13
  const getRuntimeConfig = (config) => {
13
14
  return {
14
15
  apiVersion: "2023-07-27",
@@ -29,6 +30,7 @@ const getRuntimeConfig = (config) => {
29
30
  protocol: config?.protocol ?? protocols_1.AwsJson1_0Protocol,
30
31
  protocolSettings: config?.protocolSettings ?? {
31
32
  defaultNamespace: "com.amazonaws.evs",
33
+ errorTypeRegistries: schemas_0_1.errorTypeRegistries,
32
34
  version: "2023-07-27",
33
35
  serviceTarget: "AmazonElasticVMwareService",
34
36
  },
@@ -0,0 +1,562 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.UntagResourceRequest$ = exports.TagResourceResponse$ = exports.TagResourceRequest$ = exports.ServiceAccessSecurityGroups$ = exports.Secret$ = exports.NetworkInterface$ = exports.ListTagsForResourceResponse$ = exports.ListTagsForResourceRequest$ = exports.ListEnvironmentVlansResponse$ = exports.ListEnvironmentVlansRequest$ = exports.ListEnvironmentsResponse$ = exports.ListEnvironmentsRequest$ = exports.ListEnvironmentHostsResponse$ = exports.ListEnvironmentHostsRequest$ = exports.LicenseInfo$ = exports.InstanceTypeEsxVersionsInfo$ = exports.InitialVlans$ = exports.InitialVlanInfo$ = exports.HostInfoForCreate$ = exports.Host$ = exports.GetVersionsResponse$ = exports.GetVersionsRequest$ = exports.GetEnvironmentResponse$ = exports.GetEnvironmentRequest$ = exports.EnvironmentSummary$ = exports.Environment$ = exports.EipAssociation$ = exports.DisassociateEipFromVlanResponse$ = exports.DisassociateEipFromVlanRequest$ = exports.DeleteEnvironmentResponse$ = exports.DeleteEnvironmentRequest$ = exports.DeleteEnvironmentHostResponse$ = exports.DeleteEnvironmentHostRequest$ = exports.CreateEnvironmentResponse$ = exports.CreateEnvironmentRequest$ = exports.CreateEnvironmentHostResponse$ = exports.CreateEnvironmentHostRequest$ = exports.ConnectivityInfo$ = exports.Check$ = exports.AssociateEipToVlanResponse$ = exports.AssociateEipToVlanRequest$ = exports.errorTypeRegistries = exports.ValidationException$ = exports.TooManyTagsException$ = exports.ThrottlingException$ = exports.TagPolicyException$ = exports.ServiceQuotaExceededException$ = exports.ResourceNotFoundException$ = exports.InternalServerException$ = exports.EvsServiceException$ = void 0;
4
+ exports.UntagResource$ = exports.TagResource$ = exports.ListTagsForResource$ = exports.ListEnvironmentVlans$ = exports.ListEnvironments$ = exports.ListEnvironmentHosts$ = exports.GetVersions$ = exports.GetEnvironment$ = exports.DisassociateEipFromVlan$ = exports.DeleteEnvironmentHost$ = exports.DeleteEnvironment$ = exports.CreateEnvironmentHost$ = exports.CreateEnvironment$ = exports.AssociateEipToVlan$ = exports.Vlan$ = exports.VcfVersionInfo$ = exports.VcfHostnames$ = exports.ValidationExceptionField$ = exports.UntagResourceResponse$ = void 0;
5
+ const _AETV = "AssociateEipToVlan";
6
+ const _AETVR = "AssociateEipToVlanRequest";
7
+ const _AETVRs = "AssociateEipToVlanResponse";
8
+ const _C = "Check";
9
+ const _CE = "CreateEnvironment";
10
+ const _CEH = "CreateEnvironmentHost";
11
+ const _CEHR = "CreateEnvironmentHostRequest";
12
+ const _CEHRr = "CreateEnvironmentHostResponse";
13
+ const _CER = "CreateEnvironmentRequest";
14
+ const _CERr = "CreateEnvironmentResponse";
15
+ const _CI = "ConnectivityInfo";
16
+ const _CL = "ChecksList";
17
+ const _DE = "DeleteEnvironment";
18
+ const _DEFV = "DisassociateEipFromVlan";
19
+ const _DEFVR = "DisassociateEipFromVlanRequest";
20
+ const _DEFVRi = "DisassociateEipFromVlanResponse";
21
+ const _DEH = "DeleteEnvironmentHost";
22
+ const _DEHR = "DeleteEnvironmentHostRequest";
23
+ const _DEHRe = "DeleteEnvironmentHostResponse";
24
+ const _DER = "DeleteEnvironmentRequest";
25
+ const _DERe = "DeleteEnvironmentResponse";
26
+ const _E = "Environment";
27
+ const _EA = "EipAssociation";
28
+ const _EAL = "EipAssociationList";
29
+ const _ES = "EnvironmentSummary";
30
+ const _ESL = "EnvironmentSummaryList";
31
+ const _GE = "GetEnvironment";
32
+ const _GER = "GetEnvironmentRequest";
33
+ const _GERe = "GetEnvironmentResponse";
34
+ const _GV = "GetVersions";
35
+ const _GVR = "GetVersionsRequest";
36
+ const _GVRe = "GetVersionsResponse";
37
+ const _H = "Host";
38
+ const _HIFC = "HostInfoForCreate";
39
+ const _HIFCL = "HostInfoForCreateList";
40
+ const _HL = "HostList";
41
+ const _ISE = "InternalServerException";
42
+ const _ITEVI = "InstanceTypeEsxVersionsInfo";
43
+ const _ITEVL = "InstanceTypeEsxVersionsList";
44
+ const _IV = "InitialVlans";
45
+ const _IVI = "InitialVlanInfo";
46
+ const _LE = "ListEnvironments";
47
+ const _LEH = "ListEnvironmentHosts";
48
+ const _LEHR = "ListEnvironmentHostsRequest";
49
+ const _LEHRi = "ListEnvironmentHostsResponse";
50
+ const _LER = "ListEnvironmentsRequest";
51
+ const _LERi = "ListEnvironmentsResponse";
52
+ const _LEV = "ListEnvironmentVlans";
53
+ const _LEVR = "ListEnvironmentVlansRequest";
54
+ const _LEVRi = "ListEnvironmentVlansResponse";
55
+ const _LI = "LicenseInfo";
56
+ const _LIL = "LicenseInfoList";
57
+ const _LTFR = "ListTagsForResource";
58
+ const _LTFRR = "ListTagsForResourceRequest";
59
+ const _LTFRRi = "ListTagsForResourceResponse";
60
+ const _NI = "NetworkInterface";
61
+ const _NIL = "NetworkInterfaceList";
62
+ const _RA = "Retry-After";
63
+ const _RNFE = "ResourceNotFoundException";
64
+ const _S = "Secret";
65
+ const _SASG = "ServiceAccessSecurityGroups";
66
+ const _SL = "SecretList";
67
+ const _SQEE = "ServiceQuotaExceededException";
68
+ const _TE = "ThrottlingException";
69
+ const _TMTE = "TooManyTagsException";
70
+ const _TPE = "TagPolicyException";
71
+ const _TR = "TagResource";
72
+ const _TRR = "TagResourceRequest";
73
+ const _TRRa = "TagResourceResponse";
74
+ const _UR = "UntagResource";
75
+ const _URR = "UntagResourceRequest";
76
+ const _URRn = "UntagResourceResponse";
77
+ const _V = "Vlan";
78
+ const _VE = "ValidationException";
79
+ const _VEF = "ValidationExceptionField";
80
+ const _VEFL = "ValidationExceptionFieldList";
81
+ const _VH = "VcfHostnames";
82
+ const _VL = "VlanList";
83
+ const _VVI = "VcfVersionInfo";
84
+ const _VVL = "VcfVersionList";
85
+ const _aI = "allocationId";
86
+ const _aIs = "associationId";
87
+ const _aZ = "availabilityZone";
88
+ const _c = "client";
89
+ const _cA = "createdAt";
90
+ const _cB = "cloudBuilder";
91
+ const _cI = "connectivityInfo";
92
+ const _cT = "clientToken";
93
+ const _ch = "checks";
94
+ const _ci = "cidr";
95
+ const _cr = "credentials";
96
+ const _dEV = "defaultEsxVersion";
97
+ const _dHI = "dedicatedHostId";
98
+ const _e = "error";
99
+ const _eA = "environmentArn";
100
+ const _eAi = "eipAssociations";
101
+ const _eH = "environmentHosts";
102
+ const _eI = "environmentId";
103
+ const _eII = "ec2InstanceId";
104
+ const _eN = "environmentName";
105
+ const _eS = "environmentSummary";
106
+ const _eSn = "environmentState";
107
+ const _eSnv = "environmentStatus";
108
+ const _eSnvi = "environmentSummaries";
109
+ const _eV = "esxVersion";
110
+ const _eVT = "edgeVTep";
111
+ const _eVn = "environmentVlans";
112
+ const _eVs = "esxVersions";
113
+ const _eVx = "expansionVlan1";
114
+ const _eVxp = "expansionVlan2";
115
+ const _en = "environment";
116
+ const _fL = "fieldList";
117
+ const _fN = "functionName";
118
+ const _h = "host";
119
+ const _hE = "httpError";
120
+ const _hH = "httpHeader";
121
+ const _hN = "hostName";
122
+ const _hNAI = "hcxNetworkAclId";
123
+ const _hQ = "httpQuery";
124
+ const _hS = "hostState";
125
+ const _hc = "hcx";
126
+ const _ho = "hosts";
127
+ const _iA = "ipAddress";
128
+ const _iHP = "isHcxPublic";
129
+ const _iP = "isPublic";
130
+ const _iS = "impairedSince";
131
+ const _iT = "instanceType";
132
+ const _iTEV = "instanceTypeEsxVersions";
133
+ const _iTn = "instanceTypes";
134
+ const _iV = "initialVlans";
135
+ const _kKI = "kmsKeyId";
136
+ const _kN = "keyName";
137
+ const _lI = "licenseInfo";
138
+ const _m = "message";
139
+ const _mA = "modifiedAt";
140
+ const _mR = "maxResults";
141
+ const _n = "name";
142
+ const _nAI = "networkAclId";
143
+ const _nE = "nsxEdge1";
144
+ const _nEs = "nsxEdge2";
145
+ const _nI = "networkInterfaces";
146
+ const _nII = "networkInterfaceId";
147
+ const _nM = "nsxManager1";
148
+ const _nMs = "nsxManager2";
149
+ const _nMsx = "nsxManager3";
150
+ const _nT = "nextToken";
151
+ const _nU = "nsxUplink";
152
+ const _ns = "nsx";
153
+ const _pGI = "placementGroupId";
154
+ const _pRSP = "privateRouteServerPeerings";
155
+ const _r = "reason";
156
+ const _rA = "resourceArn";
157
+ const _rAS = "retryAfterSeconds";
158
+ const _rI = "resourceId";
159
+ const _rT = "resourceType";
160
+ const _re = "result";
161
+ const _s = "smithy.ts.sdk.synthetic.com.amazonaws.evs";
162
+ const _sA = "secretArn";
163
+ const _sASG = "serviceAccessSecurityGroups";
164
+ const _sASI = "serviceAccessSubnetId";
165
+ const _sD = "stateDetails";
166
+ const _sG = "securityGroups";
167
+ const _sI = "siteId";
168
+ const _sIu = "subnetId";
169
+ const _sK = "solutionKey";
170
+ const _sM = "sddcManager";
171
+ const _se = "server";
172
+ const _st = "state";
173
+ const _sta = "status";
174
+ const _t = "type";
175
+ const _tA = "termsAccepted";
176
+ const _tK = "tagKeys";
177
+ const _ta = "tags";
178
+ const _v = "vlan";
179
+ const _vC = "vCenter";
180
+ const _vH = "vcfHostnames";
181
+ const _vI = "vpcId";
182
+ const _vIl = "vlanId";
183
+ const _vK = "vsanKey";
184
+ const _vM = "vmkManagement";
185
+ const _vMm = "vmManagement";
186
+ const _vMo = "vMotion";
187
+ const _vN = "vlanName";
188
+ const _vS = "vSan";
189
+ const _vSl = "vlanState";
190
+ const _vT = "vTep";
191
+ const _vV = "vcfVersion";
192
+ const _vVc = "vcfVersions";
193
+ const n0 = "com.amazonaws.evs";
194
+ const schema_1 = require("@smithy/core/schema");
195
+ const errors_1 = require("../models/errors");
196
+ const EvsServiceException_1 = require("../models/EvsServiceException");
197
+ const _s_registry = schema_1.TypeRegistry.for(_s);
198
+ exports.EvsServiceException$ = [-3, _s, "EvsServiceException", 0, [], []];
199
+ _s_registry.registerError(exports.EvsServiceException$, EvsServiceException_1.EvsServiceException);
200
+ const n0_registry = schema_1.TypeRegistry.for(n0);
201
+ exports.InternalServerException$ = [-3, n0, _ISE,
202
+ { [_e]: _se, [_hE]: 500 },
203
+ [_m],
204
+ [0], 1
205
+ ];
206
+ n0_registry.registerError(exports.InternalServerException$, errors_1.InternalServerException);
207
+ exports.ResourceNotFoundException$ = [-3, n0, _RNFE,
208
+ { [_e]: _c, [_hE]: 404 },
209
+ [_m, _rI, _rT],
210
+ [0, 0, 0], 3
211
+ ];
212
+ n0_registry.registerError(exports.ResourceNotFoundException$, errors_1.ResourceNotFoundException);
213
+ exports.ServiceQuotaExceededException$ = [-3, n0, _SQEE,
214
+ { [_e]: _c, [_hE]: 402 },
215
+ [_m],
216
+ [0], 1
217
+ ];
218
+ n0_registry.registerError(exports.ServiceQuotaExceededException$, errors_1.ServiceQuotaExceededException);
219
+ exports.TagPolicyException$ = [-3, n0, _TPE,
220
+ { [_e]: _c, [_hE]: 400 },
221
+ [_m],
222
+ [0], 1
223
+ ];
224
+ n0_registry.registerError(exports.TagPolicyException$, errors_1.TagPolicyException);
225
+ exports.ThrottlingException$ = [-3, n0, _TE,
226
+ { [_e]: _c, [_hE]: 429 },
227
+ [_m, _rAS],
228
+ [0, [1, { [_hH]: _RA }]], 1
229
+ ];
230
+ n0_registry.registerError(exports.ThrottlingException$, errors_1.ThrottlingException);
231
+ exports.TooManyTagsException$ = [-3, n0, _TMTE,
232
+ { [_e]: _c, [_hE]: 400 },
233
+ [_m],
234
+ [0], 1
235
+ ];
236
+ n0_registry.registerError(exports.TooManyTagsException$, errors_1.TooManyTagsException);
237
+ exports.ValidationException$ = [-3, n0, _VE,
238
+ { [_e]: _c, [_hE]: 400 },
239
+ [_m, _r, _fL],
240
+ [0, 0, () => ValidationExceptionFieldList], 2
241
+ ];
242
+ n0_registry.registerError(exports.ValidationException$, errors_1.ValidationException);
243
+ exports.errorTypeRegistries = [
244
+ _s_registry,
245
+ n0_registry,
246
+ ];
247
+ exports.AssociateEipToVlanRequest$ = [3, n0, _AETVR,
248
+ 0,
249
+ [_eI, _vN, _aI, _cT],
250
+ [0, 0, 0, [0, 4]], 3
251
+ ];
252
+ exports.AssociateEipToVlanResponse$ = [3, n0, _AETVRs,
253
+ 0,
254
+ [_v],
255
+ [() => exports.Vlan$]
256
+ ];
257
+ exports.Check$ = [3, n0, _C,
258
+ 0,
259
+ [_t, _re, _iS],
260
+ [0, 0, 4]
261
+ ];
262
+ exports.ConnectivityInfo$ = [3, n0, _CI,
263
+ 0,
264
+ [_pRSP],
265
+ [64 | 0], 1
266
+ ];
267
+ exports.CreateEnvironmentHostRequest$ = [3, n0, _CEHR,
268
+ 0,
269
+ [_eI, _h, _cT, _eV],
270
+ [0, () => exports.HostInfoForCreate$, [0, 4], 0], 2
271
+ ];
272
+ exports.CreateEnvironmentHostResponse$ = [3, n0, _CEHRr,
273
+ 0,
274
+ [_eS, _h],
275
+ [() => exports.EnvironmentSummary$, () => exports.Host$]
276
+ ];
277
+ exports.CreateEnvironmentRequest$ = [3, n0, _CER,
278
+ 0,
279
+ [_vI, _sASI, _vV, _tA, _lI, _iV, _ho, _cI, _vH, _sI, _cT, _eN, _kKI, _ta, _sASG],
280
+ [0, 0, 0, 2, () => LicenseInfoList, () => exports.InitialVlans$, () => HostInfoForCreateList, () => exports.ConnectivityInfo$, () => exports.VcfHostnames$, 0, [0, 4], 0, 0, 128 | 0, () => exports.ServiceAccessSecurityGroups$], 10
281
+ ];
282
+ exports.CreateEnvironmentResponse$ = [3, n0, _CERr,
283
+ 0,
284
+ [_en],
285
+ [() => exports.Environment$]
286
+ ];
287
+ exports.DeleteEnvironmentHostRequest$ = [3, n0, _DEHR,
288
+ 0,
289
+ [_eI, _hN, _cT],
290
+ [0, 0, [0, 4]], 2
291
+ ];
292
+ exports.DeleteEnvironmentHostResponse$ = [3, n0, _DEHRe,
293
+ 0,
294
+ [_eS, _h],
295
+ [() => exports.EnvironmentSummary$, () => exports.Host$]
296
+ ];
297
+ exports.DeleteEnvironmentRequest$ = [3, n0, _DER,
298
+ 0,
299
+ [_eI, _cT],
300
+ [[0, 1], [0, 4]], 1
301
+ ];
302
+ exports.DeleteEnvironmentResponse$ = [3, n0, _DERe,
303
+ 0,
304
+ [_en],
305
+ [() => exports.Environment$]
306
+ ];
307
+ exports.DisassociateEipFromVlanRequest$ = [3, n0, _DEFVR,
308
+ 0,
309
+ [_eI, _vN, _aIs, _cT],
310
+ [0, 0, 0, [0, 4]], 3
311
+ ];
312
+ exports.DisassociateEipFromVlanResponse$ = [3, n0, _DEFVRi,
313
+ 0,
314
+ [_v],
315
+ [() => exports.Vlan$]
316
+ ];
317
+ exports.EipAssociation$ = [3, n0, _EA,
318
+ 0,
319
+ [_aIs, _aI, _iA],
320
+ [0, 0, 0]
321
+ ];
322
+ exports.Environment$ = [3, n0, _E,
323
+ 0,
324
+ [_eI, _eSn, _sD, _cA, _mA, _eA, _eN, _vI, _sASI, _vV, _tA, _lI, _sI, _eSnv, _ch, _cI, _vH, _kKI, _sASG, _cr],
325
+ [0, 0, 0, 4, 4, 0, 0, 0, 0, 0, 2, () => LicenseInfoList, 0, 0, () => ChecksList, () => exports.ConnectivityInfo$, () => exports.VcfHostnames$, 0, () => exports.ServiceAccessSecurityGroups$, () => SecretList]
326
+ ];
327
+ exports.EnvironmentSummary$ = [3, n0, _ES,
328
+ 0,
329
+ [_eI, _eN, _vV, _eSnv, _eSn, _cA, _mA, _eA],
330
+ [0, 0, 0, 0, 0, 4, 4, 0]
331
+ ];
332
+ exports.GetEnvironmentRequest$ = [3, n0, _GER,
333
+ 0,
334
+ [_eI],
335
+ [[0, 1]], 1
336
+ ];
337
+ exports.GetEnvironmentResponse$ = [3, n0, _GERe,
338
+ 0,
339
+ [_en],
340
+ [() => exports.Environment$]
341
+ ];
342
+ exports.GetVersionsRequest$ = [3, n0, _GVR,
343
+ 0,
344
+ [],
345
+ []
346
+ ];
347
+ exports.GetVersionsResponse$ = [3, n0, _GVRe,
348
+ 0,
349
+ [_vVc, _iTEV],
350
+ [() => VcfVersionList, () => InstanceTypeEsxVersionsList], 2
351
+ ];
352
+ exports.Host$ = [3, n0, _H,
353
+ 0,
354
+ [_hN, _iA, _kN, _iT, _pGI, _dHI, _cA, _mA, _hS, _sD, _eII, _nI],
355
+ [0, 0, 0, 0, 0, 0, 4, 4, 0, 0, 0, () => NetworkInterfaceList]
356
+ ];
357
+ exports.HostInfoForCreate$ = [3, n0, _HIFC,
358
+ 0,
359
+ [_hN, _kN, _iT, _pGI, _dHI],
360
+ [0, 0, 0, 0, 0], 3
361
+ ];
362
+ exports.InitialVlanInfo$ = [3, n0, _IVI,
363
+ 0,
364
+ [_ci],
365
+ [0], 1
366
+ ];
367
+ exports.InitialVlans$ = [3, n0, _IV,
368
+ 0,
369
+ [_vM, _vMm, _vMo, _vS, _vT, _eVT, _nU, _hc, _eVx, _eVxp, _iHP, _hNAI],
370
+ [() => exports.InitialVlanInfo$, () => exports.InitialVlanInfo$, () => exports.InitialVlanInfo$, () => exports.InitialVlanInfo$, () => exports.InitialVlanInfo$, () => exports.InitialVlanInfo$, () => exports.InitialVlanInfo$, () => exports.InitialVlanInfo$, () => exports.InitialVlanInfo$, () => exports.InitialVlanInfo$, 2, 0], 10
371
+ ];
372
+ exports.InstanceTypeEsxVersionsInfo$ = [3, n0, _ITEVI,
373
+ 0,
374
+ [_iT, _eVs],
375
+ [0, 64 | 0], 2
376
+ ];
377
+ exports.LicenseInfo$ = [3, n0, _LI,
378
+ 0,
379
+ [_sK, _vK],
380
+ [0, 0], 2
381
+ ];
382
+ exports.ListEnvironmentHostsRequest$ = [3, n0, _LEHR,
383
+ 0,
384
+ [_eI, _nT, _mR],
385
+ [[0, 1], [0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]], 1
386
+ ];
387
+ exports.ListEnvironmentHostsResponse$ = [3, n0, _LEHRi,
388
+ 0,
389
+ [_nT, _eH],
390
+ [0, () => HostList]
391
+ ];
392
+ exports.ListEnvironmentsRequest$ = [3, n0, _LER,
393
+ 0,
394
+ [_nT, _mR, _st],
395
+ [[0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }], [64 | 0, { [_hQ]: _st }]]
396
+ ];
397
+ exports.ListEnvironmentsResponse$ = [3, n0, _LERi,
398
+ 0,
399
+ [_nT, _eSnvi],
400
+ [0, () => EnvironmentSummaryList]
401
+ ];
402
+ exports.ListEnvironmentVlansRequest$ = [3, n0, _LEVR,
403
+ 0,
404
+ [_eI, _nT, _mR],
405
+ [[0, 1], [0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]], 1
406
+ ];
407
+ exports.ListEnvironmentVlansResponse$ = [3, n0, _LEVRi,
408
+ 0,
409
+ [_nT, _eVn],
410
+ [0, () => VlanList]
411
+ ];
412
+ exports.ListTagsForResourceRequest$ = [3, n0, _LTFRR,
413
+ 0,
414
+ [_rA],
415
+ [0], 1
416
+ ];
417
+ exports.ListTagsForResourceResponse$ = [3, n0, _LTFRRi,
418
+ 0,
419
+ [_ta],
420
+ [128 | 0]
421
+ ];
422
+ exports.NetworkInterface$ = [3, n0, _NI,
423
+ 0,
424
+ [_nII],
425
+ [0]
426
+ ];
427
+ exports.Secret$ = [3, n0, _S,
428
+ 0,
429
+ [_sA],
430
+ [0]
431
+ ];
432
+ exports.ServiceAccessSecurityGroups$ = [3, n0, _SASG,
433
+ 0,
434
+ [_sG],
435
+ [64 | 0]
436
+ ];
437
+ exports.TagResourceRequest$ = [3, n0, _TRR,
438
+ 0,
439
+ [_rA, _ta],
440
+ [0, 128 | 0], 2
441
+ ];
442
+ exports.TagResourceResponse$ = [3, n0, _TRRa,
443
+ 0,
444
+ [],
445
+ []
446
+ ];
447
+ exports.UntagResourceRequest$ = [3, n0, _URR,
448
+ 0,
449
+ [_rA, _tK],
450
+ [0, 64 | 0], 2
451
+ ];
452
+ exports.UntagResourceResponse$ = [3, n0, _URRn,
453
+ 0,
454
+ [],
455
+ []
456
+ ];
457
+ exports.ValidationExceptionField$ = [3, n0, _VEF,
458
+ 0,
459
+ [_n, _m],
460
+ [0, 0], 2
461
+ ];
462
+ exports.VcfHostnames$ = [3, n0, _VH,
463
+ 0,
464
+ [_vC, _ns, _nM, _nMs, _nMsx, _nE, _nEs, _sM, _cB],
465
+ [0, 0, 0, 0, 0, 0, 0, 0, 0], 9
466
+ ];
467
+ exports.VcfVersionInfo$ = [3, n0, _VVI,
468
+ 0,
469
+ [_vV, _sta, _dEV, _iTn],
470
+ [0, 0, 0, 64 | 0], 4
471
+ ];
472
+ exports.Vlan$ = [3, n0, _V,
473
+ 0,
474
+ [_vIl, _ci, _aZ, _fN, _sIu, _cA, _mA, _vSl, _sD, _eAi, _iP, _nAI],
475
+ [1, 0, 0, 0, 0, 4, 4, 0, 0, () => EipAssociationList, 2, 0]
476
+ ];
477
+ var ChecksList = [1, n0, _CL,
478
+ 0, () => exports.Check$
479
+ ];
480
+ var EipAssociationList = [1, n0, _EAL,
481
+ 0, () => exports.EipAssociation$
482
+ ];
483
+ var EnvironmentStateList = 64 | 0;
484
+ var EnvironmentSummaryList = [1, n0, _ESL,
485
+ 0, () => exports.EnvironmentSummary$
486
+ ];
487
+ var EsxVersionList = 64 | 0;
488
+ var HostInfoForCreateList = [1, n0, _HIFCL,
489
+ 0, () => exports.HostInfoForCreate$
490
+ ];
491
+ var HostList = [1, n0, _HL,
492
+ 0, () => exports.Host$
493
+ ];
494
+ var InstanceTypeEsxVersionsList = [1, n0, _ITEVL,
495
+ 0, () => exports.InstanceTypeEsxVersionsInfo$
496
+ ];
497
+ var InstanceTypeList = 64 | 0;
498
+ var LicenseInfoList = [1, n0, _LIL,
499
+ 0, () => exports.LicenseInfo$
500
+ ];
501
+ var NetworkInterfaceList = [1, n0, _NIL,
502
+ 0, () => exports.NetworkInterface$
503
+ ];
504
+ var RouteServerPeeringList = 64 | 0;
505
+ var SecretList = [1, n0, _SL,
506
+ 0, () => exports.Secret$
507
+ ];
508
+ var SecurityGroups = 64 | 0;
509
+ var TagKeys = 64 | 0;
510
+ var ValidationExceptionFieldList = [1, n0, _VEFL,
511
+ 0, () => exports.ValidationExceptionField$
512
+ ];
513
+ var VcfVersionList = [1, n0, _VVL,
514
+ 0, () => exports.VcfVersionInfo$
515
+ ];
516
+ var VlanList = [1, n0, _VL,
517
+ 0, () => exports.Vlan$
518
+ ];
519
+ var RequestTagMap = 128 | 0;
520
+ var ResponseTagMap = 128 | 0;
521
+ exports.AssociateEipToVlan$ = [9, n0, _AETV,
522
+ 2, () => exports.AssociateEipToVlanRequest$, () => exports.AssociateEipToVlanResponse$
523
+ ];
524
+ exports.CreateEnvironment$ = [9, n0, _CE,
525
+ 2, () => exports.CreateEnvironmentRequest$, () => exports.CreateEnvironmentResponse$
526
+ ];
527
+ exports.CreateEnvironmentHost$ = [9, n0, _CEH,
528
+ 2, () => exports.CreateEnvironmentHostRequest$, () => exports.CreateEnvironmentHostResponse$
529
+ ];
530
+ exports.DeleteEnvironment$ = [9, n0, _DE,
531
+ 2, () => exports.DeleteEnvironmentRequest$, () => exports.DeleteEnvironmentResponse$
532
+ ];
533
+ exports.DeleteEnvironmentHost$ = [9, n0, _DEH,
534
+ 2, () => exports.DeleteEnvironmentHostRequest$, () => exports.DeleteEnvironmentHostResponse$
535
+ ];
536
+ exports.DisassociateEipFromVlan$ = [9, n0, _DEFV,
537
+ 2, () => exports.DisassociateEipFromVlanRequest$, () => exports.DisassociateEipFromVlanResponse$
538
+ ];
539
+ exports.GetEnvironment$ = [9, n0, _GE,
540
+ 0, () => exports.GetEnvironmentRequest$, () => exports.GetEnvironmentResponse$
541
+ ];
542
+ exports.GetVersions$ = [9, n0, _GV,
543
+ 0, () => exports.GetVersionsRequest$, () => exports.GetVersionsResponse$
544
+ ];
545
+ exports.ListEnvironmentHosts$ = [9, n0, _LEH,
546
+ 0, () => exports.ListEnvironmentHostsRequest$, () => exports.ListEnvironmentHostsResponse$
547
+ ];
548
+ exports.ListEnvironments$ = [9, n0, _LE,
549
+ 0, () => exports.ListEnvironmentsRequest$, () => exports.ListEnvironmentsResponse$
550
+ ];
551
+ exports.ListEnvironmentVlans$ = [9, n0, _LEV,
552
+ 0, () => exports.ListEnvironmentVlansRequest$, () => exports.ListEnvironmentVlansResponse$
553
+ ];
554
+ exports.ListTagsForResource$ = [9, n0, _LTFR,
555
+ 0, () => exports.ListTagsForResourceRequest$, () => exports.ListTagsForResourceResponse$
556
+ ];
557
+ exports.TagResource$ = [9, n0, _TR,
558
+ 2, () => exports.TagResourceRequest$, () => exports.TagResourceResponse$
559
+ ];
560
+ exports.UntagResource$ = [9, n0, _UR,
561
+ 2, () => exports.UntagResourceRequest$, () => exports.UntagResourceResponse$
562
+ ];