@aws-sdk/client-backup 3.721.0 → 3.723.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 +583 -342
- package/dist-es/BackupClient.js +1 -0
- package/dist-es/models/models_0.js +62 -20
- package/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +2 -2
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +5 -3
- package/dist-types/ts3.4/runtimeConfig.d.ts +9 -7
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +20 -8
- package/package.json +43 -43
package/dist-cjs/index.js
CHANGED
|
@@ -299,7 +299,14 @@ var resolveRuntimeExtensions = /* @__PURE__ */ __name((runtimeConfig, extensions
|
|
|
299
299
|
}, "resolveRuntimeExtensions");
|
|
300
300
|
|
|
301
301
|
// src/BackupClient.ts
|
|
302
|
-
var
|
|
302
|
+
var BackupClient = class extends import_smithy_client.Client {
|
|
303
|
+
static {
|
|
304
|
+
__name(this, "BackupClient");
|
|
305
|
+
}
|
|
306
|
+
/**
|
|
307
|
+
* The resolved configuration of BackupClient class. This is resolved and normalized from the {@link BackupClientConfig | constructor configuration interface}.
|
|
308
|
+
*/
|
|
309
|
+
config;
|
|
303
310
|
constructor(...[configuration]) {
|
|
304
311
|
const _config_0 = (0, import_runtimeConfig.getRuntimeConfig)(configuration || {});
|
|
305
312
|
const _config_1 = resolveClientEndpointParameters(_config_0);
|
|
@@ -309,7 +316,7 @@ var _BackupClient = class _BackupClient extends import_smithy_client.Client {
|
|
|
309
316
|
const _config_5 = (0, import_middleware_host_header.resolveHostHeaderConfig)(_config_4);
|
|
310
317
|
const _config_6 = (0, import_middleware_endpoint.resolveEndpointConfig)(_config_5);
|
|
311
318
|
const _config_7 = (0, import_httpAuthSchemeProvider.resolveHttpAuthSchemeConfig)(_config_6);
|
|
312
|
-
const _config_8 = resolveRuntimeExtensions(_config_7,
|
|
319
|
+
const _config_8 = resolveRuntimeExtensions(_config_7, configuration?.extensions || []);
|
|
313
320
|
super(_config_8);
|
|
314
321
|
this.config = _config_8;
|
|
315
322
|
this.middlewareStack.use((0, import_middleware_user_agent.getUserAgentPlugin)(this.config));
|
|
@@ -337,8 +344,6 @@ var _BackupClient = class _BackupClient extends import_smithy_client.Client {
|
|
|
337
344
|
super.destroy();
|
|
338
345
|
}
|
|
339
346
|
};
|
|
340
|
-
__name(_BackupClient, "BackupClient");
|
|
341
|
-
var BackupClient = _BackupClient;
|
|
342
347
|
|
|
343
348
|
// src/Backup.ts
|
|
344
349
|
|
|
@@ -356,7 +361,10 @@ var import_uuid = require("uuid");
|
|
|
356
361
|
|
|
357
362
|
// src/models/BackupServiceException.ts
|
|
358
363
|
|
|
359
|
-
var
|
|
364
|
+
var BackupServiceException = class _BackupServiceException extends import_smithy_client.ServiceException {
|
|
365
|
+
static {
|
|
366
|
+
__name(this, "BackupServiceException");
|
|
367
|
+
}
|
|
360
368
|
/**
|
|
361
369
|
* @internal
|
|
362
370
|
*/
|
|
@@ -365,8 +373,6 @@ var _BackupServiceException = class _BackupServiceException extends import_smith
|
|
|
365
373
|
Object.setPrototypeOf(this, _BackupServiceException.prototype);
|
|
366
374
|
}
|
|
367
375
|
};
|
|
368
|
-
__name(_BackupServiceException, "BackupServiceException");
|
|
369
|
-
var BackupServiceException = _BackupServiceException;
|
|
370
376
|
|
|
371
377
|
// src/models/models_0.ts
|
|
372
378
|
|
|
@@ -375,7 +381,34 @@ var AggregationPeriod = {
|
|
|
375
381
|
ONE_DAY: "ONE_DAY",
|
|
376
382
|
SEVEN_DAYS: "SEVEN_DAYS"
|
|
377
383
|
};
|
|
378
|
-
var
|
|
384
|
+
var AlreadyExistsException = class _AlreadyExistsException extends BackupServiceException {
|
|
385
|
+
static {
|
|
386
|
+
__name(this, "AlreadyExistsException");
|
|
387
|
+
}
|
|
388
|
+
name = "AlreadyExistsException";
|
|
389
|
+
$fault = "client";
|
|
390
|
+
Code;
|
|
391
|
+
Message;
|
|
392
|
+
/**
|
|
393
|
+
* <p></p>
|
|
394
|
+
* @public
|
|
395
|
+
*/
|
|
396
|
+
CreatorRequestId;
|
|
397
|
+
/**
|
|
398
|
+
* <p></p>
|
|
399
|
+
* @public
|
|
400
|
+
*/
|
|
401
|
+
Arn;
|
|
402
|
+
/**
|
|
403
|
+
* <p></p>
|
|
404
|
+
* @public
|
|
405
|
+
*/
|
|
406
|
+
Type;
|
|
407
|
+
/**
|
|
408
|
+
* <p></p>
|
|
409
|
+
* @public
|
|
410
|
+
*/
|
|
411
|
+
Context;
|
|
379
412
|
/**
|
|
380
413
|
* @internal
|
|
381
414
|
*/
|
|
@@ -385,8 +418,6 @@ var _AlreadyExistsException = class _AlreadyExistsException extends BackupServic
|
|
|
385
418
|
$fault: "client",
|
|
386
419
|
...opts
|
|
387
420
|
});
|
|
388
|
-
this.name = "AlreadyExistsException";
|
|
389
|
-
this.$fault = "client";
|
|
390
421
|
Object.setPrototypeOf(this, _AlreadyExistsException.prototype);
|
|
391
422
|
this.Code = opts.Code;
|
|
392
423
|
this.Message = opts.Message;
|
|
@@ -396,8 +427,6 @@ var _AlreadyExistsException = class _AlreadyExistsException extends BackupServic
|
|
|
396
427
|
this.Context = opts.Context;
|
|
397
428
|
}
|
|
398
429
|
};
|
|
399
|
-
__name(_AlreadyExistsException, "AlreadyExistsException");
|
|
400
|
-
var AlreadyExistsException = _AlreadyExistsException;
|
|
401
430
|
var BackupJobState = {
|
|
402
431
|
ABORTED: "ABORTED",
|
|
403
432
|
ABORTING: "ABORTING",
|
|
@@ -453,7 +482,24 @@ var VaultType = {
|
|
|
453
482
|
BACKUP_VAULT: "BACKUP_VAULT",
|
|
454
483
|
LOGICALLY_AIR_GAPPED_BACKUP_VAULT: "LOGICALLY_AIR_GAPPED_BACKUP_VAULT"
|
|
455
484
|
};
|
|
456
|
-
var
|
|
485
|
+
var InvalidParameterValueException = class _InvalidParameterValueException extends BackupServiceException {
|
|
486
|
+
static {
|
|
487
|
+
__name(this, "InvalidParameterValueException");
|
|
488
|
+
}
|
|
489
|
+
name = "InvalidParameterValueException";
|
|
490
|
+
$fault = "client";
|
|
491
|
+
Code;
|
|
492
|
+
Message;
|
|
493
|
+
/**
|
|
494
|
+
* <p></p>
|
|
495
|
+
* @public
|
|
496
|
+
*/
|
|
497
|
+
Type;
|
|
498
|
+
/**
|
|
499
|
+
* <p></p>
|
|
500
|
+
* @public
|
|
501
|
+
*/
|
|
502
|
+
Context;
|
|
457
503
|
/**
|
|
458
504
|
* @internal
|
|
459
505
|
*/
|
|
@@ -463,8 +509,6 @@ var _InvalidParameterValueException = class _InvalidParameterValueException exte
|
|
|
463
509
|
$fault: "client",
|
|
464
510
|
...opts
|
|
465
511
|
});
|
|
466
|
-
this.name = "InvalidParameterValueException";
|
|
467
|
-
this.$fault = "client";
|
|
468
512
|
Object.setPrototypeOf(this, _InvalidParameterValueException.prototype);
|
|
469
513
|
this.Code = opts.Code;
|
|
470
514
|
this.Message = opts.Message;
|
|
@@ -472,9 +516,24 @@ var _InvalidParameterValueException = class _InvalidParameterValueException exte
|
|
|
472
516
|
this.Context = opts.Context;
|
|
473
517
|
}
|
|
474
518
|
};
|
|
475
|
-
|
|
476
|
-
|
|
477
|
-
|
|
519
|
+
var InvalidResourceStateException = class _InvalidResourceStateException extends BackupServiceException {
|
|
520
|
+
static {
|
|
521
|
+
__name(this, "InvalidResourceStateException");
|
|
522
|
+
}
|
|
523
|
+
name = "InvalidResourceStateException";
|
|
524
|
+
$fault = "client";
|
|
525
|
+
Code;
|
|
526
|
+
Message;
|
|
527
|
+
/**
|
|
528
|
+
* <p></p>
|
|
529
|
+
* @public
|
|
530
|
+
*/
|
|
531
|
+
Type;
|
|
532
|
+
/**
|
|
533
|
+
* <p></p>
|
|
534
|
+
* @public
|
|
535
|
+
*/
|
|
536
|
+
Context;
|
|
478
537
|
/**
|
|
479
538
|
* @internal
|
|
480
539
|
*/
|
|
@@ -484,8 +543,6 @@ var _InvalidResourceStateException = class _InvalidResourceStateException extend
|
|
|
484
543
|
$fault: "client",
|
|
485
544
|
...opts
|
|
486
545
|
});
|
|
487
|
-
this.name = "InvalidResourceStateException";
|
|
488
|
-
this.$fault = "client";
|
|
489
546
|
Object.setPrototypeOf(this, _InvalidResourceStateException.prototype);
|
|
490
547
|
this.Code = opts.Code;
|
|
491
548
|
this.Message = opts.Message;
|
|
@@ -493,9 +550,24 @@ var _InvalidResourceStateException = class _InvalidResourceStateException extend
|
|
|
493
550
|
this.Context = opts.Context;
|
|
494
551
|
}
|
|
495
552
|
};
|
|
496
|
-
|
|
497
|
-
|
|
498
|
-
|
|
553
|
+
var MissingParameterValueException = class _MissingParameterValueException extends BackupServiceException {
|
|
554
|
+
static {
|
|
555
|
+
__name(this, "MissingParameterValueException");
|
|
556
|
+
}
|
|
557
|
+
name = "MissingParameterValueException";
|
|
558
|
+
$fault = "client";
|
|
559
|
+
Code;
|
|
560
|
+
Message;
|
|
561
|
+
/**
|
|
562
|
+
* <p></p>
|
|
563
|
+
* @public
|
|
564
|
+
*/
|
|
565
|
+
Type;
|
|
566
|
+
/**
|
|
567
|
+
* <p></p>
|
|
568
|
+
* @public
|
|
569
|
+
*/
|
|
570
|
+
Context;
|
|
499
571
|
/**
|
|
500
572
|
* @internal
|
|
501
573
|
*/
|
|
@@ -505,8 +577,6 @@ var _MissingParameterValueException = class _MissingParameterValueException exte
|
|
|
505
577
|
$fault: "client",
|
|
506
578
|
...opts
|
|
507
579
|
});
|
|
508
|
-
this.name = "MissingParameterValueException";
|
|
509
|
-
this.$fault = "client";
|
|
510
580
|
Object.setPrototypeOf(this, _MissingParameterValueException.prototype);
|
|
511
581
|
this.Code = opts.Code;
|
|
512
582
|
this.Message = opts.Message;
|
|
@@ -514,9 +584,24 @@ var _MissingParameterValueException = class _MissingParameterValueException exte
|
|
|
514
584
|
this.Context = opts.Context;
|
|
515
585
|
}
|
|
516
586
|
};
|
|
517
|
-
|
|
518
|
-
|
|
519
|
-
|
|
587
|
+
var ResourceNotFoundException = class _ResourceNotFoundException extends BackupServiceException {
|
|
588
|
+
static {
|
|
589
|
+
__name(this, "ResourceNotFoundException");
|
|
590
|
+
}
|
|
591
|
+
name = "ResourceNotFoundException";
|
|
592
|
+
$fault = "client";
|
|
593
|
+
Code;
|
|
594
|
+
Message;
|
|
595
|
+
/**
|
|
596
|
+
* <p></p>
|
|
597
|
+
* @public
|
|
598
|
+
*/
|
|
599
|
+
Type;
|
|
600
|
+
/**
|
|
601
|
+
* <p></p>
|
|
602
|
+
* @public
|
|
603
|
+
*/
|
|
604
|
+
Context;
|
|
520
605
|
/**
|
|
521
606
|
* @internal
|
|
522
607
|
*/
|
|
@@ -526,8 +611,6 @@ var _ResourceNotFoundException = class _ResourceNotFoundException extends Backup
|
|
|
526
611
|
$fault: "client",
|
|
527
612
|
...opts
|
|
528
613
|
});
|
|
529
|
-
this.name = "ResourceNotFoundException";
|
|
530
|
-
this.$fault = "client";
|
|
531
614
|
Object.setPrototypeOf(this, _ResourceNotFoundException.prototype);
|
|
532
615
|
this.Code = opts.Code;
|
|
533
616
|
this.Message = opts.Message;
|
|
@@ -535,9 +618,24 @@ var _ResourceNotFoundException = class _ResourceNotFoundException extends Backup
|
|
|
535
618
|
this.Context = opts.Context;
|
|
536
619
|
}
|
|
537
620
|
};
|
|
538
|
-
|
|
539
|
-
|
|
540
|
-
|
|
621
|
+
var ServiceUnavailableException = class _ServiceUnavailableException extends BackupServiceException {
|
|
622
|
+
static {
|
|
623
|
+
__name(this, "ServiceUnavailableException");
|
|
624
|
+
}
|
|
625
|
+
name = "ServiceUnavailableException";
|
|
626
|
+
$fault = "server";
|
|
627
|
+
Code;
|
|
628
|
+
Message;
|
|
629
|
+
/**
|
|
630
|
+
* <p></p>
|
|
631
|
+
* @public
|
|
632
|
+
*/
|
|
633
|
+
Type;
|
|
634
|
+
/**
|
|
635
|
+
* <p></p>
|
|
636
|
+
* @public
|
|
637
|
+
*/
|
|
638
|
+
Context;
|
|
541
639
|
/**
|
|
542
640
|
* @internal
|
|
543
641
|
*/
|
|
@@ -547,8 +645,6 @@ var _ServiceUnavailableException = class _ServiceUnavailableException extends Ba
|
|
|
547
645
|
$fault: "server",
|
|
548
646
|
...opts
|
|
549
647
|
});
|
|
550
|
-
this.name = "ServiceUnavailableException";
|
|
551
|
-
this.$fault = "server";
|
|
552
648
|
Object.setPrototypeOf(this, _ServiceUnavailableException.prototype);
|
|
553
649
|
this.Code = opts.Code;
|
|
554
650
|
this.Message = opts.Message;
|
|
@@ -556,9 +652,24 @@ var _ServiceUnavailableException = class _ServiceUnavailableException extends Ba
|
|
|
556
652
|
this.Context = opts.Context;
|
|
557
653
|
}
|
|
558
654
|
};
|
|
559
|
-
|
|
560
|
-
|
|
561
|
-
|
|
655
|
+
var ConflictException = class _ConflictException extends BackupServiceException {
|
|
656
|
+
static {
|
|
657
|
+
__name(this, "ConflictException");
|
|
658
|
+
}
|
|
659
|
+
name = "ConflictException";
|
|
660
|
+
$fault = "client";
|
|
661
|
+
Code;
|
|
662
|
+
Message;
|
|
663
|
+
/**
|
|
664
|
+
* <p></p>
|
|
665
|
+
* @public
|
|
666
|
+
*/
|
|
667
|
+
Type;
|
|
668
|
+
/**
|
|
669
|
+
* <p></p>
|
|
670
|
+
* @public
|
|
671
|
+
*/
|
|
672
|
+
Context;
|
|
562
673
|
/**
|
|
563
674
|
* @internal
|
|
564
675
|
*/
|
|
@@ -568,8 +679,6 @@ var _ConflictException = class _ConflictException extends BackupServiceException
|
|
|
568
679
|
$fault: "client",
|
|
569
680
|
...opts
|
|
570
681
|
});
|
|
571
|
-
this.name = "ConflictException";
|
|
572
|
-
this.$fault = "client";
|
|
573
682
|
Object.setPrototypeOf(this, _ConflictException.prototype);
|
|
574
683
|
this.Code = opts.Code;
|
|
575
684
|
this.Message = opts.Message;
|
|
@@ -577,8 +686,6 @@ var _ConflictException = class _ConflictException extends BackupServiceException
|
|
|
577
686
|
this.Context = opts.Context;
|
|
578
687
|
}
|
|
579
688
|
};
|
|
580
|
-
__name(_ConflictException, "ConflictException");
|
|
581
|
-
var ConflictException = _ConflictException;
|
|
582
689
|
var CopyJobState = {
|
|
583
690
|
COMPLETED: "COMPLETED",
|
|
584
691
|
CREATED: "CREATED",
|
|
@@ -599,7 +706,24 @@ var CopyJobStatus = {
|
|
|
599
706
|
PARTIAL: "PARTIAL",
|
|
600
707
|
RUNNING: "RUNNING"
|
|
601
708
|
};
|
|
602
|
-
var
|
|
709
|
+
var LimitExceededException = class _LimitExceededException extends BackupServiceException {
|
|
710
|
+
static {
|
|
711
|
+
__name(this, "LimitExceededException");
|
|
712
|
+
}
|
|
713
|
+
name = "LimitExceededException";
|
|
714
|
+
$fault = "client";
|
|
715
|
+
Code;
|
|
716
|
+
Message;
|
|
717
|
+
/**
|
|
718
|
+
* <p></p>
|
|
719
|
+
* @public
|
|
720
|
+
*/
|
|
721
|
+
Type;
|
|
722
|
+
/**
|
|
723
|
+
* <p></p>
|
|
724
|
+
* @public
|
|
725
|
+
*/
|
|
726
|
+
Context;
|
|
603
727
|
/**
|
|
604
728
|
* @internal
|
|
605
729
|
*/
|
|
@@ -609,8 +733,6 @@ var _LimitExceededException = class _LimitExceededException extends BackupServic
|
|
|
609
733
|
$fault: "client",
|
|
610
734
|
...opts
|
|
611
735
|
});
|
|
612
|
-
this.name = "LimitExceededException";
|
|
613
|
-
this.$fault = "client";
|
|
614
736
|
Object.setPrototypeOf(this, _LimitExceededException.prototype);
|
|
615
737
|
this.Code = opts.Code;
|
|
616
738
|
this.Message = opts.Message;
|
|
@@ -618,15 +740,30 @@ var _LimitExceededException = class _LimitExceededException extends BackupServic
|
|
|
618
740
|
this.Context = opts.Context;
|
|
619
741
|
}
|
|
620
742
|
};
|
|
621
|
-
__name(_LimitExceededException, "LimitExceededException");
|
|
622
|
-
var LimitExceededException = _LimitExceededException;
|
|
623
743
|
var LegalHoldStatus = {
|
|
624
744
|
ACTIVE: "ACTIVE",
|
|
625
745
|
CANCELED: "CANCELED",
|
|
626
746
|
CANCELING: "CANCELING",
|
|
627
747
|
CREATING: "CREATING"
|
|
628
748
|
};
|
|
629
|
-
var
|
|
749
|
+
var InvalidRequestException = class _InvalidRequestException extends BackupServiceException {
|
|
750
|
+
static {
|
|
751
|
+
__name(this, "InvalidRequestException");
|
|
752
|
+
}
|
|
753
|
+
name = "InvalidRequestException";
|
|
754
|
+
$fault = "client";
|
|
755
|
+
Code;
|
|
756
|
+
Message;
|
|
757
|
+
/**
|
|
758
|
+
* <p></p>
|
|
759
|
+
* @public
|
|
760
|
+
*/
|
|
761
|
+
Type;
|
|
762
|
+
/**
|
|
763
|
+
* <p></p>
|
|
764
|
+
* @public
|
|
765
|
+
*/
|
|
766
|
+
Context;
|
|
630
767
|
/**
|
|
631
768
|
* @internal
|
|
632
769
|
*/
|
|
@@ -636,8 +773,6 @@ var _InvalidRequestException = class _InvalidRequestException extends BackupServ
|
|
|
636
773
|
$fault: "client",
|
|
637
774
|
...opts
|
|
638
775
|
});
|
|
639
|
-
this.name = "InvalidRequestException";
|
|
640
|
-
this.$fault = "client";
|
|
641
776
|
Object.setPrototypeOf(this, _InvalidRequestException.prototype);
|
|
642
777
|
this.Code = opts.Code;
|
|
643
778
|
this.Message = opts.Message;
|
|
@@ -645,8 +780,6 @@ var _InvalidRequestException = class _InvalidRequestException extends BackupServ
|
|
|
645
780
|
this.Context = opts.Context;
|
|
646
781
|
}
|
|
647
782
|
};
|
|
648
|
-
__name(_InvalidRequestException, "InvalidRequestException");
|
|
649
|
-
var InvalidRequestException = _InvalidRequestException;
|
|
650
783
|
var RestoreTestingRecoveryPointSelectionAlgorithm = {
|
|
651
784
|
LATEST_WITHIN_WINDOW: "LATEST_WITHIN_WINDOW",
|
|
652
785
|
RANDOM_WITHIN_WINDOW: "RANDOM_WITHIN_WINDOW"
|
|
@@ -655,7 +788,24 @@ var RestoreTestingRecoveryPointType = {
|
|
|
655
788
|
CONTINUOUS: "CONTINUOUS",
|
|
656
789
|
SNAPSHOT: "SNAPSHOT"
|
|
657
790
|
};
|
|
658
|
-
var
|
|
791
|
+
var DependencyFailureException = class _DependencyFailureException extends BackupServiceException {
|
|
792
|
+
static {
|
|
793
|
+
__name(this, "DependencyFailureException");
|
|
794
|
+
}
|
|
795
|
+
name = "DependencyFailureException";
|
|
796
|
+
$fault = "server";
|
|
797
|
+
Code;
|
|
798
|
+
Message;
|
|
799
|
+
/**
|
|
800
|
+
* <p></p>
|
|
801
|
+
* @public
|
|
802
|
+
*/
|
|
803
|
+
Type;
|
|
804
|
+
/**
|
|
805
|
+
* <p></p>
|
|
806
|
+
* @public
|
|
807
|
+
*/
|
|
808
|
+
Context;
|
|
659
809
|
/**
|
|
660
810
|
* @internal
|
|
661
811
|
*/
|
|
@@ -665,8 +815,6 @@ var _DependencyFailureException = class _DependencyFailureException extends Back
|
|
|
665
815
|
$fault: "server",
|
|
666
816
|
...opts
|
|
667
817
|
});
|
|
668
|
-
this.name = "DependencyFailureException";
|
|
669
|
-
this.$fault = "server";
|
|
670
818
|
Object.setPrototypeOf(this, _DependencyFailureException.prototype);
|
|
671
819
|
this.Code = opts.Code;
|
|
672
820
|
this.Message = opts.Message;
|
|
@@ -674,8 +822,6 @@ var _DependencyFailureException = class _DependencyFailureException extends Back
|
|
|
674
822
|
this.Context = opts.Context;
|
|
675
823
|
}
|
|
676
824
|
};
|
|
677
|
-
__name(_DependencyFailureException, "DependencyFailureException");
|
|
678
|
-
var DependencyFailureException = _DependencyFailureException;
|
|
679
825
|
var IndexStatus = {
|
|
680
826
|
ACTIVE: "ACTIVE",
|
|
681
827
|
DELETING: "DELETING",
|
|
@@ -4325,1317 +4471,1411 @@ var _vI = "versionId";
|
|
|
4325
4471
|
var _vT = "vaultType";
|
|
4326
4472
|
|
|
4327
4473
|
// src/commands/CancelLegalHoldCommand.ts
|
|
4328
|
-
var
|
|
4474
|
+
var CancelLegalHoldCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4329
4475
|
return [
|
|
4330
4476
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4331
4477
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4332
4478
|
];
|
|
4333
4479
|
}).s("CryoControllerUserManager", "CancelLegalHold", {}).n("BackupClient", "CancelLegalHoldCommand").f(void 0, void 0).ser(se_CancelLegalHoldCommand).de(de_CancelLegalHoldCommand).build() {
|
|
4480
|
+
static {
|
|
4481
|
+
__name(this, "CancelLegalHoldCommand");
|
|
4482
|
+
}
|
|
4334
4483
|
};
|
|
4335
|
-
__name(_CancelLegalHoldCommand, "CancelLegalHoldCommand");
|
|
4336
|
-
var CancelLegalHoldCommand = _CancelLegalHoldCommand;
|
|
4337
4484
|
|
|
4338
4485
|
// src/commands/CreateBackupPlanCommand.ts
|
|
4339
4486
|
|
|
4340
4487
|
|
|
4341
4488
|
|
|
4342
|
-
var
|
|
4489
|
+
var CreateBackupPlanCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4343
4490
|
return [
|
|
4344
4491
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4345
4492
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4346
4493
|
];
|
|
4347
4494
|
}).s("CryoControllerUserManager", "CreateBackupPlan", {}).n("BackupClient", "CreateBackupPlanCommand").f(CreateBackupPlanInputFilterSensitiveLog, void 0).ser(se_CreateBackupPlanCommand).de(de_CreateBackupPlanCommand).build() {
|
|
4495
|
+
static {
|
|
4496
|
+
__name(this, "CreateBackupPlanCommand");
|
|
4497
|
+
}
|
|
4348
4498
|
};
|
|
4349
|
-
__name(_CreateBackupPlanCommand, "CreateBackupPlanCommand");
|
|
4350
|
-
var CreateBackupPlanCommand = _CreateBackupPlanCommand;
|
|
4351
4499
|
|
|
4352
4500
|
// src/commands/CreateBackupSelectionCommand.ts
|
|
4353
4501
|
|
|
4354
4502
|
|
|
4355
4503
|
|
|
4356
|
-
var
|
|
4504
|
+
var CreateBackupSelectionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4357
4505
|
return [
|
|
4358
4506
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4359
4507
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4360
4508
|
];
|
|
4361
4509
|
}).s("CryoControllerUserManager", "CreateBackupSelection", {}).n("BackupClient", "CreateBackupSelectionCommand").f(void 0, void 0).ser(se_CreateBackupSelectionCommand).de(de_CreateBackupSelectionCommand).build() {
|
|
4510
|
+
static {
|
|
4511
|
+
__name(this, "CreateBackupSelectionCommand");
|
|
4512
|
+
}
|
|
4362
4513
|
};
|
|
4363
|
-
__name(_CreateBackupSelectionCommand, "CreateBackupSelectionCommand");
|
|
4364
|
-
var CreateBackupSelectionCommand = _CreateBackupSelectionCommand;
|
|
4365
4514
|
|
|
4366
4515
|
// src/commands/CreateBackupVaultCommand.ts
|
|
4367
4516
|
|
|
4368
4517
|
|
|
4369
4518
|
|
|
4370
|
-
var
|
|
4519
|
+
var CreateBackupVaultCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4371
4520
|
return [
|
|
4372
4521
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4373
4522
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4374
4523
|
];
|
|
4375
4524
|
}).s("CryoControllerUserManager", "CreateBackupVault", {}).n("BackupClient", "CreateBackupVaultCommand").f(CreateBackupVaultInputFilterSensitiveLog, void 0).ser(se_CreateBackupVaultCommand).de(de_CreateBackupVaultCommand).build() {
|
|
4525
|
+
static {
|
|
4526
|
+
__name(this, "CreateBackupVaultCommand");
|
|
4527
|
+
}
|
|
4376
4528
|
};
|
|
4377
|
-
__name(_CreateBackupVaultCommand, "CreateBackupVaultCommand");
|
|
4378
|
-
var CreateBackupVaultCommand = _CreateBackupVaultCommand;
|
|
4379
4529
|
|
|
4380
4530
|
// src/commands/CreateFrameworkCommand.ts
|
|
4381
4531
|
|
|
4382
4532
|
|
|
4383
4533
|
|
|
4384
|
-
var
|
|
4534
|
+
var CreateFrameworkCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4385
4535
|
return [
|
|
4386
4536
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4387
4537
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4388
4538
|
];
|
|
4389
4539
|
}).s("CryoControllerUserManager", "CreateFramework", {}).n("BackupClient", "CreateFrameworkCommand").f(void 0, void 0).ser(se_CreateFrameworkCommand).de(de_CreateFrameworkCommand).build() {
|
|
4540
|
+
static {
|
|
4541
|
+
__name(this, "CreateFrameworkCommand");
|
|
4542
|
+
}
|
|
4390
4543
|
};
|
|
4391
|
-
__name(_CreateFrameworkCommand, "CreateFrameworkCommand");
|
|
4392
|
-
var CreateFrameworkCommand = _CreateFrameworkCommand;
|
|
4393
4544
|
|
|
4394
4545
|
// src/commands/CreateLegalHoldCommand.ts
|
|
4395
4546
|
|
|
4396
4547
|
|
|
4397
4548
|
|
|
4398
|
-
var
|
|
4549
|
+
var CreateLegalHoldCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4399
4550
|
return [
|
|
4400
4551
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4401
4552
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4402
4553
|
];
|
|
4403
4554
|
}).s("CryoControllerUserManager", "CreateLegalHold", {}).n("BackupClient", "CreateLegalHoldCommand").f(CreateLegalHoldInputFilterSensitiveLog, void 0).ser(se_CreateLegalHoldCommand).de(de_CreateLegalHoldCommand).build() {
|
|
4555
|
+
static {
|
|
4556
|
+
__name(this, "CreateLegalHoldCommand");
|
|
4557
|
+
}
|
|
4404
4558
|
};
|
|
4405
|
-
__name(_CreateLegalHoldCommand, "CreateLegalHoldCommand");
|
|
4406
|
-
var CreateLegalHoldCommand = _CreateLegalHoldCommand;
|
|
4407
4559
|
|
|
4408
4560
|
// src/commands/CreateLogicallyAirGappedBackupVaultCommand.ts
|
|
4409
4561
|
|
|
4410
4562
|
|
|
4411
4563
|
|
|
4412
|
-
var
|
|
4564
|
+
var CreateLogicallyAirGappedBackupVaultCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4413
4565
|
return [
|
|
4414
4566
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4415
4567
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4416
4568
|
];
|
|
4417
4569
|
}).s("CryoControllerUserManager", "CreateLogicallyAirGappedBackupVault", {}).n("BackupClient", "CreateLogicallyAirGappedBackupVaultCommand").f(CreateLogicallyAirGappedBackupVaultInputFilterSensitiveLog, void 0).ser(se_CreateLogicallyAirGappedBackupVaultCommand).de(de_CreateLogicallyAirGappedBackupVaultCommand).build() {
|
|
4570
|
+
static {
|
|
4571
|
+
__name(this, "CreateLogicallyAirGappedBackupVaultCommand");
|
|
4572
|
+
}
|
|
4418
4573
|
};
|
|
4419
|
-
__name(_CreateLogicallyAirGappedBackupVaultCommand, "CreateLogicallyAirGappedBackupVaultCommand");
|
|
4420
|
-
var CreateLogicallyAirGappedBackupVaultCommand = _CreateLogicallyAirGappedBackupVaultCommand;
|
|
4421
4574
|
|
|
4422
4575
|
// src/commands/CreateReportPlanCommand.ts
|
|
4423
4576
|
|
|
4424
4577
|
|
|
4425
4578
|
|
|
4426
|
-
var
|
|
4579
|
+
var CreateReportPlanCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4427
4580
|
return [
|
|
4428
4581
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4429
4582
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4430
4583
|
];
|
|
4431
4584
|
}).s("CryoControllerUserManager", "CreateReportPlan", {}).n("BackupClient", "CreateReportPlanCommand").f(void 0, void 0).ser(se_CreateReportPlanCommand).de(de_CreateReportPlanCommand).build() {
|
|
4585
|
+
static {
|
|
4586
|
+
__name(this, "CreateReportPlanCommand");
|
|
4587
|
+
}
|
|
4432
4588
|
};
|
|
4433
|
-
__name(_CreateReportPlanCommand, "CreateReportPlanCommand");
|
|
4434
|
-
var CreateReportPlanCommand = _CreateReportPlanCommand;
|
|
4435
4589
|
|
|
4436
4590
|
// src/commands/CreateRestoreTestingPlanCommand.ts
|
|
4437
4591
|
|
|
4438
4592
|
|
|
4439
4593
|
|
|
4440
|
-
var
|
|
4594
|
+
var CreateRestoreTestingPlanCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4441
4595
|
return [
|
|
4442
4596
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4443
4597
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4444
4598
|
];
|
|
4445
4599
|
}).s("CryoControllerUserManager", "CreateRestoreTestingPlan", {}).n("BackupClient", "CreateRestoreTestingPlanCommand").f(CreateRestoreTestingPlanInputFilterSensitiveLog, void 0).ser(se_CreateRestoreTestingPlanCommand).de(de_CreateRestoreTestingPlanCommand).build() {
|
|
4600
|
+
static {
|
|
4601
|
+
__name(this, "CreateRestoreTestingPlanCommand");
|
|
4602
|
+
}
|
|
4446
4603
|
};
|
|
4447
|
-
__name(_CreateRestoreTestingPlanCommand, "CreateRestoreTestingPlanCommand");
|
|
4448
|
-
var CreateRestoreTestingPlanCommand = _CreateRestoreTestingPlanCommand;
|
|
4449
4604
|
|
|
4450
4605
|
// src/commands/CreateRestoreTestingSelectionCommand.ts
|
|
4451
4606
|
|
|
4452
4607
|
|
|
4453
4608
|
|
|
4454
|
-
var
|
|
4609
|
+
var CreateRestoreTestingSelectionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4455
4610
|
return [
|
|
4456
4611
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4457
4612
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4458
4613
|
];
|
|
4459
4614
|
}).s("CryoControllerUserManager", "CreateRestoreTestingSelection", {}).n("BackupClient", "CreateRestoreTestingSelectionCommand").f(CreateRestoreTestingSelectionInputFilterSensitiveLog, void 0).ser(se_CreateRestoreTestingSelectionCommand).de(de_CreateRestoreTestingSelectionCommand).build() {
|
|
4615
|
+
static {
|
|
4616
|
+
__name(this, "CreateRestoreTestingSelectionCommand");
|
|
4617
|
+
}
|
|
4460
4618
|
};
|
|
4461
|
-
__name(_CreateRestoreTestingSelectionCommand, "CreateRestoreTestingSelectionCommand");
|
|
4462
|
-
var CreateRestoreTestingSelectionCommand = _CreateRestoreTestingSelectionCommand;
|
|
4463
4619
|
|
|
4464
4620
|
// src/commands/DeleteBackupPlanCommand.ts
|
|
4465
4621
|
|
|
4466
4622
|
|
|
4467
4623
|
|
|
4468
|
-
var
|
|
4624
|
+
var DeleteBackupPlanCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4469
4625
|
return [
|
|
4470
4626
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4471
4627
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4472
4628
|
];
|
|
4473
4629
|
}).s("CryoControllerUserManager", "DeleteBackupPlan", {}).n("BackupClient", "DeleteBackupPlanCommand").f(void 0, void 0).ser(se_DeleteBackupPlanCommand).de(de_DeleteBackupPlanCommand).build() {
|
|
4630
|
+
static {
|
|
4631
|
+
__name(this, "DeleteBackupPlanCommand");
|
|
4632
|
+
}
|
|
4474
4633
|
};
|
|
4475
|
-
__name(_DeleteBackupPlanCommand, "DeleteBackupPlanCommand");
|
|
4476
|
-
var DeleteBackupPlanCommand = _DeleteBackupPlanCommand;
|
|
4477
4634
|
|
|
4478
4635
|
// src/commands/DeleteBackupSelectionCommand.ts
|
|
4479
4636
|
|
|
4480
4637
|
|
|
4481
4638
|
|
|
4482
|
-
var
|
|
4639
|
+
var DeleteBackupSelectionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4483
4640
|
return [
|
|
4484
4641
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4485
4642
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4486
4643
|
];
|
|
4487
4644
|
}).s("CryoControllerUserManager", "DeleteBackupSelection", {}).n("BackupClient", "DeleteBackupSelectionCommand").f(void 0, void 0).ser(se_DeleteBackupSelectionCommand).de(de_DeleteBackupSelectionCommand).build() {
|
|
4645
|
+
static {
|
|
4646
|
+
__name(this, "DeleteBackupSelectionCommand");
|
|
4647
|
+
}
|
|
4488
4648
|
};
|
|
4489
|
-
__name(_DeleteBackupSelectionCommand, "DeleteBackupSelectionCommand");
|
|
4490
|
-
var DeleteBackupSelectionCommand = _DeleteBackupSelectionCommand;
|
|
4491
4649
|
|
|
4492
4650
|
// src/commands/DeleteBackupVaultAccessPolicyCommand.ts
|
|
4493
4651
|
|
|
4494
4652
|
|
|
4495
4653
|
|
|
4496
|
-
var
|
|
4654
|
+
var DeleteBackupVaultAccessPolicyCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4497
4655
|
return [
|
|
4498
4656
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4499
4657
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4500
4658
|
];
|
|
4501
4659
|
}).s("CryoControllerUserManager", "DeleteBackupVaultAccessPolicy", {}).n("BackupClient", "DeleteBackupVaultAccessPolicyCommand").f(void 0, void 0).ser(se_DeleteBackupVaultAccessPolicyCommand).de(de_DeleteBackupVaultAccessPolicyCommand).build() {
|
|
4660
|
+
static {
|
|
4661
|
+
__name(this, "DeleteBackupVaultAccessPolicyCommand");
|
|
4662
|
+
}
|
|
4502
4663
|
};
|
|
4503
|
-
__name(_DeleteBackupVaultAccessPolicyCommand, "DeleteBackupVaultAccessPolicyCommand");
|
|
4504
|
-
var DeleteBackupVaultAccessPolicyCommand = _DeleteBackupVaultAccessPolicyCommand;
|
|
4505
4664
|
|
|
4506
4665
|
// src/commands/DeleteBackupVaultCommand.ts
|
|
4507
4666
|
|
|
4508
4667
|
|
|
4509
4668
|
|
|
4510
|
-
var
|
|
4669
|
+
var DeleteBackupVaultCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4511
4670
|
return [
|
|
4512
4671
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4513
4672
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4514
4673
|
];
|
|
4515
4674
|
}).s("CryoControllerUserManager", "DeleteBackupVault", {}).n("BackupClient", "DeleteBackupVaultCommand").f(void 0, void 0).ser(se_DeleteBackupVaultCommand).de(de_DeleteBackupVaultCommand).build() {
|
|
4675
|
+
static {
|
|
4676
|
+
__name(this, "DeleteBackupVaultCommand");
|
|
4677
|
+
}
|
|
4516
4678
|
};
|
|
4517
|
-
__name(_DeleteBackupVaultCommand, "DeleteBackupVaultCommand");
|
|
4518
|
-
var DeleteBackupVaultCommand = _DeleteBackupVaultCommand;
|
|
4519
4679
|
|
|
4520
4680
|
// src/commands/DeleteBackupVaultLockConfigurationCommand.ts
|
|
4521
4681
|
|
|
4522
4682
|
|
|
4523
4683
|
|
|
4524
|
-
var
|
|
4684
|
+
var DeleteBackupVaultLockConfigurationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4525
4685
|
return [
|
|
4526
4686
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4527
4687
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4528
4688
|
];
|
|
4529
4689
|
}).s("CryoControllerUserManager", "DeleteBackupVaultLockConfiguration", {}).n("BackupClient", "DeleteBackupVaultLockConfigurationCommand").f(void 0, void 0).ser(se_DeleteBackupVaultLockConfigurationCommand).de(de_DeleteBackupVaultLockConfigurationCommand).build() {
|
|
4690
|
+
static {
|
|
4691
|
+
__name(this, "DeleteBackupVaultLockConfigurationCommand");
|
|
4692
|
+
}
|
|
4530
4693
|
};
|
|
4531
|
-
__name(_DeleteBackupVaultLockConfigurationCommand, "DeleteBackupVaultLockConfigurationCommand");
|
|
4532
|
-
var DeleteBackupVaultLockConfigurationCommand = _DeleteBackupVaultLockConfigurationCommand;
|
|
4533
4694
|
|
|
4534
4695
|
// src/commands/DeleteBackupVaultNotificationsCommand.ts
|
|
4535
4696
|
|
|
4536
4697
|
|
|
4537
4698
|
|
|
4538
|
-
var
|
|
4699
|
+
var DeleteBackupVaultNotificationsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4539
4700
|
return [
|
|
4540
4701
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4541
4702
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4542
4703
|
];
|
|
4543
4704
|
}).s("CryoControllerUserManager", "DeleteBackupVaultNotifications", {}).n("BackupClient", "DeleteBackupVaultNotificationsCommand").f(void 0, void 0).ser(se_DeleteBackupVaultNotificationsCommand).de(de_DeleteBackupVaultNotificationsCommand).build() {
|
|
4705
|
+
static {
|
|
4706
|
+
__name(this, "DeleteBackupVaultNotificationsCommand");
|
|
4707
|
+
}
|
|
4544
4708
|
};
|
|
4545
|
-
__name(_DeleteBackupVaultNotificationsCommand, "DeleteBackupVaultNotificationsCommand");
|
|
4546
|
-
var DeleteBackupVaultNotificationsCommand = _DeleteBackupVaultNotificationsCommand;
|
|
4547
4709
|
|
|
4548
4710
|
// src/commands/DeleteFrameworkCommand.ts
|
|
4549
4711
|
|
|
4550
4712
|
|
|
4551
4713
|
|
|
4552
|
-
var
|
|
4714
|
+
var DeleteFrameworkCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4553
4715
|
return [
|
|
4554
4716
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4555
4717
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4556
4718
|
];
|
|
4557
4719
|
}).s("CryoControllerUserManager", "DeleteFramework", {}).n("BackupClient", "DeleteFrameworkCommand").f(void 0, void 0).ser(se_DeleteFrameworkCommand).de(de_DeleteFrameworkCommand).build() {
|
|
4720
|
+
static {
|
|
4721
|
+
__name(this, "DeleteFrameworkCommand");
|
|
4722
|
+
}
|
|
4558
4723
|
};
|
|
4559
|
-
__name(_DeleteFrameworkCommand, "DeleteFrameworkCommand");
|
|
4560
|
-
var DeleteFrameworkCommand = _DeleteFrameworkCommand;
|
|
4561
4724
|
|
|
4562
4725
|
// src/commands/DeleteRecoveryPointCommand.ts
|
|
4563
4726
|
|
|
4564
4727
|
|
|
4565
4728
|
|
|
4566
|
-
var
|
|
4729
|
+
var DeleteRecoveryPointCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4567
4730
|
return [
|
|
4568
4731
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4569
4732
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4570
4733
|
];
|
|
4571
4734
|
}).s("CryoControllerUserManager", "DeleteRecoveryPoint", {}).n("BackupClient", "DeleteRecoveryPointCommand").f(void 0, void 0).ser(se_DeleteRecoveryPointCommand).de(de_DeleteRecoveryPointCommand).build() {
|
|
4735
|
+
static {
|
|
4736
|
+
__name(this, "DeleteRecoveryPointCommand");
|
|
4737
|
+
}
|
|
4572
4738
|
};
|
|
4573
|
-
__name(_DeleteRecoveryPointCommand, "DeleteRecoveryPointCommand");
|
|
4574
|
-
var DeleteRecoveryPointCommand = _DeleteRecoveryPointCommand;
|
|
4575
4739
|
|
|
4576
4740
|
// src/commands/DeleteReportPlanCommand.ts
|
|
4577
4741
|
|
|
4578
4742
|
|
|
4579
4743
|
|
|
4580
|
-
var
|
|
4744
|
+
var DeleteReportPlanCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4581
4745
|
return [
|
|
4582
4746
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4583
4747
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4584
4748
|
];
|
|
4585
4749
|
}).s("CryoControllerUserManager", "DeleteReportPlan", {}).n("BackupClient", "DeleteReportPlanCommand").f(void 0, void 0).ser(se_DeleteReportPlanCommand).de(de_DeleteReportPlanCommand).build() {
|
|
4750
|
+
static {
|
|
4751
|
+
__name(this, "DeleteReportPlanCommand");
|
|
4752
|
+
}
|
|
4586
4753
|
};
|
|
4587
|
-
__name(_DeleteReportPlanCommand, "DeleteReportPlanCommand");
|
|
4588
|
-
var DeleteReportPlanCommand = _DeleteReportPlanCommand;
|
|
4589
4754
|
|
|
4590
4755
|
// src/commands/DeleteRestoreTestingPlanCommand.ts
|
|
4591
4756
|
|
|
4592
4757
|
|
|
4593
4758
|
|
|
4594
|
-
var
|
|
4759
|
+
var DeleteRestoreTestingPlanCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4595
4760
|
return [
|
|
4596
4761
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4597
4762
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4598
4763
|
];
|
|
4599
4764
|
}).s("CryoControllerUserManager", "DeleteRestoreTestingPlan", {}).n("BackupClient", "DeleteRestoreTestingPlanCommand").f(void 0, void 0).ser(se_DeleteRestoreTestingPlanCommand).de(de_DeleteRestoreTestingPlanCommand).build() {
|
|
4765
|
+
static {
|
|
4766
|
+
__name(this, "DeleteRestoreTestingPlanCommand");
|
|
4767
|
+
}
|
|
4600
4768
|
};
|
|
4601
|
-
__name(_DeleteRestoreTestingPlanCommand, "DeleteRestoreTestingPlanCommand");
|
|
4602
|
-
var DeleteRestoreTestingPlanCommand = _DeleteRestoreTestingPlanCommand;
|
|
4603
4769
|
|
|
4604
4770
|
// src/commands/DeleteRestoreTestingSelectionCommand.ts
|
|
4605
4771
|
|
|
4606
4772
|
|
|
4607
4773
|
|
|
4608
|
-
var
|
|
4774
|
+
var DeleteRestoreTestingSelectionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4609
4775
|
return [
|
|
4610
4776
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4611
4777
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4612
4778
|
];
|
|
4613
4779
|
}).s("CryoControllerUserManager", "DeleteRestoreTestingSelection", {}).n("BackupClient", "DeleteRestoreTestingSelectionCommand").f(void 0, void 0).ser(se_DeleteRestoreTestingSelectionCommand).de(de_DeleteRestoreTestingSelectionCommand).build() {
|
|
4780
|
+
static {
|
|
4781
|
+
__name(this, "DeleteRestoreTestingSelectionCommand");
|
|
4782
|
+
}
|
|
4614
4783
|
};
|
|
4615
|
-
__name(_DeleteRestoreTestingSelectionCommand, "DeleteRestoreTestingSelectionCommand");
|
|
4616
|
-
var DeleteRestoreTestingSelectionCommand = _DeleteRestoreTestingSelectionCommand;
|
|
4617
4784
|
|
|
4618
4785
|
// src/commands/DescribeBackupJobCommand.ts
|
|
4619
4786
|
|
|
4620
4787
|
|
|
4621
4788
|
|
|
4622
|
-
var
|
|
4789
|
+
var DescribeBackupJobCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4623
4790
|
return [
|
|
4624
4791
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4625
4792
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4626
4793
|
];
|
|
4627
4794
|
}).s("CryoControllerUserManager", "DescribeBackupJob", {}).n("BackupClient", "DescribeBackupJobCommand").f(void 0, void 0).ser(se_DescribeBackupJobCommand).de(de_DescribeBackupJobCommand).build() {
|
|
4795
|
+
static {
|
|
4796
|
+
__name(this, "DescribeBackupJobCommand");
|
|
4797
|
+
}
|
|
4628
4798
|
};
|
|
4629
|
-
__name(_DescribeBackupJobCommand, "DescribeBackupJobCommand");
|
|
4630
|
-
var DescribeBackupJobCommand = _DescribeBackupJobCommand;
|
|
4631
4799
|
|
|
4632
4800
|
// src/commands/DescribeBackupVaultCommand.ts
|
|
4633
4801
|
|
|
4634
4802
|
|
|
4635
4803
|
|
|
4636
|
-
var
|
|
4804
|
+
var DescribeBackupVaultCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4637
4805
|
return [
|
|
4638
4806
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4639
4807
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4640
4808
|
];
|
|
4641
4809
|
}).s("CryoControllerUserManager", "DescribeBackupVault", {}).n("BackupClient", "DescribeBackupVaultCommand").f(void 0, void 0).ser(se_DescribeBackupVaultCommand).de(de_DescribeBackupVaultCommand).build() {
|
|
4810
|
+
static {
|
|
4811
|
+
__name(this, "DescribeBackupVaultCommand");
|
|
4812
|
+
}
|
|
4642
4813
|
};
|
|
4643
|
-
__name(_DescribeBackupVaultCommand, "DescribeBackupVaultCommand");
|
|
4644
|
-
var DescribeBackupVaultCommand = _DescribeBackupVaultCommand;
|
|
4645
4814
|
|
|
4646
4815
|
// src/commands/DescribeCopyJobCommand.ts
|
|
4647
4816
|
|
|
4648
4817
|
|
|
4649
4818
|
|
|
4650
|
-
var
|
|
4819
|
+
var DescribeCopyJobCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4651
4820
|
return [
|
|
4652
4821
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4653
4822
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4654
4823
|
];
|
|
4655
4824
|
}).s("CryoControllerUserManager", "DescribeCopyJob", {}).n("BackupClient", "DescribeCopyJobCommand").f(void 0, void 0).ser(se_DescribeCopyJobCommand).de(de_DescribeCopyJobCommand).build() {
|
|
4825
|
+
static {
|
|
4826
|
+
__name(this, "DescribeCopyJobCommand");
|
|
4827
|
+
}
|
|
4656
4828
|
};
|
|
4657
|
-
__name(_DescribeCopyJobCommand, "DescribeCopyJobCommand");
|
|
4658
|
-
var DescribeCopyJobCommand = _DescribeCopyJobCommand;
|
|
4659
4829
|
|
|
4660
4830
|
// src/commands/DescribeFrameworkCommand.ts
|
|
4661
4831
|
|
|
4662
4832
|
|
|
4663
4833
|
|
|
4664
|
-
var
|
|
4834
|
+
var DescribeFrameworkCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4665
4835
|
return [
|
|
4666
4836
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4667
4837
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4668
4838
|
];
|
|
4669
4839
|
}).s("CryoControllerUserManager", "DescribeFramework", {}).n("BackupClient", "DescribeFrameworkCommand").f(void 0, void 0).ser(se_DescribeFrameworkCommand).de(de_DescribeFrameworkCommand).build() {
|
|
4840
|
+
static {
|
|
4841
|
+
__name(this, "DescribeFrameworkCommand");
|
|
4842
|
+
}
|
|
4670
4843
|
};
|
|
4671
|
-
__name(_DescribeFrameworkCommand, "DescribeFrameworkCommand");
|
|
4672
|
-
var DescribeFrameworkCommand = _DescribeFrameworkCommand;
|
|
4673
4844
|
|
|
4674
4845
|
// src/commands/DescribeGlobalSettingsCommand.ts
|
|
4675
4846
|
|
|
4676
4847
|
|
|
4677
4848
|
|
|
4678
|
-
var
|
|
4849
|
+
var DescribeGlobalSettingsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4679
4850
|
return [
|
|
4680
4851
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4681
4852
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4682
4853
|
];
|
|
4683
4854
|
}).s("CryoControllerUserManager", "DescribeGlobalSettings", {}).n("BackupClient", "DescribeGlobalSettingsCommand").f(void 0, void 0).ser(se_DescribeGlobalSettingsCommand).de(de_DescribeGlobalSettingsCommand).build() {
|
|
4855
|
+
static {
|
|
4856
|
+
__name(this, "DescribeGlobalSettingsCommand");
|
|
4857
|
+
}
|
|
4684
4858
|
};
|
|
4685
|
-
__name(_DescribeGlobalSettingsCommand, "DescribeGlobalSettingsCommand");
|
|
4686
|
-
var DescribeGlobalSettingsCommand = _DescribeGlobalSettingsCommand;
|
|
4687
4859
|
|
|
4688
4860
|
// src/commands/DescribeProtectedResourceCommand.ts
|
|
4689
4861
|
|
|
4690
4862
|
|
|
4691
4863
|
|
|
4692
|
-
var
|
|
4864
|
+
var DescribeProtectedResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4693
4865
|
return [
|
|
4694
4866
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4695
4867
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4696
4868
|
];
|
|
4697
4869
|
}).s("CryoControllerUserManager", "DescribeProtectedResource", {}).n("BackupClient", "DescribeProtectedResourceCommand").f(void 0, void 0).ser(se_DescribeProtectedResourceCommand).de(de_DescribeProtectedResourceCommand).build() {
|
|
4870
|
+
static {
|
|
4871
|
+
__name(this, "DescribeProtectedResourceCommand");
|
|
4872
|
+
}
|
|
4698
4873
|
};
|
|
4699
|
-
__name(_DescribeProtectedResourceCommand, "DescribeProtectedResourceCommand");
|
|
4700
|
-
var DescribeProtectedResourceCommand = _DescribeProtectedResourceCommand;
|
|
4701
4874
|
|
|
4702
4875
|
// src/commands/DescribeRecoveryPointCommand.ts
|
|
4703
4876
|
|
|
4704
4877
|
|
|
4705
4878
|
|
|
4706
|
-
var
|
|
4879
|
+
var DescribeRecoveryPointCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4707
4880
|
return [
|
|
4708
4881
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4709
4882
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4710
4883
|
];
|
|
4711
4884
|
}).s("CryoControllerUserManager", "DescribeRecoveryPoint", {}).n("BackupClient", "DescribeRecoveryPointCommand").f(void 0, void 0).ser(se_DescribeRecoveryPointCommand).de(de_DescribeRecoveryPointCommand).build() {
|
|
4885
|
+
static {
|
|
4886
|
+
__name(this, "DescribeRecoveryPointCommand");
|
|
4887
|
+
}
|
|
4712
4888
|
};
|
|
4713
|
-
__name(_DescribeRecoveryPointCommand, "DescribeRecoveryPointCommand");
|
|
4714
|
-
var DescribeRecoveryPointCommand = _DescribeRecoveryPointCommand;
|
|
4715
4889
|
|
|
4716
4890
|
// src/commands/DescribeRegionSettingsCommand.ts
|
|
4717
4891
|
|
|
4718
4892
|
|
|
4719
4893
|
|
|
4720
|
-
var
|
|
4894
|
+
var DescribeRegionSettingsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4721
4895
|
return [
|
|
4722
4896
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4723
4897
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4724
4898
|
];
|
|
4725
4899
|
}).s("CryoControllerUserManager", "DescribeRegionSettings", {}).n("BackupClient", "DescribeRegionSettingsCommand").f(void 0, void 0).ser(se_DescribeRegionSettingsCommand).de(de_DescribeRegionSettingsCommand).build() {
|
|
4900
|
+
static {
|
|
4901
|
+
__name(this, "DescribeRegionSettingsCommand");
|
|
4902
|
+
}
|
|
4726
4903
|
};
|
|
4727
|
-
__name(_DescribeRegionSettingsCommand, "DescribeRegionSettingsCommand");
|
|
4728
|
-
var DescribeRegionSettingsCommand = _DescribeRegionSettingsCommand;
|
|
4729
4904
|
|
|
4730
4905
|
// src/commands/DescribeReportJobCommand.ts
|
|
4731
4906
|
|
|
4732
4907
|
|
|
4733
4908
|
|
|
4734
|
-
var
|
|
4909
|
+
var DescribeReportJobCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4735
4910
|
return [
|
|
4736
4911
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4737
4912
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4738
4913
|
];
|
|
4739
4914
|
}).s("CryoControllerUserManager", "DescribeReportJob", {}).n("BackupClient", "DescribeReportJobCommand").f(void 0, void 0).ser(se_DescribeReportJobCommand).de(de_DescribeReportJobCommand).build() {
|
|
4915
|
+
static {
|
|
4916
|
+
__name(this, "DescribeReportJobCommand");
|
|
4917
|
+
}
|
|
4740
4918
|
};
|
|
4741
|
-
__name(_DescribeReportJobCommand, "DescribeReportJobCommand");
|
|
4742
|
-
var DescribeReportJobCommand = _DescribeReportJobCommand;
|
|
4743
4919
|
|
|
4744
4920
|
// src/commands/DescribeReportPlanCommand.ts
|
|
4745
4921
|
|
|
4746
4922
|
|
|
4747
4923
|
|
|
4748
|
-
var
|
|
4924
|
+
var DescribeReportPlanCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4749
4925
|
return [
|
|
4750
4926
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4751
4927
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4752
4928
|
];
|
|
4753
4929
|
}).s("CryoControllerUserManager", "DescribeReportPlan", {}).n("BackupClient", "DescribeReportPlanCommand").f(void 0, void 0).ser(se_DescribeReportPlanCommand).de(de_DescribeReportPlanCommand).build() {
|
|
4930
|
+
static {
|
|
4931
|
+
__name(this, "DescribeReportPlanCommand");
|
|
4932
|
+
}
|
|
4754
4933
|
};
|
|
4755
|
-
__name(_DescribeReportPlanCommand, "DescribeReportPlanCommand");
|
|
4756
|
-
var DescribeReportPlanCommand = _DescribeReportPlanCommand;
|
|
4757
4934
|
|
|
4758
4935
|
// src/commands/DescribeRestoreJobCommand.ts
|
|
4759
4936
|
|
|
4760
4937
|
|
|
4761
4938
|
|
|
4762
|
-
var
|
|
4939
|
+
var DescribeRestoreJobCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4763
4940
|
return [
|
|
4764
4941
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4765
4942
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4766
4943
|
];
|
|
4767
4944
|
}).s("CryoControllerUserManager", "DescribeRestoreJob", {}).n("BackupClient", "DescribeRestoreJobCommand").f(void 0, void 0).ser(se_DescribeRestoreJobCommand).de(de_DescribeRestoreJobCommand).build() {
|
|
4945
|
+
static {
|
|
4946
|
+
__name(this, "DescribeRestoreJobCommand");
|
|
4947
|
+
}
|
|
4768
4948
|
};
|
|
4769
|
-
__name(_DescribeRestoreJobCommand, "DescribeRestoreJobCommand");
|
|
4770
|
-
var DescribeRestoreJobCommand = _DescribeRestoreJobCommand;
|
|
4771
4949
|
|
|
4772
4950
|
// src/commands/DisassociateRecoveryPointCommand.ts
|
|
4773
4951
|
|
|
4774
4952
|
|
|
4775
4953
|
|
|
4776
|
-
var
|
|
4954
|
+
var DisassociateRecoveryPointCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4777
4955
|
return [
|
|
4778
4956
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4779
4957
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4780
4958
|
];
|
|
4781
4959
|
}).s("CryoControllerUserManager", "DisassociateRecoveryPoint", {}).n("BackupClient", "DisassociateRecoveryPointCommand").f(void 0, void 0).ser(se_DisassociateRecoveryPointCommand).de(de_DisassociateRecoveryPointCommand).build() {
|
|
4960
|
+
static {
|
|
4961
|
+
__name(this, "DisassociateRecoveryPointCommand");
|
|
4962
|
+
}
|
|
4782
4963
|
};
|
|
4783
|
-
__name(_DisassociateRecoveryPointCommand, "DisassociateRecoveryPointCommand");
|
|
4784
|
-
var DisassociateRecoveryPointCommand = _DisassociateRecoveryPointCommand;
|
|
4785
4964
|
|
|
4786
4965
|
// src/commands/DisassociateRecoveryPointFromParentCommand.ts
|
|
4787
4966
|
|
|
4788
4967
|
|
|
4789
4968
|
|
|
4790
|
-
var
|
|
4969
|
+
var DisassociateRecoveryPointFromParentCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4791
4970
|
return [
|
|
4792
4971
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4793
4972
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4794
4973
|
];
|
|
4795
4974
|
}).s("CryoControllerUserManager", "DisassociateRecoveryPointFromParent", {}).n("BackupClient", "DisassociateRecoveryPointFromParentCommand").f(void 0, void 0).ser(se_DisassociateRecoveryPointFromParentCommand).de(de_DisassociateRecoveryPointFromParentCommand).build() {
|
|
4975
|
+
static {
|
|
4976
|
+
__name(this, "DisassociateRecoveryPointFromParentCommand");
|
|
4977
|
+
}
|
|
4796
4978
|
};
|
|
4797
|
-
__name(_DisassociateRecoveryPointFromParentCommand, "DisassociateRecoveryPointFromParentCommand");
|
|
4798
|
-
var DisassociateRecoveryPointFromParentCommand = _DisassociateRecoveryPointFromParentCommand;
|
|
4799
4979
|
|
|
4800
4980
|
// src/commands/ExportBackupPlanTemplateCommand.ts
|
|
4801
4981
|
|
|
4802
4982
|
|
|
4803
4983
|
|
|
4804
|
-
var
|
|
4984
|
+
var ExportBackupPlanTemplateCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4805
4985
|
return [
|
|
4806
4986
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4807
4987
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4808
4988
|
];
|
|
4809
4989
|
}).s("CryoControllerUserManager", "ExportBackupPlanTemplate", {}).n("BackupClient", "ExportBackupPlanTemplateCommand").f(void 0, void 0).ser(se_ExportBackupPlanTemplateCommand).de(de_ExportBackupPlanTemplateCommand).build() {
|
|
4990
|
+
static {
|
|
4991
|
+
__name(this, "ExportBackupPlanTemplateCommand");
|
|
4992
|
+
}
|
|
4810
4993
|
};
|
|
4811
|
-
__name(_ExportBackupPlanTemplateCommand, "ExportBackupPlanTemplateCommand");
|
|
4812
|
-
var ExportBackupPlanTemplateCommand = _ExportBackupPlanTemplateCommand;
|
|
4813
4994
|
|
|
4814
4995
|
// src/commands/GetBackupPlanCommand.ts
|
|
4815
4996
|
|
|
4816
4997
|
|
|
4817
4998
|
|
|
4818
|
-
var
|
|
4999
|
+
var GetBackupPlanCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4819
5000
|
return [
|
|
4820
5001
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4821
5002
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4822
5003
|
];
|
|
4823
5004
|
}).s("CryoControllerUserManager", "GetBackupPlan", {}).n("BackupClient", "GetBackupPlanCommand").f(void 0, GetBackupPlanOutputFilterSensitiveLog).ser(se_GetBackupPlanCommand).de(de_GetBackupPlanCommand).build() {
|
|
5005
|
+
static {
|
|
5006
|
+
__name(this, "GetBackupPlanCommand");
|
|
5007
|
+
}
|
|
4824
5008
|
};
|
|
4825
|
-
__name(_GetBackupPlanCommand, "GetBackupPlanCommand");
|
|
4826
|
-
var GetBackupPlanCommand = _GetBackupPlanCommand;
|
|
4827
5009
|
|
|
4828
5010
|
// src/commands/GetBackupPlanFromJSONCommand.ts
|
|
4829
5011
|
|
|
4830
5012
|
|
|
4831
5013
|
|
|
4832
|
-
var
|
|
5014
|
+
var GetBackupPlanFromJSONCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4833
5015
|
return [
|
|
4834
5016
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4835
5017
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4836
5018
|
];
|
|
4837
5019
|
}).s("CryoControllerUserManager", "GetBackupPlanFromJSON", {}).n("BackupClient", "GetBackupPlanFromJSONCommand").f(void 0, GetBackupPlanFromJSONOutputFilterSensitiveLog).ser(se_GetBackupPlanFromJSONCommand).de(de_GetBackupPlanFromJSONCommand).build() {
|
|
5020
|
+
static {
|
|
5021
|
+
__name(this, "GetBackupPlanFromJSONCommand");
|
|
5022
|
+
}
|
|
4838
5023
|
};
|
|
4839
|
-
__name(_GetBackupPlanFromJSONCommand, "GetBackupPlanFromJSONCommand");
|
|
4840
|
-
var GetBackupPlanFromJSONCommand = _GetBackupPlanFromJSONCommand;
|
|
4841
5024
|
|
|
4842
5025
|
// src/commands/GetBackupPlanFromTemplateCommand.ts
|
|
4843
5026
|
|
|
4844
5027
|
|
|
4845
5028
|
|
|
4846
|
-
var
|
|
5029
|
+
var GetBackupPlanFromTemplateCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4847
5030
|
return [
|
|
4848
5031
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4849
5032
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4850
5033
|
];
|
|
4851
5034
|
}).s("CryoControllerUserManager", "GetBackupPlanFromTemplate", {}).n("BackupClient", "GetBackupPlanFromTemplateCommand").f(void 0, GetBackupPlanFromTemplateOutputFilterSensitiveLog).ser(se_GetBackupPlanFromTemplateCommand).de(de_GetBackupPlanFromTemplateCommand).build() {
|
|
5035
|
+
static {
|
|
5036
|
+
__name(this, "GetBackupPlanFromTemplateCommand");
|
|
5037
|
+
}
|
|
4852
5038
|
};
|
|
4853
|
-
__name(_GetBackupPlanFromTemplateCommand, "GetBackupPlanFromTemplateCommand");
|
|
4854
|
-
var GetBackupPlanFromTemplateCommand = _GetBackupPlanFromTemplateCommand;
|
|
4855
5039
|
|
|
4856
5040
|
// src/commands/GetBackupSelectionCommand.ts
|
|
4857
5041
|
|
|
4858
5042
|
|
|
4859
5043
|
|
|
4860
|
-
var
|
|
5044
|
+
var GetBackupSelectionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4861
5045
|
return [
|
|
4862
5046
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4863
5047
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4864
5048
|
];
|
|
4865
5049
|
}).s("CryoControllerUserManager", "GetBackupSelection", {}).n("BackupClient", "GetBackupSelectionCommand").f(void 0, void 0).ser(se_GetBackupSelectionCommand).de(de_GetBackupSelectionCommand).build() {
|
|
5050
|
+
static {
|
|
5051
|
+
__name(this, "GetBackupSelectionCommand");
|
|
5052
|
+
}
|
|
4866
5053
|
};
|
|
4867
|
-
__name(_GetBackupSelectionCommand, "GetBackupSelectionCommand");
|
|
4868
|
-
var GetBackupSelectionCommand = _GetBackupSelectionCommand;
|
|
4869
5054
|
|
|
4870
5055
|
// src/commands/GetBackupVaultAccessPolicyCommand.ts
|
|
4871
5056
|
|
|
4872
5057
|
|
|
4873
5058
|
|
|
4874
|
-
var
|
|
5059
|
+
var GetBackupVaultAccessPolicyCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4875
5060
|
return [
|
|
4876
5061
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4877
5062
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4878
5063
|
];
|
|
4879
5064
|
}).s("CryoControllerUserManager", "GetBackupVaultAccessPolicy", {}).n("BackupClient", "GetBackupVaultAccessPolicyCommand").f(void 0, void 0).ser(se_GetBackupVaultAccessPolicyCommand).de(de_GetBackupVaultAccessPolicyCommand).build() {
|
|
5065
|
+
static {
|
|
5066
|
+
__name(this, "GetBackupVaultAccessPolicyCommand");
|
|
5067
|
+
}
|
|
4880
5068
|
};
|
|
4881
|
-
__name(_GetBackupVaultAccessPolicyCommand, "GetBackupVaultAccessPolicyCommand");
|
|
4882
|
-
var GetBackupVaultAccessPolicyCommand = _GetBackupVaultAccessPolicyCommand;
|
|
4883
5069
|
|
|
4884
5070
|
// src/commands/GetBackupVaultNotificationsCommand.ts
|
|
4885
5071
|
|
|
4886
5072
|
|
|
4887
5073
|
|
|
4888
|
-
var
|
|
5074
|
+
var GetBackupVaultNotificationsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4889
5075
|
return [
|
|
4890
5076
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4891
5077
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4892
5078
|
];
|
|
4893
5079
|
}).s("CryoControllerUserManager", "GetBackupVaultNotifications", {}).n("BackupClient", "GetBackupVaultNotificationsCommand").f(void 0, void 0).ser(se_GetBackupVaultNotificationsCommand).de(de_GetBackupVaultNotificationsCommand).build() {
|
|
5080
|
+
static {
|
|
5081
|
+
__name(this, "GetBackupVaultNotificationsCommand");
|
|
5082
|
+
}
|
|
4894
5083
|
};
|
|
4895
|
-
__name(_GetBackupVaultNotificationsCommand, "GetBackupVaultNotificationsCommand");
|
|
4896
|
-
var GetBackupVaultNotificationsCommand = _GetBackupVaultNotificationsCommand;
|
|
4897
5084
|
|
|
4898
5085
|
// src/commands/GetLegalHoldCommand.ts
|
|
4899
5086
|
|
|
4900
5087
|
|
|
4901
5088
|
|
|
4902
|
-
var
|
|
5089
|
+
var GetLegalHoldCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4903
5090
|
return [
|
|
4904
5091
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4905
5092
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4906
5093
|
];
|
|
4907
5094
|
}).s("CryoControllerUserManager", "GetLegalHold", {}).n("BackupClient", "GetLegalHoldCommand").f(void 0, void 0).ser(se_GetLegalHoldCommand).de(de_GetLegalHoldCommand).build() {
|
|
5095
|
+
static {
|
|
5096
|
+
__name(this, "GetLegalHoldCommand");
|
|
5097
|
+
}
|
|
4908
5098
|
};
|
|
4909
|
-
__name(_GetLegalHoldCommand, "GetLegalHoldCommand");
|
|
4910
|
-
var GetLegalHoldCommand = _GetLegalHoldCommand;
|
|
4911
5099
|
|
|
4912
5100
|
// src/commands/GetRecoveryPointIndexDetailsCommand.ts
|
|
4913
5101
|
|
|
4914
5102
|
|
|
4915
5103
|
|
|
4916
|
-
var
|
|
5104
|
+
var GetRecoveryPointIndexDetailsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4917
5105
|
return [
|
|
4918
5106
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4919
5107
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4920
5108
|
];
|
|
4921
5109
|
}).s("CryoControllerUserManager", "GetRecoveryPointIndexDetails", {}).n("BackupClient", "GetRecoveryPointIndexDetailsCommand").f(void 0, void 0).ser(se_GetRecoveryPointIndexDetailsCommand).de(de_GetRecoveryPointIndexDetailsCommand).build() {
|
|
5110
|
+
static {
|
|
5111
|
+
__name(this, "GetRecoveryPointIndexDetailsCommand");
|
|
5112
|
+
}
|
|
4922
5113
|
};
|
|
4923
|
-
__name(_GetRecoveryPointIndexDetailsCommand, "GetRecoveryPointIndexDetailsCommand");
|
|
4924
|
-
var GetRecoveryPointIndexDetailsCommand = _GetRecoveryPointIndexDetailsCommand;
|
|
4925
5114
|
|
|
4926
5115
|
// src/commands/GetRecoveryPointRestoreMetadataCommand.ts
|
|
4927
5116
|
|
|
4928
5117
|
|
|
4929
5118
|
|
|
4930
|
-
var
|
|
5119
|
+
var GetRecoveryPointRestoreMetadataCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4931
5120
|
return [
|
|
4932
5121
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4933
5122
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4934
5123
|
];
|
|
4935
5124
|
}).s("CryoControllerUserManager", "GetRecoveryPointRestoreMetadata", {}).n("BackupClient", "GetRecoveryPointRestoreMetadataCommand").f(void 0, GetRecoveryPointRestoreMetadataOutputFilterSensitiveLog).ser(se_GetRecoveryPointRestoreMetadataCommand).de(de_GetRecoveryPointRestoreMetadataCommand).build() {
|
|
5125
|
+
static {
|
|
5126
|
+
__name(this, "GetRecoveryPointRestoreMetadataCommand");
|
|
5127
|
+
}
|
|
4936
5128
|
};
|
|
4937
|
-
__name(_GetRecoveryPointRestoreMetadataCommand, "GetRecoveryPointRestoreMetadataCommand");
|
|
4938
|
-
var GetRecoveryPointRestoreMetadataCommand = _GetRecoveryPointRestoreMetadataCommand;
|
|
4939
5129
|
|
|
4940
5130
|
// src/commands/GetRestoreJobMetadataCommand.ts
|
|
4941
5131
|
|
|
4942
5132
|
|
|
4943
5133
|
|
|
4944
|
-
var
|
|
5134
|
+
var GetRestoreJobMetadataCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4945
5135
|
return [
|
|
4946
5136
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4947
5137
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4948
5138
|
];
|
|
4949
5139
|
}).s("CryoControllerUserManager", "GetRestoreJobMetadata", {}).n("BackupClient", "GetRestoreJobMetadataCommand").f(void 0, GetRestoreJobMetadataOutputFilterSensitiveLog).ser(se_GetRestoreJobMetadataCommand).de(de_GetRestoreJobMetadataCommand).build() {
|
|
5140
|
+
static {
|
|
5141
|
+
__name(this, "GetRestoreJobMetadataCommand");
|
|
5142
|
+
}
|
|
4950
5143
|
};
|
|
4951
|
-
__name(_GetRestoreJobMetadataCommand, "GetRestoreJobMetadataCommand");
|
|
4952
|
-
var GetRestoreJobMetadataCommand = _GetRestoreJobMetadataCommand;
|
|
4953
5144
|
|
|
4954
5145
|
// src/commands/GetRestoreTestingInferredMetadataCommand.ts
|
|
4955
5146
|
|
|
4956
5147
|
|
|
4957
5148
|
|
|
4958
|
-
var
|
|
5149
|
+
var GetRestoreTestingInferredMetadataCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4959
5150
|
return [
|
|
4960
5151
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4961
5152
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4962
5153
|
];
|
|
4963
5154
|
}).s("CryoControllerUserManager", "GetRestoreTestingInferredMetadata", {}).n("BackupClient", "GetRestoreTestingInferredMetadataCommand").f(void 0, void 0).ser(se_GetRestoreTestingInferredMetadataCommand).de(de_GetRestoreTestingInferredMetadataCommand).build() {
|
|
5155
|
+
static {
|
|
5156
|
+
__name(this, "GetRestoreTestingInferredMetadataCommand");
|
|
5157
|
+
}
|
|
4964
5158
|
};
|
|
4965
|
-
__name(_GetRestoreTestingInferredMetadataCommand, "GetRestoreTestingInferredMetadataCommand");
|
|
4966
|
-
var GetRestoreTestingInferredMetadataCommand = _GetRestoreTestingInferredMetadataCommand;
|
|
4967
5159
|
|
|
4968
5160
|
// src/commands/GetRestoreTestingPlanCommand.ts
|
|
4969
5161
|
|
|
4970
5162
|
|
|
4971
5163
|
|
|
4972
|
-
var
|
|
5164
|
+
var GetRestoreTestingPlanCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4973
5165
|
return [
|
|
4974
5166
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4975
5167
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4976
5168
|
];
|
|
4977
5169
|
}).s("CryoControllerUserManager", "GetRestoreTestingPlan", {}).n("BackupClient", "GetRestoreTestingPlanCommand").f(void 0, void 0).ser(se_GetRestoreTestingPlanCommand).de(de_GetRestoreTestingPlanCommand).build() {
|
|
5170
|
+
static {
|
|
5171
|
+
__name(this, "GetRestoreTestingPlanCommand");
|
|
5172
|
+
}
|
|
4978
5173
|
};
|
|
4979
|
-
__name(_GetRestoreTestingPlanCommand, "GetRestoreTestingPlanCommand");
|
|
4980
|
-
var GetRestoreTestingPlanCommand = _GetRestoreTestingPlanCommand;
|
|
4981
5174
|
|
|
4982
5175
|
// src/commands/GetRestoreTestingSelectionCommand.ts
|
|
4983
5176
|
|
|
4984
5177
|
|
|
4985
5178
|
|
|
4986
|
-
var
|
|
5179
|
+
var GetRestoreTestingSelectionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4987
5180
|
return [
|
|
4988
5181
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4989
5182
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4990
5183
|
];
|
|
4991
5184
|
}).s("CryoControllerUserManager", "GetRestoreTestingSelection", {}).n("BackupClient", "GetRestoreTestingSelectionCommand").f(void 0, GetRestoreTestingSelectionOutputFilterSensitiveLog).ser(se_GetRestoreTestingSelectionCommand).de(de_GetRestoreTestingSelectionCommand).build() {
|
|
5185
|
+
static {
|
|
5186
|
+
__name(this, "GetRestoreTestingSelectionCommand");
|
|
5187
|
+
}
|
|
4992
5188
|
};
|
|
4993
|
-
__name(_GetRestoreTestingSelectionCommand, "GetRestoreTestingSelectionCommand");
|
|
4994
|
-
var GetRestoreTestingSelectionCommand = _GetRestoreTestingSelectionCommand;
|
|
4995
5189
|
|
|
4996
5190
|
// src/commands/GetSupportedResourceTypesCommand.ts
|
|
4997
5191
|
|
|
4998
5192
|
|
|
4999
5193
|
|
|
5000
|
-
var
|
|
5194
|
+
var GetSupportedResourceTypesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5001
5195
|
return [
|
|
5002
5196
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5003
5197
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5004
5198
|
];
|
|
5005
5199
|
}).s("CryoControllerUserManager", "GetSupportedResourceTypes", {}).n("BackupClient", "GetSupportedResourceTypesCommand").f(void 0, void 0).ser(se_GetSupportedResourceTypesCommand).de(de_GetSupportedResourceTypesCommand).build() {
|
|
5200
|
+
static {
|
|
5201
|
+
__name(this, "GetSupportedResourceTypesCommand");
|
|
5202
|
+
}
|
|
5006
5203
|
};
|
|
5007
|
-
__name(_GetSupportedResourceTypesCommand, "GetSupportedResourceTypesCommand");
|
|
5008
|
-
var GetSupportedResourceTypesCommand = _GetSupportedResourceTypesCommand;
|
|
5009
5204
|
|
|
5010
5205
|
// src/commands/ListBackupJobsCommand.ts
|
|
5011
5206
|
|
|
5012
5207
|
|
|
5013
5208
|
|
|
5014
|
-
var
|
|
5209
|
+
var ListBackupJobsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5015
5210
|
return [
|
|
5016
5211
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5017
5212
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5018
5213
|
];
|
|
5019
5214
|
}).s("CryoControllerUserManager", "ListBackupJobs", {}).n("BackupClient", "ListBackupJobsCommand").f(void 0, void 0).ser(se_ListBackupJobsCommand).de(de_ListBackupJobsCommand).build() {
|
|
5215
|
+
static {
|
|
5216
|
+
__name(this, "ListBackupJobsCommand");
|
|
5217
|
+
}
|
|
5020
5218
|
};
|
|
5021
|
-
__name(_ListBackupJobsCommand, "ListBackupJobsCommand");
|
|
5022
|
-
var ListBackupJobsCommand = _ListBackupJobsCommand;
|
|
5023
5219
|
|
|
5024
5220
|
// src/commands/ListBackupJobSummariesCommand.ts
|
|
5025
5221
|
|
|
5026
5222
|
|
|
5027
5223
|
|
|
5028
|
-
var
|
|
5224
|
+
var ListBackupJobSummariesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5029
5225
|
return [
|
|
5030
5226
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5031
5227
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5032
5228
|
];
|
|
5033
5229
|
}).s("CryoControllerUserManager", "ListBackupJobSummaries", {}).n("BackupClient", "ListBackupJobSummariesCommand").f(void 0, void 0).ser(se_ListBackupJobSummariesCommand).de(de_ListBackupJobSummariesCommand).build() {
|
|
5230
|
+
static {
|
|
5231
|
+
__name(this, "ListBackupJobSummariesCommand");
|
|
5232
|
+
}
|
|
5034
5233
|
};
|
|
5035
|
-
__name(_ListBackupJobSummariesCommand, "ListBackupJobSummariesCommand");
|
|
5036
|
-
var ListBackupJobSummariesCommand = _ListBackupJobSummariesCommand;
|
|
5037
5234
|
|
|
5038
5235
|
// src/commands/ListBackupPlansCommand.ts
|
|
5039
5236
|
|
|
5040
5237
|
|
|
5041
5238
|
|
|
5042
|
-
var
|
|
5239
|
+
var ListBackupPlansCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5043
5240
|
return [
|
|
5044
5241
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5045
5242
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5046
5243
|
];
|
|
5047
5244
|
}).s("CryoControllerUserManager", "ListBackupPlans", {}).n("BackupClient", "ListBackupPlansCommand").f(void 0, void 0).ser(se_ListBackupPlansCommand).de(de_ListBackupPlansCommand).build() {
|
|
5245
|
+
static {
|
|
5246
|
+
__name(this, "ListBackupPlansCommand");
|
|
5247
|
+
}
|
|
5048
5248
|
};
|
|
5049
|
-
__name(_ListBackupPlansCommand, "ListBackupPlansCommand");
|
|
5050
|
-
var ListBackupPlansCommand = _ListBackupPlansCommand;
|
|
5051
5249
|
|
|
5052
5250
|
// src/commands/ListBackupPlanTemplatesCommand.ts
|
|
5053
5251
|
|
|
5054
5252
|
|
|
5055
5253
|
|
|
5056
|
-
var
|
|
5254
|
+
var ListBackupPlanTemplatesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5057
5255
|
return [
|
|
5058
5256
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5059
5257
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5060
5258
|
];
|
|
5061
5259
|
}).s("CryoControllerUserManager", "ListBackupPlanTemplates", {}).n("BackupClient", "ListBackupPlanTemplatesCommand").f(void 0, void 0).ser(se_ListBackupPlanTemplatesCommand).de(de_ListBackupPlanTemplatesCommand).build() {
|
|
5260
|
+
static {
|
|
5261
|
+
__name(this, "ListBackupPlanTemplatesCommand");
|
|
5262
|
+
}
|
|
5062
5263
|
};
|
|
5063
|
-
__name(_ListBackupPlanTemplatesCommand, "ListBackupPlanTemplatesCommand");
|
|
5064
|
-
var ListBackupPlanTemplatesCommand = _ListBackupPlanTemplatesCommand;
|
|
5065
5264
|
|
|
5066
5265
|
// src/commands/ListBackupPlanVersionsCommand.ts
|
|
5067
5266
|
|
|
5068
5267
|
|
|
5069
5268
|
|
|
5070
|
-
var
|
|
5269
|
+
var ListBackupPlanVersionsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5071
5270
|
return [
|
|
5072
5271
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5073
5272
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5074
5273
|
];
|
|
5075
5274
|
}).s("CryoControllerUserManager", "ListBackupPlanVersions", {}).n("BackupClient", "ListBackupPlanVersionsCommand").f(void 0, void 0).ser(se_ListBackupPlanVersionsCommand).de(de_ListBackupPlanVersionsCommand).build() {
|
|
5275
|
+
static {
|
|
5276
|
+
__name(this, "ListBackupPlanVersionsCommand");
|
|
5277
|
+
}
|
|
5076
5278
|
};
|
|
5077
|
-
__name(_ListBackupPlanVersionsCommand, "ListBackupPlanVersionsCommand");
|
|
5078
|
-
var ListBackupPlanVersionsCommand = _ListBackupPlanVersionsCommand;
|
|
5079
5279
|
|
|
5080
5280
|
// src/commands/ListBackupSelectionsCommand.ts
|
|
5081
5281
|
|
|
5082
5282
|
|
|
5083
5283
|
|
|
5084
|
-
var
|
|
5284
|
+
var ListBackupSelectionsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5085
5285
|
return [
|
|
5086
5286
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5087
5287
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5088
5288
|
];
|
|
5089
5289
|
}).s("CryoControllerUserManager", "ListBackupSelections", {}).n("BackupClient", "ListBackupSelectionsCommand").f(void 0, void 0).ser(se_ListBackupSelectionsCommand).de(de_ListBackupSelectionsCommand).build() {
|
|
5290
|
+
static {
|
|
5291
|
+
__name(this, "ListBackupSelectionsCommand");
|
|
5292
|
+
}
|
|
5090
5293
|
};
|
|
5091
|
-
__name(_ListBackupSelectionsCommand, "ListBackupSelectionsCommand");
|
|
5092
|
-
var ListBackupSelectionsCommand = _ListBackupSelectionsCommand;
|
|
5093
5294
|
|
|
5094
5295
|
// src/commands/ListBackupVaultsCommand.ts
|
|
5095
5296
|
|
|
5096
5297
|
|
|
5097
5298
|
|
|
5098
|
-
var
|
|
5299
|
+
var ListBackupVaultsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5099
5300
|
return [
|
|
5100
5301
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5101
5302
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5102
5303
|
];
|
|
5103
5304
|
}).s("CryoControllerUserManager", "ListBackupVaults", {}).n("BackupClient", "ListBackupVaultsCommand").f(void 0, void 0).ser(se_ListBackupVaultsCommand).de(de_ListBackupVaultsCommand).build() {
|
|
5305
|
+
static {
|
|
5306
|
+
__name(this, "ListBackupVaultsCommand");
|
|
5307
|
+
}
|
|
5104
5308
|
};
|
|
5105
|
-
__name(_ListBackupVaultsCommand, "ListBackupVaultsCommand");
|
|
5106
|
-
var ListBackupVaultsCommand = _ListBackupVaultsCommand;
|
|
5107
5309
|
|
|
5108
5310
|
// src/commands/ListCopyJobsCommand.ts
|
|
5109
5311
|
|
|
5110
5312
|
|
|
5111
5313
|
|
|
5112
|
-
var
|
|
5314
|
+
var ListCopyJobsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5113
5315
|
return [
|
|
5114
5316
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5115
5317
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5116
5318
|
];
|
|
5117
5319
|
}).s("CryoControllerUserManager", "ListCopyJobs", {}).n("BackupClient", "ListCopyJobsCommand").f(void 0, void 0).ser(se_ListCopyJobsCommand).de(de_ListCopyJobsCommand).build() {
|
|
5320
|
+
static {
|
|
5321
|
+
__name(this, "ListCopyJobsCommand");
|
|
5322
|
+
}
|
|
5118
5323
|
};
|
|
5119
|
-
__name(_ListCopyJobsCommand, "ListCopyJobsCommand");
|
|
5120
|
-
var ListCopyJobsCommand = _ListCopyJobsCommand;
|
|
5121
5324
|
|
|
5122
5325
|
// src/commands/ListCopyJobSummariesCommand.ts
|
|
5123
5326
|
|
|
5124
5327
|
|
|
5125
5328
|
|
|
5126
|
-
var
|
|
5329
|
+
var ListCopyJobSummariesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5127
5330
|
return [
|
|
5128
5331
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5129
5332
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5130
5333
|
];
|
|
5131
5334
|
}).s("CryoControllerUserManager", "ListCopyJobSummaries", {}).n("BackupClient", "ListCopyJobSummariesCommand").f(void 0, void 0).ser(se_ListCopyJobSummariesCommand).de(de_ListCopyJobSummariesCommand).build() {
|
|
5335
|
+
static {
|
|
5336
|
+
__name(this, "ListCopyJobSummariesCommand");
|
|
5337
|
+
}
|
|
5132
5338
|
};
|
|
5133
|
-
__name(_ListCopyJobSummariesCommand, "ListCopyJobSummariesCommand");
|
|
5134
|
-
var ListCopyJobSummariesCommand = _ListCopyJobSummariesCommand;
|
|
5135
5339
|
|
|
5136
5340
|
// src/commands/ListFrameworksCommand.ts
|
|
5137
5341
|
|
|
5138
5342
|
|
|
5139
5343
|
|
|
5140
|
-
var
|
|
5344
|
+
var ListFrameworksCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5141
5345
|
return [
|
|
5142
5346
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5143
5347
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5144
5348
|
];
|
|
5145
5349
|
}).s("CryoControllerUserManager", "ListFrameworks", {}).n("BackupClient", "ListFrameworksCommand").f(void 0, void 0).ser(se_ListFrameworksCommand).de(de_ListFrameworksCommand).build() {
|
|
5350
|
+
static {
|
|
5351
|
+
__name(this, "ListFrameworksCommand");
|
|
5352
|
+
}
|
|
5146
5353
|
};
|
|
5147
|
-
__name(_ListFrameworksCommand, "ListFrameworksCommand");
|
|
5148
|
-
var ListFrameworksCommand = _ListFrameworksCommand;
|
|
5149
5354
|
|
|
5150
5355
|
// src/commands/ListIndexedRecoveryPointsCommand.ts
|
|
5151
5356
|
|
|
5152
5357
|
|
|
5153
5358
|
|
|
5154
|
-
var
|
|
5359
|
+
var ListIndexedRecoveryPointsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5155
5360
|
return [
|
|
5156
5361
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5157
5362
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5158
5363
|
];
|
|
5159
5364
|
}).s("CryoControllerUserManager", "ListIndexedRecoveryPoints", {}).n("BackupClient", "ListIndexedRecoveryPointsCommand").f(void 0, void 0).ser(se_ListIndexedRecoveryPointsCommand).de(de_ListIndexedRecoveryPointsCommand).build() {
|
|
5365
|
+
static {
|
|
5366
|
+
__name(this, "ListIndexedRecoveryPointsCommand");
|
|
5367
|
+
}
|
|
5160
5368
|
};
|
|
5161
|
-
__name(_ListIndexedRecoveryPointsCommand, "ListIndexedRecoveryPointsCommand");
|
|
5162
|
-
var ListIndexedRecoveryPointsCommand = _ListIndexedRecoveryPointsCommand;
|
|
5163
5369
|
|
|
5164
5370
|
// src/commands/ListLegalHoldsCommand.ts
|
|
5165
5371
|
|
|
5166
5372
|
|
|
5167
5373
|
|
|
5168
|
-
var
|
|
5374
|
+
var ListLegalHoldsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5169
5375
|
return [
|
|
5170
5376
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5171
5377
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5172
5378
|
];
|
|
5173
5379
|
}).s("CryoControllerUserManager", "ListLegalHolds", {}).n("BackupClient", "ListLegalHoldsCommand").f(void 0, void 0).ser(se_ListLegalHoldsCommand).de(de_ListLegalHoldsCommand).build() {
|
|
5380
|
+
static {
|
|
5381
|
+
__name(this, "ListLegalHoldsCommand");
|
|
5382
|
+
}
|
|
5174
5383
|
};
|
|
5175
|
-
__name(_ListLegalHoldsCommand, "ListLegalHoldsCommand");
|
|
5176
|
-
var ListLegalHoldsCommand = _ListLegalHoldsCommand;
|
|
5177
5384
|
|
|
5178
5385
|
// src/commands/ListProtectedResourcesByBackupVaultCommand.ts
|
|
5179
5386
|
|
|
5180
5387
|
|
|
5181
5388
|
|
|
5182
|
-
var
|
|
5389
|
+
var ListProtectedResourcesByBackupVaultCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5183
5390
|
return [
|
|
5184
5391
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5185
5392
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5186
5393
|
];
|
|
5187
5394
|
}).s("CryoControllerUserManager", "ListProtectedResourcesByBackupVault", {}).n("BackupClient", "ListProtectedResourcesByBackupVaultCommand").f(void 0, void 0).ser(se_ListProtectedResourcesByBackupVaultCommand).de(de_ListProtectedResourcesByBackupVaultCommand).build() {
|
|
5395
|
+
static {
|
|
5396
|
+
__name(this, "ListProtectedResourcesByBackupVaultCommand");
|
|
5397
|
+
}
|
|
5188
5398
|
};
|
|
5189
|
-
__name(_ListProtectedResourcesByBackupVaultCommand, "ListProtectedResourcesByBackupVaultCommand");
|
|
5190
|
-
var ListProtectedResourcesByBackupVaultCommand = _ListProtectedResourcesByBackupVaultCommand;
|
|
5191
5399
|
|
|
5192
5400
|
// src/commands/ListProtectedResourcesCommand.ts
|
|
5193
5401
|
|
|
5194
5402
|
|
|
5195
5403
|
|
|
5196
|
-
var
|
|
5404
|
+
var ListProtectedResourcesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5197
5405
|
return [
|
|
5198
5406
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5199
5407
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5200
5408
|
];
|
|
5201
5409
|
}).s("CryoControllerUserManager", "ListProtectedResources", {}).n("BackupClient", "ListProtectedResourcesCommand").f(void 0, void 0).ser(se_ListProtectedResourcesCommand).de(de_ListProtectedResourcesCommand).build() {
|
|
5410
|
+
static {
|
|
5411
|
+
__name(this, "ListProtectedResourcesCommand");
|
|
5412
|
+
}
|
|
5202
5413
|
};
|
|
5203
|
-
__name(_ListProtectedResourcesCommand, "ListProtectedResourcesCommand");
|
|
5204
|
-
var ListProtectedResourcesCommand = _ListProtectedResourcesCommand;
|
|
5205
5414
|
|
|
5206
5415
|
// src/commands/ListRecoveryPointsByBackupVaultCommand.ts
|
|
5207
5416
|
|
|
5208
5417
|
|
|
5209
5418
|
|
|
5210
|
-
var
|
|
5419
|
+
var ListRecoveryPointsByBackupVaultCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5211
5420
|
return [
|
|
5212
5421
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5213
5422
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5214
5423
|
];
|
|
5215
5424
|
}).s("CryoControllerUserManager", "ListRecoveryPointsByBackupVault", {}).n("BackupClient", "ListRecoveryPointsByBackupVaultCommand").f(void 0, void 0).ser(se_ListRecoveryPointsByBackupVaultCommand).de(de_ListRecoveryPointsByBackupVaultCommand).build() {
|
|
5425
|
+
static {
|
|
5426
|
+
__name(this, "ListRecoveryPointsByBackupVaultCommand");
|
|
5427
|
+
}
|
|
5216
5428
|
};
|
|
5217
|
-
__name(_ListRecoveryPointsByBackupVaultCommand, "ListRecoveryPointsByBackupVaultCommand");
|
|
5218
|
-
var ListRecoveryPointsByBackupVaultCommand = _ListRecoveryPointsByBackupVaultCommand;
|
|
5219
5429
|
|
|
5220
5430
|
// src/commands/ListRecoveryPointsByLegalHoldCommand.ts
|
|
5221
5431
|
|
|
5222
5432
|
|
|
5223
5433
|
|
|
5224
|
-
var
|
|
5434
|
+
var ListRecoveryPointsByLegalHoldCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5225
5435
|
return [
|
|
5226
5436
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5227
5437
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5228
5438
|
];
|
|
5229
5439
|
}).s("CryoControllerUserManager", "ListRecoveryPointsByLegalHold", {}).n("BackupClient", "ListRecoveryPointsByLegalHoldCommand").f(void 0, void 0).ser(se_ListRecoveryPointsByLegalHoldCommand).de(de_ListRecoveryPointsByLegalHoldCommand).build() {
|
|
5440
|
+
static {
|
|
5441
|
+
__name(this, "ListRecoveryPointsByLegalHoldCommand");
|
|
5442
|
+
}
|
|
5230
5443
|
};
|
|
5231
|
-
__name(_ListRecoveryPointsByLegalHoldCommand, "ListRecoveryPointsByLegalHoldCommand");
|
|
5232
|
-
var ListRecoveryPointsByLegalHoldCommand = _ListRecoveryPointsByLegalHoldCommand;
|
|
5233
5444
|
|
|
5234
5445
|
// src/commands/ListRecoveryPointsByResourceCommand.ts
|
|
5235
5446
|
|
|
5236
5447
|
|
|
5237
5448
|
|
|
5238
|
-
var
|
|
5449
|
+
var ListRecoveryPointsByResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5239
5450
|
return [
|
|
5240
5451
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5241
5452
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5242
5453
|
];
|
|
5243
5454
|
}).s("CryoControllerUserManager", "ListRecoveryPointsByResource", {}).n("BackupClient", "ListRecoveryPointsByResourceCommand").f(void 0, void 0).ser(se_ListRecoveryPointsByResourceCommand).de(de_ListRecoveryPointsByResourceCommand).build() {
|
|
5455
|
+
static {
|
|
5456
|
+
__name(this, "ListRecoveryPointsByResourceCommand");
|
|
5457
|
+
}
|
|
5244
5458
|
};
|
|
5245
|
-
__name(_ListRecoveryPointsByResourceCommand, "ListRecoveryPointsByResourceCommand");
|
|
5246
|
-
var ListRecoveryPointsByResourceCommand = _ListRecoveryPointsByResourceCommand;
|
|
5247
5459
|
|
|
5248
5460
|
// src/commands/ListReportJobsCommand.ts
|
|
5249
5461
|
|
|
5250
5462
|
|
|
5251
5463
|
|
|
5252
|
-
var
|
|
5464
|
+
var ListReportJobsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5253
5465
|
return [
|
|
5254
5466
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5255
5467
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5256
5468
|
];
|
|
5257
5469
|
}).s("CryoControllerUserManager", "ListReportJobs", {}).n("BackupClient", "ListReportJobsCommand").f(void 0, void 0).ser(se_ListReportJobsCommand).de(de_ListReportJobsCommand).build() {
|
|
5470
|
+
static {
|
|
5471
|
+
__name(this, "ListReportJobsCommand");
|
|
5472
|
+
}
|
|
5258
5473
|
};
|
|
5259
|
-
__name(_ListReportJobsCommand, "ListReportJobsCommand");
|
|
5260
|
-
var ListReportJobsCommand = _ListReportJobsCommand;
|
|
5261
5474
|
|
|
5262
5475
|
// src/commands/ListReportPlansCommand.ts
|
|
5263
5476
|
|
|
5264
5477
|
|
|
5265
5478
|
|
|
5266
|
-
var
|
|
5479
|
+
var ListReportPlansCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5267
5480
|
return [
|
|
5268
5481
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5269
5482
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5270
5483
|
];
|
|
5271
5484
|
}).s("CryoControllerUserManager", "ListReportPlans", {}).n("BackupClient", "ListReportPlansCommand").f(void 0, void 0).ser(se_ListReportPlansCommand).de(de_ListReportPlansCommand).build() {
|
|
5485
|
+
static {
|
|
5486
|
+
__name(this, "ListReportPlansCommand");
|
|
5487
|
+
}
|
|
5272
5488
|
};
|
|
5273
|
-
__name(_ListReportPlansCommand, "ListReportPlansCommand");
|
|
5274
|
-
var ListReportPlansCommand = _ListReportPlansCommand;
|
|
5275
5489
|
|
|
5276
5490
|
// src/commands/ListRestoreJobsByProtectedResourceCommand.ts
|
|
5277
5491
|
|
|
5278
5492
|
|
|
5279
5493
|
|
|
5280
|
-
var
|
|
5494
|
+
var ListRestoreJobsByProtectedResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5281
5495
|
return [
|
|
5282
5496
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5283
5497
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5284
5498
|
];
|
|
5285
5499
|
}).s("CryoControllerUserManager", "ListRestoreJobsByProtectedResource", {}).n("BackupClient", "ListRestoreJobsByProtectedResourceCommand").f(void 0, void 0).ser(se_ListRestoreJobsByProtectedResourceCommand).de(de_ListRestoreJobsByProtectedResourceCommand).build() {
|
|
5500
|
+
static {
|
|
5501
|
+
__name(this, "ListRestoreJobsByProtectedResourceCommand");
|
|
5502
|
+
}
|
|
5286
5503
|
};
|
|
5287
|
-
__name(_ListRestoreJobsByProtectedResourceCommand, "ListRestoreJobsByProtectedResourceCommand");
|
|
5288
|
-
var ListRestoreJobsByProtectedResourceCommand = _ListRestoreJobsByProtectedResourceCommand;
|
|
5289
5504
|
|
|
5290
5505
|
// src/commands/ListRestoreJobsCommand.ts
|
|
5291
5506
|
|
|
5292
5507
|
|
|
5293
5508
|
|
|
5294
|
-
var
|
|
5509
|
+
var ListRestoreJobsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5295
5510
|
return [
|
|
5296
5511
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5297
5512
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5298
5513
|
];
|
|
5299
5514
|
}).s("CryoControllerUserManager", "ListRestoreJobs", {}).n("BackupClient", "ListRestoreJobsCommand").f(void 0, void 0).ser(se_ListRestoreJobsCommand).de(de_ListRestoreJobsCommand).build() {
|
|
5515
|
+
static {
|
|
5516
|
+
__name(this, "ListRestoreJobsCommand");
|
|
5517
|
+
}
|
|
5300
5518
|
};
|
|
5301
|
-
__name(_ListRestoreJobsCommand, "ListRestoreJobsCommand");
|
|
5302
|
-
var ListRestoreJobsCommand = _ListRestoreJobsCommand;
|
|
5303
5519
|
|
|
5304
5520
|
// src/commands/ListRestoreJobSummariesCommand.ts
|
|
5305
5521
|
|
|
5306
5522
|
|
|
5307
5523
|
|
|
5308
|
-
var
|
|
5524
|
+
var ListRestoreJobSummariesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5309
5525
|
return [
|
|
5310
5526
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5311
5527
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5312
5528
|
];
|
|
5313
5529
|
}).s("CryoControllerUserManager", "ListRestoreJobSummaries", {}).n("BackupClient", "ListRestoreJobSummariesCommand").f(void 0, void 0).ser(se_ListRestoreJobSummariesCommand).de(de_ListRestoreJobSummariesCommand).build() {
|
|
5530
|
+
static {
|
|
5531
|
+
__name(this, "ListRestoreJobSummariesCommand");
|
|
5532
|
+
}
|
|
5314
5533
|
};
|
|
5315
|
-
__name(_ListRestoreJobSummariesCommand, "ListRestoreJobSummariesCommand");
|
|
5316
|
-
var ListRestoreJobSummariesCommand = _ListRestoreJobSummariesCommand;
|
|
5317
5534
|
|
|
5318
5535
|
// src/commands/ListRestoreTestingPlansCommand.ts
|
|
5319
5536
|
|
|
5320
5537
|
|
|
5321
5538
|
|
|
5322
|
-
var
|
|
5539
|
+
var ListRestoreTestingPlansCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5323
5540
|
return [
|
|
5324
5541
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5325
5542
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5326
5543
|
];
|
|
5327
5544
|
}).s("CryoControllerUserManager", "ListRestoreTestingPlans", {}).n("BackupClient", "ListRestoreTestingPlansCommand").f(void 0, void 0).ser(se_ListRestoreTestingPlansCommand).de(de_ListRestoreTestingPlansCommand).build() {
|
|
5545
|
+
static {
|
|
5546
|
+
__name(this, "ListRestoreTestingPlansCommand");
|
|
5547
|
+
}
|
|
5328
5548
|
};
|
|
5329
|
-
__name(_ListRestoreTestingPlansCommand, "ListRestoreTestingPlansCommand");
|
|
5330
|
-
var ListRestoreTestingPlansCommand = _ListRestoreTestingPlansCommand;
|
|
5331
5549
|
|
|
5332
5550
|
// src/commands/ListRestoreTestingSelectionsCommand.ts
|
|
5333
5551
|
|
|
5334
5552
|
|
|
5335
5553
|
|
|
5336
|
-
var
|
|
5554
|
+
var ListRestoreTestingSelectionsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5337
5555
|
return [
|
|
5338
5556
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5339
5557
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5340
5558
|
];
|
|
5341
5559
|
}).s("CryoControllerUserManager", "ListRestoreTestingSelections", {}).n("BackupClient", "ListRestoreTestingSelectionsCommand").f(void 0, void 0).ser(se_ListRestoreTestingSelectionsCommand).de(de_ListRestoreTestingSelectionsCommand).build() {
|
|
5560
|
+
static {
|
|
5561
|
+
__name(this, "ListRestoreTestingSelectionsCommand");
|
|
5562
|
+
}
|
|
5342
5563
|
};
|
|
5343
|
-
__name(_ListRestoreTestingSelectionsCommand, "ListRestoreTestingSelectionsCommand");
|
|
5344
|
-
var ListRestoreTestingSelectionsCommand = _ListRestoreTestingSelectionsCommand;
|
|
5345
5564
|
|
|
5346
5565
|
// src/commands/ListTagsCommand.ts
|
|
5347
5566
|
|
|
5348
5567
|
|
|
5349
5568
|
|
|
5350
|
-
var
|
|
5569
|
+
var ListTagsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5351
5570
|
return [
|
|
5352
5571
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5353
5572
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5354
5573
|
];
|
|
5355
5574
|
}).s("CryoControllerUserManager", "ListTags", {}).n("BackupClient", "ListTagsCommand").f(void 0, ListTagsOutputFilterSensitiveLog).ser(se_ListTagsCommand).de(de_ListTagsCommand).build() {
|
|
5575
|
+
static {
|
|
5576
|
+
__name(this, "ListTagsCommand");
|
|
5577
|
+
}
|
|
5356
5578
|
};
|
|
5357
|
-
__name(_ListTagsCommand, "ListTagsCommand");
|
|
5358
|
-
var ListTagsCommand = _ListTagsCommand;
|
|
5359
5579
|
|
|
5360
5580
|
// src/commands/PutBackupVaultAccessPolicyCommand.ts
|
|
5361
5581
|
|
|
5362
5582
|
|
|
5363
5583
|
|
|
5364
|
-
var
|
|
5584
|
+
var PutBackupVaultAccessPolicyCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5365
5585
|
return [
|
|
5366
5586
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5367
5587
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5368
5588
|
];
|
|
5369
5589
|
}).s("CryoControllerUserManager", "PutBackupVaultAccessPolicy", {}).n("BackupClient", "PutBackupVaultAccessPolicyCommand").f(void 0, void 0).ser(se_PutBackupVaultAccessPolicyCommand).de(de_PutBackupVaultAccessPolicyCommand).build() {
|
|
5590
|
+
static {
|
|
5591
|
+
__name(this, "PutBackupVaultAccessPolicyCommand");
|
|
5592
|
+
}
|
|
5370
5593
|
};
|
|
5371
|
-
__name(_PutBackupVaultAccessPolicyCommand, "PutBackupVaultAccessPolicyCommand");
|
|
5372
|
-
var PutBackupVaultAccessPolicyCommand = _PutBackupVaultAccessPolicyCommand;
|
|
5373
5594
|
|
|
5374
5595
|
// src/commands/PutBackupVaultLockConfigurationCommand.ts
|
|
5375
5596
|
|
|
5376
5597
|
|
|
5377
5598
|
|
|
5378
|
-
var
|
|
5599
|
+
var PutBackupVaultLockConfigurationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5379
5600
|
return [
|
|
5380
5601
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5381
5602
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5382
5603
|
];
|
|
5383
5604
|
}).s("CryoControllerUserManager", "PutBackupVaultLockConfiguration", {}).n("BackupClient", "PutBackupVaultLockConfigurationCommand").f(void 0, void 0).ser(se_PutBackupVaultLockConfigurationCommand).de(de_PutBackupVaultLockConfigurationCommand).build() {
|
|
5605
|
+
static {
|
|
5606
|
+
__name(this, "PutBackupVaultLockConfigurationCommand");
|
|
5607
|
+
}
|
|
5384
5608
|
};
|
|
5385
|
-
__name(_PutBackupVaultLockConfigurationCommand, "PutBackupVaultLockConfigurationCommand");
|
|
5386
|
-
var PutBackupVaultLockConfigurationCommand = _PutBackupVaultLockConfigurationCommand;
|
|
5387
5609
|
|
|
5388
5610
|
// src/commands/PutBackupVaultNotificationsCommand.ts
|
|
5389
5611
|
|
|
5390
5612
|
|
|
5391
5613
|
|
|
5392
|
-
var
|
|
5614
|
+
var PutBackupVaultNotificationsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5393
5615
|
return [
|
|
5394
5616
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5395
5617
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5396
5618
|
];
|
|
5397
5619
|
}).s("CryoControllerUserManager", "PutBackupVaultNotifications", {}).n("BackupClient", "PutBackupVaultNotificationsCommand").f(void 0, void 0).ser(se_PutBackupVaultNotificationsCommand).de(de_PutBackupVaultNotificationsCommand).build() {
|
|
5620
|
+
static {
|
|
5621
|
+
__name(this, "PutBackupVaultNotificationsCommand");
|
|
5622
|
+
}
|
|
5398
5623
|
};
|
|
5399
|
-
__name(_PutBackupVaultNotificationsCommand, "PutBackupVaultNotificationsCommand");
|
|
5400
|
-
var PutBackupVaultNotificationsCommand = _PutBackupVaultNotificationsCommand;
|
|
5401
5624
|
|
|
5402
5625
|
// src/commands/PutRestoreValidationResultCommand.ts
|
|
5403
5626
|
|
|
5404
5627
|
|
|
5405
5628
|
|
|
5406
|
-
var
|
|
5629
|
+
var PutRestoreValidationResultCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5407
5630
|
return [
|
|
5408
5631
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5409
5632
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5410
5633
|
];
|
|
5411
5634
|
}).s("CryoControllerUserManager", "PutRestoreValidationResult", {}).n("BackupClient", "PutRestoreValidationResultCommand").f(void 0, void 0).ser(se_PutRestoreValidationResultCommand).de(de_PutRestoreValidationResultCommand).build() {
|
|
5635
|
+
static {
|
|
5636
|
+
__name(this, "PutRestoreValidationResultCommand");
|
|
5637
|
+
}
|
|
5412
5638
|
};
|
|
5413
|
-
__name(_PutRestoreValidationResultCommand, "PutRestoreValidationResultCommand");
|
|
5414
|
-
var PutRestoreValidationResultCommand = _PutRestoreValidationResultCommand;
|
|
5415
5639
|
|
|
5416
5640
|
// src/commands/StartBackupJobCommand.ts
|
|
5417
5641
|
|
|
5418
5642
|
|
|
5419
5643
|
|
|
5420
|
-
var
|
|
5644
|
+
var StartBackupJobCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5421
5645
|
return [
|
|
5422
5646
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5423
5647
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5424
5648
|
];
|
|
5425
5649
|
}).s("CryoControllerUserManager", "StartBackupJob", {}).n("BackupClient", "StartBackupJobCommand").f(StartBackupJobInputFilterSensitiveLog, void 0).ser(se_StartBackupJobCommand).de(de_StartBackupJobCommand).build() {
|
|
5650
|
+
static {
|
|
5651
|
+
__name(this, "StartBackupJobCommand");
|
|
5652
|
+
}
|
|
5426
5653
|
};
|
|
5427
|
-
__name(_StartBackupJobCommand, "StartBackupJobCommand");
|
|
5428
|
-
var StartBackupJobCommand = _StartBackupJobCommand;
|
|
5429
5654
|
|
|
5430
5655
|
// src/commands/StartCopyJobCommand.ts
|
|
5431
5656
|
|
|
5432
5657
|
|
|
5433
5658
|
|
|
5434
|
-
var
|
|
5659
|
+
var StartCopyJobCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5435
5660
|
return [
|
|
5436
5661
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5437
5662
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5438
5663
|
];
|
|
5439
5664
|
}).s("CryoControllerUserManager", "StartCopyJob", {}).n("BackupClient", "StartCopyJobCommand").f(void 0, void 0).ser(se_StartCopyJobCommand).de(de_StartCopyJobCommand).build() {
|
|
5665
|
+
static {
|
|
5666
|
+
__name(this, "StartCopyJobCommand");
|
|
5667
|
+
}
|
|
5440
5668
|
};
|
|
5441
|
-
__name(_StartCopyJobCommand, "StartCopyJobCommand");
|
|
5442
|
-
var StartCopyJobCommand = _StartCopyJobCommand;
|
|
5443
5669
|
|
|
5444
5670
|
// src/commands/StartReportJobCommand.ts
|
|
5445
5671
|
|
|
5446
5672
|
|
|
5447
5673
|
|
|
5448
|
-
var
|
|
5674
|
+
var StartReportJobCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5449
5675
|
return [
|
|
5450
5676
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5451
5677
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5452
5678
|
];
|
|
5453
5679
|
}).s("CryoControllerUserManager", "StartReportJob", {}).n("BackupClient", "StartReportJobCommand").f(void 0, void 0).ser(se_StartReportJobCommand).de(de_StartReportJobCommand).build() {
|
|
5680
|
+
static {
|
|
5681
|
+
__name(this, "StartReportJobCommand");
|
|
5682
|
+
}
|
|
5454
5683
|
};
|
|
5455
|
-
__name(_StartReportJobCommand, "StartReportJobCommand");
|
|
5456
|
-
var StartReportJobCommand = _StartReportJobCommand;
|
|
5457
5684
|
|
|
5458
5685
|
// src/commands/StartRestoreJobCommand.ts
|
|
5459
5686
|
|
|
5460
5687
|
|
|
5461
5688
|
|
|
5462
|
-
var
|
|
5689
|
+
var StartRestoreJobCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5463
5690
|
return [
|
|
5464
5691
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5465
5692
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5466
5693
|
];
|
|
5467
5694
|
}).s("CryoControllerUserManager", "StartRestoreJob", {}).n("BackupClient", "StartRestoreJobCommand").f(StartRestoreJobInputFilterSensitiveLog, void 0).ser(se_StartRestoreJobCommand).de(de_StartRestoreJobCommand).build() {
|
|
5695
|
+
static {
|
|
5696
|
+
__name(this, "StartRestoreJobCommand");
|
|
5697
|
+
}
|
|
5468
5698
|
};
|
|
5469
|
-
__name(_StartRestoreJobCommand, "StartRestoreJobCommand");
|
|
5470
|
-
var StartRestoreJobCommand = _StartRestoreJobCommand;
|
|
5471
5699
|
|
|
5472
5700
|
// src/commands/StopBackupJobCommand.ts
|
|
5473
5701
|
|
|
5474
5702
|
|
|
5475
5703
|
|
|
5476
|
-
var
|
|
5704
|
+
var StopBackupJobCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5477
5705
|
return [
|
|
5478
5706
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5479
5707
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5480
5708
|
];
|
|
5481
5709
|
}).s("CryoControllerUserManager", "StopBackupJob", {}).n("BackupClient", "StopBackupJobCommand").f(void 0, void 0).ser(se_StopBackupJobCommand).de(de_StopBackupJobCommand).build() {
|
|
5710
|
+
static {
|
|
5711
|
+
__name(this, "StopBackupJobCommand");
|
|
5712
|
+
}
|
|
5482
5713
|
};
|
|
5483
|
-
__name(_StopBackupJobCommand, "StopBackupJobCommand");
|
|
5484
|
-
var StopBackupJobCommand = _StopBackupJobCommand;
|
|
5485
5714
|
|
|
5486
5715
|
// src/commands/TagResourceCommand.ts
|
|
5487
5716
|
|
|
5488
5717
|
|
|
5489
5718
|
|
|
5490
|
-
var
|
|
5719
|
+
var TagResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5491
5720
|
return [
|
|
5492
5721
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5493
5722
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5494
5723
|
];
|
|
5495
5724
|
}).s("CryoControllerUserManager", "TagResource", {}).n("BackupClient", "TagResourceCommand").f(TagResourceInputFilterSensitiveLog, void 0).ser(se_TagResourceCommand).de(de_TagResourceCommand).build() {
|
|
5725
|
+
static {
|
|
5726
|
+
__name(this, "TagResourceCommand");
|
|
5727
|
+
}
|
|
5496
5728
|
};
|
|
5497
|
-
__name(_TagResourceCommand, "TagResourceCommand");
|
|
5498
|
-
var TagResourceCommand = _TagResourceCommand;
|
|
5499
5729
|
|
|
5500
5730
|
// src/commands/UntagResourceCommand.ts
|
|
5501
5731
|
|
|
5502
5732
|
|
|
5503
5733
|
|
|
5504
|
-
var
|
|
5734
|
+
var UntagResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5505
5735
|
return [
|
|
5506
5736
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5507
5737
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5508
5738
|
];
|
|
5509
5739
|
}).s("CryoControllerUserManager", "UntagResource", {}).n("BackupClient", "UntagResourceCommand").f(UntagResourceInputFilterSensitiveLog, void 0).ser(se_UntagResourceCommand).de(de_UntagResourceCommand).build() {
|
|
5740
|
+
static {
|
|
5741
|
+
__name(this, "UntagResourceCommand");
|
|
5742
|
+
}
|
|
5510
5743
|
};
|
|
5511
|
-
__name(_UntagResourceCommand, "UntagResourceCommand");
|
|
5512
|
-
var UntagResourceCommand = _UntagResourceCommand;
|
|
5513
5744
|
|
|
5514
5745
|
// src/commands/UpdateBackupPlanCommand.ts
|
|
5515
5746
|
|
|
5516
5747
|
|
|
5517
5748
|
|
|
5518
|
-
var
|
|
5749
|
+
var UpdateBackupPlanCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5519
5750
|
return [
|
|
5520
5751
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5521
5752
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5522
5753
|
];
|
|
5523
5754
|
}).s("CryoControllerUserManager", "UpdateBackupPlan", {}).n("BackupClient", "UpdateBackupPlanCommand").f(UpdateBackupPlanInputFilterSensitiveLog, void 0).ser(se_UpdateBackupPlanCommand).de(de_UpdateBackupPlanCommand).build() {
|
|
5755
|
+
static {
|
|
5756
|
+
__name(this, "UpdateBackupPlanCommand");
|
|
5757
|
+
}
|
|
5524
5758
|
};
|
|
5525
|
-
__name(_UpdateBackupPlanCommand, "UpdateBackupPlanCommand");
|
|
5526
|
-
var UpdateBackupPlanCommand = _UpdateBackupPlanCommand;
|
|
5527
5759
|
|
|
5528
5760
|
// src/commands/UpdateFrameworkCommand.ts
|
|
5529
5761
|
|
|
5530
5762
|
|
|
5531
5763
|
|
|
5532
|
-
var
|
|
5764
|
+
var UpdateFrameworkCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5533
5765
|
return [
|
|
5534
5766
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5535
5767
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5536
5768
|
];
|
|
5537
5769
|
}).s("CryoControllerUserManager", "UpdateFramework", {}).n("BackupClient", "UpdateFrameworkCommand").f(void 0, void 0).ser(se_UpdateFrameworkCommand).de(de_UpdateFrameworkCommand).build() {
|
|
5770
|
+
static {
|
|
5771
|
+
__name(this, "UpdateFrameworkCommand");
|
|
5772
|
+
}
|
|
5538
5773
|
};
|
|
5539
|
-
__name(_UpdateFrameworkCommand, "UpdateFrameworkCommand");
|
|
5540
|
-
var UpdateFrameworkCommand = _UpdateFrameworkCommand;
|
|
5541
5774
|
|
|
5542
5775
|
// src/commands/UpdateGlobalSettingsCommand.ts
|
|
5543
5776
|
|
|
5544
5777
|
|
|
5545
5778
|
|
|
5546
|
-
var
|
|
5779
|
+
var UpdateGlobalSettingsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5547
5780
|
return [
|
|
5548
5781
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5549
5782
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5550
5783
|
];
|
|
5551
5784
|
}).s("CryoControllerUserManager", "UpdateGlobalSettings", {}).n("BackupClient", "UpdateGlobalSettingsCommand").f(void 0, void 0).ser(se_UpdateGlobalSettingsCommand).de(de_UpdateGlobalSettingsCommand).build() {
|
|
5785
|
+
static {
|
|
5786
|
+
__name(this, "UpdateGlobalSettingsCommand");
|
|
5787
|
+
}
|
|
5552
5788
|
};
|
|
5553
|
-
__name(_UpdateGlobalSettingsCommand, "UpdateGlobalSettingsCommand");
|
|
5554
|
-
var UpdateGlobalSettingsCommand = _UpdateGlobalSettingsCommand;
|
|
5555
5789
|
|
|
5556
5790
|
// src/commands/UpdateRecoveryPointIndexSettingsCommand.ts
|
|
5557
5791
|
|
|
5558
5792
|
|
|
5559
5793
|
|
|
5560
|
-
var
|
|
5794
|
+
var UpdateRecoveryPointIndexSettingsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5561
5795
|
return [
|
|
5562
5796
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5563
5797
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5564
5798
|
];
|
|
5565
5799
|
}).s("CryoControllerUserManager", "UpdateRecoveryPointIndexSettings", {}).n("BackupClient", "UpdateRecoveryPointIndexSettingsCommand").f(void 0, void 0).ser(se_UpdateRecoveryPointIndexSettingsCommand).de(de_UpdateRecoveryPointIndexSettingsCommand).build() {
|
|
5800
|
+
static {
|
|
5801
|
+
__name(this, "UpdateRecoveryPointIndexSettingsCommand");
|
|
5802
|
+
}
|
|
5566
5803
|
};
|
|
5567
|
-
__name(_UpdateRecoveryPointIndexSettingsCommand, "UpdateRecoveryPointIndexSettingsCommand");
|
|
5568
|
-
var UpdateRecoveryPointIndexSettingsCommand = _UpdateRecoveryPointIndexSettingsCommand;
|
|
5569
5804
|
|
|
5570
5805
|
// src/commands/UpdateRecoveryPointLifecycleCommand.ts
|
|
5571
5806
|
|
|
5572
5807
|
|
|
5573
5808
|
|
|
5574
|
-
var
|
|
5809
|
+
var UpdateRecoveryPointLifecycleCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5575
5810
|
return [
|
|
5576
5811
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5577
5812
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5578
5813
|
];
|
|
5579
5814
|
}).s("CryoControllerUserManager", "UpdateRecoveryPointLifecycle", {}).n("BackupClient", "UpdateRecoveryPointLifecycleCommand").f(void 0, void 0).ser(se_UpdateRecoveryPointLifecycleCommand).de(de_UpdateRecoveryPointLifecycleCommand).build() {
|
|
5815
|
+
static {
|
|
5816
|
+
__name(this, "UpdateRecoveryPointLifecycleCommand");
|
|
5817
|
+
}
|
|
5580
5818
|
};
|
|
5581
|
-
__name(_UpdateRecoveryPointLifecycleCommand, "UpdateRecoveryPointLifecycleCommand");
|
|
5582
|
-
var UpdateRecoveryPointLifecycleCommand = _UpdateRecoveryPointLifecycleCommand;
|
|
5583
5819
|
|
|
5584
5820
|
// src/commands/UpdateRegionSettingsCommand.ts
|
|
5585
5821
|
|
|
5586
5822
|
|
|
5587
5823
|
|
|
5588
|
-
var
|
|
5824
|
+
var UpdateRegionSettingsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5589
5825
|
return [
|
|
5590
5826
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5591
5827
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5592
5828
|
];
|
|
5593
5829
|
}).s("CryoControllerUserManager", "UpdateRegionSettings", {}).n("BackupClient", "UpdateRegionSettingsCommand").f(void 0, void 0).ser(se_UpdateRegionSettingsCommand).de(de_UpdateRegionSettingsCommand).build() {
|
|
5830
|
+
static {
|
|
5831
|
+
__name(this, "UpdateRegionSettingsCommand");
|
|
5832
|
+
}
|
|
5594
5833
|
};
|
|
5595
|
-
__name(_UpdateRegionSettingsCommand, "UpdateRegionSettingsCommand");
|
|
5596
|
-
var UpdateRegionSettingsCommand = _UpdateRegionSettingsCommand;
|
|
5597
5834
|
|
|
5598
5835
|
// src/commands/UpdateReportPlanCommand.ts
|
|
5599
5836
|
|
|
5600
5837
|
|
|
5601
5838
|
|
|
5602
|
-
var
|
|
5839
|
+
var UpdateReportPlanCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5603
5840
|
return [
|
|
5604
5841
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5605
5842
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5606
5843
|
];
|
|
5607
5844
|
}).s("CryoControllerUserManager", "UpdateReportPlan", {}).n("BackupClient", "UpdateReportPlanCommand").f(void 0, void 0).ser(se_UpdateReportPlanCommand).de(de_UpdateReportPlanCommand).build() {
|
|
5845
|
+
static {
|
|
5846
|
+
__name(this, "UpdateReportPlanCommand");
|
|
5847
|
+
}
|
|
5608
5848
|
};
|
|
5609
|
-
__name(_UpdateReportPlanCommand, "UpdateReportPlanCommand");
|
|
5610
|
-
var UpdateReportPlanCommand = _UpdateReportPlanCommand;
|
|
5611
5849
|
|
|
5612
5850
|
// src/commands/UpdateRestoreTestingPlanCommand.ts
|
|
5613
5851
|
|
|
5614
5852
|
|
|
5615
5853
|
|
|
5616
|
-
var
|
|
5854
|
+
var UpdateRestoreTestingPlanCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5617
5855
|
return [
|
|
5618
5856
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5619
5857
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5620
5858
|
];
|
|
5621
5859
|
}).s("CryoControllerUserManager", "UpdateRestoreTestingPlan", {}).n("BackupClient", "UpdateRestoreTestingPlanCommand").f(void 0, void 0).ser(se_UpdateRestoreTestingPlanCommand).de(de_UpdateRestoreTestingPlanCommand).build() {
|
|
5860
|
+
static {
|
|
5861
|
+
__name(this, "UpdateRestoreTestingPlanCommand");
|
|
5862
|
+
}
|
|
5622
5863
|
};
|
|
5623
|
-
__name(_UpdateRestoreTestingPlanCommand, "UpdateRestoreTestingPlanCommand");
|
|
5624
|
-
var UpdateRestoreTestingPlanCommand = _UpdateRestoreTestingPlanCommand;
|
|
5625
5864
|
|
|
5626
5865
|
// src/commands/UpdateRestoreTestingSelectionCommand.ts
|
|
5627
5866
|
|
|
5628
5867
|
|
|
5629
5868
|
|
|
5630
|
-
var
|
|
5869
|
+
var UpdateRestoreTestingSelectionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5631
5870
|
return [
|
|
5632
5871
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5633
5872
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5634
5873
|
];
|
|
5635
5874
|
}).s("CryoControllerUserManager", "UpdateRestoreTestingSelection", {}).n("BackupClient", "UpdateRestoreTestingSelectionCommand").f(UpdateRestoreTestingSelectionInputFilterSensitiveLog, void 0).ser(se_UpdateRestoreTestingSelectionCommand).de(de_UpdateRestoreTestingSelectionCommand).build() {
|
|
5875
|
+
static {
|
|
5876
|
+
__name(this, "UpdateRestoreTestingSelectionCommand");
|
|
5877
|
+
}
|
|
5636
5878
|
};
|
|
5637
|
-
__name(_UpdateRestoreTestingSelectionCommand, "UpdateRestoreTestingSelectionCommand");
|
|
5638
|
-
var UpdateRestoreTestingSelectionCommand = _UpdateRestoreTestingSelectionCommand;
|
|
5639
5879
|
|
|
5640
5880
|
// src/Backup.ts
|
|
5641
5881
|
var commands = {
|
|
@@ -5734,10 +5974,11 @@ var commands = {
|
|
|
5734
5974
|
UpdateRestoreTestingPlanCommand,
|
|
5735
5975
|
UpdateRestoreTestingSelectionCommand
|
|
5736
5976
|
};
|
|
5737
|
-
var
|
|
5977
|
+
var Backup = class extends BackupClient {
|
|
5978
|
+
static {
|
|
5979
|
+
__name(this, "Backup");
|
|
5980
|
+
}
|
|
5738
5981
|
};
|
|
5739
|
-
__name(_Backup, "Backup");
|
|
5740
|
-
var Backup = _Backup;
|
|
5741
5982
|
(0, import_smithy_client.createAggregatedClient)(commands, Backup);
|
|
5742
5983
|
|
|
5743
5984
|
// src/pagination/ListBackupJobSummariesPaginator.ts
|