@aws-sdk/client-acm-pca 3.131.0 → 3.141.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 +30 -0
- package/README.md +1 -2
- package/dist-cjs/commands/CreateCertificateAuthorityAuditReportCommand.js +2 -2
- package/dist-cjs/commands/CreateCertificateAuthorityCommand.js +2 -2
- package/dist-cjs/commands/CreatePermissionCommand.js +1 -1
- package/dist-cjs/commands/DeleteCertificateAuthorityCommand.js +1 -1
- package/dist-cjs/commands/DeletePermissionCommand.js +1 -1
- package/dist-cjs/commands/DeletePolicyCommand.js +1 -1
- package/dist-cjs/commands/DescribeCertificateAuthorityAuditReportCommand.js +2 -2
- package/dist-cjs/commands/DescribeCertificateAuthorityCommand.js +2 -2
- package/dist-cjs/commands/GetCertificateAuthorityCertificateCommand.js +2 -2
- package/dist-cjs/commands/GetCertificateAuthorityCsrCommand.js +2 -2
- package/dist-cjs/commands/GetCertificateCommand.js +2 -2
- package/dist-cjs/commands/GetPolicyCommand.js +2 -2
- package/dist-cjs/commands/ImportCertificateAuthorityCertificateCommand.js +1 -1
- package/dist-cjs/commands/IssueCertificateCommand.js +2 -2
- package/dist-cjs/commands/ListCertificateAuthoritiesCommand.js +2 -2
- package/dist-cjs/commands/ListPermissionsCommand.js +2 -2
- package/dist-cjs/commands/ListTagsCommand.js +2 -2
- package/dist-cjs/commands/PutPolicyCommand.js +1 -1
- package/dist-cjs/commands/RestoreCertificateAuthorityCommand.js +1 -1
- package/dist-cjs/commands/RevokeCertificateCommand.js +1 -1
- package/dist-cjs/commands/TagCertificateAuthorityCommand.js +1 -1
- package/dist-cjs/commands/UntagCertificateAuthorityCommand.js +1 -1
- package/dist-cjs/commands/UpdateCertificateAuthorityCommand.js +1 -1
- package/dist-cjs/models/models_0.js +238 -356
- package/dist-es/commands/CreateCertificateAuthorityAuditReportCommand.js +3 -3
- package/dist-es/commands/CreateCertificateAuthorityCommand.js +3 -3
- package/dist-es/commands/CreatePermissionCommand.js +2 -2
- package/dist-es/commands/DeleteCertificateAuthorityCommand.js +2 -2
- package/dist-es/commands/DeletePermissionCommand.js +2 -2
- package/dist-es/commands/DeletePolicyCommand.js +2 -2
- package/dist-es/commands/DescribeCertificateAuthorityAuditReportCommand.js +3 -3
- package/dist-es/commands/DescribeCertificateAuthorityCommand.js +3 -3
- package/dist-es/commands/GetCertificateAuthorityCertificateCommand.js +3 -3
- package/dist-es/commands/GetCertificateAuthorityCsrCommand.js +3 -3
- package/dist-es/commands/GetCertificateCommand.js +3 -3
- package/dist-es/commands/GetPolicyCommand.js +3 -3
- package/dist-es/commands/ImportCertificateAuthorityCertificateCommand.js +2 -2
- package/dist-es/commands/IssueCertificateCommand.js +3 -3
- package/dist-es/commands/ListCertificateAuthoritiesCommand.js +3 -3
- package/dist-es/commands/ListPermissionsCommand.js +3 -3
- package/dist-es/commands/ListTagsCommand.js +3 -3
- package/dist-es/commands/PutPolicyCommand.js +2 -2
- package/dist-es/commands/RestoreCertificateAuthorityCommand.js +2 -2
- package/dist-es/commands/RevokeCertificateCommand.js +2 -2
- package/dist-es/commands/TagCertificateAuthorityCommand.js +2 -2
- package/dist-es/commands/UntagCertificateAuthorityCommand.js +2 -2
- package/dist-es/commands/UpdateCertificateAuthorityCommand.js +2 -2
- package/dist-es/models/models_0.js +59 -236
- package/dist-types/ACMPCA.d.ts +0 -1
- package/dist-types/ACMPCAClient.d.ts +0 -1
- package/dist-types/models/models_0.d.ts +264 -399
- package/dist-types/ts3.4/models/models_0.d.ts +118 -236
- package/package.json +6 -6
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { __extends } from "tslib";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { CreateCertificateAuthorityAuditReportRequestFilterSensitiveLog, CreateCertificateAuthorityAuditReportResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_json1_1CreateCertificateAuthorityAuditReportCommand, serializeAws_json1_1CreateCertificateAuthorityAuditReportCommand, } from "../protocols/Aws_json1_1";
|
|
6
6
|
var CreateCertificateAuthorityAuditReportCommand = (function (_super) {
|
|
7
7
|
__extends(CreateCertificateAuthorityAuditReportCommand, _super);
|
|
@@ -20,8 +20,8 @@ var CreateCertificateAuthorityAuditReportCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: CreateCertificateAuthorityAuditReportRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: CreateCertificateAuthorityAuditReportResponseFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
var requestHandler = configuration.requestHandler;
|
|
27
27
|
return stack.resolve(function (request) {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { __extends } from "tslib";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { CreateCertificateAuthorityRequestFilterSensitiveLog, CreateCertificateAuthorityResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_json1_1CreateCertificateAuthorityCommand, serializeAws_json1_1CreateCertificateAuthorityCommand, } from "../protocols/Aws_json1_1";
|
|
6
6
|
var CreateCertificateAuthorityCommand = (function (_super) {
|
|
7
7
|
__extends(CreateCertificateAuthorityCommand, _super);
|
|
@@ -20,8 +20,8 @@ var CreateCertificateAuthorityCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: CreateCertificateAuthorityRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: CreateCertificateAuthorityResponseFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
var requestHandler = configuration.requestHandler;
|
|
27
27
|
return stack.resolve(function (request) {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { __extends } from "tslib";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { CreatePermissionRequestFilterSensitiveLog } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_json1_1CreatePermissionCommand, serializeAws_json1_1CreatePermissionCommand, } from "../protocols/Aws_json1_1";
|
|
6
6
|
var CreatePermissionCommand = (function (_super) {
|
|
7
7
|
__extends(CreatePermissionCommand, _super);
|
|
@@ -20,7 +20,7 @@ var CreatePermissionCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: CreatePermissionRequestFilterSensitiveLog,
|
|
24
24
|
outputFilterSensitiveLog: function (output) { return output; },
|
|
25
25
|
};
|
|
26
26
|
var requestHandler = configuration.requestHandler;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { __extends } from "tslib";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { DeleteCertificateAuthorityRequestFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_json1_1DeleteCertificateAuthorityCommand, serializeAws_json1_1DeleteCertificateAuthorityCommand, } from "../protocols/Aws_json1_1";
|
|
6
6
|
var DeleteCertificateAuthorityCommand = (function (_super) {
|
|
7
7
|
__extends(DeleteCertificateAuthorityCommand, _super);
|
|
@@ -20,7 +20,7 @@ var DeleteCertificateAuthorityCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: DeleteCertificateAuthorityRequestFilterSensitiveLog,
|
|
24
24
|
outputFilterSensitiveLog: function (output) { return output; },
|
|
25
25
|
};
|
|
26
26
|
var requestHandler = configuration.requestHandler;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { __extends } from "tslib";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { DeletePermissionRequestFilterSensitiveLog } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_json1_1DeletePermissionCommand, serializeAws_json1_1DeletePermissionCommand, } from "../protocols/Aws_json1_1";
|
|
6
6
|
var DeletePermissionCommand = (function (_super) {
|
|
7
7
|
__extends(DeletePermissionCommand, _super);
|
|
@@ -20,7 +20,7 @@ var DeletePermissionCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: DeletePermissionRequestFilterSensitiveLog,
|
|
24
24
|
outputFilterSensitiveLog: function (output) { return output; },
|
|
25
25
|
};
|
|
26
26
|
var requestHandler = configuration.requestHandler;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { __extends } from "tslib";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { DeletePolicyRequestFilterSensitiveLog } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_json1_1DeletePolicyCommand, serializeAws_json1_1DeletePolicyCommand, } from "../protocols/Aws_json1_1";
|
|
6
6
|
var DeletePolicyCommand = (function (_super) {
|
|
7
7
|
__extends(DeletePolicyCommand, _super);
|
|
@@ -20,7 +20,7 @@ var DeletePolicyCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: DeletePolicyRequestFilterSensitiveLog,
|
|
24
24
|
outputFilterSensitiveLog: function (output) { return output; },
|
|
25
25
|
};
|
|
26
26
|
var requestHandler = configuration.requestHandler;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { __extends } from "tslib";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { DescribeCertificateAuthorityAuditReportRequestFilterSensitiveLog, DescribeCertificateAuthorityAuditReportResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_json1_1DescribeCertificateAuthorityAuditReportCommand, serializeAws_json1_1DescribeCertificateAuthorityAuditReportCommand, } from "../protocols/Aws_json1_1";
|
|
6
6
|
var DescribeCertificateAuthorityAuditReportCommand = (function (_super) {
|
|
7
7
|
__extends(DescribeCertificateAuthorityAuditReportCommand, _super);
|
|
@@ -20,8 +20,8 @@ var DescribeCertificateAuthorityAuditReportCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: DescribeCertificateAuthorityAuditReportRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: DescribeCertificateAuthorityAuditReportResponseFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
var requestHandler = configuration.requestHandler;
|
|
27
27
|
return stack.resolve(function (request) {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { __extends } from "tslib";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { DescribeCertificateAuthorityRequestFilterSensitiveLog, DescribeCertificateAuthorityResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_json1_1DescribeCertificateAuthorityCommand, serializeAws_json1_1DescribeCertificateAuthorityCommand, } from "../protocols/Aws_json1_1";
|
|
6
6
|
var DescribeCertificateAuthorityCommand = (function (_super) {
|
|
7
7
|
__extends(DescribeCertificateAuthorityCommand, _super);
|
|
@@ -20,8 +20,8 @@ var DescribeCertificateAuthorityCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: DescribeCertificateAuthorityRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: DescribeCertificateAuthorityResponseFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
var requestHandler = configuration.requestHandler;
|
|
27
27
|
return stack.resolve(function (request) {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { __extends } from "tslib";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { GetCertificateAuthorityCertificateRequestFilterSensitiveLog, GetCertificateAuthorityCertificateResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_json1_1GetCertificateAuthorityCertificateCommand, serializeAws_json1_1GetCertificateAuthorityCertificateCommand, } from "../protocols/Aws_json1_1";
|
|
6
6
|
var GetCertificateAuthorityCertificateCommand = (function (_super) {
|
|
7
7
|
__extends(GetCertificateAuthorityCertificateCommand, _super);
|
|
@@ -20,8 +20,8 @@ var GetCertificateAuthorityCertificateCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: GetCertificateAuthorityCertificateRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: GetCertificateAuthorityCertificateResponseFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
var requestHandler = configuration.requestHandler;
|
|
27
27
|
return stack.resolve(function (request) {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { __extends } from "tslib";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { GetCertificateAuthorityCsrRequestFilterSensitiveLog, GetCertificateAuthorityCsrResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_json1_1GetCertificateAuthorityCsrCommand, serializeAws_json1_1GetCertificateAuthorityCsrCommand, } from "../protocols/Aws_json1_1";
|
|
6
6
|
var GetCertificateAuthorityCsrCommand = (function (_super) {
|
|
7
7
|
__extends(GetCertificateAuthorityCsrCommand, _super);
|
|
@@ -20,8 +20,8 @@ var GetCertificateAuthorityCsrCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: GetCertificateAuthorityCsrRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: GetCertificateAuthorityCsrResponseFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
var requestHandler = configuration.requestHandler;
|
|
27
27
|
return stack.resolve(function (request) {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { __extends } from "tslib";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { GetCertificateRequestFilterSensitiveLog, GetCertificateResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_json1_1GetCertificateCommand, serializeAws_json1_1GetCertificateCommand, } from "../protocols/Aws_json1_1";
|
|
6
6
|
var GetCertificateCommand = (function (_super) {
|
|
7
7
|
__extends(GetCertificateCommand, _super);
|
|
@@ -20,8 +20,8 @@ var GetCertificateCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: GetCertificateRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: GetCertificateResponseFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
var requestHandler = configuration.requestHandler;
|
|
27
27
|
return stack.resolve(function (request) {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { __extends } from "tslib";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { GetPolicyRequestFilterSensitiveLog, GetPolicyResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_json1_1GetPolicyCommand, serializeAws_json1_1GetPolicyCommand } from "../protocols/Aws_json1_1";
|
|
6
6
|
var GetPolicyCommand = (function (_super) {
|
|
7
7
|
__extends(GetPolicyCommand, _super);
|
|
@@ -20,8 +20,8 @@ var GetPolicyCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: GetPolicyRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: GetPolicyResponseFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
var requestHandler = configuration.requestHandler;
|
|
27
27
|
return stack.resolve(function (request) {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { __extends } from "tslib";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { ImportCertificateAuthorityCertificateRequestFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_json1_1ImportCertificateAuthorityCertificateCommand, serializeAws_json1_1ImportCertificateAuthorityCertificateCommand, } from "../protocols/Aws_json1_1";
|
|
6
6
|
var ImportCertificateAuthorityCertificateCommand = (function (_super) {
|
|
7
7
|
__extends(ImportCertificateAuthorityCertificateCommand, _super);
|
|
@@ -20,7 +20,7 @@ var ImportCertificateAuthorityCertificateCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: ImportCertificateAuthorityCertificateRequestFilterSensitiveLog,
|
|
24
24
|
outputFilterSensitiveLog: function (output) { return output; },
|
|
25
25
|
};
|
|
26
26
|
var requestHandler = configuration.requestHandler;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { __extends } from "tslib";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { IssueCertificateRequestFilterSensitiveLog, IssueCertificateResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_json1_1IssueCertificateCommand, serializeAws_json1_1IssueCertificateCommand, } from "../protocols/Aws_json1_1";
|
|
6
6
|
var IssueCertificateCommand = (function (_super) {
|
|
7
7
|
__extends(IssueCertificateCommand, _super);
|
|
@@ -20,8 +20,8 @@ var IssueCertificateCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: IssueCertificateRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: IssueCertificateResponseFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
var requestHandler = configuration.requestHandler;
|
|
27
27
|
return stack.resolve(function (request) {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { __extends } from "tslib";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { ListCertificateAuthoritiesRequestFilterSensitiveLog, ListCertificateAuthoritiesResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_json1_1ListCertificateAuthoritiesCommand, serializeAws_json1_1ListCertificateAuthoritiesCommand, } from "../protocols/Aws_json1_1";
|
|
6
6
|
var ListCertificateAuthoritiesCommand = (function (_super) {
|
|
7
7
|
__extends(ListCertificateAuthoritiesCommand, _super);
|
|
@@ -20,8 +20,8 @@ var ListCertificateAuthoritiesCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: ListCertificateAuthoritiesRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: ListCertificateAuthoritiesResponseFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
var requestHandler = configuration.requestHandler;
|
|
27
27
|
return stack.resolve(function (request) {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { __extends } from "tslib";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { ListPermissionsRequestFilterSensitiveLog, ListPermissionsResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_json1_1ListPermissionsCommand, serializeAws_json1_1ListPermissionsCommand, } from "../protocols/Aws_json1_1";
|
|
6
6
|
var ListPermissionsCommand = (function (_super) {
|
|
7
7
|
__extends(ListPermissionsCommand, _super);
|
|
@@ -20,8 +20,8 @@ var ListPermissionsCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: ListPermissionsRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: ListPermissionsResponseFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
var requestHandler = configuration.requestHandler;
|
|
27
27
|
return stack.resolve(function (request) {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { __extends } from "tslib";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { ListTagsRequestFilterSensitiveLog, ListTagsResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_json1_1ListTagsCommand, serializeAws_json1_1ListTagsCommand } from "../protocols/Aws_json1_1";
|
|
6
6
|
var ListTagsCommand = (function (_super) {
|
|
7
7
|
__extends(ListTagsCommand, _super);
|
|
@@ -20,8 +20,8 @@ var ListTagsCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: ListTagsRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: ListTagsResponseFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
var requestHandler = configuration.requestHandler;
|
|
27
27
|
return stack.resolve(function (request) {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { __extends } from "tslib";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { PutPolicyRequestFilterSensitiveLog } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_json1_1PutPolicyCommand, serializeAws_json1_1PutPolicyCommand } from "../protocols/Aws_json1_1";
|
|
6
6
|
var PutPolicyCommand = (function (_super) {
|
|
7
7
|
__extends(PutPolicyCommand, _super);
|
|
@@ -20,7 +20,7 @@ var PutPolicyCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: PutPolicyRequestFilterSensitiveLog,
|
|
24
24
|
outputFilterSensitiveLog: function (output) { return output; },
|
|
25
25
|
};
|
|
26
26
|
var requestHandler = configuration.requestHandler;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { __extends } from "tslib";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { RestoreCertificateAuthorityRequestFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_json1_1RestoreCertificateAuthorityCommand, serializeAws_json1_1RestoreCertificateAuthorityCommand, } from "../protocols/Aws_json1_1";
|
|
6
6
|
var RestoreCertificateAuthorityCommand = (function (_super) {
|
|
7
7
|
__extends(RestoreCertificateAuthorityCommand, _super);
|
|
@@ -20,7 +20,7 @@ var RestoreCertificateAuthorityCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: RestoreCertificateAuthorityRequestFilterSensitiveLog,
|
|
24
24
|
outputFilterSensitiveLog: function (output) { return output; },
|
|
25
25
|
};
|
|
26
26
|
var requestHandler = configuration.requestHandler;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { __extends } from "tslib";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { RevokeCertificateRequestFilterSensitiveLog } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_json1_1RevokeCertificateCommand, serializeAws_json1_1RevokeCertificateCommand, } from "../protocols/Aws_json1_1";
|
|
6
6
|
var RevokeCertificateCommand = (function (_super) {
|
|
7
7
|
__extends(RevokeCertificateCommand, _super);
|
|
@@ -20,7 +20,7 @@ var RevokeCertificateCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: RevokeCertificateRequestFilterSensitiveLog,
|
|
24
24
|
outputFilterSensitiveLog: function (output) { return output; },
|
|
25
25
|
};
|
|
26
26
|
var requestHandler = configuration.requestHandler;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { __extends } from "tslib";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { TagCertificateAuthorityRequestFilterSensitiveLog } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_json1_1TagCertificateAuthorityCommand, serializeAws_json1_1TagCertificateAuthorityCommand, } from "../protocols/Aws_json1_1";
|
|
6
6
|
var TagCertificateAuthorityCommand = (function (_super) {
|
|
7
7
|
__extends(TagCertificateAuthorityCommand, _super);
|
|
@@ -20,7 +20,7 @@ var TagCertificateAuthorityCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: TagCertificateAuthorityRequestFilterSensitiveLog,
|
|
24
24
|
outputFilterSensitiveLog: function (output) { return output; },
|
|
25
25
|
};
|
|
26
26
|
var requestHandler = configuration.requestHandler;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { __extends } from "tslib";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { UntagCertificateAuthorityRequestFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_json1_1UntagCertificateAuthorityCommand, serializeAws_json1_1UntagCertificateAuthorityCommand, } from "../protocols/Aws_json1_1";
|
|
6
6
|
var UntagCertificateAuthorityCommand = (function (_super) {
|
|
7
7
|
__extends(UntagCertificateAuthorityCommand, _super);
|
|
@@ -20,7 +20,7 @@ var UntagCertificateAuthorityCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: UntagCertificateAuthorityRequestFilterSensitiveLog,
|
|
24
24
|
outputFilterSensitiveLog: function (output) { return output; },
|
|
25
25
|
};
|
|
26
26
|
var requestHandler = configuration.requestHandler;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { __extends } from "tslib";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { UpdateCertificateAuthorityRequestFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_json1_1UpdateCertificateAuthorityCommand, serializeAws_json1_1UpdateCertificateAuthorityCommand, } from "../protocols/Aws_json1_1";
|
|
6
6
|
var UpdateCertificateAuthorityCommand = (function (_super) {
|
|
7
7
|
__extends(UpdateCertificateAuthorityCommand, _super);
|
|
@@ -20,7 +20,7 @@ var UpdateCertificateAuthorityCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: UpdateCertificateAuthorityRequestFilterSensitiveLog,
|
|
24
24
|
outputFilterSensitiveLog: function (output) { return output; },
|
|
25
25
|
};
|
|
26
26
|
var requestHandler = configuration.requestHandler;
|