@aws-sdk/client-acm-pca 3.53.0 → 3.55.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/README.md +13 -14
- package/dist-cjs/ACMPCAClient.js +13 -13
- package/dist-cjs/commands/CreateCertificateAuthorityAuditReportCommand.js +3 -3
- package/dist-cjs/commands/CreateCertificateAuthorityCommand.js +3 -3
- package/dist-cjs/commands/CreatePermissionCommand.js +3 -3
- package/dist-cjs/commands/DeleteCertificateAuthorityCommand.js +3 -3
- package/dist-cjs/commands/DeletePermissionCommand.js +3 -3
- package/dist-cjs/commands/DeletePolicyCommand.js +3 -3
- package/dist-cjs/commands/DescribeCertificateAuthorityAuditReportCommand.js +3 -3
- package/dist-cjs/commands/DescribeCertificateAuthorityCommand.js +3 -3
- package/dist-cjs/commands/GetCertificateAuthorityCertificateCommand.js +3 -3
- package/dist-cjs/commands/GetCertificateAuthorityCsrCommand.js +3 -3
- package/dist-cjs/commands/GetCertificateCommand.js +3 -3
- package/dist-cjs/commands/GetPolicyCommand.js +3 -3
- package/dist-cjs/commands/ImportCertificateAuthorityCertificateCommand.js +3 -3
- package/dist-cjs/commands/IssueCertificateCommand.js +3 -3
- package/dist-cjs/commands/ListCertificateAuthoritiesCommand.js +3 -3
- package/dist-cjs/commands/ListPermissionsCommand.js +3 -3
- package/dist-cjs/commands/ListTagsCommand.js +3 -3
- package/dist-cjs/commands/PutPolicyCommand.js +3 -3
- package/dist-cjs/commands/RestoreCertificateAuthorityCommand.js +3 -3
- package/dist-cjs/commands/RevokeCertificateCommand.js +3 -3
- package/dist-cjs/commands/TagCertificateAuthorityCommand.js +3 -3
- package/dist-cjs/commands/UntagCertificateAuthorityCommand.js +3 -3
- package/dist-cjs/commands/UpdateCertificateAuthorityCommand.js +3 -3
- package/dist-cjs/endpoints.js +1 -1
- package/dist-cjs/models/models_0.js +14 -2
- package/dist-cjs/protocols/Aws_json1_1.js +204 -141
- package/dist-cjs/runtimeConfig.browser.js +4 -4
- package/dist-cjs/runtimeConfig.js +9 -9
- package/dist-cjs/runtimeConfig.native.js +1 -1
- package/dist-cjs/waiters/waitForAuditReportCreated.js +3 -3
- package/dist-cjs/waiters/waitForCertificateAuthorityCSRCreated.js +3 -3
- package/dist-cjs/waiters/waitForCertificateIssued.js +3 -3
- package/dist-es/ACMPCA.js +23 -23
- package/dist-es/models/models_0.js +8 -0
- package/dist-es/pagination/ListCertificateAuthoritiesPaginator.js +4 -4
- package/dist-es/pagination/ListPermissionsPaginator.js +4 -4
- package/dist-es/pagination/ListTagsPaginator.js +4 -4
- package/dist-es/protocols/Aws_json1_1.js +56 -2
- package/dist-types/ACMPCA.d.ts +110 -111
- package/dist-types/ACMPCAClient.d.ts +15 -16
- package/dist-types/commands/CreateCertificateAuthorityAuditReportCommand.d.ts +10 -10
- package/dist-types/commands/CreateCertificateAuthorityCommand.d.ts +15 -15
- package/dist-types/commands/CreatePermissionCommand.d.ts +3 -3
- package/dist-types/commands/DeleteCertificateAuthorityCommand.d.ts +2 -2
- package/dist-types/commands/DeletePermissionCommand.d.ts +4 -4
- package/dist-types/commands/DeletePolicyCommand.d.ts +9 -9
- package/dist-types/commands/DescribeCertificateAuthorityCommand.d.ts +4 -4
- package/dist-types/commands/GetCertificateAuthorityCsrCommand.d.ts +3 -3
- package/dist-types/commands/GetPolicyCommand.d.ts +7 -7
- package/dist-types/commands/ImportCertificateAuthorityCertificateCommand.d.ts +10 -10
- package/dist-types/commands/IssueCertificateCommand.d.ts +1 -1
- package/dist-types/commands/ListPermissionsCommand.d.ts +3 -3
- package/dist-types/commands/PutPolicyCommand.d.ts +8 -8
- package/dist-types/commands/RevokeCertificateCommand.d.ts +13 -13
- package/dist-types/commands/TagCertificateAuthorityCommand.d.ts +1 -1
- package/dist-types/commands/UpdateCertificateAuthorityCommand.d.ts +4 -4
- package/dist-types/models/models_0.d.ts +194 -85
- package/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +3 -3
- package/dist-types/ts3.4/ACMPCAClient.d.ts +2 -2
- package/dist-types/ts3.4/models/models_0.d.ts +28 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +3 -3
- package/package.json +35 -35
|
@@ -11,7 +11,7 @@ class UpdateCertificateAuthorityCommand extends smithy_client_1.Command {
|
|
|
11
11
|
this.input = input;
|
|
12
12
|
}
|
|
13
13
|
resolveMiddleware(clientStack, configuration, options) {
|
|
14
|
-
this.middlewareStack.use(middleware_serde_1.getSerdePlugin(configuration, this.serialize, this.deserialize));
|
|
14
|
+
this.middlewareStack.use((0, middleware_serde_1.getSerdePlugin)(configuration, this.serialize, this.deserialize));
|
|
15
15
|
const stack = clientStack.concat(this.middlewareStack);
|
|
16
16
|
const { logger } = configuration;
|
|
17
17
|
const clientName = "ACMPCAClient";
|
|
@@ -27,10 +27,10 @@ class UpdateCertificateAuthorityCommand extends smithy_client_1.Command {
|
|
|
27
27
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
28
28
|
}
|
|
29
29
|
serialize(input, context) {
|
|
30
|
-
return Aws_json1_1_1.serializeAws_json1_1UpdateCertificateAuthorityCommand(input, context);
|
|
30
|
+
return (0, Aws_json1_1_1.serializeAws_json1_1UpdateCertificateAuthorityCommand)(input, context);
|
|
31
31
|
}
|
|
32
32
|
deserialize(output, context) {
|
|
33
|
-
return Aws_json1_1_1.deserializeAws_json1_1UpdateCertificateAuthorityCommand(output, context);
|
|
33
|
+
return (0, Aws_json1_1_1.deserializeAws_json1_1UpdateCertificateAuthorityCommand)(output, context);
|
|
34
34
|
}
|
|
35
35
|
}
|
|
36
36
|
exports.UpdateCertificateAuthorityCommand = UpdateCertificateAuthorityCommand;
|
package/dist-cjs/endpoints.js
CHANGED
|
@@ -184,7 +184,7 @@ const partitionHash = {
|
|
|
184
184
|
],
|
|
185
185
|
},
|
|
186
186
|
};
|
|
187
|
-
const defaultRegionInfoProvider = async (region, options) => config_resolver_1.getRegionInfo(region, {
|
|
187
|
+
const defaultRegionInfoProvider = async (region, options) => (0, config_resolver_1.getRegionInfo)(region, {
|
|
188
188
|
...options,
|
|
189
189
|
signingService: "acm-pca",
|
|
190
190
|
regionHash,
|
|
@@ -1,8 +1,14 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
4
|
-
exports.UpdateCertificateAuthorityRequest = exports.UntagCertificateAuthorityRequest = exports.TooManyTagsException = exports.TagCertificateAuthorityRequest = exports.RevokeCertificateRequest = exports.RevocationReason = exports.RequestAlreadyProcessedException = exports.RestoreCertificateAuthorityRequest = exports.PutPolicyRequest = exports.ListTagsResponse = exports.ListTagsRequest = exports.ListPermissionsResponse = exports.Permission = exports.ListPermissionsRequest = exports.ListCertificateAuthoritiesResponse = exports.ListCertificateAuthoritiesRequest = exports.ResourceOwner = exports.InvalidNextTokenException = exports.MalformedCSRException = exports.IssueCertificateResponse = exports.IssueCertificateRequest = exports.Validity = exports.ValidityPeriodType = exports.ApiPassthrough = exports.Extensions = exports.ExtendedKeyUsage = exports.ExtendedKeyUsageType = exports.PolicyInformation = exports.PolicyQualifierInfo = exports.Qualifier = exports.PolicyQualifierId = exports.MalformedCertificateException = exports.InvalidRequestException = exports.ImportCertificateAuthorityCertificateRequest = exports.CertificateMismatchException = exports.GetPolicyResponse = exports.GetPolicyRequest = exports.GetCertificateAuthorityCsrResponse = exports.GetCertificateAuthorityCsrRequest = exports.GetCertificateAuthorityCertificateResponse = exports.GetCertificateAuthorityCertificateRequest = exports.GetCertificateResponse = void 0;
|
|
3
|
+
exports.DescribeCertificateAuthorityAuditReportResponse = exports.AuditReportStatus = exports.DescribeCertificateAuthorityAuditReportRequest = exports.DescribeCertificateAuthorityResponse = exports.CertificateAuthority = exports.CertificateAuthorityStatus = exports.FailureReason = exports.DescribeCertificateAuthorityRequest = exports.LockoutPreventedException = exports.DeletePolicyRequest = exports.DeletePermissionRequest = exports.DeleteCertificateAuthorityRequest = exports.ConcurrentModificationException = exports.PermissionAlreadyExistsException = exports.CreatePermissionRequest = exports.ActionType = exports.ResourceNotFoundException = exports.RequestInProgressException = exports.RequestFailedException = exports.InvalidStateException = exports.InvalidArnException = exports.CreateCertificateAuthorityAuditReportResponse = exports.CreateCertificateAuthorityAuditReportRequest = exports.AuditReportResponseFormat = exports.LimitExceededException = exports.InvalidTagException = exports.InvalidPolicyException = exports.InvalidArgsException = exports.CreateCertificateAuthorityResponse = exports.CreateCertificateAuthorityRequest = exports.Tag = exports.RevocationConfiguration = exports.OcspConfiguration = exports.CrlConfiguration = exports.S3ObjectAcl = exports.KeyStorageSecurityStandard = exports.CertificateAuthorityType = exports.CertificateAuthorityConfiguration = exports.SigningAlgorithm = exports.KeyAlgorithm = exports.CsrExtensions = exports.KeyUsage = exports.AccessDescription = exports.AccessMethod = exports.AccessMethodType = exports.GeneralName = exports.OtherName = exports.EdiPartyName = exports.ASN1Subject = exports.CustomAttribute = void 0;
|
|
4
|
+
exports.UpdateCertificateAuthorityRequest = exports.UntagCertificateAuthorityRequest = exports.TooManyTagsException = exports.TagCertificateAuthorityRequest = exports.RevokeCertificateRequest = exports.RevocationReason = exports.RequestAlreadyProcessedException = exports.RestoreCertificateAuthorityRequest = exports.PutPolicyRequest = exports.ListTagsResponse = exports.ListTagsRequest = exports.ListPermissionsResponse = exports.Permission = exports.ListPermissionsRequest = exports.ListCertificateAuthoritiesResponse = exports.ListCertificateAuthoritiesRequest = exports.ResourceOwner = exports.InvalidNextTokenException = exports.MalformedCSRException = exports.IssueCertificateResponse = exports.IssueCertificateRequest = exports.Validity = exports.ValidityPeriodType = exports.ApiPassthrough = exports.Extensions = exports.ExtendedKeyUsage = exports.ExtendedKeyUsageType = exports.CustomExtension = exports.PolicyInformation = exports.PolicyQualifierInfo = exports.Qualifier = exports.PolicyQualifierId = exports.MalformedCertificateException = exports.InvalidRequestException = exports.ImportCertificateAuthorityCertificateRequest = exports.CertificateMismatchException = exports.GetPolicyResponse = exports.GetPolicyRequest = exports.GetCertificateAuthorityCsrResponse = exports.GetCertificateAuthorityCsrRequest = exports.GetCertificateAuthorityCertificateResponse = exports.GetCertificateAuthorityCertificateRequest = exports.GetCertificateResponse = exports.GetCertificateRequest = void 0;
|
|
5
5
|
const ACMPCAServiceException_1 = require("./ACMPCAServiceException");
|
|
6
|
+
var CustomAttribute;
|
|
7
|
+
(function (CustomAttribute) {
|
|
8
|
+
CustomAttribute.filterSensitiveLog = (obj) => ({
|
|
9
|
+
...obj,
|
|
10
|
+
});
|
|
11
|
+
})(CustomAttribute = exports.CustomAttribute || (exports.CustomAttribute = {}));
|
|
6
12
|
var ASN1Subject;
|
|
7
13
|
(function (ASN1Subject) {
|
|
8
14
|
ASN1Subject.filterSensitiveLog = (obj) => ({
|
|
@@ -500,6 +506,12 @@ var PolicyInformation;
|
|
|
500
506
|
...obj,
|
|
501
507
|
});
|
|
502
508
|
})(PolicyInformation = exports.PolicyInformation || (exports.PolicyInformation = {}));
|
|
509
|
+
var CustomExtension;
|
|
510
|
+
(function (CustomExtension) {
|
|
511
|
+
CustomExtension.filterSensitiveLog = (obj) => ({
|
|
512
|
+
...obj,
|
|
513
|
+
});
|
|
514
|
+
})(CustomExtension = exports.CustomExtension || (exports.CustomExtension = {}));
|
|
503
515
|
var ExtendedKeyUsageType;
|
|
504
516
|
(function (ExtendedKeyUsageType) {
|
|
505
517
|
ExtendedKeyUsageType["CERTIFICATE_TRANSPARENCY"] = "CERTIFICATE_TRANSPARENCY";
|