@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,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 { ListConfigurationsRequest, ListConfigurationsResponse } from "../models/models_0";
5
- export interface ListConfigurationsCommandInput extends ListConfigurationsRequest {
6
- }
7
- export interface ListConfigurationsCommandOutput extends ListConfigurationsResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class ListConfigurationsCommand extends $Command<ListConfigurationsCommandInput, ListConfigurationsCommandOutput, ApplicationDiscoveryServiceClientResolvedConfig> {
11
- readonly input: ListConfigurationsCommandInput;
12
- constructor(input: ListConfigurationsCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ApplicationDiscoveryServiceClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListConfigurationsCommandInput, ListConfigurationsCommandOutput>;
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
+ ListConfigurationsRequest,
15
+ ListConfigurationsResponse,
16
+ } from "../models/models_0";
17
+ export interface ListConfigurationsCommandInput
18
+ extends ListConfigurationsRequest {}
19
+ export interface ListConfigurationsCommandOutput
20
+ extends ListConfigurationsResponse,
21
+ __MetadataBearer {}
22
+ export declare class ListConfigurationsCommand extends $Command<
23
+ ListConfigurationsCommandInput,
24
+ ListConfigurationsCommandOutput,
25
+ ApplicationDiscoveryServiceClientResolvedConfig
26
+ > {
27
+ readonly input: ListConfigurationsCommandInput;
28
+ constructor(input: ListConfigurationsCommandInput);
29
+ resolveMiddleware(
30
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
31
+ configuration: ApplicationDiscoveryServiceClientResolvedConfig,
32
+ options?: __HttpHandlerOptions
33
+ ): Handler<ListConfigurationsCommandInput, ListConfigurationsCommandOutput>;
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 { ListServerNeighborsRequest, ListServerNeighborsResponse } from "../models/models_0";
5
- export interface ListServerNeighborsCommandInput extends ListServerNeighborsRequest {
6
- }
7
- export interface ListServerNeighborsCommandOutput extends ListServerNeighborsResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class ListServerNeighborsCommand extends $Command<ListServerNeighborsCommandInput, ListServerNeighborsCommandOutput, ApplicationDiscoveryServiceClientResolvedConfig> {
11
- readonly input: ListServerNeighborsCommandInput;
12
- constructor(input: ListServerNeighborsCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ApplicationDiscoveryServiceClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListServerNeighborsCommandInput, ListServerNeighborsCommandOutput>;
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
+ ListServerNeighborsRequest,
15
+ ListServerNeighborsResponse,
16
+ } from "../models/models_0";
17
+ export interface ListServerNeighborsCommandInput
18
+ extends ListServerNeighborsRequest {}
19
+ export interface ListServerNeighborsCommandOutput
20
+ extends ListServerNeighborsResponse,
21
+ __MetadataBearer {}
22
+ export declare class ListServerNeighborsCommand extends $Command<
23
+ ListServerNeighborsCommandInput,
24
+ ListServerNeighborsCommandOutput,
25
+ ApplicationDiscoveryServiceClientResolvedConfig
26
+ > {
27
+ readonly input: ListServerNeighborsCommandInput;
28
+ constructor(input: ListServerNeighborsCommandInput);
29
+ resolveMiddleware(
30
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
31
+ configuration: ApplicationDiscoveryServiceClientResolvedConfig,
32
+ options?: __HttpHandlerOptions
33
+ ): Handler<ListServerNeighborsCommandInput, ListServerNeighborsCommandOutput>;
34
+ private serialize;
35
+ private deserialize;
36
+ }
@@ -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 { StartContinuousExportRequest, StartContinuousExportResponse } from "../models/models_0";
5
- export interface StartContinuousExportCommandInput extends StartContinuousExportRequest {
6
- }
7
- export interface StartContinuousExportCommandOutput extends StartContinuousExportResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class StartContinuousExportCommand extends $Command<StartContinuousExportCommandInput, StartContinuousExportCommandOutput, ApplicationDiscoveryServiceClientResolvedConfig> {
11
- readonly input: StartContinuousExportCommandInput;
12
- constructor(input: StartContinuousExportCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ApplicationDiscoveryServiceClientResolvedConfig, options?: __HttpHandlerOptions): Handler<StartContinuousExportCommandInput, StartContinuousExportCommandOutput>;
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
+ StartContinuousExportRequest,
15
+ StartContinuousExportResponse,
16
+ } from "../models/models_0";
17
+ export interface StartContinuousExportCommandInput
18
+ extends StartContinuousExportRequest {}
19
+ export interface StartContinuousExportCommandOutput
20
+ extends StartContinuousExportResponse,
21
+ __MetadataBearer {}
22
+ export declare class StartContinuousExportCommand extends $Command<
23
+ StartContinuousExportCommandInput,
24
+ StartContinuousExportCommandOutput,
25
+ ApplicationDiscoveryServiceClientResolvedConfig
26
+ > {
27
+ readonly input: StartContinuousExportCommandInput;
28
+ constructor(input: StartContinuousExportCommandInput);
29
+ resolveMiddleware(
30
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
31
+ configuration: ApplicationDiscoveryServiceClientResolvedConfig,
32
+ options?: __HttpHandlerOptions
33
+ ): Handler<
34
+ StartContinuousExportCommandInput,
35
+ StartContinuousExportCommandOutput
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 { StartDataCollectionByAgentIdsRequest, StartDataCollectionByAgentIdsResponse } from "../models/models_0";
5
- export interface StartDataCollectionByAgentIdsCommandInput extends StartDataCollectionByAgentIdsRequest {
6
- }
7
- export interface StartDataCollectionByAgentIdsCommandOutput extends StartDataCollectionByAgentIdsResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class StartDataCollectionByAgentIdsCommand extends $Command<StartDataCollectionByAgentIdsCommandInput, StartDataCollectionByAgentIdsCommandOutput, ApplicationDiscoveryServiceClientResolvedConfig> {
11
- readonly input: StartDataCollectionByAgentIdsCommandInput;
12
- constructor(input: StartDataCollectionByAgentIdsCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ApplicationDiscoveryServiceClientResolvedConfig, options?: __HttpHandlerOptions): Handler<StartDataCollectionByAgentIdsCommandInput, StartDataCollectionByAgentIdsCommandOutput>;
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
+ StartDataCollectionByAgentIdsRequest,
15
+ StartDataCollectionByAgentIdsResponse,
16
+ } from "../models/models_0";
17
+ export interface StartDataCollectionByAgentIdsCommandInput
18
+ extends StartDataCollectionByAgentIdsRequest {}
19
+ export interface StartDataCollectionByAgentIdsCommandOutput
20
+ extends StartDataCollectionByAgentIdsResponse,
21
+ __MetadataBearer {}
22
+ export declare class StartDataCollectionByAgentIdsCommand extends $Command<
23
+ StartDataCollectionByAgentIdsCommandInput,
24
+ StartDataCollectionByAgentIdsCommandOutput,
25
+ ApplicationDiscoveryServiceClientResolvedConfig
26
+ > {
27
+ readonly input: StartDataCollectionByAgentIdsCommandInput;
28
+ constructor(input: StartDataCollectionByAgentIdsCommandInput);
29
+ resolveMiddleware(
30
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
31
+ configuration: ApplicationDiscoveryServiceClientResolvedConfig,
32
+ options?: __HttpHandlerOptions
33
+ ): Handler<
34
+ StartDataCollectionByAgentIdsCommandInput,
35
+ StartDataCollectionByAgentIdsCommandOutput
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 { StartExportTaskRequest, StartExportTaskResponse } from "../models/models_0";
5
- export interface StartExportTaskCommandInput extends StartExportTaskRequest {
6
- }
7
- export interface StartExportTaskCommandOutput extends StartExportTaskResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class StartExportTaskCommand extends $Command<StartExportTaskCommandInput, StartExportTaskCommandOutput, ApplicationDiscoveryServiceClientResolvedConfig> {
11
- readonly input: StartExportTaskCommandInput;
12
- constructor(input: StartExportTaskCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ApplicationDiscoveryServiceClientResolvedConfig, options?: __HttpHandlerOptions): Handler<StartExportTaskCommandInput, StartExportTaskCommandOutput>;
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
+ StartExportTaskRequest,
15
+ StartExportTaskResponse,
16
+ } from "../models/models_0";
17
+ export interface StartExportTaskCommandInput extends StartExportTaskRequest {}
18
+ export interface StartExportTaskCommandOutput
19
+ extends StartExportTaskResponse,
20
+ __MetadataBearer {}
21
+ export declare class StartExportTaskCommand extends $Command<
22
+ StartExportTaskCommandInput,
23
+ StartExportTaskCommandOutput,
24
+ ApplicationDiscoveryServiceClientResolvedConfig
25
+ > {
26
+ readonly input: StartExportTaskCommandInput;
27
+ constructor(input: StartExportTaskCommandInput);
28
+ resolveMiddleware(
29
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
30
+ configuration: ApplicationDiscoveryServiceClientResolvedConfig,
31
+ options?: __HttpHandlerOptions
32
+ ): Handler<StartExportTaskCommandInput, StartExportTaskCommandOutput>;
33
+ private serialize;
34
+ private deserialize;
35
+ }
@@ -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 { StartImportTaskRequest, StartImportTaskResponse } from "../models/models_0";
5
- export interface StartImportTaskCommandInput extends StartImportTaskRequest {
6
- }
7
- export interface StartImportTaskCommandOutput extends StartImportTaskResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class StartImportTaskCommand extends $Command<StartImportTaskCommandInput, StartImportTaskCommandOutput, ApplicationDiscoveryServiceClientResolvedConfig> {
11
- readonly input: StartImportTaskCommandInput;
12
- constructor(input: StartImportTaskCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ApplicationDiscoveryServiceClientResolvedConfig, options?: __HttpHandlerOptions): Handler<StartImportTaskCommandInput, StartImportTaskCommandOutput>;
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
+ StartImportTaskRequest,
15
+ StartImportTaskResponse,
16
+ } from "../models/models_0";
17
+ export interface StartImportTaskCommandInput extends StartImportTaskRequest {}
18
+ export interface StartImportTaskCommandOutput
19
+ extends StartImportTaskResponse,
20
+ __MetadataBearer {}
21
+ export declare class StartImportTaskCommand extends $Command<
22
+ StartImportTaskCommandInput,
23
+ StartImportTaskCommandOutput,
24
+ ApplicationDiscoveryServiceClientResolvedConfig
25
+ > {
26
+ readonly input: StartImportTaskCommandInput;
27
+ constructor(input: StartImportTaskCommandInput);
28
+ resolveMiddleware(
29
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
30
+ configuration: ApplicationDiscoveryServiceClientResolvedConfig,
31
+ options?: __HttpHandlerOptions
32
+ ): Handler<StartImportTaskCommandInput, StartImportTaskCommandOutput>;
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 { StopContinuousExportRequest, StopContinuousExportResponse } from "../models/models_0";
5
- export interface StopContinuousExportCommandInput extends StopContinuousExportRequest {
6
- }
7
- export interface StopContinuousExportCommandOutput extends StopContinuousExportResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class StopContinuousExportCommand extends $Command<StopContinuousExportCommandInput, StopContinuousExportCommandOutput, ApplicationDiscoveryServiceClientResolvedConfig> {
11
- readonly input: StopContinuousExportCommandInput;
12
- constructor(input: StopContinuousExportCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ApplicationDiscoveryServiceClientResolvedConfig, options?: __HttpHandlerOptions): Handler<StopContinuousExportCommandInput, StopContinuousExportCommandOutput>;
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
+ StopContinuousExportRequest,
15
+ StopContinuousExportResponse,
16
+ } from "../models/models_0";
17
+ export interface StopContinuousExportCommandInput
18
+ extends StopContinuousExportRequest {}
19
+ export interface StopContinuousExportCommandOutput
20
+ extends StopContinuousExportResponse,
21
+ __MetadataBearer {}
22
+ export declare class StopContinuousExportCommand extends $Command<
23
+ StopContinuousExportCommandInput,
24
+ StopContinuousExportCommandOutput,
25
+ ApplicationDiscoveryServiceClientResolvedConfig
26
+ > {
27
+ readonly input: StopContinuousExportCommandInput;
28
+ constructor(input: StopContinuousExportCommandInput);
29
+ resolveMiddleware(
30
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
31
+ configuration: ApplicationDiscoveryServiceClientResolvedConfig,
32
+ options?: __HttpHandlerOptions
33
+ ): Handler<
34
+ StopContinuousExportCommandInput,
35
+ StopContinuousExportCommandOutput
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 { StopDataCollectionByAgentIdsRequest, StopDataCollectionByAgentIdsResponse } from "../models/models_0";
5
- export interface StopDataCollectionByAgentIdsCommandInput extends StopDataCollectionByAgentIdsRequest {
6
- }
7
- export interface StopDataCollectionByAgentIdsCommandOutput extends StopDataCollectionByAgentIdsResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class StopDataCollectionByAgentIdsCommand extends $Command<StopDataCollectionByAgentIdsCommandInput, StopDataCollectionByAgentIdsCommandOutput, ApplicationDiscoveryServiceClientResolvedConfig> {
11
- readonly input: StopDataCollectionByAgentIdsCommandInput;
12
- constructor(input: StopDataCollectionByAgentIdsCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ApplicationDiscoveryServiceClientResolvedConfig, options?: __HttpHandlerOptions): Handler<StopDataCollectionByAgentIdsCommandInput, StopDataCollectionByAgentIdsCommandOutput>;
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
+ StopDataCollectionByAgentIdsRequest,
15
+ StopDataCollectionByAgentIdsResponse,
16
+ } from "../models/models_0";
17
+ export interface StopDataCollectionByAgentIdsCommandInput
18
+ extends StopDataCollectionByAgentIdsRequest {}
19
+ export interface StopDataCollectionByAgentIdsCommandOutput
20
+ extends StopDataCollectionByAgentIdsResponse,
21
+ __MetadataBearer {}
22
+ export declare class StopDataCollectionByAgentIdsCommand extends $Command<
23
+ StopDataCollectionByAgentIdsCommandInput,
24
+ StopDataCollectionByAgentIdsCommandOutput,
25
+ ApplicationDiscoveryServiceClientResolvedConfig
26
+ > {
27
+ readonly input: StopDataCollectionByAgentIdsCommandInput;
28
+ constructor(input: StopDataCollectionByAgentIdsCommandInput);
29
+ resolveMiddleware(
30
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
31
+ configuration: ApplicationDiscoveryServiceClientResolvedConfig,
32
+ options?: __HttpHandlerOptions
33
+ ): Handler<
34
+ StopDataCollectionByAgentIdsCommandInput,
35
+ StopDataCollectionByAgentIdsCommandOutput
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 { UpdateApplicationRequest, UpdateApplicationResponse } from "../models/models_0";
5
- export interface UpdateApplicationCommandInput extends UpdateApplicationRequest {
6
- }
7
- export interface UpdateApplicationCommandOutput extends UpdateApplicationResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class UpdateApplicationCommand extends $Command<UpdateApplicationCommandInput, UpdateApplicationCommandOutput, ApplicationDiscoveryServiceClientResolvedConfig> {
11
- readonly input: UpdateApplicationCommandInput;
12
- constructor(input: UpdateApplicationCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ApplicationDiscoveryServiceClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateApplicationCommandInput, UpdateApplicationCommandOutput>;
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
+ UpdateApplicationRequest,
15
+ UpdateApplicationResponse,
16
+ } from "../models/models_0";
17
+ export interface UpdateApplicationCommandInput
18
+ extends UpdateApplicationRequest {}
19
+ export interface UpdateApplicationCommandOutput
20
+ extends UpdateApplicationResponse,
21
+ __MetadataBearer {}
22
+ export declare class UpdateApplicationCommand extends $Command<
23
+ UpdateApplicationCommandInput,
24
+ UpdateApplicationCommandOutput,
25
+ ApplicationDiscoveryServiceClientResolvedConfig
26
+ > {
27
+ readonly input: UpdateApplicationCommandInput;
28
+ constructor(input: UpdateApplicationCommandInput);
29
+ resolveMiddleware(
30
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
31
+ configuration: ApplicationDiscoveryServiceClientResolvedConfig,
32
+ options?: __HttpHandlerOptions
33
+ ): Handler<UpdateApplicationCommandInput, UpdateApplicationCommandOutput>;
34
+ private serialize;
35
+ private deserialize;
36
+ }
@@ -1,25 +1,25 @@
1
- export * from "./AssociateConfigurationItemsToApplicationCommand";
2
- export * from "./BatchDeleteImportDataCommand";
3
- export * from "./CreateApplicationCommand";
4
- export * from "./CreateTagsCommand";
5
- export * from "./DeleteApplicationsCommand";
6
- export * from "./DeleteTagsCommand";
7
- export * from "./DescribeAgentsCommand";
8
- export * from "./DescribeConfigurationsCommand";
9
- export * from "./DescribeContinuousExportsCommand";
10
- export * from "./DescribeExportConfigurationsCommand";
11
- export * from "./DescribeExportTasksCommand";
12
- export * from "./DescribeImportTasksCommand";
13
- export * from "./DescribeTagsCommand";
14
- export * from "./DisassociateConfigurationItemsFromApplicationCommand";
15
- export * from "./ExportConfigurationsCommand";
16
- export * from "./GetDiscoverySummaryCommand";
17
- export * from "./ListConfigurationsCommand";
18
- export * from "./ListServerNeighborsCommand";
19
- export * from "./StartContinuousExportCommand";
20
- export * from "./StartDataCollectionByAgentIdsCommand";
21
- export * from "./StartExportTaskCommand";
22
- export * from "./StartImportTaskCommand";
23
- export * from "./StopContinuousExportCommand";
24
- export * from "./StopDataCollectionByAgentIdsCommand";
25
- export * from "./UpdateApplicationCommand";
1
+ export * from "./AssociateConfigurationItemsToApplicationCommand";
2
+ export * from "./BatchDeleteImportDataCommand";
3
+ export * from "./CreateApplicationCommand";
4
+ export * from "./CreateTagsCommand";
5
+ export * from "./DeleteApplicationsCommand";
6
+ export * from "./DeleteTagsCommand";
7
+ export * from "./DescribeAgentsCommand";
8
+ export * from "./DescribeConfigurationsCommand";
9
+ export * from "./DescribeContinuousExportsCommand";
10
+ export * from "./DescribeExportConfigurationsCommand";
11
+ export * from "./DescribeExportTasksCommand";
12
+ export * from "./DescribeImportTasksCommand";
13
+ export * from "./DescribeTagsCommand";
14
+ export * from "./DisassociateConfigurationItemsFromApplicationCommand";
15
+ export * from "./ExportConfigurationsCommand";
16
+ export * from "./GetDiscoverySummaryCommand";
17
+ export * from "./ListConfigurationsCommand";
18
+ export * from "./ListServerNeighborsCommand";
19
+ export * from "./StartContinuousExportCommand";
20
+ export * from "./StartDataCollectionByAgentIdsCommand";
21
+ export * from "./StartExportTaskCommand";
22
+ export * from "./StartImportTaskCommand";
23
+ export * from "./StopContinuousExportCommand";
24
+ export * from "./StopDataCollectionByAgentIdsCommand";
25
+ export * from "./UpdateApplicationCommand";
@@ -1,2 +1,2 @@
1
- import { RegionInfoProvider } from "@aws-sdk/types";
2
- export declare const defaultRegionInfoProvider: RegionInfoProvider;
1
+ import { RegionInfoProvider } from "@aws-sdk/types";
2
+ export declare const defaultRegionInfoProvider: RegionInfoProvider;
@@ -1,6 +1,6 @@
1
- export * from "./ApplicationDiscoveryService";
2
- export * from "./ApplicationDiscoveryServiceClient";
3
- export * from "./commands";
4
- export * from "./models";
5
- export * from "./pagination";
6
- export { ApplicationDiscoveryServiceServiceException } from "./models/ApplicationDiscoveryServiceServiceException";
1
+ export * from "./ApplicationDiscoveryService";
2
+ export * from "./ApplicationDiscoveryServiceClient";
3
+ export * from "./commands";
4
+ export * from "./models";
5
+ export * from "./pagination";
6
+ export { ApplicationDiscoveryServiceServiceException } from "./models/ApplicationDiscoveryServiceServiceException";
@@ -1,6 +1,7 @@
1
- import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
2
-
3
- export declare class ApplicationDiscoveryServiceServiceException extends __ServiceException {
4
-
5
- constructor(options: __ServiceExceptionOptions);
6
- }
1
+ import {
2
+ ServiceException as __ServiceException,
3
+ ServiceExceptionOptions as __ServiceExceptionOptions,
4
+ } from "@aws-sdk/smithy-client";
5
+ export declare class ApplicationDiscoveryServiceServiceException extends __ServiceException {
6
+ constructor(options: __ServiceExceptionOptions);
7
+ }
@@ -1 +1 @@
1
- export * from "./models_0";
1
+ export * from "./models_0";