@aws-sdk/client-application-discovery-service 3.169.0 → 3.170.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 +8 -0
  2. package/dist-types/ts3.4/ApplicationDiscoveryService.d.ts +466 -130
  3. package/dist-types/ts3.4/ApplicationDiscoveryServiceClient.d.ts +280 -98
  4. package/dist-types/ts3.4/commands/AssociateConfigurationItemsToApplicationCommand.d.ts +41 -17
  5. package/dist-types/ts3.4/commands/BatchDeleteImportDataCommand.d.ts +41 -17
  6. package/dist-types/ts3.4/commands/CreateApplicationCommand.d.ts +38 -17
  7. package/dist-types/ts3.4/commands/CreateTagsCommand.d.ts +34 -17
  8. package/dist-types/ts3.4/commands/DeleteApplicationsCommand.d.ts +38 -17
  9. package/dist-types/ts3.4/commands/DeleteTagsCommand.d.ts +34 -17
  10. package/dist-types/ts3.4/commands/DescribeAgentsCommand.d.ts +37 -17
  11. package/dist-types/ts3.4/commands/DescribeConfigurationsCommand.d.ts +41 -17
  12. package/dist-types/ts3.4/commands/DescribeContinuousExportsCommand.d.ts +41 -17
  13. package/dist-types/ts3.4/commands/DescribeExportConfigurationsCommand.d.ts +41 -17
  14. package/dist-types/ts3.4/commands/DescribeExportTasksCommand.d.ts +38 -17
  15. package/dist-types/ts3.4/commands/DescribeImportTasksCommand.d.ts +38 -17
  16. package/dist-types/ts3.4/commands/DescribeTagsCommand.d.ts +34 -17
  17. package/dist-types/ts3.4/commands/DisassociateConfigurationItemsFromApplicationCommand.d.ts +41 -17
  18. package/dist-types/ts3.4/commands/ExportConfigurationsCommand.d.ts +37 -17
  19. package/dist-types/ts3.4/commands/GetDiscoverySummaryCommand.d.ts +38 -17
  20. package/dist-types/ts3.4/commands/ListConfigurationsCommand.d.ts +38 -17
  21. package/dist-types/ts3.4/commands/ListServerNeighborsCommand.d.ts +38 -17
  22. package/dist-types/ts3.4/commands/StartContinuousExportCommand.d.ts +41 -17
  23. package/dist-types/ts3.4/commands/StartDataCollectionByAgentIdsCommand.d.ts +41 -17
  24. package/dist-types/ts3.4/commands/StartExportTaskCommand.d.ts +37 -17
  25. package/dist-types/ts3.4/commands/StartImportTaskCommand.d.ts +37 -17
  26. package/dist-types/ts3.4/commands/StopContinuousExportCommand.d.ts +41 -17
  27. package/dist-types/ts3.4/commands/StopDataCollectionByAgentIdsCommand.d.ts +41 -17
  28. package/dist-types/ts3.4/commands/UpdateApplicationCommand.d.ts +38 -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 +8 -6
  33. package/dist-types/ts3.4/models/index.d.ts +1 -1
  34. package/dist-types/ts3.4/models/models_0.d.ts +872 -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 +68 -38
  41. package/dist-types/ts3.4/runtimeConfig.d.ts +68 -38
  42. package/dist-types/ts3.4/runtimeConfig.native.d.ts +69 -37
  43. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +13 -11
  44. package/package.json +34 -34
@@ -1,17 +1,38 @@
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 { DeleteApplicationsRequest, DeleteApplicationsResponse } from "../models/models_0";
5
- export interface DeleteApplicationsCommandInput extends DeleteApplicationsRequest {
6
- }
7
- export interface DeleteApplicationsCommandOutput extends DeleteApplicationsResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class DeleteApplicationsCommand extends $Command<DeleteApplicationsCommandInput, DeleteApplicationsCommandOutput, ApplicationDiscoveryServiceClientResolvedConfig> {
11
- readonly input: DeleteApplicationsCommandInput;
12
- constructor(input: DeleteApplicationsCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ApplicationDiscoveryServiceClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteApplicationsCommandInput, DeleteApplicationsCommandOutput>;
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
+ DeleteApplicationsRequest,
15
+ DeleteApplicationsResponse,
16
+ } from "../models/models_0";
17
+ export interface DeleteApplicationsCommandInput
18
+ extends DeleteApplicationsRequest {}
19
+ export interface DeleteApplicationsCommandOutput
20
+ extends DeleteApplicationsResponse,
21
+ __MetadataBearer {}
22
+
23
+ export declare class DeleteApplicationsCommand extends $Command<
24
+ DeleteApplicationsCommandInput,
25
+ DeleteApplicationsCommandOutput,
26
+ ApplicationDiscoveryServiceClientResolvedConfig
27
+ > {
28
+ readonly input: DeleteApplicationsCommandInput;
29
+ constructor(input: DeleteApplicationsCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: ApplicationDiscoveryServiceClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<DeleteApplicationsCommandInput, DeleteApplicationsCommandOutput>;
36
+ private serialize;
37
+ private deserialize;
38
+ }
@@ -1,17 +1,34 @@
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
+
19
+ export declare class DeleteTagsCommand extends $Command<
20
+ DeleteTagsCommandInput,
21
+ DeleteTagsCommandOutput,
22
+ ApplicationDiscoveryServiceClientResolvedConfig
23
+ > {
24
+ readonly input: DeleteTagsCommandInput;
25
+ constructor(input: DeleteTagsCommandInput);
26
+
27
+ resolveMiddleware(
28
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
29
+ configuration: ApplicationDiscoveryServiceClientResolvedConfig,
30
+ options?: __HttpHandlerOptions
31
+ ): Handler<DeleteTagsCommandInput, DeleteTagsCommandOutput>;
32
+ private serialize;
33
+ private deserialize;
34
+ }
@@ -1,17 +1,37 @@
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
+
22
+ export declare class DescribeAgentsCommand extends $Command<
23
+ DescribeAgentsCommandInput,
24
+ DescribeAgentsCommandOutput,
25
+ ApplicationDiscoveryServiceClientResolvedConfig
26
+ > {
27
+ readonly input: DescribeAgentsCommandInput;
28
+ constructor(input: DescribeAgentsCommandInput);
29
+
30
+ resolveMiddleware(
31
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
32
+ configuration: ApplicationDiscoveryServiceClientResolvedConfig,
33
+ options?: __HttpHandlerOptions
34
+ ): Handler<DescribeAgentsCommandInput, DescribeAgentsCommandOutput>;
35
+ private serialize;
36
+ private deserialize;
37
+ }
@@ -1,17 +1,41 @@
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
+
23
+ export declare class DescribeConfigurationsCommand extends $Command<
24
+ DescribeConfigurationsCommandInput,
25
+ DescribeConfigurationsCommandOutput,
26
+ ApplicationDiscoveryServiceClientResolvedConfig
27
+ > {
28
+ readonly input: DescribeConfigurationsCommandInput;
29
+ constructor(input: DescribeConfigurationsCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: ApplicationDiscoveryServiceClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<
36
+ DescribeConfigurationsCommandInput,
37
+ DescribeConfigurationsCommandOutput
38
+ >;
39
+ private serialize;
40
+ private deserialize;
41
+ }
@@ -1,17 +1,41 @@
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
+
23
+ export declare class DescribeContinuousExportsCommand extends $Command<
24
+ DescribeContinuousExportsCommandInput,
25
+ DescribeContinuousExportsCommandOutput,
26
+ ApplicationDiscoveryServiceClientResolvedConfig
27
+ > {
28
+ readonly input: DescribeContinuousExportsCommandInput;
29
+ constructor(input: DescribeContinuousExportsCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: ApplicationDiscoveryServiceClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<
36
+ DescribeContinuousExportsCommandInput,
37
+ DescribeContinuousExportsCommandOutput
38
+ >;
39
+ private serialize;
40
+ private deserialize;
41
+ }
@@ -1,17 +1,41 @@
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
+
23
+ export declare class DescribeExportConfigurationsCommand extends $Command<
24
+ DescribeExportConfigurationsCommandInput,
25
+ DescribeExportConfigurationsCommandOutput,
26
+ ApplicationDiscoveryServiceClientResolvedConfig
27
+ > {
28
+ readonly input: DescribeExportConfigurationsCommandInput;
29
+ constructor(input: DescribeExportConfigurationsCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: ApplicationDiscoveryServiceClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<
36
+ DescribeExportConfigurationsCommandInput,
37
+ DescribeExportConfigurationsCommandOutput
38
+ >;
39
+ private serialize;
40
+ private deserialize;
41
+ }
@@ -1,17 +1,38 @@
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
+
23
+ export declare class DescribeExportTasksCommand extends $Command<
24
+ DescribeExportTasksCommandInput,
25
+ DescribeExportTasksCommandOutput,
26
+ ApplicationDiscoveryServiceClientResolvedConfig
27
+ > {
28
+ readonly input: DescribeExportTasksCommandInput;
29
+ constructor(input: DescribeExportTasksCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: ApplicationDiscoveryServiceClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<DescribeExportTasksCommandInput, DescribeExportTasksCommandOutput>;
36
+ private serialize;
37
+ private deserialize;
38
+ }
@@ -1,17 +1,38 @@
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
+
23
+ export declare class DescribeImportTasksCommand extends $Command<
24
+ DescribeImportTasksCommandInput,
25
+ DescribeImportTasksCommandOutput,
26
+ ApplicationDiscoveryServiceClientResolvedConfig
27
+ > {
28
+ readonly input: DescribeImportTasksCommandInput;
29
+ constructor(input: DescribeImportTasksCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: ApplicationDiscoveryServiceClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<DescribeImportTasksCommandInput, DescribeImportTasksCommandOutput>;
36
+ private serialize;
37
+ private deserialize;
38
+ }
@@ -1,17 +1,34 @@
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
+
19
+ export declare class DescribeTagsCommand extends $Command<
20
+ DescribeTagsCommandInput,
21
+ DescribeTagsCommandOutput,
22
+ ApplicationDiscoveryServiceClientResolvedConfig
23
+ > {
24
+ readonly input: DescribeTagsCommandInput;
25
+ constructor(input: DescribeTagsCommandInput);
26
+
27
+ resolveMiddleware(
28
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
29
+ configuration: ApplicationDiscoveryServiceClientResolvedConfig,
30
+ options?: __HttpHandlerOptions
31
+ ): Handler<DescribeTagsCommandInput, DescribeTagsCommandOutput>;
32
+ private serialize;
33
+ private deserialize;
34
+ }
@@ -1,17 +1,41 @@
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
+
23
+ export declare class DisassociateConfigurationItemsFromApplicationCommand extends $Command<
24
+ DisassociateConfigurationItemsFromApplicationCommandInput,
25
+ DisassociateConfigurationItemsFromApplicationCommandOutput,
26
+ ApplicationDiscoveryServiceClientResolvedConfig
27
+ > {
28
+ readonly input: DisassociateConfigurationItemsFromApplicationCommandInput;
29
+ constructor(input: DisassociateConfigurationItemsFromApplicationCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: ApplicationDiscoveryServiceClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<
36
+ DisassociateConfigurationItemsFromApplicationCommandInput,
37
+ DisassociateConfigurationItemsFromApplicationCommandOutput
38
+ >;
39
+ private serialize;
40
+ private deserialize;
41
+ }
@@ -1,17 +1,37 @@
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
+
19
+ export declare class ExportConfigurationsCommand extends $Command<
20
+ ExportConfigurationsCommandInput,
21
+ ExportConfigurationsCommandOutput,
22
+ ApplicationDiscoveryServiceClientResolvedConfig
23
+ > {
24
+ readonly input: ExportConfigurationsCommandInput;
25
+ constructor(input: ExportConfigurationsCommandInput);
26
+
27
+ resolveMiddleware(
28
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
29
+ configuration: ApplicationDiscoveryServiceClientResolvedConfig,
30
+ options?: __HttpHandlerOptions
31
+ ): Handler<
32
+ ExportConfigurationsCommandInput,
33
+ ExportConfigurationsCommandOutput
34
+ >;
35
+ private serialize;
36
+ private deserialize;
37
+ }