@aws-sdk/client-iam 3.721.0 → 3.726.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 +919 -743
- package/dist-es/IAMClient.js +1 -0
- package/dist-es/models/models_0.js +59 -54
- package/dist-es/models/models_1.js +12 -12
- 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 +44 -44
package/dist-cjs/index.js
CHANGED
|
@@ -396,7 +396,14 @@ var resolveRuntimeExtensions = /* @__PURE__ */ __name((runtimeConfig, extensions
|
|
|
396
396
|
}, "resolveRuntimeExtensions");
|
|
397
397
|
|
|
398
398
|
// src/IAMClient.ts
|
|
399
|
-
var
|
|
399
|
+
var IAMClient = class extends import_smithy_client.Client {
|
|
400
|
+
static {
|
|
401
|
+
__name(this, "IAMClient");
|
|
402
|
+
}
|
|
403
|
+
/**
|
|
404
|
+
* The resolved configuration of IAMClient class. This is resolved and normalized from the {@link IAMClientConfig | constructor configuration interface}.
|
|
405
|
+
*/
|
|
406
|
+
config;
|
|
400
407
|
constructor(...[configuration]) {
|
|
401
408
|
const _config_0 = (0, import_runtimeConfig.getRuntimeConfig)(configuration || {});
|
|
402
409
|
const _config_1 = resolveClientEndpointParameters(_config_0);
|
|
@@ -406,7 +413,7 @@ var _IAMClient = class _IAMClient extends import_smithy_client.Client {
|
|
|
406
413
|
const _config_5 = (0, import_middleware_host_header.resolveHostHeaderConfig)(_config_4);
|
|
407
414
|
const _config_6 = (0, import_middleware_endpoint.resolveEndpointConfig)(_config_5);
|
|
408
415
|
const _config_7 = (0, import_httpAuthSchemeProvider.resolveHttpAuthSchemeConfig)(_config_6);
|
|
409
|
-
const _config_8 = resolveRuntimeExtensions(_config_7,
|
|
416
|
+
const _config_8 = resolveRuntimeExtensions(_config_7, configuration?.extensions || []);
|
|
410
417
|
super(_config_8);
|
|
411
418
|
this.config = _config_8;
|
|
412
419
|
this.middlewareStack.use((0, import_middleware_user_agent.getUserAgentPlugin)(this.config));
|
|
@@ -434,8 +441,6 @@ var _IAMClient = class _IAMClient extends import_smithy_client.Client {
|
|
|
434
441
|
super.destroy();
|
|
435
442
|
}
|
|
436
443
|
};
|
|
437
|
-
__name(_IAMClient, "IAMClient");
|
|
438
|
-
var IAMClient = _IAMClient;
|
|
439
444
|
|
|
440
445
|
// src/IAM.ts
|
|
441
446
|
|
|
@@ -452,7 +457,10 @@ var import_core2 = require("@aws-sdk/core");
|
|
|
452
457
|
|
|
453
458
|
// src/models/IAMServiceException.ts
|
|
454
459
|
|
|
455
|
-
var
|
|
460
|
+
var IAMServiceException = class _IAMServiceException extends import_smithy_client.ServiceException {
|
|
461
|
+
static {
|
|
462
|
+
__name(this, "IAMServiceException");
|
|
463
|
+
}
|
|
456
464
|
/**
|
|
457
465
|
* @internal
|
|
458
466
|
*/
|
|
@@ -461,8 +469,6 @@ var _IAMServiceException = class _IAMServiceException extends import_smithy_clie
|
|
|
461
469
|
Object.setPrototypeOf(this, _IAMServiceException.prototype);
|
|
462
470
|
}
|
|
463
471
|
};
|
|
464
|
-
__name(_IAMServiceException, "IAMServiceException");
|
|
465
|
-
var IAMServiceException = _IAMServiceException;
|
|
466
472
|
|
|
467
473
|
// src/models/models_0.ts
|
|
468
474
|
|
|
@@ -474,7 +480,13 @@ var StatusType = {
|
|
|
474
480
|
Active: "Active",
|
|
475
481
|
Inactive: "Inactive"
|
|
476
482
|
};
|
|
477
|
-
var
|
|
483
|
+
var AccountNotManagementOrDelegatedAdministratorException = class _AccountNotManagementOrDelegatedAdministratorException extends IAMServiceException {
|
|
484
|
+
static {
|
|
485
|
+
__name(this, "AccountNotManagementOrDelegatedAdministratorException");
|
|
486
|
+
}
|
|
487
|
+
name = "AccountNotManagementOrDelegatedAdministratorException";
|
|
488
|
+
$fault = "client";
|
|
489
|
+
Message;
|
|
478
490
|
/**
|
|
479
491
|
* @internal
|
|
480
492
|
*/
|
|
@@ -484,15 +496,16 @@ var _AccountNotManagementOrDelegatedAdministratorException = class _AccountNotMa
|
|
|
484
496
|
$fault: "client",
|
|
485
497
|
...opts
|
|
486
498
|
});
|
|
487
|
-
this.name = "AccountNotManagementOrDelegatedAdministratorException";
|
|
488
|
-
this.$fault = "client";
|
|
489
499
|
Object.setPrototypeOf(this, _AccountNotManagementOrDelegatedAdministratorException.prototype);
|
|
490
500
|
this.Message = opts.Message;
|
|
491
501
|
}
|
|
492
502
|
};
|
|
493
|
-
|
|
494
|
-
|
|
495
|
-
|
|
503
|
+
var InvalidInputException = class _InvalidInputException extends IAMServiceException {
|
|
504
|
+
static {
|
|
505
|
+
__name(this, "InvalidInputException");
|
|
506
|
+
}
|
|
507
|
+
name = "InvalidInputException";
|
|
508
|
+
$fault = "client";
|
|
496
509
|
/**
|
|
497
510
|
* @internal
|
|
498
511
|
*/
|
|
@@ -502,14 +515,15 @@ var _InvalidInputException = class _InvalidInputException extends IAMServiceExce
|
|
|
502
515
|
$fault: "client",
|
|
503
516
|
...opts
|
|
504
517
|
});
|
|
505
|
-
this.name = "InvalidInputException";
|
|
506
|
-
this.$fault = "client";
|
|
507
518
|
Object.setPrototypeOf(this, _InvalidInputException.prototype);
|
|
508
519
|
}
|
|
509
520
|
};
|
|
510
|
-
|
|
511
|
-
|
|
512
|
-
|
|
521
|
+
var LimitExceededException = class _LimitExceededException extends IAMServiceException {
|
|
522
|
+
static {
|
|
523
|
+
__name(this, "LimitExceededException");
|
|
524
|
+
}
|
|
525
|
+
name = "LimitExceededException";
|
|
526
|
+
$fault = "client";
|
|
513
527
|
/**
|
|
514
528
|
* @internal
|
|
515
529
|
*/
|
|
@@ -519,14 +533,15 @@ var _LimitExceededException = class _LimitExceededException extends IAMServiceEx
|
|
|
519
533
|
$fault: "client",
|
|
520
534
|
...opts
|
|
521
535
|
});
|
|
522
|
-
this.name = "LimitExceededException";
|
|
523
|
-
this.$fault = "client";
|
|
524
536
|
Object.setPrototypeOf(this, _LimitExceededException.prototype);
|
|
525
537
|
}
|
|
526
538
|
};
|
|
527
|
-
|
|
528
|
-
|
|
529
|
-
|
|
539
|
+
var NoSuchEntityException = class _NoSuchEntityException extends IAMServiceException {
|
|
540
|
+
static {
|
|
541
|
+
__name(this, "NoSuchEntityException");
|
|
542
|
+
}
|
|
543
|
+
name = "NoSuchEntityException";
|
|
544
|
+
$fault = "client";
|
|
530
545
|
/**
|
|
531
546
|
* @internal
|
|
532
547
|
*/
|
|
@@ -536,14 +551,15 @@ var _NoSuchEntityException = class _NoSuchEntityException extends IAMServiceExce
|
|
|
536
551
|
$fault: "client",
|
|
537
552
|
...opts
|
|
538
553
|
});
|
|
539
|
-
this.name = "NoSuchEntityException";
|
|
540
|
-
this.$fault = "client";
|
|
541
554
|
Object.setPrototypeOf(this, _NoSuchEntityException.prototype);
|
|
542
555
|
}
|
|
543
556
|
};
|
|
544
|
-
|
|
545
|
-
|
|
546
|
-
|
|
557
|
+
var ServiceFailureException = class _ServiceFailureException extends IAMServiceException {
|
|
558
|
+
static {
|
|
559
|
+
__name(this, "ServiceFailureException");
|
|
560
|
+
}
|
|
561
|
+
name = "ServiceFailureException";
|
|
562
|
+
$fault = "server";
|
|
547
563
|
/**
|
|
548
564
|
* @internal
|
|
549
565
|
*/
|
|
@@ -553,14 +569,15 @@ var _ServiceFailureException = class _ServiceFailureException extends IAMService
|
|
|
553
569
|
$fault: "server",
|
|
554
570
|
...opts
|
|
555
571
|
});
|
|
556
|
-
this.name = "ServiceFailureException";
|
|
557
|
-
this.$fault = "server";
|
|
558
572
|
Object.setPrototypeOf(this, _ServiceFailureException.prototype);
|
|
559
573
|
}
|
|
560
574
|
};
|
|
561
|
-
|
|
562
|
-
|
|
563
|
-
|
|
575
|
+
var EntityAlreadyExistsException = class _EntityAlreadyExistsException extends IAMServiceException {
|
|
576
|
+
static {
|
|
577
|
+
__name(this, "EntityAlreadyExistsException");
|
|
578
|
+
}
|
|
579
|
+
name = "EntityAlreadyExistsException";
|
|
580
|
+
$fault = "client";
|
|
564
581
|
/**
|
|
565
582
|
* @internal
|
|
566
583
|
*/
|
|
@@ -570,14 +587,15 @@ var _EntityAlreadyExistsException = class _EntityAlreadyExistsException extends
|
|
|
570
587
|
$fault: "client",
|
|
571
588
|
...opts
|
|
572
589
|
});
|
|
573
|
-
this.name = "EntityAlreadyExistsException";
|
|
574
|
-
this.$fault = "client";
|
|
575
590
|
Object.setPrototypeOf(this, _EntityAlreadyExistsException.prototype);
|
|
576
591
|
}
|
|
577
592
|
};
|
|
578
|
-
|
|
579
|
-
|
|
580
|
-
|
|
593
|
+
var UnmodifiableEntityException = class _UnmodifiableEntityException extends IAMServiceException {
|
|
594
|
+
static {
|
|
595
|
+
__name(this, "UnmodifiableEntityException");
|
|
596
|
+
}
|
|
597
|
+
name = "UnmodifiableEntityException";
|
|
598
|
+
$fault = "client";
|
|
581
599
|
/**
|
|
582
600
|
* @internal
|
|
583
601
|
*/
|
|
@@ -587,13 +605,9 @@ var _UnmodifiableEntityException = class _UnmodifiableEntityException extends IA
|
|
|
587
605
|
$fault: "client",
|
|
588
606
|
...opts
|
|
589
607
|
});
|
|
590
|
-
this.name = "UnmodifiableEntityException";
|
|
591
|
-
this.$fault = "client";
|
|
592
608
|
Object.setPrototypeOf(this, _UnmodifiableEntityException.prototype);
|
|
593
609
|
}
|
|
594
610
|
};
|
|
595
|
-
__name(_UnmodifiableEntityException, "UnmodifiableEntityException");
|
|
596
|
-
var UnmodifiableEntityException = _UnmodifiableEntityException;
|
|
597
611
|
var AssignmentStatusType = {
|
|
598
612
|
Any: "Any",
|
|
599
613
|
Assigned: "Assigned",
|
|
@@ -602,7 +616,12 @@ var AssignmentStatusType = {
|
|
|
602
616
|
var PermissionsBoundaryAttachmentType = {
|
|
603
617
|
Policy: "PermissionsBoundaryPolicy"
|
|
604
618
|
};
|
|
605
|
-
var
|
|
619
|
+
var PolicyNotAttachableException = class _PolicyNotAttachableException extends IAMServiceException {
|
|
620
|
+
static {
|
|
621
|
+
__name(this, "PolicyNotAttachableException");
|
|
622
|
+
}
|
|
623
|
+
name = "PolicyNotAttachableException";
|
|
624
|
+
$fault = "client";
|
|
606
625
|
/**
|
|
607
626
|
* @internal
|
|
608
627
|
*/
|
|
@@ -612,14 +631,15 @@ var _PolicyNotAttachableException = class _PolicyNotAttachableException extends
|
|
|
612
631
|
$fault: "client",
|
|
613
632
|
...opts
|
|
614
633
|
});
|
|
615
|
-
this.name = "PolicyNotAttachableException";
|
|
616
|
-
this.$fault = "client";
|
|
617
634
|
Object.setPrototypeOf(this, _PolicyNotAttachableException.prototype);
|
|
618
635
|
}
|
|
619
636
|
};
|
|
620
|
-
|
|
621
|
-
|
|
622
|
-
|
|
637
|
+
var EntityTemporarilyUnmodifiableException = class _EntityTemporarilyUnmodifiableException extends IAMServiceException {
|
|
638
|
+
static {
|
|
639
|
+
__name(this, "EntityTemporarilyUnmodifiableException");
|
|
640
|
+
}
|
|
641
|
+
name = "EntityTemporarilyUnmodifiableException";
|
|
642
|
+
$fault = "client";
|
|
623
643
|
/**
|
|
624
644
|
* @internal
|
|
625
645
|
*/
|
|
@@ -629,14 +649,15 @@ var _EntityTemporarilyUnmodifiableException = class _EntityTemporarilyUnmodifiab
|
|
|
629
649
|
$fault: "client",
|
|
630
650
|
...opts
|
|
631
651
|
});
|
|
632
|
-
this.name = "EntityTemporarilyUnmodifiableException";
|
|
633
|
-
this.$fault = "client";
|
|
634
652
|
Object.setPrototypeOf(this, _EntityTemporarilyUnmodifiableException.prototype);
|
|
635
653
|
}
|
|
636
654
|
};
|
|
637
|
-
|
|
638
|
-
|
|
639
|
-
|
|
655
|
+
var InvalidUserTypeException = class _InvalidUserTypeException extends IAMServiceException {
|
|
656
|
+
static {
|
|
657
|
+
__name(this, "InvalidUserTypeException");
|
|
658
|
+
}
|
|
659
|
+
name = "InvalidUserTypeException";
|
|
660
|
+
$fault = "client";
|
|
640
661
|
/**
|
|
641
662
|
* @internal
|
|
642
663
|
*/
|
|
@@ -646,14 +667,15 @@ var _InvalidUserTypeException = class _InvalidUserTypeException extends IAMServi
|
|
|
646
667
|
$fault: "client",
|
|
647
668
|
...opts
|
|
648
669
|
});
|
|
649
|
-
this.name = "InvalidUserTypeException";
|
|
650
|
-
this.$fault = "client";
|
|
651
670
|
Object.setPrototypeOf(this, _InvalidUserTypeException.prototype);
|
|
652
671
|
}
|
|
653
672
|
};
|
|
654
|
-
|
|
655
|
-
|
|
656
|
-
|
|
673
|
+
var PasswordPolicyViolationException = class _PasswordPolicyViolationException extends IAMServiceException {
|
|
674
|
+
static {
|
|
675
|
+
__name(this, "PasswordPolicyViolationException");
|
|
676
|
+
}
|
|
677
|
+
name = "PasswordPolicyViolationException";
|
|
678
|
+
$fault = "client";
|
|
657
679
|
/**
|
|
658
680
|
* @internal
|
|
659
681
|
*/
|
|
@@ -663,14 +685,15 @@ var _PasswordPolicyViolationException = class _PasswordPolicyViolationException
|
|
|
663
685
|
$fault: "client",
|
|
664
686
|
...opts
|
|
665
687
|
});
|
|
666
|
-
this.name = "PasswordPolicyViolationException";
|
|
667
|
-
this.$fault = "client";
|
|
668
688
|
Object.setPrototypeOf(this, _PasswordPolicyViolationException.prototype);
|
|
669
689
|
}
|
|
670
690
|
};
|
|
671
|
-
|
|
672
|
-
|
|
673
|
-
|
|
691
|
+
var ConcurrentModificationException = class _ConcurrentModificationException extends IAMServiceException {
|
|
692
|
+
static {
|
|
693
|
+
__name(this, "ConcurrentModificationException");
|
|
694
|
+
}
|
|
695
|
+
name = "ConcurrentModificationException";
|
|
696
|
+
$fault = "client";
|
|
674
697
|
/**
|
|
675
698
|
* @internal
|
|
676
699
|
*/
|
|
@@ -680,14 +703,15 @@ var _ConcurrentModificationException = class _ConcurrentModificationException ex
|
|
|
680
703
|
$fault: "client",
|
|
681
704
|
...opts
|
|
682
705
|
});
|
|
683
|
-
this.name = "ConcurrentModificationException";
|
|
684
|
-
this.$fault = "client";
|
|
685
706
|
Object.setPrototypeOf(this, _ConcurrentModificationException.prototype);
|
|
686
707
|
}
|
|
687
708
|
};
|
|
688
|
-
|
|
689
|
-
|
|
690
|
-
|
|
709
|
+
var OpenIdIdpCommunicationErrorException = class _OpenIdIdpCommunicationErrorException extends IAMServiceException {
|
|
710
|
+
static {
|
|
711
|
+
__name(this, "OpenIdIdpCommunicationErrorException");
|
|
712
|
+
}
|
|
713
|
+
name = "OpenIdIdpCommunicationErrorException";
|
|
714
|
+
$fault = "client";
|
|
691
715
|
/**
|
|
692
716
|
* @internal
|
|
693
717
|
*/
|
|
@@ -697,14 +721,15 @@ var _OpenIdIdpCommunicationErrorException = class _OpenIdIdpCommunicationErrorEx
|
|
|
697
721
|
$fault: "client",
|
|
698
722
|
...opts
|
|
699
723
|
});
|
|
700
|
-
this.name = "OpenIdIdpCommunicationErrorException";
|
|
701
|
-
this.$fault = "client";
|
|
702
724
|
Object.setPrototypeOf(this, _OpenIdIdpCommunicationErrorException.prototype);
|
|
703
725
|
}
|
|
704
726
|
};
|
|
705
|
-
|
|
706
|
-
|
|
707
|
-
|
|
727
|
+
var MalformedPolicyDocumentException = class _MalformedPolicyDocumentException extends IAMServiceException {
|
|
728
|
+
static {
|
|
729
|
+
__name(this, "MalformedPolicyDocumentException");
|
|
730
|
+
}
|
|
731
|
+
name = "MalformedPolicyDocumentException";
|
|
732
|
+
$fault = "client";
|
|
708
733
|
/**
|
|
709
734
|
* @internal
|
|
710
735
|
*/
|
|
@@ -714,14 +739,15 @@ var _MalformedPolicyDocumentException = class _MalformedPolicyDocumentException
|
|
|
714
739
|
$fault: "client",
|
|
715
740
|
...opts
|
|
716
741
|
});
|
|
717
|
-
this.name = "MalformedPolicyDocumentException";
|
|
718
|
-
this.$fault = "client";
|
|
719
742
|
Object.setPrototypeOf(this, _MalformedPolicyDocumentException.prototype);
|
|
720
743
|
}
|
|
721
744
|
};
|
|
722
|
-
|
|
723
|
-
|
|
724
|
-
|
|
745
|
+
var ServiceNotSupportedException = class _ServiceNotSupportedException extends IAMServiceException {
|
|
746
|
+
static {
|
|
747
|
+
__name(this, "ServiceNotSupportedException");
|
|
748
|
+
}
|
|
749
|
+
name = "ServiceNotSupportedException";
|
|
750
|
+
$fault = "client";
|
|
725
751
|
/**
|
|
726
752
|
* @internal
|
|
727
753
|
*/
|
|
@@ -731,14 +757,15 @@ var _ServiceNotSupportedException = class _ServiceNotSupportedException extends
|
|
|
731
757
|
$fault: "client",
|
|
732
758
|
...opts
|
|
733
759
|
});
|
|
734
|
-
this.name = "ServiceNotSupportedException";
|
|
735
|
-
this.$fault = "client";
|
|
736
760
|
Object.setPrototypeOf(this, _ServiceNotSupportedException.prototype);
|
|
737
761
|
}
|
|
738
762
|
};
|
|
739
|
-
|
|
740
|
-
|
|
741
|
-
|
|
763
|
+
var DeleteConflictException = class _DeleteConflictException extends IAMServiceException {
|
|
764
|
+
static {
|
|
765
|
+
__name(this, "DeleteConflictException");
|
|
766
|
+
}
|
|
767
|
+
name = "DeleteConflictException";
|
|
768
|
+
$fault = "client";
|
|
742
769
|
/**
|
|
743
770
|
* @internal
|
|
744
771
|
*/
|
|
@@ -748,18 +775,20 @@ var _DeleteConflictException = class _DeleteConflictException extends IAMService
|
|
|
748
775
|
$fault: "client",
|
|
749
776
|
...opts
|
|
750
777
|
});
|
|
751
|
-
this.name = "DeleteConflictException";
|
|
752
|
-
this.$fault = "client";
|
|
753
778
|
Object.setPrototypeOf(this, _DeleteConflictException.prototype);
|
|
754
779
|
}
|
|
755
780
|
};
|
|
756
|
-
__name(_DeleteConflictException, "DeleteConflictException");
|
|
757
|
-
var DeleteConflictException = _DeleteConflictException;
|
|
758
781
|
var FeatureType = {
|
|
759
782
|
ROOT_CREDENTIALS_MANAGEMENT: "RootCredentialsManagement",
|
|
760
783
|
ROOT_SESSIONS: "RootSessions"
|
|
761
784
|
};
|
|
762
|
-
var
|
|
785
|
+
var OrganizationNotFoundException = class _OrganizationNotFoundException extends IAMServiceException {
|
|
786
|
+
static {
|
|
787
|
+
__name(this, "OrganizationNotFoundException");
|
|
788
|
+
}
|
|
789
|
+
name = "OrganizationNotFoundException";
|
|
790
|
+
$fault = "client";
|
|
791
|
+
Message;
|
|
763
792
|
/**
|
|
764
793
|
* @internal
|
|
765
794
|
*/
|
|
@@ -769,15 +798,17 @@ var _OrganizationNotFoundException = class _OrganizationNotFoundException extend
|
|
|
769
798
|
$fault: "client",
|
|
770
799
|
...opts
|
|
771
800
|
});
|
|
772
|
-
this.name = "OrganizationNotFoundException";
|
|
773
|
-
this.$fault = "client";
|
|
774
801
|
Object.setPrototypeOf(this, _OrganizationNotFoundException.prototype);
|
|
775
802
|
this.Message = opts.Message;
|
|
776
803
|
}
|
|
777
804
|
};
|
|
778
|
-
|
|
779
|
-
|
|
780
|
-
|
|
805
|
+
var OrganizationNotInAllFeaturesModeException = class _OrganizationNotInAllFeaturesModeException extends IAMServiceException {
|
|
806
|
+
static {
|
|
807
|
+
__name(this, "OrganizationNotInAllFeaturesModeException");
|
|
808
|
+
}
|
|
809
|
+
name = "OrganizationNotInAllFeaturesModeException";
|
|
810
|
+
$fault = "client";
|
|
811
|
+
Message;
|
|
781
812
|
/**
|
|
782
813
|
* @internal
|
|
783
814
|
*/
|
|
@@ -787,15 +818,17 @@ var _OrganizationNotInAllFeaturesModeException = class _OrganizationNotInAllFeat
|
|
|
787
818
|
$fault: "client",
|
|
788
819
|
...opts
|
|
789
820
|
});
|
|
790
|
-
this.name = "OrganizationNotInAllFeaturesModeException";
|
|
791
|
-
this.$fault = "client";
|
|
792
821
|
Object.setPrototypeOf(this, _OrganizationNotInAllFeaturesModeException.prototype);
|
|
793
822
|
this.Message = opts.Message;
|
|
794
823
|
}
|
|
795
824
|
};
|
|
796
|
-
|
|
797
|
-
|
|
798
|
-
|
|
825
|
+
var ServiceAccessNotEnabledException = class _ServiceAccessNotEnabledException extends IAMServiceException {
|
|
826
|
+
static {
|
|
827
|
+
__name(this, "ServiceAccessNotEnabledException");
|
|
828
|
+
}
|
|
829
|
+
name = "ServiceAccessNotEnabledException";
|
|
830
|
+
$fault = "client";
|
|
831
|
+
Message;
|
|
799
832
|
/**
|
|
800
833
|
* @internal
|
|
801
834
|
*/
|
|
@@ -805,15 +838,16 @@ var _ServiceAccessNotEnabledException = class _ServiceAccessNotEnabledException
|
|
|
805
838
|
$fault: "client",
|
|
806
839
|
...opts
|
|
807
840
|
});
|
|
808
|
-
this.name = "ServiceAccessNotEnabledException";
|
|
809
|
-
this.$fault = "client";
|
|
810
841
|
Object.setPrototypeOf(this, _ServiceAccessNotEnabledException.prototype);
|
|
811
842
|
this.Message = opts.Message;
|
|
812
843
|
}
|
|
813
844
|
};
|
|
814
|
-
|
|
815
|
-
|
|
816
|
-
|
|
845
|
+
var InvalidAuthenticationCodeException = class _InvalidAuthenticationCodeException extends IAMServiceException {
|
|
846
|
+
static {
|
|
847
|
+
__name(this, "InvalidAuthenticationCodeException");
|
|
848
|
+
}
|
|
849
|
+
name = "InvalidAuthenticationCodeException";
|
|
850
|
+
$fault = "client";
|
|
817
851
|
/**
|
|
818
852
|
* @internal
|
|
819
853
|
*/
|
|
@@ -823,14 +857,16 @@ var _InvalidAuthenticationCodeException = class _InvalidAuthenticationCodeExcept
|
|
|
823
857
|
$fault: "client",
|
|
824
858
|
...opts
|
|
825
859
|
});
|
|
826
|
-
this.name = "InvalidAuthenticationCodeException";
|
|
827
|
-
this.$fault = "client";
|
|
828
860
|
Object.setPrototypeOf(this, _InvalidAuthenticationCodeException.prototype);
|
|
829
861
|
}
|
|
830
862
|
};
|
|
831
|
-
|
|
832
|
-
|
|
833
|
-
|
|
863
|
+
var CallerIsNotManagementAccountException = class _CallerIsNotManagementAccountException extends IAMServiceException {
|
|
864
|
+
static {
|
|
865
|
+
__name(this, "CallerIsNotManagementAccountException");
|
|
866
|
+
}
|
|
867
|
+
name = "CallerIsNotManagementAccountException";
|
|
868
|
+
$fault = "client";
|
|
869
|
+
Message;
|
|
834
870
|
/**
|
|
835
871
|
* @internal
|
|
836
872
|
*/
|
|
@@ -840,20 +876,21 @@ var _CallerIsNotManagementAccountException = class _CallerIsNotManagementAccount
|
|
|
840
876
|
$fault: "client",
|
|
841
877
|
...opts
|
|
842
878
|
});
|
|
843
|
-
this.name = "CallerIsNotManagementAccountException";
|
|
844
|
-
this.$fault = "client";
|
|
845
879
|
Object.setPrototypeOf(this, _CallerIsNotManagementAccountException.prototype);
|
|
846
880
|
this.Message = opts.Message;
|
|
847
881
|
}
|
|
848
882
|
};
|
|
849
|
-
__name(_CallerIsNotManagementAccountException, "CallerIsNotManagementAccountException");
|
|
850
|
-
var CallerIsNotManagementAccountException = _CallerIsNotManagementAccountException;
|
|
851
883
|
var ReportStateType = {
|
|
852
884
|
COMPLETE: "COMPLETE",
|
|
853
885
|
INPROGRESS: "INPROGRESS",
|
|
854
886
|
STARTED: "STARTED"
|
|
855
887
|
};
|
|
856
|
-
var
|
|
888
|
+
var ReportGenerationLimitExceededException = class _ReportGenerationLimitExceededException extends IAMServiceException {
|
|
889
|
+
static {
|
|
890
|
+
__name(this, "ReportGenerationLimitExceededException");
|
|
891
|
+
}
|
|
892
|
+
name = "ReportGenerationLimitExceededException";
|
|
893
|
+
$fault = "client";
|
|
857
894
|
/**
|
|
858
895
|
* @internal
|
|
859
896
|
*/
|
|
@@ -863,13 +900,9 @@ var _ReportGenerationLimitExceededException = class _ReportGenerationLimitExceed
|
|
|
863
900
|
$fault: "client",
|
|
864
901
|
...opts
|
|
865
902
|
});
|
|
866
|
-
this.name = "ReportGenerationLimitExceededException";
|
|
867
|
-
this.$fault = "client";
|
|
868
903
|
Object.setPrototypeOf(this, _ReportGenerationLimitExceededException.prototype);
|
|
869
904
|
}
|
|
870
905
|
};
|
|
871
|
-
__name(_ReportGenerationLimitExceededException, "ReportGenerationLimitExceededException");
|
|
872
|
-
var ReportGenerationLimitExceededException = _ReportGenerationLimitExceededException;
|
|
873
906
|
var EntityType = {
|
|
874
907
|
AWSManagedPolicy: "AWSManagedPolicy",
|
|
875
908
|
Group: "Group",
|
|
@@ -906,7 +939,12 @@ var SummaryKeyType = {
|
|
|
906
939
|
UsersQuota: "UsersQuota",
|
|
907
940
|
VersionsPerPolicyQuota: "VersionsPerPolicyQuota"
|
|
908
941
|
};
|
|
909
|
-
var
|
|
942
|
+
var CredentialReportExpiredException = class _CredentialReportExpiredException extends IAMServiceException {
|
|
943
|
+
static {
|
|
944
|
+
__name(this, "CredentialReportExpiredException");
|
|
945
|
+
}
|
|
946
|
+
name = "CredentialReportExpiredException";
|
|
947
|
+
$fault = "client";
|
|
910
948
|
/**
|
|
911
949
|
* @internal
|
|
912
950
|
*/
|
|
@@ -916,14 +954,15 @@ var _CredentialReportExpiredException = class _CredentialReportExpiredException
|
|
|
916
954
|
$fault: "client",
|
|
917
955
|
...opts
|
|
918
956
|
});
|
|
919
|
-
this.name = "CredentialReportExpiredException";
|
|
920
|
-
this.$fault = "client";
|
|
921
957
|
Object.setPrototypeOf(this, _CredentialReportExpiredException.prototype);
|
|
922
958
|
}
|
|
923
959
|
};
|
|
924
|
-
|
|
925
|
-
|
|
926
|
-
|
|
960
|
+
var CredentialReportNotPresentException = class _CredentialReportNotPresentException extends IAMServiceException {
|
|
961
|
+
static {
|
|
962
|
+
__name(this, "CredentialReportNotPresentException");
|
|
963
|
+
}
|
|
964
|
+
name = "CredentialReportNotPresentException";
|
|
965
|
+
$fault = "client";
|
|
927
966
|
/**
|
|
928
967
|
* @internal
|
|
929
968
|
*/
|
|
@@ -933,14 +972,15 @@ var _CredentialReportNotPresentException = class _CredentialReportNotPresentExce
|
|
|
933
972
|
$fault: "client",
|
|
934
973
|
...opts
|
|
935
974
|
});
|
|
936
|
-
this.name = "CredentialReportNotPresentException";
|
|
937
|
-
this.$fault = "client";
|
|
938
975
|
Object.setPrototypeOf(this, _CredentialReportNotPresentException.prototype);
|
|
939
976
|
}
|
|
940
977
|
};
|
|
941
|
-
|
|
942
|
-
|
|
943
|
-
|
|
978
|
+
var CredentialReportNotReadyException = class _CredentialReportNotReadyException extends IAMServiceException {
|
|
979
|
+
static {
|
|
980
|
+
__name(this, "CredentialReportNotReadyException");
|
|
981
|
+
}
|
|
982
|
+
name = "CredentialReportNotReadyException";
|
|
983
|
+
$fault = "client";
|
|
944
984
|
/**
|
|
945
985
|
* @internal
|
|
946
986
|
*/
|
|
@@ -950,13 +990,9 @@ var _CredentialReportNotReadyException = class _CredentialReportNotReadyExceptio
|
|
|
950
990
|
$fault: "client",
|
|
951
991
|
...opts
|
|
952
992
|
});
|
|
953
|
-
this.name = "CredentialReportNotReadyException";
|
|
954
|
-
this.$fault = "client";
|
|
955
993
|
Object.setPrototypeOf(this, _CredentialReportNotReadyException.prototype);
|
|
956
994
|
}
|
|
957
995
|
};
|
|
958
|
-
__name(_CredentialReportNotReadyException, "CredentialReportNotReadyException");
|
|
959
|
-
var CredentialReportNotReadyException = _CredentialReportNotReadyException;
|
|
960
996
|
var ReportFormatType = {
|
|
961
997
|
text_csv: "text/csv"
|
|
962
998
|
};
|
|
@@ -986,7 +1022,12 @@ var EncodingType = {
|
|
|
986
1022
|
PEM: "PEM",
|
|
987
1023
|
SSH: "SSH"
|
|
988
1024
|
};
|
|
989
|
-
var
|
|
1025
|
+
var UnrecognizedPublicKeyEncodingException = class _UnrecognizedPublicKeyEncodingException extends IAMServiceException {
|
|
1026
|
+
static {
|
|
1027
|
+
__name(this, "UnrecognizedPublicKeyEncodingException");
|
|
1028
|
+
}
|
|
1029
|
+
name = "UnrecognizedPublicKeyEncodingException";
|
|
1030
|
+
$fault = "client";
|
|
990
1031
|
/**
|
|
991
1032
|
* @internal
|
|
992
1033
|
*/
|
|
@@ -996,13 +1037,9 @@ var _UnrecognizedPublicKeyEncodingException = class _UnrecognizedPublicKeyEncodi
|
|
|
996
1037
|
$fault: "client",
|
|
997
1038
|
...opts
|
|
998
1039
|
});
|
|
999
|
-
this.name = "UnrecognizedPublicKeyEncodingException";
|
|
1000
|
-
this.$fault = "client";
|
|
1001
1040
|
Object.setPrototypeOf(this, _UnrecognizedPublicKeyEncodingException.prototype);
|
|
1002
1041
|
}
|
|
1003
1042
|
};
|
|
1004
|
-
__name(_UnrecognizedPublicKeyEncodingException, "UnrecognizedPublicKeyEncodingException");
|
|
1005
|
-
var UnrecognizedPublicKeyEncodingException = _UnrecognizedPublicKeyEncodingException;
|
|
1006
1043
|
var PolicyUsageType = {
|
|
1007
1044
|
PermissionsBoundary: "PermissionsBoundary",
|
|
1008
1045
|
PermissionsPolicy: "PermissionsPolicy"
|
|
@@ -1020,7 +1057,12 @@ var GlobalEndpointTokenVersion = {
|
|
|
1020
1057
|
v1Token: "v1Token",
|
|
1021
1058
|
v2Token: "v2Token"
|
|
1022
1059
|
};
|
|
1023
|
-
var
|
|
1060
|
+
var PolicyEvaluationException = class _PolicyEvaluationException extends IAMServiceException {
|
|
1061
|
+
static {
|
|
1062
|
+
__name(this, "PolicyEvaluationException");
|
|
1063
|
+
}
|
|
1064
|
+
name = "PolicyEvaluationException";
|
|
1065
|
+
$fault = "server";
|
|
1024
1066
|
/**
|
|
1025
1067
|
* @internal
|
|
1026
1068
|
*/
|
|
@@ -1030,13 +1072,9 @@ var _PolicyEvaluationException = class _PolicyEvaluationException extends IAMSer
|
|
|
1030
1072
|
$fault: "server",
|
|
1031
1073
|
...opts
|
|
1032
1074
|
});
|
|
1033
|
-
this.name = "PolicyEvaluationException";
|
|
1034
|
-
this.$fault = "server";
|
|
1035
1075
|
Object.setPrototypeOf(this, _PolicyEvaluationException.prototype);
|
|
1036
1076
|
}
|
|
1037
1077
|
};
|
|
1038
|
-
__name(_PolicyEvaluationException, "PolicyEvaluationException");
|
|
1039
|
-
var PolicyEvaluationException = _PolicyEvaluationException;
|
|
1040
1078
|
var ContextKeyTypeEnum = {
|
|
1041
1079
|
BINARY: "binary",
|
|
1042
1080
|
BINARY_LIST: "binaryList",
|
|
@@ -1116,7 +1154,12 @@ var PolicySourceType = {
|
|
|
1116
1154
|
USER: "user",
|
|
1117
1155
|
USER_MANAGED: "user-managed"
|
|
1118
1156
|
};
|
|
1119
|
-
var
|
|
1157
|
+
var KeyPairMismatchException = class _KeyPairMismatchException extends IAMServiceException {
|
|
1158
|
+
static {
|
|
1159
|
+
__name(this, "KeyPairMismatchException");
|
|
1160
|
+
}
|
|
1161
|
+
name = "KeyPairMismatchException";
|
|
1162
|
+
$fault = "client";
|
|
1120
1163
|
/**
|
|
1121
1164
|
* @internal
|
|
1122
1165
|
*/
|
|
@@ -1126,14 +1169,15 @@ var _KeyPairMismatchException = class _KeyPairMismatchException extends IAMServi
|
|
|
1126
1169
|
$fault: "client",
|
|
1127
1170
|
...opts
|
|
1128
1171
|
});
|
|
1129
|
-
this.name = "KeyPairMismatchException";
|
|
1130
|
-
this.$fault = "client";
|
|
1131
1172
|
Object.setPrototypeOf(this, _KeyPairMismatchException.prototype);
|
|
1132
1173
|
}
|
|
1133
1174
|
};
|
|
1134
|
-
|
|
1135
|
-
|
|
1136
|
-
|
|
1175
|
+
var MalformedCertificateException = class _MalformedCertificateException extends IAMServiceException {
|
|
1176
|
+
static {
|
|
1177
|
+
__name(this, "MalformedCertificateException");
|
|
1178
|
+
}
|
|
1179
|
+
name = "MalformedCertificateException";
|
|
1180
|
+
$fault = "client";
|
|
1137
1181
|
/**
|
|
1138
1182
|
* @internal
|
|
1139
1183
|
*/
|
|
@@ -1143,14 +1187,15 @@ var _MalformedCertificateException = class _MalformedCertificateException extend
|
|
|
1143
1187
|
$fault: "client",
|
|
1144
1188
|
...opts
|
|
1145
1189
|
});
|
|
1146
|
-
this.name = "MalformedCertificateException";
|
|
1147
|
-
this.$fault = "client";
|
|
1148
1190
|
Object.setPrototypeOf(this, _MalformedCertificateException.prototype);
|
|
1149
1191
|
}
|
|
1150
1192
|
};
|
|
1151
|
-
|
|
1152
|
-
|
|
1153
|
-
|
|
1193
|
+
var DuplicateCertificateException = class _DuplicateCertificateException extends IAMServiceException {
|
|
1194
|
+
static {
|
|
1195
|
+
__name(this, "DuplicateCertificateException");
|
|
1196
|
+
}
|
|
1197
|
+
name = "DuplicateCertificateException";
|
|
1198
|
+
$fault = "client";
|
|
1154
1199
|
/**
|
|
1155
1200
|
* @internal
|
|
1156
1201
|
*/
|
|
@@ -1160,14 +1205,15 @@ var _DuplicateCertificateException = class _DuplicateCertificateException extend
|
|
|
1160
1205
|
$fault: "client",
|
|
1161
1206
|
...opts
|
|
1162
1207
|
});
|
|
1163
|
-
this.name = "DuplicateCertificateException";
|
|
1164
|
-
this.$fault = "client";
|
|
1165
1208
|
Object.setPrototypeOf(this, _DuplicateCertificateException.prototype);
|
|
1166
1209
|
}
|
|
1167
1210
|
};
|
|
1168
|
-
|
|
1169
|
-
|
|
1170
|
-
|
|
1211
|
+
var InvalidCertificateException = class _InvalidCertificateException extends IAMServiceException {
|
|
1212
|
+
static {
|
|
1213
|
+
__name(this, "InvalidCertificateException");
|
|
1214
|
+
}
|
|
1215
|
+
name = "InvalidCertificateException";
|
|
1216
|
+
$fault = "client";
|
|
1171
1217
|
/**
|
|
1172
1218
|
* @internal
|
|
1173
1219
|
*/
|
|
@@ -1177,14 +1223,15 @@ var _InvalidCertificateException = class _InvalidCertificateException extends IA
|
|
|
1177
1223
|
$fault: "client",
|
|
1178
1224
|
...opts
|
|
1179
1225
|
});
|
|
1180
|
-
this.name = "InvalidCertificateException";
|
|
1181
|
-
this.$fault = "client";
|
|
1182
1226
|
Object.setPrototypeOf(this, _InvalidCertificateException.prototype);
|
|
1183
1227
|
}
|
|
1184
1228
|
};
|
|
1185
|
-
|
|
1186
|
-
|
|
1187
|
-
|
|
1229
|
+
var DuplicateSSHPublicKeyException = class _DuplicateSSHPublicKeyException extends IAMServiceException {
|
|
1230
|
+
static {
|
|
1231
|
+
__name(this, "DuplicateSSHPublicKeyException");
|
|
1232
|
+
}
|
|
1233
|
+
name = "DuplicateSSHPublicKeyException";
|
|
1234
|
+
$fault = "client";
|
|
1188
1235
|
/**
|
|
1189
1236
|
* @internal
|
|
1190
1237
|
*/
|
|
@@ -1194,14 +1241,15 @@ var _DuplicateSSHPublicKeyException = class _DuplicateSSHPublicKeyException exte
|
|
|
1194
1241
|
$fault: "client",
|
|
1195
1242
|
...opts
|
|
1196
1243
|
});
|
|
1197
|
-
this.name = "DuplicateSSHPublicKeyException";
|
|
1198
|
-
this.$fault = "client";
|
|
1199
1244
|
Object.setPrototypeOf(this, _DuplicateSSHPublicKeyException.prototype);
|
|
1200
1245
|
}
|
|
1201
1246
|
};
|
|
1202
|
-
|
|
1203
|
-
|
|
1204
|
-
|
|
1247
|
+
var InvalidPublicKeyException = class _InvalidPublicKeyException extends IAMServiceException {
|
|
1248
|
+
static {
|
|
1249
|
+
__name(this, "InvalidPublicKeyException");
|
|
1250
|
+
}
|
|
1251
|
+
name = "InvalidPublicKeyException";
|
|
1252
|
+
$fault = "client";
|
|
1205
1253
|
/**
|
|
1206
1254
|
* @internal
|
|
1207
1255
|
*/
|
|
@@ -1211,13 +1259,9 @@ var _InvalidPublicKeyException = class _InvalidPublicKeyException extends IAMSer
|
|
|
1211
1259
|
$fault: "client",
|
|
1212
1260
|
...opts
|
|
1213
1261
|
});
|
|
1214
|
-
this.name = "InvalidPublicKeyException";
|
|
1215
|
-
this.$fault = "client";
|
|
1216
1262
|
Object.setPrototypeOf(this, _InvalidPublicKeyException.prototype);
|
|
1217
1263
|
}
|
|
1218
1264
|
};
|
|
1219
|
-
__name(_InvalidPublicKeyException, "InvalidPublicKeyException");
|
|
1220
|
-
var InvalidPublicKeyException = _InvalidPublicKeyException;
|
|
1221
1265
|
var UpdateLoginProfileRequestFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
1222
1266
|
...obj,
|
|
1223
1267
|
...obj.Password && { Password: import_smithy_client.SENSITIVE_STRING }
|
|
@@ -5287,14 +5331,13 @@ var se_clientIDListType = /* @__PURE__ */ __name((input, context) => {
|
|
|
5287
5331
|
return entries;
|
|
5288
5332
|
}, "se_clientIDListType");
|
|
5289
5333
|
var se_ContextEntry = /* @__PURE__ */ __name((input, context) => {
|
|
5290
|
-
var _a;
|
|
5291
5334
|
const entries = {};
|
|
5292
5335
|
if (input[_CKN] != null) {
|
|
5293
5336
|
entries[_CKN] = input[_CKN];
|
|
5294
5337
|
}
|
|
5295
5338
|
if (input[_CKV] != null) {
|
|
5296
5339
|
const memberEntries = se_ContextKeyValueListType(input[_CKV], context);
|
|
5297
|
-
if (
|
|
5340
|
+
if (input[_CKV]?.length === 0) {
|
|
5298
5341
|
entries.ContextKeyValues = [];
|
|
5299
5342
|
}
|
|
5300
5343
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -5359,7 +5402,6 @@ var se_CreateGroupRequest = /* @__PURE__ */ __name((input, context) => {
|
|
|
5359
5402
|
return entries;
|
|
5360
5403
|
}, "se_CreateGroupRequest");
|
|
5361
5404
|
var se_CreateInstanceProfileRequest = /* @__PURE__ */ __name((input, context) => {
|
|
5362
|
-
var _a;
|
|
5363
5405
|
const entries = {};
|
|
5364
5406
|
if (input[_IPN] != null) {
|
|
5365
5407
|
entries[_IPN] = input[_IPN];
|
|
@@ -5369,7 +5411,7 @@ var se_CreateInstanceProfileRequest = /* @__PURE__ */ __name((input, context) =>
|
|
|
5369
5411
|
}
|
|
5370
5412
|
if (input[_T] != null) {
|
|
5371
5413
|
const memberEntries = se_tagListType(input[_T], context);
|
|
5372
|
-
if (
|
|
5414
|
+
if (input[_T]?.length === 0) {
|
|
5373
5415
|
entries.Tags = [];
|
|
5374
5416
|
}
|
|
5375
5417
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -5393,14 +5435,13 @@ var se_CreateLoginProfileRequest = /* @__PURE__ */ __name((input, context) => {
|
|
|
5393
5435
|
return entries;
|
|
5394
5436
|
}, "se_CreateLoginProfileRequest");
|
|
5395
5437
|
var se_CreateOpenIDConnectProviderRequest = /* @__PURE__ */ __name((input, context) => {
|
|
5396
|
-
var _a, _b, _c;
|
|
5397
5438
|
const entries = {};
|
|
5398
5439
|
if (input[_U] != null) {
|
|
5399
5440
|
entries[_U] = input[_U];
|
|
5400
5441
|
}
|
|
5401
5442
|
if (input[_CIDL] != null) {
|
|
5402
5443
|
const memberEntries = se_clientIDListType(input[_CIDL], context);
|
|
5403
|
-
if (
|
|
5444
|
+
if (input[_CIDL]?.length === 0) {
|
|
5404
5445
|
entries.ClientIDList = [];
|
|
5405
5446
|
}
|
|
5406
5447
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -5410,7 +5451,7 @@ var se_CreateOpenIDConnectProviderRequest = /* @__PURE__ */ __name((input, conte
|
|
|
5410
5451
|
}
|
|
5411
5452
|
if (input[_TL] != null) {
|
|
5412
5453
|
const memberEntries = se_thumbprintListType(input[_TL], context);
|
|
5413
|
-
if (
|
|
5454
|
+
if (input[_TL]?.length === 0) {
|
|
5414
5455
|
entries.ThumbprintList = [];
|
|
5415
5456
|
}
|
|
5416
5457
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -5420,7 +5461,7 @@ var se_CreateOpenIDConnectProviderRequest = /* @__PURE__ */ __name((input, conte
|
|
|
5420
5461
|
}
|
|
5421
5462
|
if (input[_T] != null) {
|
|
5422
5463
|
const memberEntries = se_tagListType(input[_T], context);
|
|
5423
|
-
if (
|
|
5464
|
+
if (input[_T]?.length === 0) {
|
|
5424
5465
|
entries.Tags = [];
|
|
5425
5466
|
}
|
|
5426
5467
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -5431,7 +5472,6 @@ var se_CreateOpenIDConnectProviderRequest = /* @__PURE__ */ __name((input, conte
|
|
|
5431
5472
|
return entries;
|
|
5432
5473
|
}, "se_CreateOpenIDConnectProviderRequest");
|
|
5433
5474
|
var se_CreatePolicyRequest = /* @__PURE__ */ __name((input, context) => {
|
|
5434
|
-
var _a;
|
|
5435
5475
|
const entries = {};
|
|
5436
5476
|
if (input[_PN] != null) {
|
|
5437
5477
|
entries[_PN] = input[_PN];
|
|
@@ -5447,7 +5487,7 @@ var se_CreatePolicyRequest = /* @__PURE__ */ __name((input, context) => {
|
|
|
5447
5487
|
}
|
|
5448
5488
|
if (input[_T] != null) {
|
|
5449
5489
|
const memberEntries = se_tagListType(input[_T], context);
|
|
5450
|
-
if (
|
|
5490
|
+
if (input[_T]?.length === 0) {
|
|
5451
5491
|
entries.Tags = [];
|
|
5452
5492
|
}
|
|
5453
5493
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -5471,7 +5511,6 @@ var se_CreatePolicyVersionRequest = /* @__PURE__ */ __name((input, context) => {
|
|
|
5471
5511
|
return entries;
|
|
5472
5512
|
}, "se_CreatePolicyVersionRequest");
|
|
5473
5513
|
var se_CreateRoleRequest = /* @__PURE__ */ __name((input, context) => {
|
|
5474
|
-
var _a;
|
|
5475
5514
|
const entries = {};
|
|
5476
5515
|
if (input[_P] != null) {
|
|
5477
5516
|
entries[_P] = input[_P];
|
|
@@ -5493,7 +5532,7 @@ var se_CreateRoleRequest = /* @__PURE__ */ __name((input, context) => {
|
|
|
5493
5532
|
}
|
|
5494
5533
|
if (input[_T] != null) {
|
|
5495
5534
|
const memberEntries = se_tagListType(input[_T], context);
|
|
5496
|
-
if (
|
|
5535
|
+
if (input[_T]?.length === 0) {
|
|
5497
5536
|
entries.Tags = [];
|
|
5498
5537
|
}
|
|
5499
5538
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -5504,7 +5543,6 @@ var se_CreateRoleRequest = /* @__PURE__ */ __name((input, context) => {
|
|
|
5504
5543
|
return entries;
|
|
5505
5544
|
}, "se_CreateRoleRequest");
|
|
5506
5545
|
var se_CreateSAMLProviderRequest = /* @__PURE__ */ __name((input, context) => {
|
|
5507
|
-
var _a;
|
|
5508
5546
|
const entries = {};
|
|
5509
5547
|
if (input[_SAMLMD] != null) {
|
|
5510
5548
|
entries[_SAMLMD] = input[_SAMLMD];
|
|
@@ -5514,7 +5552,7 @@ var se_CreateSAMLProviderRequest = /* @__PURE__ */ __name((input, context) => {
|
|
|
5514
5552
|
}
|
|
5515
5553
|
if (input[_T] != null) {
|
|
5516
5554
|
const memberEntries = se_tagListType(input[_T], context);
|
|
5517
|
-
if (
|
|
5555
|
+
if (input[_T]?.length === 0) {
|
|
5518
5556
|
entries.Tags = [];
|
|
5519
5557
|
}
|
|
5520
5558
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -5548,7 +5586,6 @@ var se_CreateServiceSpecificCredentialRequest = /* @__PURE__ */ __name((input, c
|
|
|
5548
5586
|
return entries;
|
|
5549
5587
|
}, "se_CreateServiceSpecificCredentialRequest");
|
|
5550
5588
|
var se_CreateUserRequest = /* @__PURE__ */ __name((input, context) => {
|
|
5551
|
-
var _a;
|
|
5552
5589
|
const entries = {};
|
|
5553
5590
|
if (input[_P] != null) {
|
|
5554
5591
|
entries[_P] = input[_P];
|
|
@@ -5561,7 +5598,7 @@ var se_CreateUserRequest = /* @__PURE__ */ __name((input, context) => {
|
|
|
5561
5598
|
}
|
|
5562
5599
|
if (input[_T] != null) {
|
|
5563
5600
|
const memberEntries = se_tagListType(input[_T], context);
|
|
5564
|
-
if (
|
|
5601
|
+
if (input[_T]?.length === 0) {
|
|
5565
5602
|
entries.Tags = [];
|
|
5566
5603
|
}
|
|
5567
5604
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -5572,7 +5609,6 @@ var se_CreateUserRequest = /* @__PURE__ */ __name((input, context) => {
|
|
|
5572
5609
|
return entries;
|
|
5573
5610
|
}, "se_CreateUserRequest");
|
|
5574
5611
|
var se_CreateVirtualMFADeviceRequest = /* @__PURE__ */ __name((input, context) => {
|
|
5575
|
-
var _a;
|
|
5576
5612
|
const entries = {};
|
|
5577
5613
|
if (input[_P] != null) {
|
|
5578
5614
|
entries[_P] = input[_P];
|
|
@@ -5582,7 +5618,7 @@ var se_CreateVirtualMFADeviceRequest = /* @__PURE__ */ __name((input, context) =
|
|
|
5582
5618
|
}
|
|
5583
5619
|
if (input[_T] != null) {
|
|
5584
5620
|
const memberEntries = se_tagListType(input[_T], context);
|
|
5585
|
-
if (
|
|
5621
|
+
if (input[_T]?.length === 0) {
|
|
5586
5622
|
entries.Tags = [];
|
|
5587
5623
|
}
|
|
5588
5624
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -5882,11 +5918,10 @@ var se_GetAccessKeyLastUsedRequest = /* @__PURE__ */ __name((input, context) =>
|
|
|
5882
5918
|
return entries;
|
|
5883
5919
|
}, "se_GetAccessKeyLastUsedRequest");
|
|
5884
5920
|
var se_GetAccountAuthorizationDetailsRequest = /* @__PURE__ */ __name((input, context) => {
|
|
5885
|
-
var _a;
|
|
5886
5921
|
const entries = {};
|
|
5887
5922
|
if (input[_F] != null) {
|
|
5888
5923
|
const memberEntries = se_entityListType(input[_F], context);
|
|
5889
|
-
if (
|
|
5924
|
+
if (input[_F]?.length === 0) {
|
|
5890
5925
|
entries.Filter = [];
|
|
5891
5926
|
}
|
|
5892
5927
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -5903,11 +5938,10 @@ var se_GetAccountAuthorizationDetailsRequest = /* @__PURE__ */ __name((input, co
|
|
|
5903
5938
|
return entries;
|
|
5904
5939
|
}, "se_GetAccountAuthorizationDetailsRequest");
|
|
5905
5940
|
var se_GetContextKeysForCustomPolicyRequest = /* @__PURE__ */ __name((input, context) => {
|
|
5906
|
-
var _a;
|
|
5907
5941
|
const entries = {};
|
|
5908
5942
|
if (input[_PIL] != null) {
|
|
5909
5943
|
const memberEntries = se_SimulationPolicyListType(input[_PIL], context);
|
|
5910
|
-
if (
|
|
5944
|
+
if (input[_PIL]?.length === 0) {
|
|
5911
5945
|
entries.PolicyInputList = [];
|
|
5912
5946
|
}
|
|
5913
5947
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -5918,14 +5952,13 @@ var se_GetContextKeysForCustomPolicyRequest = /* @__PURE__ */ __name((input, con
|
|
|
5918
5952
|
return entries;
|
|
5919
5953
|
}, "se_GetContextKeysForCustomPolicyRequest");
|
|
5920
5954
|
var se_GetContextKeysForPrincipalPolicyRequest = /* @__PURE__ */ __name((input, context) => {
|
|
5921
|
-
var _a;
|
|
5922
5955
|
const entries = {};
|
|
5923
5956
|
if (input[_PSA] != null) {
|
|
5924
5957
|
entries[_PSA] = input[_PSA];
|
|
5925
5958
|
}
|
|
5926
5959
|
if (input[_PIL] != null) {
|
|
5927
5960
|
const memberEntries = se_SimulationPolicyListType(input[_PIL], context);
|
|
5928
|
-
if (
|
|
5961
|
+
if (input[_PIL]?.length === 0) {
|
|
5929
5962
|
entries.PolicyInputList = [];
|
|
5930
5963
|
}
|
|
5931
5964
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -6338,7 +6371,6 @@ var se_ListOrganizationsFeaturesRequest = /* @__PURE__ */ __name((input, context
|
|
|
6338
6371
|
return entries;
|
|
6339
6372
|
}, "se_ListOrganizationsFeaturesRequest");
|
|
6340
6373
|
var se_ListPoliciesGrantingServiceAccessRequest = /* @__PURE__ */ __name((input, context) => {
|
|
6341
|
-
var _a;
|
|
6342
6374
|
const entries = {};
|
|
6343
6375
|
if (input[_M] != null) {
|
|
6344
6376
|
entries[_M] = input[_M];
|
|
@@ -6348,7 +6380,7 @@ var se_ListPoliciesGrantingServiceAccessRequest = /* @__PURE__ */ __name((input,
|
|
|
6348
6380
|
}
|
|
6349
6381
|
if (input[_SNerv] != null) {
|
|
6350
6382
|
const memberEntries = se_serviceNamespaceListType(input[_SNerv], context);
|
|
6351
|
-
if (
|
|
6383
|
+
if (input[_SNerv]?.length === 0) {
|
|
6352
6384
|
entries.ServiceNamespaces = [];
|
|
6353
6385
|
}
|
|
6354
6386
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -6733,11 +6765,10 @@ var se_SetSecurityTokenServicePreferencesRequest = /* @__PURE__ */ __name((input
|
|
|
6733
6765
|
return entries;
|
|
6734
6766
|
}, "se_SetSecurityTokenServicePreferencesRequest");
|
|
6735
6767
|
var se_SimulateCustomPolicyRequest = /* @__PURE__ */ __name((input, context) => {
|
|
6736
|
-
var _a, _b, _c, _d, _e2;
|
|
6737
6768
|
const entries = {};
|
|
6738
6769
|
if (input[_PIL] != null) {
|
|
6739
6770
|
const memberEntries = se_SimulationPolicyListType(input[_PIL], context);
|
|
6740
|
-
if (
|
|
6771
|
+
if (input[_PIL]?.length === 0) {
|
|
6741
6772
|
entries.PolicyInputList = [];
|
|
6742
6773
|
}
|
|
6743
6774
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -6747,7 +6778,7 @@ var se_SimulateCustomPolicyRequest = /* @__PURE__ */ __name((input, context) =>
|
|
|
6747
6778
|
}
|
|
6748
6779
|
if (input[_PBPIL] != null) {
|
|
6749
6780
|
const memberEntries = se_SimulationPolicyListType(input[_PBPIL], context);
|
|
6750
|
-
if (
|
|
6781
|
+
if (input[_PBPIL]?.length === 0) {
|
|
6751
6782
|
entries.PermissionsBoundaryPolicyInputList = [];
|
|
6752
6783
|
}
|
|
6753
6784
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -6757,7 +6788,7 @@ var se_SimulateCustomPolicyRequest = /* @__PURE__ */ __name((input, context) =>
|
|
|
6757
6788
|
}
|
|
6758
6789
|
if (input[_AN] != null) {
|
|
6759
6790
|
const memberEntries = se_ActionNameListType(input[_AN], context);
|
|
6760
|
-
if (
|
|
6791
|
+
if (input[_AN]?.length === 0) {
|
|
6761
6792
|
entries.ActionNames = [];
|
|
6762
6793
|
}
|
|
6763
6794
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -6767,7 +6798,7 @@ var se_SimulateCustomPolicyRequest = /* @__PURE__ */ __name((input, context) =>
|
|
|
6767
6798
|
}
|
|
6768
6799
|
if (input[_RA] != null) {
|
|
6769
6800
|
const memberEntries = se_ResourceNameListType(input[_RA], context);
|
|
6770
|
-
if (
|
|
6801
|
+
if (input[_RA]?.length === 0) {
|
|
6771
6802
|
entries.ResourceArns = [];
|
|
6772
6803
|
}
|
|
6773
6804
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -6786,7 +6817,7 @@ var se_SimulateCustomPolicyRequest = /* @__PURE__ */ __name((input, context) =>
|
|
|
6786
6817
|
}
|
|
6787
6818
|
if (input[_CE] != null) {
|
|
6788
6819
|
const memberEntries = se_ContextEntryListType(input[_CE], context);
|
|
6789
|
-
if (
|
|
6820
|
+
if (input[_CE]?.length === 0) {
|
|
6790
6821
|
entries.ContextEntries = [];
|
|
6791
6822
|
}
|
|
6792
6823
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -6806,14 +6837,13 @@ var se_SimulateCustomPolicyRequest = /* @__PURE__ */ __name((input, context) =>
|
|
|
6806
6837
|
return entries;
|
|
6807
6838
|
}, "se_SimulateCustomPolicyRequest");
|
|
6808
6839
|
var se_SimulatePrincipalPolicyRequest = /* @__PURE__ */ __name((input, context) => {
|
|
6809
|
-
var _a, _b, _c, _d, _e2;
|
|
6810
6840
|
const entries = {};
|
|
6811
6841
|
if (input[_PSA] != null) {
|
|
6812
6842
|
entries[_PSA] = input[_PSA];
|
|
6813
6843
|
}
|
|
6814
6844
|
if (input[_PIL] != null) {
|
|
6815
6845
|
const memberEntries = se_SimulationPolicyListType(input[_PIL], context);
|
|
6816
|
-
if (
|
|
6846
|
+
if (input[_PIL]?.length === 0) {
|
|
6817
6847
|
entries.PolicyInputList = [];
|
|
6818
6848
|
}
|
|
6819
6849
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -6823,7 +6853,7 @@ var se_SimulatePrincipalPolicyRequest = /* @__PURE__ */ __name((input, context)
|
|
|
6823
6853
|
}
|
|
6824
6854
|
if (input[_PBPIL] != null) {
|
|
6825
6855
|
const memberEntries = se_SimulationPolicyListType(input[_PBPIL], context);
|
|
6826
|
-
if (
|
|
6856
|
+
if (input[_PBPIL]?.length === 0) {
|
|
6827
6857
|
entries.PermissionsBoundaryPolicyInputList = [];
|
|
6828
6858
|
}
|
|
6829
6859
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -6833,7 +6863,7 @@ var se_SimulatePrincipalPolicyRequest = /* @__PURE__ */ __name((input, context)
|
|
|
6833
6863
|
}
|
|
6834
6864
|
if (input[_AN] != null) {
|
|
6835
6865
|
const memberEntries = se_ActionNameListType(input[_AN], context);
|
|
6836
|
-
if (
|
|
6866
|
+
if (input[_AN]?.length === 0) {
|
|
6837
6867
|
entries.ActionNames = [];
|
|
6838
6868
|
}
|
|
6839
6869
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -6843,7 +6873,7 @@ var se_SimulatePrincipalPolicyRequest = /* @__PURE__ */ __name((input, context)
|
|
|
6843
6873
|
}
|
|
6844
6874
|
if (input[_RA] != null) {
|
|
6845
6875
|
const memberEntries = se_ResourceNameListType(input[_RA], context);
|
|
6846
|
-
if (
|
|
6876
|
+
if (input[_RA]?.length === 0) {
|
|
6847
6877
|
entries.ResourceArns = [];
|
|
6848
6878
|
}
|
|
6849
6879
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -6862,7 +6892,7 @@ var se_SimulatePrincipalPolicyRequest = /* @__PURE__ */ __name((input, context)
|
|
|
6862
6892
|
}
|
|
6863
6893
|
if (input[_CE] != null) {
|
|
6864
6894
|
const memberEntries = se_ContextEntryListType(input[_CE], context);
|
|
6865
|
-
if (
|
|
6895
|
+
if (input[_CE]?.length === 0) {
|
|
6866
6896
|
entries.ContextEntries = [];
|
|
6867
6897
|
}
|
|
6868
6898
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -6904,14 +6934,13 @@ var se_Tag = /* @__PURE__ */ __name((input, context) => {
|
|
|
6904
6934
|
return entries;
|
|
6905
6935
|
}, "se_Tag");
|
|
6906
6936
|
var se_TagInstanceProfileRequest = /* @__PURE__ */ __name((input, context) => {
|
|
6907
|
-
var _a;
|
|
6908
6937
|
const entries = {};
|
|
6909
6938
|
if (input[_IPN] != null) {
|
|
6910
6939
|
entries[_IPN] = input[_IPN];
|
|
6911
6940
|
}
|
|
6912
6941
|
if (input[_T] != null) {
|
|
6913
6942
|
const memberEntries = se_tagListType(input[_T], context);
|
|
6914
|
-
if (
|
|
6943
|
+
if (input[_T]?.length === 0) {
|
|
6915
6944
|
entries.Tags = [];
|
|
6916
6945
|
}
|
|
6917
6946
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -6949,14 +6978,13 @@ var se_tagListType = /* @__PURE__ */ __name((input, context) => {
|
|
|
6949
6978
|
return entries;
|
|
6950
6979
|
}, "se_tagListType");
|
|
6951
6980
|
var se_TagMFADeviceRequest = /* @__PURE__ */ __name((input, context) => {
|
|
6952
|
-
var _a;
|
|
6953
6981
|
const entries = {};
|
|
6954
6982
|
if (input[_SNe] != null) {
|
|
6955
6983
|
entries[_SNe] = input[_SNe];
|
|
6956
6984
|
}
|
|
6957
6985
|
if (input[_T] != null) {
|
|
6958
6986
|
const memberEntries = se_tagListType(input[_T], context);
|
|
6959
|
-
if (
|
|
6987
|
+
if (input[_T]?.length === 0) {
|
|
6960
6988
|
entries.Tags = [];
|
|
6961
6989
|
}
|
|
6962
6990
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -6967,14 +6995,13 @@ var se_TagMFADeviceRequest = /* @__PURE__ */ __name((input, context) => {
|
|
|
6967
6995
|
return entries;
|
|
6968
6996
|
}, "se_TagMFADeviceRequest");
|
|
6969
6997
|
var se_TagOpenIDConnectProviderRequest = /* @__PURE__ */ __name((input, context) => {
|
|
6970
|
-
var _a;
|
|
6971
6998
|
const entries = {};
|
|
6972
6999
|
if (input[_OIDCPA] != null) {
|
|
6973
7000
|
entries[_OIDCPA] = input[_OIDCPA];
|
|
6974
7001
|
}
|
|
6975
7002
|
if (input[_T] != null) {
|
|
6976
7003
|
const memberEntries = se_tagListType(input[_T], context);
|
|
6977
|
-
if (
|
|
7004
|
+
if (input[_T]?.length === 0) {
|
|
6978
7005
|
entries.Tags = [];
|
|
6979
7006
|
}
|
|
6980
7007
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -6985,14 +7012,13 @@ var se_TagOpenIDConnectProviderRequest = /* @__PURE__ */ __name((input, context)
|
|
|
6985
7012
|
return entries;
|
|
6986
7013
|
}, "se_TagOpenIDConnectProviderRequest");
|
|
6987
7014
|
var se_TagPolicyRequest = /* @__PURE__ */ __name((input, context) => {
|
|
6988
|
-
var _a;
|
|
6989
7015
|
const entries = {};
|
|
6990
7016
|
if (input[_PA] != null) {
|
|
6991
7017
|
entries[_PA] = input[_PA];
|
|
6992
7018
|
}
|
|
6993
7019
|
if (input[_T] != null) {
|
|
6994
7020
|
const memberEntries = se_tagListType(input[_T], context);
|
|
6995
|
-
if (
|
|
7021
|
+
if (input[_T]?.length === 0) {
|
|
6996
7022
|
entries.Tags = [];
|
|
6997
7023
|
}
|
|
6998
7024
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -7003,14 +7029,13 @@ var se_TagPolicyRequest = /* @__PURE__ */ __name((input, context) => {
|
|
|
7003
7029
|
return entries;
|
|
7004
7030
|
}, "se_TagPolicyRequest");
|
|
7005
7031
|
var se_TagRoleRequest = /* @__PURE__ */ __name((input, context) => {
|
|
7006
|
-
var _a;
|
|
7007
7032
|
const entries = {};
|
|
7008
7033
|
if (input[_RN] != null) {
|
|
7009
7034
|
entries[_RN] = input[_RN];
|
|
7010
7035
|
}
|
|
7011
7036
|
if (input[_T] != null) {
|
|
7012
7037
|
const memberEntries = se_tagListType(input[_T], context);
|
|
7013
|
-
if (
|
|
7038
|
+
if (input[_T]?.length === 0) {
|
|
7014
7039
|
entries.Tags = [];
|
|
7015
7040
|
}
|
|
7016
7041
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -7021,14 +7046,13 @@ var se_TagRoleRequest = /* @__PURE__ */ __name((input, context) => {
|
|
|
7021
7046
|
return entries;
|
|
7022
7047
|
}, "se_TagRoleRequest");
|
|
7023
7048
|
var se_TagSAMLProviderRequest = /* @__PURE__ */ __name((input, context) => {
|
|
7024
|
-
var _a;
|
|
7025
7049
|
const entries = {};
|
|
7026
7050
|
if (input[_SAMLPA] != null) {
|
|
7027
7051
|
entries[_SAMLPA] = input[_SAMLPA];
|
|
7028
7052
|
}
|
|
7029
7053
|
if (input[_T] != null) {
|
|
7030
7054
|
const memberEntries = se_tagListType(input[_T], context);
|
|
7031
|
-
if (
|
|
7055
|
+
if (input[_T]?.length === 0) {
|
|
7032
7056
|
entries.Tags = [];
|
|
7033
7057
|
}
|
|
7034
7058
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -7039,14 +7063,13 @@ var se_TagSAMLProviderRequest = /* @__PURE__ */ __name((input, context) => {
|
|
|
7039
7063
|
return entries;
|
|
7040
7064
|
}, "se_TagSAMLProviderRequest");
|
|
7041
7065
|
var se_TagServerCertificateRequest = /* @__PURE__ */ __name((input, context) => {
|
|
7042
|
-
var _a;
|
|
7043
7066
|
const entries = {};
|
|
7044
7067
|
if (input[_SCN] != null) {
|
|
7045
7068
|
entries[_SCN] = input[_SCN];
|
|
7046
7069
|
}
|
|
7047
7070
|
if (input[_T] != null) {
|
|
7048
7071
|
const memberEntries = se_tagListType(input[_T], context);
|
|
7049
|
-
if (
|
|
7072
|
+
if (input[_T]?.length === 0) {
|
|
7050
7073
|
entries.Tags = [];
|
|
7051
7074
|
}
|
|
7052
7075
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -7057,14 +7080,13 @@ var se_TagServerCertificateRequest = /* @__PURE__ */ __name((input, context) =>
|
|
|
7057
7080
|
return entries;
|
|
7058
7081
|
}, "se_TagServerCertificateRequest");
|
|
7059
7082
|
var se_TagUserRequest = /* @__PURE__ */ __name((input, context) => {
|
|
7060
|
-
var _a;
|
|
7061
7083
|
const entries = {};
|
|
7062
7084
|
if (input[_UN] != null) {
|
|
7063
7085
|
entries[_UN] = input[_UN];
|
|
7064
7086
|
}
|
|
7065
7087
|
if (input[_T] != null) {
|
|
7066
7088
|
const memberEntries = se_tagListType(input[_T], context);
|
|
7067
|
-
if (
|
|
7089
|
+
if (input[_T]?.length === 0) {
|
|
7068
7090
|
entries.Tags = [];
|
|
7069
7091
|
}
|
|
7070
7092
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -7087,14 +7109,13 @@ var se_thumbprintListType = /* @__PURE__ */ __name((input, context) => {
|
|
|
7087
7109
|
return entries;
|
|
7088
7110
|
}, "se_thumbprintListType");
|
|
7089
7111
|
var se_UntagInstanceProfileRequest = /* @__PURE__ */ __name((input, context) => {
|
|
7090
|
-
var _a;
|
|
7091
7112
|
const entries = {};
|
|
7092
7113
|
if (input[_IPN] != null) {
|
|
7093
7114
|
entries[_IPN] = input[_IPN];
|
|
7094
7115
|
}
|
|
7095
7116
|
if (input[_TK] != null) {
|
|
7096
7117
|
const memberEntries = se_tagKeyListType(input[_TK], context);
|
|
7097
|
-
if (
|
|
7118
|
+
if (input[_TK]?.length === 0) {
|
|
7098
7119
|
entries.TagKeys = [];
|
|
7099
7120
|
}
|
|
7100
7121
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -7105,14 +7126,13 @@ var se_UntagInstanceProfileRequest = /* @__PURE__ */ __name((input, context) =>
|
|
|
7105
7126
|
return entries;
|
|
7106
7127
|
}, "se_UntagInstanceProfileRequest");
|
|
7107
7128
|
var se_UntagMFADeviceRequest = /* @__PURE__ */ __name((input, context) => {
|
|
7108
|
-
var _a;
|
|
7109
7129
|
const entries = {};
|
|
7110
7130
|
if (input[_SNe] != null) {
|
|
7111
7131
|
entries[_SNe] = input[_SNe];
|
|
7112
7132
|
}
|
|
7113
7133
|
if (input[_TK] != null) {
|
|
7114
7134
|
const memberEntries = se_tagKeyListType(input[_TK], context);
|
|
7115
|
-
if (
|
|
7135
|
+
if (input[_TK]?.length === 0) {
|
|
7116
7136
|
entries.TagKeys = [];
|
|
7117
7137
|
}
|
|
7118
7138
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -7123,14 +7143,13 @@ var se_UntagMFADeviceRequest = /* @__PURE__ */ __name((input, context) => {
|
|
|
7123
7143
|
return entries;
|
|
7124
7144
|
}, "se_UntagMFADeviceRequest");
|
|
7125
7145
|
var se_UntagOpenIDConnectProviderRequest = /* @__PURE__ */ __name((input, context) => {
|
|
7126
|
-
var _a;
|
|
7127
7146
|
const entries = {};
|
|
7128
7147
|
if (input[_OIDCPA] != null) {
|
|
7129
7148
|
entries[_OIDCPA] = input[_OIDCPA];
|
|
7130
7149
|
}
|
|
7131
7150
|
if (input[_TK] != null) {
|
|
7132
7151
|
const memberEntries = se_tagKeyListType(input[_TK], context);
|
|
7133
|
-
if (
|
|
7152
|
+
if (input[_TK]?.length === 0) {
|
|
7134
7153
|
entries.TagKeys = [];
|
|
7135
7154
|
}
|
|
7136
7155
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -7141,14 +7160,13 @@ var se_UntagOpenIDConnectProviderRequest = /* @__PURE__ */ __name((input, contex
|
|
|
7141
7160
|
return entries;
|
|
7142
7161
|
}, "se_UntagOpenIDConnectProviderRequest");
|
|
7143
7162
|
var se_UntagPolicyRequest = /* @__PURE__ */ __name((input, context) => {
|
|
7144
|
-
var _a;
|
|
7145
7163
|
const entries = {};
|
|
7146
7164
|
if (input[_PA] != null) {
|
|
7147
7165
|
entries[_PA] = input[_PA];
|
|
7148
7166
|
}
|
|
7149
7167
|
if (input[_TK] != null) {
|
|
7150
7168
|
const memberEntries = se_tagKeyListType(input[_TK], context);
|
|
7151
|
-
if (
|
|
7169
|
+
if (input[_TK]?.length === 0) {
|
|
7152
7170
|
entries.TagKeys = [];
|
|
7153
7171
|
}
|
|
7154
7172
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -7159,14 +7177,13 @@ var se_UntagPolicyRequest = /* @__PURE__ */ __name((input, context) => {
|
|
|
7159
7177
|
return entries;
|
|
7160
7178
|
}, "se_UntagPolicyRequest");
|
|
7161
7179
|
var se_UntagRoleRequest = /* @__PURE__ */ __name((input, context) => {
|
|
7162
|
-
var _a;
|
|
7163
7180
|
const entries = {};
|
|
7164
7181
|
if (input[_RN] != null) {
|
|
7165
7182
|
entries[_RN] = input[_RN];
|
|
7166
7183
|
}
|
|
7167
7184
|
if (input[_TK] != null) {
|
|
7168
7185
|
const memberEntries = se_tagKeyListType(input[_TK], context);
|
|
7169
|
-
if (
|
|
7186
|
+
if (input[_TK]?.length === 0) {
|
|
7170
7187
|
entries.TagKeys = [];
|
|
7171
7188
|
}
|
|
7172
7189
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -7177,14 +7194,13 @@ var se_UntagRoleRequest = /* @__PURE__ */ __name((input, context) => {
|
|
|
7177
7194
|
return entries;
|
|
7178
7195
|
}, "se_UntagRoleRequest");
|
|
7179
7196
|
var se_UntagSAMLProviderRequest = /* @__PURE__ */ __name((input, context) => {
|
|
7180
|
-
var _a;
|
|
7181
7197
|
const entries = {};
|
|
7182
7198
|
if (input[_SAMLPA] != null) {
|
|
7183
7199
|
entries[_SAMLPA] = input[_SAMLPA];
|
|
7184
7200
|
}
|
|
7185
7201
|
if (input[_TK] != null) {
|
|
7186
7202
|
const memberEntries = se_tagKeyListType(input[_TK], context);
|
|
7187
|
-
if (
|
|
7203
|
+
if (input[_TK]?.length === 0) {
|
|
7188
7204
|
entries.TagKeys = [];
|
|
7189
7205
|
}
|
|
7190
7206
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -7195,14 +7211,13 @@ var se_UntagSAMLProviderRequest = /* @__PURE__ */ __name((input, context) => {
|
|
|
7195
7211
|
return entries;
|
|
7196
7212
|
}, "se_UntagSAMLProviderRequest");
|
|
7197
7213
|
var se_UntagServerCertificateRequest = /* @__PURE__ */ __name((input, context) => {
|
|
7198
|
-
var _a;
|
|
7199
7214
|
const entries = {};
|
|
7200
7215
|
if (input[_SCN] != null) {
|
|
7201
7216
|
entries[_SCN] = input[_SCN];
|
|
7202
7217
|
}
|
|
7203
7218
|
if (input[_TK] != null) {
|
|
7204
7219
|
const memberEntries = se_tagKeyListType(input[_TK], context);
|
|
7205
|
-
if (
|
|
7220
|
+
if (input[_TK]?.length === 0) {
|
|
7206
7221
|
entries.TagKeys = [];
|
|
7207
7222
|
}
|
|
7208
7223
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -7213,14 +7228,13 @@ var se_UntagServerCertificateRequest = /* @__PURE__ */ __name((input, context) =
|
|
|
7213
7228
|
return entries;
|
|
7214
7229
|
}, "se_UntagServerCertificateRequest");
|
|
7215
7230
|
var se_UntagUserRequest = /* @__PURE__ */ __name((input, context) => {
|
|
7216
|
-
var _a;
|
|
7217
7231
|
const entries = {};
|
|
7218
7232
|
if (input[_UN] != null) {
|
|
7219
7233
|
entries[_UN] = input[_UN];
|
|
7220
7234
|
}
|
|
7221
7235
|
if (input[_TK] != null) {
|
|
7222
7236
|
const memberEntries = se_tagKeyListType(input[_TK], context);
|
|
7223
|
-
if (
|
|
7237
|
+
if (input[_TK]?.length === 0) {
|
|
7224
7238
|
entries.TagKeys = [];
|
|
7225
7239
|
}
|
|
7226
7240
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -7311,14 +7325,13 @@ var se_UpdateLoginProfileRequest = /* @__PURE__ */ __name((input, context) => {
|
|
|
7311
7325
|
return entries;
|
|
7312
7326
|
}, "se_UpdateLoginProfileRequest");
|
|
7313
7327
|
var se_UpdateOpenIDConnectProviderThumbprintRequest = /* @__PURE__ */ __name((input, context) => {
|
|
7314
|
-
var _a;
|
|
7315
7328
|
const entries = {};
|
|
7316
7329
|
if (input[_OIDCPA] != null) {
|
|
7317
7330
|
entries[_OIDCPA] = input[_OIDCPA];
|
|
7318
7331
|
}
|
|
7319
7332
|
if (input[_TL] != null) {
|
|
7320
7333
|
const memberEntries = se_thumbprintListType(input[_TL], context);
|
|
7321
|
-
if (
|
|
7334
|
+
if (input[_TL]?.length === 0) {
|
|
7322
7335
|
entries.ThumbprintList = [];
|
|
7323
7336
|
}
|
|
7324
7337
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -7427,7 +7440,6 @@ var se_UpdateUserRequest = /* @__PURE__ */ __name((input, context) => {
|
|
|
7427
7440
|
return entries;
|
|
7428
7441
|
}, "se_UpdateUserRequest");
|
|
7429
7442
|
var se_UploadServerCertificateRequest = /* @__PURE__ */ __name((input, context) => {
|
|
7430
|
-
var _a;
|
|
7431
7443
|
const entries = {};
|
|
7432
7444
|
if (input[_P] != null) {
|
|
7433
7445
|
entries[_P] = input[_P];
|
|
@@ -7446,7 +7458,7 @@ var se_UploadServerCertificateRequest = /* @__PURE__ */ __name((input, context)
|
|
|
7446
7458
|
}
|
|
7447
7459
|
if (input[_T] != null) {
|
|
7448
7460
|
const memberEntries = se_tagListType(input[_T], context);
|
|
7449
|
-
if (
|
|
7461
|
+
if (input[_T]?.length === 0) {
|
|
7450
7462
|
entries.Tags = [];
|
|
7451
7463
|
}
|
|
7452
7464
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -10476,8 +10488,7 @@ var _m = "message";
|
|
|
10476
10488
|
var _me = "member";
|
|
10477
10489
|
var buildFormUrlencodedString = /* @__PURE__ */ __name((formEntries) => Object.entries(formEntries).map(([key, value]) => (0, import_smithy_client.extendedEncodeURIComponent)(key) + "=" + (0, import_smithy_client.extendedEncodeURIComponent)(value)).join("&"), "buildFormUrlencodedString");
|
|
10478
10490
|
var loadQueryErrorCode = /* @__PURE__ */ __name((output, data) => {
|
|
10479
|
-
|
|
10480
|
-
if (((_a = data.Error) == null ? void 0 : _a.Code) !== void 0) {
|
|
10491
|
+
if (data.Error?.Code !== void 0) {
|
|
10481
10492
|
return data.Error.Code;
|
|
10482
10493
|
}
|
|
10483
10494
|
if (output.statusCode == 404) {
|
|
@@ -10486,2297 +10497,2461 @@ var loadQueryErrorCode = /* @__PURE__ */ __name((output, data) => {
|
|
|
10486
10497
|
}, "loadQueryErrorCode");
|
|
10487
10498
|
|
|
10488
10499
|
// src/commands/AddClientIDToOpenIDConnectProviderCommand.ts
|
|
10489
|
-
var
|
|
10500
|
+
var AddClientIDToOpenIDConnectProviderCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
10490
10501
|
return [
|
|
10491
10502
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
10492
10503
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
10493
10504
|
];
|
|
10494
10505
|
}).s("AWSIdentityManagementV20100508", "AddClientIDToOpenIDConnectProvider", {}).n("IAMClient", "AddClientIDToOpenIDConnectProviderCommand").f(void 0, void 0).ser(se_AddClientIDToOpenIDConnectProviderCommand).de(de_AddClientIDToOpenIDConnectProviderCommand).build() {
|
|
10506
|
+
static {
|
|
10507
|
+
__name(this, "AddClientIDToOpenIDConnectProviderCommand");
|
|
10508
|
+
}
|
|
10495
10509
|
};
|
|
10496
|
-
__name(_AddClientIDToOpenIDConnectProviderCommand, "AddClientIDToOpenIDConnectProviderCommand");
|
|
10497
|
-
var AddClientIDToOpenIDConnectProviderCommand = _AddClientIDToOpenIDConnectProviderCommand;
|
|
10498
10510
|
|
|
10499
10511
|
// src/commands/AddRoleToInstanceProfileCommand.ts
|
|
10500
10512
|
|
|
10501
10513
|
|
|
10502
10514
|
|
|
10503
|
-
var
|
|
10515
|
+
var AddRoleToInstanceProfileCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
10504
10516
|
return [
|
|
10505
10517
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
10506
10518
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
10507
10519
|
];
|
|
10508
10520
|
}).s("AWSIdentityManagementV20100508", "AddRoleToInstanceProfile", {}).n("IAMClient", "AddRoleToInstanceProfileCommand").f(void 0, void 0).ser(se_AddRoleToInstanceProfileCommand).de(de_AddRoleToInstanceProfileCommand).build() {
|
|
10521
|
+
static {
|
|
10522
|
+
__name(this, "AddRoleToInstanceProfileCommand");
|
|
10523
|
+
}
|
|
10509
10524
|
};
|
|
10510
|
-
__name(_AddRoleToInstanceProfileCommand, "AddRoleToInstanceProfileCommand");
|
|
10511
|
-
var AddRoleToInstanceProfileCommand = _AddRoleToInstanceProfileCommand;
|
|
10512
10525
|
|
|
10513
10526
|
// src/commands/AddUserToGroupCommand.ts
|
|
10514
10527
|
|
|
10515
10528
|
|
|
10516
10529
|
|
|
10517
|
-
var
|
|
10530
|
+
var AddUserToGroupCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
10518
10531
|
return [
|
|
10519
10532
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
10520
10533
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
10521
10534
|
];
|
|
10522
10535
|
}).s("AWSIdentityManagementV20100508", "AddUserToGroup", {}).n("IAMClient", "AddUserToGroupCommand").f(void 0, void 0).ser(se_AddUserToGroupCommand).de(de_AddUserToGroupCommand).build() {
|
|
10536
|
+
static {
|
|
10537
|
+
__name(this, "AddUserToGroupCommand");
|
|
10538
|
+
}
|
|
10523
10539
|
};
|
|
10524
|
-
__name(_AddUserToGroupCommand, "AddUserToGroupCommand");
|
|
10525
|
-
var AddUserToGroupCommand = _AddUserToGroupCommand;
|
|
10526
10540
|
|
|
10527
10541
|
// src/commands/AttachGroupPolicyCommand.ts
|
|
10528
10542
|
|
|
10529
10543
|
|
|
10530
10544
|
|
|
10531
|
-
var
|
|
10545
|
+
var AttachGroupPolicyCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
10532
10546
|
return [
|
|
10533
10547
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
10534
10548
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
10535
10549
|
];
|
|
10536
10550
|
}).s("AWSIdentityManagementV20100508", "AttachGroupPolicy", {}).n("IAMClient", "AttachGroupPolicyCommand").f(void 0, void 0).ser(se_AttachGroupPolicyCommand).de(de_AttachGroupPolicyCommand).build() {
|
|
10551
|
+
static {
|
|
10552
|
+
__name(this, "AttachGroupPolicyCommand");
|
|
10553
|
+
}
|
|
10537
10554
|
};
|
|
10538
|
-
__name(_AttachGroupPolicyCommand, "AttachGroupPolicyCommand");
|
|
10539
|
-
var AttachGroupPolicyCommand = _AttachGroupPolicyCommand;
|
|
10540
10555
|
|
|
10541
10556
|
// src/commands/AttachRolePolicyCommand.ts
|
|
10542
10557
|
|
|
10543
10558
|
|
|
10544
10559
|
|
|
10545
|
-
var
|
|
10560
|
+
var AttachRolePolicyCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
10546
10561
|
return [
|
|
10547
10562
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
10548
10563
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
10549
10564
|
];
|
|
10550
10565
|
}).s("AWSIdentityManagementV20100508", "AttachRolePolicy", {}).n("IAMClient", "AttachRolePolicyCommand").f(void 0, void 0).ser(se_AttachRolePolicyCommand).de(de_AttachRolePolicyCommand).build() {
|
|
10566
|
+
static {
|
|
10567
|
+
__name(this, "AttachRolePolicyCommand");
|
|
10568
|
+
}
|
|
10551
10569
|
};
|
|
10552
|
-
__name(_AttachRolePolicyCommand, "AttachRolePolicyCommand");
|
|
10553
|
-
var AttachRolePolicyCommand = _AttachRolePolicyCommand;
|
|
10554
10570
|
|
|
10555
10571
|
// src/commands/AttachUserPolicyCommand.ts
|
|
10556
10572
|
|
|
10557
10573
|
|
|
10558
10574
|
|
|
10559
|
-
var
|
|
10575
|
+
var AttachUserPolicyCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
10560
10576
|
return [
|
|
10561
10577
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
10562
10578
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
10563
10579
|
];
|
|
10564
10580
|
}).s("AWSIdentityManagementV20100508", "AttachUserPolicy", {}).n("IAMClient", "AttachUserPolicyCommand").f(void 0, void 0).ser(se_AttachUserPolicyCommand).de(de_AttachUserPolicyCommand).build() {
|
|
10581
|
+
static {
|
|
10582
|
+
__name(this, "AttachUserPolicyCommand");
|
|
10583
|
+
}
|
|
10565
10584
|
};
|
|
10566
|
-
__name(_AttachUserPolicyCommand, "AttachUserPolicyCommand");
|
|
10567
|
-
var AttachUserPolicyCommand = _AttachUserPolicyCommand;
|
|
10568
10585
|
|
|
10569
10586
|
// src/commands/ChangePasswordCommand.ts
|
|
10570
10587
|
|
|
10571
10588
|
|
|
10572
10589
|
|
|
10573
|
-
var
|
|
10590
|
+
var ChangePasswordCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
10574
10591
|
return [
|
|
10575
10592
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
10576
10593
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
10577
10594
|
];
|
|
10578
10595
|
}).s("AWSIdentityManagementV20100508", "ChangePassword", {}).n("IAMClient", "ChangePasswordCommand").f(ChangePasswordRequestFilterSensitiveLog, void 0).ser(se_ChangePasswordCommand).de(de_ChangePasswordCommand).build() {
|
|
10596
|
+
static {
|
|
10597
|
+
__name(this, "ChangePasswordCommand");
|
|
10598
|
+
}
|
|
10579
10599
|
};
|
|
10580
|
-
__name(_ChangePasswordCommand, "ChangePasswordCommand");
|
|
10581
|
-
var ChangePasswordCommand = _ChangePasswordCommand;
|
|
10582
10600
|
|
|
10583
10601
|
// src/commands/CreateAccessKeyCommand.ts
|
|
10584
10602
|
|
|
10585
10603
|
|
|
10586
10604
|
|
|
10587
|
-
var
|
|
10605
|
+
var CreateAccessKeyCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
10588
10606
|
return [
|
|
10589
10607
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
10590
10608
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
10591
10609
|
];
|
|
10592
10610
|
}).s("AWSIdentityManagementV20100508", "CreateAccessKey", {}).n("IAMClient", "CreateAccessKeyCommand").f(void 0, CreateAccessKeyResponseFilterSensitiveLog).ser(se_CreateAccessKeyCommand).de(de_CreateAccessKeyCommand).build() {
|
|
10611
|
+
static {
|
|
10612
|
+
__name(this, "CreateAccessKeyCommand");
|
|
10613
|
+
}
|
|
10593
10614
|
};
|
|
10594
|
-
__name(_CreateAccessKeyCommand, "CreateAccessKeyCommand");
|
|
10595
|
-
var CreateAccessKeyCommand = _CreateAccessKeyCommand;
|
|
10596
10615
|
|
|
10597
10616
|
// src/commands/CreateAccountAliasCommand.ts
|
|
10598
10617
|
|
|
10599
10618
|
|
|
10600
10619
|
|
|
10601
|
-
var
|
|
10620
|
+
var CreateAccountAliasCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
10602
10621
|
return [
|
|
10603
10622
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
10604
10623
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
10605
10624
|
];
|
|
10606
10625
|
}).s("AWSIdentityManagementV20100508", "CreateAccountAlias", {}).n("IAMClient", "CreateAccountAliasCommand").f(void 0, void 0).ser(se_CreateAccountAliasCommand).de(de_CreateAccountAliasCommand).build() {
|
|
10626
|
+
static {
|
|
10627
|
+
__name(this, "CreateAccountAliasCommand");
|
|
10628
|
+
}
|
|
10607
10629
|
};
|
|
10608
|
-
__name(_CreateAccountAliasCommand, "CreateAccountAliasCommand");
|
|
10609
|
-
var CreateAccountAliasCommand = _CreateAccountAliasCommand;
|
|
10610
10630
|
|
|
10611
10631
|
// src/commands/CreateGroupCommand.ts
|
|
10612
10632
|
|
|
10613
10633
|
|
|
10614
10634
|
|
|
10615
|
-
var
|
|
10635
|
+
var CreateGroupCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
10616
10636
|
return [
|
|
10617
10637
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
10618
10638
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
10619
10639
|
];
|
|
10620
10640
|
}).s("AWSIdentityManagementV20100508", "CreateGroup", {}).n("IAMClient", "CreateGroupCommand").f(void 0, void 0).ser(se_CreateGroupCommand).de(de_CreateGroupCommand).build() {
|
|
10641
|
+
static {
|
|
10642
|
+
__name(this, "CreateGroupCommand");
|
|
10643
|
+
}
|
|
10621
10644
|
};
|
|
10622
|
-
__name(_CreateGroupCommand, "CreateGroupCommand");
|
|
10623
|
-
var CreateGroupCommand = _CreateGroupCommand;
|
|
10624
10645
|
|
|
10625
10646
|
// src/commands/CreateInstanceProfileCommand.ts
|
|
10626
10647
|
|
|
10627
10648
|
|
|
10628
10649
|
|
|
10629
|
-
var
|
|
10650
|
+
var CreateInstanceProfileCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
10630
10651
|
return [
|
|
10631
10652
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
10632
10653
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
10633
10654
|
];
|
|
10634
10655
|
}).s("AWSIdentityManagementV20100508", "CreateInstanceProfile", {}).n("IAMClient", "CreateInstanceProfileCommand").f(void 0, void 0).ser(se_CreateInstanceProfileCommand).de(de_CreateInstanceProfileCommand).build() {
|
|
10656
|
+
static {
|
|
10657
|
+
__name(this, "CreateInstanceProfileCommand");
|
|
10658
|
+
}
|
|
10635
10659
|
};
|
|
10636
|
-
__name(_CreateInstanceProfileCommand, "CreateInstanceProfileCommand");
|
|
10637
|
-
var CreateInstanceProfileCommand = _CreateInstanceProfileCommand;
|
|
10638
10660
|
|
|
10639
10661
|
// src/commands/CreateLoginProfileCommand.ts
|
|
10640
10662
|
|
|
10641
10663
|
|
|
10642
10664
|
|
|
10643
|
-
var
|
|
10665
|
+
var CreateLoginProfileCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
10644
10666
|
return [
|
|
10645
10667
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
10646
10668
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
10647
10669
|
];
|
|
10648
10670
|
}).s("AWSIdentityManagementV20100508", "CreateLoginProfile", {}).n("IAMClient", "CreateLoginProfileCommand").f(CreateLoginProfileRequestFilterSensitiveLog, void 0).ser(se_CreateLoginProfileCommand).de(de_CreateLoginProfileCommand).build() {
|
|
10671
|
+
static {
|
|
10672
|
+
__name(this, "CreateLoginProfileCommand");
|
|
10673
|
+
}
|
|
10649
10674
|
};
|
|
10650
|
-
__name(_CreateLoginProfileCommand, "CreateLoginProfileCommand");
|
|
10651
|
-
var CreateLoginProfileCommand = _CreateLoginProfileCommand;
|
|
10652
10675
|
|
|
10653
10676
|
// src/commands/CreateOpenIDConnectProviderCommand.ts
|
|
10654
10677
|
|
|
10655
10678
|
|
|
10656
10679
|
|
|
10657
|
-
var
|
|
10680
|
+
var CreateOpenIDConnectProviderCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
10658
10681
|
return [
|
|
10659
10682
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
10660
10683
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
10661
10684
|
];
|
|
10662
10685
|
}).s("AWSIdentityManagementV20100508", "CreateOpenIDConnectProvider", {}).n("IAMClient", "CreateOpenIDConnectProviderCommand").f(void 0, void 0).ser(se_CreateOpenIDConnectProviderCommand).de(de_CreateOpenIDConnectProviderCommand).build() {
|
|
10686
|
+
static {
|
|
10687
|
+
__name(this, "CreateOpenIDConnectProviderCommand");
|
|
10688
|
+
}
|
|
10663
10689
|
};
|
|
10664
|
-
__name(_CreateOpenIDConnectProviderCommand, "CreateOpenIDConnectProviderCommand");
|
|
10665
|
-
var CreateOpenIDConnectProviderCommand = _CreateOpenIDConnectProviderCommand;
|
|
10666
10690
|
|
|
10667
10691
|
// src/commands/CreatePolicyCommand.ts
|
|
10668
10692
|
|
|
10669
10693
|
|
|
10670
10694
|
|
|
10671
|
-
var
|
|
10695
|
+
var CreatePolicyCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
10672
10696
|
return [
|
|
10673
10697
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
10674
10698
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
10675
10699
|
];
|
|
10676
10700
|
}).s("AWSIdentityManagementV20100508", "CreatePolicy", {}).n("IAMClient", "CreatePolicyCommand").f(void 0, void 0).ser(se_CreatePolicyCommand).de(de_CreatePolicyCommand).build() {
|
|
10701
|
+
static {
|
|
10702
|
+
__name(this, "CreatePolicyCommand");
|
|
10703
|
+
}
|
|
10677
10704
|
};
|
|
10678
|
-
__name(_CreatePolicyCommand, "CreatePolicyCommand");
|
|
10679
|
-
var CreatePolicyCommand = _CreatePolicyCommand;
|
|
10680
10705
|
|
|
10681
10706
|
// src/commands/CreatePolicyVersionCommand.ts
|
|
10682
10707
|
|
|
10683
10708
|
|
|
10684
10709
|
|
|
10685
|
-
var
|
|
10710
|
+
var CreatePolicyVersionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
10686
10711
|
return [
|
|
10687
10712
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
10688
10713
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
10689
10714
|
];
|
|
10690
10715
|
}).s("AWSIdentityManagementV20100508", "CreatePolicyVersion", {}).n("IAMClient", "CreatePolicyVersionCommand").f(void 0, void 0).ser(se_CreatePolicyVersionCommand).de(de_CreatePolicyVersionCommand).build() {
|
|
10716
|
+
static {
|
|
10717
|
+
__name(this, "CreatePolicyVersionCommand");
|
|
10718
|
+
}
|
|
10691
10719
|
};
|
|
10692
|
-
__name(_CreatePolicyVersionCommand, "CreatePolicyVersionCommand");
|
|
10693
|
-
var CreatePolicyVersionCommand = _CreatePolicyVersionCommand;
|
|
10694
10720
|
|
|
10695
10721
|
// src/commands/CreateRoleCommand.ts
|
|
10696
10722
|
|
|
10697
10723
|
|
|
10698
10724
|
|
|
10699
|
-
var
|
|
10725
|
+
var CreateRoleCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
10700
10726
|
return [
|
|
10701
10727
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
10702
10728
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
10703
10729
|
];
|
|
10704
10730
|
}).s("AWSIdentityManagementV20100508", "CreateRole", {}).n("IAMClient", "CreateRoleCommand").f(void 0, void 0).ser(se_CreateRoleCommand).de(de_CreateRoleCommand).build() {
|
|
10731
|
+
static {
|
|
10732
|
+
__name(this, "CreateRoleCommand");
|
|
10733
|
+
}
|
|
10705
10734
|
};
|
|
10706
|
-
__name(_CreateRoleCommand, "CreateRoleCommand");
|
|
10707
|
-
var CreateRoleCommand = _CreateRoleCommand;
|
|
10708
10735
|
|
|
10709
10736
|
// src/commands/CreateSAMLProviderCommand.ts
|
|
10710
10737
|
|
|
10711
10738
|
|
|
10712
10739
|
|
|
10713
|
-
var
|
|
10740
|
+
var CreateSAMLProviderCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
10714
10741
|
return [
|
|
10715
10742
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
10716
10743
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
10717
10744
|
];
|
|
10718
10745
|
}).s("AWSIdentityManagementV20100508", "CreateSAMLProvider", {}).n("IAMClient", "CreateSAMLProviderCommand").f(void 0, void 0).ser(se_CreateSAMLProviderCommand).de(de_CreateSAMLProviderCommand).build() {
|
|
10746
|
+
static {
|
|
10747
|
+
__name(this, "CreateSAMLProviderCommand");
|
|
10748
|
+
}
|
|
10719
10749
|
};
|
|
10720
|
-
__name(_CreateSAMLProviderCommand, "CreateSAMLProviderCommand");
|
|
10721
|
-
var CreateSAMLProviderCommand = _CreateSAMLProviderCommand;
|
|
10722
10750
|
|
|
10723
10751
|
// src/commands/CreateServiceLinkedRoleCommand.ts
|
|
10724
10752
|
|
|
10725
10753
|
|
|
10726
10754
|
|
|
10727
|
-
var
|
|
10755
|
+
var CreateServiceLinkedRoleCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
10728
10756
|
return [
|
|
10729
10757
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
10730
10758
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
10731
10759
|
];
|
|
10732
10760
|
}).s("AWSIdentityManagementV20100508", "CreateServiceLinkedRole", {}).n("IAMClient", "CreateServiceLinkedRoleCommand").f(void 0, void 0).ser(se_CreateServiceLinkedRoleCommand).de(de_CreateServiceLinkedRoleCommand).build() {
|
|
10761
|
+
static {
|
|
10762
|
+
__name(this, "CreateServiceLinkedRoleCommand");
|
|
10763
|
+
}
|
|
10733
10764
|
};
|
|
10734
|
-
__name(_CreateServiceLinkedRoleCommand, "CreateServiceLinkedRoleCommand");
|
|
10735
|
-
var CreateServiceLinkedRoleCommand = _CreateServiceLinkedRoleCommand;
|
|
10736
10765
|
|
|
10737
10766
|
// src/commands/CreateServiceSpecificCredentialCommand.ts
|
|
10738
10767
|
|
|
10739
10768
|
|
|
10740
10769
|
|
|
10741
|
-
var
|
|
10770
|
+
var CreateServiceSpecificCredentialCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
10742
10771
|
return [
|
|
10743
10772
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
10744
10773
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
10745
10774
|
];
|
|
10746
10775
|
}).s("AWSIdentityManagementV20100508", "CreateServiceSpecificCredential", {}).n("IAMClient", "CreateServiceSpecificCredentialCommand").f(void 0, CreateServiceSpecificCredentialResponseFilterSensitiveLog).ser(se_CreateServiceSpecificCredentialCommand).de(de_CreateServiceSpecificCredentialCommand).build() {
|
|
10776
|
+
static {
|
|
10777
|
+
__name(this, "CreateServiceSpecificCredentialCommand");
|
|
10778
|
+
}
|
|
10747
10779
|
};
|
|
10748
|
-
__name(_CreateServiceSpecificCredentialCommand, "CreateServiceSpecificCredentialCommand");
|
|
10749
|
-
var CreateServiceSpecificCredentialCommand = _CreateServiceSpecificCredentialCommand;
|
|
10750
10780
|
|
|
10751
10781
|
// src/commands/CreateUserCommand.ts
|
|
10752
10782
|
|
|
10753
10783
|
|
|
10754
10784
|
|
|
10755
|
-
var
|
|
10785
|
+
var CreateUserCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
10756
10786
|
return [
|
|
10757
10787
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
10758
10788
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
10759
10789
|
];
|
|
10760
10790
|
}).s("AWSIdentityManagementV20100508", "CreateUser", {}).n("IAMClient", "CreateUserCommand").f(void 0, void 0).ser(se_CreateUserCommand).de(de_CreateUserCommand).build() {
|
|
10791
|
+
static {
|
|
10792
|
+
__name(this, "CreateUserCommand");
|
|
10793
|
+
}
|
|
10761
10794
|
};
|
|
10762
|
-
__name(_CreateUserCommand, "CreateUserCommand");
|
|
10763
|
-
var CreateUserCommand = _CreateUserCommand;
|
|
10764
10795
|
|
|
10765
10796
|
// src/commands/CreateVirtualMFADeviceCommand.ts
|
|
10766
10797
|
|
|
10767
10798
|
|
|
10768
10799
|
|
|
10769
|
-
var
|
|
10800
|
+
var CreateVirtualMFADeviceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
10770
10801
|
return [
|
|
10771
10802
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
10772
10803
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
10773
10804
|
];
|
|
10774
10805
|
}).s("AWSIdentityManagementV20100508", "CreateVirtualMFADevice", {}).n("IAMClient", "CreateVirtualMFADeviceCommand").f(void 0, CreateVirtualMFADeviceResponseFilterSensitiveLog).ser(se_CreateVirtualMFADeviceCommand).de(de_CreateVirtualMFADeviceCommand).build() {
|
|
10806
|
+
static {
|
|
10807
|
+
__name(this, "CreateVirtualMFADeviceCommand");
|
|
10808
|
+
}
|
|
10775
10809
|
};
|
|
10776
|
-
__name(_CreateVirtualMFADeviceCommand, "CreateVirtualMFADeviceCommand");
|
|
10777
|
-
var CreateVirtualMFADeviceCommand = _CreateVirtualMFADeviceCommand;
|
|
10778
10810
|
|
|
10779
10811
|
// src/commands/DeactivateMFADeviceCommand.ts
|
|
10780
10812
|
|
|
10781
10813
|
|
|
10782
10814
|
|
|
10783
|
-
var
|
|
10815
|
+
var DeactivateMFADeviceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
10784
10816
|
return [
|
|
10785
10817
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
10786
10818
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
10787
10819
|
];
|
|
10788
10820
|
}).s("AWSIdentityManagementV20100508", "DeactivateMFADevice", {}).n("IAMClient", "DeactivateMFADeviceCommand").f(void 0, void 0).ser(se_DeactivateMFADeviceCommand).de(de_DeactivateMFADeviceCommand).build() {
|
|
10821
|
+
static {
|
|
10822
|
+
__name(this, "DeactivateMFADeviceCommand");
|
|
10823
|
+
}
|
|
10789
10824
|
};
|
|
10790
|
-
__name(_DeactivateMFADeviceCommand, "DeactivateMFADeviceCommand");
|
|
10791
|
-
var DeactivateMFADeviceCommand = _DeactivateMFADeviceCommand;
|
|
10792
10825
|
|
|
10793
10826
|
// src/commands/DeleteAccessKeyCommand.ts
|
|
10794
10827
|
|
|
10795
10828
|
|
|
10796
10829
|
|
|
10797
|
-
var
|
|
10830
|
+
var DeleteAccessKeyCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
10798
10831
|
return [
|
|
10799
10832
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
10800
10833
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
10801
10834
|
];
|
|
10802
10835
|
}).s("AWSIdentityManagementV20100508", "DeleteAccessKey", {}).n("IAMClient", "DeleteAccessKeyCommand").f(void 0, void 0).ser(se_DeleteAccessKeyCommand).de(de_DeleteAccessKeyCommand).build() {
|
|
10836
|
+
static {
|
|
10837
|
+
__name(this, "DeleteAccessKeyCommand");
|
|
10838
|
+
}
|
|
10803
10839
|
};
|
|
10804
|
-
__name(_DeleteAccessKeyCommand, "DeleteAccessKeyCommand");
|
|
10805
|
-
var DeleteAccessKeyCommand = _DeleteAccessKeyCommand;
|
|
10806
10840
|
|
|
10807
10841
|
// src/commands/DeleteAccountAliasCommand.ts
|
|
10808
10842
|
|
|
10809
10843
|
|
|
10810
10844
|
|
|
10811
|
-
var
|
|
10845
|
+
var DeleteAccountAliasCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
10812
10846
|
return [
|
|
10813
10847
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
10814
10848
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
10815
10849
|
];
|
|
10816
10850
|
}).s("AWSIdentityManagementV20100508", "DeleteAccountAlias", {}).n("IAMClient", "DeleteAccountAliasCommand").f(void 0, void 0).ser(se_DeleteAccountAliasCommand).de(de_DeleteAccountAliasCommand).build() {
|
|
10851
|
+
static {
|
|
10852
|
+
__name(this, "DeleteAccountAliasCommand");
|
|
10853
|
+
}
|
|
10817
10854
|
};
|
|
10818
|
-
__name(_DeleteAccountAliasCommand, "DeleteAccountAliasCommand");
|
|
10819
|
-
var DeleteAccountAliasCommand = _DeleteAccountAliasCommand;
|
|
10820
10855
|
|
|
10821
10856
|
// src/commands/DeleteAccountPasswordPolicyCommand.ts
|
|
10822
10857
|
|
|
10823
10858
|
|
|
10824
10859
|
|
|
10825
|
-
var
|
|
10860
|
+
var DeleteAccountPasswordPolicyCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
10826
10861
|
return [
|
|
10827
10862
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
10828
10863
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
10829
10864
|
];
|
|
10830
10865
|
}).s("AWSIdentityManagementV20100508", "DeleteAccountPasswordPolicy", {}).n("IAMClient", "DeleteAccountPasswordPolicyCommand").f(void 0, void 0).ser(se_DeleteAccountPasswordPolicyCommand).de(de_DeleteAccountPasswordPolicyCommand).build() {
|
|
10866
|
+
static {
|
|
10867
|
+
__name(this, "DeleteAccountPasswordPolicyCommand");
|
|
10868
|
+
}
|
|
10831
10869
|
};
|
|
10832
|
-
__name(_DeleteAccountPasswordPolicyCommand, "DeleteAccountPasswordPolicyCommand");
|
|
10833
|
-
var DeleteAccountPasswordPolicyCommand = _DeleteAccountPasswordPolicyCommand;
|
|
10834
10870
|
|
|
10835
10871
|
// src/commands/DeleteGroupCommand.ts
|
|
10836
10872
|
|
|
10837
10873
|
|
|
10838
10874
|
|
|
10839
|
-
var
|
|
10875
|
+
var DeleteGroupCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
10840
10876
|
return [
|
|
10841
10877
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
10842
10878
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
10843
10879
|
];
|
|
10844
10880
|
}).s("AWSIdentityManagementV20100508", "DeleteGroup", {}).n("IAMClient", "DeleteGroupCommand").f(void 0, void 0).ser(se_DeleteGroupCommand).de(de_DeleteGroupCommand).build() {
|
|
10881
|
+
static {
|
|
10882
|
+
__name(this, "DeleteGroupCommand");
|
|
10883
|
+
}
|
|
10845
10884
|
};
|
|
10846
|
-
__name(_DeleteGroupCommand, "DeleteGroupCommand");
|
|
10847
|
-
var DeleteGroupCommand = _DeleteGroupCommand;
|
|
10848
10885
|
|
|
10849
10886
|
// src/commands/DeleteGroupPolicyCommand.ts
|
|
10850
10887
|
|
|
10851
10888
|
|
|
10852
10889
|
|
|
10853
|
-
var
|
|
10890
|
+
var DeleteGroupPolicyCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
10854
10891
|
return [
|
|
10855
10892
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
10856
10893
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
10857
10894
|
];
|
|
10858
10895
|
}).s("AWSIdentityManagementV20100508", "DeleteGroupPolicy", {}).n("IAMClient", "DeleteGroupPolicyCommand").f(void 0, void 0).ser(se_DeleteGroupPolicyCommand).de(de_DeleteGroupPolicyCommand).build() {
|
|
10896
|
+
static {
|
|
10897
|
+
__name(this, "DeleteGroupPolicyCommand");
|
|
10898
|
+
}
|
|
10859
10899
|
};
|
|
10860
|
-
__name(_DeleteGroupPolicyCommand, "DeleteGroupPolicyCommand");
|
|
10861
|
-
var DeleteGroupPolicyCommand = _DeleteGroupPolicyCommand;
|
|
10862
10900
|
|
|
10863
10901
|
// src/commands/DeleteInstanceProfileCommand.ts
|
|
10864
10902
|
|
|
10865
10903
|
|
|
10866
10904
|
|
|
10867
|
-
var
|
|
10905
|
+
var DeleteInstanceProfileCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
10868
10906
|
return [
|
|
10869
10907
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
10870
10908
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
10871
10909
|
];
|
|
10872
10910
|
}).s("AWSIdentityManagementV20100508", "DeleteInstanceProfile", {}).n("IAMClient", "DeleteInstanceProfileCommand").f(void 0, void 0).ser(se_DeleteInstanceProfileCommand).de(de_DeleteInstanceProfileCommand).build() {
|
|
10911
|
+
static {
|
|
10912
|
+
__name(this, "DeleteInstanceProfileCommand");
|
|
10913
|
+
}
|
|
10873
10914
|
};
|
|
10874
|
-
__name(_DeleteInstanceProfileCommand, "DeleteInstanceProfileCommand");
|
|
10875
|
-
var DeleteInstanceProfileCommand = _DeleteInstanceProfileCommand;
|
|
10876
10915
|
|
|
10877
10916
|
// src/commands/DeleteLoginProfileCommand.ts
|
|
10878
10917
|
|
|
10879
10918
|
|
|
10880
10919
|
|
|
10881
|
-
var
|
|
10920
|
+
var DeleteLoginProfileCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
10882
10921
|
return [
|
|
10883
10922
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
10884
10923
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
10885
10924
|
];
|
|
10886
10925
|
}).s("AWSIdentityManagementV20100508", "DeleteLoginProfile", {}).n("IAMClient", "DeleteLoginProfileCommand").f(void 0, void 0).ser(se_DeleteLoginProfileCommand).de(de_DeleteLoginProfileCommand).build() {
|
|
10926
|
+
static {
|
|
10927
|
+
__name(this, "DeleteLoginProfileCommand");
|
|
10928
|
+
}
|
|
10887
10929
|
};
|
|
10888
|
-
__name(_DeleteLoginProfileCommand, "DeleteLoginProfileCommand");
|
|
10889
|
-
var DeleteLoginProfileCommand = _DeleteLoginProfileCommand;
|
|
10890
10930
|
|
|
10891
10931
|
// src/commands/DeleteOpenIDConnectProviderCommand.ts
|
|
10892
10932
|
|
|
10893
10933
|
|
|
10894
10934
|
|
|
10895
|
-
var
|
|
10935
|
+
var DeleteOpenIDConnectProviderCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
10896
10936
|
return [
|
|
10897
10937
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
10898
10938
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
10899
10939
|
];
|
|
10900
10940
|
}).s("AWSIdentityManagementV20100508", "DeleteOpenIDConnectProvider", {}).n("IAMClient", "DeleteOpenIDConnectProviderCommand").f(void 0, void 0).ser(se_DeleteOpenIDConnectProviderCommand).de(de_DeleteOpenIDConnectProviderCommand).build() {
|
|
10941
|
+
static {
|
|
10942
|
+
__name(this, "DeleteOpenIDConnectProviderCommand");
|
|
10943
|
+
}
|
|
10901
10944
|
};
|
|
10902
|
-
__name(_DeleteOpenIDConnectProviderCommand, "DeleteOpenIDConnectProviderCommand");
|
|
10903
|
-
var DeleteOpenIDConnectProviderCommand = _DeleteOpenIDConnectProviderCommand;
|
|
10904
10945
|
|
|
10905
10946
|
// src/commands/DeletePolicyCommand.ts
|
|
10906
10947
|
|
|
10907
10948
|
|
|
10908
10949
|
|
|
10909
|
-
var
|
|
10950
|
+
var DeletePolicyCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
10910
10951
|
return [
|
|
10911
10952
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
10912
10953
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
10913
10954
|
];
|
|
10914
10955
|
}).s("AWSIdentityManagementV20100508", "DeletePolicy", {}).n("IAMClient", "DeletePolicyCommand").f(void 0, void 0).ser(se_DeletePolicyCommand).de(de_DeletePolicyCommand).build() {
|
|
10956
|
+
static {
|
|
10957
|
+
__name(this, "DeletePolicyCommand");
|
|
10958
|
+
}
|
|
10915
10959
|
};
|
|
10916
|
-
__name(_DeletePolicyCommand, "DeletePolicyCommand");
|
|
10917
|
-
var DeletePolicyCommand = _DeletePolicyCommand;
|
|
10918
10960
|
|
|
10919
10961
|
// src/commands/DeletePolicyVersionCommand.ts
|
|
10920
10962
|
|
|
10921
10963
|
|
|
10922
10964
|
|
|
10923
|
-
var
|
|
10965
|
+
var DeletePolicyVersionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
10924
10966
|
return [
|
|
10925
10967
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
10926
10968
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
10927
10969
|
];
|
|
10928
10970
|
}).s("AWSIdentityManagementV20100508", "DeletePolicyVersion", {}).n("IAMClient", "DeletePolicyVersionCommand").f(void 0, void 0).ser(se_DeletePolicyVersionCommand).de(de_DeletePolicyVersionCommand).build() {
|
|
10971
|
+
static {
|
|
10972
|
+
__name(this, "DeletePolicyVersionCommand");
|
|
10973
|
+
}
|
|
10929
10974
|
};
|
|
10930
|
-
__name(_DeletePolicyVersionCommand, "DeletePolicyVersionCommand");
|
|
10931
|
-
var DeletePolicyVersionCommand = _DeletePolicyVersionCommand;
|
|
10932
10975
|
|
|
10933
10976
|
// src/commands/DeleteRoleCommand.ts
|
|
10934
10977
|
|
|
10935
10978
|
|
|
10936
10979
|
|
|
10937
|
-
var
|
|
10980
|
+
var DeleteRoleCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
10938
10981
|
return [
|
|
10939
10982
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
10940
10983
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
10941
10984
|
];
|
|
10942
10985
|
}).s("AWSIdentityManagementV20100508", "DeleteRole", {}).n("IAMClient", "DeleteRoleCommand").f(void 0, void 0).ser(se_DeleteRoleCommand).de(de_DeleteRoleCommand).build() {
|
|
10986
|
+
static {
|
|
10987
|
+
__name(this, "DeleteRoleCommand");
|
|
10988
|
+
}
|
|
10943
10989
|
};
|
|
10944
|
-
__name(_DeleteRoleCommand, "DeleteRoleCommand");
|
|
10945
|
-
var DeleteRoleCommand = _DeleteRoleCommand;
|
|
10946
10990
|
|
|
10947
10991
|
// src/commands/DeleteRolePermissionsBoundaryCommand.ts
|
|
10948
10992
|
|
|
10949
10993
|
|
|
10950
10994
|
|
|
10951
|
-
var
|
|
10995
|
+
var DeleteRolePermissionsBoundaryCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
10952
10996
|
return [
|
|
10953
10997
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
10954
10998
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
10955
10999
|
];
|
|
10956
11000
|
}).s("AWSIdentityManagementV20100508", "DeleteRolePermissionsBoundary", {}).n("IAMClient", "DeleteRolePermissionsBoundaryCommand").f(void 0, void 0).ser(se_DeleteRolePermissionsBoundaryCommand).de(de_DeleteRolePermissionsBoundaryCommand).build() {
|
|
11001
|
+
static {
|
|
11002
|
+
__name(this, "DeleteRolePermissionsBoundaryCommand");
|
|
11003
|
+
}
|
|
10957
11004
|
};
|
|
10958
|
-
__name(_DeleteRolePermissionsBoundaryCommand, "DeleteRolePermissionsBoundaryCommand");
|
|
10959
|
-
var DeleteRolePermissionsBoundaryCommand = _DeleteRolePermissionsBoundaryCommand;
|
|
10960
11005
|
|
|
10961
11006
|
// src/commands/DeleteRolePolicyCommand.ts
|
|
10962
11007
|
|
|
10963
11008
|
|
|
10964
11009
|
|
|
10965
|
-
var
|
|
11010
|
+
var DeleteRolePolicyCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
10966
11011
|
return [
|
|
10967
11012
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
10968
11013
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
10969
11014
|
];
|
|
10970
11015
|
}).s("AWSIdentityManagementV20100508", "DeleteRolePolicy", {}).n("IAMClient", "DeleteRolePolicyCommand").f(void 0, void 0).ser(se_DeleteRolePolicyCommand).de(de_DeleteRolePolicyCommand).build() {
|
|
11016
|
+
static {
|
|
11017
|
+
__name(this, "DeleteRolePolicyCommand");
|
|
11018
|
+
}
|
|
10971
11019
|
};
|
|
10972
|
-
__name(_DeleteRolePolicyCommand, "DeleteRolePolicyCommand");
|
|
10973
|
-
var DeleteRolePolicyCommand = _DeleteRolePolicyCommand;
|
|
10974
11020
|
|
|
10975
11021
|
// src/commands/DeleteSAMLProviderCommand.ts
|
|
10976
11022
|
|
|
10977
11023
|
|
|
10978
11024
|
|
|
10979
|
-
var
|
|
11025
|
+
var DeleteSAMLProviderCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
10980
11026
|
return [
|
|
10981
11027
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
10982
11028
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
10983
11029
|
];
|
|
10984
11030
|
}).s("AWSIdentityManagementV20100508", "DeleteSAMLProvider", {}).n("IAMClient", "DeleteSAMLProviderCommand").f(void 0, void 0).ser(se_DeleteSAMLProviderCommand).de(de_DeleteSAMLProviderCommand).build() {
|
|
11031
|
+
static {
|
|
11032
|
+
__name(this, "DeleteSAMLProviderCommand");
|
|
11033
|
+
}
|
|
10985
11034
|
};
|
|
10986
|
-
__name(_DeleteSAMLProviderCommand, "DeleteSAMLProviderCommand");
|
|
10987
|
-
var DeleteSAMLProviderCommand = _DeleteSAMLProviderCommand;
|
|
10988
11035
|
|
|
10989
11036
|
// src/commands/DeleteServerCertificateCommand.ts
|
|
10990
11037
|
|
|
10991
11038
|
|
|
10992
11039
|
|
|
10993
|
-
var
|
|
11040
|
+
var DeleteServerCertificateCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
10994
11041
|
return [
|
|
10995
11042
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
10996
11043
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
10997
11044
|
];
|
|
10998
11045
|
}).s("AWSIdentityManagementV20100508", "DeleteServerCertificate", {}).n("IAMClient", "DeleteServerCertificateCommand").f(void 0, void 0).ser(se_DeleteServerCertificateCommand).de(de_DeleteServerCertificateCommand).build() {
|
|
11046
|
+
static {
|
|
11047
|
+
__name(this, "DeleteServerCertificateCommand");
|
|
11048
|
+
}
|
|
10999
11049
|
};
|
|
11000
|
-
__name(_DeleteServerCertificateCommand, "DeleteServerCertificateCommand");
|
|
11001
|
-
var DeleteServerCertificateCommand = _DeleteServerCertificateCommand;
|
|
11002
11050
|
|
|
11003
11051
|
// src/commands/DeleteServiceLinkedRoleCommand.ts
|
|
11004
11052
|
|
|
11005
11053
|
|
|
11006
11054
|
|
|
11007
|
-
var
|
|
11055
|
+
var DeleteServiceLinkedRoleCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
11008
11056
|
return [
|
|
11009
11057
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
11010
11058
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
11011
11059
|
];
|
|
11012
11060
|
}).s("AWSIdentityManagementV20100508", "DeleteServiceLinkedRole", {}).n("IAMClient", "DeleteServiceLinkedRoleCommand").f(void 0, void 0).ser(se_DeleteServiceLinkedRoleCommand).de(de_DeleteServiceLinkedRoleCommand).build() {
|
|
11061
|
+
static {
|
|
11062
|
+
__name(this, "DeleteServiceLinkedRoleCommand");
|
|
11063
|
+
}
|
|
11013
11064
|
};
|
|
11014
|
-
__name(_DeleteServiceLinkedRoleCommand, "DeleteServiceLinkedRoleCommand");
|
|
11015
|
-
var DeleteServiceLinkedRoleCommand = _DeleteServiceLinkedRoleCommand;
|
|
11016
11065
|
|
|
11017
11066
|
// src/commands/DeleteServiceSpecificCredentialCommand.ts
|
|
11018
11067
|
|
|
11019
11068
|
|
|
11020
11069
|
|
|
11021
|
-
var
|
|
11070
|
+
var DeleteServiceSpecificCredentialCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
11022
11071
|
return [
|
|
11023
11072
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
11024
11073
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
11025
11074
|
];
|
|
11026
11075
|
}).s("AWSIdentityManagementV20100508", "DeleteServiceSpecificCredential", {}).n("IAMClient", "DeleteServiceSpecificCredentialCommand").f(void 0, void 0).ser(se_DeleteServiceSpecificCredentialCommand).de(de_DeleteServiceSpecificCredentialCommand).build() {
|
|
11076
|
+
static {
|
|
11077
|
+
__name(this, "DeleteServiceSpecificCredentialCommand");
|
|
11078
|
+
}
|
|
11027
11079
|
};
|
|
11028
|
-
__name(_DeleteServiceSpecificCredentialCommand, "DeleteServiceSpecificCredentialCommand");
|
|
11029
|
-
var DeleteServiceSpecificCredentialCommand = _DeleteServiceSpecificCredentialCommand;
|
|
11030
11080
|
|
|
11031
11081
|
// src/commands/DeleteSigningCertificateCommand.ts
|
|
11032
11082
|
|
|
11033
11083
|
|
|
11034
11084
|
|
|
11035
|
-
var
|
|
11085
|
+
var DeleteSigningCertificateCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
11036
11086
|
return [
|
|
11037
11087
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
11038
11088
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
11039
11089
|
];
|
|
11040
11090
|
}).s("AWSIdentityManagementV20100508", "DeleteSigningCertificate", {}).n("IAMClient", "DeleteSigningCertificateCommand").f(void 0, void 0).ser(se_DeleteSigningCertificateCommand).de(de_DeleteSigningCertificateCommand).build() {
|
|
11091
|
+
static {
|
|
11092
|
+
__name(this, "DeleteSigningCertificateCommand");
|
|
11093
|
+
}
|
|
11041
11094
|
};
|
|
11042
|
-
__name(_DeleteSigningCertificateCommand, "DeleteSigningCertificateCommand");
|
|
11043
|
-
var DeleteSigningCertificateCommand = _DeleteSigningCertificateCommand;
|
|
11044
11095
|
|
|
11045
11096
|
// src/commands/DeleteSSHPublicKeyCommand.ts
|
|
11046
11097
|
|
|
11047
11098
|
|
|
11048
11099
|
|
|
11049
|
-
var
|
|
11100
|
+
var DeleteSSHPublicKeyCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
11050
11101
|
return [
|
|
11051
11102
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
11052
11103
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
11053
11104
|
];
|
|
11054
11105
|
}).s("AWSIdentityManagementV20100508", "DeleteSSHPublicKey", {}).n("IAMClient", "DeleteSSHPublicKeyCommand").f(void 0, void 0).ser(se_DeleteSSHPublicKeyCommand).de(de_DeleteSSHPublicKeyCommand).build() {
|
|
11106
|
+
static {
|
|
11107
|
+
__name(this, "DeleteSSHPublicKeyCommand");
|
|
11108
|
+
}
|
|
11055
11109
|
};
|
|
11056
|
-
__name(_DeleteSSHPublicKeyCommand, "DeleteSSHPublicKeyCommand");
|
|
11057
|
-
var DeleteSSHPublicKeyCommand = _DeleteSSHPublicKeyCommand;
|
|
11058
11110
|
|
|
11059
11111
|
// src/commands/DeleteUserCommand.ts
|
|
11060
11112
|
|
|
11061
11113
|
|
|
11062
11114
|
|
|
11063
|
-
var
|
|
11115
|
+
var DeleteUserCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
11064
11116
|
return [
|
|
11065
11117
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
11066
11118
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
11067
11119
|
];
|
|
11068
11120
|
}).s("AWSIdentityManagementV20100508", "DeleteUser", {}).n("IAMClient", "DeleteUserCommand").f(void 0, void 0).ser(se_DeleteUserCommand).de(de_DeleteUserCommand).build() {
|
|
11121
|
+
static {
|
|
11122
|
+
__name(this, "DeleteUserCommand");
|
|
11123
|
+
}
|
|
11069
11124
|
};
|
|
11070
|
-
__name(_DeleteUserCommand, "DeleteUserCommand");
|
|
11071
|
-
var DeleteUserCommand = _DeleteUserCommand;
|
|
11072
11125
|
|
|
11073
11126
|
// src/commands/DeleteUserPermissionsBoundaryCommand.ts
|
|
11074
11127
|
|
|
11075
11128
|
|
|
11076
11129
|
|
|
11077
|
-
var
|
|
11130
|
+
var DeleteUserPermissionsBoundaryCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
11078
11131
|
return [
|
|
11079
11132
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
11080
11133
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
11081
11134
|
];
|
|
11082
11135
|
}).s("AWSIdentityManagementV20100508", "DeleteUserPermissionsBoundary", {}).n("IAMClient", "DeleteUserPermissionsBoundaryCommand").f(void 0, void 0).ser(se_DeleteUserPermissionsBoundaryCommand).de(de_DeleteUserPermissionsBoundaryCommand).build() {
|
|
11136
|
+
static {
|
|
11137
|
+
__name(this, "DeleteUserPermissionsBoundaryCommand");
|
|
11138
|
+
}
|
|
11083
11139
|
};
|
|
11084
|
-
__name(_DeleteUserPermissionsBoundaryCommand, "DeleteUserPermissionsBoundaryCommand");
|
|
11085
|
-
var DeleteUserPermissionsBoundaryCommand = _DeleteUserPermissionsBoundaryCommand;
|
|
11086
11140
|
|
|
11087
11141
|
// src/commands/DeleteUserPolicyCommand.ts
|
|
11088
11142
|
|
|
11089
11143
|
|
|
11090
11144
|
|
|
11091
|
-
var
|
|
11145
|
+
var DeleteUserPolicyCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
11092
11146
|
return [
|
|
11093
11147
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
11094
11148
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
11095
11149
|
];
|
|
11096
11150
|
}).s("AWSIdentityManagementV20100508", "DeleteUserPolicy", {}).n("IAMClient", "DeleteUserPolicyCommand").f(void 0, void 0).ser(se_DeleteUserPolicyCommand).de(de_DeleteUserPolicyCommand).build() {
|
|
11151
|
+
static {
|
|
11152
|
+
__name(this, "DeleteUserPolicyCommand");
|
|
11153
|
+
}
|
|
11097
11154
|
};
|
|
11098
|
-
__name(_DeleteUserPolicyCommand, "DeleteUserPolicyCommand");
|
|
11099
|
-
var DeleteUserPolicyCommand = _DeleteUserPolicyCommand;
|
|
11100
11155
|
|
|
11101
11156
|
// src/commands/DeleteVirtualMFADeviceCommand.ts
|
|
11102
11157
|
|
|
11103
11158
|
|
|
11104
11159
|
|
|
11105
|
-
var
|
|
11160
|
+
var DeleteVirtualMFADeviceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
11106
11161
|
return [
|
|
11107
11162
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
11108
11163
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
11109
11164
|
];
|
|
11110
11165
|
}).s("AWSIdentityManagementV20100508", "DeleteVirtualMFADevice", {}).n("IAMClient", "DeleteVirtualMFADeviceCommand").f(void 0, void 0).ser(se_DeleteVirtualMFADeviceCommand).de(de_DeleteVirtualMFADeviceCommand).build() {
|
|
11166
|
+
static {
|
|
11167
|
+
__name(this, "DeleteVirtualMFADeviceCommand");
|
|
11168
|
+
}
|
|
11111
11169
|
};
|
|
11112
|
-
__name(_DeleteVirtualMFADeviceCommand, "DeleteVirtualMFADeviceCommand");
|
|
11113
|
-
var DeleteVirtualMFADeviceCommand = _DeleteVirtualMFADeviceCommand;
|
|
11114
11170
|
|
|
11115
11171
|
// src/commands/DetachGroupPolicyCommand.ts
|
|
11116
11172
|
|
|
11117
11173
|
|
|
11118
11174
|
|
|
11119
|
-
var
|
|
11175
|
+
var DetachGroupPolicyCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
11120
11176
|
return [
|
|
11121
11177
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
11122
11178
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
11123
11179
|
];
|
|
11124
11180
|
}).s("AWSIdentityManagementV20100508", "DetachGroupPolicy", {}).n("IAMClient", "DetachGroupPolicyCommand").f(void 0, void 0).ser(se_DetachGroupPolicyCommand).de(de_DetachGroupPolicyCommand).build() {
|
|
11181
|
+
static {
|
|
11182
|
+
__name(this, "DetachGroupPolicyCommand");
|
|
11183
|
+
}
|
|
11125
11184
|
};
|
|
11126
|
-
__name(_DetachGroupPolicyCommand, "DetachGroupPolicyCommand");
|
|
11127
|
-
var DetachGroupPolicyCommand = _DetachGroupPolicyCommand;
|
|
11128
11185
|
|
|
11129
11186
|
// src/commands/DetachRolePolicyCommand.ts
|
|
11130
11187
|
|
|
11131
11188
|
|
|
11132
11189
|
|
|
11133
|
-
var
|
|
11190
|
+
var DetachRolePolicyCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
11134
11191
|
return [
|
|
11135
11192
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
11136
11193
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
11137
11194
|
];
|
|
11138
11195
|
}).s("AWSIdentityManagementV20100508", "DetachRolePolicy", {}).n("IAMClient", "DetachRolePolicyCommand").f(void 0, void 0).ser(se_DetachRolePolicyCommand).de(de_DetachRolePolicyCommand).build() {
|
|
11196
|
+
static {
|
|
11197
|
+
__name(this, "DetachRolePolicyCommand");
|
|
11198
|
+
}
|
|
11139
11199
|
};
|
|
11140
|
-
__name(_DetachRolePolicyCommand, "DetachRolePolicyCommand");
|
|
11141
|
-
var DetachRolePolicyCommand = _DetachRolePolicyCommand;
|
|
11142
11200
|
|
|
11143
11201
|
// src/commands/DetachUserPolicyCommand.ts
|
|
11144
11202
|
|
|
11145
11203
|
|
|
11146
11204
|
|
|
11147
|
-
var
|
|
11205
|
+
var DetachUserPolicyCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
11148
11206
|
return [
|
|
11149
11207
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
11150
11208
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
11151
11209
|
];
|
|
11152
11210
|
}).s("AWSIdentityManagementV20100508", "DetachUserPolicy", {}).n("IAMClient", "DetachUserPolicyCommand").f(void 0, void 0).ser(se_DetachUserPolicyCommand).de(de_DetachUserPolicyCommand).build() {
|
|
11211
|
+
static {
|
|
11212
|
+
__name(this, "DetachUserPolicyCommand");
|
|
11213
|
+
}
|
|
11153
11214
|
};
|
|
11154
|
-
__name(_DetachUserPolicyCommand, "DetachUserPolicyCommand");
|
|
11155
|
-
var DetachUserPolicyCommand = _DetachUserPolicyCommand;
|
|
11156
11215
|
|
|
11157
11216
|
// src/commands/DisableOrganizationsRootCredentialsManagementCommand.ts
|
|
11158
11217
|
|
|
11159
11218
|
|
|
11160
11219
|
|
|
11161
|
-
var
|
|
11220
|
+
var DisableOrganizationsRootCredentialsManagementCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
11162
11221
|
return [
|
|
11163
11222
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
11164
11223
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
11165
11224
|
];
|
|
11166
11225
|
}).s("AWSIdentityManagementV20100508", "DisableOrganizationsRootCredentialsManagement", {}).n("IAMClient", "DisableOrganizationsRootCredentialsManagementCommand").f(void 0, void 0).ser(se_DisableOrganizationsRootCredentialsManagementCommand).de(de_DisableOrganizationsRootCredentialsManagementCommand).build() {
|
|
11226
|
+
static {
|
|
11227
|
+
__name(this, "DisableOrganizationsRootCredentialsManagementCommand");
|
|
11228
|
+
}
|
|
11167
11229
|
};
|
|
11168
|
-
__name(_DisableOrganizationsRootCredentialsManagementCommand, "DisableOrganizationsRootCredentialsManagementCommand");
|
|
11169
|
-
var DisableOrganizationsRootCredentialsManagementCommand = _DisableOrganizationsRootCredentialsManagementCommand;
|
|
11170
11230
|
|
|
11171
11231
|
// src/commands/DisableOrganizationsRootSessionsCommand.ts
|
|
11172
11232
|
|
|
11173
11233
|
|
|
11174
11234
|
|
|
11175
|
-
var
|
|
11235
|
+
var DisableOrganizationsRootSessionsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
11176
11236
|
return [
|
|
11177
11237
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
11178
11238
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
11179
11239
|
];
|
|
11180
11240
|
}).s("AWSIdentityManagementV20100508", "DisableOrganizationsRootSessions", {}).n("IAMClient", "DisableOrganizationsRootSessionsCommand").f(void 0, void 0).ser(se_DisableOrganizationsRootSessionsCommand).de(de_DisableOrganizationsRootSessionsCommand).build() {
|
|
11241
|
+
static {
|
|
11242
|
+
__name(this, "DisableOrganizationsRootSessionsCommand");
|
|
11243
|
+
}
|
|
11181
11244
|
};
|
|
11182
|
-
__name(_DisableOrganizationsRootSessionsCommand, "DisableOrganizationsRootSessionsCommand");
|
|
11183
|
-
var DisableOrganizationsRootSessionsCommand = _DisableOrganizationsRootSessionsCommand;
|
|
11184
11245
|
|
|
11185
11246
|
// src/commands/EnableMFADeviceCommand.ts
|
|
11186
11247
|
|
|
11187
11248
|
|
|
11188
11249
|
|
|
11189
|
-
var
|
|
11250
|
+
var EnableMFADeviceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
11190
11251
|
return [
|
|
11191
11252
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
11192
11253
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
11193
11254
|
];
|
|
11194
11255
|
}).s("AWSIdentityManagementV20100508", "EnableMFADevice", {}).n("IAMClient", "EnableMFADeviceCommand").f(void 0, void 0).ser(se_EnableMFADeviceCommand).de(de_EnableMFADeviceCommand).build() {
|
|
11256
|
+
static {
|
|
11257
|
+
__name(this, "EnableMFADeviceCommand");
|
|
11258
|
+
}
|
|
11195
11259
|
};
|
|
11196
|
-
__name(_EnableMFADeviceCommand, "EnableMFADeviceCommand");
|
|
11197
|
-
var EnableMFADeviceCommand = _EnableMFADeviceCommand;
|
|
11198
11260
|
|
|
11199
11261
|
// src/commands/EnableOrganizationsRootCredentialsManagementCommand.ts
|
|
11200
11262
|
|
|
11201
11263
|
|
|
11202
11264
|
|
|
11203
|
-
var
|
|
11265
|
+
var EnableOrganizationsRootCredentialsManagementCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
11204
11266
|
return [
|
|
11205
11267
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
11206
11268
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
11207
11269
|
];
|
|
11208
11270
|
}).s("AWSIdentityManagementV20100508", "EnableOrganizationsRootCredentialsManagement", {}).n("IAMClient", "EnableOrganizationsRootCredentialsManagementCommand").f(void 0, void 0).ser(se_EnableOrganizationsRootCredentialsManagementCommand).de(de_EnableOrganizationsRootCredentialsManagementCommand).build() {
|
|
11271
|
+
static {
|
|
11272
|
+
__name(this, "EnableOrganizationsRootCredentialsManagementCommand");
|
|
11273
|
+
}
|
|
11209
11274
|
};
|
|
11210
|
-
__name(_EnableOrganizationsRootCredentialsManagementCommand, "EnableOrganizationsRootCredentialsManagementCommand");
|
|
11211
|
-
var EnableOrganizationsRootCredentialsManagementCommand = _EnableOrganizationsRootCredentialsManagementCommand;
|
|
11212
11275
|
|
|
11213
11276
|
// src/commands/EnableOrganizationsRootSessionsCommand.ts
|
|
11214
11277
|
|
|
11215
11278
|
|
|
11216
11279
|
|
|
11217
|
-
var
|
|
11280
|
+
var EnableOrganizationsRootSessionsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
11218
11281
|
return [
|
|
11219
11282
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
11220
11283
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
11221
11284
|
];
|
|
11222
11285
|
}).s("AWSIdentityManagementV20100508", "EnableOrganizationsRootSessions", {}).n("IAMClient", "EnableOrganizationsRootSessionsCommand").f(void 0, void 0).ser(se_EnableOrganizationsRootSessionsCommand).de(de_EnableOrganizationsRootSessionsCommand).build() {
|
|
11286
|
+
static {
|
|
11287
|
+
__name(this, "EnableOrganizationsRootSessionsCommand");
|
|
11288
|
+
}
|
|
11223
11289
|
};
|
|
11224
|
-
__name(_EnableOrganizationsRootSessionsCommand, "EnableOrganizationsRootSessionsCommand");
|
|
11225
|
-
var EnableOrganizationsRootSessionsCommand = _EnableOrganizationsRootSessionsCommand;
|
|
11226
11290
|
|
|
11227
11291
|
// src/commands/GenerateCredentialReportCommand.ts
|
|
11228
11292
|
|
|
11229
11293
|
|
|
11230
11294
|
|
|
11231
|
-
var
|
|
11295
|
+
var GenerateCredentialReportCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
11232
11296
|
return [
|
|
11233
11297
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
11234
11298
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
11235
11299
|
];
|
|
11236
11300
|
}).s("AWSIdentityManagementV20100508", "GenerateCredentialReport", {}).n("IAMClient", "GenerateCredentialReportCommand").f(void 0, void 0).ser(se_GenerateCredentialReportCommand).de(de_GenerateCredentialReportCommand).build() {
|
|
11301
|
+
static {
|
|
11302
|
+
__name(this, "GenerateCredentialReportCommand");
|
|
11303
|
+
}
|
|
11237
11304
|
};
|
|
11238
|
-
__name(_GenerateCredentialReportCommand, "GenerateCredentialReportCommand");
|
|
11239
|
-
var GenerateCredentialReportCommand = _GenerateCredentialReportCommand;
|
|
11240
11305
|
|
|
11241
11306
|
// src/commands/GenerateOrganizationsAccessReportCommand.ts
|
|
11242
11307
|
|
|
11243
11308
|
|
|
11244
11309
|
|
|
11245
|
-
var
|
|
11310
|
+
var GenerateOrganizationsAccessReportCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
11246
11311
|
return [
|
|
11247
11312
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
11248
11313
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
11249
11314
|
];
|
|
11250
11315
|
}).s("AWSIdentityManagementV20100508", "GenerateOrganizationsAccessReport", {}).n("IAMClient", "GenerateOrganizationsAccessReportCommand").f(void 0, void 0).ser(se_GenerateOrganizationsAccessReportCommand).de(de_GenerateOrganizationsAccessReportCommand).build() {
|
|
11316
|
+
static {
|
|
11317
|
+
__name(this, "GenerateOrganizationsAccessReportCommand");
|
|
11318
|
+
}
|
|
11251
11319
|
};
|
|
11252
|
-
__name(_GenerateOrganizationsAccessReportCommand, "GenerateOrganizationsAccessReportCommand");
|
|
11253
|
-
var GenerateOrganizationsAccessReportCommand = _GenerateOrganizationsAccessReportCommand;
|
|
11254
11320
|
|
|
11255
11321
|
// src/commands/GenerateServiceLastAccessedDetailsCommand.ts
|
|
11256
11322
|
|
|
11257
11323
|
|
|
11258
11324
|
|
|
11259
|
-
var
|
|
11325
|
+
var GenerateServiceLastAccessedDetailsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
11260
11326
|
return [
|
|
11261
11327
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
11262
11328
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
11263
11329
|
];
|
|
11264
11330
|
}).s("AWSIdentityManagementV20100508", "GenerateServiceLastAccessedDetails", {}).n("IAMClient", "GenerateServiceLastAccessedDetailsCommand").f(void 0, void 0).ser(se_GenerateServiceLastAccessedDetailsCommand).de(de_GenerateServiceLastAccessedDetailsCommand).build() {
|
|
11331
|
+
static {
|
|
11332
|
+
__name(this, "GenerateServiceLastAccessedDetailsCommand");
|
|
11333
|
+
}
|
|
11265
11334
|
};
|
|
11266
|
-
__name(_GenerateServiceLastAccessedDetailsCommand, "GenerateServiceLastAccessedDetailsCommand");
|
|
11267
|
-
var GenerateServiceLastAccessedDetailsCommand = _GenerateServiceLastAccessedDetailsCommand;
|
|
11268
11335
|
|
|
11269
11336
|
// src/commands/GetAccessKeyLastUsedCommand.ts
|
|
11270
11337
|
|
|
11271
11338
|
|
|
11272
11339
|
|
|
11273
|
-
var
|
|
11340
|
+
var GetAccessKeyLastUsedCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
11274
11341
|
return [
|
|
11275
11342
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
11276
11343
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
11277
11344
|
];
|
|
11278
11345
|
}).s("AWSIdentityManagementV20100508", "GetAccessKeyLastUsed", {}).n("IAMClient", "GetAccessKeyLastUsedCommand").f(void 0, void 0).ser(se_GetAccessKeyLastUsedCommand).de(de_GetAccessKeyLastUsedCommand).build() {
|
|
11346
|
+
static {
|
|
11347
|
+
__name(this, "GetAccessKeyLastUsedCommand");
|
|
11348
|
+
}
|
|
11279
11349
|
};
|
|
11280
|
-
__name(_GetAccessKeyLastUsedCommand, "GetAccessKeyLastUsedCommand");
|
|
11281
|
-
var GetAccessKeyLastUsedCommand = _GetAccessKeyLastUsedCommand;
|
|
11282
11350
|
|
|
11283
11351
|
// src/commands/GetAccountAuthorizationDetailsCommand.ts
|
|
11284
11352
|
|
|
11285
11353
|
|
|
11286
11354
|
|
|
11287
|
-
var
|
|
11355
|
+
var GetAccountAuthorizationDetailsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
11288
11356
|
return [
|
|
11289
11357
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
11290
11358
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
11291
11359
|
];
|
|
11292
11360
|
}).s("AWSIdentityManagementV20100508", "GetAccountAuthorizationDetails", {}).n("IAMClient", "GetAccountAuthorizationDetailsCommand").f(void 0, void 0).ser(se_GetAccountAuthorizationDetailsCommand).de(de_GetAccountAuthorizationDetailsCommand).build() {
|
|
11361
|
+
static {
|
|
11362
|
+
__name(this, "GetAccountAuthorizationDetailsCommand");
|
|
11363
|
+
}
|
|
11293
11364
|
};
|
|
11294
|
-
__name(_GetAccountAuthorizationDetailsCommand, "GetAccountAuthorizationDetailsCommand");
|
|
11295
|
-
var GetAccountAuthorizationDetailsCommand = _GetAccountAuthorizationDetailsCommand;
|
|
11296
11365
|
|
|
11297
11366
|
// src/commands/GetAccountPasswordPolicyCommand.ts
|
|
11298
11367
|
|
|
11299
11368
|
|
|
11300
11369
|
|
|
11301
|
-
var
|
|
11370
|
+
var GetAccountPasswordPolicyCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
11302
11371
|
return [
|
|
11303
11372
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
11304
11373
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
11305
11374
|
];
|
|
11306
11375
|
}).s("AWSIdentityManagementV20100508", "GetAccountPasswordPolicy", {}).n("IAMClient", "GetAccountPasswordPolicyCommand").f(void 0, void 0).ser(se_GetAccountPasswordPolicyCommand).de(de_GetAccountPasswordPolicyCommand).build() {
|
|
11376
|
+
static {
|
|
11377
|
+
__name(this, "GetAccountPasswordPolicyCommand");
|
|
11378
|
+
}
|
|
11307
11379
|
};
|
|
11308
|
-
__name(_GetAccountPasswordPolicyCommand, "GetAccountPasswordPolicyCommand");
|
|
11309
|
-
var GetAccountPasswordPolicyCommand = _GetAccountPasswordPolicyCommand;
|
|
11310
11380
|
|
|
11311
11381
|
// src/commands/GetAccountSummaryCommand.ts
|
|
11312
11382
|
|
|
11313
11383
|
|
|
11314
11384
|
|
|
11315
|
-
var
|
|
11385
|
+
var GetAccountSummaryCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
11316
11386
|
return [
|
|
11317
11387
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
11318
11388
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
11319
11389
|
];
|
|
11320
11390
|
}).s("AWSIdentityManagementV20100508", "GetAccountSummary", {}).n("IAMClient", "GetAccountSummaryCommand").f(void 0, void 0).ser(se_GetAccountSummaryCommand).de(de_GetAccountSummaryCommand).build() {
|
|
11391
|
+
static {
|
|
11392
|
+
__name(this, "GetAccountSummaryCommand");
|
|
11393
|
+
}
|
|
11321
11394
|
};
|
|
11322
|
-
__name(_GetAccountSummaryCommand, "GetAccountSummaryCommand");
|
|
11323
|
-
var GetAccountSummaryCommand = _GetAccountSummaryCommand;
|
|
11324
11395
|
|
|
11325
11396
|
// src/commands/GetContextKeysForCustomPolicyCommand.ts
|
|
11326
11397
|
|
|
11327
11398
|
|
|
11328
11399
|
|
|
11329
|
-
var
|
|
11400
|
+
var GetContextKeysForCustomPolicyCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
11330
11401
|
return [
|
|
11331
11402
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
11332
11403
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
11333
11404
|
];
|
|
11334
11405
|
}).s("AWSIdentityManagementV20100508", "GetContextKeysForCustomPolicy", {}).n("IAMClient", "GetContextKeysForCustomPolicyCommand").f(void 0, void 0).ser(se_GetContextKeysForCustomPolicyCommand).de(de_GetContextKeysForCustomPolicyCommand).build() {
|
|
11406
|
+
static {
|
|
11407
|
+
__name(this, "GetContextKeysForCustomPolicyCommand");
|
|
11408
|
+
}
|
|
11335
11409
|
};
|
|
11336
|
-
__name(_GetContextKeysForCustomPolicyCommand, "GetContextKeysForCustomPolicyCommand");
|
|
11337
|
-
var GetContextKeysForCustomPolicyCommand = _GetContextKeysForCustomPolicyCommand;
|
|
11338
11410
|
|
|
11339
11411
|
// src/commands/GetContextKeysForPrincipalPolicyCommand.ts
|
|
11340
11412
|
|
|
11341
11413
|
|
|
11342
11414
|
|
|
11343
|
-
var
|
|
11415
|
+
var GetContextKeysForPrincipalPolicyCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
11344
11416
|
return [
|
|
11345
11417
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
11346
11418
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
11347
11419
|
];
|
|
11348
11420
|
}).s("AWSIdentityManagementV20100508", "GetContextKeysForPrincipalPolicy", {}).n("IAMClient", "GetContextKeysForPrincipalPolicyCommand").f(void 0, void 0).ser(se_GetContextKeysForPrincipalPolicyCommand).de(de_GetContextKeysForPrincipalPolicyCommand).build() {
|
|
11421
|
+
static {
|
|
11422
|
+
__name(this, "GetContextKeysForPrincipalPolicyCommand");
|
|
11423
|
+
}
|
|
11349
11424
|
};
|
|
11350
|
-
__name(_GetContextKeysForPrincipalPolicyCommand, "GetContextKeysForPrincipalPolicyCommand");
|
|
11351
|
-
var GetContextKeysForPrincipalPolicyCommand = _GetContextKeysForPrincipalPolicyCommand;
|
|
11352
11425
|
|
|
11353
11426
|
// src/commands/GetCredentialReportCommand.ts
|
|
11354
11427
|
|
|
11355
11428
|
|
|
11356
11429
|
|
|
11357
|
-
var
|
|
11430
|
+
var GetCredentialReportCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
11358
11431
|
return [
|
|
11359
11432
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
11360
11433
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
11361
11434
|
];
|
|
11362
11435
|
}).s("AWSIdentityManagementV20100508", "GetCredentialReport", {}).n("IAMClient", "GetCredentialReportCommand").f(void 0, void 0).ser(se_GetCredentialReportCommand).de(de_GetCredentialReportCommand).build() {
|
|
11436
|
+
static {
|
|
11437
|
+
__name(this, "GetCredentialReportCommand");
|
|
11438
|
+
}
|
|
11363
11439
|
};
|
|
11364
|
-
__name(_GetCredentialReportCommand, "GetCredentialReportCommand");
|
|
11365
|
-
var GetCredentialReportCommand = _GetCredentialReportCommand;
|
|
11366
11440
|
|
|
11367
11441
|
// src/commands/GetGroupCommand.ts
|
|
11368
11442
|
|
|
11369
11443
|
|
|
11370
11444
|
|
|
11371
|
-
var
|
|
11445
|
+
var GetGroupCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
11372
11446
|
return [
|
|
11373
11447
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
11374
11448
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
11375
11449
|
];
|
|
11376
11450
|
}).s("AWSIdentityManagementV20100508", "GetGroup", {}).n("IAMClient", "GetGroupCommand").f(void 0, void 0).ser(se_GetGroupCommand).de(de_GetGroupCommand).build() {
|
|
11451
|
+
static {
|
|
11452
|
+
__name(this, "GetGroupCommand");
|
|
11453
|
+
}
|
|
11377
11454
|
};
|
|
11378
|
-
__name(_GetGroupCommand, "GetGroupCommand");
|
|
11379
|
-
var GetGroupCommand = _GetGroupCommand;
|
|
11380
11455
|
|
|
11381
11456
|
// src/commands/GetGroupPolicyCommand.ts
|
|
11382
11457
|
|
|
11383
11458
|
|
|
11384
11459
|
|
|
11385
|
-
var
|
|
11460
|
+
var GetGroupPolicyCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
11386
11461
|
return [
|
|
11387
11462
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
11388
11463
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
11389
11464
|
];
|
|
11390
11465
|
}).s("AWSIdentityManagementV20100508", "GetGroupPolicy", {}).n("IAMClient", "GetGroupPolicyCommand").f(void 0, void 0).ser(se_GetGroupPolicyCommand).de(de_GetGroupPolicyCommand).build() {
|
|
11466
|
+
static {
|
|
11467
|
+
__name(this, "GetGroupPolicyCommand");
|
|
11468
|
+
}
|
|
11391
11469
|
};
|
|
11392
|
-
__name(_GetGroupPolicyCommand, "GetGroupPolicyCommand");
|
|
11393
|
-
var GetGroupPolicyCommand = _GetGroupPolicyCommand;
|
|
11394
11470
|
|
|
11395
11471
|
// src/commands/GetInstanceProfileCommand.ts
|
|
11396
11472
|
|
|
11397
11473
|
|
|
11398
11474
|
|
|
11399
|
-
var
|
|
11475
|
+
var GetInstanceProfileCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
11400
11476
|
return [
|
|
11401
11477
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
11402
11478
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
11403
11479
|
];
|
|
11404
11480
|
}).s("AWSIdentityManagementV20100508", "GetInstanceProfile", {}).n("IAMClient", "GetInstanceProfileCommand").f(void 0, void 0).ser(se_GetInstanceProfileCommand).de(de_GetInstanceProfileCommand).build() {
|
|
11481
|
+
static {
|
|
11482
|
+
__name(this, "GetInstanceProfileCommand");
|
|
11483
|
+
}
|
|
11405
11484
|
};
|
|
11406
|
-
__name(_GetInstanceProfileCommand, "GetInstanceProfileCommand");
|
|
11407
|
-
var GetInstanceProfileCommand = _GetInstanceProfileCommand;
|
|
11408
11485
|
|
|
11409
11486
|
// src/commands/GetLoginProfileCommand.ts
|
|
11410
11487
|
|
|
11411
11488
|
|
|
11412
11489
|
|
|
11413
|
-
var
|
|
11490
|
+
var GetLoginProfileCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
11414
11491
|
return [
|
|
11415
11492
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
11416
11493
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
11417
11494
|
];
|
|
11418
11495
|
}).s("AWSIdentityManagementV20100508", "GetLoginProfile", {}).n("IAMClient", "GetLoginProfileCommand").f(void 0, void 0).ser(se_GetLoginProfileCommand).de(de_GetLoginProfileCommand).build() {
|
|
11496
|
+
static {
|
|
11497
|
+
__name(this, "GetLoginProfileCommand");
|
|
11498
|
+
}
|
|
11419
11499
|
};
|
|
11420
|
-
__name(_GetLoginProfileCommand, "GetLoginProfileCommand");
|
|
11421
|
-
var GetLoginProfileCommand = _GetLoginProfileCommand;
|
|
11422
11500
|
|
|
11423
11501
|
// src/commands/GetMFADeviceCommand.ts
|
|
11424
11502
|
|
|
11425
11503
|
|
|
11426
11504
|
|
|
11427
|
-
var
|
|
11505
|
+
var GetMFADeviceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
11428
11506
|
return [
|
|
11429
11507
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
11430
11508
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
11431
11509
|
];
|
|
11432
11510
|
}).s("AWSIdentityManagementV20100508", "GetMFADevice", {}).n("IAMClient", "GetMFADeviceCommand").f(void 0, void 0).ser(se_GetMFADeviceCommand).de(de_GetMFADeviceCommand).build() {
|
|
11511
|
+
static {
|
|
11512
|
+
__name(this, "GetMFADeviceCommand");
|
|
11513
|
+
}
|
|
11433
11514
|
};
|
|
11434
|
-
__name(_GetMFADeviceCommand, "GetMFADeviceCommand");
|
|
11435
|
-
var GetMFADeviceCommand = _GetMFADeviceCommand;
|
|
11436
11515
|
|
|
11437
11516
|
// src/commands/GetOpenIDConnectProviderCommand.ts
|
|
11438
11517
|
|
|
11439
11518
|
|
|
11440
11519
|
|
|
11441
|
-
var
|
|
11520
|
+
var GetOpenIDConnectProviderCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
11442
11521
|
return [
|
|
11443
11522
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
11444
11523
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
11445
11524
|
];
|
|
11446
11525
|
}).s("AWSIdentityManagementV20100508", "GetOpenIDConnectProvider", {}).n("IAMClient", "GetOpenIDConnectProviderCommand").f(void 0, void 0).ser(se_GetOpenIDConnectProviderCommand).de(de_GetOpenIDConnectProviderCommand).build() {
|
|
11526
|
+
static {
|
|
11527
|
+
__name(this, "GetOpenIDConnectProviderCommand");
|
|
11528
|
+
}
|
|
11447
11529
|
};
|
|
11448
|
-
__name(_GetOpenIDConnectProviderCommand, "GetOpenIDConnectProviderCommand");
|
|
11449
|
-
var GetOpenIDConnectProviderCommand = _GetOpenIDConnectProviderCommand;
|
|
11450
11530
|
|
|
11451
11531
|
// src/commands/GetOrganizationsAccessReportCommand.ts
|
|
11452
11532
|
|
|
11453
11533
|
|
|
11454
11534
|
|
|
11455
|
-
var
|
|
11535
|
+
var GetOrganizationsAccessReportCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
11456
11536
|
return [
|
|
11457
11537
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
11458
11538
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
11459
11539
|
];
|
|
11460
11540
|
}).s("AWSIdentityManagementV20100508", "GetOrganizationsAccessReport", {}).n("IAMClient", "GetOrganizationsAccessReportCommand").f(void 0, void 0).ser(se_GetOrganizationsAccessReportCommand).de(de_GetOrganizationsAccessReportCommand).build() {
|
|
11541
|
+
static {
|
|
11542
|
+
__name(this, "GetOrganizationsAccessReportCommand");
|
|
11543
|
+
}
|
|
11461
11544
|
};
|
|
11462
|
-
__name(_GetOrganizationsAccessReportCommand, "GetOrganizationsAccessReportCommand");
|
|
11463
|
-
var GetOrganizationsAccessReportCommand = _GetOrganizationsAccessReportCommand;
|
|
11464
11545
|
|
|
11465
11546
|
// src/commands/GetPolicyCommand.ts
|
|
11466
11547
|
|
|
11467
11548
|
|
|
11468
11549
|
|
|
11469
|
-
var
|
|
11550
|
+
var GetPolicyCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
11470
11551
|
return [
|
|
11471
11552
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
11472
11553
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
11473
11554
|
];
|
|
11474
11555
|
}).s("AWSIdentityManagementV20100508", "GetPolicy", {}).n("IAMClient", "GetPolicyCommand").f(void 0, void 0).ser(se_GetPolicyCommand).de(de_GetPolicyCommand).build() {
|
|
11556
|
+
static {
|
|
11557
|
+
__name(this, "GetPolicyCommand");
|
|
11558
|
+
}
|
|
11475
11559
|
};
|
|
11476
|
-
__name(_GetPolicyCommand, "GetPolicyCommand");
|
|
11477
|
-
var GetPolicyCommand = _GetPolicyCommand;
|
|
11478
11560
|
|
|
11479
11561
|
// src/commands/GetPolicyVersionCommand.ts
|
|
11480
11562
|
|
|
11481
11563
|
|
|
11482
11564
|
|
|
11483
|
-
var
|
|
11565
|
+
var GetPolicyVersionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
11484
11566
|
return [
|
|
11485
11567
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
11486
11568
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
11487
11569
|
];
|
|
11488
11570
|
}).s("AWSIdentityManagementV20100508", "GetPolicyVersion", {}).n("IAMClient", "GetPolicyVersionCommand").f(void 0, void 0).ser(se_GetPolicyVersionCommand).de(de_GetPolicyVersionCommand).build() {
|
|
11571
|
+
static {
|
|
11572
|
+
__name(this, "GetPolicyVersionCommand");
|
|
11573
|
+
}
|
|
11489
11574
|
};
|
|
11490
|
-
__name(_GetPolicyVersionCommand, "GetPolicyVersionCommand");
|
|
11491
|
-
var GetPolicyVersionCommand = _GetPolicyVersionCommand;
|
|
11492
11575
|
|
|
11493
11576
|
// src/commands/GetRoleCommand.ts
|
|
11494
11577
|
|
|
11495
11578
|
|
|
11496
11579
|
|
|
11497
|
-
var
|
|
11580
|
+
var GetRoleCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
11498
11581
|
return [
|
|
11499
11582
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
11500
11583
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
11501
11584
|
];
|
|
11502
11585
|
}).s("AWSIdentityManagementV20100508", "GetRole", {}).n("IAMClient", "GetRoleCommand").f(void 0, void 0).ser(se_GetRoleCommand).de(de_GetRoleCommand).build() {
|
|
11586
|
+
static {
|
|
11587
|
+
__name(this, "GetRoleCommand");
|
|
11588
|
+
}
|
|
11503
11589
|
};
|
|
11504
|
-
__name(_GetRoleCommand, "GetRoleCommand");
|
|
11505
|
-
var GetRoleCommand = _GetRoleCommand;
|
|
11506
11590
|
|
|
11507
11591
|
// src/commands/GetRolePolicyCommand.ts
|
|
11508
11592
|
|
|
11509
11593
|
|
|
11510
11594
|
|
|
11511
|
-
var
|
|
11595
|
+
var GetRolePolicyCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
11512
11596
|
return [
|
|
11513
11597
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
11514
11598
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
11515
11599
|
];
|
|
11516
11600
|
}).s("AWSIdentityManagementV20100508", "GetRolePolicy", {}).n("IAMClient", "GetRolePolicyCommand").f(void 0, void 0).ser(se_GetRolePolicyCommand).de(de_GetRolePolicyCommand).build() {
|
|
11601
|
+
static {
|
|
11602
|
+
__name(this, "GetRolePolicyCommand");
|
|
11603
|
+
}
|
|
11517
11604
|
};
|
|
11518
|
-
__name(_GetRolePolicyCommand, "GetRolePolicyCommand");
|
|
11519
|
-
var GetRolePolicyCommand = _GetRolePolicyCommand;
|
|
11520
11605
|
|
|
11521
11606
|
// src/commands/GetSAMLProviderCommand.ts
|
|
11522
11607
|
|
|
11523
11608
|
|
|
11524
11609
|
|
|
11525
|
-
var
|
|
11610
|
+
var GetSAMLProviderCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
11526
11611
|
return [
|
|
11527
11612
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
11528
11613
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
11529
11614
|
];
|
|
11530
11615
|
}).s("AWSIdentityManagementV20100508", "GetSAMLProvider", {}).n("IAMClient", "GetSAMLProviderCommand").f(void 0, void 0).ser(se_GetSAMLProviderCommand).de(de_GetSAMLProviderCommand).build() {
|
|
11616
|
+
static {
|
|
11617
|
+
__name(this, "GetSAMLProviderCommand");
|
|
11618
|
+
}
|
|
11531
11619
|
};
|
|
11532
|
-
__name(_GetSAMLProviderCommand, "GetSAMLProviderCommand");
|
|
11533
|
-
var GetSAMLProviderCommand = _GetSAMLProviderCommand;
|
|
11534
11620
|
|
|
11535
11621
|
// src/commands/GetServerCertificateCommand.ts
|
|
11536
11622
|
|
|
11537
11623
|
|
|
11538
11624
|
|
|
11539
|
-
var
|
|
11625
|
+
var GetServerCertificateCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
11540
11626
|
return [
|
|
11541
11627
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
11542
11628
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
11543
11629
|
];
|
|
11544
11630
|
}).s("AWSIdentityManagementV20100508", "GetServerCertificate", {}).n("IAMClient", "GetServerCertificateCommand").f(void 0, void 0).ser(se_GetServerCertificateCommand).de(de_GetServerCertificateCommand).build() {
|
|
11631
|
+
static {
|
|
11632
|
+
__name(this, "GetServerCertificateCommand");
|
|
11633
|
+
}
|
|
11545
11634
|
};
|
|
11546
|
-
__name(_GetServerCertificateCommand, "GetServerCertificateCommand");
|
|
11547
|
-
var GetServerCertificateCommand = _GetServerCertificateCommand;
|
|
11548
11635
|
|
|
11549
11636
|
// src/commands/GetServiceLastAccessedDetailsCommand.ts
|
|
11550
11637
|
|
|
11551
11638
|
|
|
11552
11639
|
|
|
11553
|
-
var
|
|
11640
|
+
var GetServiceLastAccessedDetailsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
11554
11641
|
return [
|
|
11555
11642
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
11556
11643
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
11557
11644
|
];
|
|
11558
11645
|
}).s("AWSIdentityManagementV20100508", "GetServiceLastAccessedDetails", {}).n("IAMClient", "GetServiceLastAccessedDetailsCommand").f(void 0, void 0).ser(se_GetServiceLastAccessedDetailsCommand).de(de_GetServiceLastAccessedDetailsCommand).build() {
|
|
11646
|
+
static {
|
|
11647
|
+
__name(this, "GetServiceLastAccessedDetailsCommand");
|
|
11648
|
+
}
|
|
11559
11649
|
};
|
|
11560
|
-
__name(_GetServiceLastAccessedDetailsCommand, "GetServiceLastAccessedDetailsCommand");
|
|
11561
|
-
var GetServiceLastAccessedDetailsCommand = _GetServiceLastAccessedDetailsCommand;
|
|
11562
11650
|
|
|
11563
11651
|
// src/commands/GetServiceLastAccessedDetailsWithEntitiesCommand.ts
|
|
11564
11652
|
|
|
11565
11653
|
|
|
11566
11654
|
|
|
11567
|
-
var
|
|
11655
|
+
var GetServiceLastAccessedDetailsWithEntitiesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
11568
11656
|
return [
|
|
11569
11657
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
11570
11658
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
11571
11659
|
];
|
|
11572
11660
|
}).s("AWSIdentityManagementV20100508", "GetServiceLastAccessedDetailsWithEntities", {}).n("IAMClient", "GetServiceLastAccessedDetailsWithEntitiesCommand").f(void 0, void 0).ser(se_GetServiceLastAccessedDetailsWithEntitiesCommand).de(de_GetServiceLastAccessedDetailsWithEntitiesCommand).build() {
|
|
11661
|
+
static {
|
|
11662
|
+
__name(this, "GetServiceLastAccessedDetailsWithEntitiesCommand");
|
|
11663
|
+
}
|
|
11573
11664
|
};
|
|
11574
|
-
__name(_GetServiceLastAccessedDetailsWithEntitiesCommand, "GetServiceLastAccessedDetailsWithEntitiesCommand");
|
|
11575
|
-
var GetServiceLastAccessedDetailsWithEntitiesCommand = _GetServiceLastAccessedDetailsWithEntitiesCommand;
|
|
11576
11665
|
|
|
11577
11666
|
// src/commands/GetServiceLinkedRoleDeletionStatusCommand.ts
|
|
11578
11667
|
|
|
11579
11668
|
|
|
11580
11669
|
|
|
11581
|
-
var
|
|
11670
|
+
var GetServiceLinkedRoleDeletionStatusCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
11582
11671
|
return [
|
|
11583
11672
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
11584
11673
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
11585
11674
|
];
|
|
11586
11675
|
}).s("AWSIdentityManagementV20100508", "GetServiceLinkedRoleDeletionStatus", {}).n("IAMClient", "GetServiceLinkedRoleDeletionStatusCommand").f(void 0, void 0).ser(se_GetServiceLinkedRoleDeletionStatusCommand).de(de_GetServiceLinkedRoleDeletionStatusCommand).build() {
|
|
11676
|
+
static {
|
|
11677
|
+
__name(this, "GetServiceLinkedRoleDeletionStatusCommand");
|
|
11678
|
+
}
|
|
11587
11679
|
};
|
|
11588
|
-
__name(_GetServiceLinkedRoleDeletionStatusCommand, "GetServiceLinkedRoleDeletionStatusCommand");
|
|
11589
|
-
var GetServiceLinkedRoleDeletionStatusCommand = _GetServiceLinkedRoleDeletionStatusCommand;
|
|
11590
11680
|
|
|
11591
11681
|
// src/commands/GetSSHPublicKeyCommand.ts
|
|
11592
11682
|
|
|
11593
11683
|
|
|
11594
11684
|
|
|
11595
|
-
var
|
|
11685
|
+
var GetSSHPublicKeyCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
11596
11686
|
return [
|
|
11597
11687
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
11598
11688
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
11599
11689
|
];
|
|
11600
11690
|
}).s("AWSIdentityManagementV20100508", "GetSSHPublicKey", {}).n("IAMClient", "GetSSHPublicKeyCommand").f(void 0, void 0).ser(se_GetSSHPublicKeyCommand).de(de_GetSSHPublicKeyCommand).build() {
|
|
11691
|
+
static {
|
|
11692
|
+
__name(this, "GetSSHPublicKeyCommand");
|
|
11693
|
+
}
|
|
11601
11694
|
};
|
|
11602
|
-
__name(_GetSSHPublicKeyCommand, "GetSSHPublicKeyCommand");
|
|
11603
|
-
var GetSSHPublicKeyCommand = _GetSSHPublicKeyCommand;
|
|
11604
11695
|
|
|
11605
11696
|
// src/commands/GetUserCommand.ts
|
|
11606
11697
|
|
|
11607
11698
|
|
|
11608
11699
|
|
|
11609
|
-
var
|
|
11700
|
+
var GetUserCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
11610
11701
|
return [
|
|
11611
11702
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
11612
11703
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
11613
11704
|
];
|
|
11614
11705
|
}).s("AWSIdentityManagementV20100508", "GetUser", {}).n("IAMClient", "GetUserCommand").f(void 0, void 0).ser(se_GetUserCommand).de(de_GetUserCommand).build() {
|
|
11706
|
+
static {
|
|
11707
|
+
__name(this, "GetUserCommand");
|
|
11708
|
+
}
|
|
11615
11709
|
};
|
|
11616
|
-
__name(_GetUserCommand, "GetUserCommand");
|
|
11617
|
-
var GetUserCommand = _GetUserCommand;
|
|
11618
11710
|
|
|
11619
11711
|
// src/commands/GetUserPolicyCommand.ts
|
|
11620
11712
|
|
|
11621
11713
|
|
|
11622
11714
|
|
|
11623
|
-
var
|
|
11715
|
+
var GetUserPolicyCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
11624
11716
|
return [
|
|
11625
11717
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
11626
11718
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
11627
11719
|
];
|
|
11628
11720
|
}).s("AWSIdentityManagementV20100508", "GetUserPolicy", {}).n("IAMClient", "GetUserPolicyCommand").f(void 0, void 0).ser(se_GetUserPolicyCommand).de(de_GetUserPolicyCommand).build() {
|
|
11721
|
+
static {
|
|
11722
|
+
__name(this, "GetUserPolicyCommand");
|
|
11723
|
+
}
|
|
11629
11724
|
};
|
|
11630
|
-
__name(_GetUserPolicyCommand, "GetUserPolicyCommand");
|
|
11631
|
-
var GetUserPolicyCommand = _GetUserPolicyCommand;
|
|
11632
11725
|
|
|
11633
11726
|
// src/commands/ListAccessKeysCommand.ts
|
|
11634
11727
|
|
|
11635
11728
|
|
|
11636
11729
|
|
|
11637
|
-
var
|
|
11730
|
+
var ListAccessKeysCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
11638
11731
|
return [
|
|
11639
11732
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
11640
11733
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
11641
11734
|
];
|
|
11642
11735
|
}).s("AWSIdentityManagementV20100508", "ListAccessKeys", {}).n("IAMClient", "ListAccessKeysCommand").f(void 0, void 0).ser(se_ListAccessKeysCommand).de(de_ListAccessKeysCommand).build() {
|
|
11736
|
+
static {
|
|
11737
|
+
__name(this, "ListAccessKeysCommand");
|
|
11738
|
+
}
|
|
11643
11739
|
};
|
|
11644
|
-
__name(_ListAccessKeysCommand, "ListAccessKeysCommand");
|
|
11645
|
-
var ListAccessKeysCommand = _ListAccessKeysCommand;
|
|
11646
11740
|
|
|
11647
11741
|
// src/commands/ListAccountAliasesCommand.ts
|
|
11648
11742
|
|
|
11649
11743
|
|
|
11650
11744
|
|
|
11651
|
-
var
|
|
11745
|
+
var ListAccountAliasesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
11652
11746
|
return [
|
|
11653
11747
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
11654
11748
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
11655
11749
|
];
|
|
11656
11750
|
}).s("AWSIdentityManagementV20100508", "ListAccountAliases", {}).n("IAMClient", "ListAccountAliasesCommand").f(void 0, void 0).ser(se_ListAccountAliasesCommand).de(de_ListAccountAliasesCommand).build() {
|
|
11751
|
+
static {
|
|
11752
|
+
__name(this, "ListAccountAliasesCommand");
|
|
11753
|
+
}
|
|
11657
11754
|
};
|
|
11658
|
-
__name(_ListAccountAliasesCommand, "ListAccountAliasesCommand");
|
|
11659
|
-
var ListAccountAliasesCommand = _ListAccountAliasesCommand;
|
|
11660
11755
|
|
|
11661
11756
|
// src/commands/ListAttachedGroupPoliciesCommand.ts
|
|
11662
11757
|
|
|
11663
11758
|
|
|
11664
11759
|
|
|
11665
|
-
var
|
|
11760
|
+
var ListAttachedGroupPoliciesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
11666
11761
|
return [
|
|
11667
11762
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
11668
11763
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
11669
11764
|
];
|
|
11670
11765
|
}).s("AWSIdentityManagementV20100508", "ListAttachedGroupPolicies", {}).n("IAMClient", "ListAttachedGroupPoliciesCommand").f(void 0, void 0).ser(se_ListAttachedGroupPoliciesCommand).de(de_ListAttachedGroupPoliciesCommand).build() {
|
|
11766
|
+
static {
|
|
11767
|
+
__name(this, "ListAttachedGroupPoliciesCommand");
|
|
11768
|
+
}
|
|
11671
11769
|
};
|
|
11672
|
-
__name(_ListAttachedGroupPoliciesCommand, "ListAttachedGroupPoliciesCommand");
|
|
11673
|
-
var ListAttachedGroupPoliciesCommand = _ListAttachedGroupPoliciesCommand;
|
|
11674
11770
|
|
|
11675
11771
|
// src/commands/ListAttachedRolePoliciesCommand.ts
|
|
11676
11772
|
|
|
11677
11773
|
|
|
11678
11774
|
|
|
11679
|
-
var
|
|
11775
|
+
var ListAttachedRolePoliciesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
11680
11776
|
return [
|
|
11681
11777
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
11682
11778
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
11683
11779
|
];
|
|
11684
11780
|
}).s("AWSIdentityManagementV20100508", "ListAttachedRolePolicies", {}).n("IAMClient", "ListAttachedRolePoliciesCommand").f(void 0, void 0).ser(se_ListAttachedRolePoliciesCommand).de(de_ListAttachedRolePoliciesCommand).build() {
|
|
11781
|
+
static {
|
|
11782
|
+
__name(this, "ListAttachedRolePoliciesCommand");
|
|
11783
|
+
}
|
|
11685
11784
|
};
|
|
11686
|
-
__name(_ListAttachedRolePoliciesCommand, "ListAttachedRolePoliciesCommand");
|
|
11687
|
-
var ListAttachedRolePoliciesCommand = _ListAttachedRolePoliciesCommand;
|
|
11688
11785
|
|
|
11689
11786
|
// src/commands/ListAttachedUserPoliciesCommand.ts
|
|
11690
11787
|
|
|
11691
11788
|
|
|
11692
11789
|
|
|
11693
|
-
var
|
|
11790
|
+
var ListAttachedUserPoliciesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
11694
11791
|
return [
|
|
11695
11792
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
11696
11793
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
11697
11794
|
];
|
|
11698
11795
|
}).s("AWSIdentityManagementV20100508", "ListAttachedUserPolicies", {}).n("IAMClient", "ListAttachedUserPoliciesCommand").f(void 0, void 0).ser(se_ListAttachedUserPoliciesCommand).de(de_ListAttachedUserPoliciesCommand).build() {
|
|
11796
|
+
static {
|
|
11797
|
+
__name(this, "ListAttachedUserPoliciesCommand");
|
|
11798
|
+
}
|
|
11699
11799
|
};
|
|
11700
|
-
__name(_ListAttachedUserPoliciesCommand, "ListAttachedUserPoliciesCommand");
|
|
11701
|
-
var ListAttachedUserPoliciesCommand = _ListAttachedUserPoliciesCommand;
|
|
11702
11800
|
|
|
11703
11801
|
// src/commands/ListEntitiesForPolicyCommand.ts
|
|
11704
11802
|
|
|
11705
11803
|
|
|
11706
11804
|
|
|
11707
|
-
var
|
|
11805
|
+
var ListEntitiesForPolicyCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
11708
11806
|
return [
|
|
11709
11807
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
11710
11808
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
11711
11809
|
];
|
|
11712
11810
|
}).s("AWSIdentityManagementV20100508", "ListEntitiesForPolicy", {}).n("IAMClient", "ListEntitiesForPolicyCommand").f(void 0, void 0).ser(se_ListEntitiesForPolicyCommand).de(de_ListEntitiesForPolicyCommand).build() {
|
|
11811
|
+
static {
|
|
11812
|
+
__name(this, "ListEntitiesForPolicyCommand");
|
|
11813
|
+
}
|
|
11713
11814
|
};
|
|
11714
|
-
__name(_ListEntitiesForPolicyCommand, "ListEntitiesForPolicyCommand");
|
|
11715
|
-
var ListEntitiesForPolicyCommand = _ListEntitiesForPolicyCommand;
|
|
11716
11815
|
|
|
11717
11816
|
// src/commands/ListGroupPoliciesCommand.ts
|
|
11718
11817
|
|
|
11719
11818
|
|
|
11720
11819
|
|
|
11721
|
-
var
|
|
11820
|
+
var ListGroupPoliciesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
11722
11821
|
return [
|
|
11723
11822
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
11724
11823
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
11725
11824
|
];
|
|
11726
11825
|
}).s("AWSIdentityManagementV20100508", "ListGroupPolicies", {}).n("IAMClient", "ListGroupPoliciesCommand").f(void 0, void 0).ser(se_ListGroupPoliciesCommand).de(de_ListGroupPoliciesCommand).build() {
|
|
11826
|
+
static {
|
|
11827
|
+
__name(this, "ListGroupPoliciesCommand");
|
|
11828
|
+
}
|
|
11727
11829
|
};
|
|
11728
|
-
__name(_ListGroupPoliciesCommand, "ListGroupPoliciesCommand");
|
|
11729
|
-
var ListGroupPoliciesCommand = _ListGroupPoliciesCommand;
|
|
11730
11830
|
|
|
11731
11831
|
// src/commands/ListGroupsCommand.ts
|
|
11732
11832
|
|
|
11733
11833
|
|
|
11734
11834
|
|
|
11735
|
-
var
|
|
11835
|
+
var ListGroupsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
11736
11836
|
return [
|
|
11737
11837
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
11738
11838
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
11739
11839
|
];
|
|
11740
11840
|
}).s("AWSIdentityManagementV20100508", "ListGroups", {}).n("IAMClient", "ListGroupsCommand").f(void 0, void 0).ser(se_ListGroupsCommand).de(de_ListGroupsCommand).build() {
|
|
11841
|
+
static {
|
|
11842
|
+
__name(this, "ListGroupsCommand");
|
|
11843
|
+
}
|
|
11741
11844
|
};
|
|
11742
|
-
__name(_ListGroupsCommand, "ListGroupsCommand");
|
|
11743
|
-
var ListGroupsCommand = _ListGroupsCommand;
|
|
11744
11845
|
|
|
11745
11846
|
// src/commands/ListGroupsForUserCommand.ts
|
|
11746
11847
|
|
|
11747
11848
|
|
|
11748
11849
|
|
|
11749
|
-
var
|
|
11850
|
+
var ListGroupsForUserCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
11750
11851
|
return [
|
|
11751
11852
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
11752
11853
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
11753
11854
|
];
|
|
11754
11855
|
}).s("AWSIdentityManagementV20100508", "ListGroupsForUser", {}).n("IAMClient", "ListGroupsForUserCommand").f(void 0, void 0).ser(se_ListGroupsForUserCommand).de(de_ListGroupsForUserCommand).build() {
|
|
11856
|
+
static {
|
|
11857
|
+
__name(this, "ListGroupsForUserCommand");
|
|
11858
|
+
}
|
|
11755
11859
|
};
|
|
11756
|
-
__name(_ListGroupsForUserCommand, "ListGroupsForUserCommand");
|
|
11757
|
-
var ListGroupsForUserCommand = _ListGroupsForUserCommand;
|
|
11758
11860
|
|
|
11759
11861
|
// src/commands/ListInstanceProfilesCommand.ts
|
|
11760
11862
|
|
|
11761
11863
|
|
|
11762
11864
|
|
|
11763
|
-
var
|
|
11865
|
+
var ListInstanceProfilesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
11764
11866
|
return [
|
|
11765
11867
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
11766
11868
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
11767
11869
|
];
|
|
11768
11870
|
}).s("AWSIdentityManagementV20100508", "ListInstanceProfiles", {}).n("IAMClient", "ListInstanceProfilesCommand").f(void 0, void 0).ser(se_ListInstanceProfilesCommand).de(de_ListInstanceProfilesCommand).build() {
|
|
11871
|
+
static {
|
|
11872
|
+
__name(this, "ListInstanceProfilesCommand");
|
|
11873
|
+
}
|
|
11769
11874
|
};
|
|
11770
|
-
__name(_ListInstanceProfilesCommand, "ListInstanceProfilesCommand");
|
|
11771
|
-
var ListInstanceProfilesCommand = _ListInstanceProfilesCommand;
|
|
11772
11875
|
|
|
11773
11876
|
// src/commands/ListInstanceProfilesForRoleCommand.ts
|
|
11774
11877
|
|
|
11775
11878
|
|
|
11776
11879
|
|
|
11777
|
-
var
|
|
11880
|
+
var ListInstanceProfilesForRoleCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
11778
11881
|
return [
|
|
11779
11882
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
11780
11883
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
11781
11884
|
];
|
|
11782
11885
|
}).s("AWSIdentityManagementV20100508", "ListInstanceProfilesForRole", {}).n("IAMClient", "ListInstanceProfilesForRoleCommand").f(void 0, void 0).ser(se_ListInstanceProfilesForRoleCommand).de(de_ListInstanceProfilesForRoleCommand).build() {
|
|
11886
|
+
static {
|
|
11887
|
+
__name(this, "ListInstanceProfilesForRoleCommand");
|
|
11888
|
+
}
|
|
11783
11889
|
};
|
|
11784
|
-
__name(_ListInstanceProfilesForRoleCommand, "ListInstanceProfilesForRoleCommand");
|
|
11785
|
-
var ListInstanceProfilesForRoleCommand = _ListInstanceProfilesForRoleCommand;
|
|
11786
11890
|
|
|
11787
11891
|
// src/commands/ListInstanceProfileTagsCommand.ts
|
|
11788
11892
|
|
|
11789
11893
|
|
|
11790
11894
|
|
|
11791
|
-
var
|
|
11895
|
+
var ListInstanceProfileTagsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
11792
11896
|
return [
|
|
11793
11897
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
11794
11898
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
11795
11899
|
];
|
|
11796
11900
|
}).s("AWSIdentityManagementV20100508", "ListInstanceProfileTags", {}).n("IAMClient", "ListInstanceProfileTagsCommand").f(void 0, void 0).ser(se_ListInstanceProfileTagsCommand).de(de_ListInstanceProfileTagsCommand).build() {
|
|
11901
|
+
static {
|
|
11902
|
+
__name(this, "ListInstanceProfileTagsCommand");
|
|
11903
|
+
}
|
|
11797
11904
|
};
|
|
11798
|
-
__name(_ListInstanceProfileTagsCommand, "ListInstanceProfileTagsCommand");
|
|
11799
|
-
var ListInstanceProfileTagsCommand = _ListInstanceProfileTagsCommand;
|
|
11800
11905
|
|
|
11801
11906
|
// src/commands/ListMFADevicesCommand.ts
|
|
11802
11907
|
|
|
11803
11908
|
|
|
11804
11909
|
|
|
11805
|
-
var
|
|
11910
|
+
var ListMFADevicesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
11806
11911
|
return [
|
|
11807
11912
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
11808
11913
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
11809
11914
|
];
|
|
11810
11915
|
}).s("AWSIdentityManagementV20100508", "ListMFADevices", {}).n("IAMClient", "ListMFADevicesCommand").f(void 0, void 0).ser(se_ListMFADevicesCommand).de(de_ListMFADevicesCommand).build() {
|
|
11916
|
+
static {
|
|
11917
|
+
__name(this, "ListMFADevicesCommand");
|
|
11918
|
+
}
|
|
11811
11919
|
};
|
|
11812
|
-
__name(_ListMFADevicesCommand, "ListMFADevicesCommand");
|
|
11813
|
-
var ListMFADevicesCommand = _ListMFADevicesCommand;
|
|
11814
11920
|
|
|
11815
11921
|
// src/commands/ListMFADeviceTagsCommand.ts
|
|
11816
11922
|
|
|
11817
11923
|
|
|
11818
11924
|
|
|
11819
|
-
var
|
|
11925
|
+
var ListMFADeviceTagsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
11820
11926
|
return [
|
|
11821
11927
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
11822
11928
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
11823
11929
|
];
|
|
11824
11930
|
}).s("AWSIdentityManagementV20100508", "ListMFADeviceTags", {}).n("IAMClient", "ListMFADeviceTagsCommand").f(void 0, void 0).ser(se_ListMFADeviceTagsCommand).de(de_ListMFADeviceTagsCommand).build() {
|
|
11931
|
+
static {
|
|
11932
|
+
__name(this, "ListMFADeviceTagsCommand");
|
|
11933
|
+
}
|
|
11825
11934
|
};
|
|
11826
|
-
__name(_ListMFADeviceTagsCommand, "ListMFADeviceTagsCommand");
|
|
11827
|
-
var ListMFADeviceTagsCommand = _ListMFADeviceTagsCommand;
|
|
11828
11935
|
|
|
11829
11936
|
// src/commands/ListOpenIDConnectProvidersCommand.ts
|
|
11830
11937
|
|
|
11831
11938
|
|
|
11832
11939
|
|
|
11833
|
-
var
|
|
11940
|
+
var ListOpenIDConnectProvidersCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
11834
11941
|
return [
|
|
11835
11942
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
11836
11943
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
11837
11944
|
];
|
|
11838
11945
|
}).s("AWSIdentityManagementV20100508", "ListOpenIDConnectProviders", {}).n("IAMClient", "ListOpenIDConnectProvidersCommand").f(void 0, void 0).ser(se_ListOpenIDConnectProvidersCommand).de(de_ListOpenIDConnectProvidersCommand).build() {
|
|
11946
|
+
static {
|
|
11947
|
+
__name(this, "ListOpenIDConnectProvidersCommand");
|
|
11948
|
+
}
|
|
11839
11949
|
};
|
|
11840
|
-
__name(_ListOpenIDConnectProvidersCommand, "ListOpenIDConnectProvidersCommand");
|
|
11841
|
-
var ListOpenIDConnectProvidersCommand = _ListOpenIDConnectProvidersCommand;
|
|
11842
11950
|
|
|
11843
11951
|
// src/commands/ListOpenIDConnectProviderTagsCommand.ts
|
|
11844
11952
|
|
|
11845
11953
|
|
|
11846
11954
|
|
|
11847
|
-
var
|
|
11955
|
+
var ListOpenIDConnectProviderTagsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
11848
11956
|
return [
|
|
11849
11957
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
11850
11958
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
11851
11959
|
];
|
|
11852
11960
|
}).s("AWSIdentityManagementV20100508", "ListOpenIDConnectProviderTags", {}).n("IAMClient", "ListOpenIDConnectProviderTagsCommand").f(void 0, void 0).ser(se_ListOpenIDConnectProviderTagsCommand).de(de_ListOpenIDConnectProviderTagsCommand).build() {
|
|
11961
|
+
static {
|
|
11962
|
+
__name(this, "ListOpenIDConnectProviderTagsCommand");
|
|
11963
|
+
}
|
|
11853
11964
|
};
|
|
11854
|
-
__name(_ListOpenIDConnectProviderTagsCommand, "ListOpenIDConnectProviderTagsCommand");
|
|
11855
|
-
var ListOpenIDConnectProviderTagsCommand = _ListOpenIDConnectProviderTagsCommand;
|
|
11856
11965
|
|
|
11857
11966
|
// src/commands/ListOrganizationsFeaturesCommand.ts
|
|
11858
11967
|
|
|
11859
11968
|
|
|
11860
11969
|
|
|
11861
|
-
var
|
|
11970
|
+
var ListOrganizationsFeaturesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
11862
11971
|
return [
|
|
11863
11972
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
11864
11973
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
11865
11974
|
];
|
|
11866
11975
|
}).s("AWSIdentityManagementV20100508", "ListOrganizationsFeatures", {}).n("IAMClient", "ListOrganizationsFeaturesCommand").f(void 0, void 0).ser(se_ListOrganizationsFeaturesCommand).de(de_ListOrganizationsFeaturesCommand).build() {
|
|
11976
|
+
static {
|
|
11977
|
+
__name(this, "ListOrganizationsFeaturesCommand");
|
|
11978
|
+
}
|
|
11867
11979
|
};
|
|
11868
|
-
__name(_ListOrganizationsFeaturesCommand, "ListOrganizationsFeaturesCommand");
|
|
11869
|
-
var ListOrganizationsFeaturesCommand = _ListOrganizationsFeaturesCommand;
|
|
11870
11980
|
|
|
11871
11981
|
// src/commands/ListPoliciesCommand.ts
|
|
11872
11982
|
|
|
11873
11983
|
|
|
11874
11984
|
|
|
11875
|
-
var
|
|
11985
|
+
var ListPoliciesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
11876
11986
|
return [
|
|
11877
11987
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
11878
11988
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
11879
11989
|
];
|
|
11880
11990
|
}).s("AWSIdentityManagementV20100508", "ListPolicies", {}).n("IAMClient", "ListPoliciesCommand").f(void 0, void 0).ser(se_ListPoliciesCommand).de(de_ListPoliciesCommand).build() {
|
|
11991
|
+
static {
|
|
11992
|
+
__name(this, "ListPoliciesCommand");
|
|
11993
|
+
}
|
|
11881
11994
|
};
|
|
11882
|
-
__name(_ListPoliciesCommand, "ListPoliciesCommand");
|
|
11883
|
-
var ListPoliciesCommand = _ListPoliciesCommand;
|
|
11884
11995
|
|
|
11885
11996
|
// src/commands/ListPoliciesGrantingServiceAccessCommand.ts
|
|
11886
11997
|
|
|
11887
11998
|
|
|
11888
11999
|
|
|
11889
|
-
var
|
|
12000
|
+
var ListPoliciesGrantingServiceAccessCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
11890
12001
|
return [
|
|
11891
12002
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
11892
12003
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
11893
12004
|
];
|
|
11894
12005
|
}).s("AWSIdentityManagementV20100508", "ListPoliciesGrantingServiceAccess", {}).n("IAMClient", "ListPoliciesGrantingServiceAccessCommand").f(void 0, void 0).ser(se_ListPoliciesGrantingServiceAccessCommand).de(de_ListPoliciesGrantingServiceAccessCommand).build() {
|
|
12006
|
+
static {
|
|
12007
|
+
__name(this, "ListPoliciesGrantingServiceAccessCommand");
|
|
12008
|
+
}
|
|
11895
12009
|
};
|
|
11896
|
-
__name(_ListPoliciesGrantingServiceAccessCommand, "ListPoliciesGrantingServiceAccessCommand");
|
|
11897
|
-
var ListPoliciesGrantingServiceAccessCommand = _ListPoliciesGrantingServiceAccessCommand;
|
|
11898
12010
|
|
|
11899
12011
|
// src/commands/ListPolicyTagsCommand.ts
|
|
11900
12012
|
|
|
11901
12013
|
|
|
11902
12014
|
|
|
11903
|
-
var
|
|
12015
|
+
var ListPolicyTagsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
11904
12016
|
return [
|
|
11905
12017
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
11906
12018
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
11907
12019
|
];
|
|
11908
12020
|
}).s("AWSIdentityManagementV20100508", "ListPolicyTags", {}).n("IAMClient", "ListPolicyTagsCommand").f(void 0, void 0).ser(se_ListPolicyTagsCommand).de(de_ListPolicyTagsCommand).build() {
|
|
12021
|
+
static {
|
|
12022
|
+
__name(this, "ListPolicyTagsCommand");
|
|
12023
|
+
}
|
|
11909
12024
|
};
|
|
11910
|
-
__name(_ListPolicyTagsCommand, "ListPolicyTagsCommand");
|
|
11911
|
-
var ListPolicyTagsCommand = _ListPolicyTagsCommand;
|
|
11912
12025
|
|
|
11913
12026
|
// src/commands/ListPolicyVersionsCommand.ts
|
|
11914
12027
|
|
|
11915
12028
|
|
|
11916
12029
|
|
|
11917
|
-
var
|
|
12030
|
+
var ListPolicyVersionsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
11918
12031
|
return [
|
|
11919
12032
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
11920
12033
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
11921
12034
|
];
|
|
11922
12035
|
}).s("AWSIdentityManagementV20100508", "ListPolicyVersions", {}).n("IAMClient", "ListPolicyVersionsCommand").f(void 0, void 0).ser(se_ListPolicyVersionsCommand).de(de_ListPolicyVersionsCommand).build() {
|
|
12036
|
+
static {
|
|
12037
|
+
__name(this, "ListPolicyVersionsCommand");
|
|
12038
|
+
}
|
|
11923
12039
|
};
|
|
11924
|
-
__name(_ListPolicyVersionsCommand, "ListPolicyVersionsCommand");
|
|
11925
|
-
var ListPolicyVersionsCommand = _ListPolicyVersionsCommand;
|
|
11926
12040
|
|
|
11927
12041
|
// src/commands/ListRolePoliciesCommand.ts
|
|
11928
12042
|
|
|
11929
12043
|
|
|
11930
12044
|
|
|
11931
|
-
var
|
|
12045
|
+
var ListRolePoliciesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
11932
12046
|
return [
|
|
11933
12047
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
11934
12048
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
11935
12049
|
];
|
|
11936
12050
|
}).s("AWSIdentityManagementV20100508", "ListRolePolicies", {}).n("IAMClient", "ListRolePoliciesCommand").f(void 0, void 0).ser(se_ListRolePoliciesCommand).de(de_ListRolePoliciesCommand).build() {
|
|
12051
|
+
static {
|
|
12052
|
+
__name(this, "ListRolePoliciesCommand");
|
|
12053
|
+
}
|
|
11937
12054
|
};
|
|
11938
|
-
__name(_ListRolePoliciesCommand, "ListRolePoliciesCommand");
|
|
11939
|
-
var ListRolePoliciesCommand = _ListRolePoliciesCommand;
|
|
11940
12055
|
|
|
11941
12056
|
// src/commands/ListRolesCommand.ts
|
|
11942
12057
|
|
|
11943
12058
|
|
|
11944
12059
|
|
|
11945
|
-
var
|
|
12060
|
+
var ListRolesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
11946
12061
|
return [
|
|
11947
12062
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
11948
12063
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
11949
12064
|
];
|
|
11950
12065
|
}).s("AWSIdentityManagementV20100508", "ListRoles", {}).n("IAMClient", "ListRolesCommand").f(void 0, void 0).ser(se_ListRolesCommand).de(de_ListRolesCommand).build() {
|
|
12066
|
+
static {
|
|
12067
|
+
__name(this, "ListRolesCommand");
|
|
12068
|
+
}
|
|
11951
12069
|
};
|
|
11952
|
-
__name(_ListRolesCommand, "ListRolesCommand");
|
|
11953
|
-
var ListRolesCommand = _ListRolesCommand;
|
|
11954
12070
|
|
|
11955
12071
|
// src/commands/ListRoleTagsCommand.ts
|
|
11956
12072
|
|
|
11957
12073
|
|
|
11958
12074
|
|
|
11959
|
-
var
|
|
12075
|
+
var ListRoleTagsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
11960
12076
|
return [
|
|
11961
12077
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
11962
12078
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
11963
12079
|
];
|
|
11964
12080
|
}).s("AWSIdentityManagementV20100508", "ListRoleTags", {}).n("IAMClient", "ListRoleTagsCommand").f(void 0, void 0).ser(se_ListRoleTagsCommand).de(de_ListRoleTagsCommand).build() {
|
|
12081
|
+
static {
|
|
12082
|
+
__name(this, "ListRoleTagsCommand");
|
|
12083
|
+
}
|
|
11965
12084
|
};
|
|
11966
|
-
__name(_ListRoleTagsCommand, "ListRoleTagsCommand");
|
|
11967
|
-
var ListRoleTagsCommand = _ListRoleTagsCommand;
|
|
11968
12085
|
|
|
11969
12086
|
// src/commands/ListSAMLProvidersCommand.ts
|
|
11970
12087
|
|
|
11971
12088
|
|
|
11972
12089
|
|
|
11973
|
-
var
|
|
12090
|
+
var ListSAMLProvidersCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
11974
12091
|
return [
|
|
11975
12092
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
11976
12093
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
11977
12094
|
];
|
|
11978
12095
|
}).s("AWSIdentityManagementV20100508", "ListSAMLProviders", {}).n("IAMClient", "ListSAMLProvidersCommand").f(void 0, void 0).ser(se_ListSAMLProvidersCommand).de(de_ListSAMLProvidersCommand).build() {
|
|
12096
|
+
static {
|
|
12097
|
+
__name(this, "ListSAMLProvidersCommand");
|
|
12098
|
+
}
|
|
11979
12099
|
};
|
|
11980
|
-
__name(_ListSAMLProvidersCommand, "ListSAMLProvidersCommand");
|
|
11981
|
-
var ListSAMLProvidersCommand = _ListSAMLProvidersCommand;
|
|
11982
12100
|
|
|
11983
12101
|
// src/commands/ListSAMLProviderTagsCommand.ts
|
|
11984
12102
|
|
|
11985
12103
|
|
|
11986
12104
|
|
|
11987
|
-
var
|
|
12105
|
+
var ListSAMLProviderTagsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
11988
12106
|
return [
|
|
11989
12107
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
11990
12108
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
11991
12109
|
];
|
|
11992
12110
|
}).s("AWSIdentityManagementV20100508", "ListSAMLProviderTags", {}).n("IAMClient", "ListSAMLProviderTagsCommand").f(void 0, void 0).ser(se_ListSAMLProviderTagsCommand).de(de_ListSAMLProviderTagsCommand).build() {
|
|
12111
|
+
static {
|
|
12112
|
+
__name(this, "ListSAMLProviderTagsCommand");
|
|
12113
|
+
}
|
|
11993
12114
|
};
|
|
11994
|
-
__name(_ListSAMLProviderTagsCommand, "ListSAMLProviderTagsCommand");
|
|
11995
|
-
var ListSAMLProviderTagsCommand = _ListSAMLProviderTagsCommand;
|
|
11996
12115
|
|
|
11997
12116
|
// src/commands/ListServerCertificatesCommand.ts
|
|
11998
12117
|
|
|
11999
12118
|
|
|
12000
12119
|
|
|
12001
|
-
var
|
|
12120
|
+
var ListServerCertificatesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
12002
12121
|
return [
|
|
12003
12122
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
12004
12123
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
12005
12124
|
];
|
|
12006
12125
|
}).s("AWSIdentityManagementV20100508", "ListServerCertificates", {}).n("IAMClient", "ListServerCertificatesCommand").f(void 0, void 0).ser(se_ListServerCertificatesCommand).de(de_ListServerCertificatesCommand).build() {
|
|
12126
|
+
static {
|
|
12127
|
+
__name(this, "ListServerCertificatesCommand");
|
|
12128
|
+
}
|
|
12007
12129
|
};
|
|
12008
|
-
__name(_ListServerCertificatesCommand, "ListServerCertificatesCommand");
|
|
12009
|
-
var ListServerCertificatesCommand = _ListServerCertificatesCommand;
|
|
12010
12130
|
|
|
12011
12131
|
// src/commands/ListServerCertificateTagsCommand.ts
|
|
12012
12132
|
|
|
12013
12133
|
|
|
12014
12134
|
|
|
12015
|
-
var
|
|
12135
|
+
var ListServerCertificateTagsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
12016
12136
|
return [
|
|
12017
12137
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
12018
12138
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
12019
12139
|
];
|
|
12020
12140
|
}).s("AWSIdentityManagementV20100508", "ListServerCertificateTags", {}).n("IAMClient", "ListServerCertificateTagsCommand").f(void 0, void 0).ser(se_ListServerCertificateTagsCommand).de(de_ListServerCertificateTagsCommand).build() {
|
|
12141
|
+
static {
|
|
12142
|
+
__name(this, "ListServerCertificateTagsCommand");
|
|
12143
|
+
}
|
|
12021
12144
|
};
|
|
12022
|
-
__name(_ListServerCertificateTagsCommand, "ListServerCertificateTagsCommand");
|
|
12023
|
-
var ListServerCertificateTagsCommand = _ListServerCertificateTagsCommand;
|
|
12024
12145
|
|
|
12025
12146
|
// src/commands/ListServiceSpecificCredentialsCommand.ts
|
|
12026
12147
|
|
|
12027
12148
|
|
|
12028
12149
|
|
|
12029
|
-
var
|
|
12150
|
+
var ListServiceSpecificCredentialsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
12030
12151
|
return [
|
|
12031
12152
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
12032
12153
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
12033
12154
|
];
|
|
12034
12155
|
}).s("AWSIdentityManagementV20100508", "ListServiceSpecificCredentials", {}).n("IAMClient", "ListServiceSpecificCredentialsCommand").f(void 0, void 0).ser(se_ListServiceSpecificCredentialsCommand).de(de_ListServiceSpecificCredentialsCommand).build() {
|
|
12156
|
+
static {
|
|
12157
|
+
__name(this, "ListServiceSpecificCredentialsCommand");
|
|
12158
|
+
}
|
|
12035
12159
|
};
|
|
12036
|
-
__name(_ListServiceSpecificCredentialsCommand, "ListServiceSpecificCredentialsCommand");
|
|
12037
|
-
var ListServiceSpecificCredentialsCommand = _ListServiceSpecificCredentialsCommand;
|
|
12038
12160
|
|
|
12039
12161
|
// src/commands/ListSigningCertificatesCommand.ts
|
|
12040
12162
|
|
|
12041
12163
|
|
|
12042
12164
|
|
|
12043
|
-
var
|
|
12165
|
+
var ListSigningCertificatesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
12044
12166
|
return [
|
|
12045
12167
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
12046
12168
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
12047
12169
|
];
|
|
12048
12170
|
}).s("AWSIdentityManagementV20100508", "ListSigningCertificates", {}).n("IAMClient", "ListSigningCertificatesCommand").f(void 0, void 0).ser(se_ListSigningCertificatesCommand).de(de_ListSigningCertificatesCommand).build() {
|
|
12171
|
+
static {
|
|
12172
|
+
__name(this, "ListSigningCertificatesCommand");
|
|
12173
|
+
}
|
|
12049
12174
|
};
|
|
12050
|
-
__name(_ListSigningCertificatesCommand, "ListSigningCertificatesCommand");
|
|
12051
|
-
var ListSigningCertificatesCommand = _ListSigningCertificatesCommand;
|
|
12052
12175
|
|
|
12053
12176
|
// src/commands/ListSSHPublicKeysCommand.ts
|
|
12054
12177
|
|
|
12055
12178
|
|
|
12056
12179
|
|
|
12057
|
-
var
|
|
12180
|
+
var ListSSHPublicKeysCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
12058
12181
|
return [
|
|
12059
12182
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
12060
12183
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
12061
12184
|
];
|
|
12062
12185
|
}).s("AWSIdentityManagementV20100508", "ListSSHPublicKeys", {}).n("IAMClient", "ListSSHPublicKeysCommand").f(void 0, void 0).ser(se_ListSSHPublicKeysCommand).de(de_ListSSHPublicKeysCommand).build() {
|
|
12186
|
+
static {
|
|
12187
|
+
__name(this, "ListSSHPublicKeysCommand");
|
|
12188
|
+
}
|
|
12063
12189
|
};
|
|
12064
|
-
__name(_ListSSHPublicKeysCommand, "ListSSHPublicKeysCommand");
|
|
12065
|
-
var ListSSHPublicKeysCommand = _ListSSHPublicKeysCommand;
|
|
12066
12190
|
|
|
12067
12191
|
// src/commands/ListUserPoliciesCommand.ts
|
|
12068
12192
|
|
|
12069
12193
|
|
|
12070
12194
|
|
|
12071
|
-
var
|
|
12195
|
+
var ListUserPoliciesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
12072
12196
|
return [
|
|
12073
12197
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
12074
12198
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
12075
12199
|
];
|
|
12076
12200
|
}).s("AWSIdentityManagementV20100508", "ListUserPolicies", {}).n("IAMClient", "ListUserPoliciesCommand").f(void 0, void 0).ser(se_ListUserPoliciesCommand).de(de_ListUserPoliciesCommand).build() {
|
|
12201
|
+
static {
|
|
12202
|
+
__name(this, "ListUserPoliciesCommand");
|
|
12203
|
+
}
|
|
12077
12204
|
};
|
|
12078
|
-
__name(_ListUserPoliciesCommand, "ListUserPoliciesCommand");
|
|
12079
|
-
var ListUserPoliciesCommand = _ListUserPoliciesCommand;
|
|
12080
12205
|
|
|
12081
12206
|
// src/commands/ListUsersCommand.ts
|
|
12082
12207
|
|
|
12083
12208
|
|
|
12084
12209
|
|
|
12085
|
-
var
|
|
12210
|
+
var ListUsersCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
12086
12211
|
return [
|
|
12087
12212
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
12088
12213
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
12089
12214
|
];
|
|
12090
12215
|
}).s("AWSIdentityManagementV20100508", "ListUsers", {}).n("IAMClient", "ListUsersCommand").f(void 0, void 0).ser(se_ListUsersCommand).de(de_ListUsersCommand).build() {
|
|
12216
|
+
static {
|
|
12217
|
+
__name(this, "ListUsersCommand");
|
|
12218
|
+
}
|
|
12091
12219
|
};
|
|
12092
|
-
__name(_ListUsersCommand, "ListUsersCommand");
|
|
12093
|
-
var ListUsersCommand = _ListUsersCommand;
|
|
12094
12220
|
|
|
12095
12221
|
// src/commands/ListUserTagsCommand.ts
|
|
12096
12222
|
|
|
12097
12223
|
|
|
12098
12224
|
|
|
12099
|
-
var
|
|
12225
|
+
var ListUserTagsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
12100
12226
|
return [
|
|
12101
12227
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
12102
12228
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
12103
12229
|
];
|
|
12104
12230
|
}).s("AWSIdentityManagementV20100508", "ListUserTags", {}).n("IAMClient", "ListUserTagsCommand").f(void 0, void 0).ser(se_ListUserTagsCommand).de(de_ListUserTagsCommand).build() {
|
|
12231
|
+
static {
|
|
12232
|
+
__name(this, "ListUserTagsCommand");
|
|
12233
|
+
}
|
|
12105
12234
|
};
|
|
12106
|
-
__name(_ListUserTagsCommand, "ListUserTagsCommand");
|
|
12107
|
-
var ListUserTagsCommand = _ListUserTagsCommand;
|
|
12108
12235
|
|
|
12109
12236
|
// src/commands/ListVirtualMFADevicesCommand.ts
|
|
12110
12237
|
|
|
12111
12238
|
|
|
12112
12239
|
|
|
12113
|
-
var
|
|
12240
|
+
var ListVirtualMFADevicesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
12114
12241
|
return [
|
|
12115
12242
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
12116
12243
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
12117
12244
|
];
|
|
12118
12245
|
}).s("AWSIdentityManagementV20100508", "ListVirtualMFADevices", {}).n("IAMClient", "ListVirtualMFADevicesCommand").f(void 0, ListVirtualMFADevicesResponseFilterSensitiveLog).ser(se_ListVirtualMFADevicesCommand).de(de_ListVirtualMFADevicesCommand).build() {
|
|
12246
|
+
static {
|
|
12247
|
+
__name(this, "ListVirtualMFADevicesCommand");
|
|
12248
|
+
}
|
|
12119
12249
|
};
|
|
12120
|
-
__name(_ListVirtualMFADevicesCommand, "ListVirtualMFADevicesCommand");
|
|
12121
|
-
var ListVirtualMFADevicesCommand = _ListVirtualMFADevicesCommand;
|
|
12122
12250
|
|
|
12123
12251
|
// src/commands/PutGroupPolicyCommand.ts
|
|
12124
12252
|
|
|
12125
12253
|
|
|
12126
12254
|
|
|
12127
|
-
var
|
|
12255
|
+
var PutGroupPolicyCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
12128
12256
|
return [
|
|
12129
12257
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
12130
12258
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
12131
12259
|
];
|
|
12132
12260
|
}).s("AWSIdentityManagementV20100508", "PutGroupPolicy", {}).n("IAMClient", "PutGroupPolicyCommand").f(void 0, void 0).ser(se_PutGroupPolicyCommand).de(de_PutGroupPolicyCommand).build() {
|
|
12261
|
+
static {
|
|
12262
|
+
__name(this, "PutGroupPolicyCommand");
|
|
12263
|
+
}
|
|
12133
12264
|
};
|
|
12134
|
-
__name(_PutGroupPolicyCommand, "PutGroupPolicyCommand");
|
|
12135
|
-
var PutGroupPolicyCommand = _PutGroupPolicyCommand;
|
|
12136
12265
|
|
|
12137
12266
|
// src/commands/PutRolePermissionsBoundaryCommand.ts
|
|
12138
12267
|
|
|
12139
12268
|
|
|
12140
12269
|
|
|
12141
|
-
var
|
|
12270
|
+
var PutRolePermissionsBoundaryCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
12142
12271
|
return [
|
|
12143
12272
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
12144
12273
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
12145
12274
|
];
|
|
12146
12275
|
}).s("AWSIdentityManagementV20100508", "PutRolePermissionsBoundary", {}).n("IAMClient", "PutRolePermissionsBoundaryCommand").f(void 0, void 0).ser(se_PutRolePermissionsBoundaryCommand).de(de_PutRolePermissionsBoundaryCommand).build() {
|
|
12276
|
+
static {
|
|
12277
|
+
__name(this, "PutRolePermissionsBoundaryCommand");
|
|
12278
|
+
}
|
|
12147
12279
|
};
|
|
12148
|
-
__name(_PutRolePermissionsBoundaryCommand, "PutRolePermissionsBoundaryCommand");
|
|
12149
|
-
var PutRolePermissionsBoundaryCommand = _PutRolePermissionsBoundaryCommand;
|
|
12150
12280
|
|
|
12151
12281
|
// src/commands/PutRolePolicyCommand.ts
|
|
12152
12282
|
|
|
12153
12283
|
|
|
12154
12284
|
|
|
12155
|
-
var
|
|
12285
|
+
var PutRolePolicyCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
12156
12286
|
return [
|
|
12157
12287
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
12158
12288
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
12159
12289
|
];
|
|
12160
12290
|
}).s("AWSIdentityManagementV20100508", "PutRolePolicy", {}).n("IAMClient", "PutRolePolicyCommand").f(void 0, void 0).ser(se_PutRolePolicyCommand).de(de_PutRolePolicyCommand).build() {
|
|
12291
|
+
static {
|
|
12292
|
+
__name(this, "PutRolePolicyCommand");
|
|
12293
|
+
}
|
|
12161
12294
|
};
|
|
12162
|
-
__name(_PutRolePolicyCommand, "PutRolePolicyCommand");
|
|
12163
|
-
var PutRolePolicyCommand = _PutRolePolicyCommand;
|
|
12164
12295
|
|
|
12165
12296
|
// src/commands/PutUserPermissionsBoundaryCommand.ts
|
|
12166
12297
|
|
|
12167
12298
|
|
|
12168
12299
|
|
|
12169
|
-
var
|
|
12300
|
+
var PutUserPermissionsBoundaryCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
12170
12301
|
return [
|
|
12171
12302
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
12172
12303
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
12173
12304
|
];
|
|
12174
12305
|
}).s("AWSIdentityManagementV20100508", "PutUserPermissionsBoundary", {}).n("IAMClient", "PutUserPermissionsBoundaryCommand").f(void 0, void 0).ser(se_PutUserPermissionsBoundaryCommand).de(de_PutUserPermissionsBoundaryCommand).build() {
|
|
12306
|
+
static {
|
|
12307
|
+
__name(this, "PutUserPermissionsBoundaryCommand");
|
|
12308
|
+
}
|
|
12175
12309
|
};
|
|
12176
|
-
__name(_PutUserPermissionsBoundaryCommand, "PutUserPermissionsBoundaryCommand");
|
|
12177
|
-
var PutUserPermissionsBoundaryCommand = _PutUserPermissionsBoundaryCommand;
|
|
12178
12310
|
|
|
12179
12311
|
// src/commands/PutUserPolicyCommand.ts
|
|
12180
12312
|
|
|
12181
12313
|
|
|
12182
12314
|
|
|
12183
|
-
var
|
|
12315
|
+
var PutUserPolicyCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
12184
12316
|
return [
|
|
12185
12317
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
12186
12318
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
12187
12319
|
];
|
|
12188
12320
|
}).s("AWSIdentityManagementV20100508", "PutUserPolicy", {}).n("IAMClient", "PutUserPolicyCommand").f(void 0, void 0).ser(se_PutUserPolicyCommand).de(de_PutUserPolicyCommand).build() {
|
|
12321
|
+
static {
|
|
12322
|
+
__name(this, "PutUserPolicyCommand");
|
|
12323
|
+
}
|
|
12189
12324
|
};
|
|
12190
|
-
__name(_PutUserPolicyCommand, "PutUserPolicyCommand");
|
|
12191
|
-
var PutUserPolicyCommand = _PutUserPolicyCommand;
|
|
12192
12325
|
|
|
12193
12326
|
// src/commands/RemoveClientIDFromOpenIDConnectProviderCommand.ts
|
|
12194
12327
|
|
|
12195
12328
|
|
|
12196
12329
|
|
|
12197
|
-
var
|
|
12330
|
+
var RemoveClientIDFromOpenIDConnectProviderCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
12198
12331
|
return [
|
|
12199
12332
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
12200
12333
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
12201
12334
|
];
|
|
12202
12335
|
}).s("AWSIdentityManagementV20100508", "RemoveClientIDFromOpenIDConnectProvider", {}).n("IAMClient", "RemoveClientIDFromOpenIDConnectProviderCommand").f(void 0, void 0).ser(se_RemoveClientIDFromOpenIDConnectProviderCommand).de(de_RemoveClientIDFromOpenIDConnectProviderCommand).build() {
|
|
12336
|
+
static {
|
|
12337
|
+
__name(this, "RemoveClientIDFromOpenIDConnectProviderCommand");
|
|
12338
|
+
}
|
|
12203
12339
|
};
|
|
12204
|
-
__name(_RemoveClientIDFromOpenIDConnectProviderCommand, "RemoveClientIDFromOpenIDConnectProviderCommand");
|
|
12205
|
-
var RemoveClientIDFromOpenIDConnectProviderCommand = _RemoveClientIDFromOpenIDConnectProviderCommand;
|
|
12206
12340
|
|
|
12207
12341
|
// src/commands/RemoveRoleFromInstanceProfileCommand.ts
|
|
12208
12342
|
|
|
12209
12343
|
|
|
12210
12344
|
|
|
12211
|
-
var
|
|
12345
|
+
var RemoveRoleFromInstanceProfileCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
12212
12346
|
return [
|
|
12213
12347
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
12214
12348
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
12215
12349
|
];
|
|
12216
12350
|
}).s("AWSIdentityManagementV20100508", "RemoveRoleFromInstanceProfile", {}).n("IAMClient", "RemoveRoleFromInstanceProfileCommand").f(void 0, void 0).ser(se_RemoveRoleFromInstanceProfileCommand).de(de_RemoveRoleFromInstanceProfileCommand).build() {
|
|
12351
|
+
static {
|
|
12352
|
+
__name(this, "RemoveRoleFromInstanceProfileCommand");
|
|
12353
|
+
}
|
|
12217
12354
|
};
|
|
12218
|
-
__name(_RemoveRoleFromInstanceProfileCommand, "RemoveRoleFromInstanceProfileCommand");
|
|
12219
|
-
var RemoveRoleFromInstanceProfileCommand = _RemoveRoleFromInstanceProfileCommand;
|
|
12220
12355
|
|
|
12221
12356
|
// src/commands/RemoveUserFromGroupCommand.ts
|
|
12222
12357
|
|
|
12223
12358
|
|
|
12224
12359
|
|
|
12225
|
-
var
|
|
12360
|
+
var RemoveUserFromGroupCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
12226
12361
|
return [
|
|
12227
12362
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
12228
12363
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
12229
12364
|
];
|
|
12230
12365
|
}).s("AWSIdentityManagementV20100508", "RemoveUserFromGroup", {}).n("IAMClient", "RemoveUserFromGroupCommand").f(void 0, void 0).ser(se_RemoveUserFromGroupCommand).de(de_RemoveUserFromGroupCommand).build() {
|
|
12366
|
+
static {
|
|
12367
|
+
__name(this, "RemoveUserFromGroupCommand");
|
|
12368
|
+
}
|
|
12231
12369
|
};
|
|
12232
|
-
__name(_RemoveUserFromGroupCommand, "RemoveUserFromGroupCommand");
|
|
12233
|
-
var RemoveUserFromGroupCommand = _RemoveUserFromGroupCommand;
|
|
12234
12370
|
|
|
12235
12371
|
// src/commands/ResetServiceSpecificCredentialCommand.ts
|
|
12236
12372
|
|
|
12237
12373
|
|
|
12238
12374
|
|
|
12239
|
-
var
|
|
12375
|
+
var ResetServiceSpecificCredentialCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
12240
12376
|
return [
|
|
12241
12377
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
12242
12378
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
12243
12379
|
];
|
|
12244
12380
|
}).s("AWSIdentityManagementV20100508", "ResetServiceSpecificCredential", {}).n("IAMClient", "ResetServiceSpecificCredentialCommand").f(void 0, ResetServiceSpecificCredentialResponseFilterSensitiveLog).ser(se_ResetServiceSpecificCredentialCommand).de(de_ResetServiceSpecificCredentialCommand).build() {
|
|
12381
|
+
static {
|
|
12382
|
+
__name(this, "ResetServiceSpecificCredentialCommand");
|
|
12383
|
+
}
|
|
12245
12384
|
};
|
|
12246
|
-
__name(_ResetServiceSpecificCredentialCommand, "ResetServiceSpecificCredentialCommand");
|
|
12247
|
-
var ResetServiceSpecificCredentialCommand = _ResetServiceSpecificCredentialCommand;
|
|
12248
12385
|
|
|
12249
12386
|
// src/commands/ResyncMFADeviceCommand.ts
|
|
12250
12387
|
|
|
12251
12388
|
|
|
12252
12389
|
|
|
12253
|
-
var
|
|
12390
|
+
var ResyncMFADeviceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
12254
12391
|
return [
|
|
12255
12392
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
12256
12393
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
12257
12394
|
];
|
|
12258
12395
|
}).s("AWSIdentityManagementV20100508", "ResyncMFADevice", {}).n("IAMClient", "ResyncMFADeviceCommand").f(void 0, void 0).ser(se_ResyncMFADeviceCommand).de(de_ResyncMFADeviceCommand).build() {
|
|
12396
|
+
static {
|
|
12397
|
+
__name(this, "ResyncMFADeviceCommand");
|
|
12398
|
+
}
|
|
12259
12399
|
};
|
|
12260
|
-
__name(_ResyncMFADeviceCommand, "ResyncMFADeviceCommand");
|
|
12261
|
-
var ResyncMFADeviceCommand = _ResyncMFADeviceCommand;
|
|
12262
12400
|
|
|
12263
12401
|
// src/commands/SetDefaultPolicyVersionCommand.ts
|
|
12264
12402
|
|
|
12265
12403
|
|
|
12266
12404
|
|
|
12267
|
-
var
|
|
12405
|
+
var SetDefaultPolicyVersionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
12268
12406
|
return [
|
|
12269
12407
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
12270
12408
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
12271
12409
|
];
|
|
12272
12410
|
}).s("AWSIdentityManagementV20100508", "SetDefaultPolicyVersion", {}).n("IAMClient", "SetDefaultPolicyVersionCommand").f(void 0, void 0).ser(se_SetDefaultPolicyVersionCommand).de(de_SetDefaultPolicyVersionCommand).build() {
|
|
12411
|
+
static {
|
|
12412
|
+
__name(this, "SetDefaultPolicyVersionCommand");
|
|
12413
|
+
}
|
|
12273
12414
|
};
|
|
12274
|
-
__name(_SetDefaultPolicyVersionCommand, "SetDefaultPolicyVersionCommand");
|
|
12275
|
-
var SetDefaultPolicyVersionCommand = _SetDefaultPolicyVersionCommand;
|
|
12276
12415
|
|
|
12277
12416
|
// src/commands/SetSecurityTokenServicePreferencesCommand.ts
|
|
12278
12417
|
|
|
12279
12418
|
|
|
12280
12419
|
|
|
12281
|
-
var
|
|
12420
|
+
var SetSecurityTokenServicePreferencesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
12282
12421
|
return [
|
|
12283
12422
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
12284
12423
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
12285
12424
|
];
|
|
12286
12425
|
}).s("AWSIdentityManagementV20100508", "SetSecurityTokenServicePreferences", {}).n("IAMClient", "SetSecurityTokenServicePreferencesCommand").f(void 0, void 0).ser(se_SetSecurityTokenServicePreferencesCommand).de(de_SetSecurityTokenServicePreferencesCommand).build() {
|
|
12426
|
+
static {
|
|
12427
|
+
__name(this, "SetSecurityTokenServicePreferencesCommand");
|
|
12428
|
+
}
|
|
12287
12429
|
};
|
|
12288
|
-
__name(_SetSecurityTokenServicePreferencesCommand, "SetSecurityTokenServicePreferencesCommand");
|
|
12289
|
-
var SetSecurityTokenServicePreferencesCommand = _SetSecurityTokenServicePreferencesCommand;
|
|
12290
12430
|
|
|
12291
12431
|
// src/commands/SimulateCustomPolicyCommand.ts
|
|
12292
12432
|
|
|
12293
12433
|
|
|
12294
12434
|
|
|
12295
|
-
var
|
|
12435
|
+
var SimulateCustomPolicyCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
12296
12436
|
return [
|
|
12297
12437
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
12298
12438
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
12299
12439
|
];
|
|
12300
12440
|
}).s("AWSIdentityManagementV20100508", "SimulateCustomPolicy", {}).n("IAMClient", "SimulateCustomPolicyCommand").f(void 0, void 0).ser(se_SimulateCustomPolicyCommand).de(de_SimulateCustomPolicyCommand).build() {
|
|
12441
|
+
static {
|
|
12442
|
+
__name(this, "SimulateCustomPolicyCommand");
|
|
12443
|
+
}
|
|
12301
12444
|
};
|
|
12302
|
-
__name(_SimulateCustomPolicyCommand, "SimulateCustomPolicyCommand");
|
|
12303
|
-
var SimulateCustomPolicyCommand = _SimulateCustomPolicyCommand;
|
|
12304
12445
|
|
|
12305
12446
|
// src/commands/SimulatePrincipalPolicyCommand.ts
|
|
12306
12447
|
|
|
12307
12448
|
|
|
12308
12449
|
|
|
12309
|
-
var
|
|
12450
|
+
var SimulatePrincipalPolicyCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
12310
12451
|
return [
|
|
12311
12452
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
12312
12453
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
12313
12454
|
];
|
|
12314
12455
|
}).s("AWSIdentityManagementV20100508", "SimulatePrincipalPolicy", {}).n("IAMClient", "SimulatePrincipalPolicyCommand").f(void 0, void 0).ser(se_SimulatePrincipalPolicyCommand).de(de_SimulatePrincipalPolicyCommand).build() {
|
|
12456
|
+
static {
|
|
12457
|
+
__name(this, "SimulatePrincipalPolicyCommand");
|
|
12458
|
+
}
|
|
12315
12459
|
};
|
|
12316
|
-
__name(_SimulatePrincipalPolicyCommand, "SimulatePrincipalPolicyCommand");
|
|
12317
|
-
var SimulatePrincipalPolicyCommand = _SimulatePrincipalPolicyCommand;
|
|
12318
12460
|
|
|
12319
12461
|
// src/commands/TagInstanceProfileCommand.ts
|
|
12320
12462
|
|
|
12321
12463
|
|
|
12322
12464
|
|
|
12323
|
-
var
|
|
12465
|
+
var TagInstanceProfileCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
12324
12466
|
return [
|
|
12325
12467
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
12326
12468
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
12327
12469
|
];
|
|
12328
12470
|
}).s("AWSIdentityManagementV20100508", "TagInstanceProfile", {}).n("IAMClient", "TagInstanceProfileCommand").f(void 0, void 0).ser(se_TagInstanceProfileCommand).de(de_TagInstanceProfileCommand).build() {
|
|
12471
|
+
static {
|
|
12472
|
+
__name(this, "TagInstanceProfileCommand");
|
|
12473
|
+
}
|
|
12329
12474
|
};
|
|
12330
|
-
__name(_TagInstanceProfileCommand, "TagInstanceProfileCommand");
|
|
12331
|
-
var TagInstanceProfileCommand = _TagInstanceProfileCommand;
|
|
12332
12475
|
|
|
12333
12476
|
// src/commands/TagMFADeviceCommand.ts
|
|
12334
12477
|
|
|
12335
12478
|
|
|
12336
12479
|
|
|
12337
|
-
var
|
|
12480
|
+
var TagMFADeviceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
12338
12481
|
return [
|
|
12339
12482
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
12340
12483
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
12341
12484
|
];
|
|
12342
12485
|
}).s("AWSIdentityManagementV20100508", "TagMFADevice", {}).n("IAMClient", "TagMFADeviceCommand").f(void 0, void 0).ser(se_TagMFADeviceCommand).de(de_TagMFADeviceCommand).build() {
|
|
12486
|
+
static {
|
|
12487
|
+
__name(this, "TagMFADeviceCommand");
|
|
12488
|
+
}
|
|
12343
12489
|
};
|
|
12344
|
-
__name(_TagMFADeviceCommand, "TagMFADeviceCommand");
|
|
12345
|
-
var TagMFADeviceCommand = _TagMFADeviceCommand;
|
|
12346
12490
|
|
|
12347
12491
|
// src/commands/TagOpenIDConnectProviderCommand.ts
|
|
12348
12492
|
|
|
12349
12493
|
|
|
12350
12494
|
|
|
12351
|
-
var
|
|
12495
|
+
var TagOpenIDConnectProviderCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
12352
12496
|
return [
|
|
12353
12497
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
12354
12498
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
12355
12499
|
];
|
|
12356
12500
|
}).s("AWSIdentityManagementV20100508", "TagOpenIDConnectProvider", {}).n("IAMClient", "TagOpenIDConnectProviderCommand").f(void 0, void 0).ser(se_TagOpenIDConnectProviderCommand).de(de_TagOpenIDConnectProviderCommand).build() {
|
|
12501
|
+
static {
|
|
12502
|
+
__name(this, "TagOpenIDConnectProviderCommand");
|
|
12503
|
+
}
|
|
12357
12504
|
};
|
|
12358
|
-
__name(_TagOpenIDConnectProviderCommand, "TagOpenIDConnectProviderCommand");
|
|
12359
|
-
var TagOpenIDConnectProviderCommand = _TagOpenIDConnectProviderCommand;
|
|
12360
12505
|
|
|
12361
12506
|
// src/commands/TagPolicyCommand.ts
|
|
12362
12507
|
|
|
12363
12508
|
|
|
12364
12509
|
|
|
12365
|
-
var
|
|
12510
|
+
var TagPolicyCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
12366
12511
|
return [
|
|
12367
12512
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
12368
12513
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
12369
12514
|
];
|
|
12370
12515
|
}).s("AWSIdentityManagementV20100508", "TagPolicy", {}).n("IAMClient", "TagPolicyCommand").f(void 0, void 0).ser(se_TagPolicyCommand).de(de_TagPolicyCommand).build() {
|
|
12516
|
+
static {
|
|
12517
|
+
__name(this, "TagPolicyCommand");
|
|
12518
|
+
}
|
|
12371
12519
|
};
|
|
12372
|
-
__name(_TagPolicyCommand, "TagPolicyCommand");
|
|
12373
|
-
var TagPolicyCommand = _TagPolicyCommand;
|
|
12374
12520
|
|
|
12375
12521
|
// src/commands/TagRoleCommand.ts
|
|
12376
12522
|
|
|
12377
12523
|
|
|
12378
12524
|
|
|
12379
|
-
var
|
|
12525
|
+
var TagRoleCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
12380
12526
|
return [
|
|
12381
12527
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
12382
12528
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
12383
12529
|
];
|
|
12384
12530
|
}).s("AWSIdentityManagementV20100508", "TagRole", {}).n("IAMClient", "TagRoleCommand").f(void 0, void 0).ser(se_TagRoleCommand).de(de_TagRoleCommand).build() {
|
|
12531
|
+
static {
|
|
12532
|
+
__name(this, "TagRoleCommand");
|
|
12533
|
+
}
|
|
12385
12534
|
};
|
|
12386
|
-
__name(_TagRoleCommand, "TagRoleCommand");
|
|
12387
|
-
var TagRoleCommand = _TagRoleCommand;
|
|
12388
12535
|
|
|
12389
12536
|
// src/commands/TagSAMLProviderCommand.ts
|
|
12390
12537
|
|
|
12391
12538
|
|
|
12392
12539
|
|
|
12393
|
-
var
|
|
12540
|
+
var TagSAMLProviderCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
12394
12541
|
return [
|
|
12395
12542
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
12396
12543
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
12397
12544
|
];
|
|
12398
12545
|
}).s("AWSIdentityManagementV20100508", "TagSAMLProvider", {}).n("IAMClient", "TagSAMLProviderCommand").f(void 0, void 0).ser(se_TagSAMLProviderCommand).de(de_TagSAMLProviderCommand).build() {
|
|
12546
|
+
static {
|
|
12547
|
+
__name(this, "TagSAMLProviderCommand");
|
|
12548
|
+
}
|
|
12399
12549
|
};
|
|
12400
|
-
__name(_TagSAMLProviderCommand, "TagSAMLProviderCommand");
|
|
12401
|
-
var TagSAMLProviderCommand = _TagSAMLProviderCommand;
|
|
12402
12550
|
|
|
12403
12551
|
// src/commands/TagServerCertificateCommand.ts
|
|
12404
12552
|
|
|
12405
12553
|
|
|
12406
12554
|
|
|
12407
|
-
var
|
|
12555
|
+
var TagServerCertificateCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
12408
12556
|
return [
|
|
12409
12557
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
12410
12558
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
12411
12559
|
];
|
|
12412
12560
|
}).s("AWSIdentityManagementV20100508", "TagServerCertificate", {}).n("IAMClient", "TagServerCertificateCommand").f(void 0, void 0).ser(se_TagServerCertificateCommand).de(de_TagServerCertificateCommand).build() {
|
|
12561
|
+
static {
|
|
12562
|
+
__name(this, "TagServerCertificateCommand");
|
|
12563
|
+
}
|
|
12413
12564
|
};
|
|
12414
|
-
__name(_TagServerCertificateCommand, "TagServerCertificateCommand");
|
|
12415
|
-
var TagServerCertificateCommand = _TagServerCertificateCommand;
|
|
12416
12565
|
|
|
12417
12566
|
// src/commands/TagUserCommand.ts
|
|
12418
12567
|
|
|
12419
12568
|
|
|
12420
12569
|
|
|
12421
|
-
var
|
|
12570
|
+
var TagUserCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
12422
12571
|
return [
|
|
12423
12572
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
12424
12573
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
12425
12574
|
];
|
|
12426
12575
|
}).s("AWSIdentityManagementV20100508", "TagUser", {}).n("IAMClient", "TagUserCommand").f(void 0, void 0).ser(se_TagUserCommand).de(de_TagUserCommand).build() {
|
|
12576
|
+
static {
|
|
12577
|
+
__name(this, "TagUserCommand");
|
|
12578
|
+
}
|
|
12427
12579
|
};
|
|
12428
|
-
__name(_TagUserCommand, "TagUserCommand");
|
|
12429
|
-
var TagUserCommand = _TagUserCommand;
|
|
12430
12580
|
|
|
12431
12581
|
// src/commands/UntagInstanceProfileCommand.ts
|
|
12432
12582
|
|
|
12433
12583
|
|
|
12434
12584
|
|
|
12435
|
-
var
|
|
12585
|
+
var UntagInstanceProfileCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
12436
12586
|
return [
|
|
12437
12587
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
12438
12588
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
12439
12589
|
];
|
|
12440
12590
|
}).s("AWSIdentityManagementV20100508", "UntagInstanceProfile", {}).n("IAMClient", "UntagInstanceProfileCommand").f(void 0, void 0).ser(se_UntagInstanceProfileCommand).de(de_UntagInstanceProfileCommand).build() {
|
|
12591
|
+
static {
|
|
12592
|
+
__name(this, "UntagInstanceProfileCommand");
|
|
12593
|
+
}
|
|
12441
12594
|
};
|
|
12442
|
-
__name(_UntagInstanceProfileCommand, "UntagInstanceProfileCommand");
|
|
12443
|
-
var UntagInstanceProfileCommand = _UntagInstanceProfileCommand;
|
|
12444
12595
|
|
|
12445
12596
|
// src/commands/UntagMFADeviceCommand.ts
|
|
12446
12597
|
|
|
12447
12598
|
|
|
12448
12599
|
|
|
12449
|
-
var
|
|
12600
|
+
var UntagMFADeviceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
12450
12601
|
return [
|
|
12451
12602
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
12452
12603
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
12453
12604
|
];
|
|
12454
12605
|
}).s("AWSIdentityManagementV20100508", "UntagMFADevice", {}).n("IAMClient", "UntagMFADeviceCommand").f(void 0, void 0).ser(se_UntagMFADeviceCommand).de(de_UntagMFADeviceCommand).build() {
|
|
12606
|
+
static {
|
|
12607
|
+
__name(this, "UntagMFADeviceCommand");
|
|
12608
|
+
}
|
|
12455
12609
|
};
|
|
12456
|
-
__name(_UntagMFADeviceCommand, "UntagMFADeviceCommand");
|
|
12457
|
-
var UntagMFADeviceCommand = _UntagMFADeviceCommand;
|
|
12458
12610
|
|
|
12459
12611
|
// src/commands/UntagOpenIDConnectProviderCommand.ts
|
|
12460
12612
|
|
|
12461
12613
|
|
|
12462
12614
|
|
|
12463
|
-
var
|
|
12615
|
+
var UntagOpenIDConnectProviderCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
12464
12616
|
return [
|
|
12465
12617
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
12466
12618
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
12467
12619
|
];
|
|
12468
12620
|
}).s("AWSIdentityManagementV20100508", "UntagOpenIDConnectProvider", {}).n("IAMClient", "UntagOpenIDConnectProviderCommand").f(void 0, void 0).ser(se_UntagOpenIDConnectProviderCommand).de(de_UntagOpenIDConnectProviderCommand).build() {
|
|
12621
|
+
static {
|
|
12622
|
+
__name(this, "UntagOpenIDConnectProviderCommand");
|
|
12623
|
+
}
|
|
12469
12624
|
};
|
|
12470
|
-
__name(_UntagOpenIDConnectProviderCommand, "UntagOpenIDConnectProviderCommand");
|
|
12471
|
-
var UntagOpenIDConnectProviderCommand = _UntagOpenIDConnectProviderCommand;
|
|
12472
12625
|
|
|
12473
12626
|
// src/commands/UntagPolicyCommand.ts
|
|
12474
12627
|
|
|
12475
12628
|
|
|
12476
12629
|
|
|
12477
|
-
var
|
|
12630
|
+
var UntagPolicyCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
12478
12631
|
return [
|
|
12479
12632
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
12480
12633
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
12481
12634
|
];
|
|
12482
12635
|
}).s("AWSIdentityManagementV20100508", "UntagPolicy", {}).n("IAMClient", "UntagPolicyCommand").f(void 0, void 0).ser(se_UntagPolicyCommand).de(de_UntagPolicyCommand).build() {
|
|
12636
|
+
static {
|
|
12637
|
+
__name(this, "UntagPolicyCommand");
|
|
12638
|
+
}
|
|
12483
12639
|
};
|
|
12484
|
-
__name(_UntagPolicyCommand, "UntagPolicyCommand");
|
|
12485
|
-
var UntagPolicyCommand = _UntagPolicyCommand;
|
|
12486
12640
|
|
|
12487
12641
|
// src/commands/UntagRoleCommand.ts
|
|
12488
12642
|
|
|
12489
12643
|
|
|
12490
12644
|
|
|
12491
|
-
var
|
|
12645
|
+
var UntagRoleCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
12492
12646
|
return [
|
|
12493
12647
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
12494
12648
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
12495
12649
|
];
|
|
12496
12650
|
}).s("AWSIdentityManagementV20100508", "UntagRole", {}).n("IAMClient", "UntagRoleCommand").f(void 0, void 0).ser(se_UntagRoleCommand).de(de_UntagRoleCommand).build() {
|
|
12651
|
+
static {
|
|
12652
|
+
__name(this, "UntagRoleCommand");
|
|
12653
|
+
}
|
|
12497
12654
|
};
|
|
12498
|
-
__name(_UntagRoleCommand, "UntagRoleCommand");
|
|
12499
|
-
var UntagRoleCommand = _UntagRoleCommand;
|
|
12500
12655
|
|
|
12501
12656
|
// src/commands/UntagSAMLProviderCommand.ts
|
|
12502
12657
|
|
|
12503
12658
|
|
|
12504
12659
|
|
|
12505
|
-
var
|
|
12660
|
+
var UntagSAMLProviderCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
12506
12661
|
return [
|
|
12507
12662
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
12508
12663
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
12509
12664
|
];
|
|
12510
12665
|
}).s("AWSIdentityManagementV20100508", "UntagSAMLProvider", {}).n("IAMClient", "UntagSAMLProviderCommand").f(void 0, void 0).ser(se_UntagSAMLProviderCommand).de(de_UntagSAMLProviderCommand).build() {
|
|
12666
|
+
static {
|
|
12667
|
+
__name(this, "UntagSAMLProviderCommand");
|
|
12668
|
+
}
|
|
12511
12669
|
};
|
|
12512
|
-
__name(_UntagSAMLProviderCommand, "UntagSAMLProviderCommand");
|
|
12513
|
-
var UntagSAMLProviderCommand = _UntagSAMLProviderCommand;
|
|
12514
12670
|
|
|
12515
12671
|
// src/commands/UntagServerCertificateCommand.ts
|
|
12516
12672
|
|
|
12517
12673
|
|
|
12518
12674
|
|
|
12519
|
-
var
|
|
12675
|
+
var UntagServerCertificateCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
12520
12676
|
return [
|
|
12521
12677
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
12522
12678
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
12523
12679
|
];
|
|
12524
12680
|
}).s("AWSIdentityManagementV20100508", "UntagServerCertificate", {}).n("IAMClient", "UntagServerCertificateCommand").f(void 0, void 0).ser(se_UntagServerCertificateCommand).de(de_UntagServerCertificateCommand).build() {
|
|
12681
|
+
static {
|
|
12682
|
+
__name(this, "UntagServerCertificateCommand");
|
|
12683
|
+
}
|
|
12525
12684
|
};
|
|
12526
|
-
__name(_UntagServerCertificateCommand, "UntagServerCertificateCommand");
|
|
12527
|
-
var UntagServerCertificateCommand = _UntagServerCertificateCommand;
|
|
12528
12685
|
|
|
12529
12686
|
// src/commands/UntagUserCommand.ts
|
|
12530
12687
|
|
|
12531
12688
|
|
|
12532
12689
|
|
|
12533
|
-
var
|
|
12690
|
+
var UntagUserCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
12534
12691
|
return [
|
|
12535
12692
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
12536
12693
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
12537
12694
|
];
|
|
12538
12695
|
}).s("AWSIdentityManagementV20100508", "UntagUser", {}).n("IAMClient", "UntagUserCommand").f(void 0, void 0).ser(se_UntagUserCommand).de(de_UntagUserCommand).build() {
|
|
12696
|
+
static {
|
|
12697
|
+
__name(this, "UntagUserCommand");
|
|
12698
|
+
}
|
|
12539
12699
|
};
|
|
12540
|
-
__name(_UntagUserCommand, "UntagUserCommand");
|
|
12541
|
-
var UntagUserCommand = _UntagUserCommand;
|
|
12542
12700
|
|
|
12543
12701
|
// src/commands/UpdateAccessKeyCommand.ts
|
|
12544
12702
|
|
|
12545
12703
|
|
|
12546
12704
|
|
|
12547
|
-
var
|
|
12705
|
+
var UpdateAccessKeyCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
12548
12706
|
return [
|
|
12549
12707
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
12550
12708
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
12551
12709
|
];
|
|
12552
12710
|
}).s("AWSIdentityManagementV20100508", "UpdateAccessKey", {}).n("IAMClient", "UpdateAccessKeyCommand").f(void 0, void 0).ser(se_UpdateAccessKeyCommand).de(de_UpdateAccessKeyCommand).build() {
|
|
12711
|
+
static {
|
|
12712
|
+
__name(this, "UpdateAccessKeyCommand");
|
|
12713
|
+
}
|
|
12553
12714
|
};
|
|
12554
|
-
__name(_UpdateAccessKeyCommand, "UpdateAccessKeyCommand");
|
|
12555
|
-
var UpdateAccessKeyCommand = _UpdateAccessKeyCommand;
|
|
12556
12715
|
|
|
12557
12716
|
// src/commands/UpdateAccountPasswordPolicyCommand.ts
|
|
12558
12717
|
|
|
12559
12718
|
|
|
12560
12719
|
|
|
12561
|
-
var
|
|
12720
|
+
var UpdateAccountPasswordPolicyCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
12562
12721
|
return [
|
|
12563
12722
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
12564
12723
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
12565
12724
|
];
|
|
12566
12725
|
}).s("AWSIdentityManagementV20100508", "UpdateAccountPasswordPolicy", {}).n("IAMClient", "UpdateAccountPasswordPolicyCommand").f(void 0, void 0).ser(se_UpdateAccountPasswordPolicyCommand).de(de_UpdateAccountPasswordPolicyCommand).build() {
|
|
12726
|
+
static {
|
|
12727
|
+
__name(this, "UpdateAccountPasswordPolicyCommand");
|
|
12728
|
+
}
|
|
12567
12729
|
};
|
|
12568
|
-
__name(_UpdateAccountPasswordPolicyCommand, "UpdateAccountPasswordPolicyCommand");
|
|
12569
|
-
var UpdateAccountPasswordPolicyCommand = _UpdateAccountPasswordPolicyCommand;
|
|
12570
12730
|
|
|
12571
12731
|
// src/commands/UpdateAssumeRolePolicyCommand.ts
|
|
12572
12732
|
|
|
12573
12733
|
|
|
12574
12734
|
|
|
12575
|
-
var
|
|
12735
|
+
var UpdateAssumeRolePolicyCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
12576
12736
|
return [
|
|
12577
12737
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
12578
12738
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
12579
12739
|
];
|
|
12580
12740
|
}).s("AWSIdentityManagementV20100508", "UpdateAssumeRolePolicy", {}).n("IAMClient", "UpdateAssumeRolePolicyCommand").f(void 0, void 0).ser(se_UpdateAssumeRolePolicyCommand).de(de_UpdateAssumeRolePolicyCommand).build() {
|
|
12741
|
+
static {
|
|
12742
|
+
__name(this, "UpdateAssumeRolePolicyCommand");
|
|
12743
|
+
}
|
|
12581
12744
|
};
|
|
12582
|
-
__name(_UpdateAssumeRolePolicyCommand, "UpdateAssumeRolePolicyCommand");
|
|
12583
|
-
var UpdateAssumeRolePolicyCommand = _UpdateAssumeRolePolicyCommand;
|
|
12584
12745
|
|
|
12585
12746
|
// src/commands/UpdateGroupCommand.ts
|
|
12586
12747
|
|
|
12587
12748
|
|
|
12588
12749
|
|
|
12589
|
-
var
|
|
12750
|
+
var UpdateGroupCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
12590
12751
|
return [
|
|
12591
12752
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
12592
12753
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
12593
12754
|
];
|
|
12594
12755
|
}).s("AWSIdentityManagementV20100508", "UpdateGroup", {}).n("IAMClient", "UpdateGroupCommand").f(void 0, void 0).ser(se_UpdateGroupCommand).de(de_UpdateGroupCommand).build() {
|
|
12756
|
+
static {
|
|
12757
|
+
__name(this, "UpdateGroupCommand");
|
|
12758
|
+
}
|
|
12595
12759
|
};
|
|
12596
|
-
__name(_UpdateGroupCommand, "UpdateGroupCommand");
|
|
12597
|
-
var UpdateGroupCommand = _UpdateGroupCommand;
|
|
12598
12760
|
|
|
12599
12761
|
// src/commands/UpdateLoginProfileCommand.ts
|
|
12600
12762
|
|
|
12601
12763
|
|
|
12602
12764
|
|
|
12603
|
-
var
|
|
12765
|
+
var UpdateLoginProfileCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
12604
12766
|
return [
|
|
12605
12767
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
12606
12768
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
12607
12769
|
];
|
|
12608
12770
|
}).s("AWSIdentityManagementV20100508", "UpdateLoginProfile", {}).n("IAMClient", "UpdateLoginProfileCommand").f(UpdateLoginProfileRequestFilterSensitiveLog, void 0).ser(se_UpdateLoginProfileCommand).de(de_UpdateLoginProfileCommand).build() {
|
|
12771
|
+
static {
|
|
12772
|
+
__name(this, "UpdateLoginProfileCommand");
|
|
12773
|
+
}
|
|
12609
12774
|
};
|
|
12610
|
-
__name(_UpdateLoginProfileCommand, "UpdateLoginProfileCommand");
|
|
12611
|
-
var UpdateLoginProfileCommand = _UpdateLoginProfileCommand;
|
|
12612
12775
|
|
|
12613
12776
|
// src/commands/UpdateOpenIDConnectProviderThumbprintCommand.ts
|
|
12614
12777
|
|
|
12615
12778
|
|
|
12616
12779
|
|
|
12617
|
-
var
|
|
12780
|
+
var UpdateOpenIDConnectProviderThumbprintCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
12618
12781
|
return [
|
|
12619
12782
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
12620
12783
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
12621
12784
|
];
|
|
12622
12785
|
}).s("AWSIdentityManagementV20100508", "UpdateOpenIDConnectProviderThumbprint", {}).n("IAMClient", "UpdateOpenIDConnectProviderThumbprintCommand").f(void 0, void 0).ser(se_UpdateOpenIDConnectProviderThumbprintCommand).de(de_UpdateOpenIDConnectProviderThumbprintCommand).build() {
|
|
12786
|
+
static {
|
|
12787
|
+
__name(this, "UpdateOpenIDConnectProviderThumbprintCommand");
|
|
12788
|
+
}
|
|
12623
12789
|
};
|
|
12624
|
-
__name(_UpdateOpenIDConnectProviderThumbprintCommand, "UpdateOpenIDConnectProviderThumbprintCommand");
|
|
12625
|
-
var UpdateOpenIDConnectProviderThumbprintCommand = _UpdateOpenIDConnectProviderThumbprintCommand;
|
|
12626
12790
|
|
|
12627
12791
|
// src/commands/UpdateRoleCommand.ts
|
|
12628
12792
|
|
|
12629
12793
|
|
|
12630
12794
|
|
|
12631
|
-
var
|
|
12795
|
+
var UpdateRoleCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
12632
12796
|
return [
|
|
12633
12797
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
12634
12798
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
12635
12799
|
];
|
|
12636
12800
|
}).s("AWSIdentityManagementV20100508", "UpdateRole", {}).n("IAMClient", "UpdateRoleCommand").f(void 0, void 0).ser(se_UpdateRoleCommand).de(de_UpdateRoleCommand).build() {
|
|
12801
|
+
static {
|
|
12802
|
+
__name(this, "UpdateRoleCommand");
|
|
12803
|
+
}
|
|
12637
12804
|
};
|
|
12638
|
-
__name(_UpdateRoleCommand, "UpdateRoleCommand");
|
|
12639
|
-
var UpdateRoleCommand = _UpdateRoleCommand;
|
|
12640
12805
|
|
|
12641
12806
|
// src/commands/UpdateRoleDescriptionCommand.ts
|
|
12642
12807
|
|
|
12643
12808
|
|
|
12644
12809
|
|
|
12645
|
-
var
|
|
12810
|
+
var UpdateRoleDescriptionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
12646
12811
|
return [
|
|
12647
12812
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
12648
12813
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
12649
12814
|
];
|
|
12650
12815
|
}).s("AWSIdentityManagementV20100508", "UpdateRoleDescription", {}).n("IAMClient", "UpdateRoleDescriptionCommand").f(void 0, void 0).ser(se_UpdateRoleDescriptionCommand).de(de_UpdateRoleDescriptionCommand).build() {
|
|
12816
|
+
static {
|
|
12817
|
+
__name(this, "UpdateRoleDescriptionCommand");
|
|
12818
|
+
}
|
|
12651
12819
|
};
|
|
12652
|
-
__name(_UpdateRoleDescriptionCommand, "UpdateRoleDescriptionCommand");
|
|
12653
|
-
var UpdateRoleDescriptionCommand = _UpdateRoleDescriptionCommand;
|
|
12654
12820
|
|
|
12655
12821
|
// src/commands/UpdateSAMLProviderCommand.ts
|
|
12656
12822
|
|
|
12657
12823
|
|
|
12658
12824
|
|
|
12659
|
-
var
|
|
12825
|
+
var UpdateSAMLProviderCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
12660
12826
|
return [
|
|
12661
12827
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
12662
12828
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
12663
12829
|
];
|
|
12664
12830
|
}).s("AWSIdentityManagementV20100508", "UpdateSAMLProvider", {}).n("IAMClient", "UpdateSAMLProviderCommand").f(void 0, void 0).ser(se_UpdateSAMLProviderCommand).de(de_UpdateSAMLProviderCommand).build() {
|
|
12831
|
+
static {
|
|
12832
|
+
__name(this, "UpdateSAMLProviderCommand");
|
|
12833
|
+
}
|
|
12665
12834
|
};
|
|
12666
|
-
__name(_UpdateSAMLProviderCommand, "UpdateSAMLProviderCommand");
|
|
12667
|
-
var UpdateSAMLProviderCommand = _UpdateSAMLProviderCommand;
|
|
12668
12835
|
|
|
12669
12836
|
// src/commands/UpdateServerCertificateCommand.ts
|
|
12670
12837
|
|
|
12671
12838
|
|
|
12672
12839
|
|
|
12673
|
-
var
|
|
12840
|
+
var UpdateServerCertificateCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
12674
12841
|
return [
|
|
12675
12842
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
12676
12843
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
12677
12844
|
];
|
|
12678
12845
|
}).s("AWSIdentityManagementV20100508", "UpdateServerCertificate", {}).n("IAMClient", "UpdateServerCertificateCommand").f(void 0, void 0).ser(se_UpdateServerCertificateCommand).de(de_UpdateServerCertificateCommand).build() {
|
|
12846
|
+
static {
|
|
12847
|
+
__name(this, "UpdateServerCertificateCommand");
|
|
12848
|
+
}
|
|
12679
12849
|
};
|
|
12680
|
-
__name(_UpdateServerCertificateCommand, "UpdateServerCertificateCommand");
|
|
12681
|
-
var UpdateServerCertificateCommand = _UpdateServerCertificateCommand;
|
|
12682
12850
|
|
|
12683
12851
|
// src/commands/UpdateServiceSpecificCredentialCommand.ts
|
|
12684
12852
|
|
|
12685
12853
|
|
|
12686
12854
|
|
|
12687
|
-
var
|
|
12855
|
+
var UpdateServiceSpecificCredentialCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
12688
12856
|
return [
|
|
12689
12857
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
12690
12858
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
12691
12859
|
];
|
|
12692
12860
|
}).s("AWSIdentityManagementV20100508", "UpdateServiceSpecificCredential", {}).n("IAMClient", "UpdateServiceSpecificCredentialCommand").f(void 0, void 0).ser(se_UpdateServiceSpecificCredentialCommand).de(de_UpdateServiceSpecificCredentialCommand).build() {
|
|
12861
|
+
static {
|
|
12862
|
+
__name(this, "UpdateServiceSpecificCredentialCommand");
|
|
12863
|
+
}
|
|
12693
12864
|
};
|
|
12694
|
-
__name(_UpdateServiceSpecificCredentialCommand, "UpdateServiceSpecificCredentialCommand");
|
|
12695
|
-
var UpdateServiceSpecificCredentialCommand = _UpdateServiceSpecificCredentialCommand;
|
|
12696
12865
|
|
|
12697
12866
|
// src/commands/UpdateSigningCertificateCommand.ts
|
|
12698
12867
|
|
|
12699
12868
|
|
|
12700
12869
|
|
|
12701
|
-
var
|
|
12870
|
+
var UpdateSigningCertificateCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
12702
12871
|
return [
|
|
12703
12872
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
12704
12873
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
12705
12874
|
];
|
|
12706
12875
|
}).s("AWSIdentityManagementV20100508", "UpdateSigningCertificate", {}).n("IAMClient", "UpdateSigningCertificateCommand").f(void 0, void 0).ser(se_UpdateSigningCertificateCommand).de(de_UpdateSigningCertificateCommand).build() {
|
|
12876
|
+
static {
|
|
12877
|
+
__name(this, "UpdateSigningCertificateCommand");
|
|
12878
|
+
}
|
|
12707
12879
|
};
|
|
12708
|
-
__name(_UpdateSigningCertificateCommand, "UpdateSigningCertificateCommand");
|
|
12709
|
-
var UpdateSigningCertificateCommand = _UpdateSigningCertificateCommand;
|
|
12710
12880
|
|
|
12711
12881
|
// src/commands/UpdateSSHPublicKeyCommand.ts
|
|
12712
12882
|
|
|
12713
12883
|
|
|
12714
12884
|
|
|
12715
|
-
var
|
|
12885
|
+
var UpdateSSHPublicKeyCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
12716
12886
|
return [
|
|
12717
12887
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
12718
12888
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
12719
12889
|
];
|
|
12720
12890
|
}).s("AWSIdentityManagementV20100508", "UpdateSSHPublicKey", {}).n("IAMClient", "UpdateSSHPublicKeyCommand").f(void 0, void 0).ser(se_UpdateSSHPublicKeyCommand).de(de_UpdateSSHPublicKeyCommand).build() {
|
|
12891
|
+
static {
|
|
12892
|
+
__name(this, "UpdateSSHPublicKeyCommand");
|
|
12893
|
+
}
|
|
12721
12894
|
};
|
|
12722
|
-
__name(_UpdateSSHPublicKeyCommand, "UpdateSSHPublicKeyCommand");
|
|
12723
|
-
var UpdateSSHPublicKeyCommand = _UpdateSSHPublicKeyCommand;
|
|
12724
12895
|
|
|
12725
12896
|
// src/commands/UpdateUserCommand.ts
|
|
12726
12897
|
|
|
12727
12898
|
|
|
12728
12899
|
|
|
12729
|
-
var
|
|
12900
|
+
var UpdateUserCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
12730
12901
|
return [
|
|
12731
12902
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
12732
12903
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
12733
12904
|
];
|
|
12734
12905
|
}).s("AWSIdentityManagementV20100508", "UpdateUser", {}).n("IAMClient", "UpdateUserCommand").f(void 0, void 0).ser(se_UpdateUserCommand).de(de_UpdateUserCommand).build() {
|
|
12906
|
+
static {
|
|
12907
|
+
__name(this, "UpdateUserCommand");
|
|
12908
|
+
}
|
|
12735
12909
|
};
|
|
12736
|
-
__name(_UpdateUserCommand, "UpdateUserCommand");
|
|
12737
|
-
var UpdateUserCommand = _UpdateUserCommand;
|
|
12738
12910
|
|
|
12739
12911
|
// src/commands/UploadServerCertificateCommand.ts
|
|
12740
12912
|
|
|
12741
12913
|
|
|
12742
12914
|
|
|
12743
|
-
var
|
|
12915
|
+
var UploadServerCertificateCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
12744
12916
|
return [
|
|
12745
12917
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
12746
12918
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
12747
12919
|
];
|
|
12748
12920
|
}).s("AWSIdentityManagementV20100508", "UploadServerCertificate", {}).n("IAMClient", "UploadServerCertificateCommand").f(UploadServerCertificateRequestFilterSensitiveLog, void 0).ser(se_UploadServerCertificateCommand).de(de_UploadServerCertificateCommand).build() {
|
|
12921
|
+
static {
|
|
12922
|
+
__name(this, "UploadServerCertificateCommand");
|
|
12923
|
+
}
|
|
12749
12924
|
};
|
|
12750
|
-
__name(_UploadServerCertificateCommand, "UploadServerCertificateCommand");
|
|
12751
|
-
var UploadServerCertificateCommand = _UploadServerCertificateCommand;
|
|
12752
12925
|
|
|
12753
12926
|
// src/commands/UploadSigningCertificateCommand.ts
|
|
12754
12927
|
|
|
12755
12928
|
|
|
12756
12929
|
|
|
12757
|
-
var
|
|
12930
|
+
var UploadSigningCertificateCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
12758
12931
|
return [
|
|
12759
12932
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
12760
12933
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
12761
12934
|
];
|
|
12762
12935
|
}).s("AWSIdentityManagementV20100508", "UploadSigningCertificate", {}).n("IAMClient", "UploadSigningCertificateCommand").f(void 0, void 0).ser(se_UploadSigningCertificateCommand).de(de_UploadSigningCertificateCommand).build() {
|
|
12936
|
+
static {
|
|
12937
|
+
__name(this, "UploadSigningCertificateCommand");
|
|
12938
|
+
}
|
|
12763
12939
|
};
|
|
12764
|
-
__name(_UploadSigningCertificateCommand, "UploadSigningCertificateCommand");
|
|
12765
|
-
var UploadSigningCertificateCommand = _UploadSigningCertificateCommand;
|
|
12766
12940
|
|
|
12767
12941
|
// src/commands/UploadSSHPublicKeyCommand.ts
|
|
12768
12942
|
|
|
12769
12943
|
|
|
12770
12944
|
|
|
12771
|
-
var
|
|
12945
|
+
var UploadSSHPublicKeyCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
12772
12946
|
return [
|
|
12773
12947
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
12774
12948
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
12775
12949
|
];
|
|
12776
12950
|
}).s("AWSIdentityManagementV20100508", "UploadSSHPublicKey", {}).n("IAMClient", "UploadSSHPublicKeyCommand").f(void 0, void 0).ser(se_UploadSSHPublicKeyCommand).de(de_UploadSSHPublicKeyCommand).build() {
|
|
12951
|
+
static {
|
|
12952
|
+
__name(this, "UploadSSHPublicKeyCommand");
|
|
12953
|
+
}
|
|
12777
12954
|
};
|
|
12778
|
-
__name(_UploadSSHPublicKeyCommand, "UploadSSHPublicKeyCommand");
|
|
12779
|
-
var UploadSSHPublicKeyCommand = _UploadSSHPublicKeyCommand;
|
|
12780
12955
|
|
|
12781
12956
|
// src/IAM.ts
|
|
12782
12957
|
var commands = {
|
|
@@ -12945,10 +13120,11 @@ var commands = {
|
|
|
12945
13120
|
UploadSigningCertificateCommand,
|
|
12946
13121
|
UploadSSHPublicKeyCommand
|
|
12947
13122
|
};
|
|
12948
|
-
var
|
|
13123
|
+
var IAM = class extends IAMClient {
|
|
13124
|
+
static {
|
|
13125
|
+
__name(this, "IAM");
|
|
13126
|
+
}
|
|
12949
13127
|
};
|
|
12950
|
-
__name(_IAM, "IAM");
|
|
12951
|
-
var IAM = _IAM;
|
|
12952
13128
|
(0, import_smithy_client.createAggregatedClient)(commands, IAM);
|
|
12953
13129
|
|
|
12954
13130
|
// src/pagination/GetAccountAuthorizationDetailsPaginator.ts
|