@aws-sdk/client-application-discovery-service 3.132.0 → 3.142.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 +33 -0
- package/README.md +1 -1
- package/dist-cjs/commands/AssociateConfigurationItemsToApplicationCommand.js +2 -2
- package/dist-cjs/commands/BatchDeleteImportDataCommand.js +2 -2
- package/dist-cjs/commands/CreateApplicationCommand.js +2 -2
- package/dist-cjs/commands/CreateTagsCommand.js +2 -2
- package/dist-cjs/commands/DeleteApplicationsCommand.js +2 -2
- package/dist-cjs/commands/DeleteTagsCommand.js +2 -2
- package/dist-cjs/commands/DescribeAgentsCommand.js +2 -2
- package/dist-cjs/commands/DescribeConfigurationsCommand.js +2 -2
- package/dist-cjs/commands/DescribeContinuousExportsCommand.js +2 -2
- package/dist-cjs/commands/DescribeExportConfigurationsCommand.js +2 -2
- package/dist-cjs/commands/DescribeExportTasksCommand.js +2 -2
- package/dist-cjs/commands/DescribeImportTasksCommand.js +2 -2
- package/dist-cjs/commands/DescribeTagsCommand.js +2 -2
- package/dist-cjs/commands/DisassociateConfigurationItemsFromApplicationCommand.js +2 -2
- package/dist-cjs/commands/ExportConfigurationsCommand.js +1 -1
- package/dist-cjs/commands/GetDiscoverySummaryCommand.js +2 -2
- package/dist-cjs/commands/ListConfigurationsCommand.js +2 -2
- package/dist-cjs/commands/ListServerNeighborsCommand.js +2 -2
- package/dist-cjs/commands/StartContinuousExportCommand.js +2 -2
- package/dist-cjs/commands/StartDataCollectionByAgentIdsCommand.js +2 -2
- package/dist-cjs/commands/StartExportTaskCommand.js +2 -2
- package/dist-cjs/commands/StartImportTaskCommand.js +2 -2
- package/dist-cjs/commands/StopContinuousExportCommand.js +2 -2
- package/dist-cjs/commands/StopDataCollectionByAgentIdsCommand.js +2 -2
- package/dist-cjs/commands/UpdateApplicationCommand.js +2 -2
- package/dist-cjs/models/models_0.js +274 -410
- package/dist-cjs/protocols/Aws_json1_1.js +125 -245
- package/dist-es/commands/AssociateConfigurationItemsToApplicationCommand.js +3 -3
- package/dist-es/commands/BatchDeleteImportDataCommand.js +3 -3
- package/dist-es/commands/CreateApplicationCommand.js +3 -3
- package/dist-es/commands/CreateTagsCommand.js +3 -3
- package/dist-es/commands/DeleteApplicationsCommand.js +3 -3
- package/dist-es/commands/DeleteTagsCommand.js +3 -3
- package/dist-es/commands/DescribeAgentsCommand.js +3 -3
- package/dist-es/commands/DescribeConfigurationsCommand.js +3 -3
- package/dist-es/commands/DescribeContinuousExportsCommand.js +3 -3
- package/dist-es/commands/DescribeExportConfigurationsCommand.js +3 -3
- package/dist-es/commands/DescribeExportTasksCommand.js +3 -3
- package/dist-es/commands/DescribeImportTasksCommand.js +3 -3
- package/dist-es/commands/DescribeTagsCommand.js +3 -3
- package/dist-es/commands/DisassociateConfigurationItemsFromApplicationCommand.js +3 -3
- package/dist-es/commands/ExportConfigurationsCommand.js +2 -2
- package/dist-es/commands/GetDiscoverySummaryCommand.js +3 -3
- package/dist-es/commands/ListConfigurationsCommand.js +3 -3
- package/dist-es/commands/ListServerNeighborsCommand.js +3 -3
- package/dist-es/commands/StartContinuousExportCommand.js +3 -3
- package/dist-es/commands/StartDataCollectionByAgentIdsCommand.js +3 -3
- package/dist-es/commands/StartExportTaskCommand.js +3 -3
- package/dist-es/commands/StartImportTaskCommand.js +3 -3
- package/dist-es/commands/StopContinuousExportCommand.js +3 -3
- package/dist-es/commands/StopDataCollectionByAgentIdsCommand.js +3 -3
- package/dist-es/commands/UpdateApplicationCommand.js +3 -3
- package/dist-es/models/models_0.js +68 -272
- package/dist-es/protocols/Aws_json1_1.js +201 -246
- package/dist-types/models/models_0.d.ts +272 -408
- package/dist-types/ts3.4/models/models_0.d.ts +136 -272
- 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 { AssociateConfigurationItemsToApplicationRequestFilterSensitiveLog, AssociateConfigurationItemsToApplicationResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_json1_1AssociateConfigurationItemsToApplicationCommand, serializeAws_json1_1AssociateConfigurationItemsToApplicationCommand, } from "../protocols/Aws_json1_1";
|
|
6
6
|
var AssociateConfigurationItemsToApplicationCommand = (function (_super) {
|
|
7
7
|
__extends(AssociateConfigurationItemsToApplicationCommand, _super);
|
|
@@ -20,8 +20,8 @@ var AssociateConfigurationItemsToApplicationCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: AssociateConfigurationItemsToApplicationRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: AssociateConfigurationItemsToApplicationResponseFilterSensitiveLog,
|
|
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 { BatchDeleteImportDataRequestFilterSensitiveLog, BatchDeleteImportDataResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_json1_1BatchDeleteImportDataCommand, serializeAws_json1_1BatchDeleteImportDataCommand, } from "../protocols/Aws_json1_1";
|
|
6
6
|
var BatchDeleteImportDataCommand = (function (_super) {
|
|
7
7
|
__extends(BatchDeleteImportDataCommand, _super);
|
|
@@ -20,8 +20,8 @@ var BatchDeleteImportDataCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: BatchDeleteImportDataRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: BatchDeleteImportDataResponseFilterSensitiveLog,
|
|
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 { 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 { CreateTagsRequestFilterSensitiveLog, CreateTagsResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_json1_1CreateTagsCommand, serializeAws_json1_1CreateTagsCommand, } from "../protocols/Aws_json1_1";
|
|
6
6
|
var CreateTagsCommand = (function (_super) {
|
|
7
7
|
__extends(CreateTagsCommand, _super);
|
|
@@ -20,8 +20,8 @@ var CreateTagsCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: CreateTagsRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: CreateTagsResponseFilterSensitiveLog,
|
|
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 { DeleteApplicationsRequestFilterSensitiveLog, DeleteApplicationsResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_json1_1DeleteApplicationsCommand, serializeAws_json1_1DeleteApplicationsCommand, } from "../protocols/Aws_json1_1";
|
|
6
6
|
var DeleteApplicationsCommand = (function (_super) {
|
|
7
7
|
__extends(DeleteApplicationsCommand, _super);
|
|
@@ -20,8 +20,8 @@ var DeleteApplicationsCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: DeleteApplicationsRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: DeleteApplicationsResponseFilterSensitiveLog,
|
|
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 { DeleteTagsRequestFilterSensitiveLog, DeleteTagsResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_json1_1DeleteTagsCommand, serializeAws_json1_1DeleteTagsCommand, } from "../protocols/Aws_json1_1";
|
|
6
6
|
var DeleteTagsCommand = (function (_super) {
|
|
7
7
|
__extends(DeleteTagsCommand, _super);
|
|
@@ -20,8 +20,8 @@ var DeleteTagsCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: DeleteTagsRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: DeleteTagsResponseFilterSensitiveLog,
|
|
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 { DescribeAgentsRequestFilterSensitiveLog, DescribeAgentsResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_json1_1DescribeAgentsCommand, serializeAws_json1_1DescribeAgentsCommand, } from "../protocols/Aws_json1_1";
|
|
6
6
|
var DescribeAgentsCommand = (function (_super) {
|
|
7
7
|
__extends(DescribeAgentsCommand, _super);
|
|
@@ -20,8 +20,8 @@ var DescribeAgentsCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: DescribeAgentsRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: DescribeAgentsResponseFilterSensitiveLog,
|
|
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 { DescribeConfigurationsRequestFilterSensitiveLog, DescribeConfigurationsResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_json1_1DescribeConfigurationsCommand, serializeAws_json1_1DescribeConfigurationsCommand, } from "../protocols/Aws_json1_1";
|
|
6
6
|
var DescribeConfigurationsCommand = (function (_super) {
|
|
7
7
|
__extends(DescribeConfigurationsCommand, _super);
|
|
@@ -20,8 +20,8 @@ var DescribeConfigurationsCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: DescribeConfigurationsRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: DescribeConfigurationsResponseFilterSensitiveLog,
|
|
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 { DescribeContinuousExportsRequestFilterSensitiveLog, DescribeContinuousExportsResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_json1_1DescribeContinuousExportsCommand, serializeAws_json1_1DescribeContinuousExportsCommand, } from "../protocols/Aws_json1_1";
|
|
6
6
|
var DescribeContinuousExportsCommand = (function (_super) {
|
|
7
7
|
__extends(DescribeContinuousExportsCommand, _super);
|
|
@@ -20,8 +20,8 @@ var DescribeContinuousExportsCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: DescribeContinuousExportsRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: DescribeContinuousExportsResponseFilterSensitiveLog,
|
|
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 { DescribeExportConfigurationsRequestFilterSensitiveLog, DescribeExportConfigurationsResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_json1_1DescribeExportConfigurationsCommand, serializeAws_json1_1DescribeExportConfigurationsCommand, } from "../protocols/Aws_json1_1";
|
|
6
6
|
var DescribeExportConfigurationsCommand = (function (_super) {
|
|
7
7
|
__extends(DescribeExportConfigurationsCommand, _super);
|
|
@@ -20,8 +20,8 @@ var DescribeExportConfigurationsCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: DescribeExportConfigurationsRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: DescribeExportConfigurationsResponseFilterSensitiveLog,
|
|
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 { DescribeExportTasksRequestFilterSensitiveLog, DescribeExportTasksResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_json1_1DescribeExportTasksCommand, serializeAws_json1_1DescribeExportTasksCommand, } from "../protocols/Aws_json1_1";
|
|
6
6
|
var DescribeExportTasksCommand = (function (_super) {
|
|
7
7
|
__extends(DescribeExportTasksCommand, _super);
|
|
@@ -20,8 +20,8 @@ var DescribeExportTasksCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: DescribeExportTasksRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: DescribeExportTasksResponseFilterSensitiveLog,
|
|
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 { DescribeImportTasksRequestFilterSensitiveLog, DescribeImportTasksResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_json1_1DescribeImportTasksCommand, serializeAws_json1_1DescribeImportTasksCommand, } from "../protocols/Aws_json1_1";
|
|
6
6
|
var DescribeImportTasksCommand = (function (_super) {
|
|
7
7
|
__extends(DescribeImportTasksCommand, _super);
|
|
@@ -20,8 +20,8 @@ var DescribeImportTasksCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: DescribeImportTasksRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: DescribeImportTasksResponseFilterSensitiveLog,
|
|
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 { DescribeTagsRequestFilterSensitiveLog, DescribeTagsResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_json1_1DescribeTagsCommand, serializeAws_json1_1DescribeTagsCommand, } from "../protocols/Aws_json1_1";
|
|
6
6
|
var DescribeTagsCommand = (function (_super) {
|
|
7
7
|
__extends(DescribeTagsCommand, _super);
|
|
@@ -20,8 +20,8 @@ var DescribeTagsCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: DescribeTagsRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: DescribeTagsResponseFilterSensitiveLog,
|
|
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 { DisassociateConfigurationItemsFromApplicationRequestFilterSensitiveLog, DisassociateConfigurationItemsFromApplicationResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_json1_1DisassociateConfigurationItemsFromApplicationCommand, serializeAws_json1_1DisassociateConfigurationItemsFromApplicationCommand, } from "../protocols/Aws_json1_1";
|
|
6
6
|
var DisassociateConfigurationItemsFromApplicationCommand = (function (_super) {
|
|
7
7
|
__extends(DisassociateConfigurationItemsFromApplicationCommand, _super);
|
|
@@ -20,8 +20,8 @@ var DisassociateConfigurationItemsFromApplicationCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: DisassociateConfigurationItemsFromApplicationRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: DisassociateConfigurationItemsFromApplicationResponseFilterSensitiveLog,
|
|
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 { ExportConfigurationsResponseFilterSensitiveLog } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_json1_1ExportConfigurationsCommand, serializeAws_json1_1ExportConfigurationsCommand, } from "../protocols/Aws_json1_1";
|
|
6
6
|
var ExportConfigurationsCommand = (function (_super) {
|
|
7
7
|
__extends(ExportConfigurationsCommand, _super);
|
|
@@ -21,7 +21,7 @@ var ExportConfigurationsCommand = (function (_super) {
|
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
23
|
inputFilterSensitiveLog: function (input) { return input; },
|
|
24
|
-
outputFilterSensitiveLog:
|
|
24
|
+
outputFilterSensitiveLog: ExportConfigurationsResponseFilterSensitiveLog,
|
|
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 { GetDiscoverySummaryRequestFilterSensitiveLog, GetDiscoverySummaryResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_json1_1GetDiscoverySummaryCommand, serializeAws_json1_1GetDiscoverySummaryCommand, } from "../protocols/Aws_json1_1";
|
|
6
6
|
var GetDiscoverySummaryCommand = (function (_super) {
|
|
7
7
|
__extends(GetDiscoverySummaryCommand, _super);
|
|
@@ -20,8 +20,8 @@ var GetDiscoverySummaryCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: GetDiscoverySummaryRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: GetDiscoverySummaryResponseFilterSensitiveLog,
|
|
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 { ListConfigurationsRequestFilterSensitiveLog, ListConfigurationsResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_json1_1ListConfigurationsCommand, serializeAws_json1_1ListConfigurationsCommand, } from "../protocols/Aws_json1_1";
|
|
6
6
|
var ListConfigurationsCommand = (function (_super) {
|
|
7
7
|
__extends(ListConfigurationsCommand, _super);
|
|
@@ -20,8 +20,8 @@ var ListConfigurationsCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: ListConfigurationsRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: ListConfigurationsResponseFilterSensitiveLog,
|
|
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 { ListServerNeighborsRequestFilterSensitiveLog, ListServerNeighborsResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_json1_1ListServerNeighborsCommand, serializeAws_json1_1ListServerNeighborsCommand, } from "../protocols/Aws_json1_1";
|
|
6
6
|
var ListServerNeighborsCommand = (function (_super) {
|
|
7
7
|
__extends(ListServerNeighborsCommand, _super);
|
|
@@ -20,8 +20,8 @@ var ListServerNeighborsCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: ListServerNeighborsRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: ListServerNeighborsResponseFilterSensitiveLog,
|
|
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 { StartContinuousExportRequestFilterSensitiveLog, StartContinuousExportResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_json1_1StartContinuousExportCommand, serializeAws_json1_1StartContinuousExportCommand, } from "../protocols/Aws_json1_1";
|
|
6
6
|
var StartContinuousExportCommand = (function (_super) {
|
|
7
7
|
__extends(StartContinuousExportCommand, _super);
|
|
@@ -20,8 +20,8 @@ var StartContinuousExportCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: StartContinuousExportRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: StartContinuousExportResponseFilterSensitiveLog,
|
|
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 { StartDataCollectionByAgentIdsRequestFilterSensitiveLog, StartDataCollectionByAgentIdsResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_json1_1StartDataCollectionByAgentIdsCommand, serializeAws_json1_1StartDataCollectionByAgentIdsCommand, } from "../protocols/Aws_json1_1";
|
|
6
6
|
var StartDataCollectionByAgentIdsCommand = (function (_super) {
|
|
7
7
|
__extends(StartDataCollectionByAgentIdsCommand, _super);
|
|
@@ -20,8 +20,8 @@ var StartDataCollectionByAgentIdsCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: StartDataCollectionByAgentIdsRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: StartDataCollectionByAgentIdsResponseFilterSensitiveLog,
|
|
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 { StartExportTaskRequestFilterSensitiveLog, StartExportTaskResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_json1_1StartExportTaskCommand, serializeAws_json1_1StartExportTaskCommand, } from "../protocols/Aws_json1_1";
|
|
6
6
|
var StartExportTaskCommand = (function (_super) {
|
|
7
7
|
__extends(StartExportTaskCommand, _super);
|
|
@@ -20,8 +20,8 @@ var StartExportTaskCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: StartExportTaskRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: StartExportTaskResponseFilterSensitiveLog,
|
|
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 { StartImportTaskRequestFilterSensitiveLog, StartImportTaskResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_json1_1StartImportTaskCommand, serializeAws_json1_1StartImportTaskCommand, } from "../protocols/Aws_json1_1";
|
|
6
6
|
var StartImportTaskCommand = (function (_super) {
|
|
7
7
|
__extends(StartImportTaskCommand, _super);
|
|
@@ -20,8 +20,8 @@ var StartImportTaskCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: StartImportTaskRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: StartImportTaskResponseFilterSensitiveLog,
|
|
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 { StopContinuousExportRequestFilterSensitiveLog, StopContinuousExportResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_json1_1StopContinuousExportCommand, serializeAws_json1_1StopContinuousExportCommand, } from "../protocols/Aws_json1_1";
|
|
6
6
|
var StopContinuousExportCommand = (function (_super) {
|
|
7
7
|
__extends(StopContinuousExportCommand, _super);
|
|
@@ -20,8 +20,8 @@ var StopContinuousExportCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: StopContinuousExportRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: StopContinuousExportResponseFilterSensitiveLog,
|
|
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 { StopDataCollectionByAgentIdsRequestFilterSensitiveLog, StopDataCollectionByAgentIdsResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_json1_1StopDataCollectionByAgentIdsCommand, serializeAws_json1_1StopDataCollectionByAgentIdsCommand, } from "../protocols/Aws_json1_1";
|
|
6
6
|
var StopDataCollectionByAgentIdsCommand = (function (_super) {
|
|
7
7
|
__extends(StopDataCollectionByAgentIdsCommand, _super);
|
|
@@ -20,8 +20,8 @@ var StopDataCollectionByAgentIdsCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: StopDataCollectionByAgentIdsRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: StopDataCollectionByAgentIdsResponseFilterSensitiveLog,
|
|
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) {
|