@aws-sdk/client-devops-guru 3.133.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 +11 -0
- package/dist-cjs/commands/AddNotificationChannelCommand.js +2 -2
- package/dist-cjs/commands/DeleteInsightCommand.js +2 -2
- package/dist-cjs/commands/DescribeAccountHealthCommand.js +2 -2
- package/dist-cjs/commands/DescribeAccountOverviewCommand.js +2 -2
- package/dist-cjs/commands/DescribeAnomalyCommand.js +2 -2
- package/dist-cjs/commands/DescribeEventSourcesConfigCommand.js +2 -2
- package/dist-cjs/commands/DescribeFeedbackCommand.js +2 -2
- package/dist-cjs/commands/DescribeInsightCommand.js +2 -2
- package/dist-cjs/commands/DescribeOrganizationHealthCommand.js +2 -2
- package/dist-cjs/commands/DescribeOrganizationOverviewCommand.js +2 -2
- package/dist-cjs/commands/DescribeOrganizationResourceCollectionHealthCommand.js +2 -2
- package/dist-cjs/commands/DescribeResourceCollectionHealthCommand.js +2 -2
- package/dist-cjs/commands/DescribeServiceIntegrationCommand.js +2 -2
- package/dist-cjs/commands/GetCostEstimationCommand.js +2 -2
- package/dist-cjs/commands/GetResourceCollectionCommand.js +2 -2
- package/dist-cjs/commands/ListAnomaliesForInsightCommand.js +2 -2
- package/dist-cjs/commands/ListAnomalousLogGroupsCommand.js +2 -2
- package/dist-cjs/commands/ListEventsCommand.js +2 -2
- package/dist-cjs/commands/ListInsightsCommand.js +2 -2
- package/dist-cjs/commands/ListMonitoredResourcesCommand.js +2 -2
- package/dist-cjs/commands/ListNotificationChannelsCommand.js +2 -2
- package/dist-cjs/commands/ListOrganizationInsightsCommand.js +2 -2
- package/dist-cjs/commands/ListRecommendationsCommand.js +2 -2
- package/dist-cjs/commands/PutFeedbackCommand.js +2 -2
- package/dist-cjs/commands/RemoveNotificationChannelCommand.js +2 -2
- package/dist-cjs/commands/SearchInsightsCommand.js +2 -2
- package/dist-cjs/commands/SearchOrganizationInsightsCommand.js +2 -2
- package/dist-cjs/commands/StartCostEstimationCommand.js +2 -2
- package/dist-cjs/commands/UpdateEventSourcesConfigCommand.js +2 -2
- package/dist-cjs/commands/UpdateResourceCollectionCommand.js +2 -2
- package/dist-cjs/commands/UpdateServiceIntegrationCommand.js +2 -2
- package/dist-cjs/models/models_0.js +604 -904
- package/dist-es/commands/AddNotificationChannelCommand.js +3 -3
- package/dist-es/commands/DeleteInsightCommand.js +3 -3
- package/dist-es/commands/DescribeAccountHealthCommand.js +3 -3
- package/dist-es/commands/DescribeAccountOverviewCommand.js +3 -3
- package/dist-es/commands/DescribeAnomalyCommand.js +3 -3
- package/dist-es/commands/DescribeEventSourcesConfigCommand.js +3 -3
- package/dist-es/commands/DescribeFeedbackCommand.js +3 -3
- package/dist-es/commands/DescribeInsightCommand.js +3 -3
- package/dist-es/commands/DescribeOrganizationHealthCommand.js +3 -3
- package/dist-es/commands/DescribeOrganizationOverviewCommand.js +3 -3
- package/dist-es/commands/DescribeOrganizationResourceCollectionHealthCommand.js +3 -3
- package/dist-es/commands/DescribeResourceCollectionHealthCommand.js +3 -3
- package/dist-es/commands/DescribeServiceIntegrationCommand.js +3 -3
- package/dist-es/commands/GetCostEstimationCommand.js +3 -3
- package/dist-es/commands/GetResourceCollectionCommand.js +3 -3
- package/dist-es/commands/ListAnomaliesForInsightCommand.js +3 -3
- package/dist-es/commands/ListAnomalousLogGroupsCommand.js +3 -3
- package/dist-es/commands/ListEventsCommand.js +3 -3
- package/dist-es/commands/ListInsightsCommand.js +3 -3
- package/dist-es/commands/ListMonitoredResourcesCommand.js +3 -3
- package/dist-es/commands/ListNotificationChannelsCommand.js +3 -3
- package/dist-es/commands/ListOrganizationInsightsCommand.js +3 -3
- package/dist-es/commands/ListRecommendationsCommand.js +3 -3
- package/dist-es/commands/PutFeedbackCommand.js +3 -3
- package/dist-es/commands/RemoveNotificationChannelCommand.js +3 -3
- package/dist-es/commands/SearchInsightsCommand.js +3 -3
- package/dist-es/commands/SearchOrganizationInsightsCommand.js +3 -3
- package/dist-es/commands/StartCostEstimationCommand.js +3 -3
- package/dist-es/commands/UpdateEventSourcesConfigCommand.js +3 -3
- package/dist-es/commands/UpdateResourceCollectionCommand.js +3 -3
- package/dist-es/commands/UpdateServiceIntegrationCommand.js +3 -3
- package/dist-es/models/models_0.js +150 -600
- package/dist-types/models/models_0.d.ts +600 -900
- package/dist-types/ts3.4/models/models_0.d.ts +300 -600
- 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 { AddNotificationChannelRequestFilterSensitiveLog, AddNotificationChannelResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_restJson1AddNotificationChannelCommand, serializeAws_restJson1AddNotificationChannelCommand, } from "../protocols/Aws_restJson1";
|
|
6
6
|
var AddNotificationChannelCommand = (function (_super) {
|
|
7
7
|
__extends(AddNotificationChannelCommand, _super);
|
|
@@ -20,8 +20,8 @@ var AddNotificationChannelCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: AddNotificationChannelRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: AddNotificationChannelResponseFilterSensitiveLog,
|
|
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 { DeleteInsightRequestFilterSensitiveLog, DeleteInsightResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_restJson1DeleteInsightCommand, serializeAws_restJson1DeleteInsightCommand, } from "../protocols/Aws_restJson1";
|
|
6
6
|
var DeleteInsightCommand = (function (_super) {
|
|
7
7
|
__extends(DeleteInsightCommand, _super);
|
|
@@ -20,8 +20,8 @@ var DeleteInsightCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: DeleteInsightRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: DeleteInsightResponseFilterSensitiveLog,
|
|
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 { DescribeAccountHealthRequestFilterSensitiveLog, DescribeAccountHealthResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_restJson1DescribeAccountHealthCommand, serializeAws_restJson1DescribeAccountHealthCommand, } from "../protocols/Aws_restJson1";
|
|
6
6
|
var DescribeAccountHealthCommand = (function (_super) {
|
|
7
7
|
__extends(DescribeAccountHealthCommand, _super);
|
|
@@ -20,8 +20,8 @@ var DescribeAccountHealthCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: DescribeAccountHealthRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: DescribeAccountHealthResponseFilterSensitiveLog,
|
|
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 { DescribeAccountOverviewRequestFilterSensitiveLog, DescribeAccountOverviewResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_restJson1DescribeAccountOverviewCommand, serializeAws_restJson1DescribeAccountOverviewCommand, } from "../protocols/Aws_restJson1";
|
|
6
6
|
var DescribeAccountOverviewCommand = (function (_super) {
|
|
7
7
|
__extends(DescribeAccountOverviewCommand, _super);
|
|
@@ -20,8 +20,8 @@ var DescribeAccountOverviewCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: DescribeAccountOverviewRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: DescribeAccountOverviewResponseFilterSensitiveLog,
|
|
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 { DescribeAnomalyRequestFilterSensitiveLog, DescribeAnomalyResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_restJson1DescribeAnomalyCommand, serializeAws_restJson1DescribeAnomalyCommand, } from "../protocols/Aws_restJson1";
|
|
6
6
|
var DescribeAnomalyCommand = (function (_super) {
|
|
7
7
|
__extends(DescribeAnomalyCommand, _super);
|
|
@@ -20,8 +20,8 @@ var DescribeAnomalyCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: DescribeAnomalyRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: DescribeAnomalyResponseFilterSensitiveLog,
|
|
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 { DescribeEventSourcesConfigRequestFilterSensitiveLog, DescribeEventSourcesConfigResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_restJson1DescribeEventSourcesConfigCommand, serializeAws_restJson1DescribeEventSourcesConfigCommand, } from "../protocols/Aws_restJson1";
|
|
6
6
|
var DescribeEventSourcesConfigCommand = (function (_super) {
|
|
7
7
|
__extends(DescribeEventSourcesConfigCommand, _super);
|
|
@@ -20,8 +20,8 @@ var DescribeEventSourcesConfigCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: DescribeEventSourcesConfigRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: DescribeEventSourcesConfigResponseFilterSensitiveLog,
|
|
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 { DescribeFeedbackRequestFilterSensitiveLog, DescribeFeedbackResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_restJson1DescribeFeedbackCommand, serializeAws_restJson1DescribeFeedbackCommand, } from "../protocols/Aws_restJson1";
|
|
6
6
|
var DescribeFeedbackCommand = (function (_super) {
|
|
7
7
|
__extends(DescribeFeedbackCommand, _super);
|
|
@@ -20,8 +20,8 @@ var DescribeFeedbackCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: DescribeFeedbackRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: DescribeFeedbackResponseFilterSensitiveLog,
|
|
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 { DescribeInsightRequestFilterSensitiveLog, DescribeInsightResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_restJson1DescribeInsightCommand, serializeAws_restJson1DescribeInsightCommand, } from "../protocols/Aws_restJson1";
|
|
6
6
|
var DescribeInsightCommand = (function (_super) {
|
|
7
7
|
__extends(DescribeInsightCommand, _super);
|
|
@@ -20,8 +20,8 @@ var DescribeInsightCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: DescribeInsightRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: DescribeInsightResponseFilterSensitiveLog,
|
|
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 { DescribeOrganizationHealthRequestFilterSensitiveLog, DescribeOrganizationHealthResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_restJson1DescribeOrganizationHealthCommand, serializeAws_restJson1DescribeOrganizationHealthCommand, } from "../protocols/Aws_restJson1";
|
|
6
6
|
var DescribeOrganizationHealthCommand = (function (_super) {
|
|
7
7
|
__extends(DescribeOrganizationHealthCommand, _super);
|
|
@@ -20,8 +20,8 @@ var DescribeOrganizationHealthCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: DescribeOrganizationHealthRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: DescribeOrganizationHealthResponseFilterSensitiveLog,
|
|
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 { DescribeOrganizationOverviewRequestFilterSensitiveLog, DescribeOrganizationOverviewResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_restJson1DescribeOrganizationOverviewCommand, serializeAws_restJson1DescribeOrganizationOverviewCommand, } from "../protocols/Aws_restJson1";
|
|
6
6
|
var DescribeOrganizationOverviewCommand = (function (_super) {
|
|
7
7
|
__extends(DescribeOrganizationOverviewCommand, _super);
|
|
@@ -20,8 +20,8 @@ var DescribeOrganizationOverviewCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: DescribeOrganizationOverviewRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: DescribeOrganizationOverviewResponseFilterSensitiveLog,
|
|
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 { DescribeOrganizationResourceCollectionHealthRequestFilterSensitiveLog, DescribeOrganizationResourceCollectionHealthResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_restJson1DescribeOrganizationResourceCollectionHealthCommand, serializeAws_restJson1DescribeOrganizationResourceCollectionHealthCommand, } from "../protocols/Aws_restJson1";
|
|
6
6
|
var DescribeOrganizationResourceCollectionHealthCommand = (function (_super) {
|
|
7
7
|
__extends(DescribeOrganizationResourceCollectionHealthCommand, _super);
|
|
@@ -20,8 +20,8 @@ var DescribeOrganizationResourceCollectionHealthCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: DescribeOrganizationResourceCollectionHealthRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: DescribeOrganizationResourceCollectionHealthResponseFilterSensitiveLog,
|
|
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 { DescribeResourceCollectionHealthRequestFilterSensitiveLog, DescribeResourceCollectionHealthResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_restJson1DescribeResourceCollectionHealthCommand, serializeAws_restJson1DescribeResourceCollectionHealthCommand, } from "../protocols/Aws_restJson1";
|
|
6
6
|
var DescribeResourceCollectionHealthCommand = (function (_super) {
|
|
7
7
|
__extends(DescribeResourceCollectionHealthCommand, _super);
|
|
@@ -20,8 +20,8 @@ var DescribeResourceCollectionHealthCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: DescribeResourceCollectionHealthRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: DescribeResourceCollectionHealthResponseFilterSensitiveLog,
|
|
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 { DescribeServiceIntegrationRequestFilterSensitiveLog, DescribeServiceIntegrationResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_restJson1DescribeServiceIntegrationCommand, serializeAws_restJson1DescribeServiceIntegrationCommand, } from "../protocols/Aws_restJson1";
|
|
6
6
|
var DescribeServiceIntegrationCommand = (function (_super) {
|
|
7
7
|
__extends(DescribeServiceIntegrationCommand, _super);
|
|
@@ -20,8 +20,8 @@ var DescribeServiceIntegrationCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: DescribeServiceIntegrationRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: DescribeServiceIntegrationResponseFilterSensitiveLog,
|
|
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 { GetCostEstimationRequestFilterSensitiveLog, GetCostEstimationResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_restJson1GetCostEstimationCommand, serializeAws_restJson1GetCostEstimationCommand, } from "../protocols/Aws_restJson1";
|
|
6
6
|
var GetCostEstimationCommand = (function (_super) {
|
|
7
7
|
__extends(GetCostEstimationCommand, _super);
|
|
@@ -20,8 +20,8 @@ var GetCostEstimationCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: GetCostEstimationRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: GetCostEstimationResponseFilterSensitiveLog,
|
|
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 { GetResourceCollectionRequestFilterSensitiveLog, GetResourceCollectionResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_restJson1GetResourceCollectionCommand, serializeAws_restJson1GetResourceCollectionCommand, } from "../protocols/Aws_restJson1";
|
|
6
6
|
var GetResourceCollectionCommand = (function (_super) {
|
|
7
7
|
__extends(GetResourceCollectionCommand, _super);
|
|
@@ -20,8 +20,8 @@ var GetResourceCollectionCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: GetResourceCollectionRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: GetResourceCollectionResponseFilterSensitiveLog,
|
|
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 { ListAnomaliesForInsightRequestFilterSensitiveLog, ListAnomaliesForInsightResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_restJson1ListAnomaliesForInsightCommand, serializeAws_restJson1ListAnomaliesForInsightCommand, } from "../protocols/Aws_restJson1";
|
|
6
6
|
var ListAnomaliesForInsightCommand = (function (_super) {
|
|
7
7
|
__extends(ListAnomaliesForInsightCommand, _super);
|
|
@@ -20,8 +20,8 @@ var ListAnomaliesForInsightCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: ListAnomaliesForInsightRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: ListAnomaliesForInsightResponseFilterSensitiveLog,
|
|
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 { ListAnomalousLogGroupsRequestFilterSensitiveLog, ListAnomalousLogGroupsResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_restJson1ListAnomalousLogGroupsCommand, serializeAws_restJson1ListAnomalousLogGroupsCommand, } from "../protocols/Aws_restJson1";
|
|
6
6
|
var ListAnomalousLogGroupsCommand = (function (_super) {
|
|
7
7
|
__extends(ListAnomalousLogGroupsCommand, _super);
|
|
@@ -20,8 +20,8 @@ var ListAnomalousLogGroupsCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: ListAnomalousLogGroupsRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: ListAnomalousLogGroupsResponseFilterSensitiveLog,
|
|
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 { ListEventsRequestFilterSensitiveLog, ListEventsResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_restJson1ListEventsCommand, serializeAws_restJson1ListEventsCommand, } from "../protocols/Aws_restJson1";
|
|
6
6
|
var ListEventsCommand = (function (_super) {
|
|
7
7
|
__extends(ListEventsCommand, _super);
|
|
@@ -20,8 +20,8 @@ var ListEventsCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: ListEventsRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: ListEventsResponseFilterSensitiveLog,
|
|
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 { ListInsightsRequestFilterSensitiveLog, ListInsightsResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_restJson1ListInsightsCommand, serializeAws_restJson1ListInsightsCommand, } from "../protocols/Aws_restJson1";
|
|
6
6
|
var ListInsightsCommand = (function (_super) {
|
|
7
7
|
__extends(ListInsightsCommand, _super);
|
|
@@ -20,8 +20,8 @@ var ListInsightsCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: ListInsightsRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: ListInsightsResponseFilterSensitiveLog,
|
|
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 { ListMonitoredResourcesRequestFilterSensitiveLog, ListMonitoredResourcesResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_restJson1ListMonitoredResourcesCommand, serializeAws_restJson1ListMonitoredResourcesCommand, } from "../protocols/Aws_restJson1";
|
|
6
6
|
var ListMonitoredResourcesCommand = (function (_super) {
|
|
7
7
|
__extends(ListMonitoredResourcesCommand, _super);
|
|
@@ -20,8 +20,8 @@ var ListMonitoredResourcesCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: ListMonitoredResourcesRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: ListMonitoredResourcesResponseFilterSensitiveLog,
|
|
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 { ListNotificationChannelsRequestFilterSensitiveLog, ListNotificationChannelsResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_restJson1ListNotificationChannelsCommand, serializeAws_restJson1ListNotificationChannelsCommand, } from "../protocols/Aws_restJson1";
|
|
6
6
|
var ListNotificationChannelsCommand = (function (_super) {
|
|
7
7
|
__extends(ListNotificationChannelsCommand, _super);
|
|
@@ -20,8 +20,8 @@ var ListNotificationChannelsCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: ListNotificationChannelsRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: ListNotificationChannelsResponseFilterSensitiveLog,
|
|
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 { ListOrganizationInsightsRequestFilterSensitiveLog, ListOrganizationInsightsResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_restJson1ListOrganizationInsightsCommand, serializeAws_restJson1ListOrganizationInsightsCommand, } from "../protocols/Aws_restJson1";
|
|
6
6
|
var ListOrganizationInsightsCommand = (function (_super) {
|
|
7
7
|
__extends(ListOrganizationInsightsCommand, _super);
|
|
@@ -20,8 +20,8 @@ var ListOrganizationInsightsCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: ListOrganizationInsightsRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: ListOrganizationInsightsResponseFilterSensitiveLog,
|
|
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 { ListRecommendationsRequestFilterSensitiveLog, ListRecommendationsResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_restJson1ListRecommendationsCommand, serializeAws_restJson1ListRecommendationsCommand, } from "../protocols/Aws_restJson1";
|
|
6
6
|
var ListRecommendationsCommand = (function (_super) {
|
|
7
7
|
__extends(ListRecommendationsCommand, _super);
|
|
@@ -20,8 +20,8 @@ var ListRecommendationsCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: ListRecommendationsRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: ListRecommendationsResponseFilterSensitiveLog,
|
|
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 { PutFeedbackRequestFilterSensitiveLog, PutFeedbackResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_restJson1PutFeedbackCommand, serializeAws_restJson1PutFeedbackCommand, } from "../protocols/Aws_restJson1";
|
|
6
6
|
var PutFeedbackCommand = (function (_super) {
|
|
7
7
|
__extends(PutFeedbackCommand, _super);
|
|
@@ -20,8 +20,8 @@ var PutFeedbackCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: PutFeedbackRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: PutFeedbackResponseFilterSensitiveLog,
|
|
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 { SearchInsightsRequestFilterSensitiveLog, SearchInsightsResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_restJson1SearchInsightsCommand, serializeAws_restJson1SearchInsightsCommand, } from "../protocols/Aws_restJson1";
|
|
6
6
|
var SearchInsightsCommand = (function (_super) {
|
|
7
7
|
__extends(SearchInsightsCommand, _super);
|
|
@@ -20,8 +20,8 @@ var SearchInsightsCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: SearchInsightsRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: SearchInsightsResponseFilterSensitiveLog,
|
|
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 { SearchOrganizationInsightsRequestFilterSensitiveLog, SearchOrganizationInsightsResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_restJson1SearchOrganizationInsightsCommand, serializeAws_restJson1SearchOrganizationInsightsCommand, } from "../protocols/Aws_restJson1";
|
|
6
6
|
var SearchOrganizationInsightsCommand = (function (_super) {
|
|
7
7
|
__extends(SearchOrganizationInsightsCommand, _super);
|
|
@@ -20,8 +20,8 @@ var SearchOrganizationInsightsCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: SearchOrganizationInsightsRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: SearchOrganizationInsightsResponseFilterSensitiveLog,
|
|
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 { StartCostEstimationRequestFilterSensitiveLog, StartCostEstimationResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_restJson1StartCostEstimationCommand, serializeAws_restJson1StartCostEstimationCommand, } from "../protocols/Aws_restJson1";
|
|
6
6
|
var StartCostEstimationCommand = (function (_super) {
|
|
7
7
|
__extends(StartCostEstimationCommand, _super);
|
|
@@ -20,8 +20,8 @@ var StartCostEstimationCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: StartCostEstimationRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: StartCostEstimationResponseFilterSensitiveLog,
|
|
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 { UpdateEventSourcesConfigRequestFilterSensitiveLog, UpdateEventSourcesConfigResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_restJson1UpdateEventSourcesConfigCommand, serializeAws_restJson1UpdateEventSourcesConfigCommand, } from "../protocols/Aws_restJson1";
|
|
6
6
|
var UpdateEventSourcesConfigCommand = (function (_super) {
|
|
7
7
|
__extends(UpdateEventSourcesConfigCommand, _super);
|
|
@@ -20,8 +20,8 @@ var UpdateEventSourcesConfigCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: UpdateEventSourcesConfigRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: UpdateEventSourcesConfigResponseFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
var requestHandler = configuration.requestHandler;
|
|
27
27
|
return stack.resolve(function (request) {
|