@aws-sdk/client-backup-gateway 3.1075.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, createAggregatedClient } = require("@smithy/core/client");
3
+ const { normalizeProvider, getSmithyContext, ServiceException, NoOpLogger, emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode, getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, Command, 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, defaultBackupGatewayHttpAuthSchemeParametersProvider } = require("./auth/httpAuthSchemeProvider");
13
- const { getRuntimeConfig } = require("./runtimeConfig");
14
- const { AssociateGatewayToServer$, CreateGateway$, DeleteGateway$, DeleteHypervisor$, DisassociateGatewayFromServer$, GetBandwidthRateLimitSchedule$, GetGateway$, GetHypervisor$, GetHypervisorPropertyMappings$, GetVirtualMachine$, ImportHypervisorConfiguration$, ListGateways$, ListHypervisors$, ListTagsForResource$, ListVirtualMachines$, PutBandwidthRateLimitSchedule$, PutHypervisorPropertyMappings$, PutMaintenanceStartTime$, StartVirtualMachinesMetadataSync$, TagResource$, TestHypervisorConfiguration$, UntagResource$, UpdateGatewayInformation$, UpdateGatewaySoftwareNow$, UpdateHypervisor$ } = require("./schemas/schemas_0");
15
- __exportStar(require("./schemas/schemas_0"), exports);
16
- __exportStar(require("./models/errors"), exports);
17
- const { BackupGatewayServiceException } = require("./models/BackupGatewayServiceException");
18
- exports.BackupGatewayServiceException = BackupGatewayServiceException;
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_0Protocol } = require("@aws-sdk/core/protocols");
16
+
17
+ const defaultBackupGatewayHttpAuthSchemeParametersProvider = 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: "backup-gateway",
30
+ region: authParameters.region,
31
+ },
32
+ propertiesExtractor: (config, context) => ({
33
+ signingProperties: {
34
+ config,
35
+ context,
36
+ },
37
+ }),
38
+ };
39
+ }
40
+ const defaultBackupGatewayHttpAuthSchemeProvider = (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,841 @@ 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://backup-gateway-fips.{Region}.{PartitionResult#dualStackDnsSuffix}", i],
92
+ [a, "FIPS and DualStack are enabled, but this partition does not support one or both"],
93
+ ["https://backup-gateway-fips.{Region}.{PartitionResult#dnsSuffix}", i],
94
+ [a, "FIPS is enabled but this partition does not support FIPS"],
95
+ ["https://backup-gateway.{Region}.{PartitionResult#dualStackDnsSuffix}", i],
96
+ [a, "DualStack is enabled but this partition does not support DualStack"],
97
+ ["https://backup-gateway.{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 BackupGatewayServiceException extends ServiceException {
133
+ constructor(options) {
134
+ super(options);
135
+ Object.setPrototypeOf(this, BackupGatewayServiceException.prototype);
136
+ }
137
+ }
138
+
139
+ class AccessDeniedException extends BackupGatewayServiceException {
140
+ name = "AccessDeniedException";
141
+ $fault = "client";
142
+ ErrorCode;
143
+ Message;
144
+ constructor(opts) {
145
+ super({
146
+ name: "AccessDeniedException",
147
+ $fault: "client",
148
+ ...opts,
149
+ });
150
+ Object.setPrototypeOf(this, AccessDeniedException.prototype);
151
+ this.ErrorCode = opts.ErrorCode;
152
+ this.Message = opts.Message;
153
+ }
154
+ }
155
+ class ConflictException extends BackupGatewayServiceException {
156
+ name = "ConflictException";
157
+ $fault = "client";
158
+ ErrorCode;
159
+ Message;
160
+ constructor(opts) {
161
+ super({
162
+ name: "ConflictException",
163
+ $fault: "client",
164
+ ...opts,
165
+ });
166
+ Object.setPrototypeOf(this, ConflictException.prototype);
167
+ this.ErrorCode = opts.ErrorCode;
168
+ this.Message = opts.Message;
169
+ }
170
+ }
171
+ class InternalServerException extends BackupGatewayServiceException {
172
+ name = "InternalServerException";
173
+ $fault = "server";
174
+ ErrorCode;
175
+ Message;
176
+ constructor(opts) {
177
+ super({
178
+ name: "InternalServerException",
179
+ $fault: "server",
180
+ ...opts,
181
+ });
182
+ Object.setPrototypeOf(this, InternalServerException.prototype);
183
+ this.ErrorCode = opts.ErrorCode;
184
+ this.Message = opts.Message;
185
+ }
186
+ }
187
+ class ThrottlingException extends BackupGatewayServiceException {
188
+ name = "ThrottlingException";
189
+ $fault = "client";
190
+ ErrorCode;
191
+ Message;
192
+ constructor(opts) {
193
+ super({
194
+ name: "ThrottlingException",
195
+ $fault: "client",
196
+ ...opts,
197
+ });
198
+ Object.setPrototypeOf(this, ThrottlingException.prototype);
199
+ this.ErrorCode = opts.ErrorCode;
200
+ this.Message = opts.Message;
201
+ }
202
+ }
203
+ class ValidationException extends BackupGatewayServiceException {
204
+ name = "ValidationException";
205
+ $fault = "client";
206
+ ErrorCode;
207
+ Message;
208
+ constructor(opts) {
209
+ super({
210
+ name: "ValidationException",
211
+ $fault: "client",
212
+ ...opts,
213
+ });
214
+ Object.setPrototypeOf(this, ValidationException.prototype);
215
+ this.ErrorCode = opts.ErrorCode;
216
+ this.Message = opts.Message;
217
+ }
218
+ }
219
+ class ResourceNotFoundException extends BackupGatewayServiceException {
220
+ name = "ResourceNotFoundException";
221
+ $fault = "client";
222
+ ErrorCode;
223
+ Message;
224
+ constructor(opts) {
225
+ super({
226
+ name: "ResourceNotFoundException",
227
+ $fault: "client",
228
+ ...opts,
229
+ });
230
+ Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
231
+ this.ErrorCode = opts.ErrorCode;
232
+ this.Message = opts.Message;
233
+ }
234
+ }
235
+
236
+ const _ADE = "AccessDeniedException";
237
+ const _AGTS = "AssociateGatewayToServer";
238
+ const _AGTSI = "AssociateGatewayToServerInput";
239
+ const _AGTSO = "AssociateGatewayToServerOutput";
240
+ const _AK = "ActivationKey";
241
+ const _ATK = "AwsTagKey";
242
+ const _ATV = "AwsTagValue";
243
+ const _AURLIBPS = "AverageUploadRateLimitInBitsPerSec";
244
+ const _BRLI = "BandwidthRateLimitInterval";
245
+ const _BRLIa = "BandwidthRateLimitIntervals";
246
+ const _CE = "ConflictException";
247
+ const _CG = "CreateGateway";
248
+ const _CGI = "CreateGatewayInput";
249
+ const _CGO = "CreateGatewayOutput";
250
+ const _DD = "DeprecationDate";
251
+ const _DG = "DeleteGateway";
252
+ const _DGFS = "DisassociateGatewayFromServer";
253
+ const _DGFSI = "DisassociateGatewayFromServerInput";
254
+ const _DGFSO = "DisassociateGatewayFromServerOutput";
255
+ const _DGI = "DeleteGatewayInput";
256
+ const _DGO = "DeleteGatewayOutput";
257
+ const _DH = "DeleteHypervisor";
258
+ const _DHI = "DeleteHypervisorInput";
259
+ const _DHO = "DeleteHypervisorOutput";
260
+ const _DOM = "DayOfMonth";
261
+ const _DOW = "DaysOfWeek";
262
+ const _DOWa = "DayOfWeek";
263
+ const _EC = "ErrorCode";
264
+ const _EHOD = "EndHourOfDay";
265
+ const _EMOH = "EndMinuteOfHour";
266
+ const _G = "Gateway";
267
+ const _GA = "GatewayArn";
268
+ const _GBRLS = "GetBandwidthRateLimitSchedule";
269
+ const _GBRLSI = "GetBandwidthRateLimitScheduleInput";
270
+ const _GBRLSO = "GetBandwidthRateLimitScheduleOutput";
271
+ const _GD = "GatewayDetails";
272
+ const _GDN = "GatewayDisplayName";
273
+ const _GG = "GetGateway";
274
+ const _GGI = "GetGatewayInput";
275
+ const _GGO = "GetGatewayOutput";
276
+ const _GH = "GetHypervisor";
277
+ const _GHI = "GetHypervisorInput";
278
+ const _GHO = "GetHypervisorOutput";
279
+ const _GHPM = "GetHypervisorPropertyMappings";
280
+ const _GHPMI = "GetHypervisorPropertyMappingsInput";
281
+ const _GHPMO = "GetHypervisorPropertyMappingsOutput";
282
+ const _GT = "GatewayType";
283
+ const _GVM = "GetVirtualMachine";
284
+ const _GVMI = "GetVirtualMachineInput";
285
+ const _GVMO = "GetVirtualMachineOutput";
286
+ const _Ga = "Gateways";
287
+ const _H = "Hypervisor";
288
+ const _HA = "HypervisorArn";
289
+ const _HD = "HypervisorDetails";
290
+ const _HI = "HypervisorId";
291
+ const _HN = "HostName";
292
+ const _HOD = "HourOfDay";
293
+ const _Ho = "Host";
294
+ const _Hy = "Hypervisors";
295
+ const _IHC = "ImportHypervisorConfiguration";
296
+ const _IHCI = "ImportHypervisorConfigurationInput";
297
+ const _IHCO = "ImportHypervisorConfigurationOutput";
298
+ const _IRA = "IamRoleArn";
299
+ const _ISE = "InternalServerException";
300
+ const _K = "Key";
301
+ const _KKA = "KmsKeyArn";
302
+ const _LBD = "LastBackupDate";
303
+ const _LG = "ListGateways";
304
+ const _LGA = "LogGroupArn";
305
+ const _LGI = "ListGatewaysInput";
306
+ const _LGO = "ListGatewaysOutput";
307
+ const _LH = "ListHypervisors";
308
+ const _LHI = "ListHypervisorsInput";
309
+ const _LHO = "ListHypervisorsOutput";
310
+ const _LMSS = "LatestMetadataSyncStatus";
311
+ const _LMSSM = "LatestMetadataSyncStatusMessage";
312
+ const _LSMST = "LastSuccessfulMetadataSyncTime";
313
+ const _LST = "LastSeenTime";
314
+ const _LTFR = "ListTagsForResource";
315
+ const _LTFRI = "ListTagsForResourceInput";
316
+ const _LTFRO = "ListTagsForResourceOutput";
317
+ const _LVM = "ListVirtualMachines";
318
+ const _LVMI = "ListVirtualMachinesInput";
319
+ const _LVMO = "ListVirtualMachinesOutput";
320
+ const _M = "Message";
321
+ const _MOH = "MinuteOfHour";
322
+ const _MR = "MaxResults";
323
+ const _MST = "MaintenanceStartTime";
324
+ const _N = "Name";
325
+ const _NT = "NextToken";
326
+ const _NUAT = "NextUpdateAvailabilityTime";
327
+ const _P = "Password";
328
+ const _PBRLS = "PutBandwidthRateLimitSchedule";
329
+ const _PBRLSI = "PutBandwidthRateLimitScheduleInput";
330
+ const _PBRLSO = "PutBandwidthRateLimitScheduleOutput";
331
+ const _PHPM = "PutHypervisorPropertyMappings";
332
+ const _PHPMI = "PutHypervisorPropertyMappingsInput";
333
+ const _PHPMO = "PutHypervisorPropertyMappingsOutput";
334
+ const _PMST = "PutMaintenanceStartTime";
335
+ const _PMSTI = "PutMaintenanceStartTimeInput";
336
+ const _PMSTO = "PutMaintenanceStartTimeOutput";
337
+ const _Pa = "Path";
338
+ const _RA = "ResourceArn";
339
+ const _RARN = "ResourceARN";
340
+ const _RNFE = "ResourceNotFoundException";
341
+ const _S = "State";
342
+ const _SA = "ServerArn";
343
+ const _SHOD = "StartHourOfDay";
344
+ const _SMOH = "StartMinuteOfHour";
345
+ const _SV = "SoftwareVersion";
346
+ const _SVMMS = "StartVirtualMachinesMetadataSync";
347
+ const _SVMMSI = "StartVirtualMachinesMetadataSyncInput";
348
+ const _SVMMSO = "StartVirtualMachinesMetadataSyncOutput";
349
+ const _T = "Tags";
350
+ const _TE = "ThrottlingException";
351
+ const _THC = "TestHypervisorConfiguration";
352
+ const _THCI = "TestHypervisorConfigurationInput";
353
+ const _THCO = "TestHypervisorConfigurationOutput";
354
+ const _TK = "TagKeys";
355
+ const _TR = "TagResource";
356
+ const _TRI = "TagResourceInput";
357
+ const _TRO = "TagResourceOutput";
358
+ const _Ta = "Tag";
359
+ const _U = "Username";
360
+ const _UGI = "UpdateGatewayInformation";
361
+ const _UGII = "UpdateGatewayInformationInput";
362
+ const _UGIO = "UpdateGatewayInformationOutput";
363
+ const _UGSN = "UpdateGatewaySoftwareNow";
364
+ const _UGSNI = "UpdateGatewaySoftwareNowInput";
365
+ const _UGSNO = "UpdateGatewaySoftwareNowOutput";
366
+ const _UH = "UpdateHypervisor";
367
+ const _UHI = "UpdateHypervisorInput";
368
+ const _UHO = "UpdateHypervisorOutput";
369
+ const _UR = "UntagResource";
370
+ const _URI = "UntagResourceInput";
371
+ const _URO = "UntagResourceOutput";
372
+ const _V = "Value";
373
+ const _VC = "VmwareCategory";
374
+ const _VE = "ValidationException";
375
+ const _VEp = "VpcEndpoint";
376
+ const _VM = "VirtualMachine";
377
+ const _VMD = "VirtualMachineDetails";
378
+ const _VMi = "VirtualMachines";
379
+ const _VT = "VmwareTags";
380
+ const _VTATM = "VmwareToAwsTagMappings";
381
+ const _VTATMm = "VmwareToAwsTagMapping";
382
+ const _VTD = "VmwareTagDescription";
383
+ const _VTN = "VmwareTagName";
384
+ const _VTm = "VmwareTag";
385
+ const _c = "client";
386
+ const _e = "error";
387
+ const _hE = "httpError";
388
+ const _s = "smithy.ts.sdk.synthetic.com.amazonaws.backupgateway";
389
+ const _se = "server";
390
+ const n0 = "com.amazonaws.backupgateway";
391
+ const _s_registry = TypeRegistry.for(_s);
392
+ var BackupGatewayServiceException$ = [-3, _s, "BackupGatewayServiceException", 0, [], []];
393
+ _s_registry.registerError(BackupGatewayServiceException$, BackupGatewayServiceException);
394
+ const n0_registry = TypeRegistry.for(n0);
395
+ var AccessDeniedException$ = [-3, n0, _ADE,
396
+ { [_e]: _c, [_hE]: 403 },
397
+ [_EC, _M],
398
+ [0, 0], 1
399
+ ];
400
+ n0_registry.registerError(AccessDeniedException$, AccessDeniedException);
401
+ var ConflictException$ = [-3, n0, _CE,
402
+ { [_e]: _c, [_hE]: 409 },
403
+ [_EC, _M],
404
+ [0, 0], 1
405
+ ];
406
+ n0_registry.registerError(ConflictException$, ConflictException);
407
+ var InternalServerException$ = [-3, n0, _ISE,
408
+ { [_e]: _se, [_hE]: 500 },
409
+ [_EC, _M],
410
+ [0, 0]
411
+ ];
412
+ n0_registry.registerError(InternalServerException$, InternalServerException);
413
+ var ResourceNotFoundException$ = [-3, n0, _RNFE,
414
+ { [_e]: _c, [_hE]: 404 },
415
+ [_EC, _M],
416
+ [0, 0]
417
+ ];
418
+ n0_registry.registerError(ResourceNotFoundException$, ResourceNotFoundException);
419
+ var ThrottlingException$ = [-3, n0, _TE,
420
+ { [_e]: _c, [_hE]: 429 },
421
+ [_EC, _M],
422
+ [0, 0], 1
423
+ ];
424
+ n0_registry.registerError(ThrottlingException$, ThrottlingException);
425
+ var ValidationException$ = [-3, n0, _VE,
426
+ { [_e]: _c, [_hE]: 400 },
427
+ [_EC, _M],
428
+ [0, 0]
429
+ ];
430
+ n0_registry.registerError(ValidationException$, ValidationException);
431
+ const errorTypeRegistries = [
432
+ _s_registry,
433
+ n0_registry,
434
+ ];
435
+ var Password = [0, n0, _P, 8, 0];
436
+ var Username = [0, n0, _U, 8, 0];
437
+ var AssociateGatewayToServerInput$ = [3, n0, _AGTSI,
438
+ 0,
439
+ [_GA, _SA],
440
+ [0, 0], 2
441
+ ];
442
+ var AssociateGatewayToServerOutput$ = [3, n0, _AGTSO,
443
+ 0,
444
+ [_GA],
445
+ [0]
446
+ ];
447
+ var BandwidthRateLimitInterval$ = [3, n0, _BRLI,
448
+ 0,
449
+ [_SHOD, _EHOD, _SMOH, _EMOH, _DOW, _AURLIBPS],
450
+ [1, 1, 1, 1, 64 | 1, 1], 5
451
+ ];
452
+ var CreateGatewayInput$ = [3, n0, _CGI,
453
+ 0,
454
+ [_AK, _GDN, _GT, _T],
455
+ [0, 0, 0, () => Tags], 3
456
+ ];
457
+ var CreateGatewayOutput$ = [3, n0, _CGO,
458
+ 0,
459
+ [_GA],
460
+ [0]
461
+ ];
462
+ var DeleteGatewayInput$ = [3, n0, _DGI,
463
+ 0,
464
+ [_GA],
465
+ [0], 1
466
+ ];
467
+ var DeleteGatewayOutput$ = [3, n0, _DGO,
468
+ 0,
469
+ [_GA],
470
+ [0]
471
+ ];
472
+ var DeleteHypervisorInput$ = [3, n0, _DHI,
473
+ 0,
474
+ [_HA],
475
+ [0], 1
476
+ ];
477
+ var DeleteHypervisorOutput$ = [3, n0, _DHO,
478
+ 0,
479
+ [_HA],
480
+ [0]
481
+ ];
482
+ var DisassociateGatewayFromServerInput$ = [3, n0, _DGFSI,
483
+ 0,
484
+ [_GA],
485
+ [0], 1
486
+ ];
487
+ var DisassociateGatewayFromServerOutput$ = [3, n0, _DGFSO,
488
+ 0,
489
+ [_GA],
490
+ [0]
491
+ ];
492
+ var Gateway$ = [3, n0, _G,
493
+ 0,
494
+ [_GA, _GDN, _GT, _HI, _LST],
495
+ [0, 0, 0, 0, 4]
496
+ ];
497
+ var GatewayDetails$ = [3, n0, _GD,
498
+ 0,
499
+ [_GA, _GDN, _GT, _HI, _LST, _MST, _NUAT, _VEp, _DD, _SV],
500
+ [0, 0, 0, 0, 4, () => MaintenanceStartTime$, 4, 0, 4, 0]
501
+ ];
502
+ var GetBandwidthRateLimitScheduleInput$ = [3, n0, _GBRLSI,
503
+ 0,
504
+ [_GA],
505
+ [0], 1
506
+ ];
507
+ var GetBandwidthRateLimitScheduleOutput$ = [3, n0, _GBRLSO,
508
+ 0,
509
+ [_GA, _BRLIa],
510
+ [0, () => BandwidthRateLimitIntervals]
511
+ ];
512
+ var GetGatewayInput$ = [3, n0, _GGI,
513
+ 0,
514
+ [_GA],
515
+ [0], 1
516
+ ];
517
+ var GetGatewayOutput$ = [3, n0, _GGO,
518
+ 0,
519
+ [_G],
520
+ [() => GatewayDetails$]
521
+ ];
522
+ var GetHypervisorInput$ = [3, n0, _GHI,
523
+ 0,
524
+ [_HA],
525
+ [0], 1
526
+ ];
527
+ var GetHypervisorOutput$ = [3, n0, _GHO,
528
+ 0,
529
+ [_H],
530
+ [() => HypervisorDetails$]
531
+ ];
532
+ var GetHypervisorPropertyMappingsInput$ = [3, n0, _GHPMI,
533
+ 0,
534
+ [_HA],
535
+ [0], 1
536
+ ];
537
+ var GetHypervisorPropertyMappingsOutput$ = [3, n0, _GHPMO,
538
+ 0,
539
+ [_HA, _VTATM, _IRA],
540
+ [0, () => VmwareToAwsTagMappings, 0]
541
+ ];
542
+ var GetVirtualMachineInput$ = [3, n0, _GVMI,
543
+ 0,
544
+ [_RA],
545
+ [0], 1
546
+ ];
547
+ var GetVirtualMachineOutput$ = [3, n0, _GVMO,
548
+ 0,
549
+ [_VM],
550
+ [() => VirtualMachineDetails$]
551
+ ];
552
+ var Hypervisor$ = [3, n0, _H,
553
+ 0,
554
+ [_Ho, _HA, _KKA, _N, _S],
555
+ [0, 0, 0, 0, 0]
556
+ ];
557
+ var HypervisorDetails$ = [3, n0, _HD,
558
+ 0,
559
+ [_Ho, _HA, _KKA, _N, _LGA, _S, _LSMST, _LMSSM, _LMSS],
560
+ [0, 0, 0, 0, 0, 0, 4, 0, 0]
561
+ ];
562
+ var ImportHypervisorConfigurationInput$ = [3, n0, _IHCI,
563
+ 0,
564
+ [_N, _Ho, _U, _P, _KKA, _T],
565
+ [0, 0, [() => Username, 0], [() => Password, 0], 0, () => Tags], 2
566
+ ];
567
+ var ImportHypervisorConfigurationOutput$ = [3, n0, _IHCO,
568
+ 0,
569
+ [_HA],
570
+ [0]
571
+ ];
572
+ var ListGatewaysInput$ = [3, n0, _LGI,
573
+ 0,
574
+ [_MR, _NT],
575
+ [1, 0]
576
+ ];
577
+ var ListGatewaysOutput$ = [3, n0, _LGO,
578
+ 0,
579
+ [_Ga, _NT],
580
+ [() => Gateways, 0]
581
+ ];
582
+ var ListHypervisorsInput$ = [3, n0, _LHI,
583
+ 0,
584
+ [_MR, _NT],
585
+ [1, 0]
586
+ ];
587
+ var ListHypervisorsOutput$ = [3, n0, _LHO,
588
+ 0,
589
+ [_Hy, _NT],
590
+ [() => Hypervisors, 0]
591
+ ];
592
+ var ListTagsForResourceInput$ = [3, n0, _LTFRI,
593
+ 0,
594
+ [_RA],
595
+ [0], 1
596
+ ];
597
+ var ListTagsForResourceOutput$ = [3, n0, _LTFRO,
598
+ 0,
599
+ [_RA, _T],
600
+ [0, () => Tags]
601
+ ];
602
+ var ListVirtualMachinesInput$ = [3, n0, _LVMI,
603
+ 0,
604
+ [_HA, _MR, _NT],
605
+ [0, 1, 0]
606
+ ];
607
+ var ListVirtualMachinesOutput$ = [3, n0, _LVMO,
608
+ 0,
609
+ [_VMi, _NT],
610
+ [() => VirtualMachines, 0]
611
+ ];
612
+ var MaintenanceStartTime$ = [3, n0, _MST,
613
+ 0,
614
+ [_HOD, _MOH, _DOM, _DOWa],
615
+ [1, 1, 1, 1], 2
616
+ ];
617
+ var PutBandwidthRateLimitScheduleInput$ = [3, n0, _PBRLSI,
618
+ 0,
619
+ [_GA, _BRLIa],
620
+ [0, () => BandwidthRateLimitIntervals], 2
621
+ ];
622
+ var PutBandwidthRateLimitScheduleOutput$ = [3, n0, _PBRLSO,
623
+ 0,
624
+ [_GA],
625
+ [0]
626
+ ];
627
+ var PutHypervisorPropertyMappingsInput$ = [3, n0, _PHPMI,
628
+ 0,
629
+ [_HA, _VTATM, _IRA],
630
+ [0, () => VmwareToAwsTagMappings, 0], 3
631
+ ];
632
+ var PutHypervisorPropertyMappingsOutput$ = [3, n0, _PHPMO,
633
+ 0,
634
+ [_HA],
635
+ [0]
636
+ ];
637
+ var PutMaintenanceStartTimeInput$ = [3, n0, _PMSTI,
638
+ 0,
639
+ [_GA, _HOD, _MOH, _DOWa, _DOM],
640
+ [0, 1, 1, 1, 1], 3
641
+ ];
642
+ var PutMaintenanceStartTimeOutput$ = [3, n0, _PMSTO,
643
+ 0,
644
+ [_GA],
645
+ [0]
646
+ ];
647
+ var StartVirtualMachinesMetadataSyncInput$ = [3, n0, _SVMMSI,
648
+ 0,
649
+ [_HA],
650
+ [0], 1
651
+ ];
652
+ var StartVirtualMachinesMetadataSyncOutput$ = [3, n0, _SVMMSO,
653
+ 0,
654
+ [_HA],
655
+ [0]
656
+ ];
657
+ var Tag$ = [3, n0, _Ta,
658
+ 0,
659
+ [_K, _V],
660
+ [0, 0], 2
661
+ ];
662
+ var TagResourceInput$ = [3, n0, _TRI,
663
+ 0,
664
+ [_RARN, _T],
665
+ [0, () => Tags], 2
666
+ ];
667
+ var TagResourceOutput$ = [3, n0, _TRO,
668
+ 0,
669
+ [_RARN],
670
+ [0]
671
+ ];
672
+ var TestHypervisorConfigurationInput$ = [3, n0, _THCI,
673
+ 0,
674
+ [_GA, _Ho, _U, _P],
675
+ [0, 0, [() => Username, 0], [() => Password, 0]], 2
676
+ ];
677
+ var TestHypervisorConfigurationOutput$ = [3, n0, _THCO,
678
+ 0,
679
+ [],
680
+ []
681
+ ];
682
+ var UntagResourceInput$ = [3, n0, _URI,
683
+ 0,
684
+ [_RARN, _TK],
685
+ [0, 64 | 0], 2
686
+ ];
687
+ var UntagResourceOutput$ = [3, n0, _URO,
688
+ 0,
689
+ [_RARN],
690
+ [0]
691
+ ];
692
+ var UpdateGatewayInformationInput$ = [3, n0, _UGII,
693
+ 0,
694
+ [_GA, _GDN],
695
+ [0, 0], 1
696
+ ];
697
+ var UpdateGatewayInformationOutput$ = [3, n0, _UGIO,
698
+ 0,
699
+ [_GA],
700
+ [0]
701
+ ];
702
+ var UpdateGatewaySoftwareNowInput$ = [3, n0, _UGSNI,
703
+ 0,
704
+ [_GA],
705
+ [0], 1
706
+ ];
707
+ var UpdateGatewaySoftwareNowOutput$ = [3, n0, _UGSNO,
708
+ 0,
709
+ [_GA],
710
+ [0]
711
+ ];
712
+ var UpdateHypervisorInput$ = [3, n0, _UHI,
713
+ 0,
714
+ [_HA, _Ho, _U, _P, _N, _LGA],
715
+ [0, 0, [() => Username, 0], [() => Password, 0], 0, 0], 1
716
+ ];
717
+ var UpdateHypervisorOutput$ = [3, n0, _UHO,
718
+ 0,
719
+ [_HA],
720
+ [0]
721
+ ];
722
+ var VirtualMachine$ = [3, n0, _VM,
723
+ 0,
724
+ [_HN, _HI, _N, _Pa, _RA, _LBD],
725
+ [0, 0, 0, 0, 0, 4]
726
+ ];
727
+ var VirtualMachineDetails$ = [3, n0, _VMD,
728
+ 0,
729
+ [_HN, _HI, _N, _Pa, _RA, _LBD, _VT],
730
+ [0, 0, 0, 0, 0, 4, () => VmwareTags]
731
+ ];
732
+ var VmwareTag$ = [3, n0, _VTm,
733
+ 0,
734
+ [_VC, _VTN, _VTD],
735
+ [0, 0, 0]
736
+ ];
737
+ var VmwareToAwsTagMapping$ = [3, n0, _VTATMm,
738
+ 0,
739
+ [_VC, _VTN, _ATK, _ATV],
740
+ [0, 0, 0, 0], 4
741
+ ];
742
+ var BandwidthRateLimitIntervals = [1, n0, _BRLIa,
743
+ 0, () => BandwidthRateLimitInterval$
744
+ ];
745
+ var Gateways = [1, n0, _Ga,
746
+ 0, () => Gateway$
747
+ ];
748
+ var Hypervisors = [1, n0, _Hy,
749
+ 0, () => Hypervisor$
750
+ ];
751
+ var Tags = [1, n0, _T,
752
+ 0, () => Tag$
753
+ ];
754
+ var VirtualMachines = [1, n0, _VMi,
755
+ 0, () => VirtualMachine$
756
+ ];
757
+ var VmwareTags = [1, n0, _VT,
758
+ 0, () => VmwareTag$
759
+ ];
760
+ var VmwareToAwsTagMappings = [1, n0, _VTATM,
761
+ 0, () => VmwareToAwsTagMapping$
762
+ ];
763
+ var AssociateGatewayToServer$ = [9, n0, _AGTS,
764
+ 0, () => AssociateGatewayToServerInput$, () => AssociateGatewayToServerOutput$
765
+ ];
766
+ var CreateGateway$ = [9, n0, _CG,
767
+ 0, () => CreateGatewayInput$, () => CreateGatewayOutput$
768
+ ];
769
+ var DeleteGateway$ = [9, n0, _DG,
770
+ 2, () => DeleteGatewayInput$, () => DeleteGatewayOutput$
771
+ ];
772
+ var DeleteHypervisor$ = [9, n0, _DH,
773
+ 2, () => DeleteHypervisorInput$, () => DeleteHypervisorOutput$
774
+ ];
775
+ var DisassociateGatewayFromServer$ = [9, n0, _DGFS,
776
+ 0, () => DisassociateGatewayFromServerInput$, () => DisassociateGatewayFromServerOutput$
777
+ ];
778
+ var GetBandwidthRateLimitSchedule$ = [9, n0, _GBRLS,
779
+ 0, () => GetBandwidthRateLimitScheduleInput$, () => GetBandwidthRateLimitScheduleOutput$
780
+ ];
781
+ var GetGateway$ = [9, n0, _GG,
782
+ 0, () => GetGatewayInput$, () => GetGatewayOutput$
783
+ ];
784
+ var GetHypervisor$ = [9, n0, _GH,
785
+ 0, () => GetHypervisorInput$, () => GetHypervisorOutput$
786
+ ];
787
+ var GetHypervisorPropertyMappings$ = [9, n0, _GHPM,
788
+ 0, () => GetHypervisorPropertyMappingsInput$, () => GetHypervisorPropertyMappingsOutput$
789
+ ];
790
+ var GetVirtualMachine$ = [9, n0, _GVM,
791
+ 0, () => GetVirtualMachineInput$, () => GetVirtualMachineOutput$
792
+ ];
793
+ var ImportHypervisorConfiguration$ = [9, n0, _IHC,
794
+ 0, () => ImportHypervisorConfigurationInput$, () => ImportHypervisorConfigurationOutput$
795
+ ];
796
+ var ListGateways$ = [9, n0, _LG,
797
+ 0, () => ListGatewaysInput$, () => ListGatewaysOutput$
798
+ ];
799
+ var ListHypervisors$ = [9, n0, _LH,
800
+ 0, () => ListHypervisorsInput$, () => ListHypervisorsOutput$
801
+ ];
802
+ var ListTagsForResource$ = [9, n0, _LTFR,
803
+ 0, () => ListTagsForResourceInput$, () => ListTagsForResourceOutput$
804
+ ];
805
+ var ListVirtualMachines$ = [9, n0, _LVM,
806
+ 0, () => ListVirtualMachinesInput$, () => ListVirtualMachinesOutput$
807
+ ];
808
+ var PutBandwidthRateLimitSchedule$ = [9, n0, _PBRLS,
809
+ 2, () => PutBandwidthRateLimitScheduleInput$, () => PutBandwidthRateLimitScheduleOutput$
810
+ ];
811
+ var PutHypervisorPropertyMappings$ = [9, n0, _PHPM,
812
+ 2, () => PutHypervisorPropertyMappingsInput$, () => PutHypervisorPropertyMappingsOutput$
813
+ ];
814
+ var PutMaintenanceStartTime$ = [9, n0, _PMST,
815
+ 0, () => PutMaintenanceStartTimeInput$, () => PutMaintenanceStartTimeOutput$
816
+ ];
817
+ var StartVirtualMachinesMetadataSync$ = [9, n0, _SVMMS,
818
+ 0, () => StartVirtualMachinesMetadataSyncInput$, () => StartVirtualMachinesMetadataSyncOutput$
819
+ ];
820
+ var TagResource$ = [9, n0, _TR,
821
+ 0, () => TagResourceInput$, () => TagResourceOutput$
822
+ ];
823
+ var TestHypervisorConfiguration$ = [9, n0, _THC,
824
+ 0, () => TestHypervisorConfigurationInput$, () => TestHypervisorConfigurationOutput$
825
+ ];
826
+ var UntagResource$ = [9, n0, _UR,
827
+ 0, () => UntagResourceInput$, () => UntagResourceOutput$
828
+ ];
829
+ var UpdateGatewayInformation$ = [9, n0, _UGI,
830
+ 0, () => UpdateGatewayInformationInput$, () => UpdateGatewayInformationOutput$
831
+ ];
832
+ var UpdateGatewaySoftwareNow$ = [9, n0, _UGSN,
833
+ 0, () => UpdateGatewaySoftwareNowInput$, () => UpdateGatewaySoftwareNowOutput$
834
+ ];
835
+ var UpdateHypervisor$ = [9, n0, _UH,
836
+ 0, () => UpdateHypervisorInput$, () => UpdateHypervisorOutput$
837
+ ];
838
+
839
+ const getRuntimeConfig$1 = (config) => {
840
+ return {
841
+ apiVersion: "2021-01-01",
842
+ base64Decoder: config?.base64Decoder ?? fromBase64,
843
+ base64Encoder: config?.base64Encoder ?? toBase64,
844
+ disableHostPrefix: config?.disableHostPrefix ?? false,
845
+ endpointProvider: config?.endpointProvider ?? defaultEndpointResolver,
846
+ extensions: config?.extensions ?? [],
847
+ httpAuthSchemeProvider: config?.httpAuthSchemeProvider ?? defaultBackupGatewayHttpAuthSchemeProvider,
848
+ httpAuthSchemes: config?.httpAuthSchemes ?? [
849
+ {
850
+ schemeId: "aws.auth#sigv4",
851
+ identityProvider: (ipc) => ipc.getIdentityProvider("aws.auth#sigv4"),
852
+ signer: new AwsSdkSigV4Signer(),
853
+ },
854
+ ],
855
+ logger: config?.logger ?? new NoOpLogger(),
856
+ protocol: config?.protocol ?? AwsJson1_0Protocol,
857
+ protocolSettings: config?.protocolSettings ?? {
858
+ defaultNamespace: "com.amazonaws.backupgateway",
859
+ errorTypeRegistries,
860
+ version: "2021-01-01",
861
+ serviceTarget: "BackupOnPremises_v20210101",
862
+ },
863
+ serviceId: config?.serviceId ?? "Backup Gateway",
864
+ urlParser: config?.urlParser ?? parseUrl,
865
+ utf8Decoder: config?.utf8Decoder ?? fromUtf8,
866
+ utf8Encoder: config?.utf8Encoder ?? toUtf8,
867
+ };
868
+ };
869
+
870
+ const getRuntimeConfig = (config) => {
871
+ emitWarningIfUnsupportedVersion(process.version);
872
+ const defaultsMode = resolveDefaultsModeConfig(config);
873
+ const defaultConfigProvider = () => defaultsMode().then(loadConfigsForDefaultMode);
874
+ const clientSharedValues = getRuntimeConfig$1(config);
875
+ emitWarningIfUnsupportedVersion$1(process.version);
876
+ const loaderConfig = {
877
+ profile: config?.profile,
878
+ logger: clientSharedValues.logger,
879
+ };
880
+ return {
881
+ ...clientSharedValues,
882
+ ...config,
883
+ runtime: "node",
884
+ defaultsMode,
885
+ authSchemePreference: config?.authSchemePreference ?? loadConfig(NODE_AUTH_SCHEME_PREFERENCE_OPTIONS, loaderConfig),
886
+ bodyLengthChecker: config?.bodyLengthChecker ?? calculateBodyLength,
887
+ credentialDefaultProvider: config?.credentialDefaultProvider ?? defaultProvider,
888
+ defaultUserAgentProvider: config?.defaultUserAgentProvider ?? createDefaultUserAgentProvider({ serviceId: clientSharedValues.serviceId, clientVersion: packageInfo.version }),
889
+ maxAttempts: config?.maxAttempts ?? loadConfig(NODE_MAX_ATTEMPT_CONFIG_OPTIONS, config),
890
+ region: config?.region ?? loadConfig(NODE_REGION_CONFIG_OPTIONS, { ...NODE_REGION_CONFIG_FILE_OPTIONS, ...loaderConfig }),
891
+ requestHandler: NodeHttpHandler.create(config?.requestHandler ?? defaultConfigProvider),
892
+ retryMode: config?.retryMode ??
893
+ loadConfig({
894
+ ...NODE_RETRY_MODE_CONFIG_OPTIONS,
895
+ default: async () => (await defaultConfigProvider()).retryMode || DEFAULT_RETRY_MODE,
896
+ }, config),
897
+ sha256: config?.sha256 ?? Hash.bind(null, "sha256"),
898
+ streamCollector: config?.streamCollector ?? streamCollector,
899
+ useDualstackEndpoint: config?.useDualstackEndpoint ?? loadConfig(NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
900
+ useFipsEndpoint: config?.useFipsEndpoint ?? loadConfig(NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
901
+ userAgentAppId: config?.userAgentAppId ?? loadConfig(NODE_APP_ID_CONFIG_OPTIONS, loaderConfig),
902
+ };
903
+ };
904
+
34
905
  const getHttpAuthExtensionConfiguration = (runtimeConfig) => {
35
906
  const _httpAuthSchemes = runtimeConfig.httpAuthSchemes;
36
907
  let _httpAuthSchemeProvider = runtimeConfig.httpAuthSchemeProvider;
@@ -470,36 +1341,137 @@ const HypervisorState = {
470
1341
  PENDING: "PENDING",
471
1342
  };
472
1343
 
1344
+ exports.AccessDeniedException = AccessDeniedException;
1345
+ exports.AccessDeniedException$ = AccessDeniedException$;
1346
+ exports.AssociateGatewayToServer$ = AssociateGatewayToServer$;
473
1347
  exports.AssociateGatewayToServerCommand = AssociateGatewayToServerCommand;
1348
+ exports.AssociateGatewayToServerInput$ = AssociateGatewayToServerInput$;
1349
+ exports.AssociateGatewayToServerOutput$ = AssociateGatewayToServerOutput$;
474
1350
  exports.BackupGateway = BackupGateway;
475
1351
  exports.BackupGatewayClient = BackupGatewayClient;
1352
+ exports.BackupGatewayServiceException = BackupGatewayServiceException;
1353
+ exports.BackupGatewayServiceException$ = BackupGatewayServiceException$;
1354
+ exports.BandwidthRateLimitInterval$ = BandwidthRateLimitInterval$;
1355
+ exports.ConflictException = ConflictException;
1356
+ exports.ConflictException$ = ConflictException$;
1357
+ exports.CreateGateway$ = CreateGateway$;
476
1358
  exports.CreateGatewayCommand = CreateGatewayCommand;
1359
+ exports.CreateGatewayInput$ = CreateGatewayInput$;
1360
+ exports.CreateGatewayOutput$ = CreateGatewayOutput$;
1361
+ exports.DeleteGateway$ = DeleteGateway$;
477
1362
  exports.DeleteGatewayCommand = DeleteGatewayCommand;
1363
+ exports.DeleteGatewayInput$ = DeleteGatewayInput$;
1364
+ exports.DeleteGatewayOutput$ = DeleteGatewayOutput$;
1365
+ exports.DeleteHypervisor$ = DeleteHypervisor$;
478
1366
  exports.DeleteHypervisorCommand = DeleteHypervisorCommand;
1367
+ exports.DeleteHypervisorInput$ = DeleteHypervisorInput$;
1368
+ exports.DeleteHypervisorOutput$ = DeleteHypervisorOutput$;
1369
+ exports.DisassociateGatewayFromServer$ = DisassociateGatewayFromServer$;
479
1370
  exports.DisassociateGatewayFromServerCommand = DisassociateGatewayFromServerCommand;
1371
+ exports.DisassociateGatewayFromServerInput$ = DisassociateGatewayFromServerInput$;
1372
+ exports.DisassociateGatewayFromServerOutput$ = DisassociateGatewayFromServerOutput$;
1373
+ exports.Gateway$ = Gateway$;
1374
+ exports.GatewayDetails$ = GatewayDetails$;
480
1375
  exports.GatewayType = GatewayType;
1376
+ exports.GetBandwidthRateLimitSchedule$ = GetBandwidthRateLimitSchedule$;
481
1377
  exports.GetBandwidthRateLimitScheduleCommand = GetBandwidthRateLimitScheduleCommand;
1378
+ exports.GetBandwidthRateLimitScheduleInput$ = GetBandwidthRateLimitScheduleInput$;
1379
+ exports.GetBandwidthRateLimitScheduleOutput$ = GetBandwidthRateLimitScheduleOutput$;
1380
+ exports.GetGateway$ = GetGateway$;
482
1381
  exports.GetGatewayCommand = GetGatewayCommand;
1382
+ exports.GetGatewayInput$ = GetGatewayInput$;
1383
+ exports.GetGatewayOutput$ = GetGatewayOutput$;
1384
+ exports.GetHypervisor$ = GetHypervisor$;
483
1385
  exports.GetHypervisorCommand = GetHypervisorCommand;
1386
+ exports.GetHypervisorInput$ = GetHypervisorInput$;
1387
+ exports.GetHypervisorOutput$ = GetHypervisorOutput$;
1388
+ exports.GetHypervisorPropertyMappings$ = GetHypervisorPropertyMappings$;
484
1389
  exports.GetHypervisorPropertyMappingsCommand = GetHypervisorPropertyMappingsCommand;
1390
+ exports.GetHypervisorPropertyMappingsInput$ = GetHypervisorPropertyMappingsInput$;
1391
+ exports.GetHypervisorPropertyMappingsOutput$ = GetHypervisorPropertyMappingsOutput$;
1392
+ exports.GetVirtualMachine$ = GetVirtualMachine$;
485
1393
  exports.GetVirtualMachineCommand = GetVirtualMachineCommand;
1394
+ exports.GetVirtualMachineInput$ = GetVirtualMachineInput$;
1395
+ exports.GetVirtualMachineOutput$ = GetVirtualMachineOutput$;
1396
+ exports.Hypervisor$ = Hypervisor$;
1397
+ exports.HypervisorDetails$ = HypervisorDetails$;
486
1398
  exports.HypervisorState = HypervisorState;
1399
+ exports.ImportHypervisorConfiguration$ = ImportHypervisorConfiguration$;
487
1400
  exports.ImportHypervisorConfigurationCommand = ImportHypervisorConfigurationCommand;
1401
+ exports.ImportHypervisorConfigurationInput$ = ImportHypervisorConfigurationInput$;
1402
+ exports.ImportHypervisorConfigurationOutput$ = ImportHypervisorConfigurationOutput$;
1403
+ exports.InternalServerException = InternalServerException;
1404
+ exports.InternalServerException$ = InternalServerException$;
1405
+ exports.ListGateways$ = ListGateways$;
488
1406
  exports.ListGatewaysCommand = ListGatewaysCommand;
1407
+ exports.ListGatewaysInput$ = ListGatewaysInput$;
1408
+ exports.ListGatewaysOutput$ = ListGatewaysOutput$;
1409
+ exports.ListHypervisors$ = ListHypervisors$;
489
1410
  exports.ListHypervisorsCommand = ListHypervisorsCommand;
1411
+ exports.ListHypervisorsInput$ = ListHypervisorsInput$;
1412
+ exports.ListHypervisorsOutput$ = ListHypervisorsOutput$;
1413
+ exports.ListTagsForResource$ = ListTagsForResource$;
490
1414
  exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
1415
+ exports.ListTagsForResourceInput$ = ListTagsForResourceInput$;
1416
+ exports.ListTagsForResourceOutput$ = ListTagsForResourceOutput$;
1417
+ exports.ListVirtualMachines$ = ListVirtualMachines$;
491
1418
  exports.ListVirtualMachinesCommand = ListVirtualMachinesCommand;
1419
+ exports.ListVirtualMachinesInput$ = ListVirtualMachinesInput$;
1420
+ exports.ListVirtualMachinesOutput$ = ListVirtualMachinesOutput$;
1421
+ exports.MaintenanceStartTime$ = MaintenanceStartTime$;
1422
+ exports.PutBandwidthRateLimitSchedule$ = PutBandwidthRateLimitSchedule$;
492
1423
  exports.PutBandwidthRateLimitScheduleCommand = PutBandwidthRateLimitScheduleCommand;
1424
+ exports.PutBandwidthRateLimitScheduleInput$ = PutBandwidthRateLimitScheduleInput$;
1425
+ exports.PutBandwidthRateLimitScheduleOutput$ = PutBandwidthRateLimitScheduleOutput$;
1426
+ exports.PutHypervisorPropertyMappings$ = PutHypervisorPropertyMappings$;
493
1427
  exports.PutHypervisorPropertyMappingsCommand = PutHypervisorPropertyMappingsCommand;
1428
+ exports.PutHypervisorPropertyMappingsInput$ = PutHypervisorPropertyMappingsInput$;
1429
+ exports.PutHypervisorPropertyMappingsOutput$ = PutHypervisorPropertyMappingsOutput$;
1430
+ exports.PutMaintenanceStartTime$ = PutMaintenanceStartTime$;
494
1431
  exports.PutMaintenanceStartTimeCommand = PutMaintenanceStartTimeCommand;
1432
+ exports.PutMaintenanceStartTimeInput$ = PutMaintenanceStartTimeInput$;
1433
+ exports.PutMaintenanceStartTimeOutput$ = PutMaintenanceStartTimeOutput$;
1434
+ exports.ResourceNotFoundException = ResourceNotFoundException;
1435
+ exports.ResourceNotFoundException$ = ResourceNotFoundException$;
1436
+ exports.StartVirtualMachinesMetadataSync$ = StartVirtualMachinesMetadataSync$;
495
1437
  exports.StartVirtualMachinesMetadataSyncCommand = StartVirtualMachinesMetadataSyncCommand;
1438
+ exports.StartVirtualMachinesMetadataSyncInput$ = StartVirtualMachinesMetadataSyncInput$;
1439
+ exports.StartVirtualMachinesMetadataSyncOutput$ = StartVirtualMachinesMetadataSyncOutput$;
496
1440
  exports.SyncMetadataStatus = SyncMetadataStatus;
1441
+ exports.Tag$ = Tag$;
1442
+ exports.TagResource$ = TagResource$;
497
1443
  exports.TagResourceCommand = TagResourceCommand;
1444
+ exports.TagResourceInput$ = TagResourceInput$;
1445
+ exports.TagResourceOutput$ = TagResourceOutput$;
1446
+ exports.TestHypervisorConfiguration$ = TestHypervisorConfiguration$;
498
1447
  exports.TestHypervisorConfigurationCommand = TestHypervisorConfigurationCommand;
1448
+ exports.TestHypervisorConfigurationInput$ = TestHypervisorConfigurationInput$;
1449
+ exports.TestHypervisorConfigurationOutput$ = TestHypervisorConfigurationOutput$;
1450
+ exports.ThrottlingException = ThrottlingException;
1451
+ exports.ThrottlingException$ = ThrottlingException$;
1452
+ exports.UntagResource$ = UntagResource$;
499
1453
  exports.UntagResourceCommand = UntagResourceCommand;
1454
+ exports.UntagResourceInput$ = UntagResourceInput$;
1455
+ exports.UntagResourceOutput$ = UntagResourceOutput$;
1456
+ exports.UpdateGatewayInformation$ = UpdateGatewayInformation$;
500
1457
  exports.UpdateGatewayInformationCommand = UpdateGatewayInformationCommand;
1458
+ exports.UpdateGatewayInformationInput$ = UpdateGatewayInformationInput$;
1459
+ exports.UpdateGatewayInformationOutput$ = UpdateGatewayInformationOutput$;
1460
+ exports.UpdateGatewaySoftwareNow$ = UpdateGatewaySoftwareNow$;
501
1461
  exports.UpdateGatewaySoftwareNowCommand = UpdateGatewaySoftwareNowCommand;
1462
+ exports.UpdateGatewaySoftwareNowInput$ = UpdateGatewaySoftwareNowInput$;
1463
+ exports.UpdateGatewaySoftwareNowOutput$ = UpdateGatewaySoftwareNowOutput$;
1464
+ exports.UpdateHypervisor$ = UpdateHypervisor$;
502
1465
  exports.UpdateHypervisorCommand = UpdateHypervisorCommand;
1466
+ exports.UpdateHypervisorInput$ = UpdateHypervisorInput$;
1467
+ exports.UpdateHypervisorOutput$ = UpdateHypervisorOutput$;
1468
+ exports.ValidationException = ValidationException;
1469
+ exports.ValidationException$ = ValidationException$;
1470
+ exports.VirtualMachine$ = VirtualMachine$;
1471
+ exports.VirtualMachineDetails$ = VirtualMachineDetails$;
1472
+ exports.VmwareTag$ = VmwareTag$;
1473
+ exports.VmwareToAwsTagMapping$ = VmwareToAwsTagMapping$;
1474
+ exports.errorTypeRegistries = errorTypeRegistries;
503
1475
  exports.paginateListGateways = paginateListGateways;
504
1476
  exports.paginateListHypervisors = paginateListHypervisors;
505
1477
  exports.paginateListVirtualMachines = paginateListVirtualMachines;