@aws-sdk/client-backup-gateway 3.987.0 → 3.988.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 +44 -824
- package/dist-cjs/models/BackupGatewayServiceException.js +12 -0
- package/dist-cjs/models/errors.js +106 -0
- package/dist-cjs/runtimeConfig.shared.js +2 -0
- package/dist-cjs/schemas/schemas_0.js +609 -0
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-es/schemas/schemas_0.js +46 -40
- package/dist-types/schemas/schemas_0.d.ts +13 -6
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +8 -6
- package/package.json +13 -13
package/dist-cjs/index.js
CHANGED
|
@@ -15,6 +15,9 @@ var httpAuthSchemeProvider = require('./auth/httpAuthSchemeProvider');
|
|
|
15
15
|
var runtimeConfig = require('./runtimeConfig');
|
|
16
16
|
var regionConfigResolver = require('@aws-sdk/region-config-resolver');
|
|
17
17
|
var protocolHttp = require('@smithy/protocol-http');
|
|
18
|
+
var schemas_0 = require('./schemas/schemas_0');
|
|
19
|
+
var errors = require('./models/errors');
|
|
20
|
+
var BackupGatewayServiceException = require('./models/BackupGatewayServiceException');
|
|
18
21
|
|
|
19
22
|
const resolveClientEndpointParameters = (options) => {
|
|
20
23
|
return Object.assign(options, {
|
|
@@ -110,705 +113,6 @@ class BackupGatewayClient extends smithyClient.Client {
|
|
|
110
113
|
}
|
|
111
114
|
}
|
|
112
115
|
|
|
113
|
-
class BackupGatewayServiceException extends smithyClient.ServiceException {
|
|
114
|
-
constructor(options) {
|
|
115
|
-
super(options);
|
|
116
|
-
Object.setPrototypeOf(this, BackupGatewayServiceException.prototype);
|
|
117
|
-
}
|
|
118
|
-
}
|
|
119
|
-
|
|
120
|
-
class AccessDeniedException extends BackupGatewayServiceException {
|
|
121
|
-
name = "AccessDeniedException";
|
|
122
|
-
$fault = "client";
|
|
123
|
-
ErrorCode;
|
|
124
|
-
Message;
|
|
125
|
-
constructor(opts) {
|
|
126
|
-
super({
|
|
127
|
-
name: "AccessDeniedException",
|
|
128
|
-
$fault: "client",
|
|
129
|
-
...opts,
|
|
130
|
-
});
|
|
131
|
-
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
132
|
-
this.ErrorCode = opts.ErrorCode;
|
|
133
|
-
this.Message = opts.Message;
|
|
134
|
-
}
|
|
135
|
-
}
|
|
136
|
-
class ConflictException extends BackupGatewayServiceException {
|
|
137
|
-
name = "ConflictException";
|
|
138
|
-
$fault = "client";
|
|
139
|
-
ErrorCode;
|
|
140
|
-
Message;
|
|
141
|
-
constructor(opts) {
|
|
142
|
-
super({
|
|
143
|
-
name: "ConflictException",
|
|
144
|
-
$fault: "client",
|
|
145
|
-
...opts,
|
|
146
|
-
});
|
|
147
|
-
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
148
|
-
this.ErrorCode = opts.ErrorCode;
|
|
149
|
-
this.Message = opts.Message;
|
|
150
|
-
}
|
|
151
|
-
}
|
|
152
|
-
class InternalServerException extends BackupGatewayServiceException {
|
|
153
|
-
name = "InternalServerException";
|
|
154
|
-
$fault = "server";
|
|
155
|
-
ErrorCode;
|
|
156
|
-
Message;
|
|
157
|
-
constructor(opts) {
|
|
158
|
-
super({
|
|
159
|
-
name: "InternalServerException",
|
|
160
|
-
$fault: "server",
|
|
161
|
-
...opts,
|
|
162
|
-
});
|
|
163
|
-
Object.setPrototypeOf(this, InternalServerException.prototype);
|
|
164
|
-
this.ErrorCode = opts.ErrorCode;
|
|
165
|
-
this.Message = opts.Message;
|
|
166
|
-
}
|
|
167
|
-
}
|
|
168
|
-
class ThrottlingException extends BackupGatewayServiceException {
|
|
169
|
-
name = "ThrottlingException";
|
|
170
|
-
$fault = "client";
|
|
171
|
-
ErrorCode;
|
|
172
|
-
Message;
|
|
173
|
-
constructor(opts) {
|
|
174
|
-
super({
|
|
175
|
-
name: "ThrottlingException",
|
|
176
|
-
$fault: "client",
|
|
177
|
-
...opts,
|
|
178
|
-
});
|
|
179
|
-
Object.setPrototypeOf(this, ThrottlingException.prototype);
|
|
180
|
-
this.ErrorCode = opts.ErrorCode;
|
|
181
|
-
this.Message = opts.Message;
|
|
182
|
-
}
|
|
183
|
-
}
|
|
184
|
-
class ValidationException extends BackupGatewayServiceException {
|
|
185
|
-
name = "ValidationException";
|
|
186
|
-
$fault = "client";
|
|
187
|
-
ErrorCode;
|
|
188
|
-
Message;
|
|
189
|
-
constructor(opts) {
|
|
190
|
-
super({
|
|
191
|
-
name: "ValidationException",
|
|
192
|
-
$fault: "client",
|
|
193
|
-
...opts,
|
|
194
|
-
});
|
|
195
|
-
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
196
|
-
this.ErrorCode = opts.ErrorCode;
|
|
197
|
-
this.Message = opts.Message;
|
|
198
|
-
}
|
|
199
|
-
}
|
|
200
|
-
class ResourceNotFoundException extends BackupGatewayServiceException {
|
|
201
|
-
name = "ResourceNotFoundException";
|
|
202
|
-
$fault = "client";
|
|
203
|
-
ErrorCode;
|
|
204
|
-
Message;
|
|
205
|
-
constructor(opts) {
|
|
206
|
-
super({
|
|
207
|
-
name: "ResourceNotFoundException",
|
|
208
|
-
$fault: "client",
|
|
209
|
-
...opts,
|
|
210
|
-
});
|
|
211
|
-
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
212
|
-
this.ErrorCode = opts.ErrorCode;
|
|
213
|
-
this.Message = opts.Message;
|
|
214
|
-
}
|
|
215
|
-
}
|
|
216
|
-
|
|
217
|
-
const _ADE = "AccessDeniedException";
|
|
218
|
-
const _AGTS = "AssociateGatewayToServer";
|
|
219
|
-
const _AGTSI = "AssociateGatewayToServerInput";
|
|
220
|
-
const _AGTSO = "AssociateGatewayToServerOutput";
|
|
221
|
-
const _AK = "ActivationKey";
|
|
222
|
-
const _ATK = "AwsTagKey";
|
|
223
|
-
const _ATV = "AwsTagValue";
|
|
224
|
-
const _AURLIBPS = "AverageUploadRateLimitInBitsPerSec";
|
|
225
|
-
const _BRLI = "BandwidthRateLimitInterval";
|
|
226
|
-
const _BRLIa = "BandwidthRateLimitIntervals";
|
|
227
|
-
const _CE = "ConflictException";
|
|
228
|
-
const _CG = "CreateGateway";
|
|
229
|
-
const _CGI = "CreateGatewayInput";
|
|
230
|
-
const _CGO = "CreateGatewayOutput";
|
|
231
|
-
const _DG = "DeleteGateway";
|
|
232
|
-
const _DGFS = "DisassociateGatewayFromServer";
|
|
233
|
-
const _DGFSI = "DisassociateGatewayFromServerInput";
|
|
234
|
-
const _DGFSO = "DisassociateGatewayFromServerOutput";
|
|
235
|
-
const _DGI = "DeleteGatewayInput";
|
|
236
|
-
const _DGO = "DeleteGatewayOutput";
|
|
237
|
-
const _DH = "DeleteHypervisor";
|
|
238
|
-
const _DHI = "DeleteHypervisorInput";
|
|
239
|
-
const _DHO = "DeleteHypervisorOutput";
|
|
240
|
-
const _DOM = "DayOfMonth";
|
|
241
|
-
const _DOW = "DaysOfWeek";
|
|
242
|
-
const _DOWa = "DayOfWeek";
|
|
243
|
-
const _EC = "ErrorCode";
|
|
244
|
-
const _EHOD = "EndHourOfDay";
|
|
245
|
-
const _EMOH = "EndMinuteOfHour";
|
|
246
|
-
const _G = "Gateway";
|
|
247
|
-
const _GA = "GatewayArn";
|
|
248
|
-
const _GBRLS = "GetBandwidthRateLimitSchedule";
|
|
249
|
-
const _GBRLSI = "GetBandwidthRateLimitScheduleInput";
|
|
250
|
-
const _GBRLSO = "GetBandwidthRateLimitScheduleOutput";
|
|
251
|
-
const _GD = "GatewayDetails";
|
|
252
|
-
const _GDN = "GatewayDisplayName";
|
|
253
|
-
const _GG = "GetGateway";
|
|
254
|
-
const _GGI = "GetGatewayInput";
|
|
255
|
-
const _GGO = "GetGatewayOutput";
|
|
256
|
-
const _GH = "GetHypervisor";
|
|
257
|
-
const _GHI = "GetHypervisorInput";
|
|
258
|
-
const _GHO = "GetHypervisorOutput";
|
|
259
|
-
const _GHPM = "GetHypervisorPropertyMappings";
|
|
260
|
-
const _GHPMI = "GetHypervisorPropertyMappingsInput";
|
|
261
|
-
const _GHPMO = "GetHypervisorPropertyMappingsOutput";
|
|
262
|
-
const _GT = "GatewayType";
|
|
263
|
-
const _GVM = "GetVirtualMachine";
|
|
264
|
-
const _GVMI = "GetVirtualMachineInput";
|
|
265
|
-
const _GVMO = "GetVirtualMachineOutput";
|
|
266
|
-
const _Ga = "Gateways";
|
|
267
|
-
const _H = "Hypervisor";
|
|
268
|
-
const _HA = "HypervisorArn";
|
|
269
|
-
const _HD = "HypervisorDetails";
|
|
270
|
-
const _HI = "HypervisorId";
|
|
271
|
-
const _HN = "HostName";
|
|
272
|
-
const _HOD = "HourOfDay";
|
|
273
|
-
const _Ho = "Host";
|
|
274
|
-
const _Hy = "Hypervisors";
|
|
275
|
-
const _IHC = "ImportHypervisorConfiguration";
|
|
276
|
-
const _IHCI = "ImportHypervisorConfigurationInput";
|
|
277
|
-
const _IHCO = "ImportHypervisorConfigurationOutput";
|
|
278
|
-
const _IRA = "IamRoleArn";
|
|
279
|
-
const _ISE = "InternalServerException";
|
|
280
|
-
const _K = "Key";
|
|
281
|
-
const _KKA = "KmsKeyArn";
|
|
282
|
-
const _LBD = "LastBackupDate";
|
|
283
|
-
const _LG = "ListGateways";
|
|
284
|
-
const _LGA = "LogGroupArn";
|
|
285
|
-
const _LGI = "ListGatewaysInput";
|
|
286
|
-
const _LGO = "ListGatewaysOutput";
|
|
287
|
-
const _LH = "ListHypervisors";
|
|
288
|
-
const _LHI = "ListHypervisorsInput";
|
|
289
|
-
const _LHO = "ListHypervisorsOutput";
|
|
290
|
-
const _LMSS = "LatestMetadataSyncStatus";
|
|
291
|
-
const _LMSSM = "LatestMetadataSyncStatusMessage";
|
|
292
|
-
const _LSMST = "LastSuccessfulMetadataSyncTime";
|
|
293
|
-
const _LST = "LastSeenTime";
|
|
294
|
-
const _LTFR = "ListTagsForResource";
|
|
295
|
-
const _LTFRI = "ListTagsForResourceInput";
|
|
296
|
-
const _LTFRO = "ListTagsForResourceOutput";
|
|
297
|
-
const _LVM = "ListVirtualMachines";
|
|
298
|
-
const _LVMI = "ListVirtualMachinesInput";
|
|
299
|
-
const _LVMO = "ListVirtualMachinesOutput";
|
|
300
|
-
const _M = "Message";
|
|
301
|
-
const _MOH = "MinuteOfHour";
|
|
302
|
-
const _MR = "MaxResults";
|
|
303
|
-
const _MST = "MaintenanceStartTime";
|
|
304
|
-
const _N = "Name";
|
|
305
|
-
const _NT = "NextToken";
|
|
306
|
-
const _NUAT = "NextUpdateAvailabilityTime";
|
|
307
|
-
const _P = "Password";
|
|
308
|
-
const _PBRLS = "PutBandwidthRateLimitSchedule";
|
|
309
|
-
const _PBRLSI = "PutBandwidthRateLimitScheduleInput";
|
|
310
|
-
const _PBRLSO = "PutBandwidthRateLimitScheduleOutput";
|
|
311
|
-
const _PHPM = "PutHypervisorPropertyMappings";
|
|
312
|
-
const _PHPMI = "PutHypervisorPropertyMappingsInput";
|
|
313
|
-
const _PHPMO = "PutHypervisorPropertyMappingsOutput";
|
|
314
|
-
const _PMST = "PutMaintenanceStartTime";
|
|
315
|
-
const _PMSTI = "PutMaintenanceStartTimeInput";
|
|
316
|
-
const _PMSTO = "PutMaintenanceStartTimeOutput";
|
|
317
|
-
const _Pa = "Path";
|
|
318
|
-
const _RA = "ResourceArn";
|
|
319
|
-
const _RARN = "ResourceARN";
|
|
320
|
-
const _RNFE = "ResourceNotFoundException";
|
|
321
|
-
const _S = "State";
|
|
322
|
-
const _SA = "ServerArn";
|
|
323
|
-
const _SHOD = "StartHourOfDay";
|
|
324
|
-
const _SMOH = "StartMinuteOfHour";
|
|
325
|
-
const _SVMMS = "StartVirtualMachinesMetadataSync";
|
|
326
|
-
const _SVMMSI = "StartVirtualMachinesMetadataSyncInput";
|
|
327
|
-
const _SVMMSO = "StartVirtualMachinesMetadataSyncOutput";
|
|
328
|
-
const _T = "Tags";
|
|
329
|
-
const _TE = "ThrottlingException";
|
|
330
|
-
const _THC = "TestHypervisorConfiguration";
|
|
331
|
-
const _THCI = "TestHypervisorConfigurationInput";
|
|
332
|
-
const _THCO = "TestHypervisorConfigurationOutput";
|
|
333
|
-
const _TK = "TagKeys";
|
|
334
|
-
const _TR = "TagResource";
|
|
335
|
-
const _TRI = "TagResourceInput";
|
|
336
|
-
const _TRO = "TagResourceOutput";
|
|
337
|
-
const _Ta = "Tag";
|
|
338
|
-
const _U = "Username";
|
|
339
|
-
const _UGI = "UpdateGatewayInformation";
|
|
340
|
-
const _UGII = "UpdateGatewayInformationInput";
|
|
341
|
-
const _UGIO = "UpdateGatewayInformationOutput";
|
|
342
|
-
const _UGSN = "UpdateGatewaySoftwareNow";
|
|
343
|
-
const _UGSNI = "UpdateGatewaySoftwareNowInput";
|
|
344
|
-
const _UGSNO = "UpdateGatewaySoftwareNowOutput";
|
|
345
|
-
const _UH = "UpdateHypervisor";
|
|
346
|
-
const _UHI = "UpdateHypervisorInput";
|
|
347
|
-
const _UHO = "UpdateHypervisorOutput";
|
|
348
|
-
const _UR = "UntagResource";
|
|
349
|
-
const _URI = "UntagResourceInput";
|
|
350
|
-
const _URO = "UntagResourceOutput";
|
|
351
|
-
const _V = "Value";
|
|
352
|
-
const _VC = "VmwareCategory";
|
|
353
|
-
const _VE = "VpcEndpoint";
|
|
354
|
-
const _VEa = "ValidationException";
|
|
355
|
-
const _VM = "VirtualMachine";
|
|
356
|
-
const _VMD = "VirtualMachineDetails";
|
|
357
|
-
const _VMi = "VirtualMachines";
|
|
358
|
-
const _VT = "VmwareTags";
|
|
359
|
-
const _VTATM = "VmwareToAwsTagMappings";
|
|
360
|
-
const _VTATMm = "VmwareToAwsTagMapping";
|
|
361
|
-
const _VTD = "VmwareTagDescription";
|
|
362
|
-
const _VTN = "VmwareTagName";
|
|
363
|
-
const _VTm = "VmwareTag";
|
|
364
|
-
const _c = "client";
|
|
365
|
-
const _e = "error";
|
|
366
|
-
const _hE = "httpError";
|
|
367
|
-
const _s = "server";
|
|
368
|
-
const _sm = "smithy.ts.sdk.synthetic.com.amazonaws.backupgateway";
|
|
369
|
-
const n0 = "com.amazonaws.backupgateway";
|
|
370
|
-
var Password = [0, n0, _P, 8, 0];
|
|
371
|
-
var Username = [0, n0, _U, 8, 0];
|
|
372
|
-
var AccessDeniedException$ = [-3, n0, _ADE,
|
|
373
|
-
{ [_e]: _c, [_hE]: 403 },
|
|
374
|
-
[_EC, _M],
|
|
375
|
-
[0, 0], 1
|
|
376
|
-
];
|
|
377
|
-
schema.TypeRegistry.for(n0).registerError(AccessDeniedException$, AccessDeniedException);
|
|
378
|
-
var AssociateGatewayToServerInput$ = [3, n0, _AGTSI,
|
|
379
|
-
0,
|
|
380
|
-
[_GA, _SA],
|
|
381
|
-
[0, 0], 2
|
|
382
|
-
];
|
|
383
|
-
var AssociateGatewayToServerOutput$ = [3, n0, _AGTSO,
|
|
384
|
-
0,
|
|
385
|
-
[_GA],
|
|
386
|
-
[0]
|
|
387
|
-
];
|
|
388
|
-
var BandwidthRateLimitInterval$ = [3, n0, _BRLI,
|
|
389
|
-
0,
|
|
390
|
-
[_SHOD, _EHOD, _SMOH, _EMOH, _DOW, _AURLIBPS],
|
|
391
|
-
[1, 1, 1, 1, 64 | 1, 1], 5
|
|
392
|
-
];
|
|
393
|
-
var ConflictException$ = [-3, n0, _CE,
|
|
394
|
-
{ [_e]: _c, [_hE]: 409 },
|
|
395
|
-
[_EC, _M],
|
|
396
|
-
[0, 0], 1
|
|
397
|
-
];
|
|
398
|
-
schema.TypeRegistry.for(n0).registerError(ConflictException$, ConflictException);
|
|
399
|
-
var CreateGatewayInput$ = [3, n0, _CGI,
|
|
400
|
-
0,
|
|
401
|
-
[_AK, _GDN, _GT, _T],
|
|
402
|
-
[0, 0, 0, () => Tags], 3
|
|
403
|
-
];
|
|
404
|
-
var CreateGatewayOutput$ = [3, n0, _CGO,
|
|
405
|
-
0,
|
|
406
|
-
[_GA],
|
|
407
|
-
[0]
|
|
408
|
-
];
|
|
409
|
-
var DeleteGatewayInput$ = [3, n0, _DGI,
|
|
410
|
-
0,
|
|
411
|
-
[_GA],
|
|
412
|
-
[0], 1
|
|
413
|
-
];
|
|
414
|
-
var DeleteGatewayOutput$ = [3, n0, _DGO,
|
|
415
|
-
0,
|
|
416
|
-
[_GA],
|
|
417
|
-
[0]
|
|
418
|
-
];
|
|
419
|
-
var DeleteHypervisorInput$ = [3, n0, _DHI,
|
|
420
|
-
0,
|
|
421
|
-
[_HA],
|
|
422
|
-
[0], 1
|
|
423
|
-
];
|
|
424
|
-
var DeleteHypervisorOutput$ = [3, n0, _DHO,
|
|
425
|
-
0,
|
|
426
|
-
[_HA],
|
|
427
|
-
[0]
|
|
428
|
-
];
|
|
429
|
-
var DisassociateGatewayFromServerInput$ = [3, n0, _DGFSI,
|
|
430
|
-
0,
|
|
431
|
-
[_GA],
|
|
432
|
-
[0], 1
|
|
433
|
-
];
|
|
434
|
-
var DisassociateGatewayFromServerOutput$ = [3, n0, _DGFSO,
|
|
435
|
-
0,
|
|
436
|
-
[_GA],
|
|
437
|
-
[0]
|
|
438
|
-
];
|
|
439
|
-
var Gateway$ = [3, n0, _G,
|
|
440
|
-
0,
|
|
441
|
-
[_GA, _GDN, _GT, _HI, _LST],
|
|
442
|
-
[0, 0, 0, 0, 4]
|
|
443
|
-
];
|
|
444
|
-
var GatewayDetails$ = [3, n0, _GD,
|
|
445
|
-
0,
|
|
446
|
-
[_GA, _GDN, _GT, _HI, _LST, _MST, _NUAT, _VE],
|
|
447
|
-
[0, 0, 0, 0, 4, () => MaintenanceStartTime$, 4, 0]
|
|
448
|
-
];
|
|
449
|
-
var GetBandwidthRateLimitScheduleInput$ = [3, n0, _GBRLSI,
|
|
450
|
-
0,
|
|
451
|
-
[_GA],
|
|
452
|
-
[0], 1
|
|
453
|
-
];
|
|
454
|
-
var GetBandwidthRateLimitScheduleOutput$ = [3, n0, _GBRLSO,
|
|
455
|
-
0,
|
|
456
|
-
[_GA, _BRLIa],
|
|
457
|
-
[0, () => BandwidthRateLimitIntervals]
|
|
458
|
-
];
|
|
459
|
-
var GetGatewayInput$ = [3, n0, _GGI,
|
|
460
|
-
0,
|
|
461
|
-
[_GA],
|
|
462
|
-
[0], 1
|
|
463
|
-
];
|
|
464
|
-
var GetGatewayOutput$ = [3, n0, _GGO,
|
|
465
|
-
0,
|
|
466
|
-
[_G],
|
|
467
|
-
[() => GatewayDetails$]
|
|
468
|
-
];
|
|
469
|
-
var GetHypervisorInput$ = [3, n0, _GHI,
|
|
470
|
-
0,
|
|
471
|
-
[_HA],
|
|
472
|
-
[0], 1
|
|
473
|
-
];
|
|
474
|
-
var GetHypervisorOutput$ = [3, n0, _GHO,
|
|
475
|
-
0,
|
|
476
|
-
[_H],
|
|
477
|
-
[() => HypervisorDetails$]
|
|
478
|
-
];
|
|
479
|
-
var GetHypervisorPropertyMappingsInput$ = [3, n0, _GHPMI,
|
|
480
|
-
0,
|
|
481
|
-
[_HA],
|
|
482
|
-
[0], 1
|
|
483
|
-
];
|
|
484
|
-
var GetHypervisorPropertyMappingsOutput$ = [3, n0, _GHPMO,
|
|
485
|
-
0,
|
|
486
|
-
[_HA, _VTATM, _IRA],
|
|
487
|
-
[0, () => VmwareToAwsTagMappings, 0]
|
|
488
|
-
];
|
|
489
|
-
var GetVirtualMachineInput$ = [3, n0, _GVMI,
|
|
490
|
-
0,
|
|
491
|
-
[_RA],
|
|
492
|
-
[0], 1
|
|
493
|
-
];
|
|
494
|
-
var GetVirtualMachineOutput$ = [3, n0, _GVMO,
|
|
495
|
-
0,
|
|
496
|
-
[_VM],
|
|
497
|
-
[() => VirtualMachineDetails$]
|
|
498
|
-
];
|
|
499
|
-
var Hypervisor$ = [3, n0, _H,
|
|
500
|
-
0,
|
|
501
|
-
[_Ho, _HA, _KKA, _N, _S],
|
|
502
|
-
[0, 0, 0, 0, 0]
|
|
503
|
-
];
|
|
504
|
-
var HypervisorDetails$ = [3, n0, _HD,
|
|
505
|
-
0,
|
|
506
|
-
[_Ho, _HA, _KKA, _N, _LGA, _S, _LSMST, _LMSSM, _LMSS],
|
|
507
|
-
[0, 0, 0, 0, 0, 0, 4, 0, 0]
|
|
508
|
-
];
|
|
509
|
-
var ImportHypervisorConfigurationInput$ = [3, n0, _IHCI,
|
|
510
|
-
0,
|
|
511
|
-
[_N, _Ho, _U, _P, _KKA, _T],
|
|
512
|
-
[0, 0, [() => Username, 0], [() => Password, 0], 0, () => Tags], 2
|
|
513
|
-
];
|
|
514
|
-
var ImportHypervisorConfigurationOutput$ = [3, n0, _IHCO,
|
|
515
|
-
0,
|
|
516
|
-
[_HA],
|
|
517
|
-
[0]
|
|
518
|
-
];
|
|
519
|
-
var InternalServerException$ = [-3, n0, _ISE,
|
|
520
|
-
{ [_e]: _s, [_hE]: 500 },
|
|
521
|
-
[_EC, _M],
|
|
522
|
-
[0, 0]
|
|
523
|
-
];
|
|
524
|
-
schema.TypeRegistry.for(n0).registerError(InternalServerException$, InternalServerException);
|
|
525
|
-
var ListGatewaysInput$ = [3, n0, _LGI,
|
|
526
|
-
0,
|
|
527
|
-
[_MR, _NT],
|
|
528
|
-
[1, 0]
|
|
529
|
-
];
|
|
530
|
-
var ListGatewaysOutput$ = [3, n0, _LGO,
|
|
531
|
-
0,
|
|
532
|
-
[_Ga, _NT],
|
|
533
|
-
[() => Gateways, 0]
|
|
534
|
-
];
|
|
535
|
-
var ListHypervisorsInput$ = [3, n0, _LHI,
|
|
536
|
-
0,
|
|
537
|
-
[_MR, _NT],
|
|
538
|
-
[1, 0]
|
|
539
|
-
];
|
|
540
|
-
var ListHypervisorsOutput$ = [3, n0, _LHO,
|
|
541
|
-
0,
|
|
542
|
-
[_Hy, _NT],
|
|
543
|
-
[() => Hypervisors, 0]
|
|
544
|
-
];
|
|
545
|
-
var ListTagsForResourceInput$ = [3, n0, _LTFRI,
|
|
546
|
-
0,
|
|
547
|
-
[_RA],
|
|
548
|
-
[0], 1
|
|
549
|
-
];
|
|
550
|
-
var ListTagsForResourceOutput$ = [3, n0, _LTFRO,
|
|
551
|
-
0,
|
|
552
|
-
[_RA, _T],
|
|
553
|
-
[0, () => Tags]
|
|
554
|
-
];
|
|
555
|
-
var ListVirtualMachinesInput$ = [3, n0, _LVMI,
|
|
556
|
-
0,
|
|
557
|
-
[_HA, _MR, _NT],
|
|
558
|
-
[0, 1, 0]
|
|
559
|
-
];
|
|
560
|
-
var ListVirtualMachinesOutput$ = [3, n0, _LVMO,
|
|
561
|
-
0,
|
|
562
|
-
[_VMi, _NT],
|
|
563
|
-
[() => VirtualMachines, 0]
|
|
564
|
-
];
|
|
565
|
-
var MaintenanceStartTime$ = [3, n0, _MST,
|
|
566
|
-
0,
|
|
567
|
-
[_HOD, _MOH, _DOM, _DOWa],
|
|
568
|
-
[1, 1, 1, 1], 2
|
|
569
|
-
];
|
|
570
|
-
var PutBandwidthRateLimitScheduleInput$ = [3, n0, _PBRLSI,
|
|
571
|
-
0,
|
|
572
|
-
[_GA, _BRLIa],
|
|
573
|
-
[0, () => BandwidthRateLimitIntervals], 2
|
|
574
|
-
];
|
|
575
|
-
var PutBandwidthRateLimitScheduleOutput$ = [3, n0, _PBRLSO,
|
|
576
|
-
0,
|
|
577
|
-
[_GA],
|
|
578
|
-
[0]
|
|
579
|
-
];
|
|
580
|
-
var PutHypervisorPropertyMappingsInput$ = [3, n0, _PHPMI,
|
|
581
|
-
0,
|
|
582
|
-
[_HA, _VTATM, _IRA],
|
|
583
|
-
[0, () => VmwareToAwsTagMappings, 0], 3
|
|
584
|
-
];
|
|
585
|
-
var PutHypervisorPropertyMappingsOutput$ = [3, n0, _PHPMO,
|
|
586
|
-
0,
|
|
587
|
-
[_HA],
|
|
588
|
-
[0]
|
|
589
|
-
];
|
|
590
|
-
var PutMaintenanceStartTimeInput$ = [3, n0, _PMSTI,
|
|
591
|
-
0,
|
|
592
|
-
[_GA, _HOD, _MOH, _DOWa, _DOM],
|
|
593
|
-
[0, 1, 1, 1, 1], 3
|
|
594
|
-
];
|
|
595
|
-
var PutMaintenanceStartTimeOutput$ = [3, n0, _PMSTO,
|
|
596
|
-
0,
|
|
597
|
-
[_GA],
|
|
598
|
-
[0]
|
|
599
|
-
];
|
|
600
|
-
var ResourceNotFoundException$ = [-3, n0, _RNFE,
|
|
601
|
-
{ [_e]: _c, [_hE]: 404 },
|
|
602
|
-
[_EC, _M],
|
|
603
|
-
[0, 0]
|
|
604
|
-
];
|
|
605
|
-
schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException$, ResourceNotFoundException);
|
|
606
|
-
var StartVirtualMachinesMetadataSyncInput$ = [3, n0, _SVMMSI,
|
|
607
|
-
0,
|
|
608
|
-
[_HA],
|
|
609
|
-
[0], 1
|
|
610
|
-
];
|
|
611
|
-
var StartVirtualMachinesMetadataSyncOutput$ = [3, n0, _SVMMSO,
|
|
612
|
-
0,
|
|
613
|
-
[_HA],
|
|
614
|
-
[0]
|
|
615
|
-
];
|
|
616
|
-
var Tag$ = [3, n0, _Ta,
|
|
617
|
-
0,
|
|
618
|
-
[_K, _V],
|
|
619
|
-
[0, 0], 2
|
|
620
|
-
];
|
|
621
|
-
var TagResourceInput$ = [3, n0, _TRI,
|
|
622
|
-
0,
|
|
623
|
-
[_RARN, _T],
|
|
624
|
-
[0, () => Tags], 2
|
|
625
|
-
];
|
|
626
|
-
var TagResourceOutput$ = [3, n0, _TRO,
|
|
627
|
-
0,
|
|
628
|
-
[_RARN],
|
|
629
|
-
[0]
|
|
630
|
-
];
|
|
631
|
-
var TestHypervisorConfigurationInput$ = [3, n0, _THCI,
|
|
632
|
-
0,
|
|
633
|
-
[_GA, _Ho, _U, _P],
|
|
634
|
-
[0, 0, [() => Username, 0], [() => Password, 0]], 2
|
|
635
|
-
];
|
|
636
|
-
var TestHypervisorConfigurationOutput$ = [3, n0, _THCO,
|
|
637
|
-
0,
|
|
638
|
-
[],
|
|
639
|
-
[]
|
|
640
|
-
];
|
|
641
|
-
var ThrottlingException$ = [-3, n0, _TE,
|
|
642
|
-
{ [_e]: _c, [_hE]: 429 },
|
|
643
|
-
[_EC, _M],
|
|
644
|
-
[0, 0], 1
|
|
645
|
-
];
|
|
646
|
-
schema.TypeRegistry.for(n0).registerError(ThrottlingException$, ThrottlingException);
|
|
647
|
-
var UntagResourceInput$ = [3, n0, _URI,
|
|
648
|
-
0,
|
|
649
|
-
[_RARN, _TK],
|
|
650
|
-
[0, 64 | 0], 2
|
|
651
|
-
];
|
|
652
|
-
var UntagResourceOutput$ = [3, n0, _URO,
|
|
653
|
-
0,
|
|
654
|
-
[_RARN],
|
|
655
|
-
[0]
|
|
656
|
-
];
|
|
657
|
-
var UpdateGatewayInformationInput$ = [3, n0, _UGII,
|
|
658
|
-
0,
|
|
659
|
-
[_GA, _GDN],
|
|
660
|
-
[0, 0], 1
|
|
661
|
-
];
|
|
662
|
-
var UpdateGatewayInformationOutput$ = [3, n0, _UGIO,
|
|
663
|
-
0,
|
|
664
|
-
[_GA],
|
|
665
|
-
[0]
|
|
666
|
-
];
|
|
667
|
-
var UpdateGatewaySoftwareNowInput$ = [3, n0, _UGSNI,
|
|
668
|
-
0,
|
|
669
|
-
[_GA],
|
|
670
|
-
[0], 1
|
|
671
|
-
];
|
|
672
|
-
var UpdateGatewaySoftwareNowOutput$ = [3, n0, _UGSNO,
|
|
673
|
-
0,
|
|
674
|
-
[_GA],
|
|
675
|
-
[0]
|
|
676
|
-
];
|
|
677
|
-
var UpdateHypervisorInput$ = [3, n0, _UHI,
|
|
678
|
-
0,
|
|
679
|
-
[_HA, _Ho, _U, _P, _N, _LGA],
|
|
680
|
-
[0, 0, [() => Username, 0], [() => Password, 0], 0, 0], 1
|
|
681
|
-
];
|
|
682
|
-
var UpdateHypervisorOutput$ = [3, n0, _UHO,
|
|
683
|
-
0,
|
|
684
|
-
[_HA],
|
|
685
|
-
[0]
|
|
686
|
-
];
|
|
687
|
-
var ValidationException$ = [-3, n0, _VEa,
|
|
688
|
-
{ [_e]: _c, [_hE]: 400 },
|
|
689
|
-
[_EC, _M],
|
|
690
|
-
[0, 0]
|
|
691
|
-
];
|
|
692
|
-
schema.TypeRegistry.for(n0).registerError(ValidationException$, ValidationException);
|
|
693
|
-
var VirtualMachine$ = [3, n0, _VM,
|
|
694
|
-
0,
|
|
695
|
-
[_HN, _HI, _N, _Pa, _RA, _LBD],
|
|
696
|
-
[0, 0, 0, 0, 0, 4]
|
|
697
|
-
];
|
|
698
|
-
var VirtualMachineDetails$ = [3, n0, _VMD,
|
|
699
|
-
0,
|
|
700
|
-
[_HN, _HI, _N, _Pa, _RA, _LBD, _VT],
|
|
701
|
-
[0, 0, 0, 0, 0, 4, () => VmwareTags]
|
|
702
|
-
];
|
|
703
|
-
var VmwareTag$ = [3, n0, _VTm,
|
|
704
|
-
0,
|
|
705
|
-
[_VC, _VTN, _VTD],
|
|
706
|
-
[0, 0, 0]
|
|
707
|
-
];
|
|
708
|
-
var VmwareToAwsTagMapping$ = [3, n0, _VTATMm,
|
|
709
|
-
0,
|
|
710
|
-
[_VC, _VTN, _ATK, _ATV],
|
|
711
|
-
[0, 0, 0, 0], 4
|
|
712
|
-
];
|
|
713
|
-
var BackupGatewayServiceException$ = [-3, _sm, "BackupGatewayServiceException", 0, [], []];
|
|
714
|
-
schema.TypeRegistry.for(_sm).registerError(BackupGatewayServiceException$, BackupGatewayServiceException);
|
|
715
|
-
var BandwidthRateLimitIntervals = [1, n0, _BRLIa,
|
|
716
|
-
0, () => BandwidthRateLimitInterval$
|
|
717
|
-
];
|
|
718
|
-
var Gateways = [1, n0, _Ga,
|
|
719
|
-
0, () => Gateway$
|
|
720
|
-
];
|
|
721
|
-
var Hypervisors = [1, n0, _Hy,
|
|
722
|
-
0, () => Hypervisor$
|
|
723
|
-
];
|
|
724
|
-
var Tags = [1, n0, _T,
|
|
725
|
-
0, () => Tag$
|
|
726
|
-
];
|
|
727
|
-
var VirtualMachines = [1, n0, _VMi,
|
|
728
|
-
0, () => VirtualMachine$
|
|
729
|
-
];
|
|
730
|
-
var VmwareTags = [1, n0, _VT,
|
|
731
|
-
0, () => VmwareTag$
|
|
732
|
-
];
|
|
733
|
-
var VmwareToAwsTagMappings = [1, n0, _VTATM,
|
|
734
|
-
0, () => VmwareToAwsTagMapping$
|
|
735
|
-
];
|
|
736
|
-
var AssociateGatewayToServer$ = [9, n0, _AGTS,
|
|
737
|
-
0, () => AssociateGatewayToServerInput$, () => AssociateGatewayToServerOutput$
|
|
738
|
-
];
|
|
739
|
-
var CreateGateway$ = [9, n0, _CG,
|
|
740
|
-
0, () => CreateGatewayInput$, () => CreateGatewayOutput$
|
|
741
|
-
];
|
|
742
|
-
var DeleteGateway$ = [9, n0, _DG,
|
|
743
|
-
2, () => DeleteGatewayInput$, () => DeleteGatewayOutput$
|
|
744
|
-
];
|
|
745
|
-
var DeleteHypervisor$ = [9, n0, _DH,
|
|
746
|
-
2, () => DeleteHypervisorInput$, () => DeleteHypervisorOutput$
|
|
747
|
-
];
|
|
748
|
-
var DisassociateGatewayFromServer$ = [9, n0, _DGFS,
|
|
749
|
-
0, () => DisassociateGatewayFromServerInput$, () => DisassociateGatewayFromServerOutput$
|
|
750
|
-
];
|
|
751
|
-
var GetBandwidthRateLimitSchedule$ = [9, n0, _GBRLS,
|
|
752
|
-
0, () => GetBandwidthRateLimitScheduleInput$, () => GetBandwidthRateLimitScheduleOutput$
|
|
753
|
-
];
|
|
754
|
-
var GetGateway$ = [9, n0, _GG,
|
|
755
|
-
0, () => GetGatewayInput$, () => GetGatewayOutput$
|
|
756
|
-
];
|
|
757
|
-
var GetHypervisor$ = [9, n0, _GH,
|
|
758
|
-
0, () => GetHypervisorInput$, () => GetHypervisorOutput$
|
|
759
|
-
];
|
|
760
|
-
var GetHypervisorPropertyMappings$ = [9, n0, _GHPM,
|
|
761
|
-
0, () => GetHypervisorPropertyMappingsInput$, () => GetHypervisorPropertyMappingsOutput$
|
|
762
|
-
];
|
|
763
|
-
var GetVirtualMachine$ = [9, n0, _GVM,
|
|
764
|
-
0, () => GetVirtualMachineInput$, () => GetVirtualMachineOutput$
|
|
765
|
-
];
|
|
766
|
-
var ImportHypervisorConfiguration$ = [9, n0, _IHC,
|
|
767
|
-
0, () => ImportHypervisorConfigurationInput$, () => ImportHypervisorConfigurationOutput$
|
|
768
|
-
];
|
|
769
|
-
var ListGateways$ = [9, n0, _LG,
|
|
770
|
-
0, () => ListGatewaysInput$, () => ListGatewaysOutput$
|
|
771
|
-
];
|
|
772
|
-
var ListHypervisors$ = [9, n0, _LH,
|
|
773
|
-
0, () => ListHypervisorsInput$, () => ListHypervisorsOutput$
|
|
774
|
-
];
|
|
775
|
-
var ListTagsForResource$ = [9, n0, _LTFR,
|
|
776
|
-
0, () => ListTagsForResourceInput$, () => ListTagsForResourceOutput$
|
|
777
|
-
];
|
|
778
|
-
var ListVirtualMachines$ = [9, n0, _LVM,
|
|
779
|
-
0, () => ListVirtualMachinesInput$, () => ListVirtualMachinesOutput$
|
|
780
|
-
];
|
|
781
|
-
var PutBandwidthRateLimitSchedule$ = [9, n0, _PBRLS,
|
|
782
|
-
2, () => PutBandwidthRateLimitScheduleInput$, () => PutBandwidthRateLimitScheduleOutput$
|
|
783
|
-
];
|
|
784
|
-
var PutHypervisorPropertyMappings$ = [9, n0, _PHPM,
|
|
785
|
-
2, () => PutHypervisorPropertyMappingsInput$, () => PutHypervisorPropertyMappingsOutput$
|
|
786
|
-
];
|
|
787
|
-
var PutMaintenanceStartTime$ = [9, n0, _PMST,
|
|
788
|
-
0, () => PutMaintenanceStartTimeInput$, () => PutMaintenanceStartTimeOutput$
|
|
789
|
-
];
|
|
790
|
-
var StartVirtualMachinesMetadataSync$ = [9, n0, _SVMMS,
|
|
791
|
-
0, () => StartVirtualMachinesMetadataSyncInput$, () => StartVirtualMachinesMetadataSyncOutput$
|
|
792
|
-
];
|
|
793
|
-
var TagResource$ = [9, n0, _TR,
|
|
794
|
-
0, () => TagResourceInput$, () => TagResourceOutput$
|
|
795
|
-
];
|
|
796
|
-
var TestHypervisorConfiguration$ = [9, n0, _THC,
|
|
797
|
-
0, () => TestHypervisorConfigurationInput$, () => TestHypervisorConfigurationOutput$
|
|
798
|
-
];
|
|
799
|
-
var UntagResource$ = [9, n0, _UR,
|
|
800
|
-
0, () => UntagResourceInput$, () => UntagResourceOutput$
|
|
801
|
-
];
|
|
802
|
-
var UpdateGatewayInformation$ = [9, n0, _UGI,
|
|
803
|
-
0, () => UpdateGatewayInformationInput$, () => UpdateGatewayInformationOutput$
|
|
804
|
-
];
|
|
805
|
-
var UpdateGatewaySoftwareNow$ = [9, n0, _UGSN,
|
|
806
|
-
0, () => UpdateGatewaySoftwareNowInput$, () => UpdateGatewaySoftwareNowOutput$
|
|
807
|
-
];
|
|
808
|
-
var UpdateHypervisor$ = [9, n0, _UH,
|
|
809
|
-
0, () => UpdateHypervisorInput$, () => UpdateHypervisorOutput$
|
|
810
|
-
];
|
|
811
|
-
|
|
812
116
|
class AssociateGatewayToServerCommand extends smithyClient.Command
|
|
813
117
|
.classBuilder()
|
|
814
118
|
.ep(commonParams)
|
|
@@ -817,7 +121,7 @@ class AssociateGatewayToServerCommand extends smithyClient.Command
|
|
|
817
121
|
})
|
|
818
122
|
.s("BackupOnPremises_v20210101", "AssociateGatewayToServer", {})
|
|
819
123
|
.n("BackupGatewayClient", "AssociateGatewayToServerCommand")
|
|
820
|
-
.sc(AssociateGatewayToServer$)
|
|
124
|
+
.sc(schemas_0.AssociateGatewayToServer$)
|
|
821
125
|
.build() {
|
|
822
126
|
}
|
|
823
127
|
|
|
@@ -829,7 +133,7 @@ class CreateGatewayCommand extends smithyClient.Command
|
|
|
829
133
|
})
|
|
830
134
|
.s("BackupOnPremises_v20210101", "CreateGateway", {})
|
|
831
135
|
.n("BackupGatewayClient", "CreateGatewayCommand")
|
|
832
|
-
.sc(CreateGateway$)
|
|
136
|
+
.sc(schemas_0.CreateGateway$)
|
|
833
137
|
.build() {
|
|
834
138
|
}
|
|
835
139
|
|
|
@@ -841,7 +145,7 @@ class DeleteGatewayCommand extends smithyClient.Command
|
|
|
841
145
|
})
|
|
842
146
|
.s("BackupOnPremises_v20210101", "DeleteGateway", {})
|
|
843
147
|
.n("BackupGatewayClient", "DeleteGatewayCommand")
|
|
844
|
-
.sc(DeleteGateway$)
|
|
148
|
+
.sc(schemas_0.DeleteGateway$)
|
|
845
149
|
.build() {
|
|
846
150
|
}
|
|
847
151
|
|
|
@@ -853,7 +157,7 @@ class DeleteHypervisorCommand extends smithyClient.Command
|
|
|
853
157
|
})
|
|
854
158
|
.s("BackupOnPremises_v20210101", "DeleteHypervisor", {})
|
|
855
159
|
.n("BackupGatewayClient", "DeleteHypervisorCommand")
|
|
856
|
-
.sc(DeleteHypervisor$)
|
|
160
|
+
.sc(schemas_0.DeleteHypervisor$)
|
|
857
161
|
.build() {
|
|
858
162
|
}
|
|
859
163
|
|
|
@@ -865,7 +169,7 @@ class DisassociateGatewayFromServerCommand extends smithyClient.Command
|
|
|
865
169
|
})
|
|
866
170
|
.s("BackupOnPremises_v20210101", "DisassociateGatewayFromServer", {})
|
|
867
171
|
.n("BackupGatewayClient", "DisassociateGatewayFromServerCommand")
|
|
868
|
-
.sc(DisassociateGatewayFromServer$)
|
|
172
|
+
.sc(schemas_0.DisassociateGatewayFromServer$)
|
|
869
173
|
.build() {
|
|
870
174
|
}
|
|
871
175
|
|
|
@@ -877,7 +181,7 @@ class GetBandwidthRateLimitScheduleCommand extends smithyClient.Command
|
|
|
877
181
|
})
|
|
878
182
|
.s("BackupOnPremises_v20210101", "GetBandwidthRateLimitSchedule", {})
|
|
879
183
|
.n("BackupGatewayClient", "GetBandwidthRateLimitScheduleCommand")
|
|
880
|
-
.sc(GetBandwidthRateLimitSchedule$)
|
|
184
|
+
.sc(schemas_0.GetBandwidthRateLimitSchedule$)
|
|
881
185
|
.build() {
|
|
882
186
|
}
|
|
883
187
|
|
|
@@ -889,7 +193,7 @@ class GetGatewayCommand extends smithyClient.Command
|
|
|
889
193
|
})
|
|
890
194
|
.s("BackupOnPremises_v20210101", "GetGateway", {})
|
|
891
195
|
.n("BackupGatewayClient", "GetGatewayCommand")
|
|
892
|
-
.sc(GetGateway$)
|
|
196
|
+
.sc(schemas_0.GetGateway$)
|
|
893
197
|
.build() {
|
|
894
198
|
}
|
|
895
199
|
|
|
@@ -901,7 +205,7 @@ class GetHypervisorCommand extends smithyClient.Command
|
|
|
901
205
|
})
|
|
902
206
|
.s("BackupOnPremises_v20210101", "GetHypervisor", {})
|
|
903
207
|
.n("BackupGatewayClient", "GetHypervisorCommand")
|
|
904
|
-
.sc(GetHypervisor$)
|
|
208
|
+
.sc(schemas_0.GetHypervisor$)
|
|
905
209
|
.build() {
|
|
906
210
|
}
|
|
907
211
|
|
|
@@ -913,7 +217,7 @@ class GetHypervisorPropertyMappingsCommand extends smithyClient.Command
|
|
|
913
217
|
})
|
|
914
218
|
.s("BackupOnPremises_v20210101", "GetHypervisorPropertyMappings", {})
|
|
915
219
|
.n("BackupGatewayClient", "GetHypervisorPropertyMappingsCommand")
|
|
916
|
-
.sc(GetHypervisorPropertyMappings$)
|
|
220
|
+
.sc(schemas_0.GetHypervisorPropertyMappings$)
|
|
917
221
|
.build() {
|
|
918
222
|
}
|
|
919
223
|
|
|
@@ -925,7 +229,7 @@ class GetVirtualMachineCommand extends smithyClient.Command
|
|
|
925
229
|
})
|
|
926
230
|
.s("BackupOnPremises_v20210101", "GetVirtualMachine", {})
|
|
927
231
|
.n("BackupGatewayClient", "GetVirtualMachineCommand")
|
|
928
|
-
.sc(GetVirtualMachine$)
|
|
232
|
+
.sc(schemas_0.GetVirtualMachine$)
|
|
929
233
|
.build() {
|
|
930
234
|
}
|
|
931
235
|
|
|
@@ -937,7 +241,7 @@ class ImportHypervisorConfigurationCommand extends smithyClient.Command
|
|
|
937
241
|
})
|
|
938
242
|
.s("BackupOnPremises_v20210101", "ImportHypervisorConfiguration", {})
|
|
939
243
|
.n("BackupGatewayClient", "ImportHypervisorConfigurationCommand")
|
|
940
|
-
.sc(ImportHypervisorConfiguration$)
|
|
244
|
+
.sc(schemas_0.ImportHypervisorConfiguration$)
|
|
941
245
|
.build() {
|
|
942
246
|
}
|
|
943
247
|
|
|
@@ -949,7 +253,7 @@ class ListGatewaysCommand extends smithyClient.Command
|
|
|
949
253
|
})
|
|
950
254
|
.s("BackupOnPremises_v20210101", "ListGateways", {})
|
|
951
255
|
.n("BackupGatewayClient", "ListGatewaysCommand")
|
|
952
|
-
.sc(ListGateways$)
|
|
256
|
+
.sc(schemas_0.ListGateways$)
|
|
953
257
|
.build() {
|
|
954
258
|
}
|
|
955
259
|
|
|
@@ -961,7 +265,7 @@ class ListHypervisorsCommand extends smithyClient.Command
|
|
|
961
265
|
})
|
|
962
266
|
.s("BackupOnPremises_v20210101", "ListHypervisors", {})
|
|
963
267
|
.n("BackupGatewayClient", "ListHypervisorsCommand")
|
|
964
|
-
.sc(ListHypervisors$)
|
|
268
|
+
.sc(schemas_0.ListHypervisors$)
|
|
965
269
|
.build() {
|
|
966
270
|
}
|
|
967
271
|
|
|
@@ -973,7 +277,7 @@ class ListTagsForResourceCommand extends smithyClient.Command
|
|
|
973
277
|
})
|
|
974
278
|
.s("BackupOnPremises_v20210101", "ListTagsForResource", {})
|
|
975
279
|
.n("BackupGatewayClient", "ListTagsForResourceCommand")
|
|
976
|
-
.sc(ListTagsForResource$)
|
|
280
|
+
.sc(schemas_0.ListTagsForResource$)
|
|
977
281
|
.build() {
|
|
978
282
|
}
|
|
979
283
|
|
|
@@ -985,7 +289,7 @@ class ListVirtualMachinesCommand extends smithyClient.Command
|
|
|
985
289
|
})
|
|
986
290
|
.s("BackupOnPremises_v20210101", "ListVirtualMachines", {})
|
|
987
291
|
.n("BackupGatewayClient", "ListVirtualMachinesCommand")
|
|
988
|
-
.sc(ListVirtualMachines$)
|
|
292
|
+
.sc(schemas_0.ListVirtualMachines$)
|
|
989
293
|
.build() {
|
|
990
294
|
}
|
|
991
295
|
|
|
@@ -997,7 +301,7 @@ class PutBandwidthRateLimitScheduleCommand extends smithyClient.Command
|
|
|
997
301
|
})
|
|
998
302
|
.s("BackupOnPremises_v20210101", "PutBandwidthRateLimitSchedule", {})
|
|
999
303
|
.n("BackupGatewayClient", "PutBandwidthRateLimitScheduleCommand")
|
|
1000
|
-
.sc(PutBandwidthRateLimitSchedule$)
|
|
304
|
+
.sc(schemas_0.PutBandwidthRateLimitSchedule$)
|
|
1001
305
|
.build() {
|
|
1002
306
|
}
|
|
1003
307
|
|
|
@@ -1009,7 +313,7 @@ class PutHypervisorPropertyMappingsCommand extends smithyClient.Command
|
|
|
1009
313
|
})
|
|
1010
314
|
.s("BackupOnPremises_v20210101", "PutHypervisorPropertyMappings", {})
|
|
1011
315
|
.n("BackupGatewayClient", "PutHypervisorPropertyMappingsCommand")
|
|
1012
|
-
.sc(PutHypervisorPropertyMappings$)
|
|
316
|
+
.sc(schemas_0.PutHypervisorPropertyMappings$)
|
|
1013
317
|
.build() {
|
|
1014
318
|
}
|
|
1015
319
|
|
|
@@ -1021,7 +325,7 @@ class PutMaintenanceStartTimeCommand extends smithyClient.Command
|
|
|
1021
325
|
})
|
|
1022
326
|
.s("BackupOnPremises_v20210101", "PutMaintenanceStartTime", {})
|
|
1023
327
|
.n("BackupGatewayClient", "PutMaintenanceStartTimeCommand")
|
|
1024
|
-
.sc(PutMaintenanceStartTime$)
|
|
328
|
+
.sc(schemas_0.PutMaintenanceStartTime$)
|
|
1025
329
|
.build() {
|
|
1026
330
|
}
|
|
1027
331
|
|
|
@@ -1033,7 +337,7 @@ class StartVirtualMachinesMetadataSyncCommand extends smithyClient.Command
|
|
|
1033
337
|
})
|
|
1034
338
|
.s("BackupOnPremises_v20210101", "StartVirtualMachinesMetadataSync", {})
|
|
1035
339
|
.n("BackupGatewayClient", "StartVirtualMachinesMetadataSyncCommand")
|
|
1036
|
-
.sc(StartVirtualMachinesMetadataSync$)
|
|
340
|
+
.sc(schemas_0.StartVirtualMachinesMetadataSync$)
|
|
1037
341
|
.build() {
|
|
1038
342
|
}
|
|
1039
343
|
|
|
@@ -1045,7 +349,7 @@ class TagResourceCommand extends smithyClient.Command
|
|
|
1045
349
|
})
|
|
1046
350
|
.s("BackupOnPremises_v20210101", "TagResource", {})
|
|
1047
351
|
.n("BackupGatewayClient", "TagResourceCommand")
|
|
1048
|
-
.sc(TagResource$)
|
|
352
|
+
.sc(schemas_0.TagResource$)
|
|
1049
353
|
.build() {
|
|
1050
354
|
}
|
|
1051
355
|
|
|
@@ -1057,7 +361,7 @@ class TestHypervisorConfigurationCommand extends smithyClient.Command
|
|
|
1057
361
|
})
|
|
1058
362
|
.s("BackupOnPremises_v20210101", "TestHypervisorConfiguration", {})
|
|
1059
363
|
.n("BackupGatewayClient", "TestHypervisorConfigurationCommand")
|
|
1060
|
-
.sc(TestHypervisorConfiguration$)
|
|
364
|
+
.sc(schemas_0.TestHypervisorConfiguration$)
|
|
1061
365
|
.build() {
|
|
1062
366
|
}
|
|
1063
367
|
|
|
@@ -1069,7 +373,7 @@ class UntagResourceCommand extends smithyClient.Command
|
|
|
1069
373
|
})
|
|
1070
374
|
.s("BackupOnPremises_v20210101", "UntagResource", {})
|
|
1071
375
|
.n("BackupGatewayClient", "UntagResourceCommand")
|
|
1072
|
-
.sc(UntagResource$)
|
|
376
|
+
.sc(schemas_0.UntagResource$)
|
|
1073
377
|
.build() {
|
|
1074
378
|
}
|
|
1075
379
|
|
|
@@ -1081,7 +385,7 @@ class UpdateGatewayInformationCommand extends smithyClient.Command
|
|
|
1081
385
|
})
|
|
1082
386
|
.s("BackupOnPremises_v20210101", "UpdateGatewayInformation", {})
|
|
1083
387
|
.n("BackupGatewayClient", "UpdateGatewayInformationCommand")
|
|
1084
|
-
.sc(UpdateGatewayInformation$)
|
|
388
|
+
.sc(schemas_0.UpdateGatewayInformation$)
|
|
1085
389
|
.build() {
|
|
1086
390
|
}
|
|
1087
391
|
|
|
@@ -1093,7 +397,7 @@ class UpdateGatewaySoftwareNowCommand extends smithyClient.Command
|
|
|
1093
397
|
})
|
|
1094
398
|
.s("BackupOnPremises_v20210101", "UpdateGatewaySoftwareNow", {})
|
|
1095
399
|
.n("BackupGatewayClient", "UpdateGatewaySoftwareNowCommand")
|
|
1096
|
-
.sc(UpdateGatewaySoftwareNow$)
|
|
400
|
+
.sc(schemas_0.UpdateGatewaySoftwareNow$)
|
|
1097
401
|
.build() {
|
|
1098
402
|
}
|
|
1099
403
|
|
|
@@ -1105,7 +409,7 @@ class UpdateHypervisorCommand extends smithyClient.Command
|
|
|
1105
409
|
})
|
|
1106
410
|
.s("BackupOnPremises_v20210101", "UpdateHypervisor", {})
|
|
1107
411
|
.n("BackupGatewayClient", "UpdateHypervisorCommand")
|
|
1108
|
-
.sc(UpdateHypervisor$)
|
|
412
|
+
.sc(schemas_0.UpdateHypervisor$)
|
|
1109
413
|
.build() {
|
|
1110
414
|
}
|
|
1111
415
|
|
|
@@ -1176,136 +480,52 @@ Object.defineProperty(exports, "__Client", {
|
|
|
1176
480
|
enumerable: true,
|
|
1177
481
|
get: function () { return smithyClient.Client; }
|
|
1178
482
|
});
|
|
1179
|
-
exports
|
|
1180
|
-
|
|
1181
|
-
|
|
483
|
+
Object.defineProperty(exports, "BackupGatewayServiceException", {
|
|
484
|
+
enumerable: true,
|
|
485
|
+
get: function () { return BackupGatewayServiceException.BackupGatewayServiceException; }
|
|
486
|
+
});
|
|
1182
487
|
exports.AssociateGatewayToServerCommand = AssociateGatewayToServerCommand;
|
|
1183
|
-
exports.AssociateGatewayToServerInput$ = AssociateGatewayToServerInput$;
|
|
1184
|
-
exports.AssociateGatewayToServerOutput$ = AssociateGatewayToServerOutput$;
|
|
1185
488
|
exports.BackupGateway = BackupGateway;
|
|
1186
489
|
exports.BackupGatewayClient = BackupGatewayClient;
|
|
1187
|
-
exports.BackupGatewayServiceException = BackupGatewayServiceException;
|
|
1188
|
-
exports.BackupGatewayServiceException$ = BackupGatewayServiceException$;
|
|
1189
|
-
exports.BandwidthRateLimitInterval$ = BandwidthRateLimitInterval$;
|
|
1190
|
-
exports.ConflictException = ConflictException;
|
|
1191
|
-
exports.ConflictException$ = ConflictException$;
|
|
1192
|
-
exports.CreateGateway$ = CreateGateway$;
|
|
1193
490
|
exports.CreateGatewayCommand = CreateGatewayCommand;
|
|
1194
|
-
exports.CreateGatewayInput$ = CreateGatewayInput$;
|
|
1195
|
-
exports.CreateGatewayOutput$ = CreateGatewayOutput$;
|
|
1196
|
-
exports.DeleteGateway$ = DeleteGateway$;
|
|
1197
491
|
exports.DeleteGatewayCommand = DeleteGatewayCommand;
|
|
1198
|
-
exports.DeleteGatewayInput$ = DeleteGatewayInput$;
|
|
1199
|
-
exports.DeleteGatewayOutput$ = DeleteGatewayOutput$;
|
|
1200
|
-
exports.DeleteHypervisor$ = DeleteHypervisor$;
|
|
1201
492
|
exports.DeleteHypervisorCommand = DeleteHypervisorCommand;
|
|
1202
|
-
exports.DeleteHypervisorInput$ = DeleteHypervisorInput$;
|
|
1203
|
-
exports.DeleteHypervisorOutput$ = DeleteHypervisorOutput$;
|
|
1204
|
-
exports.DisassociateGatewayFromServer$ = DisassociateGatewayFromServer$;
|
|
1205
493
|
exports.DisassociateGatewayFromServerCommand = DisassociateGatewayFromServerCommand;
|
|
1206
|
-
exports.DisassociateGatewayFromServerInput$ = DisassociateGatewayFromServerInput$;
|
|
1207
|
-
exports.DisassociateGatewayFromServerOutput$ = DisassociateGatewayFromServerOutput$;
|
|
1208
|
-
exports.Gateway$ = Gateway$;
|
|
1209
|
-
exports.GatewayDetails$ = GatewayDetails$;
|
|
1210
494
|
exports.GatewayType = GatewayType;
|
|
1211
|
-
exports.GetBandwidthRateLimitSchedule$ = GetBandwidthRateLimitSchedule$;
|
|
1212
495
|
exports.GetBandwidthRateLimitScheduleCommand = GetBandwidthRateLimitScheduleCommand;
|
|
1213
|
-
exports.GetBandwidthRateLimitScheduleInput$ = GetBandwidthRateLimitScheduleInput$;
|
|
1214
|
-
exports.GetBandwidthRateLimitScheduleOutput$ = GetBandwidthRateLimitScheduleOutput$;
|
|
1215
|
-
exports.GetGateway$ = GetGateway$;
|
|
1216
496
|
exports.GetGatewayCommand = GetGatewayCommand;
|
|
1217
|
-
exports.GetGatewayInput$ = GetGatewayInput$;
|
|
1218
|
-
exports.GetGatewayOutput$ = GetGatewayOutput$;
|
|
1219
|
-
exports.GetHypervisor$ = GetHypervisor$;
|
|
1220
497
|
exports.GetHypervisorCommand = GetHypervisorCommand;
|
|
1221
|
-
exports.GetHypervisorInput$ = GetHypervisorInput$;
|
|
1222
|
-
exports.GetHypervisorOutput$ = GetHypervisorOutput$;
|
|
1223
|
-
exports.GetHypervisorPropertyMappings$ = GetHypervisorPropertyMappings$;
|
|
1224
498
|
exports.GetHypervisorPropertyMappingsCommand = GetHypervisorPropertyMappingsCommand;
|
|
1225
|
-
exports.GetHypervisorPropertyMappingsInput$ = GetHypervisorPropertyMappingsInput$;
|
|
1226
|
-
exports.GetHypervisorPropertyMappingsOutput$ = GetHypervisorPropertyMappingsOutput$;
|
|
1227
|
-
exports.GetVirtualMachine$ = GetVirtualMachine$;
|
|
1228
499
|
exports.GetVirtualMachineCommand = GetVirtualMachineCommand;
|
|
1229
|
-
exports.GetVirtualMachineInput$ = GetVirtualMachineInput$;
|
|
1230
|
-
exports.GetVirtualMachineOutput$ = GetVirtualMachineOutput$;
|
|
1231
|
-
exports.Hypervisor$ = Hypervisor$;
|
|
1232
|
-
exports.HypervisorDetails$ = HypervisorDetails$;
|
|
1233
500
|
exports.HypervisorState = HypervisorState;
|
|
1234
|
-
exports.ImportHypervisorConfiguration$ = ImportHypervisorConfiguration$;
|
|
1235
501
|
exports.ImportHypervisorConfigurationCommand = ImportHypervisorConfigurationCommand;
|
|
1236
|
-
exports.ImportHypervisorConfigurationInput$ = ImportHypervisorConfigurationInput$;
|
|
1237
|
-
exports.ImportHypervisorConfigurationOutput$ = ImportHypervisorConfigurationOutput$;
|
|
1238
|
-
exports.InternalServerException = InternalServerException;
|
|
1239
|
-
exports.InternalServerException$ = InternalServerException$;
|
|
1240
|
-
exports.ListGateways$ = ListGateways$;
|
|
1241
502
|
exports.ListGatewaysCommand = ListGatewaysCommand;
|
|
1242
|
-
exports.ListGatewaysInput$ = ListGatewaysInput$;
|
|
1243
|
-
exports.ListGatewaysOutput$ = ListGatewaysOutput$;
|
|
1244
|
-
exports.ListHypervisors$ = ListHypervisors$;
|
|
1245
503
|
exports.ListHypervisorsCommand = ListHypervisorsCommand;
|
|
1246
|
-
exports.ListHypervisorsInput$ = ListHypervisorsInput$;
|
|
1247
|
-
exports.ListHypervisorsOutput$ = ListHypervisorsOutput$;
|
|
1248
|
-
exports.ListTagsForResource$ = ListTagsForResource$;
|
|
1249
504
|
exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
|
|
1250
|
-
exports.ListTagsForResourceInput$ = ListTagsForResourceInput$;
|
|
1251
|
-
exports.ListTagsForResourceOutput$ = ListTagsForResourceOutput$;
|
|
1252
|
-
exports.ListVirtualMachines$ = ListVirtualMachines$;
|
|
1253
505
|
exports.ListVirtualMachinesCommand = ListVirtualMachinesCommand;
|
|
1254
|
-
exports.ListVirtualMachinesInput$ = ListVirtualMachinesInput$;
|
|
1255
|
-
exports.ListVirtualMachinesOutput$ = ListVirtualMachinesOutput$;
|
|
1256
|
-
exports.MaintenanceStartTime$ = MaintenanceStartTime$;
|
|
1257
|
-
exports.PutBandwidthRateLimitSchedule$ = PutBandwidthRateLimitSchedule$;
|
|
1258
506
|
exports.PutBandwidthRateLimitScheduleCommand = PutBandwidthRateLimitScheduleCommand;
|
|
1259
|
-
exports.PutBandwidthRateLimitScheduleInput$ = PutBandwidthRateLimitScheduleInput$;
|
|
1260
|
-
exports.PutBandwidthRateLimitScheduleOutput$ = PutBandwidthRateLimitScheduleOutput$;
|
|
1261
|
-
exports.PutHypervisorPropertyMappings$ = PutHypervisorPropertyMappings$;
|
|
1262
507
|
exports.PutHypervisorPropertyMappingsCommand = PutHypervisorPropertyMappingsCommand;
|
|
1263
|
-
exports.PutHypervisorPropertyMappingsInput$ = PutHypervisorPropertyMappingsInput$;
|
|
1264
|
-
exports.PutHypervisorPropertyMappingsOutput$ = PutHypervisorPropertyMappingsOutput$;
|
|
1265
|
-
exports.PutMaintenanceStartTime$ = PutMaintenanceStartTime$;
|
|
1266
508
|
exports.PutMaintenanceStartTimeCommand = PutMaintenanceStartTimeCommand;
|
|
1267
|
-
exports.PutMaintenanceStartTimeInput$ = PutMaintenanceStartTimeInput$;
|
|
1268
|
-
exports.PutMaintenanceStartTimeOutput$ = PutMaintenanceStartTimeOutput$;
|
|
1269
|
-
exports.ResourceNotFoundException = ResourceNotFoundException;
|
|
1270
|
-
exports.ResourceNotFoundException$ = ResourceNotFoundException$;
|
|
1271
|
-
exports.StartVirtualMachinesMetadataSync$ = StartVirtualMachinesMetadataSync$;
|
|
1272
509
|
exports.StartVirtualMachinesMetadataSyncCommand = StartVirtualMachinesMetadataSyncCommand;
|
|
1273
|
-
exports.StartVirtualMachinesMetadataSyncInput$ = StartVirtualMachinesMetadataSyncInput$;
|
|
1274
|
-
exports.StartVirtualMachinesMetadataSyncOutput$ = StartVirtualMachinesMetadataSyncOutput$;
|
|
1275
510
|
exports.SyncMetadataStatus = SyncMetadataStatus;
|
|
1276
|
-
exports.Tag$ = Tag$;
|
|
1277
|
-
exports.TagResource$ = TagResource$;
|
|
1278
511
|
exports.TagResourceCommand = TagResourceCommand;
|
|
1279
|
-
exports.TagResourceInput$ = TagResourceInput$;
|
|
1280
|
-
exports.TagResourceOutput$ = TagResourceOutput$;
|
|
1281
|
-
exports.TestHypervisorConfiguration$ = TestHypervisorConfiguration$;
|
|
1282
512
|
exports.TestHypervisorConfigurationCommand = TestHypervisorConfigurationCommand;
|
|
1283
|
-
exports.TestHypervisorConfigurationInput$ = TestHypervisorConfigurationInput$;
|
|
1284
|
-
exports.TestHypervisorConfigurationOutput$ = TestHypervisorConfigurationOutput$;
|
|
1285
|
-
exports.ThrottlingException = ThrottlingException;
|
|
1286
|
-
exports.ThrottlingException$ = ThrottlingException$;
|
|
1287
|
-
exports.UntagResource$ = UntagResource$;
|
|
1288
513
|
exports.UntagResourceCommand = UntagResourceCommand;
|
|
1289
|
-
exports.UntagResourceInput$ = UntagResourceInput$;
|
|
1290
|
-
exports.UntagResourceOutput$ = UntagResourceOutput$;
|
|
1291
|
-
exports.UpdateGatewayInformation$ = UpdateGatewayInformation$;
|
|
1292
514
|
exports.UpdateGatewayInformationCommand = UpdateGatewayInformationCommand;
|
|
1293
|
-
exports.UpdateGatewayInformationInput$ = UpdateGatewayInformationInput$;
|
|
1294
|
-
exports.UpdateGatewayInformationOutput$ = UpdateGatewayInformationOutput$;
|
|
1295
|
-
exports.UpdateGatewaySoftwareNow$ = UpdateGatewaySoftwareNow$;
|
|
1296
515
|
exports.UpdateGatewaySoftwareNowCommand = UpdateGatewaySoftwareNowCommand;
|
|
1297
|
-
exports.UpdateGatewaySoftwareNowInput$ = UpdateGatewaySoftwareNowInput$;
|
|
1298
|
-
exports.UpdateGatewaySoftwareNowOutput$ = UpdateGatewaySoftwareNowOutput$;
|
|
1299
|
-
exports.UpdateHypervisor$ = UpdateHypervisor$;
|
|
1300
516
|
exports.UpdateHypervisorCommand = UpdateHypervisorCommand;
|
|
1301
|
-
exports.UpdateHypervisorInput$ = UpdateHypervisorInput$;
|
|
1302
|
-
exports.UpdateHypervisorOutput$ = UpdateHypervisorOutput$;
|
|
1303
|
-
exports.ValidationException = ValidationException;
|
|
1304
|
-
exports.ValidationException$ = ValidationException$;
|
|
1305
|
-
exports.VirtualMachine$ = VirtualMachine$;
|
|
1306
|
-
exports.VirtualMachineDetails$ = VirtualMachineDetails$;
|
|
1307
|
-
exports.VmwareTag$ = VmwareTag$;
|
|
1308
|
-
exports.VmwareToAwsTagMapping$ = VmwareToAwsTagMapping$;
|
|
1309
517
|
exports.paginateListGateways = paginateListGateways;
|
|
1310
518
|
exports.paginateListHypervisors = paginateListHypervisors;
|
|
1311
519
|
exports.paginateListVirtualMachines = paginateListVirtualMachines;
|
|
520
|
+
Object.keys(schemas_0).forEach(function (k) {
|
|
521
|
+
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
522
|
+
enumerable: true,
|
|
523
|
+
get: function () { return schemas_0[k]; }
|
|
524
|
+
});
|
|
525
|
+
});
|
|
526
|
+
Object.keys(errors).forEach(function (k) {
|
|
527
|
+
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
528
|
+
enumerable: true,
|
|
529
|
+
get: function () { return errors[k]; }
|
|
530
|
+
});
|
|
531
|
+
});
|