@aws-sdk/client-application-discovery-service 3.315.0 → 3.319.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-cjs/ApplicationDiscoveryService.js +29 -350
- package/dist-cjs/protocols/Aws_json1_1.js +1 -1
- package/dist-es/ApplicationDiscoveryService.js +30 -351
- package/dist-es/protocols/Aws_json1_1.js +1 -1
- package/dist-types/ApplicationDiscoveryService.d.ts +144 -277
- package/dist-types/ts3.4/ApplicationDiscoveryService.d.ts +4 -1
- package/package.json +8 -8
|
@@ -25,406 +25,273 @@ import { StartImportTaskCommandInput, StartImportTaskCommandOutput } from "./com
|
|
|
25
25
|
import { StopContinuousExportCommandInput, StopContinuousExportCommandOutput } from "./commands/StopContinuousExportCommand";
|
|
26
26
|
import { StopDataCollectionByAgentIdsCommandInput, StopDataCollectionByAgentIdsCommandOutput } from "./commands/StopDataCollectionByAgentIdsCommand";
|
|
27
27
|
import { UpdateApplicationCommandInput, UpdateApplicationCommandOutput } from "./commands/UpdateApplicationCommand";
|
|
28
|
-
|
|
29
|
-
* @public
|
|
30
|
-
* <fullname>Amazon Web Services Application Discovery Service</fullname>
|
|
31
|
-
* <p>Amazon Web Services Application Discovery Service helps you plan application migration projects. It
|
|
32
|
-
* automatically identifies servers, virtual machines (VMs), and network dependencies in your
|
|
33
|
-
* on-premises data centers. For more information, see the <a href="http://aws.amazon.com/application-discovery/faqs/">Amazon Web Services Application Discovery Service FAQ</a>.
|
|
34
|
-
* Application Discovery Service offers three ways of performing discovery and
|
|
35
|
-
* collecting data about your on-premises servers:</p>
|
|
36
|
-
* <ul>
|
|
37
|
-
* <li>
|
|
38
|
-
* <p>
|
|
39
|
-
* <b>Agentless discovery</b> is recommended for environments
|
|
40
|
-
* that use VMware vCenter Server. This mode doesn't require you to install an agent on each
|
|
41
|
-
* host. It does not work in non-VMware environments.</p>
|
|
42
|
-
* <ul>
|
|
43
|
-
* <li>
|
|
44
|
-
* <p>Agentless discovery gathers server information regardless of the operating
|
|
45
|
-
* systems, which minimizes the time required for initial on-premises infrastructure
|
|
46
|
-
* assessment.</p>
|
|
47
|
-
* </li>
|
|
48
|
-
* <li>
|
|
49
|
-
* <p>Agentless discovery doesn't collect information about network dependencies, only
|
|
50
|
-
* agent-based discovery collects that information.</p>
|
|
51
|
-
* </li>
|
|
52
|
-
* </ul>
|
|
53
|
-
* </li>
|
|
54
|
-
* </ul>
|
|
55
|
-
* <ul>
|
|
56
|
-
* <li>
|
|
57
|
-
* <p>
|
|
58
|
-
* <b>Agent-based discovery</b> collects a richer set of data
|
|
59
|
-
* than agentless discovery by using the Amazon Web Services Application Discovery Agent, which you install
|
|
60
|
-
* on one or more hosts in your data center.</p>
|
|
61
|
-
* <ul>
|
|
62
|
-
* <li>
|
|
63
|
-
* <p> The agent captures infrastructure and application information, including an
|
|
64
|
-
* inventory of running processes, system performance information, resource utilization,
|
|
65
|
-
* and network dependencies.</p>
|
|
66
|
-
* </li>
|
|
67
|
-
* <li>
|
|
68
|
-
* <p>The information collected by agents is secured at rest and in transit to the
|
|
69
|
-
* Application Discovery Service database in the cloud. </p>
|
|
70
|
-
* </li>
|
|
71
|
-
* </ul>
|
|
72
|
-
* </li>
|
|
73
|
-
* </ul>
|
|
74
|
-
* <ul>
|
|
75
|
-
* <li>
|
|
76
|
-
* <p>
|
|
77
|
-
* <b>Amazon Web Services Partner Network (APN) solutions</b> integrate with
|
|
78
|
-
* Application Discovery Service, enabling you to import details of your on-premises
|
|
79
|
-
* environment directly into Migration Hub without using the discovery connector or discovery
|
|
80
|
-
* agent.</p>
|
|
81
|
-
* <ul>
|
|
82
|
-
* <li>
|
|
83
|
-
* <p>Third-party application discovery tools can query Amazon Web Services Application Discovery
|
|
84
|
-
* Service, and they can write to the Application Discovery Service database using the
|
|
85
|
-
* public API.</p>
|
|
86
|
-
* </li>
|
|
87
|
-
* <li>
|
|
88
|
-
* <p>In this way, you can import data into Migration Hub and view it, so that you can
|
|
89
|
-
* associate applications with servers and track migrations.</p>
|
|
90
|
-
* </li>
|
|
91
|
-
* </ul>
|
|
92
|
-
* </li>
|
|
93
|
-
* </ul>
|
|
94
|
-
* <p>
|
|
95
|
-
* <b>Recommendations</b>
|
|
96
|
-
* </p>
|
|
97
|
-
* <p>We recommend that you use agent-based discovery for non-VMware environments, and
|
|
98
|
-
* whenever you want to collect information about network dependencies. You can run agent-based
|
|
99
|
-
* and agentless discovery simultaneously. Use agentless discovery to complete the initial
|
|
100
|
-
* infrastructure assessment quickly, and then install agents on select hosts to collect
|
|
101
|
-
* additional information.</p>
|
|
102
|
-
* <p>
|
|
103
|
-
* <b>Working With This Guide</b>
|
|
104
|
-
* </p>
|
|
105
|
-
* <p>This API reference provides descriptions, syntax, and usage examples for each of the
|
|
106
|
-
* actions and data types for Application Discovery Service. The topic for each action shows the
|
|
107
|
-
* API request parameters and the response. Alternatively, you can use one of the Amazon Web Services SDKs to
|
|
108
|
-
* access an API that is tailored to the programming language or platform that you're using. For
|
|
109
|
-
* more information, see <a href="http://aws.amazon.com/tools/#SDKs">Amazon Web Services
|
|
110
|
-
* SDKs</a>.</p>
|
|
111
|
-
* <note>
|
|
112
|
-
* <ul>
|
|
113
|
-
* <li>
|
|
114
|
-
* <p>Remember that you must set your Migration Hub home region before you call any of
|
|
115
|
-
* these APIs.</p>
|
|
116
|
-
* </li>
|
|
117
|
-
* <li>
|
|
118
|
-
* <p>You must make API calls for write actions (create, notify, associate, disassociate,
|
|
119
|
-
* import, or put) while in your home region, or a <code>HomeRegionNotSetException</code>
|
|
120
|
-
* error is returned.</p>
|
|
121
|
-
* </li>
|
|
122
|
-
* <li>
|
|
123
|
-
* <p>API calls for read actions (list, describe, stop, and delete) are permitted outside
|
|
124
|
-
* of your home region.</p>
|
|
125
|
-
* </li>
|
|
126
|
-
* <li>
|
|
127
|
-
* <p>Although it is unlikely, the Migration Hub home region could change. If you call
|
|
128
|
-
* APIs outside the home region, an <code>InvalidInputException</code> is returned.</p>
|
|
129
|
-
* </li>
|
|
130
|
-
* <li>
|
|
131
|
-
* <p>You must call <code>GetHomeRegion</code> to obtain the latest Migration Hub home
|
|
132
|
-
* region.</p>
|
|
133
|
-
* </li>
|
|
134
|
-
* </ul>
|
|
135
|
-
* </note>
|
|
136
|
-
* <p>This guide is intended for use with the <a href="http://docs.aws.amazon.com/application-discovery/latest/userguide/">Amazon Web Services Application
|
|
137
|
-
* Discovery Service User Guide</a>.</p>
|
|
138
|
-
* <important>
|
|
139
|
-
* <p>All data is handled according to the <a href="http://aws.amazon.com/privacy/">Amazon Web Services
|
|
140
|
-
* Privacy Policy</a>. You can operate Application Discovery Service offline to inspect
|
|
141
|
-
* collected data before it is shared with the service.</p>
|
|
142
|
-
* </important>
|
|
143
|
-
*/
|
|
144
|
-
export declare class ApplicationDiscoveryService extends ApplicationDiscoveryServiceClient {
|
|
28
|
+
export interface ApplicationDiscoveryService {
|
|
145
29
|
/**
|
|
146
|
-
* @
|
|
147
|
-
* <p>Associates one or more configuration items with an application.</p>
|
|
30
|
+
* @see {@link AssociateConfigurationItemsToApplicationCommand}
|
|
148
31
|
*/
|
|
149
32
|
associateConfigurationItemsToApplication(args: AssociateConfigurationItemsToApplicationCommandInput, options?: __HttpHandlerOptions): Promise<AssociateConfigurationItemsToApplicationCommandOutput>;
|
|
150
33
|
associateConfigurationItemsToApplication(args: AssociateConfigurationItemsToApplicationCommandInput, cb: (err: any, data?: AssociateConfigurationItemsToApplicationCommandOutput) => void): void;
|
|
151
34
|
associateConfigurationItemsToApplication(args: AssociateConfigurationItemsToApplicationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AssociateConfigurationItemsToApplicationCommandOutput) => void): void;
|
|
152
35
|
/**
|
|
153
|
-
* @
|
|
154
|
-
* <p>Deletes one or more import tasks, each identified by their import ID. Each import task has
|
|
155
|
-
* a number of records that can identify servers or applications. </p>
|
|
156
|
-
* <p>Amazon Web Services Application Discovery Service has built-in matching logic that will identify when
|
|
157
|
-
* discovered servers match existing entries that you've previously discovered, the information
|
|
158
|
-
* for the already-existing discovered server is updated. When you delete an import task that
|
|
159
|
-
* contains records that were used to match, the information in those matched records that comes
|
|
160
|
-
* from the deleted records will also be deleted.</p>
|
|
36
|
+
* @see {@link BatchDeleteImportDataCommand}
|
|
161
37
|
*/
|
|
162
38
|
batchDeleteImportData(args: BatchDeleteImportDataCommandInput, options?: __HttpHandlerOptions): Promise<BatchDeleteImportDataCommandOutput>;
|
|
163
39
|
batchDeleteImportData(args: BatchDeleteImportDataCommandInput, cb: (err: any, data?: BatchDeleteImportDataCommandOutput) => void): void;
|
|
164
40
|
batchDeleteImportData(args: BatchDeleteImportDataCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: BatchDeleteImportDataCommandOutput) => void): void;
|
|
165
41
|
/**
|
|
166
|
-
* @
|
|
167
|
-
* <p>Creates an application with the given name and description.</p>
|
|
42
|
+
* @see {@link CreateApplicationCommand}
|
|
168
43
|
*/
|
|
169
44
|
createApplication(args: CreateApplicationCommandInput, options?: __HttpHandlerOptions): Promise<CreateApplicationCommandOutput>;
|
|
170
45
|
createApplication(args: CreateApplicationCommandInput, cb: (err: any, data?: CreateApplicationCommandOutput) => void): void;
|
|
171
46
|
createApplication(args: CreateApplicationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateApplicationCommandOutput) => void): void;
|
|
172
47
|
/**
|
|
173
|
-
* @
|
|
174
|
-
* <p>Creates one or more tags for configuration items. Tags are metadata that help you
|
|
175
|
-
* categorize IT assets. This API accepts a list of multiple configuration items.</p>
|
|
176
|
-
* <important>
|
|
177
|
-
* <p>Do not store sensitive information (like personal data) in tags.</p>
|
|
178
|
-
* </important>
|
|
48
|
+
* @see {@link CreateTagsCommand}
|
|
179
49
|
*/
|
|
180
50
|
createTags(args: CreateTagsCommandInput, options?: __HttpHandlerOptions): Promise<CreateTagsCommandOutput>;
|
|
181
51
|
createTags(args: CreateTagsCommandInput, cb: (err: any, data?: CreateTagsCommandOutput) => void): void;
|
|
182
52
|
createTags(args: CreateTagsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateTagsCommandOutput) => void): void;
|
|
183
53
|
/**
|
|
184
|
-
* @
|
|
185
|
-
* <p>Deletes a list of applications and their associations with configuration
|
|
186
|
-
* items.</p>
|
|
54
|
+
* @see {@link DeleteApplicationsCommand}
|
|
187
55
|
*/
|
|
188
56
|
deleteApplications(args: DeleteApplicationsCommandInput, options?: __HttpHandlerOptions): Promise<DeleteApplicationsCommandOutput>;
|
|
189
57
|
deleteApplications(args: DeleteApplicationsCommandInput, cb: (err: any, data?: DeleteApplicationsCommandOutput) => void): void;
|
|
190
58
|
deleteApplications(args: DeleteApplicationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteApplicationsCommandOutput) => void): void;
|
|
191
59
|
/**
|
|
192
|
-
* @
|
|
193
|
-
* <p>Deletes the association between configuration items and one or more tags. This API
|
|
194
|
-
* accepts a list of multiple configuration items.</p>
|
|
60
|
+
* @see {@link DeleteTagsCommand}
|
|
195
61
|
*/
|
|
196
62
|
deleteTags(args: DeleteTagsCommandInput, options?: __HttpHandlerOptions): Promise<DeleteTagsCommandOutput>;
|
|
197
63
|
deleteTags(args: DeleteTagsCommandInput, cb: (err: any, data?: DeleteTagsCommandOutput) => void): void;
|
|
198
64
|
deleteTags(args: DeleteTagsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteTagsCommandOutput) => void): void;
|
|
199
65
|
/**
|
|
200
|
-
* @
|
|
201
|
-
* <p>Lists agents or connectors as specified by ID or other filters. All agents/connectors
|
|
202
|
-
* associated with your user account can be listed if you call <code>DescribeAgents</code> as is
|
|
203
|
-
* without passing any parameters.</p>
|
|
66
|
+
* @see {@link DescribeAgentsCommand}
|
|
204
67
|
*/
|
|
205
68
|
describeAgents(args: DescribeAgentsCommandInput, options?: __HttpHandlerOptions): Promise<DescribeAgentsCommandOutput>;
|
|
206
69
|
describeAgents(args: DescribeAgentsCommandInput, cb: (err: any, data?: DescribeAgentsCommandOutput) => void): void;
|
|
207
70
|
describeAgents(args: DescribeAgentsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeAgentsCommandOutput) => void): void;
|
|
208
71
|
/**
|
|
209
|
-
* @
|
|
210
|
-
* <p>Retrieves attributes for a list of configuration item IDs.</p>
|
|
211
|
-
* <note>
|
|
212
|
-
* <p>All of the supplied IDs must be for the same asset type from one of the
|
|
213
|
-
* following:</p>
|
|
214
|
-
* <ul>
|
|
215
|
-
* <li>
|
|
216
|
-
* <p>server</p>
|
|
217
|
-
* </li>
|
|
218
|
-
* <li>
|
|
219
|
-
* <p>application</p>
|
|
220
|
-
* </li>
|
|
221
|
-
* <li>
|
|
222
|
-
* <p>process</p>
|
|
223
|
-
* </li>
|
|
224
|
-
* <li>
|
|
225
|
-
* <p>connection</p>
|
|
226
|
-
* </li>
|
|
227
|
-
* </ul>
|
|
228
|
-
* <p>Output fields are specific to the asset type specified. For example, the output for a
|
|
229
|
-
* <i>server</i> configuration item includes a list of attributes about the
|
|
230
|
-
* server, such as host name, operating system, number of network cards, etc.</p>
|
|
231
|
-
* <p>For a complete list of outputs for each asset type, see <a href="https://docs.aws.amazon.com/application-discovery/latest/userguide/discovery-api-queries.html#DescribeConfigurations">Using the DescribeConfigurations Action</a> in the <i>Amazon Web Services Application
|
|
232
|
-
* Discovery Service User Guide</i>.</p>
|
|
233
|
-
* </note>
|
|
72
|
+
* @see {@link DescribeConfigurationsCommand}
|
|
234
73
|
*/
|
|
235
74
|
describeConfigurations(args: DescribeConfigurationsCommandInput, options?: __HttpHandlerOptions): Promise<DescribeConfigurationsCommandOutput>;
|
|
236
75
|
describeConfigurations(args: DescribeConfigurationsCommandInput, cb: (err: any, data?: DescribeConfigurationsCommandOutput) => void): void;
|
|
237
76
|
describeConfigurations(args: DescribeConfigurationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeConfigurationsCommandOutput) => void): void;
|
|
238
77
|
/**
|
|
239
|
-
* @
|
|
240
|
-
* <p>Lists exports as specified by ID. All continuous exports associated with your user
|
|
241
|
-
* account can be listed if you call <code>DescribeContinuousExports</code> as is without passing
|
|
242
|
-
* any parameters.</p>
|
|
78
|
+
* @see {@link DescribeContinuousExportsCommand}
|
|
243
79
|
*/
|
|
244
80
|
describeContinuousExports(args: DescribeContinuousExportsCommandInput, options?: __HttpHandlerOptions): Promise<DescribeContinuousExportsCommandOutput>;
|
|
245
81
|
describeContinuousExports(args: DescribeContinuousExportsCommandInput, cb: (err: any, data?: DescribeContinuousExportsCommandOutput) => void): void;
|
|
246
82
|
describeContinuousExports(args: DescribeContinuousExportsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeContinuousExportsCommandOutput) => void): void;
|
|
247
83
|
/**
|
|
248
|
-
* @
|
|
249
|
-
* @deprecated
|
|
250
|
-
*
|
|
251
|
-
* <p>
|
|
252
|
-
* <code>DescribeExportConfigurations</code> is deprecated. Use <a href="https://docs.aws.amazon.com/application-discovery/latest/APIReference/API_DescribeExportTasks.html">DescribeExportTasks</a>, instead.</p>
|
|
84
|
+
* @see {@link DescribeExportConfigurationsCommand}
|
|
253
85
|
*/
|
|
254
86
|
describeExportConfigurations(args: DescribeExportConfigurationsCommandInput, options?: __HttpHandlerOptions): Promise<DescribeExportConfigurationsCommandOutput>;
|
|
255
87
|
describeExportConfigurations(args: DescribeExportConfigurationsCommandInput, cb: (err: any, data?: DescribeExportConfigurationsCommandOutput) => void): void;
|
|
256
88
|
describeExportConfigurations(args: DescribeExportConfigurationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeExportConfigurationsCommandOutput) => void): void;
|
|
257
89
|
/**
|
|
258
|
-
* @
|
|
259
|
-
* <p>Retrieve status of one or more export tasks. You can retrieve the status of up to 100
|
|
260
|
-
* export tasks.</p>
|
|
90
|
+
* @see {@link DescribeExportTasksCommand}
|
|
261
91
|
*/
|
|
262
92
|
describeExportTasks(args: DescribeExportTasksCommandInput, options?: __HttpHandlerOptions): Promise<DescribeExportTasksCommandOutput>;
|
|
263
93
|
describeExportTasks(args: DescribeExportTasksCommandInput, cb: (err: any, data?: DescribeExportTasksCommandOutput) => void): void;
|
|
264
94
|
describeExportTasks(args: DescribeExportTasksCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeExportTasksCommandOutput) => void): void;
|
|
265
95
|
/**
|
|
266
|
-
* @
|
|
267
|
-
* <p>Returns an array of import tasks for your account, including status information, times,
|
|
268
|
-
* IDs, the Amazon S3 Object URL for the import file, and more.</p>
|
|
96
|
+
* @see {@link DescribeImportTasksCommand}
|
|
269
97
|
*/
|
|
270
98
|
describeImportTasks(args: DescribeImportTasksCommandInput, options?: __HttpHandlerOptions): Promise<DescribeImportTasksCommandOutput>;
|
|
271
99
|
describeImportTasks(args: DescribeImportTasksCommandInput, cb: (err: any, data?: DescribeImportTasksCommandOutput) => void): void;
|
|
272
100
|
describeImportTasks(args: DescribeImportTasksCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeImportTasksCommandOutput) => void): void;
|
|
273
101
|
/**
|
|
274
|
-
* @
|
|
275
|
-
* <p>Retrieves a list of configuration items that have tags as specified by the key-value
|
|
276
|
-
* pairs, name and value, passed to the optional parameter <code>filters</code>.</p>
|
|
277
|
-
* <p>There are three valid tag filter names:</p>
|
|
278
|
-
* <ul>
|
|
279
|
-
* <li>
|
|
280
|
-
* <p>tagKey</p>
|
|
281
|
-
* </li>
|
|
282
|
-
* <li>
|
|
283
|
-
* <p>tagValue</p>
|
|
284
|
-
* </li>
|
|
285
|
-
* <li>
|
|
286
|
-
* <p>configurationId</p>
|
|
287
|
-
* </li>
|
|
288
|
-
* </ul>
|
|
289
|
-
* <p>Also, all configuration items associated with your user account that have tags can be
|
|
290
|
-
* listed if you call <code>DescribeTags</code> as is without passing any parameters.</p>
|
|
102
|
+
* @see {@link DescribeTagsCommand}
|
|
291
103
|
*/
|
|
292
104
|
describeTags(args: DescribeTagsCommandInput, options?: __HttpHandlerOptions): Promise<DescribeTagsCommandOutput>;
|
|
293
105
|
describeTags(args: DescribeTagsCommandInput, cb: (err: any, data?: DescribeTagsCommandOutput) => void): void;
|
|
294
106
|
describeTags(args: DescribeTagsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeTagsCommandOutput) => void): void;
|
|
295
107
|
/**
|
|
296
|
-
* @
|
|
297
|
-
* <p>Disassociates one or more configuration items from an application.</p>
|
|
108
|
+
* @see {@link DisassociateConfigurationItemsFromApplicationCommand}
|
|
298
109
|
*/
|
|
299
110
|
disassociateConfigurationItemsFromApplication(args: DisassociateConfigurationItemsFromApplicationCommandInput, options?: __HttpHandlerOptions): Promise<DisassociateConfigurationItemsFromApplicationCommandOutput>;
|
|
300
111
|
disassociateConfigurationItemsFromApplication(args: DisassociateConfigurationItemsFromApplicationCommandInput, cb: (err: any, data?: DisassociateConfigurationItemsFromApplicationCommandOutput) => void): void;
|
|
301
112
|
disassociateConfigurationItemsFromApplication(args: DisassociateConfigurationItemsFromApplicationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DisassociateConfigurationItemsFromApplicationCommandOutput) => void): void;
|
|
302
113
|
/**
|
|
303
|
-
* @
|
|
304
|
-
* @deprecated
|
|
305
|
-
*
|
|
306
|
-
* <p>Deprecated. Use <code>StartExportTask</code> instead.</p>
|
|
307
|
-
* <p>Exports all discovered configuration data to an Amazon S3 bucket or an application that
|
|
308
|
-
* enables you to view and evaluate the data. Data includes tags and tag associations, processes,
|
|
309
|
-
* connections, servers, and system performance. This API returns an export ID that you can query
|
|
310
|
-
* using the <i>DescribeExportConfigurations</i> API. The system imposes a limit of
|
|
311
|
-
* two configuration exports in six hours.</p>
|
|
114
|
+
* @see {@link ExportConfigurationsCommand}
|
|
312
115
|
*/
|
|
313
116
|
exportConfigurations(args: ExportConfigurationsCommandInput, options?: __HttpHandlerOptions): Promise<ExportConfigurationsCommandOutput>;
|
|
314
117
|
exportConfigurations(args: ExportConfigurationsCommandInput, cb: (err: any, data?: ExportConfigurationsCommandOutput) => void): void;
|
|
315
118
|
exportConfigurations(args: ExportConfigurationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ExportConfigurationsCommandOutput) => void): void;
|
|
316
119
|
/**
|
|
317
|
-
* @
|
|
318
|
-
* <p>Retrieves a short summary of discovered assets.</p>
|
|
319
|
-
* <p>This API operation takes no request parameters and is called as is at the command
|
|
320
|
-
* prompt as shown in the example.</p>
|
|
120
|
+
* @see {@link GetDiscoverySummaryCommand}
|
|
321
121
|
*/
|
|
322
122
|
getDiscoverySummary(args: GetDiscoverySummaryCommandInput, options?: __HttpHandlerOptions): Promise<GetDiscoverySummaryCommandOutput>;
|
|
323
123
|
getDiscoverySummary(args: GetDiscoverySummaryCommandInput, cb: (err: any, data?: GetDiscoverySummaryCommandOutput) => void): void;
|
|
324
124
|
getDiscoverySummary(args: GetDiscoverySummaryCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetDiscoverySummaryCommandOutput) => void): void;
|
|
325
125
|
/**
|
|
326
|
-
* @
|
|
327
|
-
* <p>Retrieves a list of configuration items as specified by the value passed to the
|
|
328
|
-
* required parameter <code>configurationType</code>. Optional filtering may be applied to refine
|
|
329
|
-
* search results.</p>
|
|
126
|
+
* @see {@link ListConfigurationsCommand}
|
|
330
127
|
*/
|
|
331
128
|
listConfigurations(args: ListConfigurationsCommandInput, options?: __HttpHandlerOptions): Promise<ListConfigurationsCommandOutput>;
|
|
332
129
|
listConfigurations(args: ListConfigurationsCommandInput, cb: (err: any, data?: ListConfigurationsCommandOutput) => void): void;
|
|
333
130
|
listConfigurations(args: ListConfigurationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListConfigurationsCommandOutput) => void): void;
|
|
334
131
|
/**
|
|
335
|
-
* @
|
|
336
|
-
* <p>Retrieves a list of servers that are one network hop away from a specified
|
|
337
|
-
* server.</p>
|
|
132
|
+
* @see {@link ListServerNeighborsCommand}
|
|
338
133
|
*/
|
|
339
134
|
listServerNeighbors(args: ListServerNeighborsCommandInput, options?: __HttpHandlerOptions): Promise<ListServerNeighborsCommandOutput>;
|
|
340
135
|
listServerNeighbors(args: ListServerNeighborsCommandInput, cb: (err: any, data?: ListServerNeighborsCommandOutput) => void): void;
|
|
341
136
|
listServerNeighbors(args: ListServerNeighborsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListServerNeighborsCommandOutput) => void): void;
|
|
342
137
|
/**
|
|
343
|
-
* @
|
|
344
|
-
* <p>Start the continuous flow of agent's discovered data into Amazon Athena.</p>
|
|
138
|
+
* @see {@link StartContinuousExportCommand}
|
|
345
139
|
*/
|
|
346
140
|
startContinuousExport(args: StartContinuousExportCommandInput, options?: __HttpHandlerOptions): Promise<StartContinuousExportCommandOutput>;
|
|
347
141
|
startContinuousExport(args: StartContinuousExportCommandInput, cb: (err: any, data?: StartContinuousExportCommandOutput) => void): void;
|
|
348
142
|
startContinuousExport(args: StartContinuousExportCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StartContinuousExportCommandOutput) => void): void;
|
|
349
143
|
/**
|
|
350
|
-
* @
|
|
351
|
-
* <p>Instructs the specified agents or connectors to start collecting data.</p>
|
|
144
|
+
* @see {@link StartDataCollectionByAgentIdsCommand}
|
|
352
145
|
*/
|
|
353
146
|
startDataCollectionByAgentIds(args: StartDataCollectionByAgentIdsCommandInput, options?: __HttpHandlerOptions): Promise<StartDataCollectionByAgentIdsCommandOutput>;
|
|
354
147
|
startDataCollectionByAgentIds(args: StartDataCollectionByAgentIdsCommandInput, cb: (err: any, data?: StartDataCollectionByAgentIdsCommandOutput) => void): void;
|
|
355
148
|
startDataCollectionByAgentIds(args: StartDataCollectionByAgentIdsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StartDataCollectionByAgentIdsCommandOutput) => void): void;
|
|
356
149
|
/**
|
|
357
|
-
* @
|
|
358
|
-
* <p> Begins the export of discovered data to an S3 bucket.</p>
|
|
359
|
-
* <p> If you specify <code>agentIds</code> in a filter, the task exports up to 72 hours of
|
|
360
|
-
* detailed data collected by the identified Application Discovery Agent, including network,
|
|
361
|
-
* process, and performance details. A time range for exported agent data may be set by using
|
|
362
|
-
* <code>startTime</code> and <code>endTime</code>. Export of detailed agent data is limited to
|
|
363
|
-
* five concurrently running exports. </p>
|
|
364
|
-
* <p> If you do not include an <code>agentIds</code> filter, summary data is exported that
|
|
365
|
-
* includes both Amazon Web Services Agentless Discovery Connector data and summary data from Amazon Web Services Discovery
|
|
366
|
-
* Agents. Export of summary data is limited to two exports per day. </p>
|
|
150
|
+
* @see {@link StartExportTaskCommand}
|
|
367
151
|
*/
|
|
368
152
|
startExportTask(args: StartExportTaskCommandInput, options?: __HttpHandlerOptions): Promise<StartExportTaskCommandOutput>;
|
|
369
153
|
startExportTask(args: StartExportTaskCommandInput, cb: (err: any, data?: StartExportTaskCommandOutput) => void): void;
|
|
370
154
|
startExportTask(args: StartExportTaskCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StartExportTaskCommandOutput) => void): void;
|
|
371
155
|
/**
|
|
372
|
-
* @
|
|
373
|
-
* <p>Starts an import task, which allows you to import details of your on-premises environment
|
|
374
|
-
* directly into Amazon Web Services Migration Hub without having to use the Application Discovery Service (ADS)
|
|
375
|
-
* tools such as the Discovery Connector or Discovery Agent. This gives you the option to perform
|
|
376
|
-
* migration assessment and planning directly from your imported data, including the ability to
|
|
377
|
-
* group your devices as applications and track their migration status.</p>
|
|
378
|
-
* <p>To start an import request, do this:</p>
|
|
379
|
-
* <ol>
|
|
380
|
-
* <li>
|
|
381
|
-
* <p>Download the specially formatted comma separated value (CSV) import template, which
|
|
382
|
-
* you can find here: <a href="https://s3.us-west-2.amazonaws.com/templates-7cffcf56-bd96-4b1c-b45b-a5b42f282e46/import_template.csv">https://s3.us-west-2.amazonaws.com/templates-7cffcf56-bd96-4b1c-b45b-a5b42f282e46/import_template.csv</a>.</p>
|
|
383
|
-
* </li>
|
|
384
|
-
* <li>
|
|
385
|
-
* <p>Fill out the template with your server and application data.</p>
|
|
386
|
-
* </li>
|
|
387
|
-
* <li>
|
|
388
|
-
* <p>Upload your import file to an Amazon S3 bucket, and make a note of it's Object URL.
|
|
389
|
-
* Your import file must be in the CSV format.</p>
|
|
390
|
-
* </li>
|
|
391
|
-
* <li>
|
|
392
|
-
* <p>Use the console or the <code>StartImportTask</code> command with the Amazon Web Services CLI or one of
|
|
393
|
-
* the Amazon Web Services SDKs to import the records from your file.</p>
|
|
394
|
-
* </li>
|
|
395
|
-
* </ol>
|
|
396
|
-
* <p>For more information, including step-by-step procedures, see <a href="https://docs.aws.amazon.com/application-discovery/latest/userguide/discovery-import.html">Migration Hub
|
|
397
|
-
* Import</a> in the <i>Amazon Web Services Application Discovery Service User
|
|
398
|
-
* Guide</i>.</p>
|
|
399
|
-
* <note>
|
|
400
|
-
* <p>There are limits to the number of import tasks you can create (and delete) in an Amazon Web Services
|
|
401
|
-
* account. For more information, see <a href="https://docs.aws.amazon.com/application-discovery/latest/userguide/ads_service_limits.html">Amazon Web Services Application
|
|
402
|
-
* Discovery Service Limits</a> in the <i>Amazon Web Services Application Discovery Service User
|
|
403
|
-
* Guide</i>.</p>
|
|
404
|
-
* </note>
|
|
156
|
+
* @see {@link StartImportTaskCommand}
|
|
405
157
|
*/
|
|
406
158
|
startImportTask(args: StartImportTaskCommandInput, options?: __HttpHandlerOptions): Promise<StartImportTaskCommandOutput>;
|
|
407
159
|
startImportTask(args: StartImportTaskCommandInput, cb: (err: any, data?: StartImportTaskCommandOutput) => void): void;
|
|
408
160
|
startImportTask(args: StartImportTaskCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StartImportTaskCommandOutput) => void): void;
|
|
409
161
|
/**
|
|
410
|
-
* @
|
|
411
|
-
* <p>Stop the continuous flow of agent's discovered data into Amazon Athena.</p>
|
|
162
|
+
* @see {@link StopContinuousExportCommand}
|
|
412
163
|
*/
|
|
413
164
|
stopContinuousExport(args: StopContinuousExportCommandInput, options?: __HttpHandlerOptions): Promise<StopContinuousExportCommandOutput>;
|
|
414
165
|
stopContinuousExport(args: StopContinuousExportCommandInput, cb: (err: any, data?: StopContinuousExportCommandOutput) => void): void;
|
|
415
166
|
stopContinuousExport(args: StopContinuousExportCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StopContinuousExportCommandOutput) => void): void;
|
|
416
167
|
/**
|
|
417
|
-
* @
|
|
418
|
-
* <p>Instructs the specified agents or connectors to stop collecting data.</p>
|
|
168
|
+
* @see {@link StopDataCollectionByAgentIdsCommand}
|
|
419
169
|
*/
|
|
420
170
|
stopDataCollectionByAgentIds(args: StopDataCollectionByAgentIdsCommandInput, options?: __HttpHandlerOptions): Promise<StopDataCollectionByAgentIdsCommandOutput>;
|
|
421
171
|
stopDataCollectionByAgentIds(args: StopDataCollectionByAgentIdsCommandInput, cb: (err: any, data?: StopDataCollectionByAgentIdsCommandOutput) => void): void;
|
|
422
172
|
stopDataCollectionByAgentIds(args: StopDataCollectionByAgentIdsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StopDataCollectionByAgentIdsCommandOutput) => void): void;
|
|
423
173
|
/**
|
|
424
|
-
* @
|
|
425
|
-
* <p>Updates metadata about an application.</p>
|
|
174
|
+
* @see {@link UpdateApplicationCommand}
|
|
426
175
|
*/
|
|
427
176
|
updateApplication(args: UpdateApplicationCommandInput, options?: __HttpHandlerOptions): Promise<UpdateApplicationCommandOutput>;
|
|
428
177
|
updateApplication(args: UpdateApplicationCommandInput, cb: (err: any, data?: UpdateApplicationCommandOutput) => void): void;
|
|
429
178
|
updateApplication(args: UpdateApplicationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateApplicationCommandOutput) => void): void;
|
|
430
179
|
}
|
|
180
|
+
/**
|
|
181
|
+
* @public
|
|
182
|
+
* <fullname>Amazon Web Services Application Discovery Service</fullname>
|
|
183
|
+
* <p>Amazon Web Services Application Discovery Service helps you plan application migration projects. It
|
|
184
|
+
* automatically identifies servers, virtual machines (VMs), and network dependencies in your
|
|
185
|
+
* on-premises data centers. For more information, see the <a href="http://aws.amazon.com/application-discovery/faqs/">Amazon Web Services Application Discovery Service FAQ</a>.
|
|
186
|
+
* Application Discovery Service offers three ways of performing discovery and
|
|
187
|
+
* collecting data about your on-premises servers:</p>
|
|
188
|
+
* <ul>
|
|
189
|
+
* <li>
|
|
190
|
+
* <p>
|
|
191
|
+
* <b>Agentless discovery</b> is recommended for environments
|
|
192
|
+
* that use VMware vCenter Server. This mode doesn't require you to install an agent on each
|
|
193
|
+
* host. It does not work in non-VMware environments.</p>
|
|
194
|
+
* <ul>
|
|
195
|
+
* <li>
|
|
196
|
+
* <p>Agentless discovery gathers server information regardless of the operating
|
|
197
|
+
* systems, which minimizes the time required for initial on-premises infrastructure
|
|
198
|
+
* assessment.</p>
|
|
199
|
+
* </li>
|
|
200
|
+
* <li>
|
|
201
|
+
* <p>Agentless discovery doesn't collect information about network dependencies, only
|
|
202
|
+
* agent-based discovery collects that information.</p>
|
|
203
|
+
* </li>
|
|
204
|
+
* </ul>
|
|
205
|
+
* </li>
|
|
206
|
+
* </ul>
|
|
207
|
+
* <ul>
|
|
208
|
+
* <li>
|
|
209
|
+
* <p>
|
|
210
|
+
* <b>Agent-based discovery</b> collects a richer set of data
|
|
211
|
+
* than agentless discovery by using the Amazon Web Services Application Discovery Agent, which you install
|
|
212
|
+
* on one or more hosts in your data center.</p>
|
|
213
|
+
* <ul>
|
|
214
|
+
* <li>
|
|
215
|
+
* <p> The agent captures infrastructure and application information, including an
|
|
216
|
+
* inventory of running processes, system performance information, resource utilization,
|
|
217
|
+
* and network dependencies.</p>
|
|
218
|
+
* </li>
|
|
219
|
+
* <li>
|
|
220
|
+
* <p>The information collected by agents is secured at rest and in transit to the
|
|
221
|
+
* Application Discovery Service database in the cloud. </p>
|
|
222
|
+
* </li>
|
|
223
|
+
* </ul>
|
|
224
|
+
* </li>
|
|
225
|
+
* </ul>
|
|
226
|
+
* <ul>
|
|
227
|
+
* <li>
|
|
228
|
+
* <p>
|
|
229
|
+
* <b>Amazon Web Services Partner Network (APN) solutions</b> integrate with
|
|
230
|
+
* Application Discovery Service, enabling you to import details of your on-premises
|
|
231
|
+
* environment directly into Migration Hub without using the discovery connector or discovery
|
|
232
|
+
* agent.</p>
|
|
233
|
+
* <ul>
|
|
234
|
+
* <li>
|
|
235
|
+
* <p>Third-party application discovery tools can query Amazon Web Services Application Discovery
|
|
236
|
+
* Service, and they can write to the Application Discovery Service database using the
|
|
237
|
+
* public API.</p>
|
|
238
|
+
* </li>
|
|
239
|
+
* <li>
|
|
240
|
+
* <p>In this way, you can import data into Migration Hub and view it, so that you can
|
|
241
|
+
* associate applications with servers and track migrations.</p>
|
|
242
|
+
* </li>
|
|
243
|
+
* </ul>
|
|
244
|
+
* </li>
|
|
245
|
+
* </ul>
|
|
246
|
+
* <p>
|
|
247
|
+
* <b>Recommendations</b>
|
|
248
|
+
* </p>
|
|
249
|
+
* <p>We recommend that you use agent-based discovery for non-VMware environments, and
|
|
250
|
+
* whenever you want to collect information about network dependencies. You can run agent-based
|
|
251
|
+
* and agentless discovery simultaneously. Use agentless discovery to complete the initial
|
|
252
|
+
* infrastructure assessment quickly, and then install agents on select hosts to collect
|
|
253
|
+
* additional information.</p>
|
|
254
|
+
* <p>
|
|
255
|
+
* <b>Working With This Guide</b>
|
|
256
|
+
* </p>
|
|
257
|
+
* <p>This API reference provides descriptions, syntax, and usage examples for each of the
|
|
258
|
+
* actions and data types for Application Discovery Service. The topic for each action shows the
|
|
259
|
+
* API request parameters and the response. Alternatively, you can use one of the Amazon Web Services SDKs to
|
|
260
|
+
* access an API that is tailored to the programming language or platform that you're using. For
|
|
261
|
+
* more information, see <a href="http://aws.amazon.com/tools/#SDKs">Amazon Web Services
|
|
262
|
+
* SDKs</a>.</p>
|
|
263
|
+
* <note>
|
|
264
|
+
* <ul>
|
|
265
|
+
* <li>
|
|
266
|
+
* <p>Remember that you must set your Migration Hub home region before you call any of
|
|
267
|
+
* these APIs.</p>
|
|
268
|
+
* </li>
|
|
269
|
+
* <li>
|
|
270
|
+
* <p>You must make API calls for write actions (create, notify, associate, disassociate,
|
|
271
|
+
* import, or put) while in your home region, or a <code>HomeRegionNotSetException</code>
|
|
272
|
+
* error is returned.</p>
|
|
273
|
+
* </li>
|
|
274
|
+
* <li>
|
|
275
|
+
* <p>API calls for read actions (list, describe, stop, and delete) are permitted outside
|
|
276
|
+
* of your home region.</p>
|
|
277
|
+
* </li>
|
|
278
|
+
* <li>
|
|
279
|
+
* <p>Although it is unlikely, the Migration Hub home region could change. If you call
|
|
280
|
+
* APIs outside the home region, an <code>InvalidInputException</code> is returned.</p>
|
|
281
|
+
* </li>
|
|
282
|
+
* <li>
|
|
283
|
+
* <p>You must call <code>GetHomeRegion</code> to obtain the latest Migration Hub home
|
|
284
|
+
* region.</p>
|
|
285
|
+
* </li>
|
|
286
|
+
* </ul>
|
|
287
|
+
* </note>
|
|
288
|
+
* <p>This guide is intended for use with the <a href="http://docs.aws.amazon.com/application-discovery/latest/userguide/">Amazon Web Services Application
|
|
289
|
+
* Discovery Service User Guide</a>.</p>
|
|
290
|
+
* <important>
|
|
291
|
+
* <p>All data is handled according to the <a href="http://aws.amazon.com/privacy/">Amazon Web Services
|
|
292
|
+
* Privacy Policy</a>. You can operate Application Discovery Service offline to inspect
|
|
293
|
+
* collected data before it is shared with the service.</p>
|
|
294
|
+
* </important>
|
|
295
|
+
*/
|
|
296
|
+
export declare class ApplicationDiscoveryService extends ApplicationDiscoveryServiceClient implements ApplicationDiscoveryService {
|
|
297
|
+
}
|
|
@@ -100,7 +100,7 @@ import {
|
|
|
100
100
|
UpdateApplicationCommandInput,
|
|
101
101
|
UpdateApplicationCommandOutput,
|
|
102
102
|
} from "./commands/UpdateApplicationCommand";
|
|
103
|
-
export
|
|
103
|
+
export interface ApplicationDiscoveryService {
|
|
104
104
|
associateConfigurationItemsToApplication(
|
|
105
105
|
args: AssociateConfigurationItemsToApplicationCommandInput,
|
|
106
106
|
options?: __HttpHandlerOptions
|
|
@@ -439,3 +439,6 @@ export declare class ApplicationDiscoveryService extends ApplicationDiscoverySer
|
|
|
439
439
|
cb: (err: any, data?: UpdateApplicationCommandOutput) => void
|
|
440
440
|
): void;
|
|
441
441
|
}
|
|
442
|
+
export declare class ApplicationDiscoveryService
|
|
443
|
+
extends ApplicationDiscoveryServiceClient
|
|
444
|
+
implements ApplicationDiscoveryService {}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-application-discovery-service",
|
|
3
3
|
"description": "AWS SDK for JavaScript Application Discovery Service Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.319.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -21,9 +21,9 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.319.0",
|
|
25
25
|
"@aws-sdk/config-resolver": "3.310.0",
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.319.0",
|
|
27
27
|
"@aws-sdk/fetch-http-handler": "3.310.0",
|
|
28
28
|
"@aws-sdk/hash-node": "3.310.0",
|
|
29
29
|
"@aws-sdk/invalid-dependency": "3.310.0",
|
|
@@ -36,19 +36,19 @@
|
|
|
36
36
|
"@aws-sdk/middleware-serde": "3.310.0",
|
|
37
37
|
"@aws-sdk/middleware-signing": "3.310.0",
|
|
38
38
|
"@aws-sdk/middleware-stack": "3.310.0",
|
|
39
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
39
|
+
"@aws-sdk/middleware-user-agent": "3.319.0",
|
|
40
40
|
"@aws-sdk/node-config-provider": "3.310.0",
|
|
41
41
|
"@aws-sdk/node-http-handler": "3.310.0",
|
|
42
42
|
"@aws-sdk/protocol-http": "3.310.0",
|
|
43
|
-
"@aws-sdk/smithy-client": "3.
|
|
43
|
+
"@aws-sdk/smithy-client": "3.316.0",
|
|
44
44
|
"@aws-sdk/types": "3.310.0",
|
|
45
45
|
"@aws-sdk/url-parser": "3.310.0",
|
|
46
46
|
"@aws-sdk/util-base64": "3.310.0",
|
|
47
47
|
"@aws-sdk/util-body-length-browser": "3.310.0",
|
|
48
48
|
"@aws-sdk/util-body-length-node": "3.310.0",
|
|
49
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
50
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
51
|
-
"@aws-sdk/util-endpoints": "3.
|
|
49
|
+
"@aws-sdk/util-defaults-mode-browser": "3.316.0",
|
|
50
|
+
"@aws-sdk/util-defaults-mode-node": "3.316.0",
|
|
51
|
+
"@aws-sdk/util-endpoints": "3.319.0",
|
|
52
52
|
"@aws-sdk/util-retry": "3.310.0",
|
|
53
53
|
"@aws-sdk/util-user-agent-browser": "3.310.0",
|
|
54
54
|
"@aws-sdk/util-user-agent-node": "3.310.0",
|