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