@aws-sdk/client-backup-gateway 3.952.0 → 3.954.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-cjs/index.js +311 -190
- package/dist-cjs/runtimeConfig.shared.js +6 -6
- package/dist-es/commands/AssociateGatewayToServerCommand.js +2 -2
- package/dist-es/commands/CreateGatewayCommand.js +2 -2
- package/dist-es/commands/DeleteGatewayCommand.js +2 -2
- package/dist-es/commands/DeleteHypervisorCommand.js +2 -2
- package/dist-es/commands/DisassociateGatewayFromServerCommand.js +2 -2
- package/dist-es/commands/GetBandwidthRateLimitScheduleCommand.js +2 -2
- package/dist-es/commands/GetGatewayCommand.js +2 -2
- package/dist-es/commands/GetHypervisorCommand.js +2 -2
- package/dist-es/commands/GetHypervisorPropertyMappingsCommand.js +2 -2
- package/dist-es/commands/GetVirtualMachineCommand.js +2 -2
- package/dist-es/commands/ImportHypervisorConfigurationCommand.js +2 -2
- package/dist-es/commands/ListGatewaysCommand.js +2 -2
- package/dist-es/commands/ListHypervisorsCommand.js +2 -2
- package/dist-es/commands/ListTagsForResourceCommand.js +2 -2
- package/dist-es/commands/ListVirtualMachinesCommand.js +2 -2
- package/dist-es/commands/PutBandwidthRateLimitScheduleCommand.js +2 -2
- package/dist-es/commands/PutHypervisorPropertyMappingsCommand.js +2 -2
- package/dist-es/commands/PutMaintenanceStartTimeCommand.js +2 -2
- package/dist-es/commands/StartVirtualMachinesMetadataSyncCommand.js +2 -2
- package/dist-es/commands/TagResourceCommand.js +2 -2
- package/dist-es/commands/TestHypervisorConfigurationCommand.js +2 -2
- package/dist-es/commands/UntagResourceCommand.js +2 -2
- package/dist-es/commands/UpdateGatewayInformationCommand.js +2 -2
- package/dist-es/commands/UpdateGatewaySoftwareNowCommand.js +2 -2
- package/dist-es/commands/UpdateHypervisorCommand.js +2 -2
- package/dist-es/index.js +1 -0
- package/dist-es/runtimeConfig.shared.js +6 -6
- package/dist-es/schemas/schemas_0.js +178 -150
- package/dist-types/BackupGatewayClient.d.ts +1 -10
- package/dist-types/index.d.ts +1 -0
- package/dist-types/runtimeConfig.browser.d.ts +6 -2
- package/dist-types/runtimeConfig.d.ts +6 -2
- package/dist-types/runtimeConfig.native.d.ts +6 -2
- package/dist-types/runtimeConfig.shared.d.ts +6 -1
- package/dist-types/schemas/schemas_0.d.ts +94 -105
- package/dist-types/ts3.4/BackupGatewayClient.d.ts +0 -4
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +9 -4
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +93 -106
- package/package.json +34 -34
package/dist-cjs/index.js
CHANGED
|
@@ -110,14 +110,14 @@ class BackupGatewayClient extends smithyClient.Client {
|
|
|
110
110
|
}
|
|
111
111
|
}
|
|
112
112
|
|
|
113
|
-
|
|
113
|
+
class BackupGatewayServiceException extends smithyClient.ServiceException {
|
|
114
114
|
constructor(options) {
|
|
115
115
|
super(options);
|
|
116
116
|
Object.setPrototypeOf(this, BackupGatewayServiceException.prototype);
|
|
117
117
|
}
|
|
118
|
-
}
|
|
118
|
+
}
|
|
119
119
|
|
|
120
|
-
|
|
120
|
+
class AccessDeniedException extends BackupGatewayServiceException {
|
|
121
121
|
name = "AccessDeniedException";
|
|
122
122
|
$fault = "client";
|
|
123
123
|
ErrorCode;
|
|
@@ -132,8 +132,8 @@ let AccessDeniedException$1 = class AccessDeniedException extends BackupGatewayS
|
|
|
132
132
|
this.ErrorCode = opts.ErrorCode;
|
|
133
133
|
this.Message = opts.Message;
|
|
134
134
|
}
|
|
135
|
-
}
|
|
136
|
-
|
|
135
|
+
}
|
|
136
|
+
class ConflictException extends BackupGatewayServiceException {
|
|
137
137
|
name = "ConflictException";
|
|
138
138
|
$fault = "client";
|
|
139
139
|
ErrorCode;
|
|
@@ -148,8 +148,8 @@ let ConflictException$1 = class ConflictException extends BackupGatewayServiceEx
|
|
|
148
148
|
this.ErrorCode = opts.ErrorCode;
|
|
149
149
|
this.Message = opts.Message;
|
|
150
150
|
}
|
|
151
|
-
}
|
|
152
|
-
|
|
151
|
+
}
|
|
152
|
+
class InternalServerException extends BackupGatewayServiceException {
|
|
153
153
|
name = "InternalServerException";
|
|
154
154
|
$fault = "server";
|
|
155
155
|
ErrorCode;
|
|
@@ -164,8 +164,8 @@ let InternalServerException$1 = class InternalServerException extends BackupGate
|
|
|
164
164
|
this.ErrorCode = opts.ErrorCode;
|
|
165
165
|
this.Message = opts.Message;
|
|
166
166
|
}
|
|
167
|
-
}
|
|
168
|
-
|
|
167
|
+
}
|
|
168
|
+
class ThrottlingException extends BackupGatewayServiceException {
|
|
169
169
|
name = "ThrottlingException";
|
|
170
170
|
$fault = "client";
|
|
171
171
|
ErrorCode;
|
|
@@ -180,8 +180,8 @@ let ThrottlingException$1 = class ThrottlingException extends BackupGatewayServi
|
|
|
180
180
|
this.ErrorCode = opts.ErrorCode;
|
|
181
181
|
this.Message = opts.Message;
|
|
182
182
|
}
|
|
183
|
-
}
|
|
184
|
-
|
|
183
|
+
}
|
|
184
|
+
class ValidationException extends BackupGatewayServiceException {
|
|
185
185
|
name = "ValidationException";
|
|
186
186
|
$fault = "client";
|
|
187
187
|
ErrorCode;
|
|
@@ -196,8 +196,8 @@ let ValidationException$1 = class ValidationException extends BackupGatewayServi
|
|
|
196
196
|
this.ErrorCode = opts.ErrorCode;
|
|
197
197
|
this.Message = opts.Message;
|
|
198
198
|
}
|
|
199
|
-
}
|
|
200
|
-
|
|
199
|
+
}
|
|
200
|
+
class ResourceNotFoundException extends BackupGatewayServiceException {
|
|
201
201
|
name = "ResourceNotFoundException";
|
|
202
202
|
$fault = "client";
|
|
203
203
|
ErrorCode;
|
|
@@ -212,7 +212,7 @@ let ResourceNotFoundException$1 = class ResourceNotFoundException extends Backup
|
|
|
212
212
|
this.ErrorCode = opts.ErrorCode;
|
|
213
213
|
this.Message = opts.Message;
|
|
214
214
|
}
|
|
215
|
-
}
|
|
215
|
+
}
|
|
216
216
|
|
|
217
217
|
const _ADE = "AccessDeniedException";
|
|
218
218
|
const _AGTS = "AssociateGatewayToServer";
|
|
@@ -369,11 +369,11 @@ const _sm = "smithy.ts.sdk.synthetic.com.amazonaws.backupgateway";
|
|
|
369
369
|
const n0 = "com.amazonaws.backupgateway";
|
|
370
370
|
var Password = [0, n0, _P, 8, 0];
|
|
371
371
|
var Username = [0, n0, _U, 8, 0];
|
|
372
|
-
var AccessDeniedException = [-3, n0, _ADE, { [_e]: _c, [_hE]: 403 }, [_EC, _M], [0, 0]];
|
|
373
|
-
schema.TypeRegistry.for(n0).registerError(AccessDeniedException
|
|
374
|
-
var AssociateGatewayToServerInput = [3, n0, _AGTSI, 0, [_GA, _SA], [0, 0]];
|
|
375
|
-
var AssociateGatewayToServerOutput = [3, n0, _AGTSO, 0, [_GA], [0]];
|
|
376
|
-
var BandwidthRateLimitInterval = [
|
|
372
|
+
var AccessDeniedException$ = [-3, n0, _ADE, { [_e]: _c, [_hE]: 403 }, [_EC, _M], [0, 0]];
|
|
373
|
+
schema.TypeRegistry.for(n0).registerError(AccessDeniedException$, AccessDeniedException);
|
|
374
|
+
var AssociateGatewayToServerInput$ = [3, n0, _AGTSI, 0, [_GA, _SA], [0, 0]];
|
|
375
|
+
var AssociateGatewayToServerOutput$ = [3, n0, _AGTSO, 0, [_GA], [0]];
|
|
376
|
+
var BandwidthRateLimitInterval$ = [
|
|
377
377
|
3,
|
|
378
378
|
n0,
|
|
379
379
|
_BRLI,
|
|
@@ -381,27 +381,27 @@ var BandwidthRateLimitInterval = [
|
|
|
381
381
|
[_AURLIBPS, _SHOD, _EHOD, _SMOH, _EMOH, _DOW],
|
|
382
382
|
[1, 1, 1, 1, 1, 64 | 1],
|
|
383
383
|
];
|
|
384
|
-
var ConflictException = [-3, n0, _CE, { [_e]: _c, [_hE]: 409 }, [_EC, _M], [0, 0]];
|
|
385
|
-
schema.TypeRegistry.for(n0).registerError(ConflictException
|
|
386
|
-
var CreateGatewayInput = [3, n0, _CGI, 0, [_AK, _GDN, _GT, _T], [0, 0, 0, () => Tags]];
|
|
387
|
-
var CreateGatewayOutput = [3, n0, _CGO, 0, [_GA], [0]];
|
|
388
|
-
var DeleteGatewayInput = [3, n0, _DGI, 0, [_GA], [0]];
|
|
389
|
-
var DeleteGatewayOutput = [3, n0, _DGO, 0, [_GA], [0]];
|
|
390
|
-
var DeleteHypervisorInput = [3, n0, _DHI, 0, [_HA], [0]];
|
|
391
|
-
var DeleteHypervisorOutput = [3, n0, _DHO, 0, [_HA], [0]];
|
|
392
|
-
var DisassociateGatewayFromServerInput = [3, n0, _DGFSI, 0, [_GA], [0]];
|
|
393
|
-
var DisassociateGatewayFromServerOutput = [3, n0, _DGFSO, 0, [_GA], [0]];
|
|
394
|
-
var Gateway = [3, n0, _G, 0, [_GA, _GDN, _GT, _HI, _LST], [0, 0, 0, 0, 4]];
|
|
395
|
-
var GatewayDetails = [
|
|
384
|
+
var ConflictException$ = [-3, n0, _CE, { [_e]: _c, [_hE]: 409 }, [_EC, _M], [0, 0]];
|
|
385
|
+
schema.TypeRegistry.for(n0).registerError(ConflictException$, ConflictException);
|
|
386
|
+
var CreateGatewayInput$ = [3, n0, _CGI, 0, [_AK, _GDN, _GT, _T], [0, 0, 0, () => Tags]];
|
|
387
|
+
var CreateGatewayOutput$ = [3, n0, _CGO, 0, [_GA], [0]];
|
|
388
|
+
var DeleteGatewayInput$ = [3, n0, _DGI, 0, [_GA], [0]];
|
|
389
|
+
var DeleteGatewayOutput$ = [3, n0, _DGO, 0, [_GA], [0]];
|
|
390
|
+
var DeleteHypervisorInput$ = [3, n0, _DHI, 0, [_HA], [0]];
|
|
391
|
+
var DeleteHypervisorOutput$ = [3, n0, _DHO, 0, [_HA], [0]];
|
|
392
|
+
var DisassociateGatewayFromServerInput$ = [3, n0, _DGFSI, 0, [_GA], [0]];
|
|
393
|
+
var DisassociateGatewayFromServerOutput$ = [3, n0, _DGFSO, 0, [_GA], [0]];
|
|
394
|
+
var Gateway$ = [3, n0, _G, 0, [_GA, _GDN, _GT, _HI, _LST], [0, 0, 0, 0, 4]];
|
|
395
|
+
var GatewayDetails$ = [
|
|
396
396
|
3,
|
|
397
397
|
n0,
|
|
398
398
|
_GD,
|
|
399
399
|
0,
|
|
400
400
|
[_GA, _GDN, _GT, _HI, _LST, _MST, _NUAT, _VE],
|
|
401
|
-
[0, 0, 0, 0, 4, () => MaintenanceStartTime
|
|
401
|
+
[0, 0, 0, 0, 4, () => MaintenanceStartTime$, 4, 0],
|
|
402
402
|
];
|
|
403
|
-
var GetBandwidthRateLimitScheduleInput = [3, n0, _GBRLSI, 0, [_GA], [0]];
|
|
404
|
-
var GetBandwidthRateLimitScheduleOutput = [
|
|
403
|
+
var GetBandwidthRateLimitScheduleInput$ = [3, n0, _GBRLSI, 0, [_GA], [0]];
|
|
404
|
+
var GetBandwidthRateLimitScheduleOutput$ = [
|
|
405
405
|
3,
|
|
406
406
|
n0,
|
|
407
407
|
_GBRLSO,
|
|
@@ -409,12 +409,12 @@ var GetBandwidthRateLimitScheduleOutput = [
|
|
|
409
409
|
[_GA, _BRLIa],
|
|
410
410
|
[0, () => BandwidthRateLimitIntervals],
|
|
411
411
|
];
|
|
412
|
-
var GetGatewayInput = [3, n0, _GGI, 0, [_GA], [0]];
|
|
413
|
-
var GetGatewayOutput = [3, n0, _GGO, 0, [_G], [() => GatewayDetails]];
|
|
414
|
-
var GetHypervisorInput = [3, n0, _GHI, 0, [_HA], [0]];
|
|
415
|
-
var GetHypervisorOutput = [3, n0, _GHO, 0, [_H], [() => HypervisorDetails]];
|
|
416
|
-
var GetHypervisorPropertyMappingsInput = [3, n0, _GHPMI, 0, [_HA], [0]];
|
|
417
|
-
var GetHypervisorPropertyMappingsOutput = [
|
|
412
|
+
var GetGatewayInput$ = [3, n0, _GGI, 0, [_GA], [0]];
|
|
413
|
+
var GetGatewayOutput$ = [3, n0, _GGO, 0, [_G], [() => GatewayDetails$]];
|
|
414
|
+
var GetHypervisorInput$ = [3, n0, _GHI, 0, [_HA], [0]];
|
|
415
|
+
var GetHypervisorOutput$ = [3, n0, _GHO, 0, [_H], [() => HypervisorDetails$]];
|
|
416
|
+
var GetHypervisorPropertyMappingsInput$ = [3, n0, _GHPMI, 0, [_HA], [0]];
|
|
417
|
+
var GetHypervisorPropertyMappingsOutput$ = [
|
|
418
418
|
3,
|
|
419
419
|
n0,
|
|
420
420
|
_GHPMO,
|
|
@@ -422,10 +422,10 @@ var GetHypervisorPropertyMappingsOutput = [
|
|
|
422
422
|
[_HA, _VTATM, _IRA],
|
|
423
423
|
[0, () => VmwareToAwsTagMappings, 0],
|
|
424
424
|
];
|
|
425
|
-
var GetVirtualMachineInput = [3, n0, _GVMI, 0, [_RA], [0]];
|
|
426
|
-
var GetVirtualMachineOutput = [3, n0, _GVMO, 0, [_VM], [() => VirtualMachineDetails]];
|
|
427
|
-
var Hypervisor = [3, n0, _H, 0, [_Ho, _HA, _KKA, _N, _S], [0, 0, 0, 0, 0]];
|
|
428
|
-
var HypervisorDetails = [
|
|
425
|
+
var GetVirtualMachineInput$ = [3, n0, _GVMI, 0, [_RA], [0]];
|
|
426
|
+
var GetVirtualMachineOutput$ = [3, n0, _GVMO, 0, [_VM], [() => VirtualMachineDetails$]];
|
|
427
|
+
var Hypervisor$ = [3, n0, _H, 0, [_Ho, _HA, _KKA, _N, _S], [0, 0, 0, 0, 0]];
|
|
428
|
+
var HypervisorDetails$ = [
|
|
429
429
|
3,
|
|
430
430
|
n0,
|
|
431
431
|
_HD,
|
|
@@ -433,7 +433,7 @@ var HypervisorDetails = [
|
|
|
433
433
|
[_Ho, _HA, _KKA, _N, _LGA, _S, _LSMST, _LMSSM, _LMSS],
|
|
434
434
|
[0, 0, 0, 0, 0, 0, 4, 0, 0],
|
|
435
435
|
];
|
|
436
|
-
var ImportHypervisorConfigurationInput = [
|
|
436
|
+
var ImportHypervisorConfigurationInput$ = [
|
|
437
437
|
3,
|
|
438
438
|
n0,
|
|
439
439
|
_IHCI,
|
|
@@ -441,17 +441,17 @@ var ImportHypervisorConfigurationInput = [
|
|
|
441
441
|
[_N, _Ho, _U, _P, _KKA, _T],
|
|
442
442
|
[0, 0, [() => Username, 0], [() => Password, 0], 0, () => Tags],
|
|
443
443
|
];
|
|
444
|
-
var ImportHypervisorConfigurationOutput = [3, n0, _IHCO, 0, [_HA], [0]];
|
|
445
|
-
var InternalServerException = [-3, n0, _ISE, { [_e]: _s, [_hE]: 500 }, [_EC, _M], [0, 0]];
|
|
446
|
-
schema.TypeRegistry.for(n0).registerError(InternalServerException
|
|
447
|
-
var ListGatewaysInput = [3, n0, _LGI, 0, [_MR, _NT], [1, 0]];
|
|
448
|
-
var ListGatewaysOutput = [3, n0, _LGO, 0, [_Ga, _NT], [() => Gateways, 0]];
|
|
449
|
-
var ListHypervisorsInput = [3, n0, _LHI, 0, [_MR, _NT], [1, 0]];
|
|
450
|
-
var ListHypervisorsOutput = [3, n0, _LHO, 0, [_Hy, _NT], [() => Hypervisors, 0]];
|
|
451
|
-
var ListTagsForResourceInput = [3, n0, _LTFRI, 0, [_RA], [0]];
|
|
452
|
-
var ListTagsForResourceOutput = [3, n0, _LTFRO, 0, [_RA, _T], [0, () => Tags]];
|
|
453
|
-
var ListVirtualMachinesInput = [3, n0, _LVMI, 0, [_HA, _MR, _NT], [0, 1, 0]];
|
|
454
|
-
var ListVirtualMachinesOutput = [
|
|
444
|
+
var ImportHypervisorConfigurationOutput$ = [3, n0, _IHCO, 0, [_HA], [0]];
|
|
445
|
+
var InternalServerException$ = [-3, n0, _ISE, { [_e]: _s, [_hE]: 500 }, [_EC, _M], [0, 0]];
|
|
446
|
+
schema.TypeRegistry.for(n0).registerError(InternalServerException$, InternalServerException);
|
|
447
|
+
var ListGatewaysInput$ = [3, n0, _LGI, 0, [_MR, _NT], [1, 0]];
|
|
448
|
+
var ListGatewaysOutput$ = [3, n0, _LGO, 0, [_Ga, _NT], [() => Gateways, 0]];
|
|
449
|
+
var ListHypervisorsInput$ = [3, n0, _LHI, 0, [_MR, _NT], [1, 0]];
|
|
450
|
+
var ListHypervisorsOutput$ = [3, n0, _LHO, 0, [_Hy, _NT], [() => Hypervisors, 0]];
|
|
451
|
+
var ListTagsForResourceInput$ = [3, n0, _LTFRI, 0, [_RA], [0]];
|
|
452
|
+
var ListTagsForResourceOutput$ = [3, n0, _LTFRO, 0, [_RA, _T], [0, () => Tags]];
|
|
453
|
+
var ListVirtualMachinesInput$ = [3, n0, _LVMI, 0, [_HA, _MR, _NT], [0, 1, 0]];
|
|
454
|
+
var ListVirtualMachinesOutput$ = [
|
|
455
455
|
3,
|
|
456
456
|
n0,
|
|
457
457
|
_LVMO,
|
|
@@ -459,8 +459,8 @@ var ListVirtualMachinesOutput = [
|
|
|
459
459
|
[_VMi, _NT],
|
|
460
460
|
[() => VirtualMachines, 0],
|
|
461
461
|
];
|
|
462
|
-
var MaintenanceStartTime = [3, n0, _MST, 0, [_DOM, _DOWa, _HOD, _MOH], [1, 1, 1, 1]];
|
|
463
|
-
var PutBandwidthRateLimitScheduleInput = [
|
|
462
|
+
var MaintenanceStartTime$ = [3, n0, _MST, 0, [_DOM, _DOWa, _HOD, _MOH], [1, 1, 1, 1]];
|
|
463
|
+
var PutBandwidthRateLimitScheduleInput$ = [
|
|
464
464
|
3,
|
|
465
465
|
n0,
|
|
466
466
|
_PBRLSI,
|
|
@@ -468,8 +468,8 @@ var PutBandwidthRateLimitScheduleInput = [
|
|
|
468
468
|
[_GA, _BRLIa],
|
|
469
469
|
[0, () => BandwidthRateLimitIntervals],
|
|
470
470
|
];
|
|
471
|
-
var PutBandwidthRateLimitScheduleOutput = [3, n0, _PBRLSO, 0, [_GA], [0]];
|
|
472
|
-
var PutHypervisorPropertyMappingsInput = [
|
|
471
|
+
var PutBandwidthRateLimitScheduleOutput$ = [3, n0, _PBRLSO, 0, [_GA], [0]];
|
|
472
|
+
var PutHypervisorPropertyMappingsInput$ = [
|
|
473
473
|
3,
|
|
474
474
|
n0,
|
|
475
475
|
_PHPMI,
|
|
@@ -477,8 +477,8 @@ var PutHypervisorPropertyMappingsInput = [
|
|
|
477
477
|
[_HA, _VTATM, _IRA],
|
|
478
478
|
[0, () => VmwareToAwsTagMappings, 0],
|
|
479
479
|
];
|
|
480
|
-
var PutHypervisorPropertyMappingsOutput = [3, n0, _PHPMO, 0, [_HA], [0]];
|
|
481
|
-
var PutMaintenanceStartTimeInput = [
|
|
480
|
+
var PutHypervisorPropertyMappingsOutput$ = [3, n0, _PHPMO, 0, [_HA], [0]];
|
|
481
|
+
var PutMaintenanceStartTimeInput$ = [
|
|
482
482
|
3,
|
|
483
483
|
n0,
|
|
484
484
|
_PMSTI,
|
|
@@ -486,15 +486,15 @@ var PutMaintenanceStartTimeInput = [
|
|
|
486
486
|
[_GA, _HOD, _MOH, _DOWa, _DOM],
|
|
487
487
|
[0, 1, 1, 1, 1],
|
|
488
488
|
];
|
|
489
|
-
var PutMaintenanceStartTimeOutput = [3, n0, _PMSTO, 0, [_GA], [0]];
|
|
490
|
-
var ResourceNotFoundException = [-3, n0, _RNFE, { [_e]: _c, [_hE]: 404 }, [_EC, _M], [0, 0]];
|
|
491
|
-
schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException
|
|
492
|
-
var StartVirtualMachinesMetadataSyncInput = [3, n0, _SVMMSI, 0, [_HA], [0]];
|
|
493
|
-
var StartVirtualMachinesMetadataSyncOutput = [3, n0, _SVMMSO, 0, [_HA], [0]];
|
|
494
|
-
var Tag = [3, n0, _Ta, 0, [_K, _V], [0, 0]];
|
|
495
|
-
var TagResourceInput = [3, n0, _TRI, 0, [_RARN, _T], [0, () => Tags]];
|
|
496
|
-
var TagResourceOutput = [3, n0, _TRO, 0, [_RARN], [0]];
|
|
497
|
-
var TestHypervisorConfigurationInput = [
|
|
489
|
+
var PutMaintenanceStartTimeOutput$ = [3, n0, _PMSTO, 0, [_GA], [0]];
|
|
490
|
+
var ResourceNotFoundException$ = [-3, n0, _RNFE, { [_e]: _c, [_hE]: 404 }, [_EC, _M], [0, 0]];
|
|
491
|
+
schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException$, ResourceNotFoundException);
|
|
492
|
+
var StartVirtualMachinesMetadataSyncInput$ = [3, n0, _SVMMSI, 0, [_HA], [0]];
|
|
493
|
+
var StartVirtualMachinesMetadataSyncOutput$ = [3, n0, _SVMMSO, 0, [_HA], [0]];
|
|
494
|
+
var Tag$ = [3, n0, _Ta, 0, [_K, _V], [0, 0]];
|
|
495
|
+
var TagResourceInput$ = [3, n0, _TRI, 0, [_RARN, _T], [0, () => Tags]];
|
|
496
|
+
var TagResourceOutput$ = [3, n0, _TRO, 0, [_RARN], [0]];
|
|
497
|
+
var TestHypervisorConfigurationInput$ = [
|
|
498
498
|
3,
|
|
499
499
|
n0,
|
|
500
500
|
_THCI,
|
|
@@ -502,16 +502,16 @@ var TestHypervisorConfigurationInput = [
|
|
|
502
502
|
[_GA, _Ho, _U, _P],
|
|
503
503
|
[0, 0, [() => Username, 0], [() => Password, 0]],
|
|
504
504
|
];
|
|
505
|
-
var TestHypervisorConfigurationOutput = [3, n0, _THCO, 0, [], []];
|
|
506
|
-
var ThrottlingException = [-3, n0, _TE, { [_e]: _c, [_hE]: 429 }, [_EC, _M], [0, 0]];
|
|
507
|
-
schema.TypeRegistry.for(n0).registerError(ThrottlingException
|
|
508
|
-
var UntagResourceInput = [3, n0, _URI, 0, [_RARN, _TK], [0, 64 | 0]];
|
|
509
|
-
var UntagResourceOutput = [3, n0, _URO, 0, [_RARN], [0]];
|
|
510
|
-
var UpdateGatewayInformationInput = [3, n0, _UGII, 0, [_GA, _GDN], [0, 0]];
|
|
511
|
-
var UpdateGatewayInformationOutput = [3, n0, _UGIO, 0, [_GA], [0]];
|
|
512
|
-
var UpdateGatewaySoftwareNowInput = [3, n0, _UGSNI, 0, [_GA], [0]];
|
|
513
|
-
var UpdateGatewaySoftwareNowOutput = [3, n0, _UGSNO, 0, [_GA], [0]];
|
|
514
|
-
var UpdateHypervisorInput = [
|
|
505
|
+
var TestHypervisorConfigurationOutput$ = [3, n0, _THCO, 0, [], []];
|
|
506
|
+
var ThrottlingException$ = [-3, n0, _TE, { [_e]: _c, [_hE]: 429 }, [_EC, _M], [0, 0]];
|
|
507
|
+
schema.TypeRegistry.for(n0).registerError(ThrottlingException$, ThrottlingException);
|
|
508
|
+
var UntagResourceInput$ = [3, n0, _URI, 0, [_RARN, _TK], [0, 64 | 0]];
|
|
509
|
+
var UntagResourceOutput$ = [3, n0, _URO, 0, [_RARN], [0]];
|
|
510
|
+
var UpdateGatewayInformationInput$ = [3, n0, _UGII, 0, [_GA, _GDN], [0, 0]];
|
|
511
|
+
var UpdateGatewayInformationOutput$ = [3, n0, _UGIO, 0, [_GA], [0]];
|
|
512
|
+
var UpdateGatewaySoftwareNowInput$ = [3, n0, _UGSNI, 0, [_GA], [0]];
|
|
513
|
+
var UpdateGatewaySoftwareNowOutput$ = [3, n0, _UGSNO, 0, [_GA], [0]];
|
|
514
|
+
var UpdateHypervisorInput$ = [
|
|
515
515
|
3,
|
|
516
516
|
n0,
|
|
517
517
|
_UHI,
|
|
@@ -519,11 +519,11 @@ var UpdateHypervisorInput = [
|
|
|
519
519
|
[_HA, _Ho, _U, _P, _N, _LGA],
|
|
520
520
|
[0, 0, [() => Username, 0], [() => Password, 0], 0, 0],
|
|
521
521
|
];
|
|
522
|
-
var UpdateHypervisorOutput = [3, n0, _UHO, 0, [_HA], [0]];
|
|
523
|
-
var ValidationException = [-3, n0, _VEa, { [_e]: _c, [_hE]: 400 }, [_EC, _M], [0, 0]];
|
|
524
|
-
schema.TypeRegistry.for(n0).registerError(ValidationException
|
|
525
|
-
var VirtualMachine = [3, n0, _VM, 0, [_HN, _HI, _N, _Pa, _RA, _LBD], [0, 0, 0, 0, 0, 4]];
|
|
526
|
-
var VirtualMachineDetails = [
|
|
522
|
+
var UpdateHypervisorOutput$ = [3, n0, _UHO, 0, [_HA], [0]];
|
|
523
|
+
var ValidationException$ = [-3, n0, _VEa, { [_e]: _c, [_hE]: 400 }, [_EC, _M], [0, 0]];
|
|
524
|
+
schema.TypeRegistry.for(n0).registerError(ValidationException$, ValidationException);
|
|
525
|
+
var VirtualMachine$ = [3, n0, _VM, 0, [_HN, _HI, _N, _Pa, _RA, _LBD], [0, 0, 0, 0, 0, 4]];
|
|
526
|
+
var VirtualMachineDetails$ = [
|
|
527
527
|
3,
|
|
528
528
|
n0,
|
|
529
529
|
_VMD,
|
|
@@ -531,167 +531,195 @@ var VirtualMachineDetails = [
|
|
|
531
531
|
[_HN, _HI, _N, _Pa, _RA, _LBD, _VT],
|
|
532
532
|
[0, 0, 0, 0, 0, 4, () => VmwareTags],
|
|
533
533
|
];
|
|
534
|
-
var VmwareTag = [3, n0, _VTm, 0, [_VC, _VTN, _VTD], [0, 0, 0]];
|
|
535
|
-
var VmwareToAwsTagMapping = [3, n0, _VTATMm, 0, [_VC, _VTN, _ATK, _ATV], [0, 0, 0, 0]];
|
|
536
|
-
var BackupGatewayServiceException = [-3, _sm, "BackupGatewayServiceException", 0, [], []];
|
|
537
|
-
schema.TypeRegistry.for(_sm).registerError(BackupGatewayServiceException
|
|
538
|
-
var BandwidthRateLimitIntervals = [1, n0, _BRLIa, 0, () => BandwidthRateLimitInterval];
|
|
539
|
-
var Gateways = [1, n0, _Ga, 0, () => Gateway];
|
|
540
|
-
var Hypervisors = [1, n0, _Hy, 0, () => Hypervisor];
|
|
541
|
-
var Tags = [1, n0, _T, 0, () => Tag];
|
|
542
|
-
var VirtualMachines = [1, n0, _VMi, 0, () => VirtualMachine];
|
|
543
|
-
var VmwareTags = [1, n0, _VT, 0, () => VmwareTag];
|
|
544
|
-
var VmwareToAwsTagMappings = [1, n0, _VTATM, 0, () => VmwareToAwsTagMapping];
|
|
545
|
-
var AssociateGatewayToServer = [
|
|
534
|
+
var VmwareTag$ = [3, n0, _VTm, 0, [_VC, _VTN, _VTD], [0, 0, 0]];
|
|
535
|
+
var VmwareToAwsTagMapping$ = [3, n0, _VTATMm, 0, [_VC, _VTN, _ATK, _ATV], [0, 0, 0, 0]];
|
|
536
|
+
var BackupGatewayServiceException$ = [-3, _sm, "BackupGatewayServiceException", 0, [], []];
|
|
537
|
+
schema.TypeRegistry.for(_sm).registerError(BackupGatewayServiceException$, BackupGatewayServiceException);
|
|
538
|
+
var BandwidthRateLimitIntervals = [1, n0, _BRLIa, 0, () => BandwidthRateLimitInterval$];
|
|
539
|
+
var Gateways = [1, n0, _Ga, 0, () => Gateway$];
|
|
540
|
+
var Hypervisors = [1, n0, _Hy, 0, () => Hypervisor$];
|
|
541
|
+
var Tags = [1, n0, _T, 0, () => Tag$];
|
|
542
|
+
var VirtualMachines = [1, n0, _VMi, 0, () => VirtualMachine$];
|
|
543
|
+
var VmwareTags = [1, n0, _VT, 0, () => VmwareTag$];
|
|
544
|
+
var VmwareToAwsTagMappings = [1, n0, _VTATM, 0, () => VmwareToAwsTagMapping$];
|
|
545
|
+
var AssociateGatewayToServer$ = [
|
|
546
546
|
9,
|
|
547
547
|
n0,
|
|
548
548
|
_AGTS,
|
|
549
549
|
0,
|
|
550
|
-
() => AssociateGatewayToServerInput
|
|
551
|
-
() => AssociateGatewayToServerOutput
|
|
550
|
+
() => AssociateGatewayToServerInput$,
|
|
551
|
+
() => AssociateGatewayToServerOutput$,
|
|
552
|
+
];
|
|
553
|
+
var CreateGateway$ = [
|
|
554
|
+
9,
|
|
555
|
+
n0,
|
|
556
|
+
_CG,
|
|
557
|
+
0,
|
|
558
|
+
() => CreateGatewayInput$,
|
|
559
|
+
() => CreateGatewayOutput$,
|
|
560
|
+
];
|
|
561
|
+
var DeleteGateway$ = [
|
|
562
|
+
9,
|
|
563
|
+
n0,
|
|
564
|
+
_DG,
|
|
565
|
+
2,
|
|
566
|
+
() => DeleteGatewayInput$,
|
|
567
|
+
() => DeleteGatewayOutput$,
|
|
552
568
|
];
|
|
553
|
-
var
|
|
554
|
-
var DeleteGateway = [9, n0, _DG, 2, () => DeleteGatewayInput, () => DeleteGatewayOutput];
|
|
555
|
-
var DeleteHypervisor = [
|
|
569
|
+
var DeleteHypervisor$ = [
|
|
556
570
|
9,
|
|
557
571
|
n0,
|
|
558
572
|
_DH,
|
|
559
573
|
2,
|
|
560
|
-
() => DeleteHypervisorInput
|
|
561
|
-
() => DeleteHypervisorOutput
|
|
574
|
+
() => DeleteHypervisorInput$,
|
|
575
|
+
() => DeleteHypervisorOutput$,
|
|
562
576
|
];
|
|
563
|
-
var DisassociateGatewayFromServer = [
|
|
577
|
+
var DisassociateGatewayFromServer$ = [
|
|
564
578
|
9,
|
|
565
579
|
n0,
|
|
566
580
|
_DGFS,
|
|
567
581
|
0,
|
|
568
|
-
() => DisassociateGatewayFromServerInput
|
|
569
|
-
() => DisassociateGatewayFromServerOutput
|
|
582
|
+
() => DisassociateGatewayFromServerInput$,
|
|
583
|
+
() => DisassociateGatewayFromServerOutput$,
|
|
570
584
|
];
|
|
571
|
-
var GetBandwidthRateLimitSchedule = [
|
|
585
|
+
var GetBandwidthRateLimitSchedule$ = [
|
|
572
586
|
9,
|
|
573
587
|
n0,
|
|
574
588
|
_GBRLS,
|
|
575
589
|
0,
|
|
576
|
-
() => GetBandwidthRateLimitScheduleInput
|
|
577
|
-
() => GetBandwidthRateLimitScheduleOutput
|
|
590
|
+
() => GetBandwidthRateLimitScheduleInput$,
|
|
591
|
+
() => GetBandwidthRateLimitScheduleOutput$,
|
|
578
592
|
];
|
|
579
|
-
var GetGateway = [9, n0, _GG, 0, () => GetGatewayInput
|
|
580
|
-
var GetHypervisor = [
|
|
581
|
-
|
|
593
|
+
var GetGateway$ = [9, n0, _GG, 0, () => GetGatewayInput$, () => GetGatewayOutput$];
|
|
594
|
+
var GetHypervisor$ = [
|
|
595
|
+
9,
|
|
596
|
+
n0,
|
|
597
|
+
_GH,
|
|
598
|
+
0,
|
|
599
|
+
() => GetHypervisorInput$,
|
|
600
|
+
() => GetHypervisorOutput$,
|
|
601
|
+
];
|
|
602
|
+
var GetHypervisorPropertyMappings$ = [
|
|
582
603
|
9,
|
|
583
604
|
n0,
|
|
584
605
|
_GHPM,
|
|
585
606
|
0,
|
|
586
|
-
() => GetHypervisorPropertyMappingsInput
|
|
587
|
-
() => GetHypervisorPropertyMappingsOutput
|
|
607
|
+
() => GetHypervisorPropertyMappingsInput$,
|
|
608
|
+
() => GetHypervisorPropertyMappingsOutput$,
|
|
588
609
|
];
|
|
589
|
-
var GetVirtualMachine = [
|
|
610
|
+
var GetVirtualMachine$ = [
|
|
590
611
|
9,
|
|
591
612
|
n0,
|
|
592
613
|
_GVM,
|
|
593
614
|
0,
|
|
594
|
-
() => GetVirtualMachineInput
|
|
595
|
-
() => GetVirtualMachineOutput
|
|
615
|
+
() => GetVirtualMachineInput$,
|
|
616
|
+
() => GetVirtualMachineOutput$,
|
|
596
617
|
];
|
|
597
|
-
var ImportHypervisorConfiguration = [
|
|
618
|
+
var ImportHypervisorConfiguration$ = [
|
|
598
619
|
9,
|
|
599
620
|
n0,
|
|
600
621
|
_IHC,
|
|
601
622
|
0,
|
|
602
|
-
() => ImportHypervisorConfigurationInput
|
|
603
|
-
() => ImportHypervisorConfigurationOutput
|
|
623
|
+
() => ImportHypervisorConfigurationInput$,
|
|
624
|
+
() => ImportHypervisorConfigurationOutput$,
|
|
604
625
|
];
|
|
605
|
-
var ListGateways = [9, n0, _LG, 0, () => ListGatewaysInput
|
|
606
|
-
var ListHypervisors = [
|
|
626
|
+
var ListGateways$ = [9, n0, _LG, 0, () => ListGatewaysInput$, () => ListGatewaysOutput$];
|
|
627
|
+
var ListHypervisors$ = [
|
|
607
628
|
9,
|
|
608
629
|
n0,
|
|
609
630
|
_LH,
|
|
610
631
|
0,
|
|
611
|
-
() => ListHypervisorsInput
|
|
612
|
-
() => ListHypervisorsOutput
|
|
632
|
+
() => ListHypervisorsInput$,
|
|
633
|
+
() => ListHypervisorsOutput$,
|
|
613
634
|
];
|
|
614
|
-
var ListTagsForResource = [
|
|
635
|
+
var ListTagsForResource$ = [
|
|
615
636
|
9,
|
|
616
637
|
n0,
|
|
617
638
|
_LTFR,
|
|
618
639
|
0,
|
|
619
|
-
() => ListTagsForResourceInput
|
|
620
|
-
() => ListTagsForResourceOutput
|
|
640
|
+
() => ListTagsForResourceInput$,
|
|
641
|
+
() => ListTagsForResourceOutput$,
|
|
621
642
|
];
|
|
622
|
-
var ListVirtualMachines = [
|
|
643
|
+
var ListVirtualMachines$ = [
|
|
623
644
|
9,
|
|
624
645
|
n0,
|
|
625
646
|
_LVM,
|
|
626
647
|
0,
|
|
627
|
-
() => ListVirtualMachinesInput
|
|
628
|
-
() => ListVirtualMachinesOutput
|
|
648
|
+
() => ListVirtualMachinesInput$,
|
|
649
|
+
() => ListVirtualMachinesOutput$,
|
|
629
650
|
];
|
|
630
|
-
var PutBandwidthRateLimitSchedule = [
|
|
651
|
+
var PutBandwidthRateLimitSchedule$ = [
|
|
631
652
|
9,
|
|
632
653
|
n0,
|
|
633
654
|
_PBRLS,
|
|
634
655
|
2,
|
|
635
|
-
() => PutBandwidthRateLimitScheduleInput
|
|
636
|
-
() => PutBandwidthRateLimitScheduleOutput
|
|
656
|
+
() => PutBandwidthRateLimitScheduleInput$,
|
|
657
|
+
() => PutBandwidthRateLimitScheduleOutput$,
|
|
637
658
|
];
|
|
638
|
-
var PutHypervisorPropertyMappings = [
|
|
659
|
+
var PutHypervisorPropertyMappings$ = [
|
|
639
660
|
9,
|
|
640
661
|
n0,
|
|
641
662
|
_PHPM,
|
|
642
663
|
2,
|
|
643
|
-
() => PutHypervisorPropertyMappingsInput
|
|
644
|
-
() => PutHypervisorPropertyMappingsOutput
|
|
664
|
+
() => PutHypervisorPropertyMappingsInput$,
|
|
665
|
+
() => PutHypervisorPropertyMappingsOutput$,
|
|
645
666
|
];
|
|
646
|
-
var PutMaintenanceStartTime = [
|
|
667
|
+
var PutMaintenanceStartTime$ = [
|
|
647
668
|
9,
|
|
648
669
|
n0,
|
|
649
670
|
_PMST,
|
|
650
671
|
0,
|
|
651
|
-
() => PutMaintenanceStartTimeInput
|
|
652
|
-
() => PutMaintenanceStartTimeOutput
|
|
672
|
+
() => PutMaintenanceStartTimeInput$,
|
|
673
|
+
() => PutMaintenanceStartTimeOutput$,
|
|
653
674
|
];
|
|
654
|
-
var StartVirtualMachinesMetadataSync = [
|
|
675
|
+
var StartVirtualMachinesMetadataSync$ = [
|
|
655
676
|
9,
|
|
656
677
|
n0,
|
|
657
678
|
_SVMMS,
|
|
658
679
|
0,
|
|
659
|
-
() => StartVirtualMachinesMetadataSyncInput
|
|
660
|
-
() => StartVirtualMachinesMetadataSyncOutput
|
|
680
|
+
() => StartVirtualMachinesMetadataSyncInput$,
|
|
681
|
+
() => StartVirtualMachinesMetadataSyncOutput$,
|
|
661
682
|
];
|
|
662
|
-
var TagResource = [9, n0, _TR, 0, () => TagResourceInput
|
|
663
|
-
var TestHypervisorConfiguration = [
|
|
683
|
+
var TagResource$ = [9, n0, _TR, 0, () => TagResourceInput$, () => TagResourceOutput$];
|
|
684
|
+
var TestHypervisorConfiguration$ = [
|
|
664
685
|
9,
|
|
665
686
|
n0,
|
|
666
687
|
_THC,
|
|
667
688
|
0,
|
|
668
|
-
() => TestHypervisorConfigurationInput
|
|
669
|
-
() => TestHypervisorConfigurationOutput
|
|
689
|
+
() => TestHypervisorConfigurationInput$,
|
|
690
|
+
() => TestHypervisorConfigurationOutput$,
|
|
691
|
+
];
|
|
692
|
+
var UntagResource$ = [
|
|
693
|
+
9,
|
|
694
|
+
n0,
|
|
695
|
+
_UR,
|
|
696
|
+
0,
|
|
697
|
+
() => UntagResourceInput$,
|
|
698
|
+
() => UntagResourceOutput$,
|
|
670
699
|
];
|
|
671
|
-
var
|
|
672
|
-
var UpdateGatewayInformation = [
|
|
700
|
+
var UpdateGatewayInformation$ = [
|
|
673
701
|
9,
|
|
674
702
|
n0,
|
|
675
703
|
_UGI,
|
|
676
704
|
0,
|
|
677
|
-
() => UpdateGatewayInformationInput
|
|
678
|
-
() => UpdateGatewayInformationOutput
|
|
705
|
+
() => UpdateGatewayInformationInput$,
|
|
706
|
+
() => UpdateGatewayInformationOutput$,
|
|
679
707
|
];
|
|
680
|
-
var UpdateGatewaySoftwareNow = [
|
|
708
|
+
var UpdateGatewaySoftwareNow$ = [
|
|
681
709
|
9,
|
|
682
710
|
n0,
|
|
683
711
|
_UGSN,
|
|
684
712
|
0,
|
|
685
|
-
() => UpdateGatewaySoftwareNowInput
|
|
686
|
-
() => UpdateGatewaySoftwareNowOutput
|
|
713
|
+
() => UpdateGatewaySoftwareNowInput$,
|
|
714
|
+
() => UpdateGatewaySoftwareNowOutput$,
|
|
687
715
|
];
|
|
688
|
-
var UpdateHypervisor = [
|
|
716
|
+
var UpdateHypervisor$ = [
|
|
689
717
|
9,
|
|
690
718
|
n0,
|
|
691
719
|
_UH,
|
|
692
720
|
0,
|
|
693
|
-
() => UpdateHypervisorInput
|
|
694
|
-
() => UpdateHypervisorOutput
|
|
721
|
+
() => UpdateHypervisorInput$,
|
|
722
|
+
() => UpdateHypervisorOutput$,
|
|
695
723
|
];
|
|
696
724
|
|
|
697
725
|
class AssociateGatewayToServerCommand extends smithyClient.Command
|
|
@@ -702,7 +730,7 @@ class AssociateGatewayToServerCommand extends smithyClient.Command
|
|
|
702
730
|
})
|
|
703
731
|
.s("BackupOnPremises_v20210101", "AssociateGatewayToServer", {})
|
|
704
732
|
.n("BackupGatewayClient", "AssociateGatewayToServerCommand")
|
|
705
|
-
.sc(AssociateGatewayToServer)
|
|
733
|
+
.sc(AssociateGatewayToServer$)
|
|
706
734
|
.build() {
|
|
707
735
|
}
|
|
708
736
|
|
|
@@ -714,7 +742,7 @@ class CreateGatewayCommand extends smithyClient.Command
|
|
|
714
742
|
})
|
|
715
743
|
.s("BackupOnPremises_v20210101", "CreateGateway", {})
|
|
716
744
|
.n("BackupGatewayClient", "CreateGatewayCommand")
|
|
717
|
-
.sc(CreateGateway)
|
|
745
|
+
.sc(CreateGateway$)
|
|
718
746
|
.build() {
|
|
719
747
|
}
|
|
720
748
|
|
|
@@ -726,7 +754,7 @@ class DeleteGatewayCommand extends smithyClient.Command
|
|
|
726
754
|
})
|
|
727
755
|
.s("BackupOnPremises_v20210101", "DeleteGateway", {})
|
|
728
756
|
.n("BackupGatewayClient", "DeleteGatewayCommand")
|
|
729
|
-
.sc(DeleteGateway)
|
|
757
|
+
.sc(DeleteGateway$)
|
|
730
758
|
.build() {
|
|
731
759
|
}
|
|
732
760
|
|
|
@@ -738,7 +766,7 @@ class DeleteHypervisorCommand extends smithyClient.Command
|
|
|
738
766
|
})
|
|
739
767
|
.s("BackupOnPremises_v20210101", "DeleteHypervisor", {})
|
|
740
768
|
.n("BackupGatewayClient", "DeleteHypervisorCommand")
|
|
741
|
-
.sc(DeleteHypervisor)
|
|
769
|
+
.sc(DeleteHypervisor$)
|
|
742
770
|
.build() {
|
|
743
771
|
}
|
|
744
772
|
|
|
@@ -750,7 +778,7 @@ class DisassociateGatewayFromServerCommand extends smithyClient.Command
|
|
|
750
778
|
})
|
|
751
779
|
.s("BackupOnPremises_v20210101", "DisassociateGatewayFromServer", {})
|
|
752
780
|
.n("BackupGatewayClient", "DisassociateGatewayFromServerCommand")
|
|
753
|
-
.sc(DisassociateGatewayFromServer)
|
|
781
|
+
.sc(DisassociateGatewayFromServer$)
|
|
754
782
|
.build() {
|
|
755
783
|
}
|
|
756
784
|
|
|
@@ -762,7 +790,7 @@ class GetBandwidthRateLimitScheduleCommand extends smithyClient.Command
|
|
|
762
790
|
})
|
|
763
791
|
.s("BackupOnPremises_v20210101", "GetBandwidthRateLimitSchedule", {})
|
|
764
792
|
.n("BackupGatewayClient", "GetBandwidthRateLimitScheduleCommand")
|
|
765
|
-
.sc(GetBandwidthRateLimitSchedule)
|
|
793
|
+
.sc(GetBandwidthRateLimitSchedule$)
|
|
766
794
|
.build() {
|
|
767
795
|
}
|
|
768
796
|
|
|
@@ -774,7 +802,7 @@ class GetGatewayCommand extends smithyClient.Command
|
|
|
774
802
|
})
|
|
775
803
|
.s("BackupOnPremises_v20210101", "GetGateway", {})
|
|
776
804
|
.n("BackupGatewayClient", "GetGatewayCommand")
|
|
777
|
-
.sc(GetGateway)
|
|
805
|
+
.sc(GetGateway$)
|
|
778
806
|
.build() {
|
|
779
807
|
}
|
|
780
808
|
|
|
@@ -786,7 +814,7 @@ class GetHypervisorCommand extends smithyClient.Command
|
|
|
786
814
|
})
|
|
787
815
|
.s("BackupOnPremises_v20210101", "GetHypervisor", {})
|
|
788
816
|
.n("BackupGatewayClient", "GetHypervisorCommand")
|
|
789
|
-
.sc(GetHypervisor)
|
|
817
|
+
.sc(GetHypervisor$)
|
|
790
818
|
.build() {
|
|
791
819
|
}
|
|
792
820
|
|
|
@@ -798,7 +826,7 @@ class GetHypervisorPropertyMappingsCommand extends smithyClient.Command
|
|
|
798
826
|
})
|
|
799
827
|
.s("BackupOnPremises_v20210101", "GetHypervisorPropertyMappings", {})
|
|
800
828
|
.n("BackupGatewayClient", "GetHypervisorPropertyMappingsCommand")
|
|
801
|
-
.sc(GetHypervisorPropertyMappings)
|
|
829
|
+
.sc(GetHypervisorPropertyMappings$)
|
|
802
830
|
.build() {
|
|
803
831
|
}
|
|
804
832
|
|
|
@@ -810,7 +838,7 @@ class GetVirtualMachineCommand extends smithyClient.Command
|
|
|
810
838
|
})
|
|
811
839
|
.s("BackupOnPremises_v20210101", "GetVirtualMachine", {})
|
|
812
840
|
.n("BackupGatewayClient", "GetVirtualMachineCommand")
|
|
813
|
-
.sc(GetVirtualMachine)
|
|
841
|
+
.sc(GetVirtualMachine$)
|
|
814
842
|
.build() {
|
|
815
843
|
}
|
|
816
844
|
|
|
@@ -822,7 +850,7 @@ class ImportHypervisorConfigurationCommand extends smithyClient.Command
|
|
|
822
850
|
})
|
|
823
851
|
.s("BackupOnPremises_v20210101", "ImportHypervisorConfiguration", {})
|
|
824
852
|
.n("BackupGatewayClient", "ImportHypervisorConfigurationCommand")
|
|
825
|
-
.sc(ImportHypervisorConfiguration)
|
|
853
|
+
.sc(ImportHypervisorConfiguration$)
|
|
826
854
|
.build() {
|
|
827
855
|
}
|
|
828
856
|
|
|
@@ -834,7 +862,7 @@ class ListGatewaysCommand extends smithyClient.Command
|
|
|
834
862
|
})
|
|
835
863
|
.s("BackupOnPremises_v20210101", "ListGateways", {})
|
|
836
864
|
.n("BackupGatewayClient", "ListGatewaysCommand")
|
|
837
|
-
.sc(ListGateways)
|
|
865
|
+
.sc(ListGateways$)
|
|
838
866
|
.build() {
|
|
839
867
|
}
|
|
840
868
|
|
|
@@ -846,7 +874,7 @@ class ListHypervisorsCommand extends smithyClient.Command
|
|
|
846
874
|
})
|
|
847
875
|
.s("BackupOnPremises_v20210101", "ListHypervisors", {})
|
|
848
876
|
.n("BackupGatewayClient", "ListHypervisorsCommand")
|
|
849
|
-
.sc(ListHypervisors)
|
|
877
|
+
.sc(ListHypervisors$)
|
|
850
878
|
.build() {
|
|
851
879
|
}
|
|
852
880
|
|
|
@@ -858,7 +886,7 @@ class ListTagsForResourceCommand extends smithyClient.Command
|
|
|
858
886
|
})
|
|
859
887
|
.s("BackupOnPremises_v20210101", "ListTagsForResource", {})
|
|
860
888
|
.n("BackupGatewayClient", "ListTagsForResourceCommand")
|
|
861
|
-
.sc(ListTagsForResource)
|
|
889
|
+
.sc(ListTagsForResource$)
|
|
862
890
|
.build() {
|
|
863
891
|
}
|
|
864
892
|
|
|
@@ -870,7 +898,7 @@ class ListVirtualMachinesCommand extends smithyClient.Command
|
|
|
870
898
|
})
|
|
871
899
|
.s("BackupOnPremises_v20210101", "ListVirtualMachines", {})
|
|
872
900
|
.n("BackupGatewayClient", "ListVirtualMachinesCommand")
|
|
873
|
-
.sc(ListVirtualMachines)
|
|
901
|
+
.sc(ListVirtualMachines$)
|
|
874
902
|
.build() {
|
|
875
903
|
}
|
|
876
904
|
|
|
@@ -882,7 +910,7 @@ class PutBandwidthRateLimitScheduleCommand extends smithyClient.Command
|
|
|
882
910
|
})
|
|
883
911
|
.s("BackupOnPremises_v20210101", "PutBandwidthRateLimitSchedule", {})
|
|
884
912
|
.n("BackupGatewayClient", "PutBandwidthRateLimitScheduleCommand")
|
|
885
|
-
.sc(PutBandwidthRateLimitSchedule)
|
|
913
|
+
.sc(PutBandwidthRateLimitSchedule$)
|
|
886
914
|
.build() {
|
|
887
915
|
}
|
|
888
916
|
|
|
@@ -894,7 +922,7 @@ class PutHypervisorPropertyMappingsCommand extends smithyClient.Command
|
|
|
894
922
|
})
|
|
895
923
|
.s("BackupOnPremises_v20210101", "PutHypervisorPropertyMappings", {})
|
|
896
924
|
.n("BackupGatewayClient", "PutHypervisorPropertyMappingsCommand")
|
|
897
|
-
.sc(PutHypervisorPropertyMappings)
|
|
925
|
+
.sc(PutHypervisorPropertyMappings$)
|
|
898
926
|
.build() {
|
|
899
927
|
}
|
|
900
928
|
|
|
@@ -906,7 +934,7 @@ class PutMaintenanceStartTimeCommand extends smithyClient.Command
|
|
|
906
934
|
})
|
|
907
935
|
.s("BackupOnPremises_v20210101", "PutMaintenanceStartTime", {})
|
|
908
936
|
.n("BackupGatewayClient", "PutMaintenanceStartTimeCommand")
|
|
909
|
-
.sc(PutMaintenanceStartTime)
|
|
937
|
+
.sc(PutMaintenanceStartTime$)
|
|
910
938
|
.build() {
|
|
911
939
|
}
|
|
912
940
|
|
|
@@ -918,7 +946,7 @@ class StartVirtualMachinesMetadataSyncCommand extends smithyClient.Command
|
|
|
918
946
|
})
|
|
919
947
|
.s("BackupOnPremises_v20210101", "StartVirtualMachinesMetadataSync", {})
|
|
920
948
|
.n("BackupGatewayClient", "StartVirtualMachinesMetadataSyncCommand")
|
|
921
|
-
.sc(StartVirtualMachinesMetadataSync)
|
|
949
|
+
.sc(StartVirtualMachinesMetadataSync$)
|
|
922
950
|
.build() {
|
|
923
951
|
}
|
|
924
952
|
|
|
@@ -930,7 +958,7 @@ class TagResourceCommand extends smithyClient.Command
|
|
|
930
958
|
})
|
|
931
959
|
.s("BackupOnPremises_v20210101", "TagResource", {})
|
|
932
960
|
.n("BackupGatewayClient", "TagResourceCommand")
|
|
933
|
-
.sc(TagResource)
|
|
961
|
+
.sc(TagResource$)
|
|
934
962
|
.build() {
|
|
935
963
|
}
|
|
936
964
|
|
|
@@ -942,7 +970,7 @@ class TestHypervisorConfigurationCommand extends smithyClient.Command
|
|
|
942
970
|
})
|
|
943
971
|
.s("BackupOnPremises_v20210101", "TestHypervisorConfiguration", {})
|
|
944
972
|
.n("BackupGatewayClient", "TestHypervisorConfigurationCommand")
|
|
945
|
-
.sc(TestHypervisorConfiguration)
|
|
973
|
+
.sc(TestHypervisorConfiguration$)
|
|
946
974
|
.build() {
|
|
947
975
|
}
|
|
948
976
|
|
|
@@ -954,7 +982,7 @@ class UntagResourceCommand extends smithyClient.Command
|
|
|
954
982
|
})
|
|
955
983
|
.s("BackupOnPremises_v20210101", "UntagResource", {})
|
|
956
984
|
.n("BackupGatewayClient", "UntagResourceCommand")
|
|
957
|
-
.sc(UntagResource)
|
|
985
|
+
.sc(UntagResource$)
|
|
958
986
|
.build() {
|
|
959
987
|
}
|
|
960
988
|
|
|
@@ -966,7 +994,7 @@ class UpdateGatewayInformationCommand extends smithyClient.Command
|
|
|
966
994
|
})
|
|
967
995
|
.s("BackupOnPremises_v20210101", "UpdateGatewayInformation", {})
|
|
968
996
|
.n("BackupGatewayClient", "UpdateGatewayInformationCommand")
|
|
969
|
-
.sc(UpdateGatewayInformation)
|
|
997
|
+
.sc(UpdateGatewayInformation$)
|
|
970
998
|
.build() {
|
|
971
999
|
}
|
|
972
1000
|
|
|
@@ -978,7 +1006,7 @@ class UpdateGatewaySoftwareNowCommand extends smithyClient.Command
|
|
|
978
1006
|
})
|
|
979
1007
|
.s("BackupOnPremises_v20210101", "UpdateGatewaySoftwareNow", {})
|
|
980
1008
|
.n("BackupGatewayClient", "UpdateGatewaySoftwareNowCommand")
|
|
981
|
-
.sc(UpdateGatewaySoftwareNow)
|
|
1009
|
+
.sc(UpdateGatewaySoftwareNow$)
|
|
982
1010
|
.build() {
|
|
983
1011
|
}
|
|
984
1012
|
|
|
@@ -990,7 +1018,7 @@ class UpdateHypervisorCommand extends smithyClient.Command
|
|
|
990
1018
|
})
|
|
991
1019
|
.s("BackupOnPremises_v20210101", "UpdateHypervisor", {})
|
|
992
1020
|
.n("BackupGatewayClient", "UpdateHypervisorCommand")
|
|
993
|
-
.sc(UpdateHypervisor)
|
|
1021
|
+
.sc(UpdateHypervisor$)
|
|
994
1022
|
.build() {
|
|
995
1023
|
}
|
|
996
1024
|
|
|
@@ -1056,43 +1084,136 @@ Object.defineProperty(exports, "__Client", {
|
|
|
1056
1084
|
enumerable: true,
|
|
1057
1085
|
get: function () { return smithyClient.Client; }
|
|
1058
1086
|
});
|
|
1059
|
-
exports.AccessDeniedException = AccessDeniedException
|
|
1087
|
+
exports.AccessDeniedException = AccessDeniedException;
|
|
1088
|
+
exports.AccessDeniedException$ = AccessDeniedException$;
|
|
1089
|
+
exports.AssociateGatewayToServer$ = AssociateGatewayToServer$;
|
|
1060
1090
|
exports.AssociateGatewayToServerCommand = AssociateGatewayToServerCommand;
|
|
1091
|
+
exports.AssociateGatewayToServerInput$ = AssociateGatewayToServerInput$;
|
|
1092
|
+
exports.AssociateGatewayToServerOutput$ = AssociateGatewayToServerOutput$;
|
|
1061
1093
|
exports.BackupGateway = BackupGateway;
|
|
1062
1094
|
exports.BackupGatewayClient = BackupGatewayClient;
|
|
1063
|
-
exports.BackupGatewayServiceException = BackupGatewayServiceException
|
|
1064
|
-
exports.
|
|
1095
|
+
exports.BackupGatewayServiceException = BackupGatewayServiceException;
|
|
1096
|
+
exports.BackupGatewayServiceException$ = BackupGatewayServiceException$;
|
|
1097
|
+
exports.BandwidthRateLimitInterval$ = BandwidthRateLimitInterval$;
|
|
1098
|
+
exports.ConflictException = ConflictException;
|
|
1099
|
+
exports.ConflictException$ = ConflictException$;
|
|
1100
|
+
exports.CreateGateway$ = CreateGateway$;
|
|
1065
1101
|
exports.CreateGatewayCommand = CreateGatewayCommand;
|
|
1102
|
+
exports.CreateGatewayInput$ = CreateGatewayInput$;
|
|
1103
|
+
exports.CreateGatewayOutput$ = CreateGatewayOutput$;
|
|
1104
|
+
exports.DeleteGateway$ = DeleteGateway$;
|
|
1066
1105
|
exports.DeleteGatewayCommand = DeleteGatewayCommand;
|
|
1106
|
+
exports.DeleteGatewayInput$ = DeleteGatewayInput$;
|
|
1107
|
+
exports.DeleteGatewayOutput$ = DeleteGatewayOutput$;
|
|
1108
|
+
exports.DeleteHypervisor$ = DeleteHypervisor$;
|
|
1067
1109
|
exports.DeleteHypervisorCommand = DeleteHypervisorCommand;
|
|
1110
|
+
exports.DeleteHypervisorInput$ = DeleteHypervisorInput$;
|
|
1111
|
+
exports.DeleteHypervisorOutput$ = DeleteHypervisorOutput$;
|
|
1112
|
+
exports.DisassociateGatewayFromServer$ = DisassociateGatewayFromServer$;
|
|
1068
1113
|
exports.DisassociateGatewayFromServerCommand = DisassociateGatewayFromServerCommand;
|
|
1114
|
+
exports.DisassociateGatewayFromServerInput$ = DisassociateGatewayFromServerInput$;
|
|
1115
|
+
exports.DisassociateGatewayFromServerOutput$ = DisassociateGatewayFromServerOutput$;
|
|
1116
|
+
exports.Gateway$ = Gateway$;
|
|
1117
|
+
exports.GatewayDetails$ = GatewayDetails$;
|
|
1069
1118
|
exports.GatewayType = GatewayType;
|
|
1119
|
+
exports.GetBandwidthRateLimitSchedule$ = GetBandwidthRateLimitSchedule$;
|
|
1070
1120
|
exports.GetBandwidthRateLimitScheduleCommand = GetBandwidthRateLimitScheduleCommand;
|
|
1121
|
+
exports.GetBandwidthRateLimitScheduleInput$ = GetBandwidthRateLimitScheduleInput$;
|
|
1122
|
+
exports.GetBandwidthRateLimitScheduleOutput$ = GetBandwidthRateLimitScheduleOutput$;
|
|
1123
|
+
exports.GetGateway$ = GetGateway$;
|
|
1071
1124
|
exports.GetGatewayCommand = GetGatewayCommand;
|
|
1125
|
+
exports.GetGatewayInput$ = GetGatewayInput$;
|
|
1126
|
+
exports.GetGatewayOutput$ = GetGatewayOutput$;
|
|
1127
|
+
exports.GetHypervisor$ = GetHypervisor$;
|
|
1072
1128
|
exports.GetHypervisorCommand = GetHypervisorCommand;
|
|
1129
|
+
exports.GetHypervisorInput$ = GetHypervisorInput$;
|
|
1130
|
+
exports.GetHypervisorOutput$ = GetHypervisorOutput$;
|
|
1131
|
+
exports.GetHypervisorPropertyMappings$ = GetHypervisorPropertyMappings$;
|
|
1073
1132
|
exports.GetHypervisorPropertyMappingsCommand = GetHypervisorPropertyMappingsCommand;
|
|
1133
|
+
exports.GetHypervisorPropertyMappingsInput$ = GetHypervisorPropertyMappingsInput$;
|
|
1134
|
+
exports.GetHypervisorPropertyMappingsOutput$ = GetHypervisorPropertyMappingsOutput$;
|
|
1135
|
+
exports.GetVirtualMachine$ = GetVirtualMachine$;
|
|
1074
1136
|
exports.GetVirtualMachineCommand = GetVirtualMachineCommand;
|
|
1137
|
+
exports.GetVirtualMachineInput$ = GetVirtualMachineInput$;
|
|
1138
|
+
exports.GetVirtualMachineOutput$ = GetVirtualMachineOutput$;
|
|
1139
|
+
exports.Hypervisor$ = Hypervisor$;
|
|
1140
|
+
exports.HypervisorDetails$ = HypervisorDetails$;
|
|
1075
1141
|
exports.HypervisorState = HypervisorState;
|
|
1142
|
+
exports.ImportHypervisorConfiguration$ = ImportHypervisorConfiguration$;
|
|
1076
1143
|
exports.ImportHypervisorConfigurationCommand = ImportHypervisorConfigurationCommand;
|
|
1077
|
-
exports.
|
|
1144
|
+
exports.ImportHypervisorConfigurationInput$ = ImportHypervisorConfigurationInput$;
|
|
1145
|
+
exports.ImportHypervisorConfigurationOutput$ = ImportHypervisorConfigurationOutput$;
|
|
1146
|
+
exports.InternalServerException = InternalServerException;
|
|
1147
|
+
exports.InternalServerException$ = InternalServerException$;
|
|
1148
|
+
exports.ListGateways$ = ListGateways$;
|
|
1078
1149
|
exports.ListGatewaysCommand = ListGatewaysCommand;
|
|
1150
|
+
exports.ListGatewaysInput$ = ListGatewaysInput$;
|
|
1151
|
+
exports.ListGatewaysOutput$ = ListGatewaysOutput$;
|
|
1152
|
+
exports.ListHypervisors$ = ListHypervisors$;
|
|
1079
1153
|
exports.ListHypervisorsCommand = ListHypervisorsCommand;
|
|
1154
|
+
exports.ListHypervisorsInput$ = ListHypervisorsInput$;
|
|
1155
|
+
exports.ListHypervisorsOutput$ = ListHypervisorsOutput$;
|
|
1156
|
+
exports.ListTagsForResource$ = ListTagsForResource$;
|
|
1080
1157
|
exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
|
|
1158
|
+
exports.ListTagsForResourceInput$ = ListTagsForResourceInput$;
|
|
1159
|
+
exports.ListTagsForResourceOutput$ = ListTagsForResourceOutput$;
|
|
1160
|
+
exports.ListVirtualMachines$ = ListVirtualMachines$;
|
|
1081
1161
|
exports.ListVirtualMachinesCommand = ListVirtualMachinesCommand;
|
|
1162
|
+
exports.ListVirtualMachinesInput$ = ListVirtualMachinesInput$;
|
|
1163
|
+
exports.ListVirtualMachinesOutput$ = ListVirtualMachinesOutput$;
|
|
1164
|
+
exports.MaintenanceStartTime$ = MaintenanceStartTime$;
|
|
1165
|
+
exports.PutBandwidthRateLimitSchedule$ = PutBandwidthRateLimitSchedule$;
|
|
1082
1166
|
exports.PutBandwidthRateLimitScheduleCommand = PutBandwidthRateLimitScheduleCommand;
|
|
1167
|
+
exports.PutBandwidthRateLimitScheduleInput$ = PutBandwidthRateLimitScheduleInput$;
|
|
1168
|
+
exports.PutBandwidthRateLimitScheduleOutput$ = PutBandwidthRateLimitScheduleOutput$;
|
|
1169
|
+
exports.PutHypervisorPropertyMappings$ = PutHypervisorPropertyMappings$;
|
|
1083
1170
|
exports.PutHypervisorPropertyMappingsCommand = PutHypervisorPropertyMappingsCommand;
|
|
1171
|
+
exports.PutHypervisorPropertyMappingsInput$ = PutHypervisorPropertyMappingsInput$;
|
|
1172
|
+
exports.PutHypervisorPropertyMappingsOutput$ = PutHypervisorPropertyMappingsOutput$;
|
|
1173
|
+
exports.PutMaintenanceStartTime$ = PutMaintenanceStartTime$;
|
|
1084
1174
|
exports.PutMaintenanceStartTimeCommand = PutMaintenanceStartTimeCommand;
|
|
1085
|
-
exports.
|
|
1175
|
+
exports.PutMaintenanceStartTimeInput$ = PutMaintenanceStartTimeInput$;
|
|
1176
|
+
exports.PutMaintenanceStartTimeOutput$ = PutMaintenanceStartTimeOutput$;
|
|
1177
|
+
exports.ResourceNotFoundException = ResourceNotFoundException;
|
|
1178
|
+
exports.ResourceNotFoundException$ = ResourceNotFoundException$;
|
|
1179
|
+
exports.StartVirtualMachinesMetadataSync$ = StartVirtualMachinesMetadataSync$;
|
|
1086
1180
|
exports.StartVirtualMachinesMetadataSyncCommand = StartVirtualMachinesMetadataSyncCommand;
|
|
1181
|
+
exports.StartVirtualMachinesMetadataSyncInput$ = StartVirtualMachinesMetadataSyncInput$;
|
|
1182
|
+
exports.StartVirtualMachinesMetadataSyncOutput$ = StartVirtualMachinesMetadataSyncOutput$;
|
|
1087
1183
|
exports.SyncMetadataStatus = SyncMetadataStatus;
|
|
1184
|
+
exports.Tag$ = Tag$;
|
|
1185
|
+
exports.TagResource$ = TagResource$;
|
|
1088
1186
|
exports.TagResourceCommand = TagResourceCommand;
|
|
1187
|
+
exports.TagResourceInput$ = TagResourceInput$;
|
|
1188
|
+
exports.TagResourceOutput$ = TagResourceOutput$;
|
|
1189
|
+
exports.TestHypervisorConfiguration$ = TestHypervisorConfiguration$;
|
|
1089
1190
|
exports.TestHypervisorConfigurationCommand = TestHypervisorConfigurationCommand;
|
|
1090
|
-
exports.
|
|
1191
|
+
exports.TestHypervisorConfigurationInput$ = TestHypervisorConfigurationInput$;
|
|
1192
|
+
exports.TestHypervisorConfigurationOutput$ = TestHypervisorConfigurationOutput$;
|
|
1193
|
+
exports.ThrottlingException = ThrottlingException;
|
|
1194
|
+
exports.ThrottlingException$ = ThrottlingException$;
|
|
1195
|
+
exports.UntagResource$ = UntagResource$;
|
|
1091
1196
|
exports.UntagResourceCommand = UntagResourceCommand;
|
|
1197
|
+
exports.UntagResourceInput$ = UntagResourceInput$;
|
|
1198
|
+
exports.UntagResourceOutput$ = UntagResourceOutput$;
|
|
1199
|
+
exports.UpdateGatewayInformation$ = UpdateGatewayInformation$;
|
|
1092
1200
|
exports.UpdateGatewayInformationCommand = UpdateGatewayInformationCommand;
|
|
1201
|
+
exports.UpdateGatewayInformationInput$ = UpdateGatewayInformationInput$;
|
|
1202
|
+
exports.UpdateGatewayInformationOutput$ = UpdateGatewayInformationOutput$;
|
|
1203
|
+
exports.UpdateGatewaySoftwareNow$ = UpdateGatewaySoftwareNow$;
|
|
1093
1204
|
exports.UpdateGatewaySoftwareNowCommand = UpdateGatewaySoftwareNowCommand;
|
|
1205
|
+
exports.UpdateGatewaySoftwareNowInput$ = UpdateGatewaySoftwareNowInput$;
|
|
1206
|
+
exports.UpdateGatewaySoftwareNowOutput$ = UpdateGatewaySoftwareNowOutput$;
|
|
1207
|
+
exports.UpdateHypervisor$ = UpdateHypervisor$;
|
|
1094
1208
|
exports.UpdateHypervisorCommand = UpdateHypervisorCommand;
|
|
1095
|
-
exports.
|
|
1209
|
+
exports.UpdateHypervisorInput$ = UpdateHypervisorInput$;
|
|
1210
|
+
exports.UpdateHypervisorOutput$ = UpdateHypervisorOutput$;
|
|
1211
|
+
exports.ValidationException = ValidationException;
|
|
1212
|
+
exports.ValidationException$ = ValidationException$;
|
|
1213
|
+
exports.VirtualMachine$ = VirtualMachine$;
|
|
1214
|
+
exports.VirtualMachineDetails$ = VirtualMachineDetails$;
|
|
1215
|
+
exports.VmwareTag$ = VmwareTag$;
|
|
1216
|
+
exports.VmwareToAwsTagMapping$ = VmwareToAwsTagMapping$;
|
|
1096
1217
|
exports.paginateListGateways = paginateListGateways;
|
|
1097
1218
|
exports.paginateListHypervisors = paginateListHypervisors;
|
|
1098
1219
|
exports.paginateListVirtualMachines = paginateListVirtualMachines;
|