@aws-sdk/client-application-discovery-service 3.169.0 → 3.171.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 +16 -0
- package/dist-types/ts3.4/ApplicationDiscoveryService.d.ts +441 -130
- package/dist-types/ts3.4/ApplicationDiscoveryServiceClient.d.ts +255 -98
- package/dist-types/ts3.4/commands/AssociateConfigurationItemsToApplicationCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/BatchDeleteImportDataCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/CreateApplicationCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/CreateTagsCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/DeleteApplicationsCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/DeleteTagsCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/DescribeAgentsCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/DescribeConfigurationsCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/DescribeContinuousExportsCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/DescribeExportConfigurationsCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/DescribeExportTasksCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/DescribeImportTasksCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/DescribeTagsCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/DisassociateConfigurationItemsFromApplicationCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/ExportConfigurationsCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/GetDiscoverySummaryCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/ListConfigurationsCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/ListServerNeighborsCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/StartContinuousExportCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/StartDataCollectionByAgentIdsCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/StartExportTaskCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/StartImportTaskCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/StopContinuousExportCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/StopDataCollectionByAgentIdsCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/UpdateApplicationCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/index.d.ts +25 -25
- package/dist-types/ts3.4/endpoints.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +6 -6
- package/dist-types/ts3.4/models/ApplicationDiscoveryServiceServiceException.d.ts +7 -6
- package/dist-types/ts3.4/models/index.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +640 -799
- package/dist-types/ts3.4/pagination/DescribeContinuousExportsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/DescribeImportTasksPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -6
- package/dist-types/ts3.4/pagination/index.d.ts +3 -3
- package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +305 -77
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +67 -38
- package/dist-types/ts3.4/runtimeConfig.d.ts +67 -38
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +68 -37
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +12 -11
- package/package.json +34 -34
|
@@ -1,17 +1,32 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
}
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
ApplicationDiscoveryServiceClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../ApplicationDiscoveryServiceClient";
|
|
13
|
+
import { DeleteTagsRequest, DeleteTagsResponse } from "../models/models_0";
|
|
14
|
+
export interface DeleteTagsCommandInput extends DeleteTagsRequest {}
|
|
15
|
+
export interface DeleteTagsCommandOutput
|
|
16
|
+
extends DeleteTagsResponse,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
export declare class DeleteTagsCommand extends $Command<
|
|
19
|
+
DeleteTagsCommandInput,
|
|
20
|
+
DeleteTagsCommandOutput,
|
|
21
|
+
ApplicationDiscoveryServiceClientResolvedConfig
|
|
22
|
+
> {
|
|
23
|
+
readonly input: DeleteTagsCommandInput;
|
|
24
|
+
constructor(input: DeleteTagsCommandInput);
|
|
25
|
+
resolveMiddleware(
|
|
26
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
27
|
+
configuration: ApplicationDiscoveryServiceClientResolvedConfig,
|
|
28
|
+
options?: __HttpHandlerOptions
|
|
29
|
+
): Handler<DeleteTagsCommandInput, DeleteTagsCommandOutput>;
|
|
30
|
+
private serialize;
|
|
31
|
+
private deserialize;
|
|
32
|
+
}
|
|
@@ -1,17 +1,35 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
}
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
ApplicationDiscoveryServiceClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../ApplicationDiscoveryServiceClient";
|
|
13
|
+
import {
|
|
14
|
+
DescribeAgentsRequest,
|
|
15
|
+
DescribeAgentsResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface DescribeAgentsCommandInput extends DescribeAgentsRequest {}
|
|
18
|
+
export interface DescribeAgentsCommandOutput
|
|
19
|
+
extends DescribeAgentsResponse,
|
|
20
|
+
__MetadataBearer {}
|
|
21
|
+
export declare class DescribeAgentsCommand extends $Command<
|
|
22
|
+
DescribeAgentsCommandInput,
|
|
23
|
+
DescribeAgentsCommandOutput,
|
|
24
|
+
ApplicationDiscoveryServiceClientResolvedConfig
|
|
25
|
+
> {
|
|
26
|
+
readonly input: DescribeAgentsCommandInput;
|
|
27
|
+
constructor(input: DescribeAgentsCommandInput);
|
|
28
|
+
resolveMiddleware(
|
|
29
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
30
|
+
configuration: ApplicationDiscoveryServiceClientResolvedConfig,
|
|
31
|
+
options?: __HttpHandlerOptions
|
|
32
|
+
): Handler<DescribeAgentsCommandInput, DescribeAgentsCommandOutput>;
|
|
33
|
+
private serialize;
|
|
34
|
+
private deserialize;
|
|
35
|
+
}
|
|
@@ -1,17 +1,39 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
ApplicationDiscoveryServiceClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../ApplicationDiscoveryServiceClient";
|
|
13
|
+
import {
|
|
14
|
+
DescribeConfigurationsRequest,
|
|
15
|
+
DescribeConfigurationsResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface DescribeConfigurationsCommandInput
|
|
18
|
+
extends DescribeConfigurationsRequest {}
|
|
19
|
+
export interface DescribeConfigurationsCommandOutput
|
|
20
|
+
extends DescribeConfigurationsResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class DescribeConfigurationsCommand extends $Command<
|
|
23
|
+
DescribeConfigurationsCommandInput,
|
|
24
|
+
DescribeConfigurationsCommandOutput,
|
|
25
|
+
ApplicationDiscoveryServiceClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: DescribeConfigurationsCommandInput;
|
|
28
|
+
constructor(input: DescribeConfigurationsCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: ApplicationDiscoveryServiceClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<
|
|
34
|
+
DescribeConfigurationsCommandInput,
|
|
35
|
+
DescribeConfigurationsCommandOutput
|
|
36
|
+
>;
|
|
37
|
+
private serialize;
|
|
38
|
+
private deserialize;
|
|
39
|
+
}
|
|
@@ -1,17 +1,39 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
ApplicationDiscoveryServiceClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../ApplicationDiscoveryServiceClient";
|
|
13
|
+
import {
|
|
14
|
+
DescribeContinuousExportsRequest,
|
|
15
|
+
DescribeContinuousExportsResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface DescribeContinuousExportsCommandInput
|
|
18
|
+
extends DescribeContinuousExportsRequest {}
|
|
19
|
+
export interface DescribeContinuousExportsCommandOutput
|
|
20
|
+
extends DescribeContinuousExportsResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class DescribeContinuousExportsCommand extends $Command<
|
|
23
|
+
DescribeContinuousExportsCommandInput,
|
|
24
|
+
DescribeContinuousExportsCommandOutput,
|
|
25
|
+
ApplicationDiscoveryServiceClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: DescribeContinuousExportsCommandInput;
|
|
28
|
+
constructor(input: DescribeContinuousExportsCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: ApplicationDiscoveryServiceClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<
|
|
34
|
+
DescribeContinuousExportsCommandInput,
|
|
35
|
+
DescribeContinuousExportsCommandOutput
|
|
36
|
+
>;
|
|
37
|
+
private serialize;
|
|
38
|
+
private deserialize;
|
|
39
|
+
}
|
|
@@ -1,17 +1,39 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
ApplicationDiscoveryServiceClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../ApplicationDiscoveryServiceClient";
|
|
13
|
+
import {
|
|
14
|
+
DescribeExportConfigurationsRequest,
|
|
15
|
+
DescribeExportConfigurationsResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface DescribeExportConfigurationsCommandInput
|
|
18
|
+
extends DescribeExportConfigurationsRequest {}
|
|
19
|
+
export interface DescribeExportConfigurationsCommandOutput
|
|
20
|
+
extends DescribeExportConfigurationsResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class DescribeExportConfigurationsCommand extends $Command<
|
|
23
|
+
DescribeExportConfigurationsCommandInput,
|
|
24
|
+
DescribeExportConfigurationsCommandOutput,
|
|
25
|
+
ApplicationDiscoveryServiceClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: DescribeExportConfigurationsCommandInput;
|
|
28
|
+
constructor(input: DescribeExportConfigurationsCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: ApplicationDiscoveryServiceClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<
|
|
34
|
+
DescribeExportConfigurationsCommandInput,
|
|
35
|
+
DescribeExportConfigurationsCommandOutput
|
|
36
|
+
>;
|
|
37
|
+
private serialize;
|
|
38
|
+
private deserialize;
|
|
39
|
+
}
|
|
@@ -1,17 +1,36 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
ApplicationDiscoveryServiceClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../ApplicationDiscoveryServiceClient";
|
|
13
|
+
import {
|
|
14
|
+
DescribeExportTasksRequest,
|
|
15
|
+
DescribeExportTasksResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface DescribeExportTasksCommandInput
|
|
18
|
+
extends DescribeExportTasksRequest {}
|
|
19
|
+
export interface DescribeExportTasksCommandOutput
|
|
20
|
+
extends DescribeExportTasksResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class DescribeExportTasksCommand extends $Command<
|
|
23
|
+
DescribeExportTasksCommandInput,
|
|
24
|
+
DescribeExportTasksCommandOutput,
|
|
25
|
+
ApplicationDiscoveryServiceClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: DescribeExportTasksCommandInput;
|
|
28
|
+
constructor(input: DescribeExportTasksCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: ApplicationDiscoveryServiceClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<DescribeExportTasksCommandInput, DescribeExportTasksCommandOutput>;
|
|
34
|
+
private serialize;
|
|
35
|
+
private deserialize;
|
|
36
|
+
}
|
|
@@ -1,17 +1,36 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
ApplicationDiscoveryServiceClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../ApplicationDiscoveryServiceClient";
|
|
13
|
+
import {
|
|
14
|
+
DescribeImportTasksRequest,
|
|
15
|
+
DescribeImportTasksResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface DescribeImportTasksCommandInput
|
|
18
|
+
extends DescribeImportTasksRequest {}
|
|
19
|
+
export interface DescribeImportTasksCommandOutput
|
|
20
|
+
extends DescribeImportTasksResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class DescribeImportTasksCommand extends $Command<
|
|
23
|
+
DescribeImportTasksCommandInput,
|
|
24
|
+
DescribeImportTasksCommandOutput,
|
|
25
|
+
ApplicationDiscoveryServiceClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: DescribeImportTasksCommandInput;
|
|
28
|
+
constructor(input: DescribeImportTasksCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: ApplicationDiscoveryServiceClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<DescribeImportTasksCommandInput, DescribeImportTasksCommandOutput>;
|
|
34
|
+
private serialize;
|
|
35
|
+
private deserialize;
|
|
36
|
+
}
|
|
@@ -1,17 +1,32 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
}
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
ApplicationDiscoveryServiceClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../ApplicationDiscoveryServiceClient";
|
|
13
|
+
import { DescribeTagsRequest, DescribeTagsResponse } from "../models/models_0";
|
|
14
|
+
export interface DescribeTagsCommandInput extends DescribeTagsRequest {}
|
|
15
|
+
export interface DescribeTagsCommandOutput
|
|
16
|
+
extends DescribeTagsResponse,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
export declare class DescribeTagsCommand extends $Command<
|
|
19
|
+
DescribeTagsCommandInput,
|
|
20
|
+
DescribeTagsCommandOutput,
|
|
21
|
+
ApplicationDiscoveryServiceClientResolvedConfig
|
|
22
|
+
> {
|
|
23
|
+
readonly input: DescribeTagsCommandInput;
|
|
24
|
+
constructor(input: DescribeTagsCommandInput);
|
|
25
|
+
resolveMiddleware(
|
|
26
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
27
|
+
configuration: ApplicationDiscoveryServiceClientResolvedConfig,
|
|
28
|
+
options?: __HttpHandlerOptions
|
|
29
|
+
): Handler<DescribeTagsCommandInput, DescribeTagsCommandOutput>;
|
|
30
|
+
private serialize;
|
|
31
|
+
private deserialize;
|
|
32
|
+
}
|
|
@@ -1,17 +1,39 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
ApplicationDiscoveryServiceClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../ApplicationDiscoveryServiceClient";
|
|
13
|
+
import {
|
|
14
|
+
DisassociateConfigurationItemsFromApplicationRequest,
|
|
15
|
+
DisassociateConfigurationItemsFromApplicationResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface DisassociateConfigurationItemsFromApplicationCommandInput
|
|
18
|
+
extends DisassociateConfigurationItemsFromApplicationRequest {}
|
|
19
|
+
export interface DisassociateConfigurationItemsFromApplicationCommandOutput
|
|
20
|
+
extends DisassociateConfigurationItemsFromApplicationResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class DisassociateConfigurationItemsFromApplicationCommand extends $Command<
|
|
23
|
+
DisassociateConfigurationItemsFromApplicationCommandInput,
|
|
24
|
+
DisassociateConfigurationItemsFromApplicationCommandOutput,
|
|
25
|
+
ApplicationDiscoveryServiceClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: DisassociateConfigurationItemsFromApplicationCommandInput;
|
|
28
|
+
constructor(input: DisassociateConfigurationItemsFromApplicationCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: ApplicationDiscoveryServiceClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<
|
|
34
|
+
DisassociateConfigurationItemsFromApplicationCommandInput,
|
|
35
|
+
DisassociateConfigurationItemsFromApplicationCommandOutput
|
|
36
|
+
>;
|
|
37
|
+
private serialize;
|
|
38
|
+
private deserialize;
|
|
39
|
+
}
|
|
@@ -1,17 +1,35 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
}
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
ApplicationDiscoveryServiceClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../ApplicationDiscoveryServiceClient";
|
|
13
|
+
import { ExportConfigurationsResponse } from "../models/models_0";
|
|
14
|
+
export interface ExportConfigurationsCommandInput {}
|
|
15
|
+
export interface ExportConfigurationsCommandOutput
|
|
16
|
+
extends ExportConfigurationsResponse,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
export declare class ExportConfigurationsCommand extends $Command<
|
|
19
|
+
ExportConfigurationsCommandInput,
|
|
20
|
+
ExportConfigurationsCommandOutput,
|
|
21
|
+
ApplicationDiscoveryServiceClientResolvedConfig
|
|
22
|
+
> {
|
|
23
|
+
readonly input: ExportConfigurationsCommandInput;
|
|
24
|
+
constructor(input: ExportConfigurationsCommandInput);
|
|
25
|
+
resolveMiddleware(
|
|
26
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
27
|
+
configuration: ApplicationDiscoveryServiceClientResolvedConfig,
|
|
28
|
+
options?: __HttpHandlerOptions
|
|
29
|
+
): Handler<
|
|
30
|
+
ExportConfigurationsCommandInput,
|
|
31
|
+
ExportConfigurationsCommandOutput
|
|
32
|
+
>;
|
|
33
|
+
private serialize;
|
|
34
|
+
private deserialize;
|
|
35
|
+
}
|
|
@@ -1,17 +1,36 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
ApplicationDiscoveryServiceClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../ApplicationDiscoveryServiceClient";
|
|
13
|
+
import {
|
|
14
|
+
GetDiscoverySummaryRequest,
|
|
15
|
+
GetDiscoverySummaryResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface GetDiscoverySummaryCommandInput
|
|
18
|
+
extends GetDiscoverySummaryRequest {}
|
|
19
|
+
export interface GetDiscoverySummaryCommandOutput
|
|
20
|
+
extends GetDiscoverySummaryResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class GetDiscoverySummaryCommand extends $Command<
|
|
23
|
+
GetDiscoverySummaryCommandInput,
|
|
24
|
+
GetDiscoverySummaryCommandOutput,
|
|
25
|
+
ApplicationDiscoveryServiceClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: GetDiscoverySummaryCommandInput;
|
|
28
|
+
constructor(input: GetDiscoverySummaryCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: ApplicationDiscoveryServiceClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<GetDiscoverySummaryCommandInput, GetDiscoverySummaryCommandOutput>;
|
|
34
|
+
private serialize;
|
|
35
|
+
private deserialize;
|
|
36
|
+
}
|