@aws-sdk/client-application-discovery-service 3.169.0 → 3.171.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +16 -0
- package/dist-types/ts3.4/ApplicationDiscoveryService.d.ts +441 -130
- package/dist-types/ts3.4/ApplicationDiscoveryServiceClient.d.ts +255 -98
- package/dist-types/ts3.4/commands/AssociateConfigurationItemsToApplicationCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/BatchDeleteImportDataCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/CreateApplicationCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/CreateTagsCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/DeleteApplicationsCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/DeleteTagsCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/DescribeAgentsCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/DescribeConfigurationsCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/DescribeContinuousExportsCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/DescribeExportConfigurationsCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/DescribeExportTasksCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/DescribeImportTasksCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/DescribeTagsCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/DisassociateConfigurationItemsFromApplicationCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/ExportConfigurationsCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/GetDiscoverySummaryCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/ListConfigurationsCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/ListServerNeighborsCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/StartContinuousExportCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/StartDataCollectionByAgentIdsCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/StartExportTaskCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/StartImportTaskCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/StopContinuousExportCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/StopDataCollectionByAgentIdsCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/UpdateApplicationCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/index.d.ts +25 -25
- package/dist-types/ts3.4/endpoints.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +6 -6
- package/dist-types/ts3.4/models/ApplicationDiscoveryServiceServiceException.d.ts +7 -6
- package/dist-types/ts3.4/models/index.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +640 -799
- package/dist-types/ts3.4/pagination/DescribeContinuousExportsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/DescribeImportTasksPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -6
- package/dist-types/ts3.4/pagination/index.d.ts +3 -3
- package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +305 -77
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +67 -38
- package/dist-types/ts3.4/runtimeConfig.d.ts +67 -38
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +68 -37
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +12 -11
- package/package.json +34 -34
|
@@ -1,17 +1,36 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
ApplicationDiscoveryServiceClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../ApplicationDiscoveryServiceClient";
|
|
13
|
+
import {
|
|
14
|
+
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 {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
ApplicationDiscoveryServiceClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../ApplicationDiscoveryServiceClient";
|
|
13
|
+
import {
|
|
14
|
+
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 {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
ApplicationDiscoveryServiceClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../ApplicationDiscoveryServiceClient";
|
|
13
|
+
import {
|
|
14
|
+
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 {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
ApplicationDiscoveryServiceClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../ApplicationDiscoveryServiceClient";
|
|
13
|
+
import {
|
|
14
|
+
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 {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
}
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
ApplicationDiscoveryServiceClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../ApplicationDiscoveryServiceClient";
|
|
13
|
+
import {
|
|
14
|
+
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 {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
}
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
ApplicationDiscoveryServiceClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../ApplicationDiscoveryServiceClient";
|
|
13
|
+
import {
|
|
14
|
+
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 {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
ApplicationDiscoveryServiceClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../ApplicationDiscoveryServiceClient";
|
|
13
|
+
import {
|
|
14
|
+
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 {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
ApplicationDiscoveryServiceClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../ApplicationDiscoveryServiceClient";
|
|
13
|
+
import {
|
|
14
|
+
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 {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
ApplicationDiscoveryServiceClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../ApplicationDiscoveryServiceClient";
|
|
13
|
+
import {
|
|
14
|
+
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 {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
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";
|