@aws-sdk/client-acm-pca 3.50.0 → 3.53.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/CHANGELOG.md +27 -0
- package/dist-cjs/index.js +3 -0
- package/dist-cjs/models/ACMPCAServiceException.js +11 -0
- package/dist-cjs/models/models_0.js +250 -2
- package/dist-cjs/protocols/Aws_json1_1.js +271 -990
- package/dist-es/index.js +1 -0
- package/dist-es/models/ACMPCAServiceException.js +12 -0
- package/dist-es/models/models_0.js +230 -1
- package/dist-es/protocols/Aws_json1_1.js +566 -1045
- package/dist-types/index.d.ts +1 -0
- package/dist-types/models/ACMPCAServiceException.d.ts +10 -0
- package/dist-types/models/models_0.d.ts +135 -77
- package/dist-types/ts3.4/ACMPCA.d.ts +120 -0
- package/dist-types/ts3.4/ACMPCAClient.d.ts +96 -0
- package/dist-types/ts3.4/commands/CreateCertificateAuthorityAuditReportCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/CreateCertificateAuthorityCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/CreatePermissionCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DeleteCertificateAuthorityCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DeletePermissionCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DeletePolicyCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DescribeCertificateAuthorityAuditReportCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DescribeCertificateAuthorityCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetCertificateAuthorityCertificateCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetCertificateAuthorityCsrCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetCertificateCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetPolicyCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ImportCertificateAuthorityCertificateCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/IssueCertificateCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListCertificateAuthoritiesCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListPermissionsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListTagsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/PutPolicyCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/RestoreCertificateAuthorityCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/RevokeCertificateCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/TagCertificateAuthorityCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/UntagCertificateAuthorityCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/UpdateCertificateAuthorityCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/index.d.ts +23 -0
- package/dist-types/ts3.4/endpoints.d.ts +2 -0
- package/dist-types/ts3.4/index.d.ts +7 -0
- package/dist-types/ts3.4/models/ACMPCAServiceException.d.ts +6 -0
- package/dist-types/ts3.4/models/index.d.ts +1 -0
- package/dist-types/ts3.4/models/models_0.d.ts +937 -0
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
- package/dist-types/ts3.4/pagination/ListCertificateAuthoritiesPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/ListPermissionsPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/ListTagsPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/index.d.ts +4 -0
- package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +71 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +38 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +38 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +37 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -0
- package/dist-types/ts3.4/waiters/index.d.ts +3 -0
- package/dist-types/ts3.4/waiters/waitForAuditReportCreated.d.ts +7 -0
- package/dist-types/ts3.4/waiters/waitForCertificateAuthorityCSRCreated.d.ts +7 -0
- package/dist-types/ts3.4/waiters/waitForCertificateIssued.d.ts +7 -0
- package/package.json +34 -34
package/dist-types/index.d.ts
CHANGED
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
|
|
2
|
+
/**
|
|
3
|
+
* Base exception class for all service exceptions from ACMPCA service.
|
|
4
|
+
*/
|
|
5
|
+
export declare class ACMPCAServiceException extends __ServiceException {
|
|
6
|
+
/**
|
|
7
|
+
* @internal
|
|
8
|
+
*/
|
|
9
|
+
constructor(options: __ServiceExceptionOptions);
|
|
10
|
+
}
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { ACMPCAServiceException as __BaseException } from "./ACMPCAServiceException";
|
|
2
3
|
/**
|
|
3
4
|
* <p>Contains information about the certificate subject. The <code>Subject</code> field in
|
|
4
5
|
* the certificate identifies the entity that owns or controls the public key in the
|
|
@@ -681,37 +682,49 @@ export declare namespace CreateCertificateAuthorityResponse {
|
|
|
681
682
|
/**
|
|
682
683
|
* <p>One or more of the specified arguments was not valid.</p>
|
|
683
684
|
*/
|
|
684
|
-
export
|
|
685
|
-
name: "InvalidArgsException";
|
|
686
|
-
$fault: "client";
|
|
687
|
-
|
|
685
|
+
export declare class InvalidArgsException extends __BaseException {
|
|
686
|
+
readonly name: "InvalidArgsException";
|
|
687
|
+
readonly $fault: "client";
|
|
688
|
+
/**
|
|
689
|
+
* @internal
|
|
690
|
+
*/
|
|
691
|
+
constructor(opts: __ExceptionOptionType<InvalidArgsException, __BaseException>);
|
|
688
692
|
}
|
|
689
693
|
/**
|
|
690
694
|
* <p>The resource policy is invalid or is missing a required statement. For general
|
|
691
695
|
* information about IAM policy and statement structure, see <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/access_policies.html#access_policies-json">Overview of JSON Policies</a>.</p>
|
|
692
696
|
*/
|
|
693
|
-
export
|
|
694
|
-
name: "InvalidPolicyException";
|
|
695
|
-
$fault: "client";
|
|
696
|
-
|
|
697
|
+
export declare class InvalidPolicyException extends __BaseException {
|
|
698
|
+
readonly name: "InvalidPolicyException";
|
|
699
|
+
readonly $fault: "client";
|
|
700
|
+
/**
|
|
701
|
+
* @internal
|
|
702
|
+
*/
|
|
703
|
+
constructor(opts: __ExceptionOptionType<InvalidPolicyException, __BaseException>);
|
|
697
704
|
}
|
|
698
705
|
/**
|
|
699
706
|
* <p>The tag associated with the CA is not valid. The invalid argument is contained in the
|
|
700
707
|
* message field.</p>
|
|
701
708
|
*/
|
|
702
|
-
export
|
|
703
|
-
name: "InvalidTagException";
|
|
704
|
-
$fault: "client";
|
|
705
|
-
|
|
709
|
+
export declare class InvalidTagException extends __BaseException {
|
|
710
|
+
readonly name: "InvalidTagException";
|
|
711
|
+
readonly $fault: "client";
|
|
712
|
+
/**
|
|
713
|
+
* @internal
|
|
714
|
+
*/
|
|
715
|
+
constructor(opts: __ExceptionOptionType<InvalidTagException, __BaseException>);
|
|
706
716
|
}
|
|
707
717
|
/**
|
|
708
718
|
* <p>An ACM Private CA quota has been exceeded. See the exception message returned to determine the
|
|
709
719
|
* quota that was exceeded.</p>
|
|
710
720
|
*/
|
|
711
|
-
export
|
|
712
|
-
name: "LimitExceededException";
|
|
713
|
-
$fault: "client";
|
|
714
|
-
|
|
721
|
+
export declare class LimitExceededException extends __BaseException {
|
|
722
|
+
readonly name: "LimitExceededException";
|
|
723
|
+
readonly $fault: "client";
|
|
724
|
+
/**
|
|
725
|
+
* @internal
|
|
726
|
+
*/
|
|
727
|
+
constructor(opts: __ExceptionOptionType<LimitExceededException, __BaseException>);
|
|
715
728
|
}
|
|
716
729
|
export declare enum AuditReportResponseFormat {
|
|
717
730
|
CSV = "CSV",
|
|
@@ -761,43 +774,58 @@ export declare namespace CreateCertificateAuthorityAuditReportResponse {
|
|
|
761
774
|
* <p>The requested Amazon Resource Name (ARN) does not refer to an existing
|
|
762
775
|
* resource.</p>
|
|
763
776
|
*/
|
|
764
|
-
export
|
|
765
|
-
name: "InvalidArnException";
|
|
766
|
-
$fault: "client";
|
|
767
|
-
|
|
777
|
+
export declare class InvalidArnException extends __BaseException {
|
|
778
|
+
readonly name: "InvalidArnException";
|
|
779
|
+
readonly $fault: "client";
|
|
780
|
+
/**
|
|
781
|
+
* @internal
|
|
782
|
+
*/
|
|
783
|
+
constructor(opts: __ExceptionOptionType<InvalidArnException, __BaseException>);
|
|
768
784
|
}
|
|
769
785
|
/**
|
|
770
786
|
* <p>The state of the private CA does not allow this action to occur.</p>
|
|
771
787
|
*/
|
|
772
|
-
export
|
|
773
|
-
name: "InvalidStateException";
|
|
774
|
-
$fault: "client";
|
|
775
|
-
|
|
788
|
+
export declare class InvalidStateException extends __BaseException {
|
|
789
|
+
readonly name: "InvalidStateException";
|
|
790
|
+
readonly $fault: "client";
|
|
791
|
+
/**
|
|
792
|
+
* @internal
|
|
793
|
+
*/
|
|
794
|
+
constructor(opts: __ExceptionOptionType<InvalidStateException, __BaseException>);
|
|
776
795
|
}
|
|
777
796
|
/**
|
|
778
797
|
* <p>The request has failed for an unspecified reason.</p>
|
|
779
798
|
*/
|
|
780
|
-
export
|
|
781
|
-
name: "RequestFailedException";
|
|
782
|
-
$fault: "client";
|
|
783
|
-
|
|
799
|
+
export declare class RequestFailedException extends __BaseException {
|
|
800
|
+
readonly name: "RequestFailedException";
|
|
801
|
+
readonly $fault: "client";
|
|
802
|
+
/**
|
|
803
|
+
* @internal
|
|
804
|
+
*/
|
|
805
|
+
constructor(opts: __ExceptionOptionType<RequestFailedException, __BaseException>);
|
|
784
806
|
}
|
|
785
807
|
/**
|
|
786
808
|
* <p>Your request is already in progress.</p>
|
|
787
809
|
*/
|
|
788
|
-
export
|
|
789
|
-
name: "RequestInProgressException";
|
|
790
|
-
$fault: "client";
|
|
791
|
-
|
|
810
|
+
export declare class RequestInProgressException extends __BaseException {
|
|
811
|
+
readonly name: "RequestInProgressException";
|
|
812
|
+
readonly $fault: "client";
|
|
813
|
+
/**
|
|
814
|
+
* @internal
|
|
815
|
+
*/
|
|
816
|
+
constructor(opts: __ExceptionOptionType<RequestInProgressException, __BaseException>);
|
|
792
817
|
}
|
|
793
818
|
/**
|
|
794
819
|
* <p>A resource such as a private CA, S3 bucket, certificate, audit report, or policy
|
|
795
820
|
* cannot be found.</p>
|
|
796
821
|
*/
|
|
797
|
-
export
|
|
798
|
-
name: "ResourceNotFoundException";
|
|
799
|
-
$fault: "client";
|
|
800
|
-
|
|
822
|
+
export declare class ResourceNotFoundException extends __BaseException {
|
|
823
|
+
readonly name: "ResourceNotFoundException";
|
|
824
|
+
readonly $fault: "client";
|
|
825
|
+
/**
|
|
826
|
+
* @internal
|
|
827
|
+
*/
|
|
828
|
+
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
801
829
|
}
|
|
802
830
|
export declare enum ActionType {
|
|
803
831
|
GetCertificate = "GetCertificate",
|
|
@@ -839,18 +867,24 @@ export declare namespace CreatePermissionRequest {
|
|
|
839
867
|
/**
|
|
840
868
|
* <p>The designated permission has already been given to the user.</p>
|
|
841
869
|
*/
|
|
842
|
-
export
|
|
843
|
-
name: "PermissionAlreadyExistsException";
|
|
844
|
-
$fault: "client";
|
|
845
|
-
|
|
870
|
+
export declare class PermissionAlreadyExistsException extends __BaseException {
|
|
871
|
+
readonly name: "PermissionAlreadyExistsException";
|
|
872
|
+
readonly $fault: "client";
|
|
873
|
+
/**
|
|
874
|
+
* @internal
|
|
875
|
+
*/
|
|
876
|
+
constructor(opts: __ExceptionOptionType<PermissionAlreadyExistsException, __BaseException>);
|
|
846
877
|
}
|
|
847
878
|
/**
|
|
848
879
|
* <p>A previous update to your private CA is still ongoing.</p>
|
|
849
880
|
*/
|
|
850
|
-
export
|
|
851
|
-
name: "ConcurrentModificationException";
|
|
852
|
-
$fault: "client";
|
|
853
|
-
|
|
881
|
+
export declare class ConcurrentModificationException extends __BaseException {
|
|
882
|
+
readonly name: "ConcurrentModificationException";
|
|
883
|
+
readonly $fault: "client";
|
|
884
|
+
/**
|
|
885
|
+
* @internal
|
|
886
|
+
*/
|
|
887
|
+
constructor(opts: __ExceptionOptionType<ConcurrentModificationException, __BaseException>);
|
|
854
888
|
}
|
|
855
889
|
export interface DeleteCertificateAuthorityRequest {
|
|
856
890
|
/**
|
|
@@ -920,10 +954,13 @@ export declare namespace DeletePolicyRequest {
|
|
|
920
954
|
* subsequent actions. Verify that the specified parameters would not result in the caller
|
|
921
955
|
* being denied access to the resource. </p>
|
|
922
956
|
*/
|
|
923
|
-
export
|
|
924
|
-
name: "LockoutPreventedException";
|
|
925
|
-
$fault: "client";
|
|
926
|
-
|
|
957
|
+
export declare class LockoutPreventedException extends __BaseException {
|
|
958
|
+
readonly name: "LockoutPreventedException";
|
|
959
|
+
readonly $fault: "client";
|
|
960
|
+
/**
|
|
961
|
+
* @internal
|
|
962
|
+
*/
|
|
963
|
+
constructor(opts: __ExceptionOptionType<LockoutPreventedException, __BaseException>);
|
|
927
964
|
}
|
|
928
965
|
export interface DescribeCertificateAuthorityRequest {
|
|
929
966
|
/**
|
|
@@ -1242,10 +1279,13 @@ export declare namespace GetPolicyResponse {
|
|
|
1242
1279
|
* <p>The certificate authority certificate you are importing does not comply with
|
|
1243
1280
|
* conditions specified in the certificate that signed it.</p>
|
|
1244
1281
|
*/
|
|
1245
|
-
export
|
|
1246
|
-
name: "CertificateMismatchException";
|
|
1247
|
-
$fault: "client";
|
|
1248
|
-
|
|
1282
|
+
export declare class CertificateMismatchException extends __BaseException {
|
|
1283
|
+
readonly name: "CertificateMismatchException";
|
|
1284
|
+
readonly $fault: "client";
|
|
1285
|
+
/**
|
|
1286
|
+
* @internal
|
|
1287
|
+
*/
|
|
1288
|
+
constructor(opts: __ExceptionOptionType<CertificateMismatchException, __BaseException>);
|
|
1249
1289
|
}
|
|
1250
1290
|
export interface ImportCertificateAuthorityCertificateRequest {
|
|
1251
1291
|
/**
|
|
@@ -1280,18 +1320,24 @@ export declare namespace ImportCertificateAuthorityCertificateRequest {
|
|
|
1280
1320
|
/**
|
|
1281
1321
|
* <p>The request action cannot be performed or is prohibited.</p>
|
|
1282
1322
|
*/
|
|
1283
|
-
export
|
|
1284
|
-
name: "InvalidRequestException";
|
|
1285
|
-
$fault: "client";
|
|
1286
|
-
|
|
1323
|
+
export declare class InvalidRequestException extends __BaseException {
|
|
1324
|
+
readonly name: "InvalidRequestException";
|
|
1325
|
+
readonly $fault: "client";
|
|
1326
|
+
/**
|
|
1327
|
+
* @internal
|
|
1328
|
+
*/
|
|
1329
|
+
constructor(opts: __ExceptionOptionType<InvalidRequestException, __BaseException>);
|
|
1287
1330
|
}
|
|
1288
1331
|
/**
|
|
1289
1332
|
* <p>One or more fields in the certificate are invalid.</p>
|
|
1290
1333
|
*/
|
|
1291
|
-
export
|
|
1292
|
-
name: "MalformedCertificateException";
|
|
1293
|
-
$fault: "client";
|
|
1294
|
-
|
|
1334
|
+
export declare class MalformedCertificateException extends __BaseException {
|
|
1335
|
+
readonly name: "MalformedCertificateException";
|
|
1336
|
+
readonly $fault: "client";
|
|
1337
|
+
/**
|
|
1338
|
+
* @internal
|
|
1339
|
+
*/
|
|
1340
|
+
constructor(opts: __ExceptionOptionType<MalformedCertificateException, __BaseException>);
|
|
1295
1341
|
}
|
|
1296
1342
|
export declare enum PolicyQualifierId {
|
|
1297
1343
|
CPS = "CPS"
|
|
@@ -1655,19 +1701,25 @@ export declare namespace IssueCertificateResponse {
|
|
|
1655
1701
|
/**
|
|
1656
1702
|
* <p>The certificate signing request is invalid.</p>
|
|
1657
1703
|
*/
|
|
1658
|
-
export
|
|
1659
|
-
name: "MalformedCSRException";
|
|
1660
|
-
$fault: "client";
|
|
1661
|
-
|
|
1704
|
+
export declare class MalformedCSRException extends __BaseException {
|
|
1705
|
+
readonly name: "MalformedCSRException";
|
|
1706
|
+
readonly $fault: "client";
|
|
1707
|
+
/**
|
|
1708
|
+
* @internal
|
|
1709
|
+
*/
|
|
1710
|
+
constructor(opts: __ExceptionOptionType<MalformedCSRException, __BaseException>);
|
|
1662
1711
|
}
|
|
1663
1712
|
/**
|
|
1664
1713
|
* <p>The token specified in the <code>NextToken</code> argument is not valid. Use the token
|
|
1665
1714
|
* returned from your previous call to <a href="https://docs.aws.amazon.com/acm-pca/latest/APIReference/API_ListCertificateAuthorities.html">ListCertificateAuthorities</a>.</p>
|
|
1666
1715
|
*/
|
|
1667
|
-
export
|
|
1668
|
-
name: "InvalidNextTokenException";
|
|
1669
|
-
$fault: "client";
|
|
1670
|
-
|
|
1716
|
+
export declare class InvalidNextTokenException extends __BaseException {
|
|
1717
|
+
readonly name: "InvalidNextTokenException";
|
|
1718
|
+
readonly $fault: "client";
|
|
1719
|
+
/**
|
|
1720
|
+
* @internal
|
|
1721
|
+
*/
|
|
1722
|
+
constructor(opts: __ExceptionOptionType<InvalidNextTokenException, __BaseException>);
|
|
1671
1723
|
}
|
|
1672
1724
|
export declare enum ResourceOwner {
|
|
1673
1725
|
OTHER_ACCOUNTS = "OTHER_ACCOUNTS",
|
|
@@ -1893,10 +1945,13 @@ export declare namespace RestoreCertificateAuthorityRequest {
|
|
|
1893
1945
|
/**
|
|
1894
1946
|
* <p>Your request has already been completed.</p>
|
|
1895
1947
|
*/
|
|
1896
|
-
export
|
|
1897
|
-
name: "RequestAlreadyProcessedException";
|
|
1898
|
-
$fault: "client";
|
|
1899
|
-
|
|
1948
|
+
export declare class RequestAlreadyProcessedException extends __BaseException {
|
|
1949
|
+
readonly name: "RequestAlreadyProcessedException";
|
|
1950
|
+
readonly $fault: "client";
|
|
1951
|
+
/**
|
|
1952
|
+
* @internal
|
|
1953
|
+
*/
|
|
1954
|
+
constructor(opts: __ExceptionOptionType<RequestAlreadyProcessedException, __BaseException>);
|
|
1900
1955
|
}
|
|
1901
1956
|
export declare enum RevocationReason {
|
|
1902
1957
|
AFFILIATION_CHANGED = "AFFILIATION_CHANGED",
|
|
@@ -1967,10 +2022,13 @@ export declare namespace TagCertificateAuthorityRequest {
|
|
|
1967
2022
|
* <p>You can associate up to 50 tags with a private CA. Exception information is contained
|
|
1968
2023
|
* in the exception message field.</p>
|
|
1969
2024
|
*/
|
|
1970
|
-
export
|
|
1971
|
-
name: "TooManyTagsException";
|
|
1972
|
-
$fault: "client";
|
|
1973
|
-
|
|
2025
|
+
export declare class TooManyTagsException extends __BaseException {
|
|
2026
|
+
readonly name: "TooManyTagsException";
|
|
2027
|
+
readonly $fault: "client";
|
|
2028
|
+
/**
|
|
2029
|
+
* @internal
|
|
2030
|
+
*/
|
|
2031
|
+
constructor(opts: __ExceptionOptionType<TooManyTagsException, __BaseException>);
|
|
1974
2032
|
}
|
|
1975
2033
|
export interface UntagCertificateAuthorityRequest {
|
|
1976
2034
|
/**
|
|
@@ -0,0 +1,120 @@
|
|
|
1
|
+
import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
|
|
2
|
+
import { ACMPCAClient } from "./ACMPCAClient";
|
|
3
|
+
import { CreateCertificateAuthorityAuditReportCommandInput, CreateCertificateAuthorityAuditReportCommandOutput } from "./commands/CreateCertificateAuthorityAuditReportCommand";
|
|
4
|
+
import { CreateCertificateAuthorityCommandInput, CreateCertificateAuthorityCommandOutput } from "./commands/CreateCertificateAuthorityCommand";
|
|
5
|
+
import { CreatePermissionCommandInput, CreatePermissionCommandOutput } from "./commands/CreatePermissionCommand";
|
|
6
|
+
import { DeleteCertificateAuthorityCommandInput, DeleteCertificateAuthorityCommandOutput } from "./commands/DeleteCertificateAuthorityCommand";
|
|
7
|
+
import { DeletePermissionCommandInput, DeletePermissionCommandOutput } from "./commands/DeletePermissionCommand";
|
|
8
|
+
import { DeletePolicyCommandInput, DeletePolicyCommandOutput } from "./commands/DeletePolicyCommand";
|
|
9
|
+
import { DescribeCertificateAuthorityAuditReportCommandInput, DescribeCertificateAuthorityAuditReportCommandOutput } from "./commands/DescribeCertificateAuthorityAuditReportCommand";
|
|
10
|
+
import { DescribeCertificateAuthorityCommandInput, DescribeCertificateAuthorityCommandOutput } from "./commands/DescribeCertificateAuthorityCommand";
|
|
11
|
+
import { GetCertificateAuthorityCertificateCommandInput, GetCertificateAuthorityCertificateCommandOutput } from "./commands/GetCertificateAuthorityCertificateCommand";
|
|
12
|
+
import { GetCertificateAuthorityCsrCommandInput, GetCertificateAuthorityCsrCommandOutput } from "./commands/GetCertificateAuthorityCsrCommand";
|
|
13
|
+
import { GetCertificateCommandInput, GetCertificateCommandOutput } from "./commands/GetCertificateCommand";
|
|
14
|
+
import { GetPolicyCommandInput, GetPolicyCommandOutput } from "./commands/GetPolicyCommand";
|
|
15
|
+
import { ImportCertificateAuthorityCertificateCommandInput, ImportCertificateAuthorityCertificateCommandOutput } from "./commands/ImportCertificateAuthorityCertificateCommand";
|
|
16
|
+
import { IssueCertificateCommandInput, IssueCertificateCommandOutput } from "./commands/IssueCertificateCommand";
|
|
17
|
+
import { ListCertificateAuthoritiesCommandInput, ListCertificateAuthoritiesCommandOutput } from "./commands/ListCertificateAuthoritiesCommand";
|
|
18
|
+
import { ListPermissionsCommandInput, ListPermissionsCommandOutput } from "./commands/ListPermissionsCommand";
|
|
19
|
+
import { ListTagsCommandInput, ListTagsCommandOutput } from "./commands/ListTagsCommand";
|
|
20
|
+
import { PutPolicyCommandInput, PutPolicyCommandOutput } from "./commands/PutPolicyCommand";
|
|
21
|
+
import { RestoreCertificateAuthorityCommandInput, RestoreCertificateAuthorityCommandOutput } from "./commands/RestoreCertificateAuthorityCommand";
|
|
22
|
+
import { RevokeCertificateCommandInput, RevokeCertificateCommandOutput } from "./commands/RevokeCertificateCommand";
|
|
23
|
+
import { TagCertificateAuthorityCommandInput, TagCertificateAuthorityCommandOutput } from "./commands/TagCertificateAuthorityCommand";
|
|
24
|
+
import { UntagCertificateAuthorityCommandInput, UntagCertificateAuthorityCommandOutput } from "./commands/UntagCertificateAuthorityCommand";
|
|
25
|
+
import { UpdateCertificateAuthorityCommandInput, UpdateCertificateAuthorityCommandOutput } from "./commands/UpdateCertificateAuthorityCommand";
|
|
26
|
+
|
|
27
|
+
export declare class ACMPCA extends ACMPCAClient {
|
|
28
|
+
|
|
29
|
+
createCertificateAuthority(args: CreateCertificateAuthorityCommandInput, options?: __HttpHandlerOptions): Promise<CreateCertificateAuthorityCommandOutput>;
|
|
30
|
+
createCertificateAuthority(args: CreateCertificateAuthorityCommandInput, cb: (err: any, data?: CreateCertificateAuthorityCommandOutput) => void): void;
|
|
31
|
+
createCertificateAuthority(args: CreateCertificateAuthorityCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateCertificateAuthorityCommandOutput) => void): void;
|
|
32
|
+
|
|
33
|
+
createCertificateAuthorityAuditReport(args: CreateCertificateAuthorityAuditReportCommandInput, options?: __HttpHandlerOptions): Promise<CreateCertificateAuthorityAuditReportCommandOutput>;
|
|
34
|
+
createCertificateAuthorityAuditReport(args: CreateCertificateAuthorityAuditReportCommandInput, cb: (err: any, data?: CreateCertificateAuthorityAuditReportCommandOutput) => void): void;
|
|
35
|
+
createCertificateAuthorityAuditReport(args: CreateCertificateAuthorityAuditReportCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateCertificateAuthorityAuditReportCommandOutput) => void): void;
|
|
36
|
+
|
|
37
|
+
createPermission(args: CreatePermissionCommandInput, options?: __HttpHandlerOptions): Promise<CreatePermissionCommandOutput>;
|
|
38
|
+
createPermission(args: CreatePermissionCommandInput, cb: (err: any, data?: CreatePermissionCommandOutput) => void): void;
|
|
39
|
+
createPermission(args: CreatePermissionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreatePermissionCommandOutput) => void): void;
|
|
40
|
+
|
|
41
|
+
deleteCertificateAuthority(args: DeleteCertificateAuthorityCommandInput, options?: __HttpHandlerOptions): Promise<DeleteCertificateAuthorityCommandOutput>;
|
|
42
|
+
deleteCertificateAuthority(args: DeleteCertificateAuthorityCommandInput, cb: (err: any, data?: DeleteCertificateAuthorityCommandOutput) => void): void;
|
|
43
|
+
deleteCertificateAuthority(args: DeleteCertificateAuthorityCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteCertificateAuthorityCommandOutput) => void): void;
|
|
44
|
+
|
|
45
|
+
deletePermission(args: DeletePermissionCommandInput, options?: __HttpHandlerOptions): Promise<DeletePermissionCommandOutput>;
|
|
46
|
+
deletePermission(args: DeletePermissionCommandInput, cb: (err: any, data?: DeletePermissionCommandOutput) => void): void;
|
|
47
|
+
deletePermission(args: DeletePermissionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeletePermissionCommandOutput) => void): void;
|
|
48
|
+
|
|
49
|
+
deletePolicy(args: DeletePolicyCommandInput, options?: __HttpHandlerOptions): Promise<DeletePolicyCommandOutput>;
|
|
50
|
+
deletePolicy(args: DeletePolicyCommandInput, cb: (err: any, data?: DeletePolicyCommandOutput) => void): void;
|
|
51
|
+
deletePolicy(args: DeletePolicyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeletePolicyCommandOutput) => void): void;
|
|
52
|
+
|
|
53
|
+
describeCertificateAuthority(args: DescribeCertificateAuthorityCommandInput, options?: __HttpHandlerOptions): Promise<DescribeCertificateAuthorityCommandOutput>;
|
|
54
|
+
describeCertificateAuthority(args: DescribeCertificateAuthorityCommandInput, cb: (err: any, data?: DescribeCertificateAuthorityCommandOutput) => void): void;
|
|
55
|
+
describeCertificateAuthority(args: DescribeCertificateAuthorityCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeCertificateAuthorityCommandOutput) => void): void;
|
|
56
|
+
|
|
57
|
+
describeCertificateAuthorityAuditReport(args: DescribeCertificateAuthorityAuditReportCommandInput, options?: __HttpHandlerOptions): Promise<DescribeCertificateAuthorityAuditReportCommandOutput>;
|
|
58
|
+
describeCertificateAuthorityAuditReport(args: DescribeCertificateAuthorityAuditReportCommandInput, cb: (err: any, data?: DescribeCertificateAuthorityAuditReportCommandOutput) => void): void;
|
|
59
|
+
describeCertificateAuthorityAuditReport(args: DescribeCertificateAuthorityAuditReportCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeCertificateAuthorityAuditReportCommandOutput) => void): void;
|
|
60
|
+
|
|
61
|
+
getCertificate(args: GetCertificateCommandInput, options?: __HttpHandlerOptions): Promise<GetCertificateCommandOutput>;
|
|
62
|
+
getCertificate(args: GetCertificateCommandInput, cb: (err: any, data?: GetCertificateCommandOutput) => void): void;
|
|
63
|
+
getCertificate(args: GetCertificateCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetCertificateCommandOutput) => void): void;
|
|
64
|
+
|
|
65
|
+
getCertificateAuthorityCertificate(args: GetCertificateAuthorityCertificateCommandInput, options?: __HttpHandlerOptions): Promise<GetCertificateAuthorityCertificateCommandOutput>;
|
|
66
|
+
getCertificateAuthorityCertificate(args: GetCertificateAuthorityCertificateCommandInput, cb: (err: any, data?: GetCertificateAuthorityCertificateCommandOutput) => void): void;
|
|
67
|
+
getCertificateAuthorityCertificate(args: GetCertificateAuthorityCertificateCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetCertificateAuthorityCertificateCommandOutput) => void): void;
|
|
68
|
+
|
|
69
|
+
getCertificateAuthorityCsr(args: GetCertificateAuthorityCsrCommandInput, options?: __HttpHandlerOptions): Promise<GetCertificateAuthorityCsrCommandOutput>;
|
|
70
|
+
getCertificateAuthorityCsr(args: GetCertificateAuthorityCsrCommandInput, cb: (err: any, data?: GetCertificateAuthorityCsrCommandOutput) => void): void;
|
|
71
|
+
getCertificateAuthorityCsr(args: GetCertificateAuthorityCsrCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetCertificateAuthorityCsrCommandOutput) => void): void;
|
|
72
|
+
|
|
73
|
+
getPolicy(args: GetPolicyCommandInput, options?: __HttpHandlerOptions): Promise<GetPolicyCommandOutput>;
|
|
74
|
+
getPolicy(args: GetPolicyCommandInput, cb: (err: any, data?: GetPolicyCommandOutput) => void): void;
|
|
75
|
+
getPolicy(args: GetPolicyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetPolicyCommandOutput) => void): void;
|
|
76
|
+
|
|
77
|
+
importCertificateAuthorityCertificate(args: ImportCertificateAuthorityCertificateCommandInput, options?: __HttpHandlerOptions): Promise<ImportCertificateAuthorityCertificateCommandOutput>;
|
|
78
|
+
importCertificateAuthorityCertificate(args: ImportCertificateAuthorityCertificateCommandInput, cb: (err: any, data?: ImportCertificateAuthorityCertificateCommandOutput) => void): void;
|
|
79
|
+
importCertificateAuthorityCertificate(args: ImportCertificateAuthorityCertificateCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ImportCertificateAuthorityCertificateCommandOutput) => void): void;
|
|
80
|
+
|
|
81
|
+
issueCertificate(args: IssueCertificateCommandInput, options?: __HttpHandlerOptions): Promise<IssueCertificateCommandOutput>;
|
|
82
|
+
issueCertificate(args: IssueCertificateCommandInput, cb: (err: any, data?: IssueCertificateCommandOutput) => void): void;
|
|
83
|
+
issueCertificate(args: IssueCertificateCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: IssueCertificateCommandOutput) => void): void;
|
|
84
|
+
|
|
85
|
+
listCertificateAuthorities(args: ListCertificateAuthoritiesCommandInput, options?: __HttpHandlerOptions): Promise<ListCertificateAuthoritiesCommandOutput>;
|
|
86
|
+
listCertificateAuthorities(args: ListCertificateAuthoritiesCommandInput, cb: (err: any, data?: ListCertificateAuthoritiesCommandOutput) => void): void;
|
|
87
|
+
listCertificateAuthorities(args: ListCertificateAuthoritiesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListCertificateAuthoritiesCommandOutput) => void): void;
|
|
88
|
+
|
|
89
|
+
listPermissions(args: ListPermissionsCommandInput, options?: __HttpHandlerOptions): Promise<ListPermissionsCommandOutput>;
|
|
90
|
+
listPermissions(args: ListPermissionsCommandInput, cb: (err: any, data?: ListPermissionsCommandOutput) => void): void;
|
|
91
|
+
listPermissions(args: ListPermissionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListPermissionsCommandOutput) => void): void;
|
|
92
|
+
|
|
93
|
+
listTags(args: ListTagsCommandInput, options?: __HttpHandlerOptions): Promise<ListTagsCommandOutput>;
|
|
94
|
+
listTags(args: ListTagsCommandInput, cb: (err: any, data?: ListTagsCommandOutput) => void): void;
|
|
95
|
+
listTags(args: ListTagsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTagsCommandOutput) => void): void;
|
|
96
|
+
|
|
97
|
+
putPolicy(args: PutPolicyCommandInput, options?: __HttpHandlerOptions): Promise<PutPolicyCommandOutput>;
|
|
98
|
+
putPolicy(args: PutPolicyCommandInput, cb: (err: any, data?: PutPolicyCommandOutput) => void): void;
|
|
99
|
+
putPolicy(args: PutPolicyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PutPolicyCommandOutput) => void): void;
|
|
100
|
+
|
|
101
|
+
restoreCertificateAuthority(args: RestoreCertificateAuthorityCommandInput, options?: __HttpHandlerOptions): Promise<RestoreCertificateAuthorityCommandOutput>;
|
|
102
|
+
restoreCertificateAuthority(args: RestoreCertificateAuthorityCommandInput, cb: (err: any, data?: RestoreCertificateAuthorityCommandOutput) => void): void;
|
|
103
|
+
restoreCertificateAuthority(args: RestoreCertificateAuthorityCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: RestoreCertificateAuthorityCommandOutput) => void): void;
|
|
104
|
+
|
|
105
|
+
revokeCertificate(args: RevokeCertificateCommandInput, options?: __HttpHandlerOptions): Promise<RevokeCertificateCommandOutput>;
|
|
106
|
+
revokeCertificate(args: RevokeCertificateCommandInput, cb: (err: any, data?: RevokeCertificateCommandOutput) => void): void;
|
|
107
|
+
revokeCertificate(args: RevokeCertificateCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: RevokeCertificateCommandOutput) => void): void;
|
|
108
|
+
|
|
109
|
+
tagCertificateAuthority(args: TagCertificateAuthorityCommandInput, options?: __HttpHandlerOptions): Promise<TagCertificateAuthorityCommandOutput>;
|
|
110
|
+
tagCertificateAuthority(args: TagCertificateAuthorityCommandInput, cb: (err: any, data?: TagCertificateAuthorityCommandOutput) => void): void;
|
|
111
|
+
tagCertificateAuthority(args: TagCertificateAuthorityCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: TagCertificateAuthorityCommandOutput) => void): void;
|
|
112
|
+
|
|
113
|
+
untagCertificateAuthority(args: UntagCertificateAuthorityCommandInput, options?: __HttpHandlerOptions): Promise<UntagCertificateAuthorityCommandOutput>;
|
|
114
|
+
untagCertificateAuthority(args: UntagCertificateAuthorityCommandInput, cb: (err: any, data?: UntagCertificateAuthorityCommandOutput) => void): void;
|
|
115
|
+
untagCertificateAuthority(args: UntagCertificateAuthorityCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UntagCertificateAuthorityCommandOutput) => void): void;
|
|
116
|
+
|
|
117
|
+
updateCertificateAuthority(args: UpdateCertificateAuthorityCommandInput, options?: __HttpHandlerOptions): Promise<UpdateCertificateAuthorityCommandOutput>;
|
|
118
|
+
updateCertificateAuthority(args: UpdateCertificateAuthorityCommandInput, cb: (err: any, data?: UpdateCertificateAuthorityCommandOutput) => void): void;
|
|
119
|
+
updateCertificateAuthority(args: UpdateCertificateAuthorityCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateCertificateAuthorityCommandOutput) => void): void;
|
|
120
|
+
}
|
|
@@ -0,0 +1,96 @@
|
|
|
1
|
+
import { EndpointsInputConfig, EndpointsResolvedConfig, RegionInputConfig, RegionResolvedConfig } from "@aws-sdk/config-resolver";
|
|
2
|
+
import { HostHeaderInputConfig, HostHeaderResolvedConfig } from "@aws-sdk/middleware-host-header";
|
|
3
|
+
import { RetryInputConfig, RetryResolvedConfig } from "@aws-sdk/middleware-retry";
|
|
4
|
+
import { AwsAuthInputConfig, AwsAuthResolvedConfig } from "@aws-sdk/middleware-signing";
|
|
5
|
+
import { UserAgentInputConfig, UserAgentResolvedConfig } from "@aws-sdk/middleware-user-agent";
|
|
6
|
+
import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
|
|
7
|
+
import { Client as __Client, DefaultsMode, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@aws-sdk/smithy-client";
|
|
8
|
+
import { Credentials as __Credentials, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, RegionInfoProvider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@aws-sdk/types";
|
|
9
|
+
import { CreateCertificateAuthorityAuditReportCommandInput, CreateCertificateAuthorityAuditReportCommandOutput } from "./commands/CreateCertificateAuthorityAuditReportCommand";
|
|
10
|
+
import { CreateCertificateAuthorityCommandInput, CreateCertificateAuthorityCommandOutput } from "./commands/CreateCertificateAuthorityCommand";
|
|
11
|
+
import { CreatePermissionCommandInput, CreatePermissionCommandOutput } from "./commands/CreatePermissionCommand";
|
|
12
|
+
import { DeleteCertificateAuthorityCommandInput, DeleteCertificateAuthorityCommandOutput } from "./commands/DeleteCertificateAuthorityCommand";
|
|
13
|
+
import { DeletePermissionCommandInput, DeletePermissionCommandOutput } from "./commands/DeletePermissionCommand";
|
|
14
|
+
import { DeletePolicyCommandInput, DeletePolicyCommandOutput } from "./commands/DeletePolicyCommand";
|
|
15
|
+
import { DescribeCertificateAuthorityAuditReportCommandInput, DescribeCertificateAuthorityAuditReportCommandOutput } from "./commands/DescribeCertificateAuthorityAuditReportCommand";
|
|
16
|
+
import { DescribeCertificateAuthorityCommandInput, DescribeCertificateAuthorityCommandOutput } from "./commands/DescribeCertificateAuthorityCommand";
|
|
17
|
+
import { GetCertificateAuthorityCertificateCommandInput, GetCertificateAuthorityCertificateCommandOutput } from "./commands/GetCertificateAuthorityCertificateCommand";
|
|
18
|
+
import { GetCertificateAuthorityCsrCommandInput, GetCertificateAuthorityCsrCommandOutput } from "./commands/GetCertificateAuthorityCsrCommand";
|
|
19
|
+
import { GetCertificateCommandInput, GetCertificateCommandOutput } from "./commands/GetCertificateCommand";
|
|
20
|
+
import { GetPolicyCommandInput, GetPolicyCommandOutput } from "./commands/GetPolicyCommand";
|
|
21
|
+
import { ImportCertificateAuthorityCertificateCommandInput, ImportCertificateAuthorityCertificateCommandOutput } from "./commands/ImportCertificateAuthorityCertificateCommand";
|
|
22
|
+
import { IssueCertificateCommandInput, IssueCertificateCommandOutput } from "./commands/IssueCertificateCommand";
|
|
23
|
+
import { ListCertificateAuthoritiesCommandInput, ListCertificateAuthoritiesCommandOutput } from "./commands/ListCertificateAuthoritiesCommand";
|
|
24
|
+
import { ListPermissionsCommandInput, ListPermissionsCommandOutput } from "./commands/ListPermissionsCommand";
|
|
25
|
+
import { ListTagsCommandInput, ListTagsCommandOutput } from "./commands/ListTagsCommand";
|
|
26
|
+
import { PutPolicyCommandInput, PutPolicyCommandOutput } from "./commands/PutPolicyCommand";
|
|
27
|
+
import { RestoreCertificateAuthorityCommandInput, RestoreCertificateAuthorityCommandOutput } from "./commands/RestoreCertificateAuthorityCommand";
|
|
28
|
+
import { RevokeCertificateCommandInput, RevokeCertificateCommandOutput } from "./commands/RevokeCertificateCommand";
|
|
29
|
+
import { TagCertificateAuthorityCommandInput, TagCertificateAuthorityCommandOutput } from "./commands/TagCertificateAuthorityCommand";
|
|
30
|
+
import { UntagCertificateAuthorityCommandInput, UntagCertificateAuthorityCommandOutput } from "./commands/UntagCertificateAuthorityCommand";
|
|
31
|
+
import { UpdateCertificateAuthorityCommandInput, UpdateCertificateAuthorityCommandOutput } from "./commands/UpdateCertificateAuthorityCommand";
|
|
32
|
+
export declare type ServiceInputTypes = CreateCertificateAuthorityAuditReportCommandInput | CreateCertificateAuthorityCommandInput | CreatePermissionCommandInput | DeleteCertificateAuthorityCommandInput | DeletePermissionCommandInput | DeletePolicyCommandInput | DescribeCertificateAuthorityAuditReportCommandInput | DescribeCertificateAuthorityCommandInput | GetCertificateAuthorityCertificateCommandInput | GetCertificateAuthorityCsrCommandInput | GetCertificateCommandInput | GetPolicyCommandInput | ImportCertificateAuthorityCertificateCommandInput | IssueCertificateCommandInput | ListCertificateAuthoritiesCommandInput | ListPermissionsCommandInput | ListTagsCommandInput | PutPolicyCommandInput | RestoreCertificateAuthorityCommandInput | RevokeCertificateCommandInput | TagCertificateAuthorityCommandInput | UntagCertificateAuthorityCommandInput | UpdateCertificateAuthorityCommandInput;
|
|
33
|
+
export declare type ServiceOutputTypes = CreateCertificateAuthorityAuditReportCommandOutput | CreateCertificateAuthorityCommandOutput | CreatePermissionCommandOutput | DeleteCertificateAuthorityCommandOutput | DeletePermissionCommandOutput | DeletePolicyCommandOutput | DescribeCertificateAuthorityAuditReportCommandOutput | DescribeCertificateAuthorityCommandOutput | GetCertificateAuthorityCertificateCommandOutput | GetCertificateAuthorityCsrCommandOutput | GetCertificateCommandOutput | GetPolicyCommandOutput | ImportCertificateAuthorityCertificateCommandOutput | IssueCertificateCommandOutput | ListCertificateAuthoritiesCommandOutput | ListPermissionsCommandOutput | ListTagsCommandOutput | PutPolicyCommandOutput | RestoreCertificateAuthorityCommandOutput | RevokeCertificateCommandOutput | TagCertificateAuthorityCommandOutput | UntagCertificateAuthorityCommandOutput | UpdateCertificateAuthorityCommandOutput;
|
|
34
|
+
export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
|
|
35
|
+
|
|
36
|
+
requestHandler?: __HttpHandler;
|
|
37
|
+
|
|
38
|
+
sha256?: __HashConstructor;
|
|
39
|
+
|
|
40
|
+
urlParser?: __UrlParser;
|
|
41
|
+
|
|
42
|
+
bodyLengthChecker?: (body: any) => number | undefined;
|
|
43
|
+
|
|
44
|
+
streamCollector?: __StreamCollector;
|
|
45
|
+
|
|
46
|
+
base64Decoder?: __Decoder;
|
|
47
|
+
|
|
48
|
+
base64Encoder?: __Encoder;
|
|
49
|
+
|
|
50
|
+
utf8Decoder?: __Decoder;
|
|
51
|
+
|
|
52
|
+
utf8Encoder?: __Encoder;
|
|
53
|
+
|
|
54
|
+
runtime?: string;
|
|
55
|
+
|
|
56
|
+
disableHostPrefix?: boolean;
|
|
57
|
+
|
|
58
|
+
maxAttempts?: number | __Provider<number>;
|
|
59
|
+
|
|
60
|
+
retryMode?: string | __Provider<string>;
|
|
61
|
+
|
|
62
|
+
logger?: __Logger;
|
|
63
|
+
|
|
64
|
+
useDualstackEndpoint?: boolean | __Provider<boolean>;
|
|
65
|
+
|
|
66
|
+
useFipsEndpoint?: boolean | __Provider<boolean>;
|
|
67
|
+
|
|
68
|
+
serviceId?: string;
|
|
69
|
+
|
|
70
|
+
region?: string | __Provider<string>;
|
|
71
|
+
|
|
72
|
+
credentialDefaultProvider?: (input: any) => __Provider<__Credentials>;
|
|
73
|
+
|
|
74
|
+
regionInfoProvider?: RegionInfoProvider;
|
|
75
|
+
|
|
76
|
+
defaultUserAgentProvider?: Provider<__UserAgent>;
|
|
77
|
+
|
|
78
|
+
defaultsMode?: DefaultsMode | Provider<DefaultsMode>;
|
|
79
|
+
}
|
|
80
|
+
declare type ACMPCAClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults & RegionInputConfig & EndpointsInputConfig & RetryInputConfig & HostHeaderInputConfig & AwsAuthInputConfig & UserAgentInputConfig;
|
|
81
|
+
|
|
82
|
+
export interface ACMPCAClientConfig extends ACMPCAClientConfigType {
|
|
83
|
+
}
|
|
84
|
+
declare type ACMPCAClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> & Required<ClientDefaults> & RegionResolvedConfig & EndpointsResolvedConfig & RetryResolvedConfig & HostHeaderResolvedConfig & AwsAuthResolvedConfig & UserAgentResolvedConfig;
|
|
85
|
+
|
|
86
|
+
export interface ACMPCAClientResolvedConfig extends ACMPCAClientResolvedConfigType {
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
export declare class ACMPCAClient extends __Client<__HttpHandlerOptions, ServiceInputTypes, ServiceOutputTypes, ACMPCAClientResolvedConfig> {
|
|
90
|
+
|
|
91
|
+
readonly config: ACMPCAClientResolvedConfig;
|
|
92
|
+
constructor(configuration: ACMPCAClientConfig);
|
|
93
|
+
|
|
94
|
+
destroy(): void;
|
|
95
|
+
}
|
|
96
|
+
export {};
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { ACMPCAClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ACMPCAClient";
|
|
4
|
+
import { CreateCertificateAuthorityAuditReportRequest, CreateCertificateAuthorityAuditReportResponse } from "../models/models_0";
|
|
5
|
+
export interface CreateCertificateAuthorityAuditReportCommandInput extends CreateCertificateAuthorityAuditReportRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface CreateCertificateAuthorityAuditReportCommandOutput extends CreateCertificateAuthorityAuditReportResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class CreateCertificateAuthorityAuditReportCommand extends $Command<CreateCertificateAuthorityAuditReportCommandInput, CreateCertificateAuthorityAuditReportCommandOutput, ACMPCAClientResolvedConfig> {
|
|
11
|
+
readonly input: CreateCertificateAuthorityAuditReportCommandInput;
|
|
12
|
+
constructor(input: CreateCertificateAuthorityAuditReportCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ACMPCAClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateCertificateAuthorityAuditReportCommandInput, CreateCertificateAuthorityAuditReportCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { ACMPCAClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ACMPCAClient";
|
|
4
|
+
import { CreateCertificateAuthorityRequest, CreateCertificateAuthorityResponse } from "../models/models_0";
|
|
5
|
+
export interface CreateCertificateAuthorityCommandInput extends CreateCertificateAuthorityRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface CreateCertificateAuthorityCommandOutput extends CreateCertificateAuthorityResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class CreateCertificateAuthorityCommand extends $Command<CreateCertificateAuthorityCommandInput, CreateCertificateAuthorityCommandOutput, ACMPCAClientResolvedConfig> {
|
|
11
|
+
readonly input: CreateCertificateAuthorityCommandInput;
|
|
12
|
+
constructor(input: CreateCertificateAuthorityCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ACMPCAClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateCertificateAuthorityCommandInput, CreateCertificateAuthorityCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { ACMPCAClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ACMPCAClient";
|
|
4
|
+
import { CreatePermissionRequest } from "../models/models_0";
|
|
5
|
+
export interface CreatePermissionCommandInput extends CreatePermissionRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface CreatePermissionCommandOutput extends __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class CreatePermissionCommand extends $Command<CreatePermissionCommandInput, CreatePermissionCommandOutput, ACMPCAClientResolvedConfig> {
|
|
11
|
+
readonly input: CreatePermissionCommandInput;
|
|
12
|
+
constructor(input: CreatePermissionCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ACMPCAClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreatePermissionCommandInput, CreatePermissionCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|