@aws-sdk/client-application-insights 3.130.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 -1
- package/dist-cjs/commands/CreateApplicationCommand.js +2 -2
- package/dist-cjs/commands/CreateComponentCommand.js +2 -2
- package/dist-cjs/commands/CreateLogPatternCommand.js +2 -2
- package/dist-cjs/commands/DeleteApplicationCommand.js +2 -2
- package/dist-cjs/commands/DeleteComponentCommand.js +2 -2
- package/dist-cjs/commands/DeleteLogPatternCommand.js +2 -2
- package/dist-cjs/commands/DescribeApplicationCommand.js +2 -2
- package/dist-cjs/commands/DescribeComponentCommand.js +2 -2
- package/dist-cjs/commands/DescribeComponentConfigurationCommand.js +2 -2
- package/dist-cjs/commands/DescribeComponentConfigurationRecommendationCommand.js +2 -2
- package/dist-cjs/commands/DescribeLogPatternCommand.js +2 -2
- package/dist-cjs/commands/DescribeObservationCommand.js +2 -2
- package/dist-cjs/commands/DescribeProblemCommand.js +2 -2
- package/dist-cjs/commands/DescribeProblemObservationsCommand.js +2 -2
- package/dist-cjs/commands/ListApplicationsCommand.js +2 -2
- package/dist-cjs/commands/ListComponentsCommand.js +2 -2
- package/dist-cjs/commands/ListConfigurationHistoryCommand.js +2 -2
- package/dist-cjs/commands/ListLogPatternSetsCommand.js +2 -2
- package/dist-cjs/commands/ListLogPatternsCommand.js +2 -2
- package/dist-cjs/commands/ListProblemsCommand.js +2 -2
- package/dist-cjs/commands/ListTagsForResourceCommand.js +2 -2
- package/dist-cjs/commands/TagResourceCommand.js +2 -2
- package/dist-cjs/commands/UntagResourceCommand.js +2 -2
- package/dist-cjs/commands/UpdateApplicationCommand.js +2 -2
- package/dist-cjs/commands/UpdateComponentCommand.js +2 -2
- package/dist-cjs/commands/UpdateComponentConfigurationCommand.js +2 -2
- package/dist-cjs/commands/UpdateLogPatternCommand.js +2 -2
- package/dist-cjs/models/models_0.js +250 -374
- package/dist-es/commands/CreateApplicationCommand.js +3 -3
- package/dist-es/commands/CreateComponentCommand.js +3 -3
- package/dist-es/commands/CreateLogPatternCommand.js +3 -3
- package/dist-es/commands/DeleteApplicationCommand.js +3 -3
- package/dist-es/commands/DeleteComponentCommand.js +3 -3
- package/dist-es/commands/DeleteLogPatternCommand.js +3 -3
- package/dist-es/commands/DescribeApplicationCommand.js +3 -3
- package/dist-es/commands/DescribeComponentCommand.js +3 -3
- package/dist-es/commands/DescribeComponentConfigurationCommand.js +3 -3
- package/dist-es/commands/DescribeComponentConfigurationRecommendationCommand.js +3 -3
- package/dist-es/commands/DescribeLogPatternCommand.js +3 -3
- package/dist-es/commands/DescribeObservationCommand.js +3 -3
- package/dist-es/commands/DescribeProblemCommand.js +3 -3
- package/dist-es/commands/DescribeProblemObservationsCommand.js +3 -3
- package/dist-es/commands/ListApplicationsCommand.js +3 -3
- package/dist-es/commands/ListComponentsCommand.js +3 -3
- package/dist-es/commands/ListConfigurationHistoryCommand.js +3 -3
- package/dist-es/commands/ListLogPatternSetsCommand.js +3 -3
- package/dist-es/commands/ListLogPatternsCommand.js +3 -3
- package/dist-es/commands/ListProblemsCommand.js +3 -3
- package/dist-es/commands/ListTagsForResourceCommand.js +3 -3
- package/dist-es/commands/TagResourceCommand.js +3 -3
- package/dist-es/commands/UntagResourceCommand.js +3 -3
- package/dist-es/commands/UpdateApplicationCommand.js +3 -3
- package/dist-es/commands/UpdateComponentCommand.js +3 -3
- package/dist-es/commands/UpdateComponentConfigurationCommand.js +3 -3
- package/dist-es/commands/UpdateLogPatternCommand.js +3 -3
- package/dist-es/models/models_0.js +62 -248
- package/dist-types/models/models_0.d.ts +248 -372
- package/dist-types/ts3.4/models/models_0.d.ts +124 -248
- package/package.json +7 -7
|
@@ -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 { CreateApplicationRequestFilterSensitiveLog, CreateApplicationResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_json1_1CreateApplicationCommand, serializeAws_json1_1CreateApplicationCommand, } from "../protocols/Aws_json1_1";
|
|
6
6
|
var CreateApplicationCommand = (function (_super) {
|
|
7
7
|
__extends(CreateApplicationCommand, _super);
|
|
@@ -20,8 +20,8 @@ var CreateApplicationCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: CreateApplicationRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: CreateApplicationResponseFilterSensitiveLog,
|
|
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 { CreateComponentRequestFilterSensitiveLog, CreateComponentResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_json1_1CreateComponentCommand, serializeAws_json1_1CreateComponentCommand, } from "../protocols/Aws_json1_1";
|
|
6
6
|
var CreateComponentCommand = (function (_super) {
|
|
7
7
|
__extends(CreateComponentCommand, _super);
|
|
@@ -20,8 +20,8 @@ var CreateComponentCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: CreateComponentRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: CreateComponentResponseFilterSensitiveLog,
|
|
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 { CreateLogPatternRequestFilterSensitiveLog, CreateLogPatternResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_json1_1CreateLogPatternCommand, serializeAws_json1_1CreateLogPatternCommand, } from "../protocols/Aws_json1_1";
|
|
6
6
|
var CreateLogPatternCommand = (function (_super) {
|
|
7
7
|
__extends(CreateLogPatternCommand, _super);
|
|
@@ -20,8 +20,8 @@ var CreateLogPatternCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: CreateLogPatternRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: CreateLogPatternResponseFilterSensitiveLog,
|
|
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 { DeleteApplicationRequestFilterSensitiveLog, DeleteApplicationResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_json1_1DeleteApplicationCommand, serializeAws_json1_1DeleteApplicationCommand, } from "../protocols/Aws_json1_1";
|
|
6
6
|
var DeleteApplicationCommand = (function (_super) {
|
|
7
7
|
__extends(DeleteApplicationCommand, _super);
|
|
@@ -20,8 +20,8 @@ var DeleteApplicationCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: DeleteApplicationRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: DeleteApplicationResponseFilterSensitiveLog,
|
|
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 { DeleteComponentRequestFilterSensitiveLog, DeleteComponentResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_json1_1DeleteComponentCommand, serializeAws_json1_1DeleteComponentCommand, } from "../protocols/Aws_json1_1";
|
|
6
6
|
var DeleteComponentCommand = (function (_super) {
|
|
7
7
|
__extends(DeleteComponentCommand, _super);
|
|
@@ -20,8 +20,8 @@ var DeleteComponentCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: DeleteComponentRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: DeleteComponentResponseFilterSensitiveLog,
|
|
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 { DeleteLogPatternRequestFilterSensitiveLog, DeleteLogPatternResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_json1_1DeleteLogPatternCommand, serializeAws_json1_1DeleteLogPatternCommand, } from "../protocols/Aws_json1_1";
|
|
6
6
|
var DeleteLogPatternCommand = (function (_super) {
|
|
7
7
|
__extends(DeleteLogPatternCommand, _super);
|
|
@@ -20,8 +20,8 @@ var DeleteLogPatternCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: DeleteLogPatternRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: DeleteLogPatternResponseFilterSensitiveLog,
|
|
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 { DescribeApplicationRequestFilterSensitiveLog, DescribeApplicationResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_json1_1DescribeApplicationCommand, serializeAws_json1_1DescribeApplicationCommand, } from "../protocols/Aws_json1_1";
|
|
6
6
|
var DescribeApplicationCommand = (function (_super) {
|
|
7
7
|
__extends(DescribeApplicationCommand, _super);
|
|
@@ -20,8 +20,8 @@ var DescribeApplicationCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: DescribeApplicationRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: DescribeApplicationResponseFilterSensitiveLog,
|
|
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 { DescribeComponentRequestFilterSensitiveLog, DescribeComponentResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_json1_1DescribeComponentCommand, serializeAws_json1_1DescribeComponentCommand, } from "../protocols/Aws_json1_1";
|
|
6
6
|
var DescribeComponentCommand = (function (_super) {
|
|
7
7
|
__extends(DescribeComponentCommand, _super);
|
|
@@ -20,8 +20,8 @@ var DescribeComponentCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: DescribeComponentRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: DescribeComponentResponseFilterSensitiveLog,
|
|
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 { DescribeComponentConfigurationRequestFilterSensitiveLog, DescribeComponentConfigurationResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_json1_1DescribeComponentConfigurationCommand, serializeAws_json1_1DescribeComponentConfigurationCommand, } from "../protocols/Aws_json1_1";
|
|
6
6
|
var DescribeComponentConfigurationCommand = (function (_super) {
|
|
7
7
|
__extends(DescribeComponentConfigurationCommand, _super);
|
|
@@ -20,8 +20,8 @@ var DescribeComponentConfigurationCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: DescribeComponentConfigurationRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: DescribeComponentConfigurationResponseFilterSensitiveLog,
|
|
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 { DescribeComponentConfigurationRecommendationRequestFilterSensitiveLog, DescribeComponentConfigurationRecommendationResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_json1_1DescribeComponentConfigurationRecommendationCommand, serializeAws_json1_1DescribeComponentConfigurationRecommendationCommand, } from "../protocols/Aws_json1_1";
|
|
6
6
|
var DescribeComponentConfigurationRecommendationCommand = (function (_super) {
|
|
7
7
|
__extends(DescribeComponentConfigurationRecommendationCommand, _super);
|
|
@@ -20,8 +20,8 @@ var DescribeComponentConfigurationRecommendationCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: DescribeComponentConfigurationRecommendationRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: DescribeComponentConfigurationRecommendationResponseFilterSensitiveLog,
|
|
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 { DescribeLogPatternRequestFilterSensitiveLog, DescribeLogPatternResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_json1_1DescribeLogPatternCommand, serializeAws_json1_1DescribeLogPatternCommand, } from "../protocols/Aws_json1_1";
|
|
6
6
|
var DescribeLogPatternCommand = (function (_super) {
|
|
7
7
|
__extends(DescribeLogPatternCommand, _super);
|
|
@@ -20,8 +20,8 @@ var DescribeLogPatternCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: DescribeLogPatternRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: DescribeLogPatternResponseFilterSensitiveLog,
|
|
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 { DescribeObservationRequestFilterSensitiveLog, DescribeObservationResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_json1_1DescribeObservationCommand, serializeAws_json1_1DescribeObservationCommand, } from "../protocols/Aws_json1_1";
|
|
6
6
|
var DescribeObservationCommand = (function (_super) {
|
|
7
7
|
__extends(DescribeObservationCommand, _super);
|
|
@@ -20,8 +20,8 @@ var DescribeObservationCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: DescribeObservationRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: DescribeObservationResponseFilterSensitiveLog,
|
|
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 { DescribeProblemRequestFilterSensitiveLog, DescribeProblemResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_json1_1DescribeProblemCommand, serializeAws_json1_1DescribeProblemCommand, } from "../protocols/Aws_json1_1";
|
|
6
6
|
var DescribeProblemCommand = (function (_super) {
|
|
7
7
|
__extends(DescribeProblemCommand, _super);
|
|
@@ -20,8 +20,8 @@ var DescribeProblemCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: DescribeProblemRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: DescribeProblemResponseFilterSensitiveLog,
|
|
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 { DescribeProblemObservationsRequestFilterSensitiveLog, DescribeProblemObservationsResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_json1_1DescribeProblemObservationsCommand, serializeAws_json1_1DescribeProblemObservationsCommand, } from "../protocols/Aws_json1_1";
|
|
6
6
|
var DescribeProblemObservationsCommand = (function (_super) {
|
|
7
7
|
__extends(DescribeProblemObservationsCommand, _super);
|
|
@@ -20,8 +20,8 @@ var DescribeProblemObservationsCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: DescribeProblemObservationsRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: DescribeProblemObservationsResponseFilterSensitiveLog,
|
|
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 { ListApplicationsRequestFilterSensitiveLog, ListApplicationsResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_json1_1ListApplicationsCommand, serializeAws_json1_1ListApplicationsCommand, } from "../protocols/Aws_json1_1";
|
|
6
6
|
var ListApplicationsCommand = (function (_super) {
|
|
7
7
|
__extends(ListApplicationsCommand, _super);
|
|
@@ -20,8 +20,8 @@ var ListApplicationsCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: ListApplicationsRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: ListApplicationsResponseFilterSensitiveLog,
|
|
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 { ListComponentsRequestFilterSensitiveLog, ListComponentsResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_json1_1ListComponentsCommand, serializeAws_json1_1ListComponentsCommand, } from "../protocols/Aws_json1_1";
|
|
6
6
|
var ListComponentsCommand = (function (_super) {
|
|
7
7
|
__extends(ListComponentsCommand, _super);
|
|
@@ -20,8 +20,8 @@ var ListComponentsCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: ListComponentsRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: ListComponentsResponseFilterSensitiveLog,
|
|
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 { ListConfigurationHistoryRequestFilterSensitiveLog, ListConfigurationHistoryResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_json1_1ListConfigurationHistoryCommand, serializeAws_json1_1ListConfigurationHistoryCommand, } from "../protocols/Aws_json1_1";
|
|
6
6
|
var ListConfigurationHistoryCommand = (function (_super) {
|
|
7
7
|
__extends(ListConfigurationHistoryCommand, _super);
|
|
@@ -20,8 +20,8 @@ var ListConfigurationHistoryCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: ListConfigurationHistoryRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: ListConfigurationHistoryResponseFilterSensitiveLog,
|
|
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 { ListLogPatternSetsRequestFilterSensitiveLog, ListLogPatternSetsResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_json1_1ListLogPatternSetsCommand, serializeAws_json1_1ListLogPatternSetsCommand, } from "../protocols/Aws_json1_1";
|
|
6
6
|
var ListLogPatternSetsCommand = (function (_super) {
|
|
7
7
|
__extends(ListLogPatternSetsCommand, _super);
|
|
@@ -20,8 +20,8 @@ var ListLogPatternSetsCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: ListLogPatternSetsRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: ListLogPatternSetsResponseFilterSensitiveLog,
|
|
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 { ListLogPatternsRequestFilterSensitiveLog, ListLogPatternsResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_json1_1ListLogPatternsCommand, serializeAws_json1_1ListLogPatternsCommand, } from "../protocols/Aws_json1_1";
|
|
6
6
|
var ListLogPatternsCommand = (function (_super) {
|
|
7
7
|
__extends(ListLogPatternsCommand, _super);
|
|
@@ -20,8 +20,8 @@ var ListLogPatternsCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: ListLogPatternsRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: ListLogPatternsResponseFilterSensitiveLog,
|
|
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 { ListProblemsRequestFilterSensitiveLog, ListProblemsResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_json1_1ListProblemsCommand, serializeAws_json1_1ListProblemsCommand, } from "../protocols/Aws_json1_1";
|
|
6
6
|
var ListProblemsCommand = (function (_super) {
|
|
7
7
|
__extends(ListProblemsCommand, _super);
|
|
@@ -20,8 +20,8 @@ var ListProblemsCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: ListProblemsRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: ListProblemsResponseFilterSensitiveLog,
|
|
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_json1_1ListTagsForResourceCommand, serializeAws_json1_1ListTagsForResourceCommand, } from "../protocols/Aws_json1_1";
|
|
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 { TagResourceRequestFilterSensitiveLog, TagResourceResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_json1_1TagResourceCommand, serializeAws_json1_1TagResourceCommand, } from "../protocols/Aws_json1_1";
|
|
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_json1_1UntagResourceCommand, serializeAws_json1_1UntagResourceCommand, } from "../protocols/Aws_json1_1";
|
|
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 { UpdateApplicationRequestFilterSensitiveLog, UpdateApplicationResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_json1_1UpdateApplicationCommand, serializeAws_json1_1UpdateApplicationCommand, } from "../protocols/Aws_json1_1";
|
|
6
6
|
var UpdateApplicationCommand = (function (_super) {
|
|
7
7
|
__extends(UpdateApplicationCommand, _super);
|
|
@@ -20,8 +20,8 @@ var UpdateApplicationCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: UpdateApplicationRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: UpdateApplicationResponseFilterSensitiveLog,
|
|
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 { UpdateComponentRequestFilterSensitiveLog, UpdateComponentResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_json1_1UpdateComponentCommand, serializeAws_json1_1UpdateComponentCommand, } from "../protocols/Aws_json1_1";
|
|
6
6
|
var UpdateComponentCommand = (function (_super) {
|
|
7
7
|
__extends(UpdateComponentCommand, _super);
|
|
@@ -20,8 +20,8 @@ var UpdateComponentCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: UpdateComponentRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: UpdateComponentResponseFilterSensitiveLog,
|
|
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 { UpdateComponentConfigurationRequestFilterSensitiveLog, UpdateComponentConfigurationResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_json1_1UpdateComponentConfigurationCommand, serializeAws_json1_1UpdateComponentConfigurationCommand, } from "../protocols/Aws_json1_1";
|
|
6
6
|
var UpdateComponentConfigurationCommand = (function (_super) {
|
|
7
7
|
__extends(UpdateComponentConfigurationCommand, _super);
|
|
@@ -20,8 +20,8 @@ var UpdateComponentConfigurationCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: UpdateComponentConfigurationRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: UpdateComponentConfigurationResponseFilterSensitiveLog,
|
|
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 { UpdateLogPatternRequestFilterSensitiveLog, UpdateLogPatternResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_json1_1UpdateLogPatternCommand, serializeAws_json1_1UpdateLogPatternCommand, } from "../protocols/Aws_json1_1";
|
|
6
6
|
var UpdateLogPatternCommand = (function (_super) {
|
|
7
7
|
__extends(UpdateLogPatternCommand, _super);
|
|
@@ -20,8 +20,8 @@ var UpdateLogPatternCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: UpdateLogPatternRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: UpdateLogPatternResponseFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
var requestHandler = configuration.requestHandler;
|
|
27
27
|
return stack.resolve(function (request) {
|