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