@aws-sdk/client-application-discovery-service 3.296.0 → 3.297.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/dist-types/ApplicationDiscoveryService.d.ts +26 -0
- package/dist-types/ApplicationDiscoveryServiceClient.d.ts +24 -4
- package/dist-types/commands/AssociateConfigurationItemsToApplicationCommand.d.ts +16 -0
- package/dist-types/commands/BatchDeleteImportDataCommand.d.ts +16 -0
- package/dist-types/commands/CreateApplicationCommand.d.ts +16 -0
- package/dist-types/commands/CreateTagsCommand.d.ts +16 -0
- package/dist-types/commands/DeleteApplicationsCommand.d.ts +16 -0
- package/dist-types/commands/DeleteTagsCommand.d.ts +16 -0
- package/dist-types/commands/DescribeAgentsCommand.d.ts +16 -0
- package/dist-types/commands/DescribeConfigurationsCommand.d.ts +16 -0
- package/dist-types/commands/DescribeContinuousExportsCommand.d.ts +16 -0
- package/dist-types/commands/DescribeExportConfigurationsCommand.d.ts +16 -0
- package/dist-types/commands/DescribeExportTasksCommand.d.ts +16 -0
- package/dist-types/commands/DescribeImportTasksCommand.d.ts +16 -0
- package/dist-types/commands/DescribeTagsCommand.d.ts +16 -0
- package/dist-types/commands/DisassociateConfigurationItemsFromApplicationCommand.d.ts +16 -0
- package/dist-types/commands/ExportConfigurationsCommand.d.ts +16 -0
- package/dist-types/commands/GetDiscoverySummaryCommand.d.ts +16 -0
- package/dist-types/commands/ListConfigurationsCommand.d.ts +16 -0
- package/dist-types/commands/ListServerNeighborsCommand.d.ts +16 -0
- package/dist-types/commands/StartContinuousExportCommand.d.ts +16 -0
- package/dist-types/commands/StartDataCollectionByAgentIdsCommand.d.ts +16 -0
- package/dist-types/commands/StartExportTaskCommand.d.ts +16 -0
- package/dist-types/commands/StartImportTaskCommand.d.ts +16 -0
- package/dist-types/commands/StopContinuousExportCommand.d.ts +16 -0
- package/dist-types/commands/StopDataCollectionByAgentIdsCommand.d.ts +16 -0
- package/dist-types/commands/UpdateApplicationCommand.d.ts +16 -0
- package/dist-types/models/ApplicationDiscoveryServiceServiceException.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +211 -4
- package/dist-types/pagination/DescribeContinuousExportsPaginator.d.ts +3 -0
- package/dist-types/pagination/DescribeImportTasksPaginator.d.ts +3 -0
- package/dist-types/pagination/Interfaces.d.ts +3 -0
- package/package.json +3 -3
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ApplicationDiscoveryServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApplicationDiscoveryServiceClient";
|
|
5
5
|
import { DescribeConfigurationsRequest, DescribeConfigurationsResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DescribeConfigurationsCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DescribeConfigurationsCommandInput extends DescribeConfigurationsRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DescribeConfigurationsCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DescribeConfigurationsCommandOutput extends DescribeConfigurationsResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Retrieves attributes for a list of configuration item IDs.</p>
|
|
18
23
|
* <note>
|
|
19
24
|
* <p>All of the supplied IDs must be for the same asset type from one of the
|
|
@@ -48,6 +53,8 @@ export interface DescribeConfigurationsCommandOutput extends DescribeConfigurati
|
|
|
48
53
|
* const response = await client.send(command);
|
|
49
54
|
* ```
|
|
50
55
|
*
|
|
56
|
+
* @param DescribeConfigurationsCommandInput - {@link DescribeConfigurationsCommandInput}
|
|
57
|
+
* @returns {@link DescribeConfigurationsCommandOutput}
|
|
51
58
|
* @see {@link DescribeConfigurationsCommandInput} for command's `input` shape.
|
|
52
59
|
* @see {@link DescribeConfigurationsCommandOutput} for command's `response` shape.
|
|
53
60
|
* @see {@link ApplicationDiscoveryServiceClientResolvedConfig | config} for ApplicationDiscoveryServiceClient's `config` shape.
|
|
@@ -74,11 +81,20 @@ export interface DescribeConfigurationsCommandOutput extends DescribeConfigurati
|
|
|
74
81
|
export declare class DescribeConfigurationsCommand extends $Command<DescribeConfigurationsCommandInput, DescribeConfigurationsCommandOutput, ApplicationDiscoveryServiceClientResolvedConfig> {
|
|
75
82
|
readonly input: DescribeConfigurationsCommandInput;
|
|
76
83
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
84
|
+
/**
|
|
85
|
+
* @public
|
|
86
|
+
*/
|
|
77
87
|
constructor(input: DescribeConfigurationsCommandInput);
|
|
78
88
|
/**
|
|
79
89
|
* @internal
|
|
80
90
|
*/
|
|
81
91
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ApplicationDiscoveryServiceClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeConfigurationsCommandInput, DescribeConfigurationsCommandOutput>;
|
|
92
|
+
/**
|
|
93
|
+
* @internal
|
|
94
|
+
*/
|
|
82
95
|
private serialize;
|
|
96
|
+
/**
|
|
97
|
+
* @internal
|
|
98
|
+
*/
|
|
83
99
|
private deserialize;
|
|
84
100
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ApplicationDiscoveryServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApplicationDiscoveryServiceClient";
|
|
5
5
|
import { DescribeContinuousExportsRequest, DescribeContinuousExportsResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DescribeContinuousExportsCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DescribeContinuousExportsCommandInput extends DescribeContinuousExportsRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DescribeContinuousExportsCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DescribeContinuousExportsCommandOutput extends DescribeContinuousExportsResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Lists exports as specified by ID. All continuous exports associated with your user
|
|
18
23
|
* account can be listed if you call <code>DescribeContinuousExports</code> as is without passing
|
|
19
24
|
* any parameters.</p>
|
|
@@ -27,6 +32,8 @@ export interface DescribeContinuousExportsCommandOutput extends DescribeContinuo
|
|
|
27
32
|
* const response = await client.send(command);
|
|
28
33
|
* ```
|
|
29
34
|
*
|
|
35
|
+
* @param DescribeContinuousExportsCommandInput - {@link DescribeContinuousExportsCommandInput}
|
|
36
|
+
* @returns {@link DescribeContinuousExportsCommandOutput}
|
|
30
37
|
* @see {@link DescribeContinuousExportsCommandInput} for command's `input` shape.
|
|
31
38
|
* @see {@link DescribeContinuousExportsCommandOutput} for command's `response` shape.
|
|
32
39
|
* @see {@link ApplicationDiscoveryServiceClientResolvedConfig | config} for ApplicationDiscoveryServiceClient's `config` shape.
|
|
@@ -60,11 +67,20 @@ export interface DescribeContinuousExportsCommandOutput extends DescribeContinuo
|
|
|
60
67
|
export declare class DescribeContinuousExportsCommand extends $Command<DescribeContinuousExportsCommandInput, DescribeContinuousExportsCommandOutput, ApplicationDiscoveryServiceClientResolvedConfig> {
|
|
61
68
|
readonly input: DescribeContinuousExportsCommandInput;
|
|
62
69
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
70
|
+
/**
|
|
71
|
+
* @public
|
|
72
|
+
*/
|
|
63
73
|
constructor(input: DescribeContinuousExportsCommandInput);
|
|
64
74
|
/**
|
|
65
75
|
* @internal
|
|
66
76
|
*/
|
|
67
77
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ApplicationDiscoveryServiceClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeContinuousExportsCommandInput, DescribeContinuousExportsCommandOutput>;
|
|
78
|
+
/**
|
|
79
|
+
* @internal
|
|
80
|
+
*/
|
|
68
81
|
private serialize;
|
|
82
|
+
/**
|
|
83
|
+
* @internal
|
|
84
|
+
*/
|
|
69
85
|
private deserialize;
|
|
70
86
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ApplicationDiscoveryServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApplicationDiscoveryServiceClient";
|
|
5
5
|
import { DescribeExportConfigurationsRequest, DescribeExportConfigurationsResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DescribeExportConfigurationsCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DescribeExportConfigurationsCommandInput extends DescribeExportConfigurationsRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DescribeExportConfigurationsCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DescribeExportConfigurationsCommandOutput extends DescribeExportConfigurationsResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* @deprecated
|
|
18
23
|
*
|
|
19
24
|
* <p>
|
|
@@ -28,6 +33,8 @@ export interface DescribeExportConfigurationsCommandOutput extends DescribeExpor
|
|
|
28
33
|
* const response = await client.send(command);
|
|
29
34
|
* ```
|
|
30
35
|
*
|
|
36
|
+
* @param DescribeExportConfigurationsCommandInput - {@link DescribeExportConfigurationsCommandInput}
|
|
37
|
+
* @returns {@link DescribeExportConfigurationsCommandOutput}
|
|
31
38
|
* @see {@link DescribeExportConfigurationsCommandInput} for command's `input` shape.
|
|
32
39
|
* @see {@link DescribeExportConfigurationsCommandOutput} for command's `response` shape.
|
|
33
40
|
* @see {@link ApplicationDiscoveryServiceClientResolvedConfig | config} for ApplicationDiscoveryServiceClient's `config` shape.
|
|
@@ -58,11 +65,20 @@ export interface DescribeExportConfigurationsCommandOutput extends DescribeExpor
|
|
|
58
65
|
export declare class DescribeExportConfigurationsCommand extends $Command<DescribeExportConfigurationsCommandInput, DescribeExportConfigurationsCommandOutput, ApplicationDiscoveryServiceClientResolvedConfig> {
|
|
59
66
|
readonly input: DescribeExportConfigurationsCommandInput;
|
|
60
67
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
68
|
+
/**
|
|
69
|
+
* @public
|
|
70
|
+
*/
|
|
61
71
|
constructor(input: DescribeExportConfigurationsCommandInput);
|
|
62
72
|
/**
|
|
63
73
|
* @internal
|
|
64
74
|
*/
|
|
65
75
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ApplicationDiscoveryServiceClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeExportConfigurationsCommandInput, DescribeExportConfigurationsCommandOutput>;
|
|
76
|
+
/**
|
|
77
|
+
* @internal
|
|
78
|
+
*/
|
|
66
79
|
private serialize;
|
|
80
|
+
/**
|
|
81
|
+
* @internal
|
|
82
|
+
*/
|
|
67
83
|
private deserialize;
|
|
68
84
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ApplicationDiscoveryServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApplicationDiscoveryServiceClient";
|
|
5
5
|
import { DescribeExportTasksRequest, DescribeExportTasksResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DescribeExportTasksCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DescribeExportTasksCommandInput extends DescribeExportTasksRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DescribeExportTasksCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DescribeExportTasksCommandOutput extends DescribeExportTasksResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Retrieve status of one or more export tasks. You can retrieve the status of up to 100
|
|
18
23
|
* export tasks.</p>
|
|
19
24
|
* @example
|
|
@@ -26,6 +31,8 @@ export interface DescribeExportTasksCommandOutput extends DescribeExportTasksRes
|
|
|
26
31
|
* const response = await client.send(command);
|
|
27
32
|
* ```
|
|
28
33
|
*
|
|
34
|
+
* @param DescribeExportTasksCommandInput - {@link DescribeExportTasksCommandInput}
|
|
35
|
+
* @returns {@link DescribeExportTasksCommandOutput}
|
|
29
36
|
* @see {@link DescribeExportTasksCommandInput} for command's `input` shape.
|
|
30
37
|
* @see {@link DescribeExportTasksCommandOutput} for command's `response` shape.
|
|
31
38
|
* @see {@link ApplicationDiscoveryServiceClientResolvedConfig | config} for ApplicationDiscoveryServiceClient's `config` shape.
|
|
@@ -52,11 +59,20 @@ export interface DescribeExportTasksCommandOutput extends DescribeExportTasksRes
|
|
|
52
59
|
export declare class DescribeExportTasksCommand extends $Command<DescribeExportTasksCommandInput, DescribeExportTasksCommandOutput, ApplicationDiscoveryServiceClientResolvedConfig> {
|
|
53
60
|
readonly input: DescribeExportTasksCommandInput;
|
|
54
61
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
62
|
+
/**
|
|
63
|
+
* @public
|
|
64
|
+
*/
|
|
55
65
|
constructor(input: DescribeExportTasksCommandInput);
|
|
56
66
|
/**
|
|
57
67
|
* @internal
|
|
58
68
|
*/
|
|
59
69
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ApplicationDiscoveryServiceClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeExportTasksCommandInput, DescribeExportTasksCommandOutput>;
|
|
70
|
+
/**
|
|
71
|
+
* @internal
|
|
72
|
+
*/
|
|
60
73
|
private serialize;
|
|
74
|
+
/**
|
|
75
|
+
* @internal
|
|
76
|
+
*/
|
|
61
77
|
private deserialize;
|
|
62
78
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ApplicationDiscoveryServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApplicationDiscoveryServiceClient";
|
|
5
5
|
import { DescribeImportTasksRequest, DescribeImportTasksResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DescribeImportTasksCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DescribeImportTasksCommandInput extends DescribeImportTasksRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DescribeImportTasksCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DescribeImportTasksCommandOutput extends DescribeImportTasksResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Returns an array of import tasks for your account, including status information, times,
|
|
18
23
|
* IDs, the Amazon S3 Object URL for the import file, and more.</p>
|
|
19
24
|
* @example
|
|
@@ -26,6 +31,8 @@ export interface DescribeImportTasksCommandOutput extends DescribeImportTasksRes
|
|
|
26
31
|
* const response = await client.send(command);
|
|
27
32
|
* ```
|
|
28
33
|
*
|
|
34
|
+
* @param DescribeImportTasksCommandInput - {@link DescribeImportTasksCommandInput}
|
|
35
|
+
* @returns {@link DescribeImportTasksCommandOutput}
|
|
29
36
|
* @see {@link DescribeImportTasksCommandInput} for command's `input` shape.
|
|
30
37
|
* @see {@link DescribeImportTasksCommandOutput} for command's `response` shape.
|
|
31
38
|
* @see {@link ApplicationDiscoveryServiceClientResolvedConfig | config} for ApplicationDiscoveryServiceClient's `config` shape.
|
|
@@ -52,11 +59,20 @@ export interface DescribeImportTasksCommandOutput extends DescribeImportTasksRes
|
|
|
52
59
|
export declare class DescribeImportTasksCommand extends $Command<DescribeImportTasksCommandInput, DescribeImportTasksCommandOutput, ApplicationDiscoveryServiceClientResolvedConfig> {
|
|
53
60
|
readonly input: DescribeImportTasksCommandInput;
|
|
54
61
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
62
|
+
/**
|
|
63
|
+
* @public
|
|
64
|
+
*/
|
|
55
65
|
constructor(input: DescribeImportTasksCommandInput);
|
|
56
66
|
/**
|
|
57
67
|
* @internal
|
|
58
68
|
*/
|
|
59
69
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ApplicationDiscoveryServiceClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeImportTasksCommandInput, DescribeImportTasksCommandOutput>;
|
|
70
|
+
/**
|
|
71
|
+
* @internal
|
|
72
|
+
*/
|
|
60
73
|
private serialize;
|
|
74
|
+
/**
|
|
75
|
+
* @internal
|
|
76
|
+
*/
|
|
61
77
|
private deserialize;
|
|
62
78
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ApplicationDiscoveryServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApplicationDiscoveryServiceClient";
|
|
5
5
|
import { DescribeTagsRequest, DescribeTagsResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DescribeTagsCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DescribeTagsCommandInput extends DescribeTagsRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DescribeTagsCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DescribeTagsCommandOutput extends DescribeTagsResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Retrieves a list of configuration items that have tags as specified by the key-value
|
|
18
23
|
* pairs, name and value, passed to the optional parameter <code>filters</code>.</p>
|
|
19
24
|
* <p>There are three valid tag filter names:</p>
|
|
@@ -40,6 +45,8 @@ export interface DescribeTagsCommandOutput extends DescribeTagsResponse, __Metad
|
|
|
40
45
|
* const response = await client.send(command);
|
|
41
46
|
* ```
|
|
42
47
|
*
|
|
48
|
+
* @param DescribeTagsCommandInput - {@link DescribeTagsCommandInput}
|
|
49
|
+
* @returns {@link DescribeTagsCommandOutput}
|
|
43
50
|
* @see {@link DescribeTagsCommandInput} for command's `input` shape.
|
|
44
51
|
* @see {@link DescribeTagsCommandOutput} for command's `response` shape.
|
|
45
52
|
* @see {@link ApplicationDiscoveryServiceClientResolvedConfig | config} for ApplicationDiscoveryServiceClient's `config` shape.
|
|
@@ -70,11 +77,20 @@ export interface DescribeTagsCommandOutput extends DescribeTagsResponse, __Metad
|
|
|
70
77
|
export declare class DescribeTagsCommand extends $Command<DescribeTagsCommandInput, DescribeTagsCommandOutput, ApplicationDiscoveryServiceClientResolvedConfig> {
|
|
71
78
|
readonly input: DescribeTagsCommandInput;
|
|
72
79
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
80
|
+
/**
|
|
81
|
+
* @public
|
|
82
|
+
*/
|
|
73
83
|
constructor(input: DescribeTagsCommandInput);
|
|
74
84
|
/**
|
|
75
85
|
* @internal
|
|
76
86
|
*/
|
|
77
87
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ApplicationDiscoveryServiceClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeTagsCommandInput, DescribeTagsCommandOutput>;
|
|
88
|
+
/**
|
|
89
|
+
* @internal
|
|
90
|
+
*/
|
|
78
91
|
private serialize;
|
|
92
|
+
/**
|
|
93
|
+
* @internal
|
|
94
|
+
*/
|
|
79
95
|
private deserialize;
|
|
80
96
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ApplicationDiscoveryServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApplicationDiscoveryServiceClient";
|
|
5
5
|
import { DisassociateConfigurationItemsFromApplicationRequest, DisassociateConfigurationItemsFromApplicationResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DisassociateConfigurationItemsFromApplicationCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DisassociateConfigurationItemsFromApplicationCommandInput extends DisassociateConfigurationItemsFromApplicationRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DisassociateConfigurationItemsFromApplicationCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DisassociateConfigurationItemsFromApplicationCommandOutput extends DisassociateConfigurationItemsFromApplicationResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Disassociates one or more configuration items from an application.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface DisassociateConfigurationItemsFromApplicationCommandOutput exte
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param DisassociateConfigurationItemsFromApplicationCommandInput - {@link DisassociateConfigurationItemsFromApplicationCommandInput}
|
|
34
|
+
* @returns {@link DisassociateConfigurationItemsFromApplicationCommandOutput}
|
|
28
35
|
* @see {@link DisassociateConfigurationItemsFromApplicationCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link DisassociateConfigurationItemsFromApplicationCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link ApplicationDiscoveryServiceClientResolvedConfig | config} for ApplicationDiscoveryServiceClient's `config` shape.
|
|
@@ -51,11 +58,20 @@ export interface DisassociateConfigurationItemsFromApplicationCommandOutput exte
|
|
|
51
58
|
export declare class DisassociateConfigurationItemsFromApplicationCommand extends $Command<DisassociateConfigurationItemsFromApplicationCommandInput, DisassociateConfigurationItemsFromApplicationCommandOutput, ApplicationDiscoveryServiceClientResolvedConfig> {
|
|
52
59
|
readonly input: DisassociateConfigurationItemsFromApplicationCommandInput;
|
|
53
60
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
61
|
+
/**
|
|
62
|
+
* @public
|
|
63
|
+
*/
|
|
54
64
|
constructor(input: DisassociateConfigurationItemsFromApplicationCommandInput);
|
|
55
65
|
/**
|
|
56
66
|
* @internal
|
|
57
67
|
*/
|
|
58
68
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ApplicationDiscoveryServiceClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DisassociateConfigurationItemsFromApplicationCommandInput, DisassociateConfigurationItemsFromApplicationCommandOutput>;
|
|
69
|
+
/**
|
|
70
|
+
* @internal
|
|
71
|
+
*/
|
|
59
72
|
private serialize;
|
|
73
|
+
/**
|
|
74
|
+
* @internal
|
|
75
|
+
*/
|
|
60
76
|
private deserialize;
|
|
61
77
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ApplicationDiscoveryServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApplicationDiscoveryServiceClient";
|
|
5
5
|
import { ExportConfigurationsResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ExportConfigurationsCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ExportConfigurationsCommandInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ExportConfigurationsCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ExportConfigurationsCommandOutput extends ExportConfigurationsResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* @deprecated
|
|
18
23
|
*
|
|
19
24
|
* <p>Deprecated. Use <code>StartExportTask</code> instead.</p>
|
|
@@ -32,6 +37,8 @@ export interface ExportConfigurationsCommandOutput extends ExportConfigurationsR
|
|
|
32
37
|
* const response = await client.send(command);
|
|
33
38
|
* ```
|
|
34
39
|
*
|
|
40
|
+
* @param ExportConfigurationsCommandInput - {@link ExportConfigurationsCommandInput}
|
|
41
|
+
* @returns {@link ExportConfigurationsCommandOutput}
|
|
35
42
|
* @see {@link ExportConfigurationsCommandInput} for command's `input` shape.
|
|
36
43
|
* @see {@link ExportConfigurationsCommandOutput} for command's `response` shape.
|
|
37
44
|
* @see {@link ApplicationDiscoveryServiceClientResolvedConfig | config} for ApplicationDiscoveryServiceClient's `config` shape.
|
|
@@ -61,11 +68,20 @@ export interface ExportConfigurationsCommandOutput extends ExportConfigurationsR
|
|
|
61
68
|
export declare class ExportConfigurationsCommand extends $Command<ExportConfigurationsCommandInput, ExportConfigurationsCommandOutput, ApplicationDiscoveryServiceClientResolvedConfig> {
|
|
62
69
|
readonly input: ExportConfigurationsCommandInput;
|
|
63
70
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
71
|
+
/**
|
|
72
|
+
* @public
|
|
73
|
+
*/
|
|
64
74
|
constructor(input: ExportConfigurationsCommandInput);
|
|
65
75
|
/**
|
|
66
76
|
* @internal
|
|
67
77
|
*/
|
|
68
78
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ApplicationDiscoveryServiceClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ExportConfigurationsCommandInput, ExportConfigurationsCommandOutput>;
|
|
79
|
+
/**
|
|
80
|
+
* @internal
|
|
81
|
+
*/
|
|
69
82
|
private serialize;
|
|
83
|
+
/**
|
|
84
|
+
* @internal
|
|
85
|
+
*/
|
|
70
86
|
private deserialize;
|
|
71
87
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ApplicationDiscoveryServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApplicationDiscoveryServiceClient";
|
|
5
5
|
import { GetDiscoverySummaryRequest, GetDiscoverySummaryResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link GetDiscoverySummaryCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface GetDiscoverySummaryCommandInput extends GetDiscoverySummaryRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link GetDiscoverySummaryCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface GetDiscoverySummaryCommandOutput extends GetDiscoverySummaryResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Retrieves a short summary of discovered assets.</p>
|
|
18
23
|
* <p>This API operation takes no request parameters and is called as is at the command
|
|
19
24
|
* prompt as shown in the example.</p>
|
|
@@ -27,6 +32,8 @@ export interface GetDiscoverySummaryCommandOutput extends GetDiscoverySummaryRes
|
|
|
27
32
|
* const response = await client.send(command);
|
|
28
33
|
* ```
|
|
29
34
|
*
|
|
35
|
+
* @param GetDiscoverySummaryCommandInput - {@link GetDiscoverySummaryCommandInput}
|
|
36
|
+
* @returns {@link GetDiscoverySummaryCommandOutput}
|
|
30
37
|
* @see {@link GetDiscoverySummaryCommandInput} for command's `input` shape.
|
|
31
38
|
* @see {@link GetDiscoverySummaryCommandOutput} for command's `response` shape.
|
|
32
39
|
* @see {@link ApplicationDiscoveryServiceClientResolvedConfig | config} for ApplicationDiscoveryServiceClient's `config` shape.
|
|
@@ -53,11 +60,20 @@ export interface GetDiscoverySummaryCommandOutput extends GetDiscoverySummaryRes
|
|
|
53
60
|
export declare class GetDiscoverySummaryCommand extends $Command<GetDiscoverySummaryCommandInput, GetDiscoverySummaryCommandOutput, ApplicationDiscoveryServiceClientResolvedConfig> {
|
|
54
61
|
readonly input: GetDiscoverySummaryCommandInput;
|
|
55
62
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
63
|
+
/**
|
|
64
|
+
* @public
|
|
65
|
+
*/
|
|
56
66
|
constructor(input: GetDiscoverySummaryCommandInput);
|
|
57
67
|
/**
|
|
58
68
|
* @internal
|
|
59
69
|
*/
|
|
60
70
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ApplicationDiscoveryServiceClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetDiscoverySummaryCommandInput, GetDiscoverySummaryCommandOutput>;
|
|
71
|
+
/**
|
|
72
|
+
* @internal
|
|
73
|
+
*/
|
|
61
74
|
private serialize;
|
|
75
|
+
/**
|
|
76
|
+
* @internal
|
|
77
|
+
*/
|
|
62
78
|
private deserialize;
|
|
63
79
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ApplicationDiscoveryServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApplicationDiscoveryServiceClient";
|
|
5
5
|
import { ListConfigurationsRequest, ListConfigurationsResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListConfigurationsCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListConfigurationsCommandInput extends ListConfigurationsRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListConfigurationsCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListConfigurationsCommandOutput extends ListConfigurationsResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Retrieves a list of configuration items as specified by the value passed to the
|
|
18
23
|
* required parameter <code>configurationType</code>. Optional filtering may be applied to refine
|
|
19
24
|
* search results.</p>
|
|
@@ -27,6 +32,8 @@ export interface ListConfigurationsCommandOutput extends ListConfigurationsRespo
|
|
|
27
32
|
* const response = await client.send(command);
|
|
28
33
|
* ```
|
|
29
34
|
*
|
|
35
|
+
* @param ListConfigurationsCommandInput - {@link ListConfigurationsCommandInput}
|
|
36
|
+
* @returns {@link ListConfigurationsCommandOutput}
|
|
30
37
|
* @see {@link ListConfigurationsCommandInput} for command's `input` shape.
|
|
31
38
|
* @see {@link ListConfigurationsCommandOutput} for command's `response` shape.
|
|
32
39
|
* @see {@link ApplicationDiscoveryServiceClientResolvedConfig | config} for ApplicationDiscoveryServiceClient's `config` shape.
|
|
@@ -57,11 +64,20 @@ export interface ListConfigurationsCommandOutput extends ListConfigurationsRespo
|
|
|
57
64
|
export declare class ListConfigurationsCommand extends $Command<ListConfigurationsCommandInput, ListConfigurationsCommandOutput, ApplicationDiscoveryServiceClientResolvedConfig> {
|
|
58
65
|
readonly input: ListConfigurationsCommandInput;
|
|
59
66
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
67
|
+
/**
|
|
68
|
+
* @public
|
|
69
|
+
*/
|
|
60
70
|
constructor(input: ListConfigurationsCommandInput);
|
|
61
71
|
/**
|
|
62
72
|
* @internal
|
|
63
73
|
*/
|
|
64
74
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ApplicationDiscoveryServiceClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListConfigurationsCommandInput, ListConfigurationsCommandOutput>;
|
|
75
|
+
/**
|
|
76
|
+
* @internal
|
|
77
|
+
*/
|
|
65
78
|
private serialize;
|
|
79
|
+
/**
|
|
80
|
+
* @internal
|
|
81
|
+
*/
|
|
66
82
|
private deserialize;
|
|
67
83
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ApplicationDiscoveryServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApplicationDiscoveryServiceClient";
|
|
5
5
|
import { ListServerNeighborsRequest, ListServerNeighborsResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListServerNeighborsCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListServerNeighborsCommandInput extends ListServerNeighborsRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListServerNeighborsCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListServerNeighborsCommandOutput extends ListServerNeighborsResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Retrieves a list of servers that are one network hop away from a specified
|
|
18
23
|
* server.</p>
|
|
19
24
|
* @example
|
|
@@ -26,6 +31,8 @@ export interface ListServerNeighborsCommandOutput extends ListServerNeighborsRes
|
|
|
26
31
|
* const response = await client.send(command);
|
|
27
32
|
* ```
|
|
28
33
|
*
|
|
34
|
+
* @param ListServerNeighborsCommandInput - {@link ListServerNeighborsCommandInput}
|
|
35
|
+
* @returns {@link ListServerNeighborsCommandOutput}
|
|
29
36
|
* @see {@link ListServerNeighborsCommandInput} for command's `input` shape.
|
|
30
37
|
* @see {@link ListServerNeighborsCommandOutput} for command's `response` shape.
|
|
31
38
|
* @see {@link ApplicationDiscoveryServiceClientResolvedConfig | config} for ApplicationDiscoveryServiceClient's `config` shape.
|
|
@@ -52,11 +59,20 @@ export interface ListServerNeighborsCommandOutput extends ListServerNeighborsRes
|
|
|
52
59
|
export declare class ListServerNeighborsCommand extends $Command<ListServerNeighborsCommandInput, ListServerNeighborsCommandOutput, ApplicationDiscoveryServiceClientResolvedConfig> {
|
|
53
60
|
readonly input: ListServerNeighborsCommandInput;
|
|
54
61
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
62
|
+
/**
|
|
63
|
+
* @public
|
|
64
|
+
*/
|
|
55
65
|
constructor(input: ListServerNeighborsCommandInput);
|
|
56
66
|
/**
|
|
57
67
|
* @internal
|
|
58
68
|
*/
|
|
59
69
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ApplicationDiscoveryServiceClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListServerNeighborsCommandInput, ListServerNeighborsCommandOutput>;
|
|
70
|
+
/**
|
|
71
|
+
* @internal
|
|
72
|
+
*/
|
|
60
73
|
private serialize;
|
|
74
|
+
/**
|
|
75
|
+
* @internal
|
|
76
|
+
*/
|
|
61
77
|
private deserialize;
|
|
62
78
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ApplicationDiscoveryServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApplicationDiscoveryServiceClient";
|
|
5
5
|
import { StartContinuousExportRequest, StartContinuousExportResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link StartContinuousExportCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface StartContinuousExportCommandInput extends StartContinuousExportRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link StartContinuousExportCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface StartContinuousExportCommandOutput extends StartContinuousExportResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Start the continuous flow of agent's discovered data into Amazon Athena.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface StartContinuousExportCommandOutput extends StartContinuousExpor
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param StartContinuousExportCommandInput - {@link StartContinuousExportCommandInput}
|
|
34
|
+
* @returns {@link StartContinuousExportCommandOutput}
|
|
28
35
|
* @see {@link StartContinuousExportCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link StartContinuousExportCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link ApplicationDiscoveryServiceClientResolvedConfig | config} for ApplicationDiscoveryServiceClient's `config` shape.
|
|
@@ -64,11 +71,20 @@ export interface StartContinuousExportCommandOutput extends StartContinuousExpor
|
|
|
64
71
|
export declare class StartContinuousExportCommand extends $Command<StartContinuousExportCommandInput, StartContinuousExportCommandOutput, ApplicationDiscoveryServiceClientResolvedConfig> {
|
|
65
72
|
readonly input: StartContinuousExportCommandInput;
|
|
66
73
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
74
|
+
/**
|
|
75
|
+
* @public
|
|
76
|
+
*/
|
|
67
77
|
constructor(input: StartContinuousExportCommandInput);
|
|
68
78
|
/**
|
|
69
79
|
* @internal
|
|
70
80
|
*/
|
|
71
81
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ApplicationDiscoveryServiceClientResolvedConfig, options?: __HttpHandlerOptions): Handler<StartContinuousExportCommandInput, StartContinuousExportCommandOutput>;
|
|
82
|
+
/**
|
|
83
|
+
* @internal
|
|
84
|
+
*/
|
|
72
85
|
private serialize;
|
|
86
|
+
/**
|
|
87
|
+
* @internal
|
|
88
|
+
*/
|
|
73
89
|
private deserialize;
|
|
74
90
|
}
|