@aws-sdk/client-backup 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 +127 -3298
- package/dist-cjs/models/BackupServiceException.js +12 -0
- package/dist-cjs/models/errors.js +218 -0
- package/dist-cjs/runtimeConfig.shared.js +2 -0
- package/dist-cjs/schemas/schemas_0.js +2623 -0
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-es/schemas/schemas_0.js +70 -64
- package/dist-types/schemas/schemas_0.d.ts +18 -11
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +13 -11
- 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 BackupServiceException = require('./models/BackupServiceException');
|
|
18
21
|
|
|
19
22
|
const resolveClientEndpointParameters = (options) => {
|
|
20
23
|
return Object.assign(options, {
|
|
@@ -110,2805 +113,6 @@ class BackupClient extends smithyClient.Client {
|
|
|
110
113
|
}
|
|
111
114
|
}
|
|
112
115
|
|
|
113
|
-
class BackupServiceException extends smithyClient.ServiceException {
|
|
114
|
-
constructor(options) {
|
|
115
|
-
super(options);
|
|
116
|
-
Object.setPrototypeOf(this, BackupServiceException.prototype);
|
|
117
|
-
}
|
|
118
|
-
}
|
|
119
|
-
|
|
120
|
-
class AlreadyExistsException extends BackupServiceException {
|
|
121
|
-
name = "AlreadyExistsException";
|
|
122
|
-
$fault = "client";
|
|
123
|
-
Code;
|
|
124
|
-
Message;
|
|
125
|
-
CreatorRequestId;
|
|
126
|
-
Arn;
|
|
127
|
-
Type;
|
|
128
|
-
Context;
|
|
129
|
-
constructor(opts) {
|
|
130
|
-
super({
|
|
131
|
-
name: "AlreadyExistsException",
|
|
132
|
-
$fault: "client",
|
|
133
|
-
...opts,
|
|
134
|
-
});
|
|
135
|
-
Object.setPrototypeOf(this, AlreadyExistsException.prototype);
|
|
136
|
-
this.Code = opts.Code;
|
|
137
|
-
this.Message = opts.Message;
|
|
138
|
-
this.CreatorRequestId = opts.CreatorRequestId;
|
|
139
|
-
this.Arn = opts.Arn;
|
|
140
|
-
this.Type = opts.Type;
|
|
141
|
-
this.Context = opts.Context;
|
|
142
|
-
}
|
|
143
|
-
}
|
|
144
|
-
class InvalidParameterValueException extends BackupServiceException {
|
|
145
|
-
name = "InvalidParameterValueException";
|
|
146
|
-
$fault = "client";
|
|
147
|
-
Code;
|
|
148
|
-
Message;
|
|
149
|
-
Type;
|
|
150
|
-
Context;
|
|
151
|
-
constructor(opts) {
|
|
152
|
-
super({
|
|
153
|
-
name: "InvalidParameterValueException",
|
|
154
|
-
$fault: "client",
|
|
155
|
-
...opts,
|
|
156
|
-
});
|
|
157
|
-
Object.setPrototypeOf(this, InvalidParameterValueException.prototype);
|
|
158
|
-
this.Code = opts.Code;
|
|
159
|
-
this.Message = opts.Message;
|
|
160
|
-
this.Type = opts.Type;
|
|
161
|
-
this.Context = opts.Context;
|
|
162
|
-
}
|
|
163
|
-
}
|
|
164
|
-
class InvalidRequestException extends BackupServiceException {
|
|
165
|
-
name = "InvalidRequestException";
|
|
166
|
-
$fault = "client";
|
|
167
|
-
Code;
|
|
168
|
-
Message;
|
|
169
|
-
Type;
|
|
170
|
-
Context;
|
|
171
|
-
constructor(opts) {
|
|
172
|
-
super({
|
|
173
|
-
name: "InvalidRequestException",
|
|
174
|
-
$fault: "client",
|
|
175
|
-
...opts,
|
|
176
|
-
});
|
|
177
|
-
Object.setPrototypeOf(this, InvalidRequestException.prototype);
|
|
178
|
-
this.Code = opts.Code;
|
|
179
|
-
this.Message = opts.Message;
|
|
180
|
-
this.Type = opts.Type;
|
|
181
|
-
this.Context = opts.Context;
|
|
182
|
-
}
|
|
183
|
-
}
|
|
184
|
-
class MissingParameterValueException extends BackupServiceException {
|
|
185
|
-
name = "MissingParameterValueException";
|
|
186
|
-
$fault = "client";
|
|
187
|
-
Code;
|
|
188
|
-
Message;
|
|
189
|
-
Type;
|
|
190
|
-
Context;
|
|
191
|
-
constructor(opts) {
|
|
192
|
-
super({
|
|
193
|
-
name: "MissingParameterValueException",
|
|
194
|
-
$fault: "client",
|
|
195
|
-
...opts,
|
|
196
|
-
});
|
|
197
|
-
Object.setPrototypeOf(this, MissingParameterValueException.prototype);
|
|
198
|
-
this.Code = opts.Code;
|
|
199
|
-
this.Message = opts.Message;
|
|
200
|
-
this.Type = opts.Type;
|
|
201
|
-
this.Context = opts.Context;
|
|
202
|
-
}
|
|
203
|
-
}
|
|
204
|
-
class ResourceNotFoundException extends BackupServiceException {
|
|
205
|
-
name = "ResourceNotFoundException";
|
|
206
|
-
$fault = "client";
|
|
207
|
-
Code;
|
|
208
|
-
Message;
|
|
209
|
-
Type;
|
|
210
|
-
Context;
|
|
211
|
-
constructor(opts) {
|
|
212
|
-
super({
|
|
213
|
-
name: "ResourceNotFoundException",
|
|
214
|
-
$fault: "client",
|
|
215
|
-
...opts,
|
|
216
|
-
});
|
|
217
|
-
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
218
|
-
this.Code = opts.Code;
|
|
219
|
-
this.Message = opts.Message;
|
|
220
|
-
this.Type = opts.Type;
|
|
221
|
-
this.Context = opts.Context;
|
|
222
|
-
}
|
|
223
|
-
}
|
|
224
|
-
class ServiceUnavailableException extends BackupServiceException {
|
|
225
|
-
name = "ServiceUnavailableException";
|
|
226
|
-
$fault = "server";
|
|
227
|
-
Code;
|
|
228
|
-
Message;
|
|
229
|
-
Type;
|
|
230
|
-
Context;
|
|
231
|
-
constructor(opts) {
|
|
232
|
-
super({
|
|
233
|
-
name: "ServiceUnavailableException",
|
|
234
|
-
$fault: "server",
|
|
235
|
-
...opts,
|
|
236
|
-
});
|
|
237
|
-
Object.setPrototypeOf(this, ServiceUnavailableException.prototype);
|
|
238
|
-
this.Code = opts.Code;
|
|
239
|
-
this.Message = opts.Message;
|
|
240
|
-
this.Type = opts.Type;
|
|
241
|
-
this.Context = opts.Context;
|
|
242
|
-
}
|
|
243
|
-
}
|
|
244
|
-
class InvalidResourceStateException extends BackupServiceException {
|
|
245
|
-
name = "InvalidResourceStateException";
|
|
246
|
-
$fault = "client";
|
|
247
|
-
Code;
|
|
248
|
-
Message;
|
|
249
|
-
Type;
|
|
250
|
-
Context;
|
|
251
|
-
constructor(opts) {
|
|
252
|
-
super({
|
|
253
|
-
name: "InvalidResourceStateException",
|
|
254
|
-
$fault: "client",
|
|
255
|
-
...opts,
|
|
256
|
-
});
|
|
257
|
-
Object.setPrototypeOf(this, InvalidResourceStateException.prototype);
|
|
258
|
-
this.Code = opts.Code;
|
|
259
|
-
this.Message = opts.Message;
|
|
260
|
-
this.Type = opts.Type;
|
|
261
|
-
this.Context = opts.Context;
|
|
262
|
-
}
|
|
263
|
-
}
|
|
264
|
-
class ConflictException extends BackupServiceException {
|
|
265
|
-
name = "ConflictException";
|
|
266
|
-
$fault = "client";
|
|
267
|
-
Code;
|
|
268
|
-
Message;
|
|
269
|
-
Type;
|
|
270
|
-
Context;
|
|
271
|
-
constructor(opts) {
|
|
272
|
-
super({
|
|
273
|
-
name: "ConflictException",
|
|
274
|
-
$fault: "client",
|
|
275
|
-
...opts,
|
|
276
|
-
});
|
|
277
|
-
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
278
|
-
this.Code = opts.Code;
|
|
279
|
-
this.Message = opts.Message;
|
|
280
|
-
this.Type = opts.Type;
|
|
281
|
-
this.Context = opts.Context;
|
|
282
|
-
}
|
|
283
|
-
}
|
|
284
|
-
class LimitExceededException extends BackupServiceException {
|
|
285
|
-
name = "LimitExceededException";
|
|
286
|
-
$fault = "client";
|
|
287
|
-
Code;
|
|
288
|
-
Message;
|
|
289
|
-
Type;
|
|
290
|
-
Context;
|
|
291
|
-
constructor(opts) {
|
|
292
|
-
super({
|
|
293
|
-
name: "LimitExceededException",
|
|
294
|
-
$fault: "client",
|
|
295
|
-
...opts,
|
|
296
|
-
});
|
|
297
|
-
Object.setPrototypeOf(this, LimitExceededException.prototype);
|
|
298
|
-
this.Code = opts.Code;
|
|
299
|
-
this.Message = opts.Message;
|
|
300
|
-
this.Type = opts.Type;
|
|
301
|
-
this.Context = opts.Context;
|
|
302
|
-
}
|
|
303
|
-
}
|
|
304
|
-
class DependencyFailureException extends BackupServiceException {
|
|
305
|
-
name = "DependencyFailureException";
|
|
306
|
-
$fault = "server";
|
|
307
|
-
Code;
|
|
308
|
-
Message;
|
|
309
|
-
Type;
|
|
310
|
-
Context;
|
|
311
|
-
constructor(opts) {
|
|
312
|
-
super({
|
|
313
|
-
name: "DependencyFailureException",
|
|
314
|
-
$fault: "server",
|
|
315
|
-
...opts,
|
|
316
|
-
});
|
|
317
|
-
Object.setPrototypeOf(this, DependencyFailureException.prototype);
|
|
318
|
-
this.Code = opts.Code;
|
|
319
|
-
this.Message = opts.Message;
|
|
320
|
-
this.Type = opts.Type;
|
|
321
|
-
this.Context = opts.Context;
|
|
322
|
-
}
|
|
323
|
-
}
|
|
324
|
-
|
|
325
|
-
const _A = "Arn";
|
|
326
|
-
const _ABS = "AdvancedBackupSetting";
|
|
327
|
-
const _ABSd = "AdvancedBackupSettings";
|
|
328
|
-
const _ABVMAT = "AssociateBackupVaultMpaApprovalTeam";
|
|
329
|
-
const _ABVMATI = "AssociateBackupVaultMpaApprovalTeamInput";
|
|
330
|
-
const _AD = "ApprovalDate";
|
|
331
|
-
const _AEE = "AlreadyExistsException";
|
|
332
|
-
const _AI = "AccountId";
|
|
333
|
-
const _AP = "AggregationPeriod";
|
|
334
|
-
const _ASR = "AggregatedScanResult";
|
|
335
|
-
const _Ac = "Accounts";
|
|
336
|
-
const _Al = "Algorithm";
|
|
337
|
-
const _BAI = "ByAccountId";
|
|
338
|
-
const _BBPI = "ByBackupPlanId";
|
|
339
|
-
const _BBVN = "ByBackupVaultName";
|
|
340
|
-
const _BCA = "ByCreatedAfter";
|
|
341
|
-
const _BCAy = "ByCompleteAfter";
|
|
342
|
-
const _BCAyr = "ByCreationAfter";
|
|
343
|
-
const _BCB = "ByCreatedBefore";
|
|
344
|
-
const _BCBy = "ByCompleteBefore";
|
|
345
|
-
const _BCByr = "ByCreationBefore";
|
|
346
|
-
const _BCD = "BackupCreationDate";
|
|
347
|
-
const _BDVA = "ByDestinationVaultArn";
|
|
348
|
-
const _BJ = "BackupJob";
|
|
349
|
-
const _BJI = "BackupJobId";
|
|
350
|
-
const _BJL = "BackupJobsList";
|
|
351
|
-
const _BJS = "BackupJobSummary";
|
|
352
|
-
const _BJSL = "BackupJobSummaryList";
|
|
353
|
-
const _BJSa = "BackupJobSummaries";
|
|
354
|
-
const _BJa = "BackupJobs";
|
|
355
|
-
const _BMC = "ByMessageCategory";
|
|
356
|
-
const _BMS = "ByMalwareScanner";
|
|
357
|
-
const _BO = "BackupOptions";
|
|
358
|
-
const _BP = "BackupPlan";
|
|
359
|
-
const _BPA = "BackupPlanArn";
|
|
360
|
-
const _BPD = "BackupPlanDocument";
|
|
361
|
-
const _BPI = "BackupPlanInput";
|
|
362
|
-
const _BPIa = "BackupPlanId";
|
|
363
|
-
const _BPJI = "ByParentJobId";
|
|
364
|
-
const _BPL = "BackupPlansList";
|
|
365
|
-
const _BPLM = "BackupPlansListMember";
|
|
366
|
-
const _BPN = "BackupPlanName";
|
|
367
|
-
const _BPRPA = "ByParentRecoveryPointArn";
|
|
368
|
-
const _BPT = "BackupPlanTags";
|
|
369
|
-
const _BPTI = "BackupPlanTemplateId";
|
|
370
|
-
const _BPTJ = "BackupPlanTemplateJson";
|
|
371
|
-
const _BPTL = "BackupPlanTemplatesList";
|
|
372
|
-
const _BPTLM = "BackupPlanTemplatesListMember";
|
|
373
|
-
const _BPTN = "BackupPlanTemplateName";
|
|
374
|
-
const _BPV = "BackupPlanVersion";
|
|
375
|
-
const _BPVL = "BackupPlanVersionsList";
|
|
376
|
-
const _BR = "BackupRule";
|
|
377
|
-
const _BRA = "ByResourceArn";
|
|
378
|
-
const _BRC = "BackupRuleCron";
|
|
379
|
-
const _BRI = "BackupRuleInput";
|
|
380
|
-
const _BRIa = "BackupRuleId";
|
|
381
|
-
const _BRIac = "BackupRulesInput";
|
|
382
|
-
const _BRN = "BackupRuleName";
|
|
383
|
-
const _BRPA = "ByRecoveryPointArn";
|
|
384
|
-
const _BRPCDA = "ByRecoveryPointCreationDateAfter";
|
|
385
|
-
const _BRPCDB = "ByRecoveryPointCreationDateBefore";
|
|
386
|
-
const _BRPN = "ByReportPlanName";
|
|
387
|
-
const _BRT = "ByResourceType";
|
|
388
|
-
const _BRTPA = "ByRestoreTestingPlanArn";
|
|
389
|
-
const _BRTa = "BackupRuleTimezone";
|
|
390
|
-
const _BRa = "BackupRules";
|
|
391
|
-
const _BS = "BackupSelection";
|
|
392
|
-
const _BSB = "BackupSizeBytes";
|
|
393
|
-
const _BSIB = "BackupSizeInBytes";
|
|
394
|
-
const _BSL = "BackupSelectionsList";
|
|
395
|
-
const _BSLM = "BackupSelectionsListMember";
|
|
396
|
-
const _BSRPA = "BySourceRecoveryPointArn";
|
|
397
|
-
const _BSRS = "ByScanResultStatus";
|
|
398
|
-
const _BSy = "ByState";
|
|
399
|
-
const _BSyh = "ByShared";
|
|
400
|
-
const _BSyt = "ByStatus";
|
|
401
|
-
const _BT = "BytesTransferred";
|
|
402
|
-
const _BTa = "BackupType";
|
|
403
|
-
const _BVA = "BackupVaultArn";
|
|
404
|
-
const _BVAI = "BackupVaultAccountId";
|
|
405
|
-
const _BVE = "BackupVaultEvents";
|
|
406
|
-
const _BVL = "BackupVaultList";
|
|
407
|
-
const _BVLM = "BackupVaultListMember";
|
|
408
|
-
const _BVN = "BackupVaultName";
|
|
409
|
-
const _BVT = "BackupVaultTags";
|
|
410
|
-
const _BVTy = "ByVaultType";
|
|
411
|
-
const _C = "Code";
|
|
412
|
-
const _CA = "CopyActions";
|
|
413
|
-
const _CAo = "CopyAction";
|
|
414
|
-
const _CAr = "CreatedAfter";
|
|
415
|
-
const _CAre = "CreationAfter";
|
|
416
|
-
const _CB = "CreatedBy";
|
|
417
|
-
const _CBBJI = "CreatedByBackupJobId";
|
|
418
|
-
const _CBP = "CreateBackupPlan";
|
|
419
|
-
const _CBPI = "CreateBackupPlanInput";
|
|
420
|
-
const _CBPO = "CreateBackupPlanOutput";
|
|
421
|
-
const _CBS = "CreateBackupSelection";
|
|
422
|
-
const _CBSI = "CreateBackupSelectionInput";
|
|
423
|
-
const _CBSO = "CreateBackupSelectionOutput";
|
|
424
|
-
const _CBV = "CreateBackupVault";
|
|
425
|
-
const _CBVI = "CreateBackupVaultInput";
|
|
426
|
-
const _CBVO = "CreateBackupVaultOutput";
|
|
427
|
-
const _CBr = "CreatedBefore";
|
|
428
|
-
const _CBre = "CreationBefore";
|
|
429
|
-
const _CD = "CreationDate";
|
|
430
|
-
const _CDa = "CancelDescription";
|
|
431
|
-
const _CDan = "CancellationDate";
|
|
432
|
-
const _CDo = "CompletionDate";
|
|
433
|
-
const _CE = "ConflictException";
|
|
434
|
-
const _CF = "CreateFramework";
|
|
435
|
-
const _CFD = "ChangeableForDays";
|
|
436
|
-
const _CFI = "CreateFrameworkInput";
|
|
437
|
-
const _CFO = "CreateFrameworkOutput";
|
|
438
|
-
const _CIP = "ControlInputParameter";
|
|
439
|
-
const _CIPo = "ControlInputParameters";
|
|
440
|
-
const _CJ = "CopyJob";
|
|
441
|
-
const _CJI = "CopyJobId";
|
|
442
|
-
const _CJIS = "ChildJobsInState";
|
|
443
|
-
const _CJL = "CopyJobsList";
|
|
444
|
-
const _CJS = "CopyJobSummary";
|
|
445
|
-
const _CJSL = "CopyJobSummaryList";
|
|
446
|
-
const _CJSo = "CopyJobSummaries";
|
|
447
|
-
const _CJo = "CopyJobs";
|
|
448
|
-
const _CK = "ConditionKey";
|
|
449
|
-
const _CL = "CalculatedLifecycle";
|
|
450
|
-
const _CLAGBV = "CreateLogicallyAirGappedBackupVault";
|
|
451
|
-
const _CLAGBVI = "CreateLogicallyAirGappedBackupVaultInput";
|
|
452
|
-
const _CLAGBVO = "CreateLogicallyAirGappedBackupVaultOutput";
|
|
453
|
-
const _CLH = "CancelLegalHold";
|
|
454
|
-
const _CLHI = "CancelLegalHoldInput";
|
|
455
|
-
const _CLHIr = "CreateLegalHoldInput";
|
|
456
|
-
const _CLHO = "CancelLegalHoldOutput";
|
|
457
|
-
const _CLHOr = "CreateLegalHoldOutput";
|
|
458
|
-
const _CLHr = "CreateLegalHold";
|
|
459
|
-
const _CMI = "CompositeMemberIdentifier";
|
|
460
|
-
const _CN = "ControlName";
|
|
461
|
-
const _CP = "ConditionParameter";
|
|
462
|
-
const _CPo = "ConditionParameters";
|
|
463
|
-
const _CRA = "CreatedResourceArn";
|
|
464
|
-
const _CRABV = "CreateRestoreAccessBackupVault";
|
|
465
|
-
const _CRABVI = "CreateRestoreAccessBackupVaultInput";
|
|
466
|
-
const _CRABVO = "CreateRestoreAccessBackupVaultOutput";
|
|
467
|
-
const _CRI = "CreatorRequestId";
|
|
468
|
-
const _CRIo = "ComplianceResourceIds";
|
|
469
|
-
const _CRP = "CreateReportPlan";
|
|
470
|
-
const _CRPI = "CreateReportPlanInput";
|
|
471
|
-
const _CRPO = "CreateReportPlanOutput";
|
|
472
|
-
const _CRT = "ComplianceResourceTypes";
|
|
473
|
-
const _CRTP = "CreateRestoreTestingPlan";
|
|
474
|
-
const _CRTPI = "CreateRestoreTestingPlanInput";
|
|
475
|
-
const _CRTPO = "CreateRestoreTestingPlanOutput";
|
|
476
|
-
const _CRTS = "CreateRestoreTestingSelection";
|
|
477
|
-
const _CRTSI = "CreateRestoreTestingSelectionInput";
|
|
478
|
-
const _CRTSO = "CreateRestoreTestingSelectionOutput";
|
|
479
|
-
const _CS = "ControlScope";
|
|
480
|
-
const _CSTTRR = "CopySourceTagsToRestoredResource";
|
|
481
|
-
const _CT = "ConditionType";
|
|
482
|
-
const _CTC = "CreateTieringConfiguration";
|
|
483
|
-
const _CTCI = "CreateTieringConfigurationInput";
|
|
484
|
-
const _CTCO = "CreateTieringConfigurationOutput";
|
|
485
|
-
const _CTo = "CompletionTime";
|
|
486
|
-
const _CTr = "CreationTime";
|
|
487
|
-
const _CV = "ConditionValue";
|
|
488
|
-
const _CWM = "CompletionWindowMinutes";
|
|
489
|
-
const _CWMo = "CompleteWindowMinutes";
|
|
490
|
-
const _Co = "Context";
|
|
491
|
-
const _Con = "Conditions";
|
|
492
|
-
const _Cond = "Condition";
|
|
493
|
-
const _Cou = "Count";
|
|
494
|
-
const _D = "Description";
|
|
495
|
-
const _DA = "DeleteAt";
|
|
496
|
-
const _DAD = "DeleteAfterDays";
|
|
497
|
-
const _DAE = "DeleteAfterEvent";
|
|
498
|
-
const _DBJ = "DescribeBackupJob";
|
|
499
|
-
const _DBJI = "DescribeBackupJobInput";
|
|
500
|
-
const _DBJO = "DescribeBackupJobOutput";
|
|
501
|
-
const _DBP = "DeleteBackupPlan";
|
|
502
|
-
const _DBPI = "DeleteBackupPlanInput";
|
|
503
|
-
const _DBPO = "DeleteBackupPlanOutput";
|
|
504
|
-
const _DBS = "DeleteBackupSelection";
|
|
505
|
-
const _DBSI = "DeleteBackupSelectionInput";
|
|
506
|
-
const _DBV = "DeleteBackupVault";
|
|
507
|
-
const _DBVA = "DestinationBackupVaultArn";
|
|
508
|
-
const _DBVAP = "DeleteBackupVaultAccessPolicy";
|
|
509
|
-
const _DBVAPI = "DeleteBackupVaultAccessPolicyInput";
|
|
510
|
-
const _DBVI = "DeleteBackupVaultInput";
|
|
511
|
-
const _DBVIe = "DescribeBackupVaultInput";
|
|
512
|
-
const _DBVLC = "DeleteBackupVaultLockConfiguration";
|
|
513
|
-
const _DBVLCI = "DeleteBackupVaultLockConfigurationInput";
|
|
514
|
-
const _DBVMAT = "DisassociateBackupVaultMpaApprovalTeam";
|
|
515
|
-
const _DBVMATI = "DisassociateBackupVaultMpaApprovalTeamInput";
|
|
516
|
-
const _DBVN = "DeleteBackupVaultNotifications";
|
|
517
|
-
const _DBVNI = "DeleteBackupVaultNotificationsInput";
|
|
518
|
-
const _DBVO = "DescribeBackupVaultOutput";
|
|
519
|
-
const _DBVe = "DescribeBackupVault";
|
|
520
|
-
const _DCJ = "DescribeCopyJob";
|
|
521
|
-
const _DCJI = "DescribeCopyJobInput";
|
|
522
|
-
const _DCJO = "DescribeCopyJobOutput";
|
|
523
|
-
const _DD = "DeletionDate";
|
|
524
|
-
const _DEKA = "DestinationEncryptionKeyArn";
|
|
525
|
-
const _DF = "DeleteFramework";
|
|
526
|
-
const _DFE = "DependencyFailureException";
|
|
527
|
-
const _DFI = "DeleteFrameworkInput";
|
|
528
|
-
const _DFIe = "DescribeFrameworkInput";
|
|
529
|
-
const _DFO = "DescribeFrameworkOutput";
|
|
530
|
-
const _DFe = "DescribeFramework";
|
|
531
|
-
const _DGS = "DescribeGlobalSettings";
|
|
532
|
-
const _DGSI = "DescribeGlobalSettingsInput";
|
|
533
|
-
const _DGSO = "DescribeGlobalSettingsOutput";
|
|
534
|
-
const _DPR = "DescribeProtectedResource";
|
|
535
|
-
const _DPRI = "DescribeProtectedResourceInput";
|
|
536
|
-
const _DPRO = "DescribeProtectedResourceOutput";
|
|
537
|
-
const _DR = "DateRange";
|
|
538
|
-
const _DRJ = "DescribeReportJob";
|
|
539
|
-
const _DRJI = "DescribeReportJobInput";
|
|
540
|
-
const _DRJIe = "DescribeRestoreJobInput";
|
|
541
|
-
const _DRJO = "DescribeReportJobOutput";
|
|
542
|
-
const _DRJOe = "DescribeRestoreJobOutput";
|
|
543
|
-
const _DRJe = "DescribeRestoreJob";
|
|
544
|
-
const _DRP = "DeleteRecoveryPoint";
|
|
545
|
-
const _DRPA = "DestinationRecoveryPointArn";
|
|
546
|
-
const _DRPFP = "DisassociateRecoveryPointFromParent";
|
|
547
|
-
const _DRPFPI = "DisassociateRecoveryPointFromParentInput";
|
|
548
|
-
const _DRPI = "DeleteRecoveryPointInput";
|
|
549
|
-
const _DRPIe = "DeleteReportPlanInput";
|
|
550
|
-
const _DRPIes = "DescribeRecoveryPointInput";
|
|
551
|
-
const _DRPIesc = "DescribeReportPlanInput";
|
|
552
|
-
const _DRPIi = "DisassociateRecoveryPointInput";
|
|
553
|
-
const _DRPL = "DestinationRecoveryPointLifecycle";
|
|
554
|
-
const _DRPO = "DescribeRecoveryPointOutput";
|
|
555
|
-
const _DRPOe = "DescribeReportPlanOutput";
|
|
556
|
-
const _DRPe = "DeleteReportPlan";
|
|
557
|
-
const _DRPes = "DescribeRecoveryPoint";
|
|
558
|
-
const _DRPesc = "DescribeReportPlan";
|
|
559
|
-
const _DRPi = "DisassociateRecoveryPoint";
|
|
560
|
-
const _DRS = "DescribeRegionSettings";
|
|
561
|
-
const _DRSI = "DescribeRegionSettingsInput";
|
|
562
|
-
const _DRSO = "DescribeRegionSettingsOutput";
|
|
563
|
-
const _DRTP = "DeleteRestoreTestingPlan";
|
|
564
|
-
const _DRTPI = "DeleteRestoreTestingPlanInput";
|
|
565
|
-
const _DRTS = "DeleteRestoreTestingSelection";
|
|
566
|
-
const _DRTSI = "DeleteRestoreTestingSelectionInput";
|
|
567
|
-
const _DS = "DeploymentStatus";
|
|
568
|
-
const _DSJ = "DescribeScanJob";
|
|
569
|
-
const _DSJI = "DescribeScanJobInput";
|
|
570
|
-
const _DSJO = "DescribeScanJobOutput";
|
|
571
|
-
const _DSM = "DeletionStatusMessage";
|
|
572
|
-
const _DSe = "DeletionStatus";
|
|
573
|
-
const _DTC = "DeleteTieringConfiguration";
|
|
574
|
-
const _DTCI = "DeleteTieringConfigurationInput";
|
|
575
|
-
const _DTCO = "DeleteTieringConfigurationOutput";
|
|
576
|
-
const _DVLS = "DestinationVaultLockState";
|
|
577
|
-
const _DVT = "DestinationVaultType";
|
|
578
|
-
const _EBPT = "ExportBackupPlanTemplate";
|
|
579
|
-
const _EBPTI = "ExportBackupPlanTemplateInput";
|
|
580
|
-
const _EBPTO = "ExportBackupPlanTemplateOutput";
|
|
581
|
-
const _ECB = "EnableContinuousBackup";
|
|
582
|
-
const _ECD = "ExpectedCompletionDate";
|
|
583
|
-
const _ECTM = "ExpectedCompletionTimeMinutes";
|
|
584
|
-
const _ED = "ExpiryDate";
|
|
585
|
-
const _EKA = "EncryptionKeyArn";
|
|
586
|
-
const _EKT = "EncryptionKeyType";
|
|
587
|
-
const _ET = "EndTime";
|
|
588
|
-
const _ETx = "ExecutionTime";
|
|
589
|
-
const _EV = "ExcludeVaults";
|
|
590
|
-
const _F = "Findings";
|
|
591
|
-
const _FA = "FrameworkArn";
|
|
592
|
-
const _FAr = "FrameworkArns";
|
|
593
|
-
const _FC = "FrameworkControls";
|
|
594
|
-
const _FCr = "FrameworkControl";
|
|
595
|
-
const _FD = "FrameworkDescription";
|
|
596
|
-
const _FDr = "FromDate";
|
|
597
|
-
const _FL = "FrameworkList";
|
|
598
|
-
const _FN = "FrameworkName";
|
|
599
|
-
const _FS = "FailedScan";
|
|
600
|
-
const _FSr = "FrameworkStatus";
|
|
601
|
-
const _FT = "FrameworkTags";
|
|
602
|
-
const _Fo = "Formats";
|
|
603
|
-
const _Fr = "Framework";
|
|
604
|
-
const _Fra = "Frameworks";
|
|
605
|
-
const _GBP = "GetBackupPlan";
|
|
606
|
-
const _GBPFJSON = "GetBackupPlanFromJSON";
|
|
607
|
-
const _GBPFJSONI = "GetBackupPlanFromJSONInput";
|
|
608
|
-
const _GBPFJSONO = "GetBackupPlanFromJSONOutput";
|
|
609
|
-
const _GBPFT = "GetBackupPlanFromTemplate";
|
|
610
|
-
const _GBPFTI = "GetBackupPlanFromTemplateInput";
|
|
611
|
-
const _GBPFTO = "GetBackupPlanFromTemplateOutput";
|
|
612
|
-
const _GBPI = "GetBackupPlanInput";
|
|
613
|
-
const _GBPO = "GetBackupPlanOutput";
|
|
614
|
-
const _GBS = "GetBackupSelection";
|
|
615
|
-
const _GBSI = "GetBackupSelectionInput";
|
|
616
|
-
const _GBSO = "GetBackupSelectionOutput";
|
|
617
|
-
const _GBVAP = "GetBackupVaultAccessPolicy";
|
|
618
|
-
const _GBVAPI = "GetBackupVaultAccessPolicyInput";
|
|
619
|
-
const _GBVAPO = "GetBackupVaultAccessPolicyOutput";
|
|
620
|
-
const _GBVN = "GetBackupVaultNotifications";
|
|
621
|
-
const _GBVNI = "GetBackupVaultNotificationsInput";
|
|
622
|
-
const _GBVNO = "GetBackupVaultNotificationsOutput";
|
|
623
|
-
const _GLH = "GetLegalHold";
|
|
624
|
-
const _GLHI = "GetLegalHoldInput";
|
|
625
|
-
const _GLHO = "GetLegalHoldOutput";
|
|
626
|
-
const _GRJM = "GetRestoreJobMetadata";
|
|
627
|
-
const _GRJMI = "GetRestoreJobMetadataInput";
|
|
628
|
-
const _GRJMO = "GetRestoreJobMetadataOutput";
|
|
629
|
-
const _GRPID = "GetRecoveryPointIndexDetails";
|
|
630
|
-
const _GRPIDI = "GetRecoveryPointIndexDetailsInput";
|
|
631
|
-
const _GRPIDO = "GetRecoveryPointIndexDetailsOutput";
|
|
632
|
-
const _GRPRM = "GetRecoveryPointRestoreMetadata";
|
|
633
|
-
const _GRPRMI = "GetRecoveryPointRestoreMetadataInput";
|
|
634
|
-
const _GRPRMO = "GetRecoveryPointRestoreMetadataOutput";
|
|
635
|
-
const _GRTIM = "GetRestoreTestingInferredMetadata";
|
|
636
|
-
const _GRTIMI = "GetRestoreTestingInferredMetadataInput";
|
|
637
|
-
const _GRTIMO = "GetRestoreTestingInferredMetadataOutput";
|
|
638
|
-
const _GRTP = "GetRestoreTestingPlan";
|
|
639
|
-
const _GRTPI = "GetRestoreTestingPlanInput";
|
|
640
|
-
const _GRTPO = "GetRestoreTestingPlanOutput";
|
|
641
|
-
const _GRTS = "GetRestoreTestingSelection";
|
|
642
|
-
const _GRTSI = "GetRestoreTestingSelectionInput";
|
|
643
|
-
const _GRTSO = "GetRestoreTestingSelectionOutput";
|
|
644
|
-
const _GS = "GlobalSettings";
|
|
645
|
-
const _GSRT = "GetSupportedResourceTypes";
|
|
646
|
-
const _GSRTO = "GetSupportedResourceTypesOutput";
|
|
647
|
-
const _GTC = "GetTieringConfiguration";
|
|
648
|
-
const _GTCI = "GetTieringConfigurationInput";
|
|
649
|
-
const _GTCO = "GetTieringConfigurationOutput";
|
|
650
|
-
const _I = "Index";
|
|
651
|
-
const _IA = "IndexActions";
|
|
652
|
-
const _IAn = "IndexAction";
|
|
653
|
-
const _ICD = "IndexCreationDate";
|
|
654
|
-
const _ICDn = "IndexCompletionDate";
|
|
655
|
-
const _ID = "InitiationDate";
|
|
656
|
-
const _IDD = "IndexDeletionDate";
|
|
657
|
-
const _IDn = "IncludeDeleted";
|
|
658
|
-
const _IE = "IsEncrypted";
|
|
659
|
-
const _IM = "InferredMetadata";
|
|
660
|
-
const _IP = "IsParent";
|
|
661
|
-
const _IPVE = "InvalidParameterValueException";
|
|
662
|
-
const _IRA = "IamRoleArn";
|
|
663
|
-
const _IRE = "InvalidRequestException";
|
|
664
|
-
const _IRP = "IndexedRecoveryPoint";
|
|
665
|
-
const _IRPL = "IndexedRecoveryPointList";
|
|
666
|
-
const _IRPn = "IndexedRecoveryPoints";
|
|
667
|
-
const _IRSE = "InvalidResourceStateException";
|
|
668
|
-
const _IS = "IndexStatus";
|
|
669
|
-
const _ISM = "IndexStatusMessage";
|
|
670
|
-
const _IT = "IdempotencyToken";
|
|
671
|
-
const _IV = "IncludeVaults";
|
|
672
|
-
const _K = "Key";
|
|
673
|
-
const _KV = "KeyValue";
|
|
674
|
-
const _KVL = "KeyValueList";
|
|
675
|
-
const _L = "Lifecycle";
|
|
676
|
-
const _LAET = "LastAttemptedExecutionTime";
|
|
677
|
-
const _LAGBVA = "LogicallyAirGappedBackupVaultArn";
|
|
678
|
-
const _LBJ = "ListBackupJobs";
|
|
679
|
-
const _LBJI = "ListBackupJobsInput";
|
|
680
|
-
const _LBJO = "ListBackupJobsOutput";
|
|
681
|
-
const _LBJS = "ListBackupJobSummaries";
|
|
682
|
-
const _LBJSI = "ListBackupJobSummariesInput";
|
|
683
|
-
const _LBJSO = "ListBackupJobSummariesOutput";
|
|
684
|
-
const _LBP = "ListBackupPlans";
|
|
685
|
-
const _LBPI = "ListBackupPlansInput";
|
|
686
|
-
const _LBPO = "ListBackupPlansOutput";
|
|
687
|
-
const _LBPT = "ListBackupPlanTemplates";
|
|
688
|
-
const _LBPTI = "ListBackupPlanTemplatesInput";
|
|
689
|
-
const _LBPTO = "ListBackupPlanTemplatesOutput";
|
|
690
|
-
const _LBPV = "ListBackupPlanVersions";
|
|
691
|
-
const _LBPVI = "ListBackupPlanVersionsInput";
|
|
692
|
-
const _LBPVO = "ListBackupPlanVersionsOutput";
|
|
693
|
-
const _LBS = "ListBackupSelections";
|
|
694
|
-
const _LBSI = "ListBackupSelectionsInput";
|
|
695
|
-
const _LBSO = "ListBackupSelectionsOutput";
|
|
696
|
-
const _LBT = "LastBackupTime";
|
|
697
|
-
const _LBV = "ListBackupVaults";
|
|
698
|
-
const _LBVA = "LastBackupVaultArn";
|
|
699
|
-
const _LBVI = "ListBackupVaultsInput";
|
|
700
|
-
const _LBVO = "ListBackupVaultsOutput";
|
|
701
|
-
const _LC = "LastComputed";
|
|
702
|
-
const _LCJ = "ListCopyJobs";
|
|
703
|
-
const _LCJI = "ListCopyJobsInput";
|
|
704
|
-
const _LCJO = "ListCopyJobsOutput";
|
|
705
|
-
const _LCJS = "ListCopyJobSummaries";
|
|
706
|
-
const _LCJSI = "ListCopyJobSummariesInput";
|
|
707
|
-
const _LCJSO = "ListCopyJobSummariesOutput";
|
|
708
|
-
const _LD = "LockDate";
|
|
709
|
-
const _LED = "LastExecutionDate";
|
|
710
|
-
const _LEE = "LimitExceededException";
|
|
711
|
-
const _LET = "LastExecutionTime";
|
|
712
|
-
const _LF = "ListFrameworks";
|
|
713
|
-
const _LFI = "ListFrameworksInput";
|
|
714
|
-
const _LFO = "ListFrameworksOutput";
|
|
715
|
-
const _LH = "LegalHold";
|
|
716
|
-
const _LHA = "LegalHoldArn";
|
|
717
|
-
const _LHI = "LegalHoldId";
|
|
718
|
-
const _LHL = "LegalHoldsList";
|
|
719
|
-
const _LHe = "LegalHolds";
|
|
720
|
-
const _LIRP = "ListIndexedRecoveryPoints";
|
|
721
|
-
const _LIRPI = "ListIndexedRecoveryPointsInput";
|
|
722
|
-
const _LIRPO = "ListIndexedRecoveryPointsOutput";
|
|
723
|
-
const _LLH = "ListLegalHolds";
|
|
724
|
-
const _LLHI = "ListLegalHoldsInput";
|
|
725
|
-
const _LLHO = "ListLegalHoldsOutput";
|
|
726
|
-
const _LMATU = "LatestMpaApprovalTeamUpdate";
|
|
727
|
-
const _LOT = "ListOfTags";
|
|
728
|
-
const _LPR = "ListProtectedResources";
|
|
729
|
-
const _LPRBBV = "ListProtectedResourcesByBackupVault";
|
|
730
|
-
const _LPRBBVI = "ListProtectedResourcesByBackupVaultInput";
|
|
731
|
-
const _LPRBBVO = "ListProtectedResourcesByBackupVaultOutput";
|
|
732
|
-
const _LPRI = "ListProtectedResourcesInput";
|
|
733
|
-
const _LPRO = "ListProtectedResourcesOutput";
|
|
734
|
-
const _LRABV = "ListRestoreAccessBackupVaults";
|
|
735
|
-
const _LRABVI = "ListRestoreAccessBackupVaultsInput";
|
|
736
|
-
const _LRABVO = "ListRestoreAccessBackupVaultsOutput";
|
|
737
|
-
const _LRETM = "LatestRestoreExecutionTimeMinutes";
|
|
738
|
-
const _LRJ = "ListReportJobs";
|
|
739
|
-
const _LRJBPR = "ListRestoreJobsByProtectedResource";
|
|
740
|
-
const _LRJBPRI = "ListRestoreJobsByProtectedResourceInput";
|
|
741
|
-
const _LRJBPRO = "ListRestoreJobsByProtectedResourceOutput";
|
|
742
|
-
const _LRJCD = "LatestRestoreJobCreationDate";
|
|
743
|
-
const _LRJI = "ListReportJobsInput";
|
|
744
|
-
const _LRJIi = "ListRestoreJobsInput";
|
|
745
|
-
const _LRJO = "ListReportJobsOutput";
|
|
746
|
-
const _LRJOi = "ListRestoreJobsOutput";
|
|
747
|
-
const _LRJS = "ListRestoreJobSummaries";
|
|
748
|
-
const _LRJSI = "ListRestoreJobSummariesInput";
|
|
749
|
-
const _LRJSO = "ListRestoreJobSummariesOutput";
|
|
750
|
-
const _LRJi = "ListRestoreJobs";
|
|
751
|
-
const _LRP = "ListReportPlans";
|
|
752
|
-
const _LRPA = "LastRecoveryPointArn";
|
|
753
|
-
const _LRPBBV = "ListRecoveryPointsByBackupVault";
|
|
754
|
-
const _LRPBBVI = "ListRecoveryPointsByBackupVaultInput";
|
|
755
|
-
const _LRPBBVO = "ListRecoveryPointsByBackupVaultOutput";
|
|
756
|
-
const _LRPBLH = "ListRecoveryPointsByLegalHold";
|
|
757
|
-
const _LRPBLHI = "ListRecoveryPointsByLegalHoldInput";
|
|
758
|
-
const _LRPBLHO = "ListRecoveryPointsByLegalHoldOutput";
|
|
759
|
-
const _LRPBR = "ListRecoveryPointsByResource";
|
|
760
|
-
const _LRPBRI = "ListRecoveryPointsByResourceInput";
|
|
761
|
-
const _LRPBRO = "ListRecoveryPointsByResourceOutput";
|
|
762
|
-
const _LRPI = "ListReportPlansInput";
|
|
763
|
-
const _LRPO = "ListReportPlansOutput";
|
|
764
|
-
const _LRR = "LatestRevokeRequest";
|
|
765
|
-
const _LRRPCD = "LatestRestoreRecoveryPointCreationDate";
|
|
766
|
-
const _LRT = "LastRestoreTime";
|
|
767
|
-
const _LRTP = "ListRestoreTestingPlans";
|
|
768
|
-
const _LRTPI = "ListRestoreTestingPlansInput";
|
|
769
|
-
const _LRTPO = "ListRestoreTestingPlansOutput";
|
|
770
|
-
const _LRTS = "ListRestoreTestingSelections";
|
|
771
|
-
const _LRTSI = "ListRestoreTestingSelectionsInput";
|
|
772
|
-
const _LRTSO = "ListRestoreTestingSelectionsOutput";
|
|
773
|
-
const _LSET = "LastSuccessfulExecutionTime";
|
|
774
|
-
const _LSJ = "ListScanJobs";
|
|
775
|
-
const _LSJI = "ListScanJobsInput";
|
|
776
|
-
const _LSJO = "ListScanJobsOutput";
|
|
777
|
-
const _LSJS = "ListScanJobSummaries";
|
|
778
|
-
const _LSJSI = "ListScanJobSummariesInput";
|
|
779
|
-
const _LSJSO = "ListScanJobSummariesOutput";
|
|
780
|
-
const _LST = "LastScanTimestamp";
|
|
781
|
-
const _LT = "ListTags";
|
|
782
|
-
const _LTC = "ListTieringConfigurations";
|
|
783
|
-
const _LTCI = "ListTieringConfigurationsInput";
|
|
784
|
-
const _LTCO = "ListTieringConfigurationsOutput";
|
|
785
|
-
const _LTI = "ListTagsInput";
|
|
786
|
-
const _LTO = "ListTagsOutput";
|
|
787
|
-
const _LUT = "LastUpdateTime";
|
|
788
|
-
const _LUTa = "LastUpdatedTime";
|
|
789
|
-
const _Lo = "Locked";
|
|
790
|
-
const _M = "Message";
|
|
791
|
-
const _MATA = "MpaApprovalTeamArn";
|
|
792
|
-
const _MBAWSBO = "ManagedByAWSBackupOnly";
|
|
793
|
-
const _MC = "MessageCategory";
|
|
794
|
-
const _MPVE = "MissingParameterValueException";
|
|
795
|
-
const _MR = "MaxResults";
|
|
796
|
-
const _MRD = "MinRetentionDays";
|
|
797
|
-
const _MRDa = "MaxRetentionDays";
|
|
798
|
-
const _MS = "MalwareScanner";
|
|
799
|
-
const _MSA = "MpaSessionArn";
|
|
800
|
-
const _MSRP = "MaxScheduledRunsPreview";
|
|
801
|
-
const _MTCSA = "MoveToColdStorageAt";
|
|
802
|
-
const _MTCSAD = "MoveToColdStorageAfterDays";
|
|
803
|
-
const _Me = "Metadata";
|
|
804
|
-
const _NOC = "NumberOfControls";
|
|
805
|
-
const _NOCJ = "NumberOfChildJobs";
|
|
806
|
-
const _NOF = "NumberOfFrameworks";
|
|
807
|
-
const _NORP = "NumberOfRecoveryPoints";
|
|
808
|
-
const _NR = "NotResources";
|
|
809
|
-
const _NT = "NextToken";
|
|
810
|
-
const _OITAFSR = "OptInToArchiveForSupportedResources";
|
|
811
|
-
const _OU = "OrganizationUnits";
|
|
812
|
-
const _P = "Policy";
|
|
813
|
-
const _PBVAP = "PutBackupVaultAccessPolicy";
|
|
814
|
-
const _PBVAPI = "PutBackupVaultAccessPolicyInput";
|
|
815
|
-
const _PBVLC = "PutBackupVaultLockConfiguration";
|
|
816
|
-
const _PBVLCI = "PutBackupVaultLockConfigurationInput";
|
|
817
|
-
const _PBVN = "PutBackupVaultNotifications";
|
|
818
|
-
const _PBVNI = "PutBackupVaultNotificationsInput";
|
|
819
|
-
const _PD = "PercentDone";
|
|
820
|
-
const _PJI = "ParentJobId";
|
|
821
|
-
const _PN = "ParameterName";
|
|
822
|
-
const _PR = "ProtectedResource";
|
|
823
|
-
const _PRA = "ProtectedResourceArns";
|
|
824
|
-
const _PRC = "ProtectedResourceConditions";
|
|
825
|
-
const _PRL = "ProtectedResourcesList";
|
|
826
|
-
const _PRPA = "ParentRecoveryPointArn";
|
|
827
|
-
const _PRT = "ProtectedResourceType";
|
|
828
|
-
const _PRVR = "PutRestoreValidationResult";
|
|
829
|
-
const _PRVRI = "PutRestoreValidationResultInput";
|
|
830
|
-
const _PV = "ParameterValue";
|
|
831
|
-
const _R = "Region";
|
|
832
|
-
const _RA = "ResourceArn";
|
|
833
|
-
const _RABV = "RestoreAccessBackupVaults";
|
|
834
|
-
const _RABVA = "RestoreAccessBackupVaultArn";
|
|
835
|
-
const _RABVL = "RestoreAccessBackupVaultList";
|
|
836
|
-
const _RABVLM = "RestoreAccessBackupVaultListMember";
|
|
837
|
-
const _RABVN = "RestoreAccessBackupVaultName";
|
|
838
|
-
const _RC = "RequesterComment";
|
|
839
|
-
const _RD = "ReportDestination";
|
|
840
|
-
const _RDC = "ReportDeliveryChannel";
|
|
841
|
-
const _RET = "RuleExecutionType";
|
|
842
|
-
const _RI = "RuleId";
|
|
843
|
-
const _RIe = "ResourceIdentifiers";
|
|
844
|
-
const _RJ = "ReportJob";
|
|
845
|
-
const _RJC = "RestoreJobCreator";
|
|
846
|
-
const _RJI = "ReportJobId";
|
|
847
|
-
const _RJIe = "RestoreJobId";
|
|
848
|
-
const _RJL = "ReportJobList";
|
|
849
|
-
const _RJLM = "RestoreJobsListMember";
|
|
850
|
-
const _RJLe = "RestoreJobsList";
|
|
851
|
-
const _RJS = "RestoreJobSummaries";
|
|
852
|
-
const _RJSL = "RestoreJobSummaryList";
|
|
853
|
-
const _RJSe = "RestoreJobSummary";
|
|
854
|
-
const _RJe = "ReportJobs";
|
|
855
|
-
const _RJes = "RestoreJobs";
|
|
856
|
-
const _RM = "RestoreMetadata";
|
|
857
|
-
const _RMO = "RestoreMetadataOverrides";
|
|
858
|
-
const _RN = "ResourceName";
|
|
859
|
-
const _RNFE = "ResourceNotFoundException";
|
|
860
|
-
const _RNu = "RuleName";
|
|
861
|
-
const _RP = "ReportPlan";
|
|
862
|
-
const _RPA = "RecoveryPointArn";
|
|
863
|
-
const _RPAe = "ReportPlanArn";
|
|
864
|
-
const _RPBBV = "RecoveryPointByBackupVault";
|
|
865
|
-
const _RPBBVL = "RecoveryPointByBackupVaultList";
|
|
866
|
-
const _RPBR = "RecoveryPointByResource";
|
|
867
|
-
const _RPBRL = "RecoveryPointByResourceList";
|
|
868
|
-
const _RPC = "RecoveryPointCreator";
|
|
869
|
-
const _RPCD = "RecoveryPointCreationDate";
|
|
870
|
-
const _RPD = "ReportPlanDescription";
|
|
871
|
-
const _RPL = "RecoveryPointLifecycle";
|
|
872
|
-
const _RPLe = "RecoveryPointsList";
|
|
873
|
-
const _RPLep = "ReportPlanList";
|
|
874
|
-
const _RPM = "RecoveryPointMember";
|
|
875
|
-
const _RPN = "ReportPlanName";
|
|
876
|
-
const _RPS = "RecoveryPointSelection";
|
|
877
|
-
const _RPT = "RecoveryPointTags";
|
|
878
|
-
const _RPTe = "ReportPlanTags";
|
|
879
|
-
const _RPTec = "RecoveryPointTypes";
|
|
880
|
-
const _RPe = "RecoveryPoints";
|
|
881
|
-
const _RPep = "ReportPlans";
|
|
882
|
-
const _RRABV = "RevokeRestoreAccessBackupVault";
|
|
883
|
-
const _RRABVI = "RevokeRestoreAccessBackupVaultInput";
|
|
884
|
-
const _RRID = "RetainRecordInDays";
|
|
885
|
-
const _RRU = "RetainRecordUntil";
|
|
886
|
-
const _RS = "ReportSetting";
|
|
887
|
-
const _RSe = "ResourceSelection";
|
|
888
|
-
const _RSes = "ResourceSelections";
|
|
889
|
-
const _RT = "ResourceType";
|
|
890
|
-
const _RTMP = "ResourceTypeManagementPreference";
|
|
891
|
-
const _RTOIP = "ResourceTypeOptInPreference";
|
|
892
|
-
const _RTP = "RestoreTestingPlan";
|
|
893
|
-
const _RTPA = "RestoreTestingPlanArn";
|
|
894
|
-
const _RTPFC = "RestoreTestingPlanForCreate";
|
|
895
|
-
const _RTPFG = "RestoreTestingPlanForGet";
|
|
896
|
-
const _RTPFL = "RestoreTestingPlanForList";
|
|
897
|
-
const _RTPFU = "RestoreTestingPlanForUpdate";
|
|
898
|
-
const _RTPN = "RestoreTestingPlanName";
|
|
899
|
-
const _RTPe = "RestoreTestingPlans";
|
|
900
|
-
const _RTRPS = "RestoreTestingRecoveryPointSelection";
|
|
901
|
-
const _RTS = "RestoreTestingSelection";
|
|
902
|
-
const _RTSFC = "RestoreTestingSelectionForCreate";
|
|
903
|
-
const _RTSFG = "RestoreTestingSelectionForGet";
|
|
904
|
-
const _RTSFL = "RestoreTestingSelectionForList";
|
|
905
|
-
const _RTSFU = "RestoreTestingSelectionForUpdate";
|
|
906
|
-
const _RTSN = "RestoreTestingSelectionName";
|
|
907
|
-
const _RTSe = "RestoreTestingSelections";
|
|
908
|
-
const _RTe = "ResourceTypes";
|
|
909
|
-
const _RTep = "ReportTemplate";
|
|
910
|
-
const _Re = "Resources";
|
|
911
|
-
const _Reg = "Regions";
|
|
912
|
-
const _Res = "Results";
|
|
913
|
-
const _Ru = "Rules";
|
|
914
|
-
const _S = "State";
|
|
915
|
-
const _SA = "ScanActions";
|
|
916
|
-
const _SAc = "ScanAction";
|
|
917
|
-
const _SB = "StartBy";
|
|
918
|
-
const _SBJ = "StartBackupJob";
|
|
919
|
-
const _SBJI = "StartBackupJobInput";
|
|
920
|
-
const _SBJIt = "StopBackupJobInput";
|
|
921
|
-
const _SBJO = "StartBackupJobOutput";
|
|
922
|
-
const _SBJt = "StopBackupJob";
|
|
923
|
-
const _SBN = "S3BucketName";
|
|
924
|
-
const _SBRPA = "ScanBaseRecoveryPointArn";
|
|
925
|
-
const _SBVA = "SourceBackupVaultArn";
|
|
926
|
-
const _SBVN = "SourceBackupVaultName";
|
|
927
|
-
const _SC = "StorageClass";
|
|
928
|
-
const _SCJ = "StartCopyJob";
|
|
929
|
-
const _SCJI = "StartCopyJobInput";
|
|
930
|
-
const _SCJO = "StartCopyJobOutput";
|
|
931
|
-
const _SE = "ScheduleExpression";
|
|
932
|
-
const _SET = "ScheduleExpressionTimezone";
|
|
933
|
-
const _SEt = "StringEquals";
|
|
934
|
-
const _SI = "SelectionId";
|
|
935
|
-
const _SIc = "ScanId";
|
|
936
|
-
const _SJ = "ScanJobs";
|
|
937
|
-
const _SJC = "ScanJobCreator";
|
|
938
|
-
const _SJI = "ScanJobId";
|
|
939
|
-
const _SJS = "ScanJobSummaries";
|
|
940
|
-
const _SJSL = "ScanJobSummaryList";
|
|
941
|
-
const _SJSc = "ScanJobSummary";
|
|
942
|
-
const _SJSca = "ScanJobState";
|
|
943
|
-
const _SJc = "ScanJob";
|
|
944
|
-
const _SK = "S3Keys";
|
|
945
|
-
const _SKP = "S3KeyPrefix";
|
|
946
|
-
const _SL = "StringLike";
|
|
947
|
-
const _SM = "StatusMessage";
|
|
948
|
-
const _SMc = "ScanMode";
|
|
949
|
-
const _SN = "SelectionName";
|
|
950
|
-
const _SNE = "StringNotEquals";
|
|
951
|
-
const _SNL = "StringNotLike";
|
|
952
|
-
const _SNSTA = "SNSTopicArn";
|
|
953
|
-
const _SPEM = "ScheduledPlanExecutionMember";
|
|
954
|
-
const _SR = "ScanResults";
|
|
955
|
-
const _SRA = "SourceResourceArn";
|
|
956
|
-
const _SRAc = "ScannerRoleArn";
|
|
957
|
-
const _SRI = "ScanResultInfo";
|
|
958
|
-
const _SRJ = "StartReportJob";
|
|
959
|
-
const _SRJI = "StartReportJobInput";
|
|
960
|
-
const _SRJIt = "StartRestoreJobInput";
|
|
961
|
-
const _SRJO = "StartReportJobOutput";
|
|
962
|
-
const _SRJOt = "StartRestoreJobOutput";
|
|
963
|
-
const _SRJt = "StartRestoreJob";
|
|
964
|
-
const _SRP = "ScheduledRunsPreview";
|
|
965
|
-
const _SRPA = "SourceRecoveryPointArn";
|
|
966
|
-
const _SRS = "ScanResultStatus";
|
|
967
|
-
const _SRc = "ScanResult";
|
|
968
|
-
const _SS = "ScanSettings";
|
|
969
|
-
const _SSJ = "StartScanJob";
|
|
970
|
-
const _SSJI = "StartScanJobInput";
|
|
971
|
-
const _SSJO = "StartScanJobOutput";
|
|
972
|
-
const _SSM = "SensitiveStringMap";
|
|
973
|
-
const _SSc = "ScanSetting";
|
|
974
|
-
const _ST = "StartTime";
|
|
975
|
-
const _SUE = "ServiceUnavailableException";
|
|
976
|
-
const _SWD = "SelectionWindowDays";
|
|
977
|
-
const _SWH = "StartWindowHours";
|
|
978
|
-
const _SWM = "StartWindowMinutes";
|
|
979
|
-
const _St = "Status";
|
|
980
|
-
const _T = "Type";
|
|
981
|
-
const _TBVN = "TargetBackupVaultName";
|
|
982
|
-
const _TC = "TieringConfiguration";
|
|
983
|
-
const _TCA = "TieringConfigurationArn";
|
|
984
|
-
const _TCIFC = "TieringConfigurationInputForCreate";
|
|
985
|
-
const _TCIFU = "TieringConfigurationInputForUpdate";
|
|
986
|
-
const _TCL = "TieringConfigurationsList";
|
|
987
|
-
const _TCLM = "TieringConfigurationsListMember";
|
|
988
|
-
const _TCN = "TieringConfigurationName";
|
|
989
|
-
const _TCT = "TieringConfigurationTags";
|
|
990
|
-
const _TCi = "TieringConfigurations";
|
|
991
|
-
const _TD = "ToDate";
|
|
992
|
-
const _TDSID = "TieringDownSettingsInDays";
|
|
993
|
-
const _TII = "TotalItemsIndexed";
|
|
994
|
-
const _TKL = "TagKeyList";
|
|
995
|
-
const _TLAGBVA = "TargetLogicallyAirGappedBackupVaultArn";
|
|
996
|
-
const _TR = "TagResource";
|
|
997
|
-
const _TRI = "TagResourceInput";
|
|
998
|
-
const _Ta = "Tags";
|
|
999
|
-
const _Ti = "Title";
|
|
1000
|
-
const _UBP = "UpdateBackupPlan";
|
|
1001
|
-
const _UBPI = "UpdateBackupPlanInput";
|
|
1002
|
-
const _UBPO = "UpdateBackupPlanOutput";
|
|
1003
|
-
const _UF = "UpdateFramework";
|
|
1004
|
-
const _UFI = "UpdateFrameworkInput";
|
|
1005
|
-
const _UFO = "UpdateFrameworkOutput";
|
|
1006
|
-
const _UGS = "UpdateGlobalSettings";
|
|
1007
|
-
const _UGSI = "UpdateGlobalSettingsInput";
|
|
1008
|
-
const _UR = "UntagResource";
|
|
1009
|
-
const _URI = "UntagResourceInput";
|
|
1010
|
-
const _URP = "UpdateReportPlan";
|
|
1011
|
-
const _URPI = "UpdateReportPlanInput";
|
|
1012
|
-
const _URPIS = "UpdateRecoveryPointIndexSettings";
|
|
1013
|
-
const _URPISI = "UpdateRecoveryPointIndexSettingsInput";
|
|
1014
|
-
const _URPISO = "UpdateRecoveryPointIndexSettingsOutput";
|
|
1015
|
-
const _URPL = "UpdateRecoveryPointLifecycle";
|
|
1016
|
-
const _URPLI = "UpdateRecoveryPointLifecycleInput";
|
|
1017
|
-
const _URPLO = "UpdateRecoveryPointLifecycleOutput";
|
|
1018
|
-
const _URPO = "UpdateReportPlanOutput";
|
|
1019
|
-
const _URS = "UpdateRegionSettings";
|
|
1020
|
-
const _URSI = "UpdateRegionSettingsInput";
|
|
1021
|
-
const _URTP = "UpdateRestoreTestingPlan";
|
|
1022
|
-
const _URTPI = "UpdateRestoreTestingPlanInput";
|
|
1023
|
-
const _URTPO = "UpdateRestoreTestingPlanOutput";
|
|
1024
|
-
const _URTS = "UpdateRestoreTestingSelection";
|
|
1025
|
-
const _URTSI = "UpdateRestoreTestingSelectionInput";
|
|
1026
|
-
const _URTSO = "UpdateRestoreTestingSelectionOutput";
|
|
1027
|
-
const _UT = "UpdateTime";
|
|
1028
|
-
const _UTC = "UpdateTieringConfiguration";
|
|
1029
|
-
const _UTCI = "UpdateTieringConfigurationInput";
|
|
1030
|
-
const _UTCO = "UpdateTieringConfigurationOutput";
|
|
1031
|
-
const _V = "Value";
|
|
1032
|
-
const _VI = "VersionId";
|
|
1033
|
-
const _VLS = "VaultLockState";
|
|
1034
|
-
const _VN = "VaultNames";
|
|
1035
|
-
const _VS = "VaultState";
|
|
1036
|
-
const _VSM = "ValidationStatusMessage";
|
|
1037
|
-
const _VSa = "ValidationStatus";
|
|
1038
|
-
const _VT = "VaultType";
|
|
1039
|
-
const _VWH = "ValidationWindowHours";
|
|
1040
|
-
const _aI = "accountId";
|
|
1041
|
-
const _aQE = "awsQueryError";
|
|
1042
|
-
const _bPI = "backupPlanId";
|
|
1043
|
-
const _bVAI = "backupVaultAccountId";
|
|
1044
|
-
const _bVN = "backupVaultName";
|
|
1045
|
-
const _c = "client";
|
|
1046
|
-
const _cA = "createdAfter";
|
|
1047
|
-
const _cAo = "completeAfter";
|
|
1048
|
-
const _cB = "createdBefore";
|
|
1049
|
-
const _cBo = "completeBefore";
|
|
1050
|
-
const _cD = "cancelDescription";
|
|
1051
|
-
const _dVA = "destinationVaultArn";
|
|
1052
|
-
const _e = "error";
|
|
1053
|
-
const _h = "http";
|
|
1054
|
-
const _hE = "httpError";
|
|
1055
|
-
const _hQ = "httpQuery";
|
|
1056
|
-
const _iD = "includeDeleted";
|
|
1057
|
-
const _iS = "indexStatus";
|
|
1058
|
-
const _mBAWSBO = "managedByAWSBackupOnly";
|
|
1059
|
-
const _mC = "messageCategory";
|
|
1060
|
-
const _mR = "maxResults";
|
|
1061
|
-
const _nT = "nextToken";
|
|
1062
|
-
const _pJI = "parentJobId";
|
|
1063
|
-
const _pRPA = "parentRecoveryPointArn";
|
|
1064
|
-
const _rA = "resourceArn";
|
|
1065
|
-
const _rC = "requesterComment";
|
|
1066
|
-
const _rPCDA = "recoveryPointCreationDateAfter";
|
|
1067
|
-
const _rPCDB = "recoveryPointCreationDateBefore";
|
|
1068
|
-
const _rRID = "retainRecordInDays";
|
|
1069
|
-
const _rT = "resourceType";
|
|
1070
|
-
const _rTPA = "restoreTestingPlanArn";
|
|
1071
|
-
const _s = "server";
|
|
1072
|
-
const _sRA = "sourceResourceArn";
|
|
1073
|
-
const _sRPA = "sourceRecoveryPointArn";
|
|
1074
|
-
const _sh = "shared";
|
|
1075
|
-
const _sm = "smithy.ts.sdk.synthetic.com.amazonaws.backup";
|
|
1076
|
-
const _st = "state";
|
|
1077
|
-
const _sta = "status";
|
|
1078
|
-
const _vI = "versionId";
|
|
1079
|
-
const _vT = "vaultType";
|
|
1080
|
-
const n0 = "com.amazonaws.backup";
|
|
1081
|
-
var RequesterComment = [0, n0, _RC, 8, 0];
|
|
1082
|
-
var AdvancedBackupSetting$ = [3, n0, _ABS,
|
|
1083
|
-
0,
|
|
1084
|
-
[_RT, _BO],
|
|
1085
|
-
[0, 128 | 0]
|
|
1086
|
-
];
|
|
1087
|
-
var AggregatedScanResult$ = [3, n0, _ASR,
|
|
1088
|
-
0,
|
|
1089
|
-
[_FS, _F, _LC],
|
|
1090
|
-
[2, 64 | 0, 4]
|
|
1091
|
-
];
|
|
1092
|
-
var AlreadyExistsException$ = [-3, n0, _AEE,
|
|
1093
|
-
{ [_e]: _c },
|
|
1094
|
-
[_C, _M, _CRI, _A, _T, _Co],
|
|
1095
|
-
[0, 0, 0, 0, 0, 0]
|
|
1096
|
-
];
|
|
1097
|
-
schema.TypeRegistry.for(n0).registerError(AlreadyExistsException$, AlreadyExistsException);
|
|
1098
|
-
var AssociateBackupVaultMpaApprovalTeamInput$ = [3, n0, _ABVMATI,
|
|
1099
|
-
0,
|
|
1100
|
-
[_BVN, _MATA, _RC],
|
|
1101
|
-
[[0, 1], 0, [() => RequesterComment, 0]], 2
|
|
1102
|
-
];
|
|
1103
|
-
var BackupJob$ = [3, n0, _BJ,
|
|
1104
|
-
0,
|
|
1105
|
-
[_AI, _BJI, _BVN, _BVA, _VT, _VLS, _RPA, _RPL, _EKA, _IE, _RA, _CD, _CDo, _S, _SM, _PD, _BSIB, _IRA, _CB, _ECD, _SB, _RT, _BT, _BO, _BTa, _PJI, _IP, _RN, _ID, _MC],
|
|
1106
|
-
[0, 0, 0, 0, 0, 0, 0, () => Lifecycle$, 0, 2, 0, 4, 4, 0, 0, 0, 1, 0, () => RecoveryPointCreator$, 4, 4, 0, 1, 128 | 0, 0, 0, 2, 0, 4, 0]
|
|
1107
|
-
];
|
|
1108
|
-
var BackupJobSummary$ = [3, n0, _BJS,
|
|
1109
|
-
0,
|
|
1110
|
-
[_R, _AI, _S, _RT, _MC, _Cou, _ST, _ET],
|
|
1111
|
-
[0, 0, 0, 0, 0, 1, 4, 4]
|
|
1112
|
-
];
|
|
1113
|
-
var BackupPlan$ = [3, n0, _BP,
|
|
1114
|
-
0,
|
|
1115
|
-
[_BPN, _Ru, _ABSd, _SS],
|
|
1116
|
-
[0, [() => BackupRules, 0], () => AdvancedBackupSettings, () => ScanSettings], 2
|
|
1117
|
-
];
|
|
1118
|
-
var BackupPlanInput$ = [3, n0, _BPI,
|
|
1119
|
-
0,
|
|
1120
|
-
[_BPN, _Ru, _ABSd, _SS],
|
|
1121
|
-
[0, [() => BackupRulesInput, 0], () => AdvancedBackupSettings, () => ScanSettings], 2
|
|
1122
|
-
];
|
|
1123
|
-
var BackupPlansListMember$ = [3, n0, _BPLM,
|
|
1124
|
-
0,
|
|
1125
|
-
[_BPA, _BPIa, _CD, _DD, _VI, _BPN, _CRI, _LED, _ABSd],
|
|
1126
|
-
[0, 0, 4, 4, 0, 0, 0, 4, () => AdvancedBackupSettings]
|
|
1127
|
-
];
|
|
1128
|
-
var BackupPlanTemplatesListMember$ = [3, n0, _BPTLM,
|
|
1129
|
-
0,
|
|
1130
|
-
[_BPTI, _BPTN],
|
|
1131
|
-
[0, 0]
|
|
1132
|
-
];
|
|
1133
|
-
var BackupRule$ = [3, n0, _BR,
|
|
1134
|
-
0,
|
|
1135
|
-
[_RNu, _TBVN, _TLAGBVA, _SE, _SWM, _CWM, _L, _RPT, _RI, _CA, _ECB, _SET, _IA, _SA],
|
|
1136
|
-
[0, 0, 0, 0, 1, 1, () => Lifecycle$, [() => Tags, 0], 0, () => CopyActions, 2, 0, () => IndexActions, () => ScanActions], 2
|
|
1137
|
-
];
|
|
1138
|
-
var BackupRuleInput$ = [3, n0, _BRI,
|
|
1139
|
-
0,
|
|
1140
|
-
[_RNu, _TBVN, _TLAGBVA, _SE, _SWM, _CWM, _L, _RPT, _CA, _ECB, _SET, _IA, _SA],
|
|
1141
|
-
[0, 0, 0, 0, 1, 1, () => Lifecycle$, [() => Tags, 0], () => CopyActions, 2, 0, () => IndexActions, () => ScanActions], 2
|
|
1142
|
-
];
|
|
1143
|
-
var BackupSelection$ = [3, n0, _BS,
|
|
1144
|
-
0,
|
|
1145
|
-
[_SN, _IRA, _Re, _LOT, _NR, _Con],
|
|
1146
|
-
[0, 0, 64 | 0, () => ListOfTags, 64 | 0, () => Conditions$], 2
|
|
1147
|
-
];
|
|
1148
|
-
var BackupSelectionsListMember$ = [3, n0, _BSLM,
|
|
1149
|
-
0,
|
|
1150
|
-
[_SI, _SN, _BPIa, _CD, _CRI, _IRA],
|
|
1151
|
-
[0, 0, 0, 4, 0, 0]
|
|
1152
|
-
];
|
|
1153
|
-
var BackupVaultListMember$ = [3, n0, _BVLM,
|
|
1154
|
-
0,
|
|
1155
|
-
[_BVN, _BVA, _VT, _VS, _CD, _EKA, _CRI, _NORP, _Lo, _MRD, _MRDa, _LD, _EKT],
|
|
1156
|
-
[0, 0, 0, 0, 4, 0, 0, 1, 2, 1, 1, 4, 0]
|
|
1157
|
-
];
|
|
1158
|
-
var CalculatedLifecycle$ = [3, n0, _CL,
|
|
1159
|
-
0,
|
|
1160
|
-
[_MTCSA, _DA],
|
|
1161
|
-
[4, 4]
|
|
1162
|
-
];
|
|
1163
|
-
var CancelLegalHoldInput$ = [3, n0, _CLHI,
|
|
1164
|
-
0,
|
|
1165
|
-
[_LHI, _CDa, _RRID],
|
|
1166
|
-
[[0, 1], [0, { [_hQ]: _cD }], [1, { [_hQ]: _rRID }]], 2
|
|
1167
|
-
];
|
|
1168
|
-
var CancelLegalHoldOutput$ = [3, n0, _CLHO,
|
|
1169
|
-
0,
|
|
1170
|
-
[],
|
|
1171
|
-
[]
|
|
1172
|
-
];
|
|
1173
|
-
var Condition$ = [3, n0, _Cond,
|
|
1174
|
-
0,
|
|
1175
|
-
[_CT, _CK, _CV],
|
|
1176
|
-
[0, 0, 0], 3
|
|
1177
|
-
];
|
|
1178
|
-
var ConditionParameter$ = [3, n0, _CP,
|
|
1179
|
-
0,
|
|
1180
|
-
[_CK, _CV],
|
|
1181
|
-
[0, 0]
|
|
1182
|
-
];
|
|
1183
|
-
var Conditions$ = [3, n0, _Con,
|
|
1184
|
-
0,
|
|
1185
|
-
[_SEt, _SNE, _SL, _SNL],
|
|
1186
|
-
[() => ConditionParameters, () => ConditionParameters, () => ConditionParameters, () => ConditionParameters]
|
|
1187
|
-
];
|
|
1188
|
-
var ConflictException$ = [-3, n0, _CE,
|
|
1189
|
-
{ [_aQE]: [`ConflictException`, 409], [_e]: _c, [_hE]: 409 },
|
|
1190
|
-
[_C, _M, _T, _Co],
|
|
1191
|
-
[0, 0, 0, 0]
|
|
1192
|
-
];
|
|
1193
|
-
schema.TypeRegistry.for(n0).registerError(ConflictException$, ConflictException);
|
|
1194
|
-
var ControlInputParameter$ = [3, n0, _CIP,
|
|
1195
|
-
0,
|
|
1196
|
-
[_PN, _PV],
|
|
1197
|
-
[0, 0]
|
|
1198
|
-
];
|
|
1199
|
-
var ControlScope$ = [3, n0, _CS,
|
|
1200
|
-
0,
|
|
1201
|
-
[_CRIo, _CRT, _Ta],
|
|
1202
|
-
[64 | 0, 64 | 0, 128 | 0]
|
|
1203
|
-
];
|
|
1204
|
-
var CopyAction$ = [3, n0, _CAo,
|
|
1205
|
-
0,
|
|
1206
|
-
[_DBVA, _L],
|
|
1207
|
-
[0, () => Lifecycle$], 1
|
|
1208
|
-
];
|
|
1209
|
-
var CopyJob$ = [3, n0, _CJ,
|
|
1210
|
-
0,
|
|
1211
|
-
[_AI, _CJI, _SBVA, _SRPA, _DBVA, _DVT, _DVLS, _DRPA, _DEKA, _DRPL, _RA, _CD, _CDo, _S, _SM, _BSIB, _IRA, _CB, _CBBJI, _RT, _PJI, _IP, _CMI, _NOCJ, _CJIS, _RN, _MC],
|
|
1212
|
-
[0, 0, 0, 0, 0, 0, 0, 0, 0, () => Lifecycle$, 0, 4, 4, 0, 0, 1, 0, () => RecoveryPointCreator$, 0, 0, 0, 2, 0, 1, 128 | 1, 0, 0]
|
|
1213
|
-
];
|
|
1214
|
-
var CopyJobSummary$ = [3, n0, _CJS,
|
|
1215
|
-
0,
|
|
1216
|
-
[_R, _AI, _S, _RT, _MC, _Cou, _ST, _ET],
|
|
1217
|
-
[0, 0, 0, 0, 0, 1, 4, 4]
|
|
1218
|
-
];
|
|
1219
|
-
var CreateBackupPlanInput$ = [3, n0, _CBPI,
|
|
1220
|
-
0,
|
|
1221
|
-
[_BP, _BPT, _CRI],
|
|
1222
|
-
[[() => BackupPlanInput$, 0], [() => Tags, 0], [0, 4]], 1
|
|
1223
|
-
];
|
|
1224
|
-
var CreateBackupPlanOutput$ = [3, n0, _CBPO,
|
|
1225
|
-
0,
|
|
1226
|
-
[_BPIa, _BPA, _CD, _VI, _ABSd],
|
|
1227
|
-
[0, 0, 4, 0, () => AdvancedBackupSettings]
|
|
1228
|
-
];
|
|
1229
|
-
var CreateBackupSelectionInput$ = [3, n0, _CBSI,
|
|
1230
|
-
0,
|
|
1231
|
-
[_BPIa, _BS, _CRI],
|
|
1232
|
-
[[0, 1], () => BackupSelection$, [0, 4]], 2
|
|
1233
|
-
];
|
|
1234
|
-
var CreateBackupSelectionOutput$ = [3, n0, _CBSO,
|
|
1235
|
-
0,
|
|
1236
|
-
[_SI, _BPIa, _CD],
|
|
1237
|
-
[0, 0, 4]
|
|
1238
|
-
];
|
|
1239
|
-
var CreateBackupVaultInput$ = [3, n0, _CBVI,
|
|
1240
|
-
0,
|
|
1241
|
-
[_BVN, _BVT, _EKA, _CRI],
|
|
1242
|
-
[[0, 1], [() => Tags, 0], 0, [0, 4]], 1
|
|
1243
|
-
];
|
|
1244
|
-
var CreateBackupVaultOutput$ = [3, n0, _CBVO,
|
|
1245
|
-
0,
|
|
1246
|
-
[_BVN, _BVA, _CD],
|
|
1247
|
-
[0, 0, 4]
|
|
1248
|
-
];
|
|
1249
|
-
var CreateFrameworkInput$ = [3, n0, _CFI,
|
|
1250
|
-
0,
|
|
1251
|
-
[_FN, _FC, _FD, _IT, _FT],
|
|
1252
|
-
[0, () => FrameworkControls, 0, [0, 4], 128 | 0], 2
|
|
1253
|
-
];
|
|
1254
|
-
var CreateFrameworkOutput$ = [3, n0, _CFO,
|
|
1255
|
-
0,
|
|
1256
|
-
[_FN, _FA],
|
|
1257
|
-
[0, 0]
|
|
1258
|
-
];
|
|
1259
|
-
var CreateLegalHoldInput$ = [3, n0, _CLHIr,
|
|
1260
|
-
0,
|
|
1261
|
-
[_Ti, _D, _IT, _RPS, _Ta],
|
|
1262
|
-
[0, 0, [0, 4], () => RecoveryPointSelection$, [() => Tags, 0]], 2
|
|
1263
|
-
];
|
|
1264
|
-
var CreateLegalHoldOutput$ = [3, n0, _CLHOr,
|
|
1265
|
-
0,
|
|
1266
|
-
[_Ti, _St, _D, _LHI, _LHA, _CD, _RPS],
|
|
1267
|
-
[0, 0, 0, 0, 0, 4, () => RecoveryPointSelection$]
|
|
1268
|
-
];
|
|
1269
|
-
var CreateLogicallyAirGappedBackupVaultInput$ = [3, n0, _CLAGBVI,
|
|
1270
|
-
0,
|
|
1271
|
-
[_BVN, _MRD, _MRDa, _BVT, _CRI, _EKA],
|
|
1272
|
-
[[0, 1], 1, 1, [() => Tags, 0], [0, 4], 0], 3
|
|
1273
|
-
];
|
|
1274
|
-
var CreateLogicallyAirGappedBackupVaultOutput$ = [3, n0, _CLAGBVO,
|
|
1275
|
-
0,
|
|
1276
|
-
[_BVN, _BVA, _CD, _VS],
|
|
1277
|
-
[0, 0, 4, 0]
|
|
1278
|
-
];
|
|
1279
|
-
var CreateReportPlanInput$ = [3, n0, _CRPI,
|
|
1280
|
-
0,
|
|
1281
|
-
[_RPN, _RDC, _RS, _RPD, _RPTe, _IT],
|
|
1282
|
-
[0, () => ReportDeliveryChannel$, () => ReportSetting$, 0, 128 | 0, [0, 4]], 3
|
|
1283
|
-
];
|
|
1284
|
-
var CreateReportPlanOutput$ = [3, n0, _CRPO,
|
|
1285
|
-
0,
|
|
1286
|
-
[_RPN, _RPAe, _CTr],
|
|
1287
|
-
[0, 0, 4]
|
|
1288
|
-
];
|
|
1289
|
-
var CreateRestoreAccessBackupVaultInput$ = [3, n0, _CRABVI,
|
|
1290
|
-
0,
|
|
1291
|
-
[_SBVA, _BVN, _BVT, _CRI, _RC],
|
|
1292
|
-
[0, 0, [() => Tags, 0], [0, 4], [() => RequesterComment, 0]], 1
|
|
1293
|
-
];
|
|
1294
|
-
var CreateRestoreAccessBackupVaultOutput$ = [3, n0, _CRABVO,
|
|
1295
|
-
0,
|
|
1296
|
-
[_RABVA, _VS, _RABVN, _CD],
|
|
1297
|
-
[0, 0, 0, 4]
|
|
1298
|
-
];
|
|
1299
|
-
var CreateRestoreTestingPlanInput$ = [3, n0, _CRTPI,
|
|
1300
|
-
0,
|
|
1301
|
-
[_RTP, _CRI, _Ta],
|
|
1302
|
-
[() => RestoreTestingPlanForCreate$, 0, [() => SensitiveStringMap, 0]], 1
|
|
1303
|
-
];
|
|
1304
|
-
var CreateRestoreTestingPlanOutput$ = [3, n0, _CRTPO,
|
|
1305
|
-
0,
|
|
1306
|
-
[_CTr, _RTPA, _RTPN],
|
|
1307
|
-
[4, 0, 0], 3
|
|
1308
|
-
];
|
|
1309
|
-
var CreateRestoreTestingSelectionInput$ = [3, n0, _CRTSI,
|
|
1310
|
-
0,
|
|
1311
|
-
[_RTPN, _RTS, _CRI],
|
|
1312
|
-
[[0, 1], [() => RestoreTestingSelectionForCreate$, 0], 0], 2
|
|
1313
|
-
];
|
|
1314
|
-
var CreateRestoreTestingSelectionOutput$ = [3, n0, _CRTSO,
|
|
1315
|
-
0,
|
|
1316
|
-
[_CTr, _RTPA, _RTPN, _RTSN],
|
|
1317
|
-
[4, 0, 0, 0], 4
|
|
1318
|
-
];
|
|
1319
|
-
var CreateTieringConfigurationInput$ = [3, n0, _CTCI,
|
|
1320
|
-
0,
|
|
1321
|
-
[_TC, _TCT, _CRI],
|
|
1322
|
-
[() => TieringConfigurationInputForCreate$, [() => Tags, 0], [0, 4]], 1
|
|
1323
|
-
];
|
|
1324
|
-
var CreateTieringConfigurationOutput$ = [3, n0, _CTCO,
|
|
1325
|
-
0,
|
|
1326
|
-
[_TCA, _TCN, _CTr],
|
|
1327
|
-
[0, 0, 4]
|
|
1328
|
-
];
|
|
1329
|
-
var DateRange$ = [3, n0, _DR,
|
|
1330
|
-
0,
|
|
1331
|
-
[_FDr, _TD],
|
|
1332
|
-
[4, 4], 2
|
|
1333
|
-
];
|
|
1334
|
-
var DeleteBackupPlanInput$ = [3, n0, _DBPI,
|
|
1335
|
-
0,
|
|
1336
|
-
[_BPIa],
|
|
1337
|
-
[[0, 1]], 1
|
|
1338
|
-
];
|
|
1339
|
-
var DeleteBackupPlanOutput$ = [3, n0, _DBPO,
|
|
1340
|
-
0,
|
|
1341
|
-
[_BPIa, _BPA, _DD, _VI],
|
|
1342
|
-
[0, 0, 4, 0]
|
|
1343
|
-
];
|
|
1344
|
-
var DeleteBackupSelectionInput$ = [3, n0, _DBSI,
|
|
1345
|
-
0,
|
|
1346
|
-
[_BPIa, _SI],
|
|
1347
|
-
[[0, 1], [0, 1]], 2
|
|
1348
|
-
];
|
|
1349
|
-
var DeleteBackupVaultAccessPolicyInput$ = [3, n0, _DBVAPI,
|
|
1350
|
-
0,
|
|
1351
|
-
[_BVN],
|
|
1352
|
-
[[0, 1]], 1
|
|
1353
|
-
];
|
|
1354
|
-
var DeleteBackupVaultInput$ = [3, n0, _DBVI,
|
|
1355
|
-
0,
|
|
1356
|
-
[_BVN],
|
|
1357
|
-
[[0, 1]], 1
|
|
1358
|
-
];
|
|
1359
|
-
var DeleteBackupVaultLockConfigurationInput$ = [3, n0, _DBVLCI,
|
|
1360
|
-
0,
|
|
1361
|
-
[_BVN],
|
|
1362
|
-
[[0, 1]], 1
|
|
1363
|
-
];
|
|
1364
|
-
var DeleteBackupVaultNotificationsInput$ = [3, n0, _DBVNI,
|
|
1365
|
-
0,
|
|
1366
|
-
[_BVN],
|
|
1367
|
-
[[0, 1]], 1
|
|
1368
|
-
];
|
|
1369
|
-
var DeleteFrameworkInput$ = [3, n0, _DFI,
|
|
1370
|
-
0,
|
|
1371
|
-
[_FN],
|
|
1372
|
-
[[0, 1]], 1
|
|
1373
|
-
];
|
|
1374
|
-
var DeleteRecoveryPointInput$ = [3, n0, _DRPI,
|
|
1375
|
-
0,
|
|
1376
|
-
[_BVN, _RPA],
|
|
1377
|
-
[[0, 1], [0, 1]], 2
|
|
1378
|
-
];
|
|
1379
|
-
var DeleteReportPlanInput$ = [3, n0, _DRPIe,
|
|
1380
|
-
0,
|
|
1381
|
-
[_RPN],
|
|
1382
|
-
[[0, 1]], 1
|
|
1383
|
-
];
|
|
1384
|
-
var DeleteRestoreTestingPlanInput$ = [3, n0, _DRTPI,
|
|
1385
|
-
0,
|
|
1386
|
-
[_RTPN],
|
|
1387
|
-
[[0, 1]], 1
|
|
1388
|
-
];
|
|
1389
|
-
var DeleteRestoreTestingSelectionInput$ = [3, n0, _DRTSI,
|
|
1390
|
-
0,
|
|
1391
|
-
[_RTPN, _RTSN],
|
|
1392
|
-
[[0, 1], [0, 1]], 2
|
|
1393
|
-
];
|
|
1394
|
-
var DeleteTieringConfigurationInput$ = [3, n0, _DTCI,
|
|
1395
|
-
0,
|
|
1396
|
-
[_TCN],
|
|
1397
|
-
[[0, 1]], 1
|
|
1398
|
-
];
|
|
1399
|
-
var DeleteTieringConfigurationOutput$ = [3, n0, _DTCO,
|
|
1400
|
-
0,
|
|
1401
|
-
[],
|
|
1402
|
-
[]
|
|
1403
|
-
];
|
|
1404
|
-
var DependencyFailureException$ = [-3, n0, _DFE,
|
|
1405
|
-
{ [_e]: _s },
|
|
1406
|
-
[_C, _M, _T, _Co],
|
|
1407
|
-
[0, 0, 0, 0]
|
|
1408
|
-
];
|
|
1409
|
-
schema.TypeRegistry.for(n0).registerError(DependencyFailureException$, DependencyFailureException);
|
|
1410
|
-
var DescribeBackupJobInput$ = [3, n0, _DBJI,
|
|
1411
|
-
0,
|
|
1412
|
-
[_BJI],
|
|
1413
|
-
[[0, 1]], 1
|
|
1414
|
-
];
|
|
1415
|
-
var DescribeBackupJobOutput$ = [3, n0, _DBJO,
|
|
1416
|
-
0,
|
|
1417
|
-
[_AI, _BJI, _BVN, _RPL, _BVA, _VT, _VLS, _RPA, _EKA, _IE, _RA, _CD, _CDo, _S, _SM, _PD, _BSIB, _IRA, _CB, _RT, _BT, _ECD, _SB, _BO, _BTa, _PJI, _IP, _NOCJ, _CJIS, _RN, _ID, _MC],
|
|
1418
|
-
[0, 0, 0, () => Lifecycle$, 0, 0, 0, 0, 0, 2, 0, 4, 4, 0, 0, 0, 1, 0, () => RecoveryPointCreator$, 0, 1, 4, 4, 128 | 0, 0, 0, 2, 1, 128 | 1, 0, 4, 0]
|
|
1419
|
-
];
|
|
1420
|
-
var DescribeBackupVaultInput$ = [3, n0, _DBVIe,
|
|
1421
|
-
0,
|
|
1422
|
-
[_BVN, _BVAI],
|
|
1423
|
-
[[0, 1], [0, { [_hQ]: _bVAI }]], 1
|
|
1424
|
-
];
|
|
1425
|
-
var DescribeBackupVaultOutput$ = [3, n0, _DBVO,
|
|
1426
|
-
0,
|
|
1427
|
-
[_BVN, _BVA, _VT, _VS, _EKA, _CD, _CRI, _NORP, _Lo, _MRD, _MRDa, _LD, _SBVA, _MATA, _MSA, _LMATU, _EKT],
|
|
1428
|
-
[0, 0, 0, 0, 0, 4, 0, 1, 2, 1, 1, 4, 0, 0, 0, () => LatestMpaApprovalTeamUpdate$, 0]
|
|
1429
|
-
];
|
|
1430
|
-
var DescribeCopyJobInput$ = [3, n0, _DCJI,
|
|
1431
|
-
0,
|
|
1432
|
-
[_CJI],
|
|
1433
|
-
[[0, 1]], 1
|
|
1434
|
-
];
|
|
1435
|
-
var DescribeCopyJobOutput$ = [3, n0, _DCJO,
|
|
1436
|
-
0,
|
|
1437
|
-
[_CJ],
|
|
1438
|
-
[() => CopyJob$]
|
|
1439
|
-
];
|
|
1440
|
-
var DescribeFrameworkInput$ = [3, n0, _DFIe,
|
|
1441
|
-
0,
|
|
1442
|
-
[_FN],
|
|
1443
|
-
[[0, 1]], 1
|
|
1444
|
-
];
|
|
1445
|
-
var DescribeFrameworkOutput$ = [3, n0, _DFO,
|
|
1446
|
-
0,
|
|
1447
|
-
[_FN, _FA, _FD, _FC, _CTr, _DS, _FSr, _IT],
|
|
1448
|
-
[0, 0, 0, () => FrameworkControls, 4, 0, 0, 0]
|
|
1449
|
-
];
|
|
1450
|
-
var DescribeGlobalSettingsInput$ = [3, n0, _DGSI,
|
|
1451
|
-
0,
|
|
1452
|
-
[],
|
|
1453
|
-
[]
|
|
1454
|
-
];
|
|
1455
|
-
var DescribeGlobalSettingsOutput$ = [3, n0, _DGSO,
|
|
1456
|
-
0,
|
|
1457
|
-
[_GS, _LUT],
|
|
1458
|
-
[128 | 0, 4]
|
|
1459
|
-
];
|
|
1460
|
-
var DescribeProtectedResourceInput$ = [3, n0, _DPRI,
|
|
1461
|
-
0,
|
|
1462
|
-
[_RA],
|
|
1463
|
-
[[0, 1]], 1
|
|
1464
|
-
];
|
|
1465
|
-
var DescribeProtectedResourceOutput$ = [3, n0, _DPRO,
|
|
1466
|
-
0,
|
|
1467
|
-
[_RA, _RT, _LBT, _RN, _LBVA, _LRPA, _LRETM, _LRJCD, _LRRPCD],
|
|
1468
|
-
[0, 0, 4, 0, 0, 0, 1, 4, 4]
|
|
1469
|
-
];
|
|
1470
|
-
var DescribeRecoveryPointInput$ = [3, n0, _DRPIes,
|
|
1471
|
-
0,
|
|
1472
|
-
[_BVN, _RPA, _BVAI],
|
|
1473
|
-
[[0, 1], [0, 1], [0, { [_hQ]: _bVAI }]], 2
|
|
1474
|
-
];
|
|
1475
|
-
var DescribeRecoveryPointOutput$ = [3, n0, _DRPO,
|
|
1476
|
-
0,
|
|
1477
|
-
[_RPA, _BVN, _BVA, _SBVA, _RA, _RT, _CB, _IRA, _St, _SM, _CD, _ID, _CDo, _BSIB, _CL, _L, _EKA, _IE, _SC, _LRT, _PRPA, _CMI, _IP, _RN, _VT, _IS, _ISM, _EKT, _SR],
|
|
1478
|
-
[0, 0, 0, 0, 0, 0, () => RecoveryPointCreator$, 0, 0, 0, 4, 4, 4, 1, () => CalculatedLifecycle$, () => Lifecycle$, 0, 2, 0, 4, 0, 0, 2, 0, 0, 0, 0, 0, () => ScanResults]
|
|
1479
|
-
];
|
|
1480
|
-
var DescribeRegionSettingsInput$ = [3, n0, _DRSI,
|
|
1481
|
-
0,
|
|
1482
|
-
[],
|
|
1483
|
-
[]
|
|
1484
|
-
];
|
|
1485
|
-
var DescribeRegionSettingsOutput$ = [3, n0, _DRSO,
|
|
1486
|
-
0,
|
|
1487
|
-
[_RTOIP, _RTMP],
|
|
1488
|
-
[128 | 2, 128 | 2]
|
|
1489
|
-
];
|
|
1490
|
-
var DescribeReportJobInput$ = [3, n0, _DRJI,
|
|
1491
|
-
0,
|
|
1492
|
-
[_RJI],
|
|
1493
|
-
[[0, 1]], 1
|
|
1494
|
-
];
|
|
1495
|
-
var DescribeReportJobOutput$ = [3, n0, _DRJO,
|
|
1496
|
-
0,
|
|
1497
|
-
[_RJ],
|
|
1498
|
-
[() => ReportJob$]
|
|
1499
|
-
];
|
|
1500
|
-
var DescribeReportPlanInput$ = [3, n0, _DRPIesc,
|
|
1501
|
-
0,
|
|
1502
|
-
[_RPN],
|
|
1503
|
-
[[0, 1]], 1
|
|
1504
|
-
];
|
|
1505
|
-
var DescribeReportPlanOutput$ = [3, n0, _DRPOe,
|
|
1506
|
-
0,
|
|
1507
|
-
[_RP],
|
|
1508
|
-
[() => ReportPlan$]
|
|
1509
|
-
];
|
|
1510
|
-
var DescribeRestoreJobInput$ = [3, n0, _DRJIe,
|
|
1511
|
-
0,
|
|
1512
|
-
[_RJIe],
|
|
1513
|
-
[[0, 1]], 1
|
|
1514
|
-
];
|
|
1515
|
-
var DescribeRestoreJobOutput$ = [3, n0, _DRJOe,
|
|
1516
|
-
0,
|
|
1517
|
-
[_AI, _RJIe, _RPA, _SRA, _BVA, _CD, _CDo, _St, _SM, _PD, _BSIB, _IRA, _ECTM, _CRA, _RT, _RPCD, _CB, _VSa, _VSM, _DSe, _DSM, _IP, _PJI],
|
|
1518
|
-
[0, 0, 0, 0, 0, 4, 4, 0, 0, 0, 1, 0, 1, 0, 0, 4, () => RestoreJobCreator$, 0, 0, 0, 0, 2, 0]
|
|
1519
|
-
];
|
|
1520
|
-
var DescribeScanJobInput$ = [3, n0, _DSJI,
|
|
1521
|
-
0,
|
|
1522
|
-
[_SJI],
|
|
1523
|
-
[[0, 1]], 1
|
|
1524
|
-
];
|
|
1525
|
-
var DescribeScanJobOutput$ = [3, n0, _DSJO,
|
|
1526
|
-
0,
|
|
1527
|
-
[_AI, _BVA, _BVN, _CB, _CD, _IRA, _MS, _RPA, _RA, _RN, _RT, _SJI, _SMc, _SRAc, _S, _CDo, _SBRPA, _SIc, _SRc, _SM],
|
|
1528
|
-
[0, 0, 0, () => ScanJobCreator$, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, () => ScanResultInfo$, 0], 15
|
|
1529
|
-
];
|
|
1530
|
-
var DisassociateBackupVaultMpaApprovalTeamInput$ = [3, n0, _DBVMATI,
|
|
1531
|
-
0,
|
|
1532
|
-
[_BVN, _RC],
|
|
1533
|
-
[[0, 1], [() => RequesterComment, 0]], 1
|
|
1534
|
-
];
|
|
1535
|
-
var DisassociateRecoveryPointFromParentInput$ = [3, n0, _DRPFPI,
|
|
1536
|
-
0,
|
|
1537
|
-
[_BVN, _RPA],
|
|
1538
|
-
[[0, 1], [0, 1]], 2
|
|
1539
|
-
];
|
|
1540
|
-
var DisassociateRecoveryPointInput$ = [3, n0, _DRPIi,
|
|
1541
|
-
0,
|
|
1542
|
-
[_BVN, _RPA],
|
|
1543
|
-
[[0, 1], [0, 1]], 2
|
|
1544
|
-
];
|
|
1545
|
-
var ExportBackupPlanTemplateInput$ = [3, n0, _EBPTI,
|
|
1546
|
-
0,
|
|
1547
|
-
[_BPIa],
|
|
1548
|
-
[[0, 1]], 1
|
|
1549
|
-
];
|
|
1550
|
-
var ExportBackupPlanTemplateOutput$ = [3, n0, _EBPTO,
|
|
1551
|
-
0,
|
|
1552
|
-
[_BPTJ],
|
|
1553
|
-
[0]
|
|
1554
|
-
];
|
|
1555
|
-
var Framework$ = [3, n0, _Fr,
|
|
1556
|
-
0,
|
|
1557
|
-
[_FN, _FA, _FD, _NOC, _CTr, _DS],
|
|
1558
|
-
[0, 0, 0, 1, 4, 0]
|
|
1559
|
-
];
|
|
1560
|
-
var FrameworkControl$ = [3, n0, _FCr,
|
|
1561
|
-
0,
|
|
1562
|
-
[_CN, _CIPo, _CS],
|
|
1563
|
-
[0, () => ControlInputParameters, () => ControlScope$], 1
|
|
1564
|
-
];
|
|
1565
|
-
var GetBackupPlanFromJSONInput$ = [3, n0, _GBPFJSONI,
|
|
1566
|
-
0,
|
|
1567
|
-
[_BPTJ],
|
|
1568
|
-
[0], 1
|
|
1569
|
-
];
|
|
1570
|
-
var GetBackupPlanFromJSONOutput$ = [3, n0, _GBPFJSONO,
|
|
1571
|
-
0,
|
|
1572
|
-
[_BP],
|
|
1573
|
-
[[() => BackupPlan$, 0]]
|
|
1574
|
-
];
|
|
1575
|
-
var GetBackupPlanFromTemplateInput$ = [3, n0, _GBPFTI,
|
|
1576
|
-
0,
|
|
1577
|
-
[_BPTI],
|
|
1578
|
-
[[0, 1]], 1
|
|
1579
|
-
];
|
|
1580
|
-
var GetBackupPlanFromTemplateOutput$ = [3, n0, _GBPFTO,
|
|
1581
|
-
0,
|
|
1582
|
-
[_BPD],
|
|
1583
|
-
[[() => BackupPlan$, 0]]
|
|
1584
|
-
];
|
|
1585
|
-
var GetBackupPlanInput$ = [3, n0, _GBPI,
|
|
1586
|
-
0,
|
|
1587
|
-
[_BPIa, _VI, _MSRP],
|
|
1588
|
-
[[0, 1], [0, { [_hQ]: _vI }], [1, { [_hQ]: _MSRP }]], 1
|
|
1589
|
-
];
|
|
1590
|
-
var GetBackupPlanOutput$ = [3, n0, _GBPO,
|
|
1591
|
-
0,
|
|
1592
|
-
[_BP, _BPIa, _BPA, _VI, _CRI, _CD, _DD, _LED, _ABSd, _SRP],
|
|
1593
|
-
[[() => BackupPlan$, 0], 0, 0, 0, 0, 4, 4, 4, () => AdvancedBackupSettings, () => ScheduledRunsPreview]
|
|
1594
|
-
];
|
|
1595
|
-
var GetBackupSelectionInput$ = [3, n0, _GBSI,
|
|
1596
|
-
0,
|
|
1597
|
-
[_BPIa, _SI],
|
|
1598
|
-
[[0, 1], [0, 1]], 2
|
|
1599
|
-
];
|
|
1600
|
-
var GetBackupSelectionOutput$ = [3, n0, _GBSO,
|
|
1601
|
-
0,
|
|
1602
|
-
[_BS, _SI, _BPIa, _CD, _CRI],
|
|
1603
|
-
[() => BackupSelection$, 0, 0, 4, 0]
|
|
1604
|
-
];
|
|
1605
|
-
var GetBackupVaultAccessPolicyInput$ = [3, n0, _GBVAPI,
|
|
1606
|
-
0,
|
|
1607
|
-
[_BVN],
|
|
1608
|
-
[[0, 1]], 1
|
|
1609
|
-
];
|
|
1610
|
-
var GetBackupVaultAccessPolicyOutput$ = [3, n0, _GBVAPO,
|
|
1611
|
-
0,
|
|
1612
|
-
[_BVN, _BVA, _P],
|
|
1613
|
-
[0, 0, 0]
|
|
1614
|
-
];
|
|
1615
|
-
var GetBackupVaultNotificationsInput$ = [3, n0, _GBVNI,
|
|
1616
|
-
0,
|
|
1617
|
-
[_BVN],
|
|
1618
|
-
[[0, 1]], 1
|
|
1619
|
-
];
|
|
1620
|
-
var GetBackupVaultNotificationsOutput$ = [3, n0, _GBVNO,
|
|
1621
|
-
0,
|
|
1622
|
-
[_BVN, _BVA, _SNSTA, _BVE],
|
|
1623
|
-
[0, 0, 0, 64 | 0]
|
|
1624
|
-
];
|
|
1625
|
-
var GetLegalHoldInput$ = [3, n0, _GLHI,
|
|
1626
|
-
0,
|
|
1627
|
-
[_LHI],
|
|
1628
|
-
[[0, 1]], 1
|
|
1629
|
-
];
|
|
1630
|
-
var GetLegalHoldOutput$ = [3, n0, _GLHO,
|
|
1631
|
-
0,
|
|
1632
|
-
[_Ti, _St, _D, _CDa, _LHI, _LHA, _CD, _CDan, _RRU, _RPS],
|
|
1633
|
-
[0, 0, 0, 0, 0, 0, 4, 4, 4, () => RecoveryPointSelection$]
|
|
1634
|
-
];
|
|
1635
|
-
var GetRecoveryPointIndexDetailsInput$ = [3, n0, _GRPIDI,
|
|
1636
|
-
0,
|
|
1637
|
-
[_BVN, _RPA],
|
|
1638
|
-
[[0, 1], [0, 1]], 2
|
|
1639
|
-
];
|
|
1640
|
-
var GetRecoveryPointIndexDetailsOutput$ = [3, n0, _GRPIDO,
|
|
1641
|
-
0,
|
|
1642
|
-
[_RPA, _BVA, _SRA, _ICD, _IDD, _ICDn, _IS, _ISM, _TII],
|
|
1643
|
-
[0, 0, 0, 4, 4, 4, 0, 0, 1]
|
|
1644
|
-
];
|
|
1645
|
-
var GetRecoveryPointRestoreMetadataInput$ = [3, n0, _GRPRMI,
|
|
1646
|
-
0,
|
|
1647
|
-
[_BVN, _RPA, _BVAI],
|
|
1648
|
-
[[0, 1], [0, 1], [0, { [_hQ]: _bVAI }]], 2
|
|
1649
|
-
];
|
|
1650
|
-
var GetRecoveryPointRestoreMetadataOutput$ = [3, n0, _GRPRMO,
|
|
1651
|
-
0,
|
|
1652
|
-
[_BVA, _RPA, _RM, _RT],
|
|
1653
|
-
[0, 0, [() => Metadata, 0], 0]
|
|
1654
|
-
];
|
|
1655
|
-
var GetRestoreJobMetadataInput$ = [3, n0, _GRJMI,
|
|
1656
|
-
0,
|
|
1657
|
-
[_RJIe],
|
|
1658
|
-
[[0, 1]], 1
|
|
1659
|
-
];
|
|
1660
|
-
var GetRestoreJobMetadataOutput$ = [3, n0, _GRJMO,
|
|
1661
|
-
0,
|
|
1662
|
-
[_RJIe, _Me],
|
|
1663
|
-
[0, [() => Metadata, 0]]
|
|
1664
|
-
];
|
|
1665
|
-
var GetRestoreTestingInferredMetadataInput$ = [3, n0, _GRTIMI,
|
|
1666
|
-
0,
|
|
1667
|
-
[_BVN, _RPA, _BVAI],
|
|
1668
|
-
[[0, { [_hQ]: _BVN }], [0, { [_hQ]: _RPA }], [0, { [_hQ]: _BVAI }]], 2
|
|
1669
|
-
];
|
|
1670
|
-
var GetRestoreTestingInferredMetadataOutput$ = [3, n0, _GRTIMO,
|
|
1671
|
-
0,
|
|
1672
|
-
[_IM],
|
|
1673
|
-
[128 | 0], 1
|
|
1674
|
-
];
|
|
1675
|
-
var GetRestoreTestingPlanInput$ = [3, n0, _GRTPI,
|
|
1676
|
-
0,
|
|
1677
|
-
[_RTPN],
|
|
1678
|
-
[[0, 1]], 1
|
|
1679
|
-
];
|
|
1680
|
-
var GetRestoreTestingPlanOutput$ = [3, n0, _GRTPO,
|
|
1681
|
-
0,
|
|
1682
|
-
[_RTP],
|
|
1683
|
-
[() => RestoreTestingPlanForGet$], 1
|
|
1684
|
-
];
|
|
1685
|
-
var GetRestoreTestingSelectionInput$ = [3, n0, _GRTSI,
|
|
1686
|
-
0,
|
|
1687
|
-
[_RTPN, _RTSN],
|
|
1688
|
-
[[0, 1], [0, 1]], 2
|
|
1689
|
-
];
|
|
1690
|
-
var GetRestoreTestingSelectionOutput$ = [3, n0, _GRTSO,
|
|
1691
|
-
0,
|
|
1692
|
-
[_RTS],
|
|
1693
|
-
[[() => RestoreTestingSelectionForGet$, 0]], 1
|
|
1694
|
-
];
|
|
1695
|
-
var GetSupportedResourceTypesOutput$ = [3, n0, _GSRTO,
|
|
1696
|
-
0,
|
|
1697
|
-
[_RTe],
|
|
1698
|
-
[64 | 0]
|
|
1699
|
-
];
|
|
1700
|
-
var GetTieringConfigurationInput$ = [3, n0, _GTCI,
|
|
1701
|
-
0,
|
|
1702
|
-
[_TCN],
|
|
1703
|
-
[[0, 1]], 1
|
|
1704
|
-
];
|
|
1705
|
-
var GetTieringConfigurationOutput$ = [3, n0, _GTCO,
|
|
1706
|
-
0,
|
|
1707
|
-
[_TC],
|
|
1708
|
-
[() => TieringConfiguration$]
|
|
1709
|
-
];
|
|
1710
|
-
var IndexAction$ = [3, n0, _IAn,
|
|
1711
|
-
0,
|
|
1712
|
-
[_RTe],
|
|
1713
|
-
[64 | 0]
|
|
1714
|
-
];
|
|
1715
|
-
var IndexedRecoveryPoint$ = [3, n0, _IRP,
|
|
1716
|
-
0,
|
|
1717
|
-
[_RPA, _SRA, _IRA, _BCD, _RT, _ICD, _IS, _ISM, _BVA],
|
|
1718
|
-
[0, 0, 0, 4, 0, 4, 0, 0, 0]
|
|
1719
|
-
];
|
|
1720
|
-
var InvalidParameterValueException$ = [-3, n0, _IPVE,
|
|
1721
|
-
{ [_e]: _c },
|
|
1722
|
-
[_C, _M, _T, _Co],
|
|
1723
|
-
[0, 0, 0, 0]
|
|
1724
|
-
];
|
|
1725
|
-
schema.TypeRegistry.for(n0).registerError(InvalidParameterValueException$, InvalidParameterValueException);
|
|
1726
|
-
var InvalidRequestException$ = [-3, n0, _IRE,
|
|
1727
|
-
{ [_e]: _c },
|
|
1728
|
-
[_C, _M, _T, _Co],
|
|
1729
|
-
[0, 0, 0, 0]
|
|
1730
|
-
];
|
|
1731
|
-
schema.TypeRegistry.for(n0).registerError(InvalidRequestException$, InvalidRequestException);
|
|
1732
|
-
var InvalidResourceStateException$ = [-3, n0, _IRSE,
|
|
1733
|
-
{ [_e]: _c },
|
|
1734
|
-
[_C, _M, _T, _Co],
|
|
1735
|
-
[0, 0, 0, 0]
|
|
1736
|
-
];
|
|
1737
|
-
schema.TypeRegistry.for(n0).registerError(InvalidResourceStateException$, InvalidResourceStateException);
|
|
1738
|
-
var KeyValue$ = [3, n0, _KV,
|
|
1739
|
-
0,
|
|
1740
|
-
[_K, _V],
|
|
1741
|
-
[0, 0], 2
|
|
1742
|
-
];
|
|
1743
|
-
var LatestMpaApprovalTeamUpdate$ = [3, n0, _LMATU,
|
|
1744
|
-
0,
|
|
1745
|
-
[_MSA, _St, _SM, _ID, _ED],
|
|
1746
|
-
[0, 0, 0, 4, 4]
|
|
1747
|
-
];
|
|
1748
|
-
var LatestRevokeRequest$ = [3, n0, _LRR,
|
|
1749
|
-
0,
|
|
1750
|
-
[_MSA, _St, _SM, _ID, _ED],
|
|
1751
|
-
[0, 0, 0, 4, 4]
|
|
1752
|
-
];
|
|
1753
|
-
var LegalHold$ = [3, n0, _LH,
|
|
1754
|
-
0,
|
|
1755
|
-
[_Ti, _St, _D, _LHI, _LHA, _CD, _CDan],
|
|
1756
|
-
[0, 0, 0, 0, 0, 4, 4]
|
|
1757
|
-
];
|
|
1758
|
-
var Lifecycle$ = [3, n0, _L,
|
|
1759
|
-
0,
|
|
1760
|
-
[_MTCSAD, _DAD, _OITAFSR, _DAE],
|
|
1761
|
-
[1, 1, 2, 0]
|
|
1762
|
-
];
|
|
1763
|
-
var LimitExceededException$ = [-3, n0, _LEE,
|
|
1764
|
-
{ [_e]: _c },
|
|
1765
|
-
[_C, _M, _T, _Co],
|
|
1766
|
-
[0, 0, 0, 0]
|
|
1767
|
-
];
|
|
1768
|
-
schema.TypeRegistry.for(n0).registerError(LimitExceededException$, LimitExceededException);
|
|
1769
|
-
var ListBackupJobsInput$ = [3, n0, _LBJI,
|
|
1770
|
-
0,
|
|
1771
|
-
[_NT, _MR, _BRA, _BSy, _BBVN, _BCB, _BCA, _BRT, _BAI, _BCAy, _BCBy, _BPJI, _BMC],
|
|
1772
|
-
[[0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }], [0, { [_hQ]: _rA }], [0, { [_hQ]: _st }], [0, { [_hQ]: _bVN }], [4, { [_hQ]: _cB }], [4, { [_hQ]: _cA }], [0, { [_hQ]: _rT }], [0, { [_hQ]: _aI }], [4, { [_hQ]: _cAo }], [4, { [_hQ]: _cBo }], [0, { [_hQ]: _pJI }], [0, { [_hQ]: _mC }]]
|
|
1773
|
-
];
|
|
1774
|
-
var ListBackupJobsOutput$ = [3, n0, _LBJO,
|
|
1775
|
-
0,
|
|
1776
|
-
[_BJa, _NT],
|
|
1777
|
-
[() => BackupJobsList, 0]
|
|
1778
|
-
];
|
|
1779
|
-
var ListBackupJobSummariesInput$ = [3, n0, _LBJSI,
|
|
1780
|
-
0,
|
|
1781
|
-
[_AI, _S, _RT, _MC, _AP, _MR, _NT],
|
|
1782
|
-
[[0, { [_hQ]: _AI }], [0, { [_hQ]: _S }], [0, { [_hQ]: _RT }], [0, { [_hQ]: _MC }], [0, { [_hQ]: _AP }], [1, { [_hQ]: _MR }], [0, { [_hQ]: _NT }]]
|
|
1783
|
-
];
|
|
1784
|
-
var ListBackupJobSummariesOutput$ = [3, n0, _LBJSO,
|
|
1785
|
-
0,
|
|
1786
|
-
[_BJSa, _AP, _NT],
|
|
1787
|
-
[() => BackupJobSummaryList, 0, 0]
|
|
1788
|
-
];
|
|
1789
|
-
var ListBackupPlansInput$ = [3, n0, _LBPI,
|
|
1790
|
-
0,
|
|
1791
|
-
[_NT, _MR, _IDn],
|
|
1792
|
-
[[0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }], [2, { [_hQ]: _iD }]]
|
|
1793
|
-
];
|
|
1794
|
-
var ListBackupPlansOutput$ = [3, n0, _LBPO,
|
|
1795
|
-
0,
|
|
1796
|
-
[_NT, _BPL],
|
|
1797
|
-
[0, () => BackupPlansList]
|
|
1798
|
-
];
|
|
1799
|
-
var ListBackupPlanTemplatesInput$ = [3, n0, _LBPTI,
|
|
1800
|
-
0,
|
|
1801
|
-
[_NT, _MR],
|
|
1802
|
-
[[0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]]
|
|
1803
|
-
];
|
|
1804
|
-
var ListBackupPlanTemplatesOutput$ = [3, n0, _LBPTO,
|
|
1805
|
-
0,
|
|
1806
|
-
[_NT, _BPTL],
|
|
1807
|
-
[0, () => BackupPlanTemplatesList]
|
|
1808
|
-
];
|
|
1809
|
-
var ListBackupPlanVersionsInput$ = [3, n0, _LBPVI,
|
|
1810
|
-
0,
|
|
1811
|
-
[_BPIa, _NT, _MR],
|
|
1812
|
-
[[0, 1], [0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]], 1
|
|
1813
|
-
];
|
|
1814
|
-
var ListBackupPlanVersionsOutput$ = [3, n0, _LBPVO,
|
|
1815
|
-
0,
|
|
1816
|
-
[_NT, _BPVL],
|
|
1817
|
-
[0, () => BackupPlanVersionsList]
|
|
1818
|
-
];
|
|
1819
|
-
var ListBackupSelectionsInput$ = [3, n0, _LBSI,
|
|
1820
|
-
0,
|
|
1821
|
-
[_BPIa, _NT, _MR],
|
|
1822
|
-
[[0, 1], [0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]], 1
|
|
1823
|
-
];
|
|
1824
|
-
var ListBackupSelectionsOutput$ = [3, n0, _LBSO,
|
|
1825
|
-
0,
|
|
1826
|
-
[_NT, _BSL],
|
|
1827
|
-
[0, () => BackupSelectionsList]
|
|
1828
|
-
];
|
|
1829
|
-
var ListBackupVaultsInput$ = [3, n0, _LBVI,
|
|
1830
|
-
0,
|
|
1831
|
-
[_BVTy, _BSyh, _NT, _MR],
|
|
1832
|
-
[[0, { [_hQ]: _vT }], [2, { [_hQ]: _sh }], [0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]]
|
|
1833
|
-
];
|
|
1834
|
-
var ListBackupVaultsOutput$ = [3, n0, _LBVO,
|
|
1835
|
-
0,
|
|
1836
|
-
[_BVL, _NT],
|
|
1837
|
-
[() => BackupVaultList, 0]
|
|
1838
|
-
];
|
|
1839
|
-
var ListCopyJobsInput$ = [3, n0, _LCJI,
|
|
1840
|
-
0,
|
|
1841
|
-
[_NT, _MR, _BRA, _BSy, _BCB, _BCA, _BRT, _BDVA, _BAI, _BCBy, _BCAy, _BPJI, _BMC, _BSRPA],
|
|
1842
|
-
[[0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }], [0, { [_hQ]: _rA }], [0, { [_hQ]: _st }], [4, { [_hQ]: _cB }], [4, { [_hQ]: _cA }], [0, { [_hQ]: _rT }], [0, { [_hQ]: _dVA }], [0, { [_hQ]: _aI }], [4, { [_hQ]: _cBo }], [4, { [_hQ]: _cAo }], [0, { [_hQ]: _pJI }], [0, { [_hQ]: _mC }], [0, { [_hQ]: _sRPA }]]
|
|
1843
|
-
];
|
|
1844
|
-
var ListCopyJobsOutput$ = [3, n0, _LCJO,
|
|
1845
|
-
0,
|
|
1846
|
-
[_CJo, _NT],
|
|
1847
|
-
[() => CopyJobsList, 0]
|
|
1848
|
-
];
|
|
1849
|
-
var ListCopyJobSummariesInput$ = [3, n0, _LCJSI,
|
|
1850
|
-
0,
|
|
1851
|
-
[_AI, _S, _RT, _MC, _AP, _MR, _NT],
|
|
1852
|
-
[[0, { [_hQ]: _AI }], [0, { [_hQ]: _S }], [0, { [_hQ]: _RT }], [0, { [_hQ]: _MC }], [0, { [_hQ]: _AP }], [1, { [_hQ]: _MR }], [0, { [_hQ]: _NT }]]
|
|
1853
|
-
];
|
|
1854
|
-
var ListCopyJobSummariesOutput$ = [3, n0, _LCJSO,
|
|
1855
|
-
0,
|
|
1856
|
-
[_CJSo, _AP, _NT],
|
|
1857
|
-
[() => CopyJobSummaryList, 0, 0]
|
|
1858
|
-
];
|
|
1859
|
-
var ListFrameworksInput$ = [3, n0, _LFI,
|
|
1860
|
-
0,
|
|
1861
|
-
[_MR, _NT],
|
|
1862
|
-
[[1, { [_hQ]: _MR }], [0, { [_hQ]: _NT }]]
|
|
1863
|
-
];
|
|
1864
|
-
var ListFrameworksOutput$ = [3, n0, _LFO,
|
|
1865
|
-
0,
|
|
1866
|
-
[_Fra, _NT],
|
|
1867
|
-
[() => FrameworkList, 0]
|
|
1868
|
-
];
|
|
1869
|
-
var ListIndexedRecoveryPointsInput$ = [3, n0, _LIRPI,
|
|
1870
|
-
0,
|
|
1871
|
-
[_NT, _MR, _SRA, _CBr, _CAr, _RT, _IS],
|
|
1872
|
-
[[0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }], [0, { [_hQ]: _sRA }], [4, { [_hQ]: _cB }], [4, { [_hQ]: _cA }], [0, { [_hQ]: _rT }], [0, { [_hQ]: _iS }]]
|
|
1873
|
-
];
|
|
1874
|
-
var ListIndexedRecoveryPointsOutput$ = [3, n0, _LIRPO,
|
|
1875
|
-
0,
|
|
1876
|
-
[_IRPn, _NT],
|
|
1877
|
-
[() => IndexedRecoveryPointList, 0]
|
|
1878
|
-
];
|
|
1879
|
-
var ListLegalHoldsInput$ = [3, n0, _LLHI,
|
|
1880
|
-
0,
|
|
1881
|
-
[_NT, _MR],
|
|
1882
|
-
[[0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]]
|
|
1883
|
-
];
|
|
1884
|
-
var ListLegalHoldsOutput$ = [3, n0, _LLHO,
|
|
1885
|
-
0,
|
|
1886
|
-
[_NT, _LHe],
|
|
1887
|
-
[0, () => LegalHoldsList]
|
|
1888
|
-
];
|
|
1889
|
-
var ListProtectedResourcesByBackupVaultInput$ = [3, n0, _LPRBBVI,
|
|
1890
|
-
0,
|
|
1891
|
-
[_BVN, _BVAI, _NT, _MR],
|
|
1892
|
-
[[0, 1], [0, { [_hQ]: _bVAI }], [0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]], 1
|
|
1893
|
-
];
|
|
1894
|
-
var ListProtectedResourcesByBackupVaultOutput$ = [3, n0, _LPRBBVO,
|
|
1895
|
-
0,
|
|
1896
|
-
[_Res, _NT],
|
|
1897
|
-
[() => ProtectedResourcesList, 0]
|
|
1898
|
-
];
|
|
1899
|
-
var ListProtectedResourcesInput$ = [3, n0, _LPRI,
|
|
1900
|
-
0,
|
|
1901
|
-
[_NT, _MR],
|
|
1902
|
-
[[0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]]
|
|
1903
|
-
];
|
|
1904
|
-
var ListProtectedResourcesOutput$ = [3, n0, _LPRO,
|
|
1905
|
-
0,
|
|
1906
|
-
[_Res, _NT],
|
|
1907
|
-
[() => ProtectedResourcesList, 0]
|
|
1908
|
-
];
|
|
1909
|
-
var ListRecoveryPointsByBackupVaultInput$ = [3, n0, _LRPBBVI,
|
|
1910
|
-
0,
|
|
1911
|
-
[_BVN, _BVAI, _NT, _MR, _BRA, _BRT, _BBPI, _BCB, _BCA, _BPRPA],
|
|
1912
|
-
[[0, 1], [0, { [_hQ]: _bVAI }], [0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }], [0, { [_hQ]: _rA }], [0, { [_hQ]: _rT }], [0, { [_hQ]: _bPI }], [4, { [_hQ]: _cB }], [4, { [_hQ]: _cA }], [0, { [_hQ]: _pRPA }]], 1
|
|
1913
|
-
];
|
|
1914
|
-
var ListRecoveryPointsByBackupVaultOutput$ = [3, n0, _LRPBBVO,
|
|
1915
|
-
0,
|
|
1916
|
-
[_NT, _RPe],
|
|
1917
|
-
[0, () => RecoveryPointByBackupVaultList]
|
|
1918
|
-
];
|
|
1919
|
-
var ListRecoveryPointsByLegalHoldInput$ = [3, n0, _LRPBLHI,
|
|
1920
|
-
0,
|
|
1921
|
-
[_LHI, _NT, _MR],
|
|
1922
|
-
[[0, 1], [0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]], 1
|
|
1923
|
-
];
|
|
1924
|
-
var ListRecoveryPointsByLegalHoldOutput$ = [3, n0, _LRPBLHO,
|
|
1925
|
-
0,
|
|
1926
|
-
[_RPe, _NT],
|
|
1927
|
-
[() => RecoveryPointsList, 0]
|
|
1928
|
-
];
|
|
1929
|
-
var ListRecoveryPointsByResourceInput$ = [3, n0, _LRPBRI,
|
|
1930
|
-
0,
|
|
1931
|
-
[_RA, _NT, _MR, _MBAWSBO],
|
|
1932
|
-
[[0, 1], [0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }], [2, { [_hQ]: _mBAWSBO }]], 1
|
|
1933
|
-
];
|
|
1934
|
-
var ListRecoveryPointsByResourceOutput$ = [3, n0, _LRPBRO,
|
|
1935
|
-
0,
|
|
1936
|
-
[_NT, _RPe],
|
|
1937
|
-
[0, () => RecoveryPointByResourceList]
|
|
1938
|
-
];
|
|
1939
|
-
var ListReportJobsInput$ = [3, n0, _LRJI,
|
|
1940
|
-
0,
|
|
1941
|
-
[_BRPN, _BCByr, _BCAyr, _BSyt, _MR, _NT],
|
|
1942
|
-
[[0, { [_hQ]: _RPN }], [4, { [_hQ]: _CBre }], [4, { [_hQ]: _CAre }], [0, { [_hQ]: _St }], [1, { [_hQ]: _MR }], [0, { [_hQ]: _NT }]]
|
|
1943
|
-
];
|
|
1944
|
-
var ListReportJobsOutput$ = [3, n0, _LRJO,
|
|
1945
|
-
0,
|
|
1946
|
-
[_RJe, _NT],
|
|
1947
|
-
[() => ReportJobList, 0]
|
|
1948
|
-
];
|
|
1949
|
-
var ListReportPlansInput$ = [3, n0, _LRPI,
|
|
1950
|
-
0,
|
|
1951
|
-
[_MR, _NT],
|
|
1952
|
-
[[1, { [_hQ]: _MR }], [0, { [_hQ]: _NT }]]
|
|
1953
|
-
];
|
|
1954
|
-
var ListReportPlansOutput$ = [3, n0, _LRPO,
|
|
1955
|
-
0,
|
|
1956
|
-
[_RPep, _NT],
|
|
1957
|
-
[() => ReportPlanList, 0]
|
|
1958
|
-
];
|
|
1959
|
-
var ListRestoreAccessBackupVaultsInput$ = [3, n0, _LRABVI,
|
|
1960
|
-
0,
|
|
1961
|
-
[_BVN, _NT, _MR],
|
|
1962
|
-
[[0, 1], [0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]], 1
|
|
1963
|
-
];
|
|
1964
|
-
var ListRestoreAccessBackupVaultsOutput$ = [3, n0, _LRABVO,
|
|
1965
|
-
0,
|
|
1966
|
-
[_NT, _RABV],
|
|
1967
|
-
[0, () => RestoreAccessBackupVaultList]
|
|
1968
|
-
];
|
|
1969
|
-
var ListRestoreJobsByProtectedResourceInput$ = [3, n0, _LRJBPRI,
|
|
1970
|
-
0,
|
|
1971
|
-
[_RA, _BSyt, _BRPCDA, _BRPCDB, _NT, _MR],
|
|
1972
|
-
[[0, 1], [0, { [_hQ]: _sta }], [4, { [_hQ]: _rPCDA }], [4, { [_hQ]: _rPCDB }], [0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]], 1
|
|
1973
|
-
];
|
|
1974
|
-
var ListRestoreJobsByProtectedResourceOutput$ = [3, n0, _LRJBPRO,
|
|
1975
|
-
0,
|
|
1976
|
-
[_RJes, _NT],
|
|
1977
|
-
[() => RestoreJobsList, 0]
|
|
1978
|
-
];
|
|
1979
|
-
var ListRestoreJobsInput$ = [3, n0, _LRJIi,
|
|
1980
|
-
0,
|
|
1981
|
-
[_NT, _MR, _BAI, _BRT, _BCB, _BCA, _BSyt, _BCBy, _BCAy, _BRTPA, _BPJI],
|
|
1982
|
-
[[0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }], [0, { [_hQ]: _aI }], [0, { [_hQ]: _rT }], [4, { [_hQ]: _cB }], [4, { [_hQ]: _cA }], [0, { [_hQ]: _sta }], [4, { [_hQ]: _cBo }], [4, { [_hQ]: _cAo }], [0, { [_hQ]: _rTPA }], [0, { [_hQ]: _pJI }]]
|
|
1983
|
-
];
|
|
1984
|
-
var ListRestoreJobsOutput$ = [3, n0, _LRJOi,
|
|
1985
|
-
0,
|
|
1986
|
-
[_RJes, _NT],
|
|
1987
|
-
[() => RestoreJobsList, 0]
|
|
1988
|
-
];
|
|
1989
|
-
var ListRestoreJobSummariesInput$ = [3, n0, _LRJSI,
|
|
1990
|
-
0,
|
|
1991
|
-
[_AI, _S, _RT, _AP, _MR, _NT],
|
|
1992
|
-
[[0, { [_hQ]: _AI }], [0, { [_hQ]: _S }], [0, { [_hQ]: _RT }], [0, { [_hQ]: _AP }], [1, { [_hQ]: _MR }], [0, { [_hQ]: _NT }]]
|
|
1993
|
-
];
|
|
1994
|
-
var ListRestoreJobSummariesOutput$ = [3, n0, _LRJSO,
|
|
1995
|
-
0,
|
|
1996
|
-
[_RJS, _AP, _NT],
|
|
1997
|
-
[() => RestoreJobSummaryList, 0, 0]
|
|
1998
|
-
];
|
|
1999
|
-
var ListRestoreTestingPlansInput$ = [3, n0, _LRTPI,
|
|
2000
|
-
0,
|
|
2001
|
-
[_MR, _NT],
|
|
2002
|
-
[[1, { [_hQ]: _MR }], [0, { [_hQ]: _NT }]]
|
|
2003
|
-
];
|
|
2004
|
-
var ListRestoreTestingPlansOutput$ = [3, n0, _LRTPO,
|
|
2005
|
-
0,
|
|
2006
|
-
[_RTPe, _NT],
|
|
2007
|
-
[() => RestoreTestingPlans, 0], 1
|
|
2008
|
-
];
|
|
2009
|
-
var ListRestoreTestingSelectionsInput$ = [3, n0, _LRTSI,
|
|
2010
|
-
0,
|
|
2011
|
-
[_RTPN, _MR, _NT],
|
|
2012
|
-
[[0, 1], [1, { [_hQ]: _MR }], [0, { [_hQ]: _NT }]], 1
|
|
2013
|
-
];
|
|
2014
|
-
var ListRestoreTestingSelectionsOutput$ = [3, n0, _LRTSO,
|
|
2015
|
-
0,
|
|
2016
|
-
[_RTSe, _NT],
|
|
2017
|
-
[() => RestoreTestingSelections, 0], 1
|
|
2018
|
-
];
|
|
2019
|
-
var ListScanJobsInput$ = [3, n0, _LSJI,
|
|
2020
|
-
0,
|
|
2021
|
-
[_BAI, _BBVN, _BCAy, _BCBy, _BMS, _BRPA, _BRA, _BRT, _BSRS, _BSy, _MR, _NT],
|
|
2022
|
-
[[0, { [_hQ]: _BAI }], [0, { [_hQ]: _BBVN }], [4, { [_hQ]: _BCAy }], [4, { [_hQ]: _BCBy }], [0, { [_hQ]: _BMS }], [0, { [_hQ]: _BRPA }], [0, { [_hQ]: _BRA }], [0, { [_hQ]: _BRT }], [0, { [_hQ]: _BSRS }], [0, { [_hQ]: _BSy }], [1, { [_hQ]: _MR }], [0, { [_hQ]: _NT }]]
|
|
2023
|
-
];
|
|
2024
|
-
var ListScanJobsOutput$ = [3, n0, _LSJO,
|
|
2025
|
-
0,
|
|
2026
|
-
[_SJ, _NT],
|
|
2027
|
-
[() => ScanJobs, 0], 1
|
|
2028
|
-
];
|
|
2029
|
-
var ListScanJobSummariesInput$ = [3, n0, _LSJSI,
|
|
2030
|
-
0,
|
|
2031
|
-
[_AI, _RT, _MS, _SRS, _S, _AP, _MR, _NT],
|
|
2032
|
-
[[0, { [_hQ]: _AI }], [0, { [_hQ]: _RT }], [0, { [_hQ]: _MS }], [0, { [_hQ]: _SRS }], [0, { [_hQ]: _S }], [0, { [_hQ]: _AP }], [1, { [_hQ]: _MR }], [0, { [_hQ]: _NT }]]
|
|
2033
|
-
];
|
|
2034
|
-
var ListScanJobSummariesOutput$ = [3, n0, _LSJSO,
|
|
2035
|
-
0,
|
|
2036
|
-
[_SJS, _AP, _NT],
|
|
2037
|
-
[() => ScanJobSummaryList, 0, 0]
|
|
2038
|
-
];
|
|
2039
|
-
var ListTagsInput$ = [3, n0, _LTI,
|
|
2040
|
-
0,
|
|
2041
|
-
[_RA, _NT, _MR],
|
|
2042
|
-
[[0, 1], [0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]], 1
|
|
2043
|
-
];
|
|
2044
|
-
var ListTagsOutput$ = [3, n0, _LTO,
|
|
2045
|
-
0,
|
|
2046
|
-
[_NT, _Ta],
|
|
2047
|
-
[0, [() => Tags, 0]]
|
|
2048
|
-
];
|
|
2049
|
-
var ListTieringConfigurationsInput$ = [3, n0, _LTCI,
|
|
2050
|
-
0,
|
|
2051
|
-
[_MR, _NT],
|
|
2052
|
-
[[1, { [_hQ]: _mR }], [0, { [_hQ]: _nT }]]
|
|
2053
|
-
];
|
|
2054
|
-
var ListTieringConfigurationsOutput$ = [3, n0, _LTCO,
|
|
2055
|
-
0,
|
|
2056
|
-
[_TCi, _NT],
|
|
2057
|
-
[() => TieringConfigurationsList, 0]
|
|
2058
|
-
];
|
|
2059
|
-
var MissingParameterValueException$ = [-3, n0, _MPVE,
|
|
2060
|
-
{ [_e]: _c },
|
|
2061
|
-
[_C, _M, _T, _Co],
|
|
2062
|
-
[0, 0, 0, 0]
|
|
2063
|
-
];
|
|
2064
|
-
schema.TypeRegistry.for(n0).registerError(MissingParameterValueException$, MissingParameterValueException);
|
|
2065
|
-
var ProtectedResource$ = [3, n0, _PR,
|
|
2066
|
-
0,
|
|
2067
|
-
[_RA, _RT, _LBT, _RN, _LBVA, _LRPA],
|
|
2068
|
-
[0, 0, 4, 0, 0, 0]
|
|
2069
|
-
];
|
|
2070
|
-
var ProtectedResourceConditions$ = [3, n0, _PRC,
|
|
2071
|
-
0,
|
|
2072
|
-
[_SEt, _SNE],
|
|
2073
|
-
[() => KeyValueList, () => KeyValueList]
|
|
2074
|
-
];
|
|
2075
|
-
var PutBackupVaultAccessPolicyInput$ = [3, n0, _PBVAPI,
|
|
2076
|
-
0,
|
|
2077
|
-
[_BVN, _P],
|
|
2078
|
-
[[0, 1], 0], 1
|
|
2079
|
-
];
|
|
2080
|
-
var PutBackupVaultLockConfigurationInput$ = [3, n0, _PBVLCI,
|
|
2081
|
-
0,
|
|
2082
|
-
[_BVN, _MRD, _MRDa, _CFD],
|
|
2083
|
-
[[0, 1], 1, 1, 1], 1
|
|
2084
|
-
];
|
|
2085
|
-
var PutBackupVaultNotificationsInput$ = [3, n0, _PBVNI,
|
|
2086
|
-
0,
|
|
2087
|
-
[_BVN, _SNSTA, _BVE],
|
|
2088
|
-
[[0, 1], 0, 64 | 0], 3
|
|
2089
|
-
];
|
|
2090
|
-
var PutRestoreValidationResultInput$ = [3, n0, _PRVRI,
|
|
2091
|
-
0,
|
|
2092
|
-
[_RJIe, _VSa, _VSM],
|
|
2093
|
-
[[0, 1], 0, 0], 2
|
|
2094
|
-
];
|
|
2095
|
-
var RecoveryPointByBackupVault$ = [3, n0, _RPBBV,
|
|
2096
|
-
0,
|
|
2097
|
-
[_RPA, _BVN, _BVA, _SBVA, _RA, _RT, _CB, _IRA, _St, _SM, _CD, _ID, _CDo, _BSIB, _CL, _L, _EKA, _IE, _LRT, _PRPA, _CMI, _IP, _RN, _VT, _IS, _ISM, _EKT, _ASR],
|
|
2098
|
-
[0, 0, 0, 0, 0, 0, () => RecoveryPointCreator$, 0, 0, 0, 4, 4, 4, 1, () => CalculatedLifecycle$, () => Lifecycle$, 0, 2, 4, 0, 0, 2, 0, 0, 0, 0, 0, () => AggregatedScanResult$]
|
|
2099
|
-
];
|
|
2100
|
-
var RecoveryPointByResource$ = [3, n0, _RPBR,
|
|
2101
|
-
0,
|
|
2102
|
-
[_RPA, _CD, _St, _SM, _EKA, _BSB, _BVN, _IP, _PRPA, _RN, _VT, _IS, _ISM, _EKT, _ASR],
|
|
2103
|
-
[0, 4, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, () => AggregatedScanResult$]
|
|
2104
|
-
];
|
|
2105
|
-
var RecoveryPointCreator$ = [3, n0, _RPC,
|
|
2106
|
-
0,
|
|
2107
|
-
[_BPIa, _BPA, _BPN, _BPV, _BRIa, _BRN, _BRC, _BRTa],
|
|
2108
|
-
[0, 0, 0, 0, 0, 0, 0, 0]
|
|
2109
|
-
];
|
|
2110
|
-
var RecoveryPointMember$ = [3, n0, _RPM,
|
|
2111
|
-
0,
|
|
2112
|
-
[_RPA, _RA, _RT, _BVN],
|
|
2113
|
-
[0, 0, 0, 0]
|
|
2114
|
-
];
|
|
2115
|
-
var RecoveryPointSelection$ = [3, n0, _RPS,
|
|
2116
|
-
0,
|
|
2117
|
-
[_VN, _RIe, _DR],
|
|
2118
|
-
[64 | 0, 64 | 0, () => DateRange$]
|
|
2119
|
-
];
|
|
2120
|
-
var ReportDeliveryChannel$ = [3, n0, _RDC,
|
|
2121
|
-
0,
|
|
2122
|
-
[_SBN, _SKP, _Fo],
|
|
2123
|
-
[0, 0, 64 | 0], 1
|
|
2124
|
-
];
|
|
2125
|
-
var ReportDestination$ = [3, n0, _RD,
|
|
2126
|
-
0,
|
|
2127
|
-
[_SBN, _SK],
|
|
2128
|
-
[0, 64 | 0]
|
|
2129
|
-
];
|
|
2130
|
-
var ReportJob$ = [3, n0, _RJ,
|
|
2131
|
-
0,
|
|
2132
|
-
[_RJI, _RPAe, _RTep, _CTr, _CTo, _St, _SM, _RD],
|
|
2133
|
-
[0, 0, 0, 4, 4, 0, 0, () => ReportDestination$]
|
|
2134
|
-
];
|
|
2135
|
-
var ReportPlan$ = [3, n0, _RP,
|
|
2136
|
-
0,
|
|
2137
|
-
[_RPAe, _RPN, _RPD, _RS, _RDC, _DS, _CTr, _LAET, _LSET],
|
|
2138
|
-
[0, 0, 0, () => ReportSetting$, () => ReportDeliveryChannel$, 0, 4, 4, 4]
|
|
2139
|
-
];
|
|
2140
|
-
var ReportSetting$ = [3, n0, _RS,
|
|
2141
|
-
0,
|
|
2142
|
-
[_RTep, _FAr, _NOF, _Ac, _OU, _Reg],
|
|
2143
|
-
[0, 64 | 0, 1, 64 | 0, 64 | 0, 64 | 0], 1
|
|
2144
|
-
];
|
|
2145
|
-
var ResourceNotFoundException$ = [-3, n0, _RNFE,
|
|
2146
|
-
{ [_e]: _c },
|
|
2147
|
-
[_C, _M, _T, _Co],
|
|
2148
|
-
[0, 0, 0, 0]
|
|
2149
|
-
];
|
|
2150
|
-
schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException$, ResourceNotFoundException);
|
|
2151
|
-
var ResourceSelection$ = [3, n0, _RSe,
|
|
2152
|
-
0,
|
|
2153
|
-
[_Re, _TDSID, _RT],
|
|
2154
|
-
[64 | 0, 1, 0], 3
|
|
2155
|
-
];
|
|
2156
|
-
var RestoreAccessBackupVaultListMember$ = [3, n0, _RABVLM,
|
|
2157
|
-
0,
|
|
2158
|
-
[_RABVA, _CD, _AD, _VS, _LRR],
|
|
2159
|
-
[0, 4, 4, 0, () => LatestRevokeRequest$]
|
|
2160
|
-
];
|
|
2161
|
-
var RestoreJobCreator$ = [3, n0, _RJC,
|
|
2162
|
-
0,
|
|
2163
|
-
[_RTPA],
|
|
2164
|
-
[0]
|
|
2165
|
-
];
|
|
2166
|
-
var RestoreJobsListMember$ = [3, n0, _RJLM,
|
|
2167
|
-
0,
|
|
2168
|
-
[_AI, _RJIe, _RPA, _SRA, _BVA, _CD, _CDo, _St, _SM, _PD, _BSIB, _IRA, _ECTM, _CRA, _RT, _RPCD, _IP, _PJI, _CB, _VSa, _VSM, _DSe, _DSM],
|
|
2169
|
-
[0, 0, 0, 0, 0, 4, 4, 0, 0, 0, 1, 0, 1, 0, 0, 4, 2, 0, () => RestoreJobCreator$, 0, 0, 0, 0]
|
|
2170
|
-
];
|
|
2171
|
-
var RestoreJobSummary$ = [3, n0, _RJSe,
|
|
2172
|
-
0,
|
|
2173
|
-
[_R, _AI, _S, _RT, _Cou, _ST, _ET],
|
|
2174
|
-
[0, 0, 0, 0, 1, 4, 4]
|
|
2175
|
-
];
|
|
2176
|
-
var RestoreTestingPlanForCreate$ = [3, n0, _RTPFC,
|
|
2177
|
-
0,
|
|
2178
|
-
[_RPS, _RTPN, _SE, _SET, _SWH],
|
|
2179
|
-
[() => RestoreTestingRecoveryPointSelection$, 0, 0, 0, 1], 3
|
|
2180
|
-
];
|
|
2181
|
-
var RestoreTestingPlanForGet$ = [3, n0, _RTPFG,
|
|
2182
|
-
0,
|
|
2183
|
-
[_CTr, _RPS, _RTPA, _RTPN, _SE, _CRI, _LET, _LUT, _SET, _SWH],
|
|
2184
|
-
[4, () => RestoreTestingRecoveryPointSelection$, 0, 0, 0, 0, 4, 4, 0, 1], 5
|
|
2185
|
-
];
|
|
2186
|
-
var RestoreTestingPlanForList$ = [3, n0, _RTPFL,
|
|
2187
|
-
0,
|
|
2188
|
-
[_CTr, _RTPA, _RTPN, _SE, _LET, _LUT, _SET, _SWH],
|
|
2189
|
-
[4, 0, 0, 0, 4, 4, 0, 1], 4
|
|
2190
|
-
];
|
|
2191
|
-
var RestoreTestingPlanForUpdate$ = [3, n0, _RTPFU,
|
|
2192
|
-
0,
|
|
2193
|
-
[_RPS, _SE, _SET, _SWH],
|
|
2194
|
-
[() => RestoreTestingRecoveryPointSelection$, 0, 0, 1]
|
|
2195
|
-
];
|
|
2196
|
-
var RestoreTestingRecoveryPointSelection$ = [3, n0, _RTRPS,
|
|
2197
|
-
0,
|
|
2198
|
-
[_Al, _EV, _IV, _RPTec, _SWD],
|
|
2199
|
-
[0, 64 | 0, 64 | 0, 64 | 0, 1]
|
|
2200
|
-
];
|
|
2201
|
-
var RestoreTestingSelectionForCreate$ = [3, n0, _RTSFC,
|
|
2202
|
-
0,
|
|
2203
|
-
[_IRA, _PRT, _RTSN, _PRA, _PRC, _RMO, _VWH],
|
|
2204
|
-
[0, 0, 0, 64 | 0, () => ProtectedResourceConditions$, [() => SensitiveStringMap, 0], 1], 3
|
|
2205
|
-
];
|
|
2206
|
-
var RestoreTestingSelectionForGet$ = [3, n0, _RTSFG,
|
|
2207
|
-
0,
|
|
2208
|
-
[_CTr, _IRA, _PRT, _RTPN, _RTSN, _CRI, _PRA, _PRC, _RMO, _VWH],
|
|
2209
|
-
[4, 0, 0, 0, 0, 0, 64 | 0, () => ProtectedResourceConditions$, [() => SensitiveStringMap, 0], 1], 5
|
|
2210
|
-
];
|
|
2211
|
-
var RestoreTestingSelectionForList$ = [3, n0, _RTSFL,
|
|
2212
|
-
0,
|
|
2213
|
-
[_CTr, _IRA, _PRT, _RTPN, _RTSN, _VWH],
|
|
2214
|
-
[4, 0, 0, 0, 0, 1], 5
|
|
2215
|
-
];
|
|
2216
|
-
var RestoreTestingSelectionForUpdate$ = [3, n0, _RTSFU,
|
|
2217
|
-
0,
|
|
2218
|
-
[_IRA, _PRA, _PRC, _RMO, _VWH],
|
|
2219
|
-
[0, 64 | 0, () => ProtectedResourceConditions$, [() => SensitiveStringMap, 0], 1]
|
|
2220
|
-
];
|
|
2221
|
-
var RevokeRestoreAccessBackupVaultInput$ = [3, n0, _RRABVI,
|
|
2222
|
-
0,
|
|
2223
|
-
[_BVN, _RABVA, _RC],
|
|
2224
|
-
[[0, 1], [0, 1], [() => RequesterComment, { [_hQ]: _rC }]], 2
|
|
2225
|
-
];
|
|
2226
|
-
var ScanAction$ = [3, n0, _SAc,
|
|
2227
|
-
0,
|
|
2228
|
-
[_MS, _SMc],
|
|
2229
|
-
[0, 0]
|
|
2230
|
-
];
|
|
2231
|
-
var ScanJob$ = [3, n0, _SJc,
|
|
2232
|
-
0,
|
|
2233
|
-
[_AI, _BVA, _BVN, _CB, _CD, _IRA, _MS, _RPA, _RA, _RN, _RT, _SJI, _SMc, _SRAc, _CDo, _SBRPA, _SIc, _SRc, _S, _SM],
|
|
2234
|
-
[0, 0, 0, () => ScanJobCreator$, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, () => ScanResultInfo$, 0, 0], 14
|
|
2235
|
-
];
|
|
2236
|
-
var ScanJobCreator$ = [3, n0, _SJC,
|
|
2237
|
-
0,
|
|
2238
|
-
[_BPA, _BPIa, _BPV, _BRIa],
|
|
2239
|
-
[0, 0, 0, 0], 4
|
|
2240
|
-
];
|
|
2241
|
-
var ScanJobSummary$ = [3, n0, _SJSc,
|
|
2242
|
-
0,
|
|
2243
|
-
[_R, _AI, _S, _RT, _Cou, _ST, _ET, _MS, _SRS],
|
|
2244
|
-
[0, 0, 0, 0, 1, 4, 4, 0, 0]
|
|
2245
|
-
];
|
|
2246
|
-
var ScanResult$ = [3, n0, _SRc,
|
|
2247
|
-
0,
|
|
2248
|
-
[_MS, _SJSca, _LST, _F],
|
|
2249
|
-
[0, 0, 4, 64 | 0]
|
|
2250
|
-
];
|
|
2251
|
-
var ScanResultInfo$ = [3, n0, _SRI,
|
|
2252
|
-
0,
|
|
2253
|
-
[_SRS],
|
|
2254
|
-
[0], 1
|
|
2255
|
-
];
|
|
2256
|
-
var ScanSetting$ = [3, n0, _SSc,
|
|
2257
|
-
0,
|
|
2258
|
-
[_MS, _RTe, _SRAc],
|
|
2259
|
-
[0, 64 | 0, 0]
|
|
2260
|
-
];
|
|
2261
|
-
var ScheduledPlanExecutionMember$ = [3, n0, _SPEM,
|
|
2262
|
-
0,
|
|
2263
|
-
[_ETx, _RI, _RET],
|
|
2264
|
-
[4, 0, 0]
|
|
2265
|
-
];
|
|
2266
|
-
var ServiceUnavailableException$ = [-3, n0, _SUE,
|
|
2267
|
-
{ [_e]: _s },
|
|
2268
|
-
[_C, _M, _T, _Co],
|
|
2269
|
-
[0, 0, 0, 0]
|
|
2270
|
-
];
|
|
2271
|
-
schema.TypeRegistry.for(n0).registerError(ServiceUnavailableException$, ServiceUnavailableException);
|
|
2272
|
-
var StartBackupJobInput$ = [3, n0, _SBJI,
|
|
2273
|
-
0,
|
|
2274
|
-
[_BVN, _RA, _IRA, _LAGBVA, _IT, _SWM, _CWMo, _L, _RPT, _BO, _I],
|
|
2275
|
-
[0, 0, 0, 0, [0, 4], 1, 1, () => Lifecycle$, [() => Tags, 0], 128 | 0, 0], 3
|
|
2276
|
-
];
|
|
2277
|
-
var StartBackupJobOutput$ = [3, n0, _SBJO,
|
|
2278
|
-
0,
|
|
2279
|
-
[_BJI, _RPA, _CD, _IP],
|
|
2280
|
-
[0, 0, 4, 2]
|
|
2281
|
-
];
|
|
2282
|
-
var StartCopyJobInput$ = [3, n0, _SCJI,
|
|
2283
|
-
0,
|
|
2284
|
-
[_RPA, _SBVN, _DBVA, _IRA, _IT, _L],
|
|
2285
|
-
[0, 0, 0, 0, [0, 4], () => Lifecycle$], 4
|
|
2286
|
-
];
|
|
2287
|
-
var StartCopyJobOutput$ = [3, n0, _SCJO,
|
|
2288
|
-
0,
|
|
2289
|
-
[_CJI, _CD, _IP],
|
|
2290
|
-
[0, 4, 2]
|
|
2291
|
-
];
|
|
2292
|
-
var StartReportJobInput$ = [3, n0, _SRJI,
|
|
2293
|
-
0,
|
|
2294
|
-
[_RPN, _IT],
|
|
2295
|
-
[[0, 1], [0, 4]], 1
|
|
2296
|
-
];
|
|
2297
|
-
var StartReportJobOutput$ = [3, n0, _SRJO,
|
|
2298
|
-
0,
|
|
2299
|
-
[_RJI],
|
|
2300
|
-
[0]
|
|
2301
|
-
];
|
|
2302
|
-
var StartRestoreJobInput$ = [3, n0, _SRJIt,
|
|
2303
|
-
0,
|
|
2304
|
-
[_RPA, _Me, _IRA, _IT, _RT, _CSTTRR],
|
|
2305
|
-
[0, [() => Metadata, 0], 0, [0, 4], 0, 2], 2
|
|
2306
|
-
];
|
|
2307
|
-
var StartRestoreJobOutput$ = [3, n0, _SRJOt,
|
|
2308
|
-
0,
|
|
2309
|
-
[_RJIe],
|
|
2310
|
-
[0]
|
|
2311
|
-
];
|
|
2312
|
-
var StartScanJobInput$ = [3, n0, _SSJI,
|
|
2313
|
-
0,
|
|
2314
|
-
[_BVN, _IRA, _MS, _RPA, _SMc, _SRAc, _IT, _SBRPA],
|
|
2315
|
-
[0, 0, 0, 0, 0, 0, 0, 0], 6
|
|
2316
|
-
];
|
|
2317
|
-
var StartScanJobOutput$ = [3, n0, _SSJO,
|
|
2318
|
-
0,
|
|
2319
|
-
[_CD, _SJI],
|
|
2320
|
-
[4, 0], 2
|
|
2321
|
-
];
|
|
2322
|
-
var StopBackupJobInput$ = [3, n0, _SBJIt,
|
|
2323
|
-
0,
|
|
2324
|
-
[_BJI],
|
|
2325
|
-
[[0, 1]], 1
|
|
2326
|
-
];
|
|
2327
|
-
var TagResourceInput$ = [3, n0, _TRI,
|
|
2328
|
-
0,
|
|
2329
|
-
[_RA, _Ta],
|
|
2330
|
-
[[0, 1], [() => Tags, 0]], 2
|
|
2331
|
-
];
|
|
2332
|
-
var TieringConfiguration$ = [3, n0, _TC,
|
|
2333
|
-
0,
|
|
2334
|
-
[_TCN, _BVN, _RSe, _TCA, _CRI, _CTr, _LUTa],
|
|
2335
|
-
[0, 0, () => ResourceSelections, 0, 0, 4, 4], 3
|
|
2336
|
-
];
|
|
2337
|
-
var TieringConfigurationInputForCreate$ = [3, n0, _TCIFC,
|
|
2338
|
-
0,
|
|
2339
|
-
[_TCN, _BVN, _RSe],
|
|
2340
|
-
[0, 0, () => ResourceSelections], 3
|
|
2341
|
-
];
|
|
2342
|
-
var TieringConfigurationInputForUpdate$ = [3, n0, _TCIFU,
|
|
2343
|
-
0,
|
|
2344
|
-
[_RSe, _BVN],
|
|
2345
|
-
[() => ResourceSelections, 0], 2
|
|
2346
|
-
];
|
|
2347
|
-
var TieringConfigurationsListMember$ = [3, n0, _TCLM,
|
|
2348
|
-
0,
|
|
2349
|
-
[_TCA, _TCN, _BVN, _CTr, _LUTa],
|
|
2350
|
-
[0, 0, 0, 4, 4]
|
|
2351
|
-
];
|
|
2352
|
-
var UntagResourceInput$ = [3, n0, _URI,
|
|
2353
|
-
0,
|
|
2354
|
-
[_RA, _TKL],
|
|
2355
|
-
[[0, 1], [() => TagKeyList, 0]], 2
|
|
2356
|
-
];
|
|
2357
|
-
var UpdateBackupPlanInput$ = [3, n0, _UBPI,
|
|
2358
|
-
0,
|
|
2359
|
-
[_BPIa, _BP],
|
|
2360
|
-
[[0, 1], [() => BackupPlanInput$, 0]], 2
|
|
2361
|
-
];
|
|
2362
|
-
var UpdateBackupPlanOutput$ = [3, n0, _UBPO,
|
|
2363
|
-
0,
|
|
2364
|
-
[_BPIa, _BPA, _CD, _VI, _ABSd, _SS],
|
|
2365
|
-
[0, 0, 4, 0, () => AdvancedBackupSettings, () => ScanSettings]
|
|
2366
|
-
];
|
|
2367
|
-
var UpdateFrameworkInput$ = [3, n0, _UFI,
|
|
2368
|
-
0,
|
|
2369
|
-
[_FN, _FD, _FC, _IT],
|
|
2370
|
-
[[0, 1], 0, () => FrameworkControls, [0, 4]], 1
|
|
2371
|
-
];
|
|
2372
|
-
var UpdateFrameworkOutput$ = [3, n0, _UFO,
|
|
2373
|
-
0,
|
|
2374
|
-
[_FN, _FA, _CTr],
|
|
2375
|
-
[0, 0, 4]
|
|
2376
|
-
];
|
|
2377
|
-
var UpdateGlobalSettingsInput$ = [3, n0, _UGSI,
|
|
2378
|
-
0,
|
|
2379
|
-
[_GS],
|
|
2380
|
-
[128 | 0]
|
|
2381
|
-
];
|
|
2382
|
-
var UpdateRecoveryPointIndexSettingsInput$ = [3, n0, _URPISI,
|
|
2383
|
-
0,
|
|
2384
|
-
[_BVN, _RPA, _I, _IRA],
|
|
2385
|
-
[[0, 1], [0, 1], 0, 0], 3
|
|
2386
|
-
];
|
|
2387
|
-
var UpdateRecoveryPointIndexSettingsOutput$ = [3, n0, _URPISO,
|
|
2388
|
-
0,
|
|
2389
|
-
[_BVN, _RPA, _IS, _I],
|
|
2390
|
-
[0, 0, 0, 0]
|
|
2391
|
-
];
|
|
2392
|
-
var UpdateRecoveryPointLifecycleInput$ = [3, n0, _URPLI,
|
|
2393
|
-
0,
|
|
2394
|
-
[_BVN, _RPA, _L],
|
|
2395
|
-
[[0, 1], [0, 1], () => Lifecycle$], 2
|
|
2396
|
-
];
|
|
2397
|
-
var UpdateRecoveryPointLifecycleOutput$ = [3, n0, _URPLO,
|
|
2398
|
-
0,
|
|
2399
|
-
[_BVA, _RPA, _L, _CL],
|
|
2400
|
-
[0, 0, () => Lifecycle$, () => CalculatedLifecycle$]
|
|
2401
|
-
];
|
|
2402
|
-
var UpdateRegionSettingsInput$ = [3, n0, _URSI,
|
|
2403
|
-
0,
|
|
2404
|
-
[_RTOIP, _RTMP],
|
|
2405
|
-
[128 | 2, 128 | 2]
|
|
2406
|
-
];
|
|
2407
|
-
var UpdateReportPlanInput$ = [3, n0, _URPI,
|
|
2408
|
-
0,
|
|
2409
|
-
[_RPN, _RPD, _RDC, _RS, _IT],
|
|
2410
|
-
[[0, 1], 0, () => ReportDeliveryChannel$, () => ReportSetting$, [0, 4]], 1
|
|
2411
|
-
];
|
|
2412
|
-
var UpdateReportPlanOutput$ = [3, n0, _URPO,
|
|
2413
|
-
0,
|
|
2414
|
-
[_RPN, _RPAe, _CTr],
|
|
2415
|
-
[0, 0, 4]
|
|
2416
|
-
];
|
|
2417
|
-
var UpdateRestoreTestingPlanInput$ = [3, n0, _URTPI,
|
|
2418
|
-
0,
|
|
2419
|
-
[_RTP, _RTPN],
|
|
2420
|
-
[() => RestoreTestingPlanForUpdate$, [0, 1]], 2
|
|
2421
|
-
];
|
|
2422
|
-
var UpdateRestoreTestingPlanOutput$ = [3, n0, _URTPO,
|
|
2423
|
-
0,
|
|
2424
|
-
[_CTr, _RTPA, _RTPN, _UT],
|
|
2425
|
-
[4, 0, 0, 4], 4
|
|
2426
|
-
];
|
|
2427
|
-
var UpdateRestoreTestingSelectionInput$ = [3, n0, _URTSI,
|
|
2428
|
-
0,
|
|
2429
|
-
[_RTPN, _RTS, _RTSN],
|
|
2430
|
-
[[0, 1], [() => RestoreTestingSelectionForUpdate$, 0], [0, 1]], 3
|
|
2431
|
-
];
|
|
2432
|
-
var UpdateRestoreTestingSelectionOutput$ = [3, n0, _URTSO,
|
|
2433
|
-
0,
|
|
2434
|
-
[_CTr, _RTPA, _RTPN, _RTSN, _UT],
|
|
2435
|
-
[4, 0, 0, 0, 4], 5
|
|
2436
|
-
];
|
|
2437
|
-
var UpdateTieringConfigurationInput$ = [3, n0, _UTCI,
|
|
2438
|
-
0,
|
|
2439
|
-
[_TCN, _TC],
|
|
2440
|
-
[[0, 1], () => TieringConfigurationInputForUpdate$], 2
|
|
2441
|
-
];
|
|
2442
|
-
var UpdateTieringConfigurationOutput$ = [3, n0, _UTCO,
|
|
2443
|
-
0,
|
|
2444
|
-
[_TCA, _TCN, _CTr, _LUTa],
|
|
2445
|
-
[0, 0, 4, 4]
|
|
2446
|
-
];
|
|
2447
|
-
var __Unit = "unit";
|
|
2448
|
-
var BackupServiceException$ = [-3, _sm, "BackupServiceException", 0, [], []];
|
|
2449
|
-
schema.TypeRegistry.for(_sm).registerError(BackupServiceException$, BackupServiceException);
|
|
2450
|
-
var AdvancedBackupSettings = [1, n0, _ABSd,
|
|
2451
|
-
0, () => AdvancedBackupSetting$
|
|
2452
|
-
];
|
|
2453
|
-
var BackupJobsList = [1, n0, _BJL,
|
|
2454
|
-
0, () => BackupJob$
|
|
2455
|
-
];
|
|
2456
|
-
var BackupJobSummaryList = [1, n0, _BJSL,
|
|
2457
|
-
0, () => BackupJobSummary$
|
|
2458
|
-
];
|
|
2459
|
-
var BackupPlansList = [1, n0, _BPL,
|
|
2460
|
-
0, () => BackupPlansListMember$
|
|
2461
|
-
];
|
|
2462
|
-
var BackupPlanTemplatesList = [1, n0, _BPTL,
|
|
2463
|
-
0, () => BackupPlanTemplatesListMember$
|
|
2464
|
-
];
|
|
2465
|
-
var BackupPlanVersionsList = [1, n0, _BPVL,
|
|
2466
|
-
0, () => BackupPlansListMember$
|
|
2467
|
-
];
|
|
2468
|
-
var BackupRules = [1, n0, _BRa,
|
|
2469
|
-
0, [() => BackupRule$,
|
|
2470
|
-
0]
|
|
2471
|
-
];
|
|
2472
|
-
var BackupRulesInput = [1, n0, _BRIac,
|
|
2473
|
-
0, [() => BackupRuleInput$,
|
|
2474
|
-
0]
|
|
2475
|
-
];
|
|
2476
|
-
var BackupSelectionsList = [1, n0, _BSL,
|
|
2477
|
-
0, () => BackupSelectionsListMember$
|
|
2478
|
-
];
|
|
2479
|
-
var BackupVaultList = [1, n0, _BVL,
|
|
2480
|
-
0, () => BackupVaultListMember$
|
|
2481
|
-
];
|
|
2482
|
-
var ConditionParameters = [1, n0, _CPo,
|
|
2483
|
-
0, () => ConditionParameter$
|
|
2484
|
-
];
|
|
2485
|
-
var ControlInputParameters = [1, n0, _CIPo,
|
|
2486
|
-
0, () => ControlInputParameter$
|
|
2487
|
-
];
|
|
2488
|
-
var CopyActions = [1, n0, _CA,
|
|
2489
|
-
0, () => CopyAction$
|
|
2490
|
-
];
|
|
2491
|
-
var CopyJobsList = [1, n0, _CJL,
|
|
2492
|
-
0, () => CopyJob$
|
|
2493
|
-
];
|
|
2494
|
-
var CopyJobSummaryList = [1, n0, _CJSL,
|
|
2495
|
-
0, () => CopyJobSummary$
|
|
2496
|
-
];
|
|
2497
|
-
var FrameworkControls = [1, n0, _FC,
|
|
2498
|
-
0, () => FrameworkControl$
|
|
2499
|
-
];
|
|
2500
|
-
var FrameworkList = [1, n0, _FL,
|
|
2501
|
-
0, () => Framework$
|
|
2502
|
-
];
|
|
2503
|
-
var IndexActions = [1, n0, _IA,
|
|
2504
|
-
0, () => IndexAction$
|
|
2505
|
-
];
|
|
2506
|
-
var IndexedRecoveryPointList = [1, n0, _IRPL,
|
|
2507
|
-
0, () => IndexedRecoveryPoint$
|
|
2508
|
-
];
|
|
2509
|
-
var KeyValueList = [1, n0, _KVL,
|
|
2510
|
-
0, () => KeyValue$
|
|
2511
|
-
];
|
|
2512
|
-
var LegalHoldsList = [1, n0, _LHL,
|
|
2513
|
-
0, () => LegalHold$
|
|
2514
|
-
];
|
|
2515
|
-
var ListOfTags = [1, n0, _LOT,
|
|
2516
|
-
0, () => Condition$
|
|
2517
|
-
];
|
|
2518
|
-
var ProtectedResourcesList = [1, n0, _PRL,
|
|
2519
|
-
0, () => ProtectedResource$
|
|
2520
|
-
];
|
|
2521
|
-
var RecoveryPointByBackupVaultList = [1, n0, _RPBBVL,
|
|
2522
|
-
0, () => RecoveryPointByBackupVault$
|
|
2523
|
-
];
|
|
2524
|
-
var RecoveryPointByResourceList = [1, n0, _RPBRL,
|
|
2525
|
-
0, () => RecoveryPointByResource$
|
|
2526
|
-
];
|
|
2527
|
-
var RecoveryPointsList = [1, n0, _RPLe,
|
|
2528
|
-
0, () => RecoveryPointMember$
|
|
2529
|
-
];
|
|
2530
|
-
var ReportJobList = [1, n0, _RJL,
|
|
2531
|
-
0, () => ReportJob$
|
|
2532
|
-
];
|
|
2533
|
-
var ReportPlanList = [1, n0, _RPLep,
|
|
2534
|
-
0, () => ReportPlan$
|
|
2535
|
-
];
|
|
2536
|
-
var ResourceSelections = [1, n0, _RSes,
|
|
2537
|
-
0, () => ResourceSelection$
|
|
2538
|
-
];
|
|
2539
|
-
var RestoreAccessBackupVaultList = [1, n0, _RABVL,
|
|
2540
|
-
0, () => RestoreAccessBackupVaultListMember$
|
|
2541
|
-
];
|
|
2542
|
-
var RestoreJobsList = [1, n0, _RJLe,
|
|
2543
|
-
0, () => RestoreJobsListMember$
|
|
2544
|
-
];
|
|
2545
|
-
var RestoreJobSummaryList = [1, n0, _RJSL,
|
|
2546
|
-
0, () => RestoreJobSummary$
|
|
2547
|
-
];
|
|
2548
|
-
var RestoreTestingPlans = [1, n0, _RTPe,
|
|
2549
|
-
0, () => RestoreTestingPlanForList$
|
|
2550
|
-
];
|
|
2551
|
-
var RestoreTestingSelections = [1, n0, _RTSe,
|
|
2552
|
-
0, () => RestoreTestingSelectionForList$
|
|
2553
|
-
];
|
|
2554
|
-
var ScanActions = [1, n0, _SA,
|
|
2555
|
-
0, () => ScanAction$
|
|
2556
|
-
];
|
|
2557
|
-
var ScanJobs = [1, n0, _SJ,
|
|
2558
|
-
0, () => ScanJob$
|
|
2559
|
-
];
|
|
2560
|
-
var ScanJobSummaryList = [1, n0, _SJSL,
|
|
2561
|
-
0, () => ScanJobSummary$
|
|
2562
|
-
];
|
|
2563
|
-
var ScanResults = [1, n0, _SR,
|
|
2564
|
-
0, () => ScanResult$
|
|
2565
|
-
];
|
|
2566
|
-
var ScanSettings = [1, n0, _SS,
|
|
2567
|
-
0, () => ScanSetting$
|
|
2568
|
-
];
|
|
2569
|
-
var ScheduledRunsPreview = [1, n0, _SRP,
|
|
2570
|
-
0, () => ScheduledPlanExecutionMember$
|
|
2571
|
-
];
|
|
2572
|
-
var TagKeyList = [1, n0, _TKL,
|
|
2573
|
-
8, 0
|
|
2574
|
-
];
|
|
2575
|
-
var TieringConfigurationsList = [1, n0, _TCL,
|
|
2576
|
-
0, () => TieringConfigurationsListMember$
|
|
2577
|
-
];
|
|
2578
|
-
var Metadata = [2, n0, _Me,
|
|
2579
|
-
8, 0, 0
|
|
2580
|
-
];
|
|
2581
|
-
var SensitiveStringMap = [2, n0, _SSM,
|
|
2582
|
-
8, 0, 0
|
|
2583
|
-
];
|
|
2584
|
-
var Tags = [2, n0, _Ta,
|
|
2585
|
-
8, 0, 0
|
|
2586
|
-
];
|
|
2587
|
-
var AssociateBackupVaultMpaApprovalTeam$ = [9, n0, _ABVMAT,
|
|
2588
|
-
{ [_h]: ["PUT", "/backup-vaults/{BackupVaultName}/mpaApprovalTeam", 204] }, () => AssociateBackupVaultMpaApprovalTeamInput$, () => __Unit
|
|
2589
|
-
];
|
|
2590
|
-
var CancelLegalHold$ = [9, n0, _CLH,
|
|
2591
|
-
{ [_h]: ["DELETE", "/legal-holds/{LegalHoldId}", 201] }, () => CancelLegalHoldInput$, () => CancelLegalHoldOutput$
|
|
2592
|
-
];
|
|
2593
|
-
var CreateBackupPlan$ = [9, n0, _CBP,
|
|
2594
|
-
{ [_h]: ["PUT", "/backup/plans", 200] }, () => CreateBackupPlanInput$, () => CreateBackupPlanOutput$
|
|
2595
|
-
];
|
|
2596
|
-
var CreateBackupSelection$ = [9, n0, _CBS,
|
|
2597
|
-
{ [_h]: ["PUT", "/backup/plans/{BackupPlanId}/selections", 200] }, () => CreateBackupSelectionInput$, () => CreateBackupSelectionOutput$
|
|
2598
|
-
];
|
|
2599
|
-
var CreateBackupVault$ = [9, n0, _CBV,
|
|
2600
|
-
{ [_h]: ["PUT", "/backup-vaults/{BackupVaultName}", 200] }, () => CreateBackupVaultInput$, () => CreateBackupVaultOutput$
|
|
2601
|
-
];
|
|
2602
|
-
var CreateFramework$ = [9, n0, _CF,
|
|
2603
|
-
{ [_h]: ["POST", "/audit/frameworks", 200] }, () => CreateFrameworkInput$, () => CreateFrameworkOutput$
|
|
2604
|
-
];
|
|
2605
|
-
var CreateLegalHold$ = [9, n0, _CLHr,
|
|
2606
|
-
{ [_h]: ["POST", "/legal-holds", 200] }, () => CreateLegalHoldInput$, () => CreateLegalHoldOutput$
|
|
2607
|
-
];
|
|
2608
|
-
var CreateLogicallyAirGappedBackupVault$ = [9, n0, _CLAGBV,
|
|
2609
|
-
{ [_h]: ["PUT", "/logically-air-gapped-backup-vaults/{BackupVaultName}", 200] }, () => CreateLogicallyAirGappedBackupVaultInput$, () => CreateLogicallyAirGappedBackupVaultOutput$
|
|
2610
|
-
];
|
|
2611
|
-
var CreateReportPlan$ = [9, n0, _CRP,
|
|
2612
|
-
{ [_h]: ["POST", "/audit/report-plans", 200] }, () => CreateReportPlanInput$, () => CreateReportPlanOutput$
|
|
2613
|
-
];
|
|
2614
|
-
var CreateRestoreAccessBackupVault$ = [9, n0, _CRABV,
|
|
2615
|
-
{ [_h]: ["PUT", "/restore-access-backup-vaults", 200] }, () => CreateRestoreAccessBackupVaultInput$, () => CreateRestoreAccessBackupVaultOutput$
|
|
2616
|
-
];
|
|
2617
|
-
var CreateRestoreTestingPlan$ = [9, n0, _CRTP,
|
|
2618
|
-
{ [_h]: ["PUT", "/restore-testing/plans", 201] }, () => CreateRestoreTestingPlanInput$, () => CreateRestoreTestingPlanOutput$
|
|
2619
|
-
];
|
|
2620
|
-
var CreateRestoreTestingSelection$ = [9, n0, _CRTS,
|
|
2621
|
-
{ [_h]: ["PUT", "/restore-testing/plans/{RestoreTestingPlanName}/selections", 201] }, () => CreateRestoreTestingSelectionInput$, () => CreateRestoreTestingSelectionOutput$
|
|
2622
|
-
];
|
|
2623
|
-
var CreateTieringConfiguration$ = [9, n0, _CTC,
|
|
2624
|
-
{ [_h]: ["PUT", "/tiering-configurations", 200] }, () => CreateTieringConfigurationInput$, () => CreateTieringConfigurationOutput$
|
|
2625
|
-
];
|
|
2626
|
-
var DeleteBackupPlan$ = [9, n0, _DBP,
|
|
2627
|
-
{ [_h]: ["DELETE", "/backup/plans/{BackupPlanId}", 200] }, () => DeleteBackupPlanInput$, () => DeleteBackupPlanOutput$
|
|
2628
|
-
];
|
|
2629
|
-
var DeleteBackupSelection$ = [9, n0, _DBS,
|
|
2630
|
-
{ [_h]: ["DELETE", "/backup/plans/{BackupPlanId}/selections/{SelectionId}", 200] }, () => DeleteBackupSelectionInput$, () => __Unit
|
|
2631
|
-
];
|
|
2632
|
-
var DeleteBackupVault$ = [9, n0, _DBV,
|
|
2633
|
-
{ [_h]: ["DELETE", "/backup-vaults/{BackupVaultName}", 200] }, () => DeleteBackupVaultInput$, () => __Unit
|
|
2634
|
-
];
|
|
2635
|
-
var DeleteBackupVaultAccessPolicy$ = [9, n0, _DBVAP,
|
|
2636
|
-
{ [_h]: ["DELETE", "/backup-vaults/{BackupVaultName}/access-policy", 200] }, () => DeleteBackupVaultAccessPolicyInput$, () => __Unit
|
|
2637
|
-
];
|
|
2638
|
-
var DeleteBackupVaultLockConfiguration$ = [9, n0, _DBVLC,
|
|
2639
|
-
{ [_h]: ["DELETE", "/backup-vaults/{BackupVaultName}/vault-lock", 200] }, () => DeleteBackupVaultLockConfigurationInput$, () => __Unit
|
|
2640
|
-
];
|
|
2641
|
-
var DeleteBackupVaultNotifications$ = [9, n0, _DBVN,
|
|
2642
|
-
{ [_h]: ["DELETE", "/backup-vaults/{BackupVaultName}/notification-configuration", 200] }, () => DeleteBackupVaultNotificationsInput$, () => __Unit
|
|
2643
|
-
];
|
|
2644
|
-
var DeleteFramework$ = [9, n0, _DF,
|
|
2645
|
-
{ [_h]: ["DELETE", "/audit/frameworks/{FrameworkName}", 200] }, () => DeleteFrameworkInput$, () => __Unit
|
|
2646
|
-
];
|
|
2647
|
-
var DeleteRecoveryPoint$ = [9, n0, _DRP,
|
|
2648
|
-
{ [_h]: ["DELETE", "/backup-vaults/{BackupVaultName}/recovery-points/{RecoveryPointArn}", 200] }, () => DeleteRecoveryPointInput$, () => __Unit
|
|
2649
|
-
];
|
|
2650
|
-
var DeleteReportPlan$ = [9, n0, _DRPe,
|
|
2651
|
-
{ [_h]: ["DELETE", "/audit/report-plans/{ReportPlanName}", 200] }, () => DeleteReportPlanInput$, () => __Unit
|
|
2652
|
-
];
|
|
2653
|
-
var DeleteRestoreTestingPlan$ = [9, n0, _DRTP,
|
|
2654
|
-
{ [_h]: ["DELETE", "/restore-testing/plans/{RestoreTestingPlanName}", 204] }, () => DeleteRestoreTestingPlanInput$, () => __Unit
|
|
2655
|
-
];
|
|
2656
|
-
var DeleteRestoreTestingSelection$ = [9, n0, _DRTS,
|
|
2657
|
-
{ [_h]: ["DELETE", "/restore-testing/plans/{RestoreTestingPlanName}/selections/{RestoreTestingSelectionName}", 204] }, () => DeleteRestoreTestingSelectionInput$, () => __Unit
|
|
2658
|
-
];
|
|
2659
|
-
var DeleteTieringConfiguration$ = [9, n0, _DTC,
|
|
2660
|
-
{ [_h]: ["DELETE", "/tiering-configurations/{TieringConfigurationName}", 200] }, () => DeleteTieringConfigurationInput$, () => DeleteTieringConfigurationOutput$
|
|
2661
|
-
];
|
|
2662
|
-
var DescribeBackupJob$ = [9, n0, _DBJ,
|
|
2663
|
-
{ [_h]: ["GET", "/backup-jobs/{BackupJobId}", 200] }, () => DescribeBackupJobInput$, () => DescribeBackupJobOutput$
|
|
2664
|
-
];
|
|
2665
|
-
var DescribeBackupVault$ = [9, n0, _DBVe,
|
|
2666
|
-
{ [_h]: ["GET", "/backup-vaults/{BackupVaultName}", 200] }, () => DescribeBackupVaultInput$, () => DescribeBackupVaultOutput$
|
|
2667
|
-
];
|
|
2668
|
-
var DescribeCopyJob$ = [9, n0, _DCJ,
|
|
2669
|
-
{ [_h]: ["GET", "/copy-jobs/{CopyJobId}", 200] }, () => DescribeCopyJobInput$, () => DescribeCopyJobOutput$
|
|
2670
|
-
];
|
|
2671
|
-
var DescribeFramework$ = [9, n0, _DFe,
|
|
2672
|
-
{ [_h]: ["GET", "/audit/frameworks/{FrameworkName}", 200] }, () => DescribeFrameworkInput$, () => DescribeFrameworkOutput$
|
|
2673
|
-
];
|
|
2674
|
-
var DescribeGlobalSettings$ = [9, n0, _DGS,
|
|
2675
|
-
{ [_h]: ["GET", "/global-settings", 200] }, () => DescribeGlobalSettingsInput$, () => DescribeGlobalSettingsOutput$
|
|
2676
|
-
];
|
|
2677
|
-
var DescribeProtectedResource$ = [9, n0, _DPR,
|
|
2678
|
-
{ [_h]: ["GET", "/resources/{ResourceArn}", 200] }, () => DescribeProtectedResourceInput$, () => DescribeProtectedResourceOutput$
|
|
2679
|
-
];
|
|
2680
|
-
var DescribeRecoveryPoint$ = [9, n0, _DRPes,
|
|
2681
|
-
{ [_h]: ["GET", "/backup-vaults/{BackupVaultName}/recovery-points/{RecoveryPointArn}", 200] }, () => DescribeRecoveryPointInput$, () => DescribeRecoveryPointOutput$
|
|
2682
|
-
];
|
|
2683
|
-
var DescribeRegionSettings$ = [9, n0, _DRS,
|
|
2684
|
-
{ [_h]: ["GET", "/account-settings", 200] }, () => DescribeRegionSettingsInput$, () => DescribeRegionSettingsOutput$
|
|
2685
|
-
];
|
|
2686
|
-
var DescribeReportJob$ = [9, n0, _DRJ,
|
|
2687
|
-
{ [_h]: ["GET", "/audit/report-jobs/{ReportJobId}", 200] }, () => DescribeReportJobInput$, () => DescribeReportJobOutput$
|
|
2688
|
-
];
|
|
2689
|
-
var DescribeReportPlan$ = [9, n0, _DRPesc,
|
|
2690
|
-
{ [_h]: ["GET", "/audit/report-plans/{ReportPlanName}", 200] }, () => DescribeReportPlanInput$, () => DescribeReportPlanOutput$
|
|
2691
|
-
];
|
|
2692
|
-
var DescribeRestoreJob$ = [9, n0, _DRJe,
|
|
2693
|
-
{ [_h]: ["GET", "/restore-jobs/{RestoreJobId}", 200] }, () => DescribeRestoreJobInput$, () => DescribeRestoreJobOutput$
|
|
2694
|
-
];
|
|
2695
|
-
var DescribeScanJob$ = [9, n0, _DSJ,
|
|
2696
|
-
{ [_h]: ["GET", "/scan/jobs/{ScanJobId}", 200] }, () => DescribeScanJobInput$, () => DescribeScanJobOutput$
|
|
2697
|
-
];
|
|
2698
|
-
var DisassociateBackupVaultMpaApprovalTeam$ = [9, n0, _DBVMAT,
|
|
2699
|
-
{ [_h]: ["POST", "/backup-vaults/{BackupVaultName}/mpaApprovalTeam?delete", 204] }, () => DisassociateBackupVaultMpaApprovalTeamInput$, () => __Unit
|
|
2700
|
-
];
|
|
2701
|
-
var DisassociateRecoveryPoint$ = [9, n0, _DRPi,
|
|
2702
|
-
{ [_h]: ["POST", "/backup-vaults/{BackupVaultName}/recovery-points/{RecoveryPointArn}/disassociate", 200] }, () => DisassociateRecoveryPointInput$, () => __Unit
|
|
2703
|
-
];
|
|
2704
|
-
var DisassociateRecoveryPointFromParent$ = [9, n0, _DRPFP,
|
|
2705
|
-
{ [_h]: ["DELETE", "/backup-vaults/{BackupVaultName}/recovery-points/{RecoveryPointArn}/parentAssociation", 204] }, () => DisassociateRecoveryPointFromParentInput$, () => __Unit
|
|
2706
|
-
];
|
|
2707
|
-
var ExportBackupPlanTemplate$ = [9, n0, _EBPT,
|
|
2708
|
-
{ [_h]: ["GET", "/backup/plans/{BackupPlanId}/toTemplate", 200] }, () => ExportBackupPlanTemplateInput$, () => ExportBackupPlanTemplateOutput$
|
|
2709
|
-
];
|
|
2710
|
-
var GetBackupPlan$ = [9, n0, _GBP,
|
|
2711
|
-
{ [_h]: ["GET", "/backup/plans/{BackupPlanId}", 200] }, () => GetBackupPlanInput$, () => GetBackupPlanOutput$
|
|
2712
|
-
];
|
|
2713
|
-
var GetBackupPlanFromJSON$ = [9, n0, _GBPFJSON,
|
|
2714
|
-
{ [_h]: ["POST", "/backup/template/json/toPlan", 200] }, () => GetBackupPlanFromJSONInput$, () => GetBackupPlanFromJSONOutput$
|
|
2715
|
-
];
|
|
2716
|
-
var GetBackupPlanFromTemplate$ = [9, n0, _GBPFT,
|
|
2717
|
-
{ [_h]: ["GET", "/backup/template/plans/{BackupPlanTemplateId}/toPlan", 200] }, () => GetBackupPlanFromTemplateInput$, () => GetBackupPlanFromTemplateOutput$
|
|
2718
|
-
];
|
|
2719
|
-
var GetBackupSelection$ = [9, n0, _GBS,
|
|
2720
|
-
{ [_h]: ["GET", "/backup/plans/{BackupPlanId}/selections/{SelectionId}", 200] }, () => GetBackupSelectionInput$, () => GetBackupSelectionOutput$
|
|
2721
|
-
];
|
|
2722
|
-
var GetBackupVaultAccessPolicy$ = [9, n0, _GBVAP,
|
|
2723
|
-
{ [_h]: ["GET", "/backup-vaults/{BackupVaultName}/access-policy", 200] }, () => GetBackupVaultAccessPolicyInput$, () => GetBackupVaultAccessPolicyOutput$
|
|
2724
|
-
];
|
|
2725
|
-
var GetBackupVaultNotifications$ = [9, n0, _GBVN,
|
|
2726
|
-
{ [_h]: ["GET", "/backup-vaults/{BackupVaultName}/notification-configuration", 200] }, () => GetBackupVaultNotificationsInput$, () => GetBackupVaultNotificationsOutput$
|
|
2727
|
-
];
|
|
2728
|
-
var GetLegalHold$ = [9, n0, _GLH,
|
|
2729
|
-
{ [_h]: ["GET", "/legal-holds/{LegalHoldId}", 200] }, () => GetLegalHoldInput$, () => GetLegalHoldOutput$
|
|
2730
|
-
];
|
|
2731
|
-
var GetRecoveryPointIndexDetails$ = [9, n0, _GRPID,
|
|
2732
|
-
{ [_h]: ["GET", "/backup-vaults/{BackupVaultName}/recovery-points/{RecoveryPointArn}/index", 200] }, () => GetRecoveryPointIndexDetailsInput$, () => GetRecoveryPointIndexDetailsOutput$
|
|
2733
|
-
];
|
|
2734
|
-
var GetRecoveryPointRestoreMetadata$ = [9, n0, _GRPRM,
|
|
2735
|
-
{ [_h]: ["GET", "/backup-vaults/{BackupVaultName}/recovery-points/{RecoveryPointArn}/restore-metadata", 200] }, () => GetRecoveryPointRestoreMetadataInput$, () => GetRecoveryPointRestoreMetadataOutput$
|
|
2736
|
-
];
|
|
2737
|
-
var GetRestoreJobMetadata$ = [9, n0, _GRJM,
|
|
2738
|
-
{ [_h]: ["GET", "/restore-jobs/{RestoreJobId}/metadata", 200] }, () => GetRestoreJobMetadataInput$, () => GetRestoreJobMetadataOutput$
|
|
2739
|
-
];
|
|
2740
|
-
var GetRestoreTestingInferredMetadata$ = [9, n0, _GRTIM,
|
|
2741
|
-
{ [_h]: ["GET", "/restore-testing/inferred-metadata", 200] }, () => GetRestoreTestingInferredMetadataInput$, () => GetRestoreTestingInferredMetadataOutput$
|
|
2742
|
-
];
|
|
2743
|
-
var GetRestoreTestingPlan$ = [9, n0, _GRTP,
|
|
2744
|
-
{ [_h]: ["GET", "/restore-testing/plans/{RestoreTestingPlanName}", 200] }, () => GetRestoreTestingPlanInput$, () => GetRestoreTestingPlanOutput$
|
|
2745
|
-
];
|
|
2746
|
-
var GetRestoreTestingSelection$ = [9, n0, _GRTS,
|
|
2747
|
-
{ [_h]: ["GET", "/restore-testing/plans/{RestoreTestingPlanName}/selections/{RestoreTestingSelectionName}", 200] }, () => GetRestoreTestingSelectionInput$, () => GetRestoreTestingSelectionOutput$
|
|
2748
|
-
];
|
|
2749
|
-
var GetSupportedResourceTypes$ = [9, n0, _GSRT,
|
|
2750
|
-
{ [_h]: ["GET", "/supported-resource-types", 200] }, () => __Unit, () => GetSupportedResourceTypesOutput$
|
|
2751
|
-
];
|
|
2752
|
-
var GetTieringConfiguration$ = [9, n0, _GTC,
|
|
2753
|
-
{ [_h]: ["GET", "/tiering-configurations/{TieringConfigurationName}", 200] }, () => GetTieringConfigurationInput$, () => GetTieringConfigurationOutput$
|
|
2754
|
-
];
|
|
2755
|
-
var ListBackupJobs$ = [9, n0, _LBJ,
|
|
2756
|
-
{ [_h]: ["GET", "/backup-jobs", 200] }, () => ListBackupJobsInput$, () => ListBackupJobsOutput$
|
|
2757
|
-
];
|
|
2758
|
-
var ListBackupJobSummaries$ = [9, n0, _LBJS,
|
|
2759
|
-
{ [_h]: ["GET", "/audit/backup-job-summaries", 200] }, () => ListBackupJobSummariesInput$, () => ListBackupJobSummariesOutput$
|
|
2760
|
-
];
|
|
2761
|
-
var ListBackupPlans$ = [9, n0, _LBP,
|
|
2762
|
-
{ [_h]: ["GET", "/backup/plans", 200] }, () => ListBackupPlansInput$, () => ListBackupPlansOutput$
|
|
2763
|
-
];
|
|
2764
|
-
var ListBackupPlanTemplates$ = [9, n0, _LBPT,
|
|
2765
|
-
{ [_h]: ["GET", "/backup/template/plans", 200] }, () => ListBackupPlanTemplatesInput$, () => ListBackupPlanTemplatesOutput$
|
|
2766
|
-
];
|
|
2767
|
-
var ListBackupPlanVersions$ = [9, n0, _LBPV,
|
|
2768
|
-
{ [_h]: ["GET", "/backup/plans/{BackupPlanId}/versions", 200] }, () => ListBackupPlanVersionsInput$, () => ListBackupPlanVersionsOutput$
|
|
2769
|
-
];
|
|
2770
|
-
var ListBackupSelections$ = [9, n0, _LBS,
|
|
2771
|
-
{ [_h]: ["GET", "/backup/plans/{BackupPlanId}/selections", 200] }, () => ListBackupSelectionsInput$, () => ListBackupSelectionsOutput$
|
|
2772
|
-
];
|
|
2773
|
-
var ListBackupVaults$ = [9, n0, _LBV,
|
|
2774
|
-
{ [_h]: ["GET", "/backup-vaults", 200] }, () => ListBackupVaultsInput$, () => ListBackupVaultsOutput$
|
|
2775
|
-
];
|
|
2776
|
-
var ListCopyJobs$ = [9, n0, _LCJ,
|
|
2777
|
-
{ [_h]: ["GET", "/copy-jobs", 200] }, () => ListCopyJobsInput$, () => ListCopyJobsOutput$
|
|
2778
|
-
];
|
|
2779
|
-
var ListCopyJobSummaries$ = [9, n0, _LCJS,
|
|
2780
|
-
{ [_h]: ["GET", "/audit/copy-job-summaries", 200] }, () => ListCopyJobSummariesInput$, () => ListCopyJobSummariesOutput$
|
|
2781
|
-
];
|
|
2782
|
-
var ListFrameworks$ = [9, n0, _LF,
|
|
2783
|
-
{ [_h]: ["GET", "/audit/frameworks", 200] }, () => ListFrameworksInput$, () => ListFrameworksOutput$
|
|
2784
|
-
];
|
|
2785
|
-
var ListIndexedRecoveryPoints$ = [9, n0, _LIRP,
|
|
2786
|
-
{ [_h]: ["GET", "/indexes/recovery-point", 200] }, () => ListIndexedRecoveryPointsInput$, () => ListIndexedRecoveryPointsOutput$
|
|
2787
|
-
];
|
|
2788
|
-
var ListLegalHolds$ = [9, n0, _LLH,
|
|
2789
|
-
{ [_h]: ["GET", "/legal-holds", 200] }, () => ListLegalHoldsInput$, () => ListLegalHoldsOutput$
|
|
2790
|
-
];
|
|
2791
|
-
var ListProtectedResources$ = [9, n0, _LPR,
|
|
2792
|
-
{ [_h]: ["GET", "/resources", 200] }, () => ListProtectedResourcesInput$, () => ListProtectedResourcesOutput$
|
|
2793
|
-
];
|
|
2794
|
-
var ListProtectedResourcesByBackupVault$ = [9, n0, _LPRBBV,
|
|
2795
|
-
{ [_h]: ["GET", "/backup-vaults/{BackupVaultName}/resources", 200] }, () => ListProtectedResourcesByBackupVaultInput$, () => ListProtectedResourcesByBackupVaultOutput$
|
|
2796
|
-
];
|
|
2797
|
-
var ListRecoveryPointsByBackupVault$ = [9, n0, _LRPBBV,
|
|
2798
|
-
{ [_h]: ["GET", "/backup-vaults/{BackupVaultName}/recovery-points", 200] }, () => ListRecoveryPointsByBackupVaultInput$, () => ListRecoveryPointsByBackupVaultOutput$
|
|
2799
|
-
];
|
|
2800
|
-
var ListRecoveryPointsByLegalHold$ = [9, n0, _LRPBLH,
|
|
2801
|
-
{ [_h]: ["GET", "/legal-holds/{LegalHoldId}/recovery-points", 200] }, () => ListRecoveryPointsByLegalHoldInput$, () => ListRecoveryPointsByLegalHoldOutput$
|
|
2802
|
-
];
|
|
2803
|
-
var ListRecoveryPointsByResource$ = [9, n0, _LRPBR,
|
|
2804
|
-
{ [_h]: ["GET", "/resources/{ResourceArn}/recovery-points", 200] }, () => ListRecoveryPointsByResourceInput$, () => ListRecoveryPointsByResourceOutput$
|
|
2805
|
-
];
|
|
2806
|
-
var ListReportJobs$ = [9, n0, _LRJ,
|
|
2807
|
-
{ [_h]: ["GET", "/audit/report-jobs", 200] }, () => ListReportJobsInput$, () => ListReportJobsOutput$
|
|
2808
|
-
];
|
|
2809
|
-
var ListReportPlans$ = [9, n0, _LRP,
|
|
2810
|
-
{ [_h]: ["GET", "/audit/report-plans", 200] }, () => ListReportPlansInput$, () => ListReportPlansOutput$
|
|
2811
|
-
];
|
|
2812
|
-
var ListRestoreAccessBackupVaults$ = [9, n0, _LRABV,
|
|
2813
|
-
{ [_h]: ["GET", "/logically-air-gapped-backup-vaults/{BackupVaultName}/restore-access-backup-vaults", 200] }, () => ListRestoreAccessBackupVaultsInput$, () => ListRestoreAccessBackupVaultsOutput$
|
|
2814
|
-
];
|
|
2815
|
-
var ListRestoreJobs$ = [9, n0, _LRJi,
|
|
2816
|
-
{ [_h]: ["GET", "/restore-jobs", 200] }, () => ListRestoreJobsInput$, () => ListRestoreJobsOutput$
|
|
2817
|
-
];
|
|
2818
|
-
var ListRestoreJobsByProtectedResource$ = [9, n0, _LRJBPR,
|
|
2819
|
-
{ [_h]: ["GET", "/resources/{ResourceArn}/restore-jobs", 200] }, () => ListRestoreJobsByProtectedResourceInput$, () => ListRestoreJobsByProtectedResourceOutput$
|
|
2820
|
-
];
|
|
2821
|
-
var ListRestoreJobSummaries$ = [9, n0, _LRJS,
|
|
2822
|
-
{ [_h]: ["GET", "/audit/restore-job-summaries", 200] }, () => ListRestoreJobSummariesInput$, () => ListRestoreJobSummariesOutput$
|
|
2823
|
-
];
|
|
2824
|
-
var ListRestoreTestingPlans$ = [9, n0, _LRTP,
|
|
2825
|
-
{ [_h]: ["GET", "/restore-testing/plans", 200] }, () => ListRestoreTestingPlansInput$, () => ListRestoreTestingPlansOutput$
|
|
2826
|
-
];
|
|
2827
|
-
var ListRestoreTestingSelections$ = [9, n0, _LRTS,
|
|
2828
|
-
{ [_h]: ["GET", "/restore-testing/plans/{RestoreTestingPlanName}/selections", 200] }, () => ListRestoreTestingSelectionsInput$, () => ListRestoreTestingSelectionsOutput$
|
|
2829
|
-
];
|
|
2830
|
-
var ListScanJobs$ = [9, n0, _LSJ,
|
|
2831
|
-
{ [_h]: ["GET", "/scan/jobs", 200] }, () => ListScanJobsInput$, () => ListScanJobsOutput$
|
|
2832
|
-
];
|
|
2833
|
-
var ListScanJobSummaries$ = [9, n0, _LSJS,
|
|
2834
|
-
{ [_h]: ["GET", "/audit/scan-job-summaries", 200] }, () => ListScanJobSummariesInput$, () => ListScanJobSummariesOutput$
|
|
2835
|
-
];
|
|
2836
|
-
var ListTags$ = [9, n0, _LT,
|
|
2837
|
-
{ [_h]: ["GET", "/tags/{ResourceArn}", 200] }, () => ListTagsInput$, () => ListTagsOutput$
|
|
2838
|
-
];
|
|
2839
|
-
var ListTieringConfigurations$ = [9, n0, _LTC,
|
|
2840
|
-
{ [_h]: ["GET", "/tiering-configurations", 200] }, () => ListTieringConfigurationsInput$, () => ListTieringConfigurationsOutput$
|
|
2841
|
-
];
|
|
2842
|
-
var PutBackupVaultAccessPolicy$ = [9, n0, _PBVAP,
|
|
2843
|
-
{ [_h]: ["PUT", "/backup-vaults/{BackupVaultName}/access-policy", 200] }, () => PutBackupVaultAccessPolicyInput$, () => __Unit
|
|
2844
|
-
];
|
|
2845
|
-
var PutBackupVaultLockConfiguration$ = [9, n0, _PBVLC,
|
|
2846
|
-
{ [_h]: ["PUT", "/backup-vaults/{BackupVaultName}/vault-lock", 200] }, () => PutBackupVaultLockConfigurationInput$, () => __Unit
|
|
2847
|
-
];
|
|
2848
|
-
var PutBackupVaultNotifications$ = [9, n0, _PBVN,
|
|
2849
|
-
{ [_h]: ["PUT", "/backup-vaults/{BackupVaultName}/notification-configuration", 200] }, () => PutBackupVaultNotificationsInput$, () => __Unit
|
|
2850
|
-
];
|
|
2851
|
-
var PutRestoreValidationResult$ = [9, n0, _PRVR,
|
|
2852
|
-
{ [_h]: ["PUT", "/restore-jobs/{RestoreJobId}/validations", 204] }, () => PutRestoreValidationResultInput$, () => __Unit
|
|
2853
|
-
];
|
|
2854
|
-
var RevokeRestoreAccessBackupVault$ = [9, n0, _RRABV,
|
|
2855
|
-
{ [_h]: ["DELETE", "/logically-air-gapped-backup-vaults/{BackupVaultName}/restore-access-backup-vaults/{RestoreAccessBackupVaultArn}", 200] }, () => RevokeRestoreAccessBackupVaultInput$, () => __Unit
|
|
2856
|
-
];
|
|
2857
|
-
var StartBackupJob$ = [9, n0, _SBJ,
|
|
2858
|
-
{ [_h]: ["PUT", "/backup-jobs", 200] }, () => StartBackupJobInput$, () => StartBackupJobOutput$
|
|
2859
|
-
];
|
|
2860
|
-
var StartCopyJob$ = [9, n0, _SCJ,
|
|
2861
|
-
{ [_h]: ["PUT", "/copy-jobs", 200] }, () => StartCopyJobInput$, () => StartCopyJobOutput$
|
|
2862
|
-
];
|
|
2863
|
-
var StartReportJob$ = [9, n0, _SRJ,
|
|
2864
|
-
{ [_h]: ["POST", "/audit/report-jobs/{ReportPlanName}", 200] }, () => StartReportJobInput$, () => StartReportJobOutput$
|
|
2865
|
-
];
|
|
2866
|
-
var StartRestoreJob$ = [9, n0, _SRJt,
|
|
2867
|
-
{ [_h]: ["PUT", "/restore-jobs", 200] }, () => StartRestoreJobInput$, () => StartRestoreJobOutput$
|
|
2868
|
-
];
|
|
2869
|
-
var StartScanJob$ = [9, n0, _SSJ,
|
|
2870
|
-
{ [_h]: ["PUT", "/scan/job", 201] }, () => StartScanJobInput$, () => StartScanJobOutput$
|
|
2871
|
-
];
|
|
2872
|
-
var StopBackupJob$ = [9, n0, _SBJt,
|
|
2873
|
-
{ [_h]: ["POST", "/backup-jobs/{BackupJobId}", 200] }, () => StopBackupJobInput$, () => __Unit
|
|
2874
|
-
];
|
|
2875
|
-
var TagResource$ = [9, n0, _TR,
|
|
2876
|
-
{ [_h]: ["POST", "/tags/{ResourceArn}", 200] }, () => TagResourceInput$, () => __Unit
|
|
2877
|
-
];
|
|
2878
|
-
var UntagResource$ = [9, n0, _UR,
|
|
2879
|
-
{ [_h]: ["POST", "/untag/{ResourceArn}", 200] }, () => UntagResourceInput$, () => __Unit
|
|
2880
|
-
];
|
|
2881
|
-
var UpdateBackupPlan$ = [9, n0, _UBP,
|
|
2882
|
-
{ [_h]: ["POST", "/backup/plans/{BackupPlanId}", 200] }, () => UpdateBackupPlanInput$, () => UpdateBackupPlanOutput$
|
|
2883
|
-
];
|
|
2884
|
-
var UpdateFramework$ = [9, n0, _UF,
|
|
2885
|
-
{ [_h]: ["PUT", "/audit/frameworks/{FrameworkName}", 200] }, () => UpdateFrameworkInput$, () => UpdateFrameworkOutput$
|
|
2886
|
-
];
|
|
2887
|
-
var UpdateGlobalSettings$ = [9, n0, _UGS,
|
|
2888
|
-
{ [_h]: ["PUT", "/global-settings", 200] }, () => UpdateGlobalSettingsInput$, () => __Unit
|
|
2889
|
-
];
|
|
2890
|
-
var UpdateRecoveryPointIndexSettings$ = [9, n0, _URPIS,
|
|
2891
|
-
{ [_h]: ["POST", "/backup-vaults/{BackupVaultName}/recovery-points/{RecoveryPointArn}/index", 200] }, () => UpdateRecoveryPointIndexSettingsInput$, () => UpdateRecoveryPointIndexSettingsOutput$
|
|
2892
|
-
];
|
|
2893
|
-
var UpdateRecoveryPointLifecycle$ = [9, n0, _URPL,
|
|
2894
|
-
{ [_h]: ["POST", "/backup-vaults/{BackupVaultName}/recovery-points/{RecoveryPointArn}", 200] }, () => UpdateRecoveryPointLifecycleInput$, () => UpdateRecoveryPointLifecycleOutput$
|
|
2895
|
-
];
|
|
2896
|
-
var UpdateRegionSettings$ = [9, n0, _URS,
|
|
2897
|
-
{ [_h]: ["PUT", "/account-settings", 200] }, () => UpdateRegionSettingsInput$, () => __Unit
|
|
2898
|
-
];
|
|
2899
|
-
var UpdateReportPlan$ = [9, n0, _URP,
|
|
2900
|
-
{ [_h]: ["PUT", "/audit/report-plans/{ReportPlanName}", 200] }, () => UpdateReportPlanInput$, () => UpdateReportPlanOutput$
|
|
2901
|
-
];
|
|
2902
|
-
var UpdateRestoreTestingPlan$ = [9, n0, _URTP,
|
|
2903
|
-
{ [_h]: ["PUT", "/restore-testing/plans/{RestoreTestingPlanName}", 200] }, () => UpdateRestoreTestingPlanInput$, () => UpdateRestoreTestingPlanOutput$
|
|
2904
|
-
];
|
|
2905
|
-
var UpdateRestoreTestingSelection$ = [9, n0, _URTS,
|
|
2906
|
-
{ [_h]: ["PUT", "/restore-testing/plans/{RestoreTestingPlanName}/selections/{RestoreTestingSelectionName}", 200] }, () => UpdateRestoreTestingSelectionInput$, () => UpdateRestoreTestingSelectionOutput$
|
|
2907
|
-
];
|
|
2908
|
-
var UpdateTieringConfiguration$ = [9, n0, _UTC,
|
|
2909
|
-
{ [_h]: ["PUT", "/tiering-configurations/{TieringConfigurationName}", 200] }, () => UpdateTieringConfigurationInput$, () => UpdateTieringConfigurationOutput$
|
|
2910
|
-
];
|
|
2911
|
-
|
|
2912
116
|
class AssociateBackupVaultMpaApprovalTeamCommand extends smithyClient.Command
|
|
2913
117
|
.classBuilder()
|
|
2914
118
|
.ep(commonParams)
|
|
@@ -2917,7 +121,7 @@ class AssociateBackupVaultMpaApprovalTeamCommand extends smithyClient.Command
|
|
|
2917
121
|
})
|
|
2918
122
|
.s("CryoControllerUserManager", "AssociateBackupVaultMpaApprovalTeam", {})
|
|
2919
123
|
.n("BackupClient", "AssociateBackupVaultMpaApprovalTeamCommand")
|
|
2920
|
-
.sc(AssociateBackupVaultMpaApprovalTeam$)
|
|
124
|
+
.sc(schemas_0.AssociateBackupVaultMpaApprovalTeam$)
|
|
2921
125
|
.build() {
|
|
2922
126
|
}
|
|
2923
127
|
|
|
@@ -2929,7 +133,7 @@ class CancelLegalHoldCommand extends smithyClient.Command
|
|
|
2929
133
|
})
|
|
2930
134
|
.s("CryoControllerUserManager", "CancelLegalHold", {})
|
|
2931
135
|
.n("BackupClient", "CancelLegalHoldCommand")
|
|
2932
|
-
.sc(CancelLegalHold$)
|
|
136
|
+
.sc(schemas_0.CancelLegalHold$)
|
|
2933
137
|
.build() {
|
|
2934
138
|
}
|
|
2935
139
|
|
|
@@ -2941,7 +145,7 @@ class CreateBackupPlanCommand extends smithyClient.Command
|
|
|
2941
145
|
})
|
|
2942
146
|
.s("CryoControllerUserManager", "CreateBackupPlan", {})
|
|
2943
147
|
.n("BackupClient", "CreateBackupPlanCommand")
|
|
2944
|
-
.sc(CreateBackupPlan$)
|
|
148
|
+
.sc(schemas_0.CreateBackupPlan$)
|
|
2945
149
|
.build() {
|
|
2946
150
|
}
|
|
2947
151
|
|
|
@@ -2953,7 +157,7 @@ class CreateBackupSelectionCommand extends smithyClient.Command
|
|
|
2953
157
|
})
|
|
2954
158
|
.s("CryoControllerUserManager", "CreateBackupSelection", {})
|
|
2955
159
|
.n("BackupClient", "CreateBackupSelectionCommand")
|
|
2956
|
-
.sc(CreateBackupSelection$)
|
|
160
|
+
.sc(schemas_0.CreateBackupSelection$)
|
|
2957
161
|
.build() {
|
|
2958
162
|
}
|
|
2959
163
|
|
|
@@ -2965,7 +169,7 @@ class CreateBackupVaultCommand extends smithyClient.Command
|
|
|
2965
169
|
})
|
|
2966
170
|
.s("CryoControllerUserManager", "CreateBackupVault", {})
|
|
2967
171
|
.n("BackupClient", "CreateBackupVaultCommand")
|
|
2968
|
-
.sc(CreateBackupVault$)
|
|
172
|
+
.sc(schemas_0.CreateBackupVault$)
|
|
2969
173
|
.build() {
|
|
2970
174
|
}
|
|
2971
175
|
|
|
@@ -2977,7 +181,7 @@ class CreateFrameworkCommand extends smithyClient.Command
|
|
|
2977
181
|
})
|
|
2978
182
|
.s("CryoControllerUserManager", "CreateFramework", {})
|
|
2979
183
|
.n("BackupClient", "CreateFrameworkCommand")
|
|
2980
|
-
.sc(CreateFramework$)
|
|
184
|
+
.sc(schemas_0.CreateFramework$)
|
|
2981
185
|
.build() {
|
|
2982
186
|
}
|
|
2983
187
|
|
|
@@ -2989,7 +193,7 @@ class CreateLegalHoldCommand extends smithyClient.Command
|
|
|
2989
193
|
})
|
|
2990
194
|
.s("CryoControllerUserManager", "CreateLegalHold", {})
|
|
2991
195
|
.n("BackupClient", "CreateLegalHoldCommand")
|
|
2992
|
-
.sc(CreateLegalHold$)
|
|
196
|
+
.sc(schemas_0.CreateLegalHold$)
|
|
2993
197
|
.build() {
|
|
2994
198
|
}
|
|
2995
199
|
|
|
@@ -3001,7 +205,7 @@ class CreateLogicallyAirGappedBackupVaultCommand extends smithyClient.Command
|
|
|
3001
205
|
})
|
|
3002
206
|
.s("CryoControllerUserManager", "CreateLogicallyAirGappedBackupVault", {})
|
|
3003
207
|
.n("BackupClient", "CreateLogicallyAirGappedBackupVaultCommand")
|
|
3004
|
-
.sc(CreateLogicallyAirGappedBackupVault$)
|
|
208
|
+
.sc(schemas_0.CreateLogicallyAirGappedBackupVault$)
|
|
3005
209
|
.build() {
|
|
3006
210
|
}
|
|
3007
211
|
|
|
@@ -3013,7 +217,7 @@ class CreateReportPlanCommand extends smithyClient.Command
|
|
|
3013
217
|
})
|
|
3014
218
|
.s("CryoControllerUserManager", "CreateReportPlan", {})
|
|
3015
219
|
.n("BackupClient", "CreateReportPlanCommand")
|
|
3016
|
-
.sc(CreateReportPlan$)
|
|
220
|
+
.sc(schemas_0.CreateReportPlan$)
|
|
3017
221
|
.build() {
|
|
3018
222
|
}
|
|
3019
223
|
|
|
@@ -3025,7 +229,7 @@ class CreateRestoreAccessBackupVaultCommand extends smithyClient.Command
|
|
|
3025
229
|
})
|
|
3026
230
|
.s("CryoControllerUserManager", "CreateRestoreAccessBackupVault", {})
|
|
3027
231
|
.n("BackupClient", "CreateRestoreAccessBackupVaultCommand")
|
|
3028
|
-
.sc(CreateRestoreAccessBackupVault$)
|
|
232
|
+
.sc(schemas_0.CreateRestoreAccessBackupVault$)
|
|
3029
233
|
.build() {
|
|
3030
234
|
}
|
|
3031
235
|
|
|
@@ -3037,7 +241,7 @@ class CreateRestoreTestingPlanCommand extends smithyClient.Command
|
|
|
3037
241
|
})
|
|
3038
242
|
.s("CryoControllerUserManager", "CreateRestoreTestingPlan", {})
|
|
3039
243
|
.n("BackupClient", "CreateRestoreTestingPlanCommand")
|
|
3040
|
-
.sc(CreateRestoreTestingPlan$)
|
|
244
|
+
.sc(schemas_0.CreateRestoreTestingPlan$)
|
|
3041
245
|
.build() {
|
|
3042
246
|
}
|
|
3043
247
|
|
|
@@ -3049,7 +253,7 @@ class CreateRestoreTestingSelectionCommand extends smithyClient.Command
|
|
|
3049
253
|
})
|
|
3050
254
|
.s("CryoControllerUserManager", "CreateRestoreTestingSelection", {})
|
|
3051
255
|
.n("BackupClient", "CreateRestoreTestingSelectionCommand")
|
|
3052
|
-
.sc(CreateRestoreTestingSelection$)
|
|
256
|
+
.sc(schemas_0.CreateRestoreTestingSelection$)
|
|
3053
257
|
.build() {
|
|
3054
258
|
}
|
|
3055
259
|
|
|
@@ -3061,7 +265,7 @@ class CreateTieringConfigurationCommand extends smithyClient.Command
|
|
|
3061
265
|
})
|
|
3062
266
|
.s("CryoControllerUserManager", "CreateTieringConfiguration", {})
|
|
3063
267
|
.n("BackupClient", "CreateTieringConfigurationCommand")
|
|
3064
|
-
.sc(CreateTieringConfiguration$)
|
|
268
|
+
.sc(schemas_0.CreateTieringConfiguration$)
|
|
3065
269
|
.build() {
|
|
3066
270
|
}
|
|
3067
271
|
|
|
@@ -3073,7 +277,7 @@ class DeleteBackupPlanCommand extends smithyClient.Command
|
|
|
3073
277
|
})
|
|
3074
278
|
.s("CryoControllerUserManager", "DeleteBackupPlan", {})
|
|
3075
279
|
.n("BackupClient", "DeleteBackupPlanCommand")
|
|
3076
|
-
.sc(DeleteBackupPlan$)
|
|
280
|
+
.sc(schemas_0.DeleteBackupPlan$)
|
|
3077
281
|
.build() {
|
|
3078
282
|
}
|
|
3079
283
|
|
|
@@ -3085,7 +289,7 @@ class DeleteBackupSelectionCommand extends smithyClient.Command
|
|
|
3085
289
|
})
|
|
3086
290
|
.s("CryoControllerUserManager", "DeleteBackupSelection", {})
|
|
3087
291
|
.n("BackupClient", "DeleteBackupSelectionCommand")
|
|
3088
|
-
.sc(DeleteBackupSelection$)
|
|
292
|
+
.sc(schemas_0.DeleteBackupSelection$)
|
|
3089
293
|
.build() {
|
|
3090
294
|
}
|
|
3091
295
|
|
|
@@ -3097,7 +301,7 @@ class DeleteBackupVaultAccessPolicyCommand extends smithyClient.Command
|
|
|
3097
301
|
})
|
|
3098
302
|
.s("CryoControllerUserManager", "DeleteBackupVaultAccessPolicy", {})
|
|
3099
303
|
.n("BackupClient", "DeleteBackupVaultAccessPolicyCommand")
|
|
3100
|
-
.sc(DeleteBackupVaultAccessPolicy$)
|
|
304
|
+
.sc(schemas_0.DeleteBackupVaultAccessPolicy$)
|
|
3101
305
|
.build() {
|
|
3102
306
|
}
|
|
3103
307
|
|
|
@@ -3109,7 +313,7 @@ class DeleteBackupVaultCommand extends smithyClient.Command
|
|
|
3109
313
|
})
|
|
3110
314
|
.s("CryoControllerUserManager", "DeleteBackupVault", {})
|
|
3111
315
|
.n("BackupClient", "DeleteBackupVaultCommand")
|
|
3112
|
-
.sc(DeleteBackupVault$)
|
|
316
|
+
.sc(schemas_0.DeleteBackupVault$)
|
|
3113
317
|
.build() {
|
|
3114
318
|
}
|
|
3115
319
|
|
|
@@ -3121,7 +325,7 @@ class DeleteBackupVaultLockConfigurationCommand extends smithyClient.Command
|
|
|
3121
325
|
})
|
|
3122
326
|
.s("CryoControllerUserManager", "DeleteBackupVaultLockConfiguration", {})
|
|
3123
327
|
.n("BackupClient", "DeleteBackupVaultLockConfigurationCommand")
|
|
3124
|
-
.sc(DeleteBackupVaultLockConfiguration$)
|
|
328
|
+
.sc(schemas_0.DeleteBackupVaultLockConfiguration$)
|
|
3125
329
|
.build() {
|
|
3126
330
|
}
|
|
3127
331
|
|
|
@@ -3133,7 +337,7 @@ class DeleteBackupVaultNotificationsCommand extends smithyClient.Command
|
|
|
3133
337
|
})
|
|
3134
338
|
.s("CryoControllerUserManager", "DeleteBackupVaultNotifications", {})
|
|
3135
339
|
.n("BackupClient", "DeleteBackupVaultNotificationsCommand")
|
|
3136
|
-
.sc(DeleteBackupVaultNotifications$)
|
|
340
|
+
.sc(schemas_0.DeleteBackupVaultNotifications$)
|
|
3137
341
|
.build() {
|
|
3138
342
|
}
|
|
3139
343
|
|
|
@@ -3145,7 +349,7 @@ class DeleteFrameworkCommand extends smithyClient.Command
|
|
|
3145
349
|
})
|
|
3146
350
|
.s("CryoControllerUserManager", "DeleteFramework", {})
|
|
3147
351
|
.n("BackupClient", "DeleteFrameworkCommand")
|
|
3148
|
-
.sc(DeleteFramework$)
|
|
352
|
+
.sc(schemas_0.DeleteFramework$)
|
|
3149
353
|
.build() {
|
|
3150
354
|
}
|
|
3151
355
|
|
|
@@ -3157,7 +361,7 @@ class DeleteRecoveryPointCommand extends smithyClient.Command
|
|
|
3157
361
|
})
|
|
3158
362
|
.s("CryoControllerUserManager", "DeleteRecoveryPoint", {})
|
|
3159
363
|
.n("BackupClient", "DeleteRecoveryPointCommand")
|
|
3160
|
-
.sc(DeleteRecoveryPoint$)
|
|
364
|
+
.sc(schemas_0.DeleteRecoveryPoint$)
|
|
3161
365
|
.build() {
|
|
3162
366
|
}
|
|
3163
367
|
|
|
@@ -3169,7 +373,7 @@ class DeleteReportPlanCommand extends smithyClient.Command
|
|
|
3169
373
|
})
|
|
3170
374
|
.s("CryoControllerUserManager", "DeleteReportPlan", {})
|
|
3171
375
|
.n("BackupClient", "DeleteReportPlanCommand")
|
|
3172
|
-
.sc(DeleteReportPlan$)
|
|
376
|
+
.sc(schemas_0.DeleteReportPlan$)
|
|
3173
377
|
.build() {
|
|
3174
378
|
}
|
|
3175
379
|
|
|
@@ -3181,7 +385,7 @@ class DeleteRestoreTestingPlanCommand extends smithyClient.Command
|
|
|
3181
385
|
})
|
|
3182
386
|
.s("CryoControllerUserManager", "DeleteRestoreTestingPlan", {})
|
|
3183
387
|
.n("BackupClient", "DeleteRestoreTestingPlanCommand")
|
|
3184
|
-
.sc(DeleteRestoreTestingPlan$)
|
|
388
|
+
.sc(schemas_0.DeleteRestoreTestingPlan$)
|
|
3185
389
|
.build() {
|
|
3186
390
|
}
|
|
3187
391
|
|
|
@@ -3193,7 +397,7 @@ class DeleteRestoreTestingSelectionCommand extends smithyClient.Command
|
|
|
3193
397
|
})
|
|
3194
398
|
.s("CryoControllerUserManager", "DeleteRestoreTestingSelection", {})
|
|
3195
399
|
.n("BackupClient", "DeleteRestoreTestingSelectionCommand")
|
|
3196
|
-
.sc(DeleteRestoreTestingSelection$)
|
|
400
|
+
.sc(schemas_0.DeleteRestoreTestingSelection$)
|
|
3197
401
|
.build() {
|
|
3198
402
|
}
|
|
3199
403
|
|
|
@@ -3205,7 +409,7 @@ class DeleteTieringConfigurationCommand extends smithyClient.Command
|
|
|
3205
409
|
})
|
|
3206
410
|
.s("CryoControllerUserManager", "DeleteTieringConfiguration", {})
|
|
3207
411
|
.n("BackupClient", "DeleteTieringConfigurationCommand")
|
|
3208
|
-
.sc(DeleteTieringConfiguration$)
|
|
412
|
+
.sc(schemas_0.DeleteTieringConfiguration$)
|
|
3209
413
|
.build() {
|
|
3210
414
|
}
|
|
3211
415
|
|
|
@@ -3217,7 +421,7 @@ class DescribeBackupJobCommand extends smithyClient.Command
|
|
|
3217
421
|
})
|
|
3218
422
|
.s("CryoControllerUserManager", "DescribeBackupJob", {})
|
|
3219
423
|
.n("BackupClient", "DescribeBackupJobCommand")
|
|
3220
|
-
.sc(DescribeBackupJob$)
|
|
424
|
+
.sc(schemas_0.DescribeBackupJob$)
|
|
3221
425
|
.build() {
|
|
3222
426
|
}
|
|
3223
427
|
|
|
@@ -3229,7 +433,7 @@ class DescribeBackupVaultCommand extends smithyClient.Command
|
|
|
3229
433
|
})
|
|
3230
434
|
.s("CryoControllerUserManager", "DescribeBackupVault", {})
|
|
3231
435
|
.n("BackupClient", "DescribeBackupVaultCommand")
|
|
3232
|
-
.sc(DescribeBackupVault$)
|
|
436
|
+
.sc(schemas_0.DescribeBackupVault$)
|
|
3233
437
|
.build() {
|
|
3234
438
|
}
|
|
3235
439
|
|
|
@@ -3241,7 +445,7 @@ class DescribeCopyJobCommand extends smithyClient.Command
|
|
|
3241
445
|
})
|
|
3242
446
|
.s("CryoControllerUserManager", "DescribeCopyJob", {})
|
|
3243
447
|
.n("BackupClient", "DescribeCopyJobCommand")
|
|
3244
|
-
.sc(DescribeCopyJob$)
|
|
448
|
+
.sc(schemas_0.DescribeCopyJob$)
|
|
3245
449
|
.build() {
|
|
3246
450
|
}
|
|
3247
451
|
|
|
@@ -3253,7 +457,7 @@ class DescribeFrameworkCommand extends smithyClient.Command
|
|
|
3253
457
|
})
|
|
3254
458
|
.s("CryoControllerUserManager", "DescribeFramework", {})
|
|
3255
459
|
.n("BackupClient", "DescribeFrameworkCommand")
|
|
3256
|
-
.sc(DescribeFramework$)
|
|
460
|
+
.sc(schemas_0.DescribeFramework$)
|
|
3257
461
|
.build() {
|
|
3258
462
|
}
|
|
3259
463
|
|
|
@@ -3265,7 +469,7 @@ class DescribeGlobalSettingsCommand extends smithyClient.Command
|
|
|
3265
469
|
})
|
|
3266
470
|
.s("CryoControllerUserManager", "DescribeGlobalSettings", {})
|
|
3267
471
|
.n("BackupClient", "DescribeGlobalSettingsCommand")
|
|
3268
|
-
.sc(DescribeGlobalSettings$)
|
|
472
|
+
.sc(schemas_0.DescribeGlobalSettings$)
|
|
3269
473
|
.build() {
|
|
3270
474
|
}
|
|
3271
475
|
|
|
@@ -3277,7 +481,7 @@ class DescribeProtectedResourceCommand extends smithyClient.Command
|
|
|
3277
481
|
})
|
|
3278
482
|
.s("CryoControllerUserManager", "DescribeProtectedResource", {})
|
|
3279
483
|
.n("BackupClient", "DescribeProtectedResourceCommand")
|
|
3280
|
-
.sc(DescribeProtectedResource$)
|
|
484
|
+
.sc(schemas_0.DescribeProtectedResource$)
|
|
3281
485
|
.build() {
|
|
3282
486
|
}
|
|
3283
487
|
|
|
@@ -3289,7 +493,7 @@ class DescribeRecoveryPointCommand extends smithyClient.Command
|
|
|
3289
493
|
})
|
|
3290
494
|
.s("CryoControllerUserManager", "DescribeRecoveryPoint", {})
|
|
3291
495
|
.n("BackupClient", "DescribeRecoveryPointCommand")
|
|
3292
|
-
.sc(DescribeRecoveryPoint$)
|
|
496
|
+
.sc(schemas_0.DescribeRecoveryPoint$)
|
|
3293
497
|
.build() {
|
|
3294
498
|
}
|
|
3295
499
|
|
|
@@ -3301,7 +505,7 @@ class DescribeRegionSettingsCommand extends smithyClient.Command
|
|
|
3301
505
|
})
|
|
3302
506
|
.s("CryoControllerUserManager", "DescribeRegionSettings", {})
|
|
3303
507
|
.n("BackupClient", "DescribeRegionSettingsCommand")
|
|
3304
|
-
.sc(DescribeRegionSettings$)
|
|
508
|
+
.sc(schemas_0.DescribeRegionSettings$)
|
|
3305
509
|
.build() {
|
|
3306
510
|
}
|
|
3307
511
|
|
|
@@ -3313,7 +517,7 @@ class DescribeReportJobCommand extends smithyClient.Command
|
|
|
3313
517
|
})
|
|
3314
518
|
.s("CryoControllerUserManager", "DescribeReportJob", {})
|
|
3315
519
|
.n("BackupClient", "DescribeReportJobCommand")
|
|
3316
|
-
.sc(DescribeReportJob$)
|
|
520
|
+
.sc(schemas_0.DescribeReportJob$)
|
|
3317
521
|
.build() {
|
|
3318
522
|
}
|
|
3319
523
|
|
|
@@ -3325,7 +529,7 @@ class DescribeReportPlanCommand extends smithyClient.Command
|
|
|
3325
529
|
})
|
|
3326
530
|
.s("CryoControllerUserManager", "DescribeReportPlan", {})
|
|
3327
531
|
.n("BackupClient", "DescribeReportPlanCommand")
|
|
3328
|
-
.sc(DescribeReportPlan$)
|
|
532
|
+
.sc(schemas_0.DescribeReportPlan$)
|
|
3329
533
|
.build() {
|
|
3330
534
|
}
|
|
3331
535
|
|
|
@@ -3337,7 +541,7 @@ class DescribeRestoreJobCommand extends smithyClient.Command
|
|
|
3337
541
|
})
|
|
3338
542
|
.s("CryoControllerUserManager", "DescribeRestoreJob", {})
|
|
3339
543
|
.n("BackupClient", "DescribeRestoreJobCommand")
|
|
3340
|
-
.sc(DescribeRestoreJob$)
|
|
544
|
+
.sc(schemas_0.DescribeRestoreJob$)
|
|
3341
545
|
.build() {
|
|
3342
546
|
}
|
|
3343
547
|
|
|
@@ -3349,7 +553,7 @@ class DescribeScanJobCommand extends smithyClient.Command
|
|
|
3349
553
|
})
|
|
3350
554
|
.s("CryoControllerUserManager", "DescribeScanJob", {})
|
|
3351
555
|
.n("BackupClient", "DescribeScanJobCommand")
|
|
3352
|
-
.sc(DescribeScanJob$)
|
|
556
|
+
.sc(schemas_0.DescribeScanJob$)
|
|
3353
557
|
.build() {
|
|
3354
558
|
}
|
|
3355
559
|
|
|
@@ -3361,7 +565,7 @@ class DisassociateBackupVaultMpaApprovalTeamCommand extends smithyClient.Command
|
|
|
3361
565
|
})
|
|
3362
566
|
.s("CryoControllerUserManager", "DisassociateBackupVaultMpaApprovalTeam", {})
|
|
3363
567
|
.n("BackupClient", "DisassociateBackupVaultMpaApprovalTeamCommand")
|
|
3364
|
-
.sc(DisassociateBackupVaultMpaApprovalTeam$)
|
|
568
|
+
.sc(schemas_0.DisassociateBackupVaultMpaApprovalTeam$)
|
|
3365
569
|
.build() {
|
|
3366
570
|
}
|
|
3367
571
|
|
|
@@ -3373,7 +577,7 @@ class DisassociateRecoveryPointCommand extends smithyClient.Command
|
|
|
3373
577
|
})
|
|
3374
578
|
.s("CryoControllerUserManager", "DisassociateRecoveryPoint", {})
|
|
3375
579
|
.n("BackupClient", "DisassociateRecoveryPointCommand")
|
|
3376
|
-
.sc(DisassociateRecoveryPoint$)
|
|
580
|
+
.sc(schemas_0.DisassociateRecoveryPoint$)
|
|
3377
581
|
.build() {
|
|
3378
582
|
}
|
|
3379
583
|
|
|
@@ -3385,7 +589,7 @@ class DisassociateRecoveryPointFromParentCommand extends smithyClient.Command
|
|
|
3385
589
|
})
|
|
3386
590
|
.s("CryoControllerUserManager", "DisassociateRecoveryPointFromParent", {})
|
|
3387
591
|
.n("BackupClient", "DisassociateRecoveryPointFromParentCommand")
|
|
3388
|
-
.sc(DisassociateRecoveryPointFromParent$)
|
|
592
|
+
.sc(schemas_0.DisassociateRecoveryPointFromParent$)
|
|
3389
593
|
.build() {
|
|
3390
594
|
}
|
|
3391
595
|
|
|
@@ -3397,7 +601,7 @@ class ExportBackupPlanTemplateCommand extends smithyClient.Command
|
|
|
3397
601
|
})
|
|
3398
602
|
.s("CryoControllerUserManager", "ExportBackupPlanTemplate", {})
|
|
3399
603
|
.n("BackupClient", "ExportBackupPlanTemplateCommand")
|
|
3400
|
-
.sc(ExportBackupPlanTemplate$)
|
|
604
|
+
.sc(schemas_0.ExportBackupPlanTemplate$)
|
|
3401
605
|
.build() {
|
|
3402
606
|
}
|
|
3403
607
|
|
|
@@ -3409,7 +613,7 @@ class GetBackupPlanCommand extends smithyClient.Command
|
|
|
3409
613
|
})
|
|
3410
614
|
.s("CryoControllerUserManager", "GetBackupPlan", {})
|
|
3411
615
|
.n("BackupClient", "GetBackupPlanCommand")
|
|
3412
|
-
.sc(GetBackupPlan$)
|
|
616
|
+
.sc(schemas_0.GetBackupPlan$)
|
|
3413
617
|
.build() {
|
|
3414
618
|
}
|
|
3415
619
|
|
|
@@ -3421,7 +625,7 @@ class GetBackupPlanFromJSONCommand extends smithyClient.Command
|
|
|
3421
625
|
})
|
|
3422
626
|
.s("CryoControllerUserManager", "GetBackupPlanFromJSON", {})
|
|
3423
627
|
.n("BackupClient", "GetBackupPlanFromJSONCommand")
|
|
3424
|
-
.sc(GetBackupPlanFromJSON$)
|
|
628
|
+
.sc(schemas_0.GetBackupPlanFromJSON$)
|
|
3425
629
|
.build() {
|
|
3426
630
|
}
|
|
3427
631
|
|
|
@@ -3433,7 +637,7 @@ class GetBackupPlanFromTemplateCommand extends smithyClient.Command
|
|
|
3433
637
|
})
|
|
3434
638
|
.s("CryoControllerUserManager", "GetBackupPlanFromTemplate", {})
|
|
3435
639
|
.n("BackupClient", "GetBackupPlanFromTemplateCommand")
|
|
3436
|
-
.sc(GetBackupPlanFromTemplate$)
|
|
640
|
+
.sc(schemas_0.GetBackupPlanFromTemplate$)
|
|
3437
641
|
.build() {
|
|
3438
642
|
}
|
|
3439
643
|
|
|
@@ -3445,7 +649,7 @@ class GetBackupSelectionCommand extends smithyClient.Command
|
|
|
3445
649
|
})
|
|
3446
650
|
.s("CryoControllerUserManager", "GetBackupSelection", {})
|
|
3447
651
|
.n("BackupClient", "GetBackupSelectionCommand")
|
|
3448
|
-
.sc(GetBackupSelection$)
|
|
652
|
+
.sc(schemas_0.GetBackupSelection$)
|
|
3449
653
|
.build() {
|
|
3450
654
|
}
|
|
3451
655
|
|
|
@@ -3457,7 +661,7 @@ class GetBackupVaultAccessPolicyCommand extends smithyClient.Command
|
|
|
3457
661
|
})
|
|
3458
662
|
.s("CryoControllerUserManager", "GetBackupVaultAccessPolicy", {})
|
|
3459
663
|
.n("BackupClient", "GetBackupVaultAccessPolicyCommand")
|
|
3460
|
-
.sc(GetBackupVaultAccessPolicy$)
|
|
664
|
+
.sc(schemas_0.GetBackupVaultAccessPolicy$)
|
|
3461
665
|
.build() {
|
|
3462
666
|
}
|
|
3463
667
|
|
|
@@ -3469,7 +673,7 @@ class GetBackupVaultNotificationsCommand extends smithyClient.Command
|
|
|
3469
673
|
})
|
|
3470
674
|
.s("CryoControllerUserManager", "GetBackupVaultNotifications", {})
|
|
3471
675
|
.n("BackupClient", "GetBackupVaultNotificationsCommand")
|
|
3472
|
-
.sc(GetBackupVaultNotifications$)
|
|
676
|
+
.sc(schemas_0.GetBackupVaultNotifications$)
|
|
3473
677
|
.build() {
|
|
3474
678
|
}
|
|
3475
679
|
|
|
@@ -3481,7 +685,7 @@ class GetLegalHoldCommand extends smithyClient.Command
|
|
|
3481
685
|
})
|
|
3482
686
|
.s("CryoControllerUserManager", "GetLegalHold", {})
|
|
3483
687
|
.n("BackupClient", "GetLegalHoldCommand")
|
|
3484
|
-
.sc(GetLegalHold$)
|
|
688
|
+
.sc(schemas_0.GetLegalHold$)
|
|
3485
689
|
.build() {
|
|
3486
690
|
}
|
|
3487
691
|
|
|
@@ -3493,7 +697,7 @@ class GetRecoveryPointIndexDetailsCommand extends smithyClient.Command
|
|
|
3493
697
|
})
|
|
3494
698
|
.s("CryoControllerUserManager", "GetRecoveryPointIndexDetails", {})
|
|
3495
699
|
.n("BackupClient", "GetRecoveryPointIndexDetailsCommand")
|
|
3496
|
-
.sc(GetRecoveryPointIndexDetails$)
|
|
700
|
+
.sc(schemas_0.GetRecoveryPointIndexDetails$)
|
|
3497
701
|
.build() {
|
|
3498
702
|
}
|
|
3499
703
|
|
|
@@ -3505,7 +709,7 @@ class GetRecoveryPointRestoreMetadataCommand extends smithyClient.Command
|
|
|
3505
709
|
})
|
|
3506
710
|
.s("CryoControllerUserManager", "GetRecoveryPointRestoreMetadata", {})
|
|
3507
711
|
.n("BackupClient", "GetRecoveryPointRestoreMetadataCommand")
|
|
3508
|
-
.sc(GetRecoveryPointRestoreMetadata$)
|
|
712
|
+
.sc(schemas_0.GetRecoveryPointRestoreMetadata$)
|
|
3509
713
|
.build() {
|
|
3510
714
|
}
|
|
3511
715
|
|
|
@@ -3517,7 +721,7 @@ class GetRestoreJobMetadataCommand extends smithyClient.Command
|
|
|
3517
721
|
})
|
|
3518
722
|
.s("CryoControllerUserManager", "GetRestoreJobMetadata", {})
|
|
3519
723
|
.n("BackupClient", "GetRestoreJobMetadataCommand")
|
|
3520
|
-
.sc(GetRestoreJobMetadata$)
|
|
724
|
+
.sc(schemas_0.GetRestoreJobMetadata$)
|
|
3521
725
|
.build() {
|
|
3522
726
|
}
|
|
3523
727
|
|
|
@@ -3529,7 +733,7 @@ class GetRestoreTestingInferredMetadataCommand extends smithyClient.Command
|
|
|
3529
733
|
})
|
|
3530
734
|
.s("CryoControllerUserManager", "GetRestoreTestingInferredMetadata", {})
|
|
3531
735
|
.n("BackupClient", "GetRestoreTestingInferredMetadataCommand")
|
|
3532
|
-
.sc(GetRestoreTestingInferredMetadata$)
|
|
736
|
+
.sc(schemas_0.GetRestoreTestingInferredMetadata$)
|
|
3533
737
|
.build() {
|
|
3534
738
|
}
|
|
3535
739
|
|
|
@@ -3541,7 +745,7 @@ class GetRestoreTestingPlanCommand extends smithyClient.Command
|
|
|
3541
745
|
})
|
|
3542
746
|
.s("CryoControllerUserManager", "GetRestoreTestingPlan", {})
|
|
3543
747
|
.n("BackupClient", "GetRestoreTestingPlanCommand")
|
|
3544
|
-
.sc(GetRestoreTestingPlan$)
|
|
748
|
+
.sc(schemas_0.GetRestoreTestingPlan$)
|
|
3545
749
|
.build() {
|
|
3546
750
|
}
|
|
3547
751
|
|
|
@@ -3553,7 +757,7 @@ class GetRestoreTestingSelectionCommand extends smithyClient.Command
|
|
|
3553
757
|
})
|
|
3554
758
|
.s("CryoControllerUserManager", "GetRestoreTestingSelection", {})
|
|
3555
759
|
.n("BackupClient", "GetRestoreTestingSelectionCommand")
|
|
3556
|
-
.sc(GetRestoreTestingSelection$)
|
|
760
|
+
.sc(schemas_0.GetRestoreTestingSelection$)
|
|
3557
761
|
.build() {
|
|
3558
762
|
}
|
|
3559
763
|
|
|
@@ -3565,7 +769,7 @@ class GetSupportedResourceTypesCommand extends smithyClient.Command
|
|
|
3565
769
|
})
|
|
3566
770
|
.s("CryoControllerUserManager", "GetSupportedResourceTypes", {})
|
|
3567
771
|
.n("BackupClient", "GetSupportedResourceTypesCommand")
|
|
3568
|
-
.sc(GetSupportedResourceTypes$)
|
|
772
|
+
.sc(schemas_0.GetSupportedResourceTypes$)
|
|
3569
773
|
.build() {
|
|
3570
774
|
}
|
|
3571
775
|
|
|
@@ -3577,7 +781,7 @@ class GetTieringConfigurationCommand extends smithyClient.Command
|
|
|
3577
781
|
})
|
|
3578
782
|
.s("CryoControllerUserManager", "GetTieringConfiguration", {})
|
|
3579
783
|
.n("BackupClient", "GetTieringConfigurationCommand")
|
|
3580
|
-
.sc(GetTieringConfiguration$)
|
|
784
|
+
.sc(schemas_0.GetTieringConfiguration$)
|
|
3581
785
|
.build() {
|
|
3582
786
|
}
|
|
3583
787
|
|
|
@@ -3589,7 +793,7 @@ class ListBackupJobsCommand extends smithyClient.Command
|
|
|
3589
793
|
})
|
|
3590
794
|
.s("CryoControllerUserManager", "ListBackupJobs", {})
|
|
3591
795
|
.n("BackupClient", "ListBackupJobsCommand")
|
|
3592
|
-
.sc(ListBackupJobs$)
|
|
796
|
+
.sc(schemas_0.ListBackupJobs$)
|
|
3593
797
|
.build() {
|
|
3594
798
|
}
|
|
3595
799
|
|
|
@@ -3601,7 +805,7 @@ class ListBackupJobSummariesCommand extends smithyClient.Command
|
|
|
3601
805
|
})
|
|
3602
806
|
.s("CryoControllerUserManager", "ListBackupJobSummaries", {})
|
|
3603
807
|
.n("BackupClient", "ListBackupJobSummariesCommand")
|
|
3604
|
-
.sc(ListBackupJobSummaries$)
|
|
808
|
+
.sc(schemas_0.ListBackupJobSummaries$)
|
|
3605
809
|
.build() {
|
|
3606
810
|
}
|
|
3607
811
|
|
|
@@ -3613,7 +817,7 @@ class ListBackupPlansCommand extends smithyClient.Command
|
|
|
3613
817
|
})
|
|
3614
818
|
.s("CryoControllerUserManager", "ListBackupPlans", {})
|
|
3615
819
|
.n("BackupClient", "ListBackupPlansCommand")
|
|
3616
|
-
.sc(ListBackupPlans$)
|
|
820
|
+
.sc(schemas_0.ListBackupPlans$)
|
|
3617
821
|
.build() {
|
|
3618
822
|
}
|
|
3619
823
|
|
|
@@ -3625,7 +829,7 @@ class ListBackupPlanTemplatesCommand extends smithyClient.Command
|
|
|
3625
829
|
})
|
|
3626
830
|
.s("CryoControllerUserManager", "ListBackupPlanTemplates", {})
|
|
3627
831
|
.n("BackupClient", "ListBackupPlanTemplatesCommand")
|
|
3628
|
-
.sc(ListBackupPlanTemplates$)
|
|
832
|
+
.sc(schemas_0.ListBackupPlanTemplates$)
|
|
3629
833
|
.build() {
|
|
3630
834
|
}
|
|
3631
835
|
|
|
@@ -3637,7 +841,7 @@ class ListBackupPlanVersionsCommand extends smithyClient.Command
|
|
|
3637
841
|
})
|
|
3638
842
|
.s("CryoControllerUserManager", "ListBackupPlanVersions", {})
|
|
3639
843
|
.n("BackupClient", "ListBackupPlanVersionsCommand")
|
|
3640
|
-
.sc(ListBackupPlanVersions$)
|
|
844
|
+
.sc(schemas_0.ListBackupPlanVersions$)
|
|
3641
845
|
.build() {
|
|
3642
846
|
}
|
|
3643
847
|
|
|
@@ -3649,7 +853,7 @@ class ListBackupSelectionsCommand extends smithyClient.Command
|
|
|
3649
853
|
})
|
|
3650
854
|
.s("CryoControllerUserManager", "ListBackupSelections", {})
|
|
3651
855
|
.n("BackupClient", "ListBackupSelectionsCommand")
|
|
3652
|
-
.sc(ListBackupSelections$)
|
|
856
|
+
.sc(schemas_0.ListBackupSelections$)
|
|
3653
857
|
.build() {
|
|
3654
858
|
}
|
|
3655
859
|
|
|
@@ -3661,7 +865,7 @@ class ListBackupVaultsCommand extends smithyClient.Command
|
|
|
3661
865
|
})
|
|
3662
866
|
.s("CryoControllerUserManager", "ListBackupVaults", {})
|
|
3663
867
|
.n("BackupClient", "ListBackupVaultsCommand")
|
|
3664
|
-
.sc(ListBackupVaults$)
|
|
868
|
+
.sc(schemas_0.ListBackupVaults$)
|
|
3665
869
|
.build() {
|
|
3666
870
|
}
|
|
3667
871
|
|
|
@@ -3673,7 +877,7 @@ class ListCopyJobsCommand extends smithyClient.Command
|
|
|
3673
877
|
})
|
|
3674
878
|
.s("CryoControllerUserManager", "ListCopyJobs", {})
|
|
3675
879
|
.n("BackupClient", "ListCopyJobsCommand")
|
|
3676
|
-
.sc(ListCopyJobs$)
|
|
880
|
+
.sc(schemas_0.ListCopyJobs$)
|
|
3677
881
|
.build() {
|
|
3678
882
|
}
|
|
3679
883
|
|
|
@@ -3685,7 +889,7 @@ class ListCopyJobSummariesCommand extends smithyClient.Command
|
|
|
3685
889
|
})
|
|
3686
890
|
.s("CryoControllerUserManager", "ListCopyJobSummaries", {})
|
|
3687
891
|
.n("BackupClient", "ListCopyJobSummariesCommand")
|
|
3688
|
-
.sc(ListCopyJobSummaries$)
|
|
892
|
+
.sc(schemas_0.ListCopyJobSummaries$)
|
|
3689
893
|
.build() {
|
|
3690
894
|
}
|
|
3691
895
|
|
|
@@ -3697,7 +901,7 @@ class ListFrameworksCommand extends smithyClient.Command
|
|
|
3697
901
|
})
|
|
3698
902
|
.s("CryoControllerUserManager", "ListFrameworks", {})
|
|
3699
903
|
.n("BackupClient", "ListFrameworksCommand")
|
|
3700
|
-
.sc(ListFrameworks$)
|
|
904
|
+
.sc(schemas_0.ListFrameworks$)
|
|
3701
905
|
.build() {
|
|
3702
906
|
}
|
|
3703
907
|
|
|
@@ -3709,7 +913,7 @@ class ListIndexedRecoveryPointsCommand extends smithyClient.Command
|
|
|
3709
913
|
})
|
|
3710
914
|
.s("CryoControllerUserManager", "ListIndexedRecoveryPoints", {})
|
|
3711
915
|
.n("BackupClient", "ListIndexedRecoveryPointsCommand")
|
|
3712
|
-
.sc(ListIndexedRecoveryPoints$)
|
|
916
|
+
.sc(schemas_0.ListIndexedRecoveryPoints$)
|
|
3713
917
|
.build() {
|
|
3714
918
|
}
|
|
3715
919
|
|
|
@@ -3721,7 +925,7 @@ class ListLegalHoldsCommand extends smithyClient.Command
|
|
|
3721
925
|
})
|
|
3722
926
|
.s("CryoControllerUserManager", "ListLegalHolds", {})
|
|
3723
927
|
.n("BackupClient", "ListLegalHoldsCommand")
|
|
3724
|
-
.sc(ListLegalHolds$)
|
|
928
|
+
.sc(schemas_0.ListLegalHolds$)
|
|
3725
929
|
.build() {
|
|
3726
930
|
}
|
|
3727
931
|
|
|
@@ -3733,7 +937,7 @@ class ListProtectedResourcesByBackupVaultCommand extends smithyClient.Command
|
|
|
3733
937
|
})
|
|
3734
938
|
.s("CryoControllerUserManager", "ListProtectedResourcesByBackupVault", {})
|
|
3735
939
|
.n("BackupClient", "ListProtectedResourcesByBackupVaultCommand")
|
|
3736
|
-
.sc(ListProtectedResourcesByBackupVault$)
|
|
940
|
+
.sc(schemas_0.ListProtectedResourcesByBackupVault$)
|
|
3737
941
|
.build() {
|
|
3738
942
|
}
|
|
3739
943
|
|
|
@@ -3745,7 +949,7 @@ class ListProtectedResourcesCommand extends smithyClient.Command
|
|
|
3745
949
|
})
|
|
3746
950
|
.s("CryoControllerUserManager", "ListProtectedResources", {})
|
|
3747
951
|
.n("BackupClient", "ListProtectedResourcesCommand")
|
|
3748
|
-
.sc(ListProtectedResources$)
|
|
952
|
+
.sc(schemas_0.ListProtectedResources$)
|
|
3749
953
|
.build() {
|
|
3750
954
|
}
|
|
3751
955
|
|
|
@@ -3757,7 +961,7 @@ class ListRecoveryPointsByBackupVaultCommand extends smithyClient.Command
|
|
|
3757
961
|
})
|
|
3758
962
|
.s("CryoControllerUserManager", "ListRecoveryPointsByBackupVault", {})
|
|
3759
963
|
.n("BackupClient", "ListRecoveryPointsByBackupVaultCommand")
|
|
3760
|
-
.sc(ListRecoveryPointsByBackupVault$)
|
|
964
|
+
.sc(schemas_0.ListRecoveryPointsByBackupVault$)
|
|
3761
965
|
.build() {
|
|
3762
966
|
}
|
|
3763
967
|
|
|
@@ -3769,7 +973,7 @@ class ListRecoveryPointsByLegalHoldCommand extends smithyClient.Command
|
|
|
3769
973
|
})
|
|
3770
974
|
.s("CryoControllerUserManager", "ListRecoveryPointsByLegalHold", {})
|
|
3771
975
|
.n("BackupClient", "ListRecoveryPointsByLegalHoldCommand")
|
|
3772
|
-
.sc(ListRecoveryPointsByLegalHold$)
|
|
976
|
+
.sc(schemas_0.ListRecoveryPointsByLegalHold$)
|
|
3773
977
|
.build() {
|
|
3774
978
|
}
|
|
3775
979
|
|
|
@@ -3781,7 +985,7 @@ class ListRecoveryPointsByResourceCommand extends smithyClient.Command
|
|
|
3781
985
|
})
|
|
3782
986
|
.s("CryoControllerUserManager", "ListRecoveryPointsByResource", {})
|
|
3783
987
|
.n("BackupClient", "ListRecoveryPointsByResourceCommand")
|
|
3784
|
-
.sc(ListRecoveryPointsByResource$)
|
|
988
|
+
.sc(schemas_0.ListRecoveryPointsByResource$)
|
|
3785
989
|
.build() {
|
|
3786
990
|
}
|
|
3787
991
|
|
|
@@ -3793,7 +997,7 @@ class ListReportJobsCommand extends smithyClient.Command
|
|
|
3793
997
|
})
|
|
3794
998
|
.s("CryoControllerUserManager", "ListReportJobs", {})
|
|
3795
999
|
.n("BackupClient", "ListReportJobsCommand")
|
|
3796
|
-
.sc(ListReportJobs$)
|
|
1000
|
+
.sc(schemas_0.ListReportJobs$)
|
|
3797
1001
|
.build() {
|
|
3798
1002
|
}
|
|
3799
1003
|
|
|
@@ -3805,7 +1009,7 @@ class ListReportPlansCommand extends smithyClient.Command
|
|
|
3805
1009
|
})
|
|
3806
1010
|
.s("CryoControllerUserManager", "ListReportPlans", {})
|
|
3807
1011
|
.n("BackupClient", "ListReportPlansCommand")
|
|
3808
|
-
.sc(ListReportPlans$)
|
|
1012
|
+
.sc(schemas_0.ListReportPlans$)
|
|
3809
1013
|
.build() {
|
|
3810
1014
|
}
|
|
3811
1015
|
|
|
@@ -3817,7 +1021,7 @@ class ListRestoreAccessBackupVaultsCommand extends smithyClient.Command
|
|
|
3817
1021
|
})
|
|
3818
1022
|
.s("CryoControllerUserManager", "ListRestoreAccessBackupVaults", {})
|
|
3819
1023
|
.n("BackupClient", "ListRestoreAccessBackupVaultsCommand")
|
|
3820
|
-
.sc(ListRestoreAccessBackupVaults$)
|
|
1024
|
+
.sc(schemas_0.ListRestoreAccessBackupVaults$)
|
|
3821
1025
|
.build() {
|
|
3822
1026
|
}
|
|
3823
1027
|
|
|
@@ -3829,7 +1033,7 @@ class ListRestoreJobsByProtectedResourceCommand extends smithyClient.Command
|
|
|
3829
1033
|
})
|
|
3830
1034
|
.s("CryoControllerUserManager", "ListRestoreJobsByProtectedResource", {})
|
|
3831
1035
|
.n("BackupClient", "ListRestoreJobsByProtectedResourceCommand")
|
|
3832
|
-
.sc(ListRestoreJobsByProtectedResource$)
|
|
1036
|
+
.sc(schemas_0.ListRestoreJobsByProtectedResource$)
|
|
3833
1037
|
.build() {
|
|
3834
1038
|
}
|
|
3835
1039
|
|
|
@@ -3841,7 +1045,7 @@ class ListRestoreJobsCommand extends smithyClient.Command
|
|
|
3841
1045
|
})
|
|
3842
1046
|
.s("CryoControllerUserManager", "ListRestoreJobs", {})
|
|
3843
1047
|
.n("BackupClient", "ListRestoreJobsCommand")
|
|
3844
|
-
.sc(ListRestoreJobs$)
|
|
1048
|
+
.sc(schemas_0.ListRestoreJobs$)
|
|
3845
1049
|
.build() {
|
|
3846
1050
|
}
|
|
3847
1051
|
|
|
@@ -3853,7 +1057,7 @@ class ListRestoreJobSummariesCommand extends smithyClient.Command
|
|
|
3853
1057
|
})
|
|
3854
1058
|
.s("CryoControllerUserManager", "ListRestoreJobSummaries", {})
|
|
3855
1059
|
.n("BackupClient", "ListRestoreJobSummariesCommand")
|
|
3856
|
-
.sc(ListRestoreJobSummaries$)
|
|
1060
|
+
.sc(schemas_0.ListRestoreJobSummaries$)
|
|
3857
1061
|
.build() {
|
|
3858
1062
|
}
|
|
3859
1063
|
|
|
@@ -3865,7 +1069,7 @@ class ListRestoreTestingPlansCommand extends smithyClient.Command
|
|
|
3865
1069
|
})
|
|
3866
1070
|
.s("CryoControllerUserManager", "ListRestoreTestingPlans", {})
|
|
3867
1071
|
.n("BackupClient", "ListRestoreTestingPlansCommand")
|
|
3868
|
-
.sc(ListRestoreTestingPlans$)
|
|
1072
|
+
.sc(schemas_0.ListRestoreTestingPlans$)
|
|
3869
1073
|
.build() {
|
|
3870
1074
|
}
|
|
3871
1075
|
|
|
@@ -3877,7 +1081,7 @@ class ListRestoreTestingSelectionsCommand extends smithyClient.Command
|
|
|
3877
1081
|
})
|
|
3878
1082
|
.s("CryoControllerUserManager", "ListRestoreTestingSelections", {})
|
|
3879
1083
|
.n("BackupClient", "ListRestoreTestingSelectionsCommand")
|
|
3880
|
-
.sc(ListRestoreTestingSelections$)
|
|
1084
|
+
.sc(schemas_0.ListRestoreTestingSelections$)
|
|
3881
1085
|
.build() {
|
|
3882
1086
|
}
|
|
3883
1087
|
|
|
@@ -3889,7 +1093,7 @@ class ListScanJobsCommand extends smithyClient.Command
|
|
|
3889
1093
|
})
|
|
3890
1094
|
.s("CryoControllerUserManager", "ListScanJobs", {})
|
|
3891
1095
|
.n("BackupClient", "ListScanJobsCommand")
|
|
3892
|
-
.sc(ListScanJobs$)
|
|
1096
|
+
.sc(schemas_0.ListScanJobs$)
|
|
3893
1097
|
.build() {
|
|
3894
1098
|
}
|
|
3895
1099
|
|
|
@@ -3901,7 +1105,7 @@ class ListScanJobSummariesCommand extends smithyClient.Command
|
|
|
3901
1105
|
})
|
|
3902
1106
|
.s("CryoControllerUserManager", "ListScanJobSummaries", {})
|
|
3903
1107
|
.n("BackupClient", "ListScanJobSummariesCommand")
|
|
3904
|
-
.sc(ListScanJobSummaries$)
|
|
1108
|
+
.sc(schemas_0.ListScanJobSummaries$)
|
|
3905
1109
|
.build() {
|
|
3906
1110
|
}
|
|
3907
1111
|
|
|
@@ -3913,7 +1117,7 @@ class ListTagsCommand extends smithyClient.Command
|
|
|
3913
1117
|
})
|
|
3914
1118
|
.s("CryoControllerUserManager", "ListTags", {})
|
|
3915
1119
|
.n("BackupClient", "ListTagsCommand")
|
|
3916
|
-
.sc(ListTags$)
|
|
1120
|
+
.sc(schemas_0.ListTags$)
|
|
3917
1121
|
.build() {
|
|
3918
1122
|
}
|
|
3919
1123
|
|
|
@@ -3925,7 +1129,7 @@ class ListTieringConfigurationsCommand extends smithyClient.Command
|
|
|
3925
1129
|
})
|
|
3926
1130
|
.s("CryoControllerUserManager", "ListTieringConfigurations", {})
|
|
3927
1131
|
.n("BackupClient", "ListTieringConfigurationsCommand")
|
|
3928
|
-
.sc(ListTieringConfigurations$)
|
|
1132
|
+
.sc(schemas_0.ListTieringConfigurations$)
|
|
3929
1133
|
.build() {
|
|
3930
1134
|
}
|
|
3931
1135
|
|
|
@@ -3937,7 +1141,7 @@ class PutBackupVaultAccessPolicyCommand extends smithyClient.Command
|
|
|
3937
1141
|
})
|
|
3938
1142
|
.s("CryoControllerUserManager", "PutBackupVaultAccessPolicy", {})
|
|
3939
1143
|
.n("BackupClient", "PutBackupVaultAccessPolicyCommand")
|
|
3940
|
-
.sc(PutBackupVaultAccessPolicy$)
|
|
1144
|
+
.sc(schemas_0.PutBackupVaultAccessPolicy$)
|
|
3941
1145
|
.build() {
|
|
3942
1146
|
}
|
|
3943
1147
|
|
|
@@ -3949,7 +1153,7 @@ class PutBackupVaultLockConfigurationCommand extends smithyClient.Command
|
|
|
3949
1153
|
})
|
|
3950
1154
|
.s("CryoControllerUserManager", "PutBackupVaultLockConfiguration", {})
|
|
3951
1155
|
.n("BackupClient", "PutBackupVaultLockConfigurationCommand")
|
|
3952
|
-
.sc(PutBackupVaultLockConfiguration$)
|
|
1156
|
+
.sc(schemas_0.PutBackupVaultLockConfiguration$)
|
|
3953
1157
|
.build() {
|
|
3954
1158
|
}
|
|
3955
1159
|
|
|
@@ -3961,7 +1165,7 @@ class PutBackupVaultNotificationsCommand extends smithyClient.Command
|
|
|
3961
1165
|
})
|
|
3962
1166
|
.s("CryoControllerUserManager", "PutBackupVaultNotifications", {})
|
|
3963
1167
|
.n("BackupClient", "PutBackupVaultNotificationsCommand")
|
|
3964
|
-
.sc(PutBackupVaultNotifications$)
|
|
1168
|
+
.sc(schemas_0.PutBackupVaultNotifications$)
|
|
3965
1169
|
.build() {
|
|
3966
1170
|
}
|
|
3967
1171
|
|
|
@@ -3973,7 +1177,7 @@ class PutRestoreValidationResultCommand extends smithyClient.Command
|
|
|
3973
1177
|
})
|
|
3974
1178
|
.s("CryoControllerUserManager", "PutRestoreValidationResult", {})
|
|
3975
1179
|
.n("BackupClient", "PutRestoreValidationResultCommand")
|
|
3976
|
-
.sc(PutRestoreValidationResult$)
|
|
1180
|
+
.sc(schemas_0.PutRestoreValidationResult$)
|
|
3977
1181
|
.build() {
|
|
3978
1182
|
}
|
|
3979
1183
|
|
|
@@ -3985,7 +1189,7 @@ class RevokeRestoreAccessBackupVaultCommand extends smithyClient.Command
|
|
|
3985
1189
|
})
|
|
3986
1190
|
.s("CryoControllerUserManager", "RevokeRestoreAccessBackupVault", {})
|
|
3987
1191
|
.n("BackupClient", "RevokeRestoreAccessBackupVaultCommand")
|
|
3988
|
-
.sc(RevokeRestoreAccessBackupVault$)
|
|
1192
|
+
.sc(schemas_0.RevokeRestoreAccessBackupVault$)
|
|
3989
1193
|
.build() {
|
|
3990
1194
|
}
|
|
3991
1195
|
|
|
@@ -3997,7 +1201,7 @@ class StartBackupJobCommand extends smithyClient.Command
|
|
|
3997
1201
|
})
|
|
3998
1202
|
.s("CryoControllerUserManager", "StartBackupJob", {})
|
|
3999
1203
|
.n("BackupClient", "StartBackupJobCommand")
|
|
4000
|
-
.sc(StartBackupJob$)
|
|
1204
|
+
.sc(schemas_0.StartBackupJob$)
|
|
4001
1205
|
.build() {
|
|
4002
1206
|
}
|
|
4003
1207
|
|
|
@@ -4009,7 +1213,7 @@ class StartCopyJobCommand extends smithyClient.Command
|
|
|
4009
1213
|
})
|
|
4010
1214
|
.s("CryoControllerUserManager", "StartCopyJob", {})
|
|
4011
1215
|
.n("BackupClient", "StartCopyJobCommand")
|
|
4012
|
-
.sc(StartCopyJob$)
|
|
1216
|
+
.sc(schemas_0.StartCopyJob$)
|
|
4013
1217
|
.build() {
|
|
4014
1218
|
}
|
|
4015
1219
|
|
|
@@ -4021,7 +1225,7 @@ class StartReportJobCommand extends smithyClient.Command
|
|
|
4021
1225
|
})
|
|
4022
1226
|
.s("CryoControllerUserManager", "StartReportJob", {})
|
|
4023
1227
|
.n("BackupClient", "StartReportJobCommand")
|
|
4024
|
-
.sc(StartReportJob$)
|
|
1228
|
+
.sc(schemas_0.StartReportJob$)
|
|
4025
1229
|
.build() {
|
|
4026
1230
|
}
|
|
4027
1231
|
|
|
@@ -4033,7 +1237,7 @@ class StartRestoreJobCommand extends smithyClient.Command
|
|
|
4033
1237
|
})
|
|
4034
1238
|
.s("CryoControllerUserManager", "StartRestoreJob", {})
|
|
4035
1239
|
.n("BackupClient", "StartRestoreJobCommand")
|
|
4036
|
-
.sc(StartRestoreJob$)
|
|
1240
|
+
.sc(schemas_0.StartRestoreJob$)
|
|
4037
1241
|
.build() {
|
|
4038
1242
|
}
|
|
4039
1243
|
|
|
@@ -4045,7 +1249,7 @@ class StartScanJobCommand extends smithyClient.Command
|
|
|
4045
1249
|
})
|
|
4046
1250
|
.s("CryoControllerUserManager", "StartScanJob", {})
|
|
4047
1251
|
.n("BackupClient", "StartScanJobCommand")
|
|
4048
|
-
.sc(StartScanJob$)
|
|
1252
|
+
.sc(schemas_0.StartScanJob$)
|
|
4049
1253
|
.build() {
|
|
4050
1254
|
}
|
|
4051
1255
|
|
|
@@ -4057,7 +1261,7 @@ class StopBackupJobCommand extends smithyClient.Command
|
|
|
4057
1261
|
})
|
|
4058
1262
|
.s("CryoControllerUserManager", "StopBackupJob", {})
|
|
4059
1263
|
.n("BackupClient", "StopBackupJobCommand")
|
|
4060
|
-
.sc(StopBackupJob$)
|
|
1264
|
+
.sc(schemas_0.StopBackupJob$)
|
|
4061
1265
|
.build() {
|
|
4062
1266
|
}
|
|
4063
1267
|
|
|
@@ -4069,7 +1273,7 @@ class TagResourceCommand extends smithyClient.Command
|
|
|
4069
1273
|
})
|
|
4070
1274
|
.s("CryoControllerUserManager", "TagResource", {})
|
|
4071
1275
|
.n("BackupClient", "TagResourceCommand")
|
|
4072
|
-
.sc(TagResource$)
|
|
1276
|
+
.sc(schemas_0.TagResource$)
|
|
4073
1277
|
.build() {
|
|
4074
1278
|
}
|
|
4075
1279
|
|
|
@@ -4081,7 +1285,7 @@ class UntagResourceCommand extends smithyClient.Command
|
|
|
4081
1285
|
})
|
|
4082
1286
|
.s("CryoControllerUserManager", "UntagResource", {})
|
|
4083
1287
|
.n("BackupClient", "UntagResourceCommand")
|
|
4084
|
-
.sc(UntagResource$)
|
|
1288
|
+
.sc(schemas_0.UntagResource$)
|
|
4085
1289
|
.build() {
|
|
4086
1290
|
}
|
|
4087
1291
|
|
|
@@ -4093,7 +1297,7 @@ class UpdateBackupPlanCommand extends smithyClient.Command
|
|
|
4093
1297
|
})
|
|
4094
1298
|
.s("CryoControllerUserManager", "UpdateBackupPlan", {})
|
|
4095
1299
|
.n("BackupClient", "UpdateBackupPlanCommand")
|
|
4096
|
-
.sc(UpdateBackupPlan$)
|
|
1300
|
+
.sc(schemas_0.UpdateBackupPlan$)
|
|
4097
1301
|
.build() {
|
|
4098
1302
|
}
|
|
4099
1303
|
|
|
@@ -4105,7 +1309,7 @@ class UpdateFrameworkCommand extends smithyClient.Command
|
|
|
4105
1309
|
})
|
|
4106
1310
|
.s("CryoControllerUserManager", "UpdateFramework", {})
|
|
4107
1311
|
.n("BackupClient", "UpdateFrameworkCommand")
|
|
4108
|
-
.sc(UpdateFramework$)
|
|
1312
|
+
.sc(schemas_0.UpdateFramework$)
|
|
4109
1313
|
.build() {
|
|
4110
1314
|
}
|
|
4111
1315
|
|
|
@@ -4117,7 +1321,7 @@ class UpdateGlobalSettingsCommand extends smithyClient.Command
|
|
|
4117
1321
|
})
|
|
4118
1322
|
.s("CryoControllerUserManager", "UpdateGlobalSettings", {})
|
|
4119
1323
|
.n("BackupClient", "UpdateGlobalSettingsCommand")
|
|
4120
|
-
.sc(UpdateGlobalSettings$)
|
|
1324
|
+
.sc(schemas_0.UpdateGlobalSettings$)
|
|
4121
1325
|
.build() {
|
|
4122
1326
|
}
|
|
4123
1327
|
|
|
@@ -4129,7 +1333,7 @@ class UpdateRecoveryPointIndexSettingsCommand extends smithyClient.Command
|
|
|
4129
1333
|
})
|
|
4130
1334
|
.s("CryoControllerUserManager", "UpdateRecoveryPointIndexSettings", {})
|
|
4131
1335
|
.n("BackupClient", "UpdateRecoveryPointIndexSettingsCommand")
|
|
4132
|
-
.sc(UpdateRecoveryPointIndexSettings$)
|
|
1336
|
+
.sc(schemas_0.UpdateRecoveryPointIndexSettings$)
|
|
4133
1337
|
.build() {
|
|
4134
1338
|
}
|
|
4135
1339
|
|
|
@@ -4141,7 +1345,7 @@ class UpdateRecoveryPointLifecycleCommand extends smithyClient.Command
|
|
|
4141
1345
|
})
|
|
4142
1346
|
.s("CryoControllerUserManager", "UpdateRecoveryPointLifecycle", {})
|
|
4143
1347
|
.n("BackupClient", "UpdateRecoveryPointLifecycleCommand")
|
|
4144
|
-
.sc(UpdateRecoveryPointLifecycle$)
|
|
1348
|
+
.sc(schemas_0.UpdateRecoveryPointLifecycle$)
|
|
4145
1349
|
.build() {
|
|
4146
1350
|
}
|
|
4147
1351
|
|
|
@@ -4153,7 +1357,7 @@ class UpdateRegionSettingsCommand extends smithyClient.Command
|
|
|
4153
1357
|
})
|
|
4154
1358
|
.s("CryoControllerUserManager", "UpdateRegionSettings", {})
|
|
4155
1359
|
.n("BackupClient", "UpdateRegionSettingsCommand")
|
|
4156
|
-
.sc(UpdateRegionSettings$)
|
|
1360
|
+
.sc(schemas_0.UpdateRegionSettings$)
|
|
4157
1361
|
.build() {
|
|
4158
1362
|
}
|
|
4159
1363
|
|
|
@@ -4165,7 +1369,7 @@ class UpdateReportPlanCommand extends smithyClient.Command
|
|
|
4165
1369
|
})
|
|
4166
1370
|
.s("CryoControllerUserManager", "UpdateReportPlan", {})
|
|
4167
1371
|
.n("BackupClient", "UpdateReportPlanCommand")
|
|
4168
|
-
.sc(UpdateReportPlan$)
|
|
1372
|
+
.sc(schemas_0.UpdateReportPlan$)
|
|
4169
1373
|
.build() {
|
|
4170
1374
|
}
|
|
4171
1375
|
|
|
@@ -4177,7 +1381,7 @@ class UpdateRestoreTestingPlanCommand extends smithyClient.Command
|
|
|
4177
1381
|
})
|
|
4178
1382
|
.s("CryoControllerUserManager", "UpdateRestoreTestingPlan", {})
|
|
4179
1383
|
.n("BackupClient", "UpdateRestoreTestingPlanCommand")
|
|
4180
|
-
.sc(UpdateRestoreTestingPlan$)
|
|
1384
|
+
.sc(schemas_0.UpdateRestoreTestingPlan$)
|
|
4181
1385
|
.build() {
|
|
4182
1386
|
}
|
|
4183
1387
|
|
|
@@ -4189,7 +1393,7 @@ class UpdateRestoreTestingSelectionCommand extends smithyClient.Command
|
|
|
4189
1393
|
})
|
|
4190
1394
|
.s("CryoControllerUserManager", "UpdateRestoreTestingSelection", {})
|
|
4191
1395
|
.n("BackupClient", "UpdateRestoreTestingSelectionCommand")
|
|
4192
|
-
.sc(UpdateRestoreTestingSelection$)
|
|
1396
|
+
.sc(schemas_0.UpdateRestoreTestingSelection$)
|
|
4193
1397
|
.build() {
|
|
4194
1398
|
}
|
|
4195
1399
|
|
|
@@ -4201,7 +1405,7 @@ class UpdateTieringConfigurationCommand extends smithyClient.Command
|
|
|
4201
1405
|
})
|
|
4202
1406
|
.s("CryoControllerUserManager", "UpdateTieringConfiguration", {})
|
|
4203
1407
|
.n("BackupClient", "UpdateTieringConfigurationCommand")
|
|
4204
|
-
.sc(UpdateTieringConfiguration$)
|
|
1408
|
+
.sc(schemas_0.UpdateTieringConfiguration$)
|
|
4205
1409
|
.build() {
|
|
4206
1410
|
}
|
|
4207
1411
|
|
|
@@ -4632,538 +1836,151 @@ Object.defineProperty(exports, "__Client", {
|
|
|
4632
1836
|
enumerable: true,
|
|
4633
1837
|
get: function () { return smithyClient.Client; }
|
|
4634
1838
|
});
|
|
4635
|
-
exports
|
|
4636
|
-
|
|
1839
|
+
Object.defineProperty(exports, "BackupServiceException", {
|
|
1840
|
+
enumerable: true,
|
|
1841
|
+
get: function () { return BackupServiceException.BackupServiceException; }
|
|
1842
|
+
});
|
|
4637
1843
|
exports.AggregationPeriod = AggregationPeriod;
|
|
4638
|
-
exports.AlreadyExistsException = AlreadyExistsException;
|
|
4639
|
-
exports.AlreadyExistsException$ = AlreadyExistsException$;
|
|
4640
|
-
exports.AssociateBackupVaultMpaApprovalTeam$ = AssociateBackupVaultMpaApprovalTeam$;
|
|
4641
1844
|
exports.AssociateBackupVaultMpaApprovalTeamCommand = AssociateBackupVaultMpaApprovalTeamCommand;
|
|
4642
|
-
exports.AssociateBackupVaultMpaApprovalTeamInput$ = AssociateBackupVaultMpaApprovalTeamInput$;
|
|
4643
1845
|
exports.Backup = Backup;
|
|
4644
1846
|
exports.BackupClient = BackupClient;
|
|
4645
|
-
exports.BackupJob$ = BackupJob$;
|
|
4646
1847
|
exports.BackupJobState = BackupJobState;
|
|
4647
1848
|
exports.BackupJobStatus = BackupJobStatus;
|
|
4648
|
-
exports.BackupJobSummary$ = BackupJobSummary$;
|
|
4649
|
-
exports.BackupPlan$ = BackupPlan$;
|
|
4650
|
-
exports.BackupPlanInput$ = BackupPlanInput$;
|
|
4651
|
-
exports.BackupPlanTemplatesListMember$ = BackupPlanTemplatesListMember$;
|
|
4652
|
-
exports.BackupPlansListMember$ = BackupPlansListMember$;
|
|
4653
|
-
exports.BackupRule$ = BackupRule$;
|
|
4654
|
-
exports.BackupRuleInput$ = BackupRuleInput$;
|
|
4655
|
-
exports.BackupSelection$ = BackupSelection$;
|
|
4656
|
-
exports.BackupSelectionsListMember$ = BackupSelectionsListMember$;
|
|
4657
|
-
exports.BackupServiceException = BackupServiceException;
|
|
4658
|
-
exports.BackupServiceException$ = BackupServiceException$;
|
|
4659
1849
|
exports.BackupVaultEvent = BackupVaultEvent;
|
|
4660
|
-
exports.BackupVaultListMember$ = BackupVaultListMember$;
|
|
4661
|
-
exports.CalculatedLifecycle$ = CalculatedLifecycle$;
|
|
4662
|
-
exports.CancelLegalHold$ = CancelLegalHold$;
|
|
4663
1850
|
exports.CancelLegalHoldCommand = CancelLegalHoldCommand;
|
|
4664
|
-
exports.CancelLegalHoldInput$ = CancelLegalHoldInput$;
|
|
4665
|
-
exports.CancelLegalHoldOutput$ = CancelLegalHoldOutput$;
|
|
4666
|
-
exports.Condition$ = Condition$;
|
|
4667
|
-
exports.ConditionParameter$ = ConditionParameter$;
|
|
4668
1851
|
exports.ConditionType = ConditionType;
|
|
4669
|
-
exports.Conditions$ = Conditions$;
|
|
4670
|
-
exports.ConflictException = ConflictException;
|
|
4671
|
-
exports.ConflictException$ = ConflictException$;
|
|
4672
|
-
exports.ControlInputParameter$ = ControlInputParameter$;
|
|
4673
|
-
exports.ControlScope$ = ControlScope$;
|
|
4674
|
-
exports.CopyAction$ = CopyAction$;
|
|
4675
|
-
exports.CopyJob$ = CopyJob$;
|
|
4676
1852
|
exports.CopyJobState = CopyJobState;
|
|
4677
1853
|
exports.CopyJobStatus = CopyJobStatus;
|
|
4678
|
-
exports.CopyJobSummary$ = CopyJobSummary$;
|
|
4679
|
-
exports.CreateBackupPlan$ = CreateBackupPlan$;
|
|
4680
1854
|
exports.CreateBackupPlanCommand = CreateBackupPlanCommand;
|
|
4681
|
-
exports.CreateBackupPlanInput$ = CreateBackupPlanInput$;
|
|
4682
|
-
exports.CreateBackupPlanOutput$ = CreateBackupPlanOutput$;
|
|
4683
|
-
exports.CreateBackupSelection$ = CreateBackupSelection$;
|
|
4684
1855
|
exports.CreateBackupSelectionCommand = CreateBackupSelectionCommand;
|
|
4685
|
-
exports.CreateBackupSelectionInput$ = CreateBackupSelectionInput$;
|
|
4686
|
-
exports.CreateBackupSelectionOutput$ = CreateBackupSelectionOutput$;
|
|
4687
|
-
exports.CreateBackupVault$ = CreateBackupVault$;
|
|
4688
1856
|
exports.CreateBackupVaultCommand = CreateBackupVaultCommand;
|
|
4689
|
-
exports.CreateBackupVaultInput$ = CreateBackupVaultInput$;
|
|
4690
|
-
exports.CreateBackupVaultOutput$ = CreateBackupVaultOutput$;
|
|
4691
|
-
exports.CreateFramework$ = CreateFramework$;
|
|
4692
1857
|
exports.CreateFrameworkCommand = CreateFrameworkCommand;
|
|
4693
|
-
exports.CreateFrameworkInput$ = CreateFrameworkInput$;
|
|
4694
|
-
exports.CreateFrameworkOutput$ = CreateFrameworkOutput$;
|
|
4695
|
-
exports.CreateLegalHold$ = CreateLegalHold$;
|
|
4696
1858
|
exports.CreateLegalHoldCommand = CreateLegalHoldCommand;
|
|
4697
|
-
exports.CreateLegalHoldInput$ = CreateLegalHoldInput$;
|
|
4698
|
-
exports.CreateLegalHoldOutput$ = CreateLegalHoldOutput$;
|
|
4699
|
-
exports.CreateLogicallyAirGappedBackupVault$ = CreateLogicallyAirGappedBackupVault$;
|
|
4700
1859
|
exports.CreateLogicallyAirGappedBackupVaultCommand = CreateLogicallyAirGappedBackupVaultCommand;
|
|
4701
|
-
exports.CreateLogicallyAirGappedBackupVaultInput$ = CreateLogicallyAirGappedBackupVaultInput$;
|
|
4702
|
-
exports.CreateLogicallyAirGappedBackupVaultOutput$ = CreateLogicallyAirGappedBackupVaultOutput$;
|
|
4703
|
-
exports.CreateReportPlan$ = CreateReportPlan$;
|
|
4704
1860
|
exports.CreateReportPlanCommand = CreateReportPlanCommand;
|
|
4705
|
-
exports.CreateReportPlanInput$ = CreateReportPlanInput$;
|
|
4706
|
-
exports.CreateReportPlanOutput$ = CreateReportPlanOutput$;
|
|
4707
|
-
exports.CreateRestoreAccessBackupVault$ = CreateRestoreAccessBackupVault$;
|
|
4708
1861
|
exports.CreateRestoreAccessBackupVaultCommand = CreateRestoreAccessBackupVaultCommand;
|
|
4709
|
-
exports.CreateRestoreAccessBackupVaultInput$ = CreateRestoreAccessBackupVaultInput$;
|
|
4710
|
-
exports.CreateRestoreAccessBackupVaultOutput$ = CreateRestoreAccessBackupVaultOutput$;
|
|
4711
|
-
exports.CreateRestoreTestingPlan$ = CreateRestoreTestingPlan$;
|
|
4712
1862
|
exports.CreateRestoreTestingPlanCommand = CreateRestoreTestingPlanCommand;
|
|
4713
|
-
exports.CreateRestoreTestingPlanInput$ = CreateRestoreTestingPlanInput$;
|
|
4714
|
-
exports.CreateRestoreTestingPlanOutput$ = CreateRestoreTestingPlanOutput$;
|
|
4715
|
-
exports.CreateRestoreTestingSelection$ = CreateRestoreTestingSelection$;
|
|
4716
1863
|
exports.CreateRestoreTestingSelectionCommand = CreateRestoreTestingSelectionCommand;
|
|
4717
|
-
exports.CreateRestoreTestingSelectionInput$ = CreateRestoreTestingSelectionInput$;
|
|
4718
|
-
exports.CreateRestoreTestingSelectionOutput$ = CreateRestoreTestingSelectionOutput$;
|
|
4719
|
-
exports.CreateTieringConfiguration$ = CreateTieringConfiguration$;
|
|
4720
1864
|
exports.CreateTieringConfigurationCommand = CreateTieringConfigurationCommand;
|
|
4721
|
-
exports.CreateTieringConfigurationInput$ = CreateTieringConfigurationInput$;
|
|
4722
|
-
exports.CreateTieringConfigurationOutput$ = CreateTieringConfigurationOutput$;
|
|
4723
|
-
exports.DateRange$ = DateRange$;
|
|
4724
|
-
exports.DeleteBackupPlan$ = DeleteBackupPlan$;
|
|
4725
1865
|
exports.DeleteBackupPlanCommand = DeleteBackupPlanCommand;
|
|
4726
|
-
exports.DeleteBackupPlanInput$ = DeleteBackupPlanInput$;
|
|
4727
|
-
exports.DeleteBackupPlanOutput$ = DeleteBackupPlanOutput$;
|
|
4728
|
-
exports.DeleteBackupSelection$ = DeleteBackupSelection$;
|
|
4729
1866
|
exports.DeleteBackupSelectionCommand = DeleteBackupSelectionCommand;
|
|
4730
|
-
exports.DeleteBackupSelectionInput$ = DeleteBackupSelectionInput$;
|
|
4731
|
-
exports.DeleteBackupVault$ = DeleteBackupVault$;
|
|
4732
|
-
exports.DeleteBackupVaultAccessPolicy$ = DeleteBackupVaultAccessPolicy$;
|
|
4733
1867
|
exports.DeleteBackupVaultAccessPolicyCommand = DeleteBackupVaultAccessPolicyCommand;
|
|
4734
|
-
exports.DeleteBackupVaultAccessPolicyInput$ = DeleteBackupVaultAccessPolicyInput$;
|
|
4735
1868
|
exports.DeleteBackupVaultCommand = DeleteBackupVaultCommand;
|
|
4736
|
-
exports.DeleteBackupVaultInput$ = DeleteBackupVaultInput$;
|
|
4737
|
-
exports.DeleteBackupVaultLockConfiguration$ = DeleteBackupVaultLockConfiguration$;
|
|
4738
1869
|
exports.DeleteBackupVaultLockConfigurationCommand = DeleteBackupVaultLockConfigurationCommand;
|
|
4739
|
-
exports.DeleteBackupVaultLockConfigurationInput$ = DeleteBackupVaultLockConfigurationInput$;
|
|
4740
|
-
exports.DeleteBackupVaultNotifications$ = DeleteBackupVaultNotifications$;
|
|
4741
1870
|
exports.DeleteBackupVaultNotificationsCommand = DeleteBackupVaultNotificationsCommand;
|
|
4742
|
-
exports.DeleteBackupVaultNotificationsInput$ = DeleteBackupVaultNotificationsInput$;
|
|
4743
|
-
exports.DeleteFramework$ = DeleteFramework$;
|
|
4744
1871
|
exports.DeleteFrameworkCommand = DeleteFrameworkCommand;
|
|
4745
|
-
exports.DeleteFrameworkInput$ = DeleteFrameworkInput$;
|
|
4746
|
-
exports.DeleteRecoveryPoint$ = DeleteRecoveryPoint$;
|
|
4747
1872
|
exports.DeleteRecoveryPointCommand = DeleteRecoveryPointCommand;
|
|
4748
|
-
exports.DeleteRecoveryPointInput$ = DeleteRecoveryPointInput$;
|
|
4749
|
-
exports.DeleteReportPlan$ = DeleteReportPlan$;
|
|
4750
1873
|
exports.DeleteReportPlanCommand = DeleteReportPlanCommand;
|
|
4751
|
-
exports.DeleteReportPlanInput$ = DeleteReportPlanInput$;
|
|
4752
|
-
exports.DeleteRestoreTestingPlan$ = DeleteRestoreTestingPlan$;
|
|
4753
1874
|
exports.DeleteRestoreTestingPlanCommand = DeleteRestoreTestingPlanCommand;
|
|
4754
|
-
exports.DeleteRestoreTestingPlanInput$ = DeleteRestoreTestingPlanInput$;
|
|
4755
|
-
exports.DeleteRestoreTestingSelection$ = DeleteRestoreTestingSelection$;
|
|
4756
1875
|
exports.DeleteRestoreTestingSelectionCommand = DeleteRestoreTestingSelectionCommand;
|
|
4757
|
-
exports.DeleteRestoreTestingSelectionInput$ = DeleteRestoreTestingSelectionInput$;
|
|
4758
|
-
exports.DeleteTieringConfiguration$ = DeleteTieringConfiguration$;
|
|
4759
1876
|
exports.DeleteTieringConfigurationCommand = DeleteTieringConfigurationCommand;
|
|
4760
|
-
exports.DeleteTieringConfigurationInput$ = DeleteTieringConfigurationInput$;
|
|
4761
|
-
exports.DeleteTieringConfigurationOutput$ = DeleteTieringConfigurationOutput$;
|
|
4762
|
-
exports.DependencyFailureException = DependencyFailureException;
|
|
4763
|
-
exports.DependencyFailureException$ = DependencyFailureException$;
|
|
4764
|
-
exports.DescribeBackupJob$ = DescribeBackupJob$;
|
|
4765
1877
|
exports.DescribeBackupJobCommand = DescribeBackupJobCommand;
|
|
4766
|
-
exports.DescribeBackupJobInput$ = DescribeBackupJobInput$;
|
|
4767
|
-
exports.DescribeBackupJobOutput$ = DescribeBackupJobOutput$;
|
|
4768
|
-
exports.DescribeBackupVault$ = DescribeBackupVault$;
|
|
4769
1878
|
exports.DescribeBackupVaultCommand = DescribeBackupVaultCommand;
|
|
4770
|
-
exports.DescribeBackupVaultInput$ = DescribeBackupVaultInput$;
|
|
4771
|
-
exports.DescribeBackupVaultOutput$ = DescribeBackupVaultOutput$;
|
|
4772
|
-
exports.DescribeCopyJob$ = DescribeCopyJob$;
|
|
4773
1879
|
exports.DescribeCopyJobCommand = DescribeCopyJobCommand;
|
|
4774
|
-
exports.DescribeCopyJobInput$ = DescribeCopyJobInput$;
|
|
4775
|
-
exports.DescribeCopyJobOutput$ = DescribeCopyJobOutput$;
|
|
4776
|
-
exports.DescribeFramework$ = DescribeFramework$;
|
|
4777
1880
|
exports.DescribeFrameworkCommand = DescribeFrameworkCommand;
|
|
4778
|
-
exports.DescribeFrameworkInput$ = DescribeFrameworkInput$;
|
|
4779
|
-
exports.DescribeFrameworkOutput$ = DescribeFrameworkOutput$;
|
|
4780
|
-
exports.DescribeGlobalSettings$ = DescribeGlobalSettings$;
|
|
4781
1881
|
exports.DescribeGlobalSettingsCommand = DescribeGlobalSettingsCommand;
|
|
4782
|
-
exports.DescribeGlobalSettingsInput$ = DescribeGlobalSettingsInput$;
|
|
4783
|
-
exports.DescribeGlobalSettingsOutput$ = DescribeGlobalSettingsOutput$;
|
|
4784
|
-
exports.DescribeProtectedResource$ = DescribeProtectedResource$;
|
|
4785
1882
|
exports.DescribeProtectedResourceCommand = DescribeProtectedResourceCommand;
|
|
4786
|
-
exports.DescribeProtectedResourceInput$ = DescribeProtectedResourceInput$;
|
|
4787
|
-
exports.DescribeProtectedResourceOutput$ = DescribeProtectedResourceOutput$;
|
|
4788
|
-
exports.DescribeRecoveryPoint$ = DescribeRecoveryPoint$;
|
|
4789
1883
|
exports.DescribeRecoveryPointCommand = DescribeRecoveryPointCommand;
|
|
4790
|
-
exports.DescribeRecoveryPointInput$ = DescribeRecoveryPointInput$;
|
|
4791
|
-
exports.DescribeRecoveryPointOutput$ = DescribeRecoveryPointOutput$;
|
|
4792
|
-
exports.DescribeRegionSettings$ = DescribeRegionSettings$;
|
|
4793
1884
|
exports.DescribeRegionSettingsCommand = DescribeRegionSettingsCommand;
|
|
4794
|
-
exports.DescribeRegionSettingsInput$ = DescribeRegionSettingsInput$;
|
|
4795
|
-
exports.DescribeRegionSettingsOutput$ = DescribeRegionSettingsOutput$;
|
|
4796
|
-
exports.DescribeReportJob$ = DescribeReportJob$;
|
|
4797
1885
|
exports.DescribeReportJobCommand = DescribeReportJobCommand;
|
|
4798
|
-
exports.DescribeReportJobInput$ = DescribeReportJobInput$;
|
|
4799
|
-
exports.DescribeReportJobOutput$ = DescribeReportJobOutput$;
|
|
4800
|
-
exports.DescribeReportPlan$ = DescribeReportPlan$;
|
|
4801
1886
|
exports.DescribeReportPlanCommand = DescribeReportPlanCommand;
|
|
4802
|
-
exports.DescribeReportPlanInput$ = DescribeReportPlanInput$;
|
|
4803
|
-
exports.DescribeReportPlanOutput$ = DescribeReportPlanOutput$;
|
|
4804
|
-
exports.DescribeRestoreJob$ = DescribeRestoreJob$;
|
|
4805
1887
|
exports.DescribeRestoreJobCommand = DescribeRestoreJobCommand;
|
|
4806
|
-
exports.DescribeRestoreJobInput$ = DescribeRestoreJobInput$;
|
|
4807
|
-
exports.DescribeRestoreJobOutput$ = DescribeRestoreJobOutput$;
|
|
4808
|
-
exports.DescribeScanJob$ = DescribeScanJob$;
|
|
4809
1888
|
exports.DescribeScanJobCommand = DescribeScanJobCommand;
|
|
4810
|
-
exports.DescribeScanJobInput$ = DescribeScanJobInput$;
|
|
4811
|
-
exports.DescribeScanJobOutput$ = DescribeScanJobOutput$;
|
|
4812
|
-
exports.DisassociateBackupVaultMpaApprovalTeam$ = DisassociateBackupVaultMpaApprovalTeam$;
|
|
4813
1889
|
exports.DisassociateBackupVaultMpaApprovalTeamCommand = DisassociateBackupVaultMpaApprovalTeamCommand;
|
|
4814
|
-
exports.DisassociateBackupVaultMpaApprovalTeamInput$ = DisassociateBackupVaultMpaApprovalTeamInput$;
|
|
4815
|
-
exports.DisassociateRecoveryPoint$ = DisassociateRecoveryPoint$;
|
|
4816
1890
|
exports.DisassociateRecoveryPointCommand = DisassociateRecoveryPointCommand;
|
|
4817
|
-
exports.DisassociateRecoveryPointFromParent$ = DisassociateRecoveryPointFromParent$;
|
|
4818
1891
|
exports.DisassociateRecoveryPointFromParentCommand = DisassociateRecoveryPointFromParentCommand;
|
|
4819
|
-
exports.DisassociateRecoveryPointFromParentInput$ = DisassociateRecoveryPointFromParentInput$;
|
|
4820
|
-
exports.DisassociateRecoveryPointInput$ = DisassociateRecoveryPointInput$;
|
|
4821
1892
|
exports.EncryptionKeyType = EncryptionKeyType;
|
|
4822
|
-
exports.ExportBackupPlanTemplate$ = ExportBackupPlanTemplate$;
|
|
4823
1893
|
exports.ExportBackupPlanTemplateCommand = ExportBackupPlanTemplateCommand;
|
|
4824
|
-
exports.ExportBackupPlanTemplateInput$ = ExportBackupPlanTemplateInput$;
|
|
4825
|
-
exports.ExportBackupPlanTemplateOutput$ = ExportBackupPlanTemplateOutput$;
|
|
4826
|
-
exports.Framework$ = Framework$;
|
|
4827
|
-
exports.FrameworkControl$ = FrameworkControl$;
|
|
4828
|
-
exports.GetBackupPlan$ = GetBackupPlan$;
|
|
4829
1894
|
exports.GetBackupPlanCommand = GetBackupPlanCommand;
|
|
4830
|
-
exports.GetBackupPlanFromJSON$ = GetBackupPlanFromJSON$;
|
|
4831
1895
|
exports.GetBackupPlanFromJSONCommand = GetBackupPlanFromJSONCommand;
|
|
4832
|
-
exports.GetBackupPlanFromJSONInput$ = GetBackupPlanFromJSONInput$;
|
|
4833
|
-
exports.GetBackupPlanFromJSONOutput$ = GetBackupPlanFromJSONOutput$;
|
|
4834
|
-
exports.GetBackupPlanFromTemplate$ = GetBackupPlanFromTemplate$;
|
|
4835
1896
|
exports.GetBackupPlanFromTemplateCommand = GetBackupPlanFromTemplateCommand;
|
|
4836
|
-
exports.GetBackupPlanFromTemplateInput$ = GetBackupPlanFromTemplateInput$;
|
|
4837
|
-
exports.GetBackupPlanFromTemplateOutput$ = GetBackupPlanFromTemplateOutput$;
|
|
4838
|
-
exports.GetBackupPlanInput$ = GetBackupPlanInput$;
|
|
4839
|
-
exports.GetBackupPlanOutput$ = GetBackupPlanOutput$;
|
|
4840
|
-
exports.GetBackupSelection$ = GetBackupSelection$;
|
|
4841
1897
|
exports.GetBackupSelectionCommand = GetBackupSelectionCommand;
|
|
4842
|
-
exports.GetBackupSelectionInput$ = GetBackupSelectionInput$;
|
|
4843
|
-
exports.GetBackupSelectionOutput$ = GetBackupSelectionOutput$;
|
|
4844
|
-
exports.GetBackupVaultAccessPolicy$ = GetBackupVaultAccessPolicy$;
|
|
4845
1898
|
exports.GetBackupVaultAccessPolicyCommand = GetBackupVaultAccessPolicyCommand;
|
|
4846
|
-
exports.GetBackupVaultAccessPolicyInput$ = GetBackupVaultAccessPolicyInput$;
|
|
4847
|
-
exports.GetBackupVaultAccessPolicyOutput$ = GetBackupVaultAccessPolicyOutput$;
|
|
4848
|
-
exports.GetBackupVaultNotifications$ = GetBackupVaultNotifications$;
|
|
4849
1899
|
exports.GetBackupVaultNotificationsCommand = GetBackupVaultNotificationsCommand;
|
|
4850
|
-
exports.GetBackupVaultNotificationsInput$ = GetBackupVaultNotificationsInput$;
|
|
4851
|
-
exports.GetBackupVaultNotificationsOutput$ = GetBackupVaultNotificationsOutput$;
|
|
4852
|
-
exports.GetLegalHold$ = GetLegalHold$;
|
|
4853
1900
|
exports.GetLegalHoldCommand = GetLegalHoldCommand;
|
|
4854
|
-
exports.GetLegalHoldInput$ = GetLegalHoldInput$;
|
|
4855
|
-
exports.GetLegalHoldOutput$ = GetLegalHoldOutput$;
|
|
4856
|
-
exports.GetRecoveryPointIndexDetails$ = GetRecoveryPointIndexDetails$;
|
|
4857
1901
|
exports.GetRecoveryPointIndexDetailsCommand = GetRecoveryPointIndexDetailsCommand;
|
|
4858
|
-
exports.GetRecoveryPointIndexDetailsInput$ = GetRecoveryPointIndexDetailsInput$;
|
|
4859
|
-
exports.GetRecoveryPointIndexDetailsOutput$ = GetRecoveryPointIndexDetailsOutput$;
|
|
4860
|
-
exports.GetRecoveryPointRestoreMetadata$ = GetRecoveryPointRestoreMetadata$;
|
|
4861
1902
|
exports.GetRecoveryPointRestoreMetadataCommand = GetRecoveryPointRestoreMetadataCommand;
|
|
4862
|
-
exports.GetRecoveryPointRestoreMetadataInput$ = GetRecoveryPointRestoreMetadataInput$;
|
|
4863
|
-
exports.GetRecoveryPointRestoreMetadataOutput$ = GetRecoveryPointRestoreMetadataOutput$;
|
|
4864
|
-
exports.GetRestoreJobMetadata$ = GetRestoreJobMetadata$;
|
|
4865
1903
|
exports.GetRestoreJobMetadataCommand = GetRestoreJobMetadataCommand;
|
|
4866
|
-
exports.GetRestoreJobMetadataInput$ = GetRestoreJobMetadataInput$;
|
|
4867
|
-
exports.GetRestoreJobMetadataOutput$ = GetRestoreJobMetadataOutput$;
|
|
4868
|
-
exports.GetRestoreTestingInferredMetadata$ = GetRestoreTestingInferredMetadata$;
|
|
4869
1904
|
exports.GetRestoreTestingInferredMetadataCommand = GetRestoreTestingInferredMetadataCommand;
|
|
4870
|
-
exports.GetRestoreTestingInferredMetadataInput$ = GetRestoreTestingInferredMetadataInput$;
|
|
4871
|
-
exports.GetRestoreTestingInferredMetadataOutput$ = GetRestoreTestingInferredMetadataOutput$;
|
|
4872
|
-
exports.GetRestoreTestingPlan$ = GetRestoreTestingPlan$;
|
|
4873
1905
|
exports.GetRestoreTestingPlanCommand = GetRestoreTestingPlanCommand;
|
|
4874
|
-
exports.GetRestoreTestingPlanInput$ = GetRestoreTestingPlanInput$;
|
|
4875
|
-
exports.GetRestoreTestingPlanOutput$ = GetRestoreTestingPlanOutput$;
|
|
4876
|
-
exports.GetRestoreTestingSelection$ = GetRestoreTestingSelection$;
|
|
4877
1906
|
exports.GetRestoreTestingSelectionCommand = GetRestoreTestingSelectionCommand;
|
|
4878
|
-
exports.GetRestoreTestingSelectionInput$ = GetRestoreTestingSelectionInput$;
|
|
4879
|
-
exports.GetRestoreTestingSelectionOutput$ = GetRestoreTestingSelectionOutput$;
|
|
4880
|
-
exports.GetSupportedResourceTypes$ = GetSupportedResourceTypes$;
|
|
4881
1907
|
exports.GetSupportedResourceTypesCommand = GetSupportedResourceTypesCommand;
|
|
4882
|
-
exports.GetSupportedResourceTypesOutput$ = GetSupportedResourceTypesOutput$;
|
|
4883
|
-
exports.GetTieringConfiguration$ = GetTieringConfiguration$;
|
|
4884
1908
|
exports.GetTieringConfigurationCommand = GetTieringConfigurationCommand;
|
|
4885
|
-
exports.GetTieringConfigurationInput$ = GetTieringConfigurationInput$;
|
|
4886
|
-
exports.GetTieringConfigurationOutput$ = GetTieringConfigurationOutput$;
|
|
4887
1909
|
exports.Index = Index;
|
|
4888
|
-
exports.IndexAction$ = IndexAction$;
|
|
4889
1910
|
exports.IndexStatus = IndexStatus;
|
|
4890
|
-
exports.IndexedRecoveryPoint$ = IndexedRecoveryPoint$;
|
|
4891
|
-
exports.InvalidParameterValueException = InvalidParameterValueException;
|
|
4892
|
-
exports.InvalidParameterValueException$ = InvalidParameterValueException$;
|
|
4893
|
-
exports.InvalidRequestException = InvalidRequestException;
|
|
4894
|
-
exports.InvalidRequestException$ = InvalidRequestException$;
|
|
4895
|
-
exports.InvalidResourceStateException = InvalidResourceStateException;
|
|
4896
|
-
exports.InvalidResourceStateException$ = InvalidResourceStateException$;
|
|
4897
|
-
exports.KeyValue$ = KeyValue$;
|
|
4898
|
-
exports.LatestMpaApprovalTeamUpdate$ = LatestMpaApprovalTeamUpdate$;
|
|
4899
|
-
exports.LatestRevokeRequest$ = LatestRevokeRequest$;
|
|
4900
|
-
exports.LegalHold$ = LegalHold$;
|
|
4901
1911
|
exports.LegalHoldStatus = LegalHoldStatus;
|
|
4902
|
-
exports.Lifecycle$ = Lifecycle$;
|
|
4903
1912
|
exports.LifecycleDeleteAfterEvent = LifecycleDeleteAfterEvent;
|
|
4904
|
-
exports.LimitExceededException = LimitExceededException;
|
|
4905
|
-
exports.LimitExceededException$ = LimitExceededException$;
|
|
4906
|
-
exports.ListBackupJobSummaries$ = ListBackupJobSummaries$;
|
|
4907
1913
|
exports.ListBackupJobSummariesCommand = ListBackupJobSummariesCommand;
|
|
4908
|
-
exports.ListBackupJobSummariesInput$ = ListBackupJobSummariesInput$;
|
|
4909
|
-
exports.ListBackupJobSummariesOutput$ = ListBackupJobSummariesOutput$;
|
|
4910
|
-
exports.ListBackupJobs$ = ListBackupJobs$;
|
|
4911
1914
|
exports.ListBackupJobsCommand = ListBackupJobsCommand;
|
|
4912
|
-
exports.ListBackupJobsInput$ = ListBackupJobsInput$;
|
|
4913
|
-
exports.ListBackupJobsOutput$ = ListBackupJobsOutput$;
|
|
4914
|
-
exports.ListBackupPlanTemplates$ = ListBackupPlanTemplates$;
|
|
4915
1915
|
exports.ListBackupPlanTemplatesCommand = ListBackupPlanTemplatesCommand;
|
|
4916
|
-
exports.ListBackupPlanTemplatesInput$ = ListBackupPlanTemplatesInput$;
|
|
4917
|
-
exports.ListBackupPlanTemplatesOutput$ = ListBackupPlanTemplatesOutput$;
|
|
4918
|
-
exports.ListBackupPlanVersions$ = ListBackupPlanVersions$;
|
|
4919
1916
|
exports.ListBackupPlanVersionsCommand = ListBackupPlanVersionsCommand;
|
|
4920
|
-
exports.ListBackupPlanVersionsInput$ = ListBackupPlanVersionsInput$;
|
|
4921
|
-
exports.ListBackupPlanVersionsOutput$ = ListBackupPlanVersionsOutput$;
|
|
4922
|
-
exports.ListBackupPlans$ = ListBackupPlans$;
|
|
4923
1917
|
exports.ListBackupPlansCommand = ListBackupPlansCommand;
|
|
4924
|
-
exports.ListBackupPlansInput$ = ListBackupPlansInput$;
|
|
4925
|
-
exports.ListBackupPlansOutput$ = ListBackupPlansOutput$;
|
|
4926
|
-
exports.ListBackupSelections$ = ListBackupSelections$;
|
|
4927
1918
|
exports.ListBackupSelectionsCommand = ListBackupSelectionsCommand;
|
|
4928
|
-
exports.ListBackupSelectionsInput$ = ListBackupSelectionsInput$;
|
|
4929
|
-
exports.ListBackupSelectionsOutput$ = ListBackupSelectionsOutput$;
|
|
4930
|
-
exports.ListBackupVaults$ = ListBackupVaults$;
|
|
4931
1919
|
exports.ListBackupVaultsCommand = ListBackupVaultsCommand;
|
|
4932
|
-
exports.ListBackupVaultsInput$ = ListBackupVaultsInput$;
|
|
4933
|
-
exports.ListBackupVaultsOutput$ = ListBackupVaultsOutput$;
|
|
4934
|
-
exports.ListCopyJobSummaries$ = ListCopyJobSummaries$;
|
|
4935
1920
|
exports.ListCopyJobSummariesCommand = ListCopyJobSummariesCommand;
|
|
4936
|
-
exports.ListCopyJobSummariesInput$ = ListCopyJobSummariesInput$;
|
|
4937
|
-
exports.ListCopyJobSummariesOutput$ = ListCopyJobSummariesOutput$;
|
|
4938
|
-
exports.ListCopyJobs$ = ListCopyJobs$;
|
|
4939
1921
|
exports.ListCopyJobsCommand = ListCopyJobsCommand;
|
|
4940
|
-
exports.ListCopyJobsInput$ = ListCopyJobsInput$;
|
|
4941
|
-
exports.ListCopyJobsOutput$ = ListCopyJobsOutput$;
|
|
4942
|
-
exports.ListFrameworks$ = ListFrameworks$;
|
|
4943
1922
|
exports.ListFrameworksCommand = ListFrameworksCommand;
|
|
4944
|
-
exports.ListFrameworksInput$ = ListFrameworksInput$;
|
|
4945
|
-
exports.ListFrameworksOutput$ = ListFrameworksOutput$;
|
|
4946
|
-
exports.ListIndexedRecoveryPoints$ = ListIndexedRecoveryPoints$;
|
|
4947
1923
|
exports.ListIndexedRecoveryPointsCommand = ListIndexedRecoveryPointsCommand;
|
|
4948
|
-
exports.ListIndexedRecoveryPointsInput$ = ListIndexedRecoveryPointsInput$;
|
|
4949
|
-
exports.ListIndexedRecoveryPointsOutput$ = ListIndexedRecoveryPointsOutput$;
|
|
4950
|
-
exports.ListLegalHolds$ = ListLegalHolds$;
|
|
4951
1924
|
exports.ListLegalHoldsCommand = ListLegalHoldsCommand;
|
|
4952
|
-
exports.ListLegalHoldsInput$ = ListLegalHoldsInput$;
|
|
4953
|
-
exports.ListLegalHoldsOutput$ = ListLegalHoldsOutput$;
|
|
4954
|
-
exports.ListProtectedResources$ = ListProtectedResources$;
|
|
4955
|
-
exports.ListProtectedResourcesByBackupVault$ = ListProtectedResourcesByBackupVault$;
|
|
4956
1925
|
exports.ListProtectedResourcesByBackupVaultCommand = ListProtectedResourcesByBackupVaultCommand;
|
|
4957
|
-
exports.ListProtectedResourcesByBackupVaultInput$ = ListProtectedResourcesByBackupVaultInput$;
|
|
4958
|
-
exports.ListProtectedResourcesByBackupVaultOutput$ = ListProtectedResourcesByBackupVaultOutput$;
|
|
4959
1926
|
exports.ListProtectedResourcesCommand = ListProtectedResourcesCommand;
|
|
4960
|
-
exports.ListProtectedResourcesInput$ = ListProtectedResourcesInput$;
|
|
4961
|
-
exports.ListProtectedResourcesOutput$ = ListProtectedResourcesOutput$;
|
|
4962
|
-
exports.ListRecoveryPointsByBackupVault$ = ListRecoveryPointsByBackupVault$;
|
|
4963
1927
|
exports.ListRecoveryPointsByBackupVaultCommand = ListRecoveryPointsByBackupVaultCommand;
|
|
4964
|
-
exports.ListRecoveryPointsByBackupVaultInput$ = ListRecoveryPointsByBackupVaultInput$;
|
|
4965
|
-
exports.ListRecoveryPointsByBackupVaultOutput$ = ListRecoveryPointsByBackupVaultOutput$;
|
|
4966
|
-
exports.ListRecoveryPointsByLegalHold$ = ListRecoveryPointsByLegalHold$;
|
|
4967
1928
|
exports.ListRecoveryPointsByLegalHoldCommand = ListRecoveryPointsByLegalHoldCommand;
|
|
4968
|
-
exports.ListRecoveryPointsByLegalHoldInput$ = ListRecoveryPointsByLegalHoldInput$;
|
|
4969
|
-
exports.ListRecoveryPointsByLegalHoldOutput$ = ListRecoveryPointsByLegalHoldOutput$;
|
|
4970
|
-
exports.ListRecoveryPointsByResource$ = ListRecoveryPointsByResource$;
|
|
4971
1929
|
exports.ListRecoveryPointsByResourceCommand = ListRecoveryPointsByResourceCommand;
|
|
4972
|
-
exports.ListRecoveryPointsByResourceInput$ = ListRecoveryPointsByResourceInput$;
|
|
4973
|
-
exports.ListRecoveryPointsByResourceOutput$ = ListRecoveryPointsByResourceOutput$;
|
|
4974
|
-
exports.ListReportJobs$ = ListReportJobs$;
|
|
4975
1930
|
exports.ListReportJobsCommand = ListReportJobsCommand;
|
|
4976
|
-
exports.ListReportJobsInput$ = ListReportJobsInput$;
|
|
4977
|
-
exports.ListReportJobsOutput$ = ListReportJobsOutput$;
|
|
4978
|
-
exports.ListReportPlans$ = ListReportPlans$;
|
|
4979
1931
|
exports.ListReportPlansCommand = ListReportPlansCommand;
|
|
4980
|
-
exports.ListReportPlansInput$ = ListReportPlansInput$;
|
|
4981
|
-
exports.ListReportPlansOutput$ = ListReportPlansOutput$;
|
|
4982
|
-
exports.ListRestoreAccessBackupVaults$ = ListRestoreAccessBackupVaults$;
|
|
4983
1932
|
exports.ListRestoreAccessBackupVaultsCommand = ListRestoreAccessBackupVaultsCommand;
|
|
4984
|
-
exports.ListRestoreAccessBackupVaultsInput$ = ListRestoreAccessBackupVaultsInput$;
|
|
4985
|
-
exports.ListRestoreAccessBackupVaultsOutput$ = ListRestoreAccessBackupVaultsOutput$;
|
|
4986
|
-
exports.ListRestoreJobSummaries$ = ListRestoreJobSummaries$;
|
|
4987
1933
|
exports.ListRestoreJobSummariesCommand = ListRestoreJobSummariesCommand;
|
|
4988
|
-
exports.ListRestoreJobSummariesInput$ = ListRestoreJobSummariesInput$;
|
|
4989
|
-
exports.ListRestoreJobSummariesOutput$ = ListRestoreJobSummariesOutput$;
|
|
4990
|
-
exports.ListRestoreJobs$ = ListRestoreJobs$;
|
|
4991
|
-
exports.ListRestoreJobsByProtectedResource$ = ListRestoreJobsByProtectedResource$;
|
|
4992
1934
|
exports.ListRestoreJobsByProtectedResourceCommand = ListRestoreJobsByProtectedResourceCommand;
|
|
4993
|
-
exports.ListRestoreJobsByProtectedResourceInput$ = ListRestoreJobsByProtectedResourceInput$;
|
|
4994
|
-
exports.ListRestoreJobsByProtectedResourceOutput$ = ListRestoreJobsByProtectedResourceOutput$;
|
|
4995
1935
|
exports.ListRestoreJobsCommand = ListRestoreJobsCommand;
|
|
4996
|
-
exports.ListRestoreJobsInput$ = ListRestoreJobsInput$;
|
|
4997
|
-
exports.ListRestoreJobsOutput$ = ListRestoreJobsOutput$;
|
|
4998
|
-
exports.ListRestoreTestingPlans$ = ListRestoreTestingPlans$;
|
|
4999
1936
|
exports.ListRestoreTestingPlansCommand = ListRestoreTestingPlansCommand;
|
|
5000
|
-
exports.ListRestoreTestingPlansInput$ = ListRestoreTestingPlansInput$;
|
|
5001
|
-
exports.ListRestoreTestingPlansOutput$ = ListRestoreTestingPlansOutput$;
|
|
5002
|
-
exports.ListRestoreTestingSelections$ = ListRestoreTestingSelections$;
|
|
5003
1937
|
exports.ListRestoreTestingSelectionsCommand = ListRestoreTestingSelectionsCommand;
|
|
5004
|
-
exports.ListRestoreTestingSelectionsInput$ = ListRestoreTestingSelectionsInput$;
|
|
5005
|
-
exports.ListRestoreTestingSelectionsOutput$ = ListRestoreTestingSelectionsOutput$;
|
|
5006
|
-
exports.ListScanJobSummaries$ = ListScanJobSummaries$;
|
|
5007
1938
|
exports.ListScanJobSummariesCommand = ListScanJobSummariesCommand;
|
|
5008
|
-
exports.ListScanJobSummariesInput$ = ListScanJobSummariesInput$;
|
|
5009
|
-
exports.ListScanJobSummariesOutput$ = ListScanJobSummariesOutput$;
|
|
5010
|
-
exports.ListScanJobs$ = ListScanJobs$;
|
|
5011
1939
|
exports.ListScanJobsCommand = ListScanJobsCommand;
|
|
5012
|
-
exports.ListScanJobsInput$ = ListScanJobsInput$;
|
|
5013
|
-
exports.ListScanJobsOutput$ = ListScanJobsOutput$;
|
|
5014
|
-
exports.ListTags$ = ListTags$;
|
|
5015
1940
|
exports.ListTagsCommand = ListTagsCommand;
|
|
5016
|
-
exports.ListTagsInput$ = ListTagsInput$;
|
|
5017
|
-
exports.ListTagsOutput$ = ListTagsOutput$;
|
|
5018
|
-
exports.ListTieringConfigurations$ = ListTieringConfigurations$;
|
|
5019
1941
|
exports.ListTieringConfigurationsCommand = ListTieringConfigurationsCommand;
|
|
5020
|
-
exports.ListTieringConfigurationsInput$ = ListTieringConfigurationsInput$;
|
|
5021
|
-
exports.ListTieringConfigurationsOutput$ = ListTieringConfigurationsOutput$;
|
|
5022
1942
|
exports.MalwareScanner = MalwareScanner;
|
|
5023
|
-
exports.MissingParameterValueException = MissingParameterValueException;
|
|
5024
|
-
exports.MissingParameterValueException$ = MissingParameterValueException$;
|
|
5025
1943
|
exports.MpaRevokeSessionStatus = MpaRevokeSessionStatus;
|
|
5026
1944
|
exports.MpaSessionStatus = MpaSessionStatus;
|
|
5027
|
-
exports.ProtectedResource$ = ProtectedResource$;
|
|
5028
|
-
exports.ProtectedResourceConditions$ = ProtectedResourceConditions$;
|
|
5029
|
-
exports.PutBackupVaultAccessPolicy$ = PutBackupVaultAccessPolicy$;
|
|
5030
1945
|
exports.PutBackupVaultAccessPolicyCommand = PutBackupVaultAccessPolicyCommand;
|
|
5031
|
-
exports.PutBackupVaultAccessPolicyInput$ = PutBackupVaultAccessPolicyInput$;
|
|
5032
|
-
exports.PutBackupVaultLockConfiguration$ = PutBackupVaultLockConfiguration$;
|
|
5033
1946
|
exports.PutBackupVaultLockConfigurationCommand = PutBackupVaultLockConfigurationCommand;
|
|
5034
|
-
exports.PutBackupVaultLockConfigurationInput$ = PutBackupVaultLockConfigurationInput$;
|
|
5035
|
-
exports.PutBackupVaultNotifications$ = PutBackupVaultNotifications$;
|
|
5036
1947
|
exports.PutBackupVaultNotificationsCommand = PutBackupVaultNotificationsCommand;
|
|
5037
|
-
exports.PutBackupVaultNotificationsInput$ = PutBackupVaultNotificationsInput$;
|
|
5038
|
-
exports.PutRestoreValidationResult$ = PutRestoreValidationResult$;
|
|
5039
1948
|
exports.PutRestoreValidationResultCommand = PutRestoreValidationResultCommand;
|
|
5040
|
-
exports.PutRestoreValidationResultInput$ = PutRestoreValidationResultInput$;
|
|
5041
|
-
exports.RecoveryPointByBackupVault$ = RecoveryPointByBackupVault$;
|
|
5042
|
-
exports.RecoveryPointByResource$ = RecoveryPointByResource$;
|
|
5043
|
-
exports.RecoveryPointCreator$ = RecoveryPointCreator$;
|
|
5044
|
-
exports.RecoveryPointMember$ = RecoveryPointMember$;
|
|
5045
|
-
exports.RecoveryPointSelection$ = RecoveryPointSelection$;
|
|
5046
1949
|
exports.RecoveryPointStatus = RecoveryPointStatus;
|
|
5047
|
-
exports.ReportDeliveryChannel$ = ReportDeliveryChannel$;
|
|
5048
|
-
exports.ReportDestination$ = ReportDestination$;
|
|
5049
|
-
exports.ReportJob$ = ReportJob$;
|
|
5050
|
-
exports.ReportPlan$ = ReportPlan$;
|
|
5051
|
-
exports.ReportSetting$ = ReportSetting$;
|
|
5052
|
-
exports.ResourceNotFoundException = ResourceNotFoundException;
|
|
5053
|
-
exports.ResourceNotFoundException$ = ResourceNotFoundException$;
|
|
5054
|
-
exports.ResourceSelection$ = ResourceSelection$;
|
|
5055
|
-
exports.RestoreAccessBackupVaultListMember$ = RestoreAccessBackupVaultListMember$;
|
|
5056
1950
|
exports.RestoreDeletionStatus = RestoreDeletionStatus;
|
|
5057
|
-
exports.RestoreJobCreator$ = RestoreJobCreator$;
|
|
5058
1951
|
exports.RestoreJobState = RestoreJobState;
|
|
5059
1952
|
exports.RestoreJobStatus = RestoreJobStatus;
|
|
5060
|
-
exports.RestoreJobSummary$ = RestoreJobSummary$;
|
|
5061
|
-
exports.RestoreJobsListMember$ = RestoreJobsListMember$;
|
|
5062
|
-
exports.RestoreTestingPlanForCreate$ = RestoreTestingPlanForCreate$;
|
|
5063
|
-
exports.RestoreTestingPlanForGet$ = RestoreTestingPlanForGet$;
|
|
5064
|
-
exports.RestoreTestingPlanForList$ = RestoreTestingPlanForList$;
|
|
5065
|
-
exports.RestoreTestingPlanForUpdate$ = RestoreTestingPlanForUpdate$;
|
|
5066
|
-
exports.RestoreTestingRecoveryPointSelection$ = RestoreTestingRecoveryPointSelection$;
|
|
5067
1953
|
exports.RestoreTestingRecoveryPointSelectionAlgorithm = RestoreTestingRecoveryPointSelectionAlgorithm;
|
|
5068
1954
|
exports.RestoreTestingRecoveryPointType = RestoreTestingRecoveryPointType;
|
|
5069
|
-
exports.RestoreTestingSelectionForCreate$ = RestoreTestingSelectionForCreate$;
|
|
5070
|
-
exports.RestoreTestingSelectionForGet$ = RestoreTestingSelectionForGet$;
|
|
5071
|
-
exports.RestoreTestingSelectionForList$ = RestoreTestingSelectionForList$;
|
|
5072
|
-
exports.RestoreTestingSelectionForUpdate$ = RestoreTestingSelectionForUpdate$;
|
|
5073
1955
|
exports.RestoreValidationStatus = RestoreValidationStatus;
|
|
5074
|
-
exports.RevokeRestoreAccessBackupVault$ = RevokeRestoreAccessBackupVault$;
|
|
5075
1956
|
exports.RevokeRestoreAccessBackupVaultCommand = RevokeRestoreAccessBackupVaultCommand;
|
|
5076
|
-
exports.RevokeRestoreAccessBackupVaultInput$ = RevokeRestoreAccessBackupVaultInput$;
|
|
5077
1957
|
exports.RuleExecutionType = RuleExecutionType;
|
|
5078
|
-
exports.ScanAction$ = ScanAction$;
|
|
5079
1958
|
exports.ScanFinding = ScanFinding;
|
|
5080
|
-
exports.ScanJob$ = ScanJob$;
|
|
5081
|
-
exports.ScanJobCreator$ = ScanJobCreator$;
|
|
5082
1959
|
exports.ScanJobState = ScanJobState;
|
|
5083
1960
|
exports.ScanJobStatus = ScanJobStatus;
|
|
5084
|
-
exports.ScanJobSummary$ = ScanJobSummary$;
|
|
5085
1961
|
exports.ScanMode = ScanMode;
|
|
5086
1962
|
exports.ScanResourceType = ScanResourceType;
|
|
5087
|
-
exports.ScanResult$ = ScanResult$;
|
|
5088
|
-
exports.ScanResultInfo$ = ScanResultInfo$;
|
|
5089
1963
|
exports.ScanResultStatus = ScanResultStatus;
|
|
5090
|
-
exports.ScanSetting$ = ScanSetting$;
|
|
5091
1964
|
exports.ScanState = ScanState;
|
|
5092
|
-
exports.ScheduledPlanExecutionMember$ = ScheduledPlanExecutionMember$;
|
|
5093
|
-
exports.ServiceUnavailableException = ServiceUnavailableException;
|
|
5094
|
-
exports.ServiceUnavailableException$ = ServiceUnavailableException$;
|
|
5095
|
-
exports.StartBackupJob$ = StartBackupJob$;
|
|
5096
1965
|
exports.StartBackupJobCommand = StartBackupJobCommand;
|
|
5097
|
-
exports.StartBackupJobInput$ = StartBackupJobInput$;
|
|
5098
|
-
exports.StartBackupJobOutput$ = StartBackupJobOutput$;
|
|
5099
|
-
exports.StartCopyJob$ = StartCopyJob$;
|
|
5100
1966
|
exports.StartCopyJobCommand = StartCopyJobCommand;
|
|
5101
|
-
exports.StartCopyJobInput$ = StartCopyJobInput$;
|
|
5102
|
-
exports.StartCopyJobOutput$ = StartCopyJobOutput$;
|
|
5103
|
-
exports.StartReportJob$ = StartReportJob$;
|
|
5104
1967
|
exports.StartReportJobCommand = StartReportJobCommand;
|
|
5105
|
-
exports.StartReportJobInput$ = StartReportJobInput$;
|
|
5106
|
-
exports.StartReportJobOutput$ = StartReportJobOutput$;
|
|
5107
|
-
exports.StartRestoreJob$ = StartRestoreJob$;
|
|
5108
1968
|
exports.StartRestoreJobCommand = StartRestoreJobCommand;
|
|
5109
|
-
exports.StartRestoreJobInput$ = StartRestoreJobInput$;
|
|
5110
|
-
exports.StartRestoreJobOutput$ = StartRestoreJobOutput$;
|
|
5111
|
-
exports.StartScanJob$ = StartScanJob$;
|
|
5112
1969
|
exports.StartScanJobCommand = StartScanJobCommand;
|
|
5113
|
-
exports.StartScanJobInput$ = StartScanJobInput$;
|
|
5114
|
-
exports.StartScanJobOutput$ = StartScanJobOutput$;
|
|
5115
|
-
exports.StopBackupJob$ = StopBackupJob$;
|
|
5116
1970
|
exports.StopBackupJobCommand = StopBackupJobCommand;
|
|
5117
|
-
exports.StopBackupJobInput$ = StopBackupJobInput$;
|
|
5118
1971
|
exports.StorageClass = StorageClass;
|
|
5119
|
-
exports.TagResource$ = TagResource$;
|
|
5120
1972
|
exports.TagResourceCommand = TagResourceCommand;
|
|
5121
|
-
exports.TagResourceInput$ = TagResourceInput$;
|
|
5122
|
-
exports.TieringConfiguration$ = TieringConfiguration$;
|
|
5123
|
-
exports.TieringConfigurationInputForCreate$ = TieringConfigurationInputForCreate$;
|
|
5124
|
-
exports.TieringConfigurationInputForUpdate$ = TieringConfigurationInputForUpdate$;
|
|
5125
|
-
exports.TieringConfigurationsListMember$ = TieringConfigurationsListMember$;
|
|
5126
|
-
exports.UntagResource$ = UntagResource$;
|
|
5127
1973
|
exports.UntagResourceCommand = UntagResourceCommand;
|
|
5128
|
-
exports.UntagResourceInput$ = UntagResourceInput$;
|
|
5129
|
-
exports.UpdateBackupPlan$ = UpdateBackupPlan$;
|
|
5130
1974
|
exports.UpdateBackupPlanCommand = UpdateBackupPlanCommand;
|
|
5131
|
-
exports.UpdateBackupPlanInput$ = UpdateBackupPlanInput$;
|
|
5132
|
-
exports.UpdateBackupPlanOutput$ = UpdateBackupPlanOutput$;
|
|
5133
|
-
exports.UpdateFramework$ = UpdateFramework$;
|
|
5134
1975
|
exports.UpdateFrameworkCommand = UpdateFrameworkCommand;
|
|
5135
|
-
exports.UpdateFrameworkInput$ = UpdateFrameworkInput$;
|
|
5136
|
-
exports.UpdateFrameworkOutput$ = UpdateFrameworkOutput$;
|
|
5137
|
-
exports.UpdateGlobalSettings$ = UpdateGlobalSettings$;
|
|
5138
1976
|
exports.UpdateGlobalSettingsCommand = UpdateGlobalSettingsCommand;
|
|
5139
|
-
exports.UpdateGlobalSettingsInput$ = UpdateGlobalSettingsInput$;
|
|
5140
|
-
exports.UpdateRecoveryPointIndexSettings$ = UpdateRecoveryPointIndexSettings$;
|
|
5141
1977
|
exports.UpdateRecoveryPointIndexSettingsCommand = UpdateRecoveryPointIndexSettingsCommand;
|
|
5142
|
-
exports.UpdateRecoveryPointIndexSettingsInput$ = UpdateRecoveryPointIndexSettingsInput$;
|
|
5143
|
-
exports.UpdateRecoveryPointIndexSettingsOutput$ = UpdateRecoveryPointIndexSettingsOutput$;
|
|
5144
|
-
exports.UpdateRecoveryPointLifecycle$ = UpdateRecoveryPointLifecycle$;
|
|
5145
1978
|
exports.UpdateRecoveryPointLifecycleCommand = UpdateRecoveryPointLifecycleCommand;
|
|
5146
|
-
exports.UpdateRecoveryPointLifecycleInput$ = UpdateRecoveryPointLifecycleInput$;
|
|
5147
|
-
exports.UpdateRecoveryPointLifecycleOutput$ = UpdateRecoveryPointLifecycleOutput$;
|
|
5148
|
-
exports.UpdateRegionSettings$ = UpdateRegionSettings$;
|
|
5149
1979
|
exports.UpdateRegionSettingsCommand = UpdateRegionSettingsCommand;
|
|
5150
|
-
exports.UpdateRegionSettingsInput$ = UpdateRegionSettingsInput$;
|
|
5151
|
-
exports.UpdateReportPlan$ = UpdateReportPlan$;
|
|
5152
1980
|
exports.UpdateReportPlanCommand = UpdateReportPlanCommand;
|
|
5153
|
-
exports.UpdateReportPlanInput$ = UpdateReportPlanInput$;
|
|
5154
|
-
exports.UpdateReportPlanOutput$ = UpdateReportPlanOutput$;
|
|
5155
|
-
exports.UpdateRestoreTestingPlan$ = UpdateRestoreTestingPlan$;
|
|
5156
1981
|
exports.UpdateRestoreTestingPlanCommand = UpdateRestoreTestingPlanCommand;
|
|
5157
|
-
exports.UpdateRestoreTestingPlanInput$ = UpdateRestoreTestingPlanInput$;
|
|
5158
|
-
exports.UpdateRestoreTestingPlanOutput$ = UpdateRestoreTestingPlanOutput$;
|
|
5159
|
-
exports.UpdateRestoreTestingSelection$ = UpdateRestoreTestingSelection$;
|
|
5160
1982
|
exports.UpdateRestoreTestingSelectionCommand = UpdateRestoreTestingSelectionCommand;
|
|
5161
|
-
exports.UpdateRestoreTestingSelectionInput$ = UpdateRestoreTestingSelectionInput$;
|
|
5162
|
-
exports.UpdateRestoreTestingSelectionOutput$ = UpdateRestoreTestingSelectionOutput$;
|
|
5163
|
-
exports.UpdateTieringConfiguration$ = UpdateTieringConfiguration$;
|
|
5164
1983
|
exports.UpdateTieringConfigurationCommand = UpdateTieringConfigurationCommand;
|
|
5165
|
-
exports.UpdateTieringConfigurationInput$ = UpdateTieringConfigurationInput$;
|
|
5166
|
-
exports.UpdateTieringConfigurationOutput$ = UpdateTieringConfigurationOutput$;
|
|
5167
1984
|
exports.VaultState = VaultState;
|
|
5168
1985
|
exports.VaultType = VaultType;
|
|
5169
1986
|
exports.paginateListBackupJobSummaries = paginateListBackupJobSummaries;
|
|
@@ -5195,3 +2012,15 @@ exports.paginateListScanJobSummaries = paginateListScanJobSummaries;
|
|
|
5195
2012
|
exports.paginateListScanJobs = paginateListScanJobs;
|
|
5196
2013
|
exports.paginateListTags = paginateListTags;
|
|
5197
2014
|
exports.paginateListTieringConfigurations = paginateListTieringConfigurations;
|
|
2015
|
+
Object.keys(schemas_0).forEach(function (k) {
|
|
2016
|
+
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
2017
|
+
enumerable: true,
|
|
2018
|
+
get: function () { return schemas_0[k]; }
|
|
2019
|
+
});
|
|
2020
|
+
});
|
|
2021
|
+
Object.keys(errors).forEach(function (k) {
|
|
2022
|
+
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
2023
|
+
enumerable: true,
|
|
2024
|
+
get: function () { return errors[k]; }
|
|
2025
|
+
});
|
|
2026
|
+
});
|