@aws-sdk/client-acm-pca 3.300.0 → 3.301.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-types/commands/CreateCertificateAuthorityAuditReportCommand.d.ts +1 -1
- package/dist-types/commands/CreateCertificateAuthorityCommand.d.ts +18 -18
- package/dist-types/commands/CreatePermissionCommand.d.ts +2 -2
- package/dist-types/commands/DeleteCertificateAuthorityCommand.d.ts +1 -1
- package/dist-types/commands/DeletePermissionCommand.d.ts +1 -1
- package/dist-types/commands/DeletePolicyCommand.d.ts +1 -1
- package/dist-types/commands/DescribeCertificateAuthorityAuditReportCommand.d.ts +1 -1
- package/dist-types/commands/DescribeCertificateAuthorityCommand.d.ts +1 -1
- package/dist-types/commands/GetCertificateAuthorityCertificateCommand.d.ts +1 -1
- package/dist-types/commands/GetCertificateAuthorityCsrCommand.d.ts +1 -1
- package/dist-types/commands/GetCertificateCommand.d.ts +1 -1
- package/dist-types/commands/GetPolicyCommand.d.ts +1 -1
- package/dist-types/commands/ImportCertificateAuthorityCertificateCommand.d.ts +1 -1
- package/dist-types/commands/IssueCertificateCommand.d.ts +21 -21
- package/dist-types/commands/ListCertificateAuthoritiesCommand.d.ts +1 -1
- package/dist-types/commands/ListPermissionsCommand.d.ts +1 -1
- package/dist-types/commands/ListTagsCommand.d.ts +1 -1
- package/dist-types/commands/PutPolicyCommand.d.ts +1 -1
- package/dist-types/commands/RestoreCertificateAuthorityCommand.d.ts +1 -1
- package/dist-types/commands/RevokeCertificateCommand.d.ts +1 -1
- package/dist-types/commands/TagCertificateAuthorityCommand.d.ts +3 -3
- package/dist-types/commands/UntagCertificateAuthorityCommand.d.ts +3 -3
- package/dist-types/commands/UpdateCertificateAuthorityCommand.d.ts +4 -4
- package/package.json +3 -3
|
@@ -41,7 +41,7 @@ export interface CreateCertificateAuthorityAuditReportCommandOutput extends Crea
|
|
|
41
41
|
* import { ACMPCAClient, CreateCertificateAuthorityAuditReportCommand } from "@aws-sdk/client-acm-pca"; // ES Modules import
|
|
42
42
|
* // const { ACMPCAClient, CreateCertificateAuthorityAuditReportCommand } = require("@aws-sdk/client-acm-pca"); // CommonJS import
|
|
43
43
|
* const client = new ACMPCAClient(config);
|
|
44
|
-
* const input = {
|
|
44
|
+
* const input = { // CreateCertificateAuthorityAuditReportRequest
|
|
45
45
|
* CertificateAuthorityArn: "STRING_VALUE", // required
|
|
46
46
|
* S3BucketName: "STRING_VALUE", // required
|
|
47
47
|
* AuditReportResponseFormat: "JSON" || "CSV", // required
|
|
@@ -46,11 +46,11 @@ export interface CreateCertificateAuthorityCommandOutput extends CreateCertifica
|
|
|
46
46
|
* import { ACMPCAClient, CreateCertificateAuthorityCommand } from "@aws-sdk/client-acm-pca"; // ES Modules import
|
|
47
47
|
* // const { ACMPCAClient, CreateCertificateAuthorityCommand } = require("@aws-sdk/client-acm-pca"); // CommonJS import
|
|
48
48
|
* const client = new ACMPCAClient(config);
|
|
49
|
-
* const input = {
|
|
50
|
-
* CertificateAuthorityConfiguration: {
|
|
49
|
+
* const input = { // CreateCertificateAuthorityRequest
|
|
50
|
+
* CertificateAuthorityConfiguration: { // CertificateAuthorityConfiguration
|
|
51
51
|
* KeyAlgorithm: "RSA_2048" || "RSA_4096" || "EC_prime256v1" || "EC_secp384r1", // required
|
|
52
52
|
* SigningAlgorithm: "SHA256WITHECDSA" || "SHA384WITHECDSA" || "SHA512WITHECDSA" || "SHA256WITHRSA" || "SHA384WITHRSA" || "SHA512WITHRSA", // required
|
|
53
|
-
* Subject: {
|
|
53
|
+
* Subject: { // ASN1Subject
|
|
54
54
|
* Country: "STRING_VALUE",
|
|
55
55
|
* Organization: "STRING_VALUE",
|
|
56
56
|
* OrganizationalUnit: "STRING_VALUE",
|
|
@@ -65,15 +65,15 @@ export interface CreateCertificateAuthorityCommandOutput extends CreateCertifica
|
|
|
65
65
|
* Initials: "STRING_VALUE",
|
|
66
66
|
* Pseudonym: "STRING_VALUE",
|
|
67
67
|
* GenerationQualifier: "STRING_VALUE",
|
|
68
|
-
* CustomAttributes: [
|
|
69
|
-
* {
|
|
68
|
+
* CustomAttributes: [ // CustomAttributeList
|
|
69
|
+
* { // CustomAttribute
|
|
70
70
|
* ObjectIdentifier: "STRING_VALUE", // required
|
|
71
71
|
* Value: "STRING_VALUE", // required
|
|
72
72
|
* },
|
|
73
73
|
* ],
|
|
74
74
|
* },
|
|
75
|
-
* CsrExtensions: {
|
|
76
|
-
* KeyUsage: {
|
|
75
|
+
* CsrExtensions: { // CsrExtensions
|
|
76
|
+
* KeyUsage: { // KeyUsage
|
|
77
77
|
* DigitalSignature: true || false,
|
|
78
78
|
* NonRepudiation: true || false,
|
|
79
79
|
* KeyEncipherment: true || false,
|
|
@@ -84,14 +84,14 @@ export interface CreateCertificateAuthorityCommandOutput extends CreateCertifica
|
|
|
84
84
|
* EncipherOnly: true || false,
|
|
85
85
|
* DecipherOnly: true || false,
|
|
86
86
|
* },
|
|
87
|
-
* SubjectInformationAccess: [
|
|
88
|
-
* {
|
|
89
|
-
* AccessMethod: {
|
|
87
|
+
* SubjectInformationAccess: [ // AccessDescriptionList
|
|
88
|
+
* { // AccessDescription
|
|
89
|
+
* AccessMethod: { // AccessMethod
|
|
90
90
|
* CustomObjectIdentifier: "STRING_VALUE",
|
|
91
91
|
* AccessMethodType: "CA_REPOSITORY" || "RESOURCE_PKI_MANIFEST" || "RESOURCE_PKI_NOTIFY",
|
|
92
92
|
* },
|
|
93
|
-
* AccessLocation: {
|
|
94
|
-
* OtherName: {
|
|
93
|
+
* AccessLocation: { // GeneralName
|
|
94
|
+
* OtherName: { // OtherName
|
|
95
95
|
* TypeId: "STRING_VALUE", // required
|
|
96
96
|
* Value: "STRING_VALUE", // required
|
|
97
97
|
* },
|
|
@@ -119,7 +119,7 @@ export interface CreateCertificateAuthorityCommandOutput extends CreateCertifica
|
|
|
119
119
|
* },
|
|
120
120
|
* ],
|
|
121
121
|
* },
|
|
122
|
-
* EdiPartyName: {
|
|
122
|
+
* EdiPartyName: { // EdiPartyName
|
|
123
123
|
* PartyName: "STRING_VALUE", // required
|
|
124
124
|
* NameAssigner: "STRING_VALUE",
|
|
125
125
|
* },
|
|
@@ -131,15 +131,15 @@ export interface CreateCertificateAuthorityCommandOutput extends CreateCertifica
|
|
|
131
131
|
* ],
|
|
132
132
|
* },
|
|
133
133
|
* },
|
|
134
|
-
* RevocationConfiguration: {
|
|
135
|
-
* CrlConfiguration: {
|
|
134
|
+
* RevocationConfiguration: { // RevocationConfiguration
|
|
135
|
+
* CrlConfiguration: { // CrlConfiguration
|
|
136
136
|
* Enabled: true || false, // required
|
|
137
137
|
* ExpirationInDays: Number("int"),
|
|
138
138
|
* CustomCname: "STRING_VALUE",
|
|
139
139
|
* S3BucketName: "STRING_VALUE",
|
|
140
140
|
* S3ObjectAcl: "PUBLIC_READ" || "BUCKET_OWNER_FULL_CONTROL",
|
|
141
141
|
* },
|
|
142
|
-
* OcspConfiguration: {
|
|
142
|
+
* OcspConfiguration: { // OcspConfiguration
|
|
143
143
|
* Enabled: true || false, // required
|
|
144
144
|
* OcspCustomCname: "STRING_VALUE",
|
|
145
145
|
* },
|
|
@@ -147,8 +147,8 @@ export interface CreateCertificateAuthorityCommandOutput extends CreateCertifica
|
|
|
147
147
|
* CertificateAuthorityType: "ROOT" || "SUBORDINATE", // required
|
|
148
148
|
* IdempotencyToken: "STRING_VALUE",
|
|
149
149
|
* KeyStorageSecurityStandard: "FIPS_140_2_LEVEL_2_OR_HIGHER" || "FIPS_140_2_LEVEL_3_OR_HIGHER",
|
|
150
|
-
* Tags: [
|
|
151
|
-
* {
|
|
150
|
+
* Tags: [ // TagList
|
|
151
|
+
* { // Tag
|
|
152
152
|
* Key: "STRING_VALUE", // required
|
|
153
153
|
* Value: "STRING_VALUE",
|
|
154
154
|
* },
|
|
@@ -52,11 +52,11 @@ export interface CreatePermissionCommandOutput extends __MetadataBearer {
|
|
|
52
52
|
* import { ACMPCAClient, CreatePermissionCommand } from "@aws-sdk/client-acm-pca"; // ES Modules import
|
|
53
53
|
* // const { ACMPCAClient, CreatePermissionCommand } = require("@aws-sdk/client-acm-pca"); // CommonJS import
|
|
54
54
|
* const client = new ACMPCAClient(config);
|
|
55
|
-
* const input = {
|
|
55
|
+
* const input = { // CreatePermissionRequest
|
|
56
56
|
* CertificateAuthorityArn: "STRING_VALUE", // required
|
|
57
57
|
* Principal: "STRING_VALUE", // required
|
|
58
58
|
* SourceAccount: "STRING_VALUE",
|
|
59
|
-
* Actions: [ // required
|
|
59
|
+
* Actions: [ // ActionList // required
|
|
60
60
|
* "IssueCertificate" || "GetCertificate" || "ListPermissions",
|
|
61
61
|
* ],
|
|
62
62
|
* };
|
|
@@ -45,7 +45,7 @@ export interface DeleteCertificateAuthorityCommandOutput extends __MetadataBeare
|
|
|
45
45
|
* import { ACMPCAClient, DeleteCertificateAuthorityCommand } from "@aws-sdk/client-acm-pca"; // ES Modules import
|
|
46
46
|
* // const { ACMPCAClient, DeleteCertificateAuthorityCommand } = require("@aws-sdk/client-acm-pca"); // CommonJS import
|
|
47
47
|
* const client = new ACMPCAClient(config);
|
|
48
|
-
* const input = {
|
|
48
|
+
* const input = { // DeleteCertificateAuthorityRequest
|
|
49
49
|
* CertificateAuthorityArn: "STRING_VALUE", // required
|
|
50
50
|
* PermanentDeletionTimeInDays: Number("int"),
|
|
51
51
|
* };
|
|
@@ -54,7 +54,7 @@ export interface DeletePermissionCommandOutput extends __MetadataBearer {
|
|
|
54
54
|
* import { ACMPCAClient, DeletePermissionCommand } from "@aws-sdk/client-acm-pca"; // ES Modules import
|
|
55
55
|
* // const { ACMPCAClient, DeletePermissionCommand } = require("@aws-sdk/client-acm-pca"); // CommonJS import
|
|
56
56
|
* const client = new ACMPCAClient(config);
|
|
57
|
-
* const input = {
|
|
57
|
+
* const input = { // DeletePermissionRequest
|
|
58
58
|
* CertificateAuthorityArn: "STRING_VALUE", // required
|
|
59
59
|
* Principal: "STRING_VALUE", // required
|
|
60
60
|
* SourceAccount: "STRING_VALUE",
|
|
@@ -60,7 +60,7 @@ export interface DeletePolicyCommandOutput extends __MetadataBearer {
|
|
|
60
60
|
* import { ACMPCAClient, DeletePolicyCommand } from "@aws-sdk/client-acm-pca"; // ES Modules import
|
|
61
61
|
* // const { ACMPCAClient, DeletePolicyCommand } = require("@aws-sdk/client-acm-pca"); // CommonJS import
|
|
62
62
|
* const client = new ACMPCAClient(config);
|
|
63
|
-
* const input = {
|
|
63
|
+
* const input = { // DeletePolicyRequest
|
|
64
64
|
* ResourceArn: "STRING_VALUE", // required
|
|
65
65
|
* };
|
|
66
66
|
* const command = new DeletePolicyCommand(input);
|
|
@@ -29,7 +29,7 @@ export interface DescribeCertificateAuthorityAuditReportCommandOutput extends De
|
|
|
29
29
|
* import { ACMPCAClient, DescribeCertificateAuthorityAuditReportCommand } from "@aws-sdk/client-acm-pca"; // ES Modules import
|
|
30
30
|
* // const { ACMPCAClient, DescribeCertificateAuthorityAuditReportCommand } = require("@aws-sdk/client-acm-pca"); // CommonJS import
|
|
31
31
|
* const client = new ACMPCAClient(config);
|
|
32
|
-
* const input = {
|
|
32
|
+
* const input = { // DescribeCertificateAuthorityAuditReportRequest
|
|
33
33
|
* CertificateAuthorityArn: "STRING_VALUE", // required
|
|
34
34
|
* AuditReportId: "STRING_VALUE", // required
|
|
35
35
|
* };
|
|
@@ -66,7 +66,7 @@ export interface DescribeCertificateAuthorityCommandOutput extends DescribeCerti
|
|
|
66
66
|
* import { ACMPCAClient, DescribeCertificateAuthorityCommand } from "@aws-sdk/client-acm-pca"; // ES Modules import
|
|
67
67
|
* // const { ACMPCAClient, DescribeCertificateAuthorityCommand } = require("@aws-sdk/client-acm-pca"); // CommonJS import
|
|
68
68
|
* const client = new ACMPCAClient(config);
|
|
69
|
-
* const input = {
|
|
69
|
+
* const input = { // DescribeCertificateAuthorityRequest
|
|
70
70
|
* CertificateAuthorityArn: "STRING_VALUE", // required
|
|
71
71
|
* };
|
|
72
72
|
* const command = new DescribeCertificateAuthorityCommand(input);
|
|
@@ -29,7 +29,7 @@ export interface GetCertificateAuthorityCertificateCommandOutput extends GetCert
|
|
|
29
29
|
* import { ACMPCAClient, GetCertificateAuthorityCertificateCommand } from "@aws-sdk/client-acm-pca"; // ES Modules import
|
|
30
30
|
* // const { ACMPCAClient, GetCertificateAuthorityCertificateCommand } = require("@aws-sdk/client-acm-pca"); // CommonJS import
|
|
31
31
|
* const client = new ACMPCAClient(config);
|
|
32
|
-
* const input = {
|
|
32
|
+
* const input = { // GetCertificateAuthorityCertificateRequest
|
|
33
33
|
* CertificateAuthorityArn: "STRING_VALUE", // required
|
|
34
34
|
* };
|
|
35
35
|
* const command = new GetCertificateAuthorityCertificateCommand(input);
|
|
@@ -30,7 +30,7 @@ export interface GetCertificateAuthorityCsrCommandOutput extends GetCertificateA
|
|
|
30
30
|
* import { ACMPCAClient, GetCertificateAuthorityCsrCommand } from "@aws-sdk/client-acm-pca"; // ES Modules import
|
|
31
31
|
* // const { ACMPCAClient, GetCertificateAuthorityCsrCommand } = require("@aws-sdk/client-acm-pca"); // CommonJS import
|
|
32
32
|
* const client = new ACMPCAClient(config);
|
|
33
|
-
* const input = {
|
|
33
|
+
* const input = { // GetCertificateAuthorityCsrRequest
|
|
34
34
|
* CertificateAuthorityArn: "STRING_VALUE", // required
|
|
35
35
|
* };
|
|
36
36
|
* const command = new GetCertificateAuthorityCsrCommand(input);
|
|
@@ -33,7 +33,7 @@ export interface GetCertificateCommandOutput extends GetCertificateResponse, __M
|
|
|
33
33
|
* import { ACMPCAClient, GetCertificateCommand } from "@aws-sdk/client-acm-pca"; // ES Modules import
|
|
34
34
|
* // const { ACMPCAClient, GetCertificateCommand } = require("@aws-sdk/client-acm-pca"); // CommonJS import
|
|
35
35
|
* const client = new ACMPCAClient(config);
|
|
36
|
-
* const input = {
|
|
36
|
+
* const input = { // GetCertificateRequest
|
|
37
37
|
* CertificateAuthorityArn: "STRING_VALUE", // required
|
|
38
38
|
* CertificateArn: "STRING_VALUE", // required
|
|
39
39
|
* };
|
|
@@ -56,7 +56,7 @@ export interface GetPolicyCommandOutput extends GetPolicyResponse, __MetadataBea
|
|
|
56
56
|
* import { ACMPCAClient, GetPolicyCommand } from "@aws-sdk/client-acm-pca"; // ES Modules import
|
|
57
57
|
* // const { ACMPCAClient, GetPolicyCommand } = require("@aws-sdk/client-acm-pca"); // CommonJS import
|
|
58
58
|
* const client = new ACMPCAClient(config);
|
|
59
|
-
* const input = {
|
|
59
|
+
* const input = { // GetPolicyRequest
|
|
60
60
|
* ResourceArn: "STRING_VALUE", // required
|
|
61
61
|
* };
|
|
62
62
|
* const command = new GetPolicyCommand(input);
|
|
@@ -153,7 +153,7 @@ export interface ImportCertificateAuthorityCertificateCommandOutput extends __Me
|
|
|
153
153
|
* import { ACMPCAClient, ImportCertificateAuthorityCertificateCommand } from "@aws-sdk/client-acm-pca"; // ES Modules import
|
|
154
154
|
* // const { ACMPCAClient, ImportCertificateAuthorityCertificateCommand } = require("@aws-sdk/client-acm-pca"); // CommonJS import
|
|
155
155
|
* const client = new ACMPCAClient(config);
|
|
156
|
-
* const input = {
|
|
156
|
+
* const input = { // ImportCertificateAuthorityCertificateRequest
|
|
157
157
|
* CertificateAuthorityArn: "STRING_VALUE", // required
|
|
158
158
|
* Certificate: "BLOB_VALUE", // required
|
|
159
159
|
* CertificateChain: "BLOB_VALUE",
|
|
@@ -33,29 +33,29 @@ export interface IssueCertificateCommandOutput extends IssueCertificateResponse,
|
|
|
33
33
|
* import { ACMPCAClient, IssueCertificateCommand } from "@aws-sdk/client-acm-pca"; // ES Modules import
|
|
34
34
|
* // const { ACMPCAClient, IssueCertificateCommand } = require("@aws-sdk/client-acm-pca"); // CommonJS import
|
|
35
35
|
* const client = new ACMPCAClient(config);
|
|
36
|
-
* const input = {
|
|
37
|
-
* ApiPassthrough: {
|
|
38
|
-
* Extensions: {
|
|
39
|
-
* CertificatePolicies: [
|
|
40
|
-
* {
|
|
36
|
+
* const input = { // IssueCertificateRequest
|
|
37
|
+
* ApiPassthrough: { // ApiPassthrough
|
|
38
|
+
* Extensions: { // Extensions
|
|
39
|
+
* CertificatePolicies: [ // CertificatePolicyList
|
|
40
|
+
* { // PolicyInformation
|
|
41
41
|
* CertPolicyId: "STRING_VALUE", // required
|
|
42
|
-
* PolicyQualifiers: [
|
|
43
|
-
* {
|
|
42
|
+
* PolicyQualifiers: [ // PolicyQualifierInfoList
|
|
43
|
+
* { // PolicyQualifierInfo
|
|
44
44
|
* PolicyQualifierId: "CPS", // required
|
|
45
|
-
* Qualifier: {
|
|
45
|
+
* Qualifier: { // Qualifier
|
|
46
46
|
* CpsUri: "STRING_VALUE", // required
|
|
47
47
|
* },
|
|
48
48
|
* },
|
|
49
49
|
* ],
|
|
50
50
|
* },
|
|
51
51
|
* ],
|
|
52
|
-
* ExtendedKeyUsage: [
|
|
53
|
-
* {
|
|
52
|
+
* ExtendedKeyUsage: [ // ExtendedKeyUsageList
|
|
53
|
+
* { // ExtendedKeyUsage
|
|
54
54
|
* ExtendedKeyUsageType: "SERVER_AUTH" || "CLIENT_AUTH" || "CODE_SIGNING" || "EMAIL_PROTECTION" || "TIME_STAMPING" || "OCSP_SIGNING" || "SMART_CARD_LOGIN" || "DOCUMENT_SIGNING" || "CERTIFICATE_TRANSPARENCY",
|
|
55
55
|
* ExtendedKeyUsageObjectIdentifier: "STRING_VALUE",
|
|
56
56
|
* },
|
|
57
57
|
* ],
|
|
58
|
-
* KeyUsage: {
|
|
58
|
+
* KeyUsage: { // KeyUsage
|
|
59
59
|
* DigitalSignature: true || false,
|
|
60
60
|
* NonRepudiation: true || false,
|
|
61
61
|
* KeyEncipherment: true || false,
|
|
@@ -66,15 +66,15 @@ export interface IssueCertificateCommandOutput extends IssueCertificateResponse,
|
|
|
66
66
|
* EncipherOnly: true || false,
|
|
67
67
|
* DecipherOnly: true || false,
|
|
68
68
|
* },
|
|
69
|
-
* SubjectAlternativeNames: [
|
|
70
|
-
* {
|
|
71
|
-
* OtherName: {
|
|
69
|
+
* SubjectAlternativeNames: [ // GeneralNameList
|
|
70
|
+
* { // GeneralName
|
|
71
|
+
* OtherName: { // OtherName
|
|
72
72
|
* TypeId: "STRING_VALUE", // required
|
|
73
73
|
* Value: "STRING_VALUE", // required
|
|
74
74
|
* },
|
|
75
75
|
* Rfc822Name: "STRING_VALUE",
|
|
76
76
|
* DnsName: "STRING_VALUE",
|
|
77
|
-
* DirectoryName: {
|
|
77
|
+
* DirectoryName: { // ASN1Subject
|
|
78
78
|
* Country: "STRING_VALUE",
|
|
79
79
|
* Organization: "STRING_VALUE",
|
|
80
80
|
* OrganizationalUnit: "STRING_VALUE",
|
|
@@ -89,14 +89,14 @@ export interface IssueCertificateCommandOutput extends IssueCertificateResponse,
|
|
|
89
89
|
* Initials: "STRING_VALUE",
|
|
90
90
|
* Pseudonym: "STRING_VALUE",
|
|
91
91
|
* GenerationQualifier: "STRING_VALUE",
|
|
92
|
-
* CustomAttributes: [
|
|
93
|
-
* {
|
|
92
|
+
* CustomAttributes: [ // CustomAttributeList
|
|
93
|
+
* { // CustomAttribute
|
|
94
94
|
* ObjectIdentifier: "STRING_VALUE", // required
|
|
95
95
|
* Value: "STRING_VALUE", // required
|
|
96
96
|
* },
|
|
97
97
|
* ],
|
|
98
98
|
* },
|
|
99
|
-
* EdiPartyName: {
|
|
99
|
+
* EdiPartyName: { // EdiPartyName
|
|
100
100
|
* PartyName: "STRING_VALUE", // required
|
|
101
101
|
* NameAssigner: "STRING_VALUE",
|
|
102
102
|
* },
|
|
@@ -105,8 +105,8 @@ export interface IssueCertificateCommandOutput extends IssueCertificateResponse,
|
|
|
105
105
|
* RegisteredId: "STRING_VALUE",
|
|
106
106
|
* },
|
|
107
107
|
* ],
|
|
108
|
-
* CustomExtensions: [
|
|
109
|
-
* {
|
|
108
|
+
* CustomExtensions: [ // CustomExtensionList
|
|
109
|
+
* { // CustomExtension
|
|
110
110
|
* ObjectIdentifier: "STRING_VALUE", // required
|
|
111
111
|
* Value: "STRING_VALUE", // required
|
|
112
112
|
* Critical: true || false,
|
|
@@ -140,7 +140,7 @@ export interface IssueCertificateCommandOutput extends IssueCertificateResponse,
|
|
|
140
140
|
* Csr: "BLOB_VALUE", // required
|
|
141
141
|
* SigningAlgorithm: "SHA256WITHECDSA" || "SHA384WITHECDSA" || "SHA512WITHECDSA" || "SHA256WITHRSA" || "SHA384WITHRSA" || "SHA512WITHRSA", // required
|
|
142
142
|
* TemplateArn: "STRING_VALUE",
|
|
143
|
-
* Validity: {
|
|
143
|
+
* Validity: { // Validity
|
|
144
144
|
* Value: Number("long"), // required
|
|
145
145
|
* Type: "END_DATE" || "ABSOLUTE" || "DAYS" || "MONTHS" || "YEARS", // required
|
|
146
146
|
* },
|
|
@@ -26,7 +26,7 @@ export interface ListCertificateAuthoritiesCommandOutput extends ListCertificate
|
|
|
26
26
|
* import { ACMPCAClient, ListCertificateAuthoritiesCommand } from "@aws-sdk/client-acm-pca"; // ES Modules import
|
|
27
27
|
* // const { ACMPCAClient, ListCertificateAuthoritiesCommand } = require("@aws-sdk/client-acm-pca"); // CommonJS import
|
|
28
28
|
* const client = new ACMPCAClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // ListCertificateAuthoritiesRequest
|
|
30
30
|
* NextToken: "STRING_VALUE",
|
|
31
31
|
* MaxResults: Number("int"),
|
|
32
32
|
* ResourceOwner: "SELF" || "OTHER_ACCOUNTS",
|
|
@@ -53,7 +53,7 @@ export interface ListPermissionsCommandOutput extends ListPermissionsResponse, _
|
|
|
53
53
|
* import { ACMPCAClient, ListPermissionsCommand } from "@aws-sdk/client-acm-pca"; // ES Modules import
|
|
54
54
|
* // const { ACMPCAClient, ListPermissionsCommand } = require("@aws-sdk/client-acm-pca"); // CommonJS import
|
|
55
55
|
* const client = new ACMPCAClient(config);
|
|
56
|
-
* const input = {
|
|
56
|
+
* const input = { // ListPermissionsRequest
|
|
57
57
|
* CertificateAuthorityArn: "STRING_VALUE", // required
|
|
58
58
|
* NextToken: "STRING_VALUE",
|
|
59
59
|
* MaxResults: Number("int"),
|
|
@@ -29,7 +29,7 @@ export interface ListTagsCommandOutput extends ListTagsResponse, __MetadataBeare
|
|
|
29
29
|
* import { ACMPCAClient, ListTagsCommand } from "@aws-sdk/client-acm-pca"; // ES Modules import
|
|
30
30
|
* // const { ACMPCAClient, ListTagsCommand } = require("@aws-sdk/client-acm-pca"); // CommonJS import
|
|
31
31
|
* const client = new ACMPCAClient(config);
|
|
32
|
-
* const input = {
|
|
32
|
+
* const input = { // ListTagsRequest
|
|
33
33
|
* CertificateAuthorityArn: "STRING_VALUE", // required
|
|
34
34
|
* NextToken: "STRING_VALUE",
|
|
35
35
|
* MaxResults: Number("int"),
|
|
@@ -57,7 +57,7 @@ export interface PutPolicyCommandOutput extends __MetadataBearer {
|
|
|
57
57
|
* import { ACMPCAClient, PutPolicyCommand } from "@aws-sdk/client-acm-pca"; // ES Modules import
|
|
58
58
|
* // const { ACMPCAClient, PutPolicyCommand } = require("@aws-sdk/client-acm-pca"); // CommonJS import
|
|
59
59
|
* const client = new ACMPCAClient(config);
|
|
60
|
-
* const input = {
|
|
60
|
+
* const input = { // PutPolicyRequest
|
|
61
61
|
* ResourceArn: "STRING_VALUE", // required
|
|
62
62
|
* Policy: "STRING_VALUE", // required
|
|
63
63
|
* };
|
|
@@ -36,7 +36,7 @@ export interface RestoreCertificateAuthorityCommandOutput extends __MetadataBear
|
|
|
36
36
|
* import { ACMPCAClient, RestoreCertificateAuthorityCommand } from "@aws-sdk/client-acm-pca"; // ES Modules import
|
|
37
37
|
* // const { ACMPCAClient, RestoreCertificateAuthorityCommand } = require("@aws-sdk/client-acm-pca"); // CommonJS import
|
|
38
38
|
* const client = new ACMPCAClient(config);
|
|
39
|
-
* const input = {
|
|
39
|
+
* const input = { // RestoreCertificateAuthorityRequest
|
|
40
40
|
* CertificateAuthorityArn: "STRING_VALUE", // required
|
|
41
41
|
* };
|
|
42
42
|
* const command = new RestoreCertificateAuthorityCommand(input);
|
|
@@ -45,7 +45,7 @@ export interface RevokeCertificateCommandOutput extends __MetadataBearer {
|
|
|
45
45
|
* import { ACMPCAClient, RevokeCertificateCommand } from "@aws-sdk/client-acm-pca"; // ES Modules import
|
|
46
46
|
* // const { ACMPCAClient, RevokeCertificateCommand } = require("@aws-sdk/client-acm-pca"); // CommonJS import
|
|
47
47
|
* const client = new ACMPCAClient(config);
|
|
48
|
-
* const input = {
|
|
48
|
+
* const input = { // RevokeCertificateRequest
|
|
49
49
|
* CertificateAuthorityArn: "STRING_VALUE", // required
|
|
50
50
|
* CertificateSerial: "STRING_VALUE", // required
|
|
51
51
|
* RevocationReason: "UNSPECIFIED" || "KEY_COMPROMISE" || "CERTIFICATE_AUTHORITY_COMPROMISE" || "AFFILIATION_CHANGED" || "SUPERSEDED" || "CESSATION_OF_OPERATION" || "PRIVILEGE_WITHDRAWN" || "A_A_COMPROMISE", // required
|
|
@@ -40,10 +40,10 @@ export interface TagCertificateAuthorityCommandOutput extends __MetadataBearer {
|
|
|
40
40
|
* import { ACMPCAClient, TagCertificateAuthorityCommand } from "@aws-sdk/client-acm-pca"; // ES Modules import
|
|
41
41
|
* // const { ACMPCAClient, TagCertificateAuthorityCommand } = require("@aws-sdk/client-acm-pca"); // CommonJS import
|
|
42
42
|
* const client = new ACMPCAClient(config);
|
|
43
|
-
* const input = {
|
|
43
|
+
* const input = { // TagCertificateAuthorityRequest
|
|
44
44
|
* CertificateAuthorityArn: "STRING_VALUE", // required
|
|
45
|
-
* Tags: [ // required
|
|
46
|
-
* {
|
|
45
|
+
* Tags: [ // TagList // required
|
|
46
|
+
* { // Tag
|
|
47
47
|
* Key: "STRING_VALUE", // required
|
|
48
48
|
* Value: "STRING_VALUE",
|
|
49
49
|
* },
|
|
@@ -30,10 +30,10 @@ export interface UntagCertificateAuthorityCommandOutput extends __MetadataBearer
|
|
|
30
30
|
* import { ACMPCAClient, UntagCertificateAuthorityCommand } from "@aws-sdk/client-acm-pca"; // ES Modules import
|
|
31
31
|
* // const { ACMPCAClient, UntagCertificateAuthorityCommand } = require("@aws-sdk/client-acm-pca"); // CommonJS import
|
|
32
32
|
* const client = new ACMPCAClient(config);
|
|
33
|
-
* const input = {
|
|
33
|
+
* const input = { // UntagCertificateAuthorityRequest
|
|
34
34
|
* CertificateAuthorityArn: "STRING_VALUE", // required
|
|
35
|
-
* Tags: [ // required
|
|
36
|
-
* {
|
|
35
|
+
* Tags: [ // TagList // required
|
|
36
|
+
* { // Tag
|
|
37
37
|
* Key: "STRING_VALUE", // required
|
|
38
38
|
* Value: "STRING_VALUE",
|
|
39
39
|
* },
|
|
@@ -36,17 +36,17 @@ export interface UpdateCertificateAuthorityCommandOutput extends __MetadataBeare
|
|
|
36
36
|
* import { ACMPCAClient, UpdateCertificateAuthorityCommand } from "@aws-sdk/client-acm-pca"; // ES Modules import
|
|
37
37
|
* // const { ACMPCAClient, UpdateCertificateAuthorityCommand } = require("@aws-sdk/client-acm-pca"); // CommonJS import
|
|
38
38
|
* const client = new ACMPCAClient(config);
|
|
39
|
-
* const input = {
|
|
39
|
+
* const input = { // UpdateCertificateAuthorityRequest
|
|
40
40
|
* CertificateAuthorityArn: "STRING_VALUE", // required
|
|
41
|
-
* RevocationConfiguration: {
|
|
42
|
-
* CrlConfiguration: {
|
|
41
|
+
* RevocationConfiguration: { // RevocationConfiguration
|
|
42
|
+
* CrlConfiguration: { // CrlConfiguration
|
|
43
43
|
* Enabled: true || false, // required
|
|
44
44
|
* ExpirationInDays: Number("int"),
|
|
45
45
|
* CustomCname: "STRING_VALUE",
|
|
46
46
|
* S3BucketName: "STRING_VALUE",
|
|
47
47
|
* S3ObjectAcl: "PUBLIC_READ" || "BUCKET_OWNER_FULL_CONTROL",
|
|
48
48
|
* },
|
|
49
|
-
* OcspConfiguration: {
|
|
49
|
+
* OcspConfiguration: { // OcspConfiguration
|
|
50
50
|
* Enabled: true || false, // required
|
|
51
51
|
* OcspCustomCname: "STRING_VALUE",
|
|
52
52
|
* },
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-acm-pca",
|
|
3
3
|
"description": "AWS SDK for JavaScript Acm Pca Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.301.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -21,9 +21,9 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.301.0",
|
|
25
25
|
"@aws-sdk/config-resolver": "3.300.0",
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.301.0",
|
|
27
27
|
"@aws-sdk/fetch-http-handler": "3.296.0",
|
|
28
28
|
"@aws-sdk/hash-node": "3.296.0",
|
|
29
29
|
"@aws-sdk/invalid-dependency": "3.296.0",
|