@aws-sdk/client-codeguruprofiler 3.128.0 → 3.137.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/dist-cjs/commands/AddNotificationChannelsCommand.js +2 -2
- package/dist-cjs/commands/BatchGetFrameMetricDataCommand.js +2 -2
- package/dist-cjs/commands/ConfigureAgentCommand.js +2 -2
- package/dist-cjs/commands/CreateProfilingGroupCommand.js +2 -2
- package/dist-cjs/commands/DeleteProfilingGroupCommand.js +2 -2
- package/dist-cjs/commands/DescribeProfilingGroupCommand.js +2 -2
- package/dist-cjs/commands/GetFindingsReportAccountSummaryCommand.js +2 -2
- package/dist-cjs/commands/GetNotificationConfigurationCommand.js +2 -2
- package/dist-cjs/commands/GetPolicyCommand.js +2 -2
- package/dist-cjs/commands/GetProfileCommand.js +2 -2
- package/dist-cjs/commands/GetRecommendationsCommand.js +2 -2
- package/dist-cjs/commands/ListFindingsReportsCommand.js +2 -2
- package/dist-cjs/commands/ListProfileTimesCommand.js +2 -2
- package/dist-cjs/commands/ListProfilingGroupsCommand.js +2 -2
- package/dist-cjs/commands/ListTagsForResourceCommand.js +2 -2
- package/dist-cjs/commands/PostAgentProfileCommand.js +2 -2
- package/dist-cjs/commands/PutPermissionCommand.js +2 -2
- package/dist-cjs/commands/RemoveNotificationChannelCommand.js +2 -2
- package/dist-cjs/commands/RemovePermissionCommand.js +2 -2
- package/dist-cjs/commands/SubmitFeedbackCommand.js +2 -2
- package/dist-cjs/commands/TagResourceCommand.js +2 -2
- package/dist-cjs/commands/UntagResourceCommand.js +2 -2
- package/dist-cjs/commands/UpdateProfilingGroupCommand.js +2 -2
- package/dist-cjs/models/models_0.js +262 -392
- package/dist-cjs/protocols/Aws_restJson1.js +3 -0
- package/dist-es/commands/AddNotificationChannelsCommand.js +3 -3
- package/dist-es/commands/BatchGetFrameMetricDataCommand.js +3 -3
- package/dist-es/commands/ConfigureAgentCommand.js +3 -3
- package/dist-es/commands/CreateProfilingGroupCommand.js +3 -3
- package/dist-es/commands/DeleteProfilingGroupCommand.js +3 -3
- package/dist-es/commands/DescribeProfilingGroupCommand.js +3 -3
- package/dist-es/commands/GetFindingsReportAccountSummaryCommand.js +3 -3
- package/dist-es/commands/GetNotificationConfigurationCommand.js +3 -3
- package/dist-es/commands/GetPolicyCommand.js +3 -3
- package/dist-es/commands/GetProfileCommand.js +3 -3
- package/dist-es/commands/GetRecommendationsCommand.js +3 -3
- package/dist-es/commands/ListFindingsReportsCommand.js +3 -3
- package/dist-es/commands/ListProfileTimesCommand.js +3 -3
- package/dist-es/commands/ListProfilingGroupsCommand.js +3 -3
- package/dist-es/commands/ListTagsForResourceCommand.js +3 -3
- package/dist-es/commands/PostAgentProfileCommand.js +3 -3
- package/dist-es/commands/PutPermissionCommand.js +3 -3
- package/dist-es/commands/RemoveNotificationChannelCommand.js +3 -3
- package/dist-es/commands/RemovePermissionCommand.js +3 -3
- package/dist-es/commands/SubmitFeedbackCommand.js +3 -3
- package/dist-es/commands/TagResourceCommand.js +3 -3
- package/dist-es/commands/UntagResourceCommand.js +3 -3
- package/dist-es/commands/UpdateProfilingGroupCommand.js +3 -3
- package/dist-es/models/models_0.js +65 -260
- package/dist-es/protocols/Aws_restJson1.js +3 -0
- package/dist-types/models/models_0.d.ts +260 -390
- package/dist-types/ts3.4/models/models_0.d.ts +130 -260
- package/package.json +9 -9
|
@@ -2449,6 +2449,9 @@ const loadRestJsonErrorCode = (output, data) => {
|
|
|
2449
2449
|
const findKey = (object, key) => Object.keys(object).find((k) => k.toLowerCase() === key.toLowerCase());
|
|
2450
2450
|
const sanitizeErrorCode = (rawValue) => {
|
|
2451
2451
|
let cleanValue = rawValue;
|
|
2452
|
+
if (typeof cleanValue === "number") {
|
|
2453
|
+
cleanValue = cleanValue.toString();
|
|
2454
|
+
}
|
|
2452
2455
|
if (cleanValue.indexOf(":") >= 0) {
|
|
2453
2456
|
cleanValue = cleanValue.split(":")[0];
|
|
2454
2457
|
}
|
|
@@ -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 { AddNotificationChannelsRequestFilterSensitiveLog, AddNotificationChannelsResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_restJson1AddNotificationChannelsCommand, serializeAws_restJson1AddNotificationChannelsCommand, } from "../protocols/Aws_restJson1";
|
|
6
6
|
var AddNotificationChannelsCommand = (function (_super) {
|
|
7
7
|
__extends(AddNotificationChannelsCommand, _super);
|
|
@@ -20,8 +20,8 @@ var AddNotificationChannelsCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: AddNotificationChannelsRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: AddNotificationChannelsResponseFilterSensitiveLog,
|
|
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 { BatchGetFrameMetricDataRequestFilterSensitiveLog, BatchGetFrameMetricDataResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_restJson1BatchGetFrameMetricDataCommand, serializeAws_restJson1BatchGetFrameMetricDataCommand, } from "../protocols/Aws_restJson1";
|
|
6
6
|
var BatchGetFrameMetricDataCommand = (function (_super) {
|
|
7
7
|
__extends(BatchGetFrameMetricDataCommand, _super);
|
|
@@ -20,8 +20,8 @@ var BatchGetFrameMetricDataCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: BatchGetFrameMetricDataRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: BatchGetFrameMetricDataResponseFilterSensitiveLog,
|
|
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 { ConfigureAgentRequestFilterSensitiveLog, ConfigureAgentResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_restJson1ConfigureAgentCommand, serializeAws_restJson1ConfigureAgentCommand, } from "../protocols/Aws_restJson1";
|
|
6
6
|
var ConfigureAgentCommand = (function (_super) {
|
|
7
7
|
__extends(ConfigureAgentCommand, _super);
|
|
@@ -20,8 +20,8 @@ var ConfigureAgentCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: ConfigureAgentRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: ConfigureAgentResponseFilterSensitiveLog,
|
|
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 { CreateProfilingGroupRequestFilterSensitiveLog, CreateProfilingGroupResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_restJson1CreateProfilingGroupCommand, serializeAws_restJson1CreateProfilingGroupCommand, } from "../protocols/Aws_restJson1";
|
|
6
6
|
var CreateProfilingGroupCommand = (function (_super) {
|
|
7
7
|
__extends(CreateProfilingGroupCommand, _super);
|
|
@@ -20,8 +20,8 @@ var CreateProfilingGroupCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: CreateProfilingGroupRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: CreateProfilingGroupResponseFilterSensitiveLog,
|
|
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 { DeleteProfilingGroupRequestFilterSensitiveLog, DeleteProfilingGroupResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_restJson1DeleteProfilingGroupCommand, serializeAws_restJson1DeleteProfilingGroupCommand, } from "../protocols/Aws_restJson1";
|
|
6
6
|
var DeleteProfilingGroupCommand = (function (_super) {
|
|
7
7
|
__extends(DeleteProfilingGroupCommand, _super);
|
|
@@ -20,8 +20,8 @@ var DeleteProfilingGroupCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: DeleteProfilingGroupRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: DeleteProfilingGroupResponseFilterSensitiveLog,
|
|
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 { DescribeProfilingGroupRequestFilterSensitiveLog, DescribeProfilingGroupResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_restJson1DescribeProfilingGroupCommand, serializeAws_restJson1DescribeProfilingGroupCommand, } from "../protocols/Aws_restJson1";
|
|
6
6
|
var DescribeProfilingGroupCommand = (function (_super) {
|
|
7
7
|
__extends(DescribeProfilingGroupCommand, _super);
|
|
@@ -20,8 +20,8 @@ var DescribeProfilingGroupCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: DescribeProfilingGroupRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: DescribeProfilingGroupResponseFilterSensitiveLog,
|
|
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 { GetFindingsReportAccountSummaryRequestFilterSensitiveLog, GetFindingsReportAccountSummaryResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_restJson1GetFindingsReportAccountSummaryCommand, serializeAws_restJson1GetFindingsReportAccountSummaryCommand, } from "../protocols/Aws_restJson1";
|
|
6
6
|
var GetFindingsReportAccountSummaryCommand = (function (_super) {
|
|
7
7
|
__extends(GetFindingsReportAccountSummaryCommand, _super);
|
|
@@ -20,8 +20,8 @@ var GetFindingsReportAccountSummaryCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: GetFindingsReportAccountSummaryRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: GetFindingsReportAccountSummaryResponseFilterSensitiveLog,
|
|
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 { GetNotificationConfigurationRequestFilterSensitiveLog, GetNotificationConfigurationResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_restJson1GetNotificationConfigurationCommand, serializeAws_restJson1GetNotificationConfigurationCommand, } from "../protocols/Aws_restJson1";
|
|
6
6
|
var GetNotificationConfigurationCommand = (function (_super) {
|
|
7
7
|
__extends(GetNotificationConfigurationCommand, _super);
|
|
@@ -20,8 +20,8 @@ var GetNotificationConfigurationCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: GetNotificationConfigurationRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: GetNotificationConfigurationResponseFilterSensitiveLog,
|
|
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_restJson1GetPolicyCommand, serializeAws_restJson1GetPolicyCommand, } from "../protocols/Aws_restJson1";
|
|
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 { GetProfileRequestFilterSensitiveLog, GetProfileResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_restJson1GetProfileCommand, serializeAws_restJson1GetProfileCommand, } from "../protocols/Aws_restJson1";
|
|
6
6
|
var GetProfileCommand = (function (_super) {
|
|
7
7
|
__extends(GetProfileCommand, _super);
|
|
@@ -20,8 +20,8 @@ var GetProfileCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: GetProfileRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: GetProfileResponseFilterSensitiveLog,
|
|
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 { GetRecommendationsRequestFilterSensitiveLog, GetRecommendationsResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_restJson1GetRecommendationsCommand, serializeAws_restJson1GetRecommendationsCommand, } from "../protocols/Aws_restJson1";
|
|
6
6
|
var GetRecommendationsCommand = (function (_super) {
|
|
7
7
|
__extends(GetRecommendationsCommand, _super);
|
|
@@ -20,8 +20,8 @@ var GetRecommendationsCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: GetRecommendationsRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: GetRecommendationsResponseFilterSensitiveLog,
|
|
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 { ListFindingsReportsRequestFilterSensitiveLog, ListFindingsReportsResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_restJson1ListFindingsReportsCommand, serializeAws_restJson1ListFindingsReportsCommand, } from "../protocols/Aws_restJson1";
|
|
6
6
|
var ListFindingsReportsCommand = (function (_super) {
|
|
7
7
|
__extends(ListFindingsReportsCommand, _super);
|
|
@@ -20,8 +20,8 @@ var ListFindingsReportsCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: ListFindingsReportsRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: ListFindingsReportsResponseFilterSensitiveLog,
|
|
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 { ListProfileTimesRequestFilterSensitiveLog, ListProfileTimesResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_restJson1ListProfileTimesCommand, serializeAws_restJson1ListProfileTimesCommand, } from "../protocols/Aws_restJson1";
|
|
6
6
|
var ListProfileTimesCommand = (function (_super) {
|
|
7
7
|
__extends(ListProfileTimesCommand, _super);
|
|
@@ -20,8 +20,8 @@ var ListProfileTimesCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: ListProfileTimesRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: ListProfileTimesResponseFilterSensitiveLog,
|
|
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 { ListProfilingGroupsRequestFilterSensitiveLog, ListProfilingGroupsResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_restJson1ListProfilingGroupsCommand, serializeAws_restJson1ListProfilingGroupsCommand, } from "../protocols/Aws_restJson1";
|
|
6
6
|
var ListProfilingGroupsCommand = (function (_super) {
|
|
7
7
|
__extends(ListProfilingGroupsCommand, _super);
|
|
@@ -20,8 +20,8 @@ var ListProfilingGroupsCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: ListProfilingGroupsRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: ListProfilingGroupsResponseFilterSensitiveLog,
|
|
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 { ListTagsForResourceRequestFilterSensitiveLog, ListTagsForResourceResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_restJson1ListTagsForResourceCommand, serializeAws_restJson1ListTagsForResourceCommand, } from "../protocols/Aws_restJson1";
|
|
6
6
|
var ListTagsForResourceCommand = (function (_super) {
|
|
7
7
|
__extends(ListTagsForResourceCommand, _super);
|
|
@@ -20,8 +20,8 @@ var ListTagsForResourceCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: ListTagsForResourceRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: ListTagsForResourceResponseFilterSensitiveLog,
|
|
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 { PostAgentProfileRequestFilterSensitiveLog, PostAgentProfileResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_restJson1PostAgentProfileCommand, serializeAws_restJson1PostAgentProfileCommand, } from "../protocols/Aws_restJson1";
|
|
6
6
|
var PostAgentProfileCommand = (function (_super) {
|
|
7
7
|
__extends(PostAgentProfileCommand, _super);
|
|
@@ -20,8 +20,8 @@ var PostAgentProfileCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: PostAgentProfileRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: PostAgentProfileResponseFilterSensitiveLog,
|
|
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 { PutPermissionRequestFilterSensitiveLog, PutPermissionResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_restJson1PutPermissionCommand, serializeAws_restJson1PutPermissionCommand, } from "../protocols/Aws_restJson1";
|
|
6
6
|
var PutPermissionCommand = (function (_super) {
|
|
7
7
|
__extends(PutPermissionCommand, _super);
|
|
@@ -20,8 +20,8 @@ var PutPermissionCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: PutPermissionRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: PutPermissionResponseFilterSensitiveLog,
|
|
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 { RemoveNotificationChannelRequestFilterSensitiveLog, RemoveNotificationChannelResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_restJson1RemoveNotificationChannelCommand, serializeAws_restJson1RemoveNotificationChannelCommand, } from "../protocols/Aws_restJson1";
|
|
6
6
|
var RemoveNotificationChannelCommand = (function (_super) {
|
|
7
7
|
__extends(RemoveNotificationChannelCommand, _super);
|
|
@@ -20,8 +20,8 @@ var RemoveNotificationChannelCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: RemoveNotificationChannelRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: RemoveNotificationChannelResponseFilterSensitiveLog,
|
|
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 { RemovePermissionRequestFilterSensitiveLog, RemovePermissionResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_restJson1RemovePermissionCommand, serializeAws_restJson1RemovePermissionCommand, } from "../protocols/Aws_restJson1";
|
|
6
6
|
var RemovePermissionCommand = (function (_super) {
|
|
7
7
|
__extends(RemovePermissionCommand, _super);
|
|
@@ -20,8 +20,8 @@ var RemovePermissionCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: RemovePermissionRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: RemovePermissionResponseFilterSensitiveLog,
|
|
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 { SubmitFeedbackRequestFilterSensitiveLog, SubmitFeedbackResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_restJson1SubmitFeedbackCommand, serializeAws_restJson1SubmitFeedbackCommand, } from "../protocols/Aws_restJson1";
|
|
6
6
|
var SubmitFeedbackCommand = (function (_super) {
|
|
7
7
|
__extends(SubmitFeedbackCommand, _super);
|
|
@@ -20,8 +20,8 @@ var SubmitFeedbackCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: SubmitFeedbackRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: SubmitFeedbackResponseFilterSensitiveLog,
|
|
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 { TagResourceRequestFilterSensitiveLog, TagResourceResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_restJson1TagResourceCommand, serializeAws_restJson1TagResourceCommand, } from "../protocols/Aws_restJson1";
|
|
6
6
|
var TagResourceCommand = (function (_super) {
|
|
7
7
|
__extends(TagResourceCommand, _super);
|
|
@@ -20,8 +20,8 @@ var TagResourceCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: TagResourceRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: TagResourceResponseFilterSensitiveLog,
|
|
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 { UntagResourceRequestFilterSensitiveLog, UntagResourceResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_restJson1UntagResourceCommand, serializeAws_restJson1UntagResourceCommand, } from "../protocols/Aws_restJson1";
|
|
6
6
|
var UntagResourceCommand = (function (_super) {
|
|
7
7
|
__extends(UntagResourceCommand, _super);
|
|
@@ -20,8 +20,8 @@ var UntagResourceCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: UntagResourceRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: UntagResourceResponseFilterSensitiveLog,
|
|
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 { UpdateProfilingGroupRequestFilterSensitiveLog, UpdateProfilingGroupResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_restJson1UpdateProfilingGroupCommand, serializeAws_restJson1UpdateProfilingGroupCommand, } from "../protocols/Aws_restJson1";
|
|
6
6
|
var UpdateProfilingGroupCommand = (function (_super) {
|
|
7
7
|
__extends(UpdateProfilingGroupCommand, _super);
|
|
@@ -20,8 +20,8 @@ var UpdateProfilingGroupCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: UpdateProfilingGroupRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: UpdateProfilingGroupResponseFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
var requestHandler = configuration.requestHandler;
|
|
27
27
|
return stack.resolve(function (request) {
|