@aws-sdk/client-application-discovery-service 3.295.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 +29 -29
|
@@ -26,6 +26,7 @@ import { StopContinuousExportCommandInput, StopContinuousExportCommandOutput } f
|
|
|
26
26
|
import { StopDataCollectionByAgentIdsCommandInput, StopDataCollectionByAgentIdsCommandOutput } from "./commands/StopDataCollectionByAgentIdsCommand";
|
|
27
27
|
import { UpdateApplicationCommandInput, UpdateApplicationCommandOutput } from "./commands/UpdateApplicationCommand";
|
|
28
28
|
/**
|
|
29
|
+
* @public
|
|
29
30
|
* <fullname>Amazon Web Services Application Discovery Service</fullname>
|
|
30
31
|
* <p>Amazon Web Services Application Discovery Service helps you plan application migration projects. It
|
|
31
32
|
* automatically identifies servers, virtual machines (VMs), and network dependencies in your
|
|
@@ -142,12 +143,14 @@ import { UpdateApplicationCommandInput, UpdateApplicationCommandOutput } from ".
|
|
|
142
143
|
*/
|
|
143
144
|
export declare class ApplicationDiscoveryService extends ApplicationDiscoveryServiceClient {
|
|
144
145
|
/**
|
|
146
|
+
* @public
|
|
145
147
|
* <p>Associates one or more configuration items with an application.</p>
|
|
146
148
|
*/
|
|
147
149
|
associateConfigurationItemsToApplication(args: AssociateConfigurationItemsToApplicationCommandInput, options?: __HttpHandlerOptions): Promise<AssociateConfigurationItemsToApplicationCommandOutput>;
|
|
148
150
|
associateConfigurationItemsToApplication(args: AssociateConfigurationItemsToApplicationCommandInput, cb: (err: any, data?: AssociateConfigurationItemsToApplicationCommandOutput) => void): void;
|
|
149
151
|
associateConfigurationItemsToApplication(args: AssociateConfigurationItemsToApplicationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AssociateConfigurationItemsToApplicationCommandOutput) => void): void;
|
|
150
152
|
/**
|
|
153
|
+
* @public
|
|
151
154
|
* <p>Deletes one or more import tasks, each identified by their import ID. Each import task has
|
|
152
155
|
* a number of records that can identify servers or applications. </p>
|
|
153
156
|
* <p>Amazon Web Services Application Discovery Service has built-in matching logic that will identify when
|
|
@@ -160,12 +163,14 @@ export declare class ApplicationDiscoveryService extends ApplicationDiscoverySer
|
|
|
160
163
|
batchDeleteImportData(args: BatchDeleteImportDataCommandInput, cb: (err: any, data?: BatchDeleteImportDataCommandOutput) => void): void;
|
|
161
164
|
batchDeleteImportData(args: BatchDeleteImportDataCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: BatchDeleteImportDataCommandOutput) => void): void;
|
|
162
165
|
/**
|
|
166
|
+
* @public
|
|
163
167
|
* <p>Creates an application with the given name and description.</p>
|
|
164
168
|
*/
|
|
165
169
|
createApplication(args: CreateApplicationCommandInput, options?: __HttpHandlerOptions): Promise<CreateApplicationCommandOutput>;
|
|
166
170
|
createApplication(args: CreateApplicationCommandInput, cb: (err: any, data?: CreateApplicationCommandOutput) => void): void;
|
|
167
171
|
createApplication(args: CreateApplicationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateApplicationCommandOutput) => void): void;
|
|
168
172
|
/**
|
|
173
|
+
* @public
|
|
169
174
|
* <p>Creates one or more tags for configuration items. Tags are metadata that help you
|
|
170
175
|
* categorize IT assets. This API accepts a list of multiple configuration items.</p>
|
|
171
176
|
* <important>
|
|
@@ -176,6 +181,7 @@ export declare class ApplicationDiscoveryService extends ApplicationDiscoverySer
|
|
|
176
181
|
createTags(args: CreateTagsCommandInput, cb: (err: any, data?: CreateTagsCommandOutput) => void): void;
|
|
177
182
|
createTags(args: CreateTagsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateTagsCommandOutput) => void): void;
|
|
178
183
|
/**
|
|
184
|
+
* @public
|
|
179
185
|
* <p>Deletes a list of applications and their associations with configuration
|
|
180
186
|
* items.</p>
|
|
181
187
|
*/
|
|
@@ -183,6 +189,7 @@ export declare class ApplicationDiscoveryService extends ApplicationDiscoverySer
|
|
|
183
189
|
deleteApplications(args: DeleteApplicationsCommandInput, cb: (err: any, data?: DeleteApplicationsCommandOutput) => void): void;
|
|
184
190
|
deleteApplications(args: DeleteApplicationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteApplicationsCommandOutput) => void): void;
|
|
185
191
|
/**
|
|
192
|
+
* @public
|
|
186
193
|
* <p>Deletes the association between configuration items and one or more tags. This API
|
|
187
194
|
* accepts a list of multiple configuration items.</p>
|
|
188
195
|
*/
|
|
@@ -190,6 +197,7 @@ export declare class ApplicationDiscoveryService extends ApplicationDiscoverySer
|
|
|
190
197
|
deleteTags(args: DeleteTagsCommandInput, cb: (err: any, data?: DeleteTagsCommandOutput) => void): void;
|
|
191
198
|
deleteTags(args: DeleteTagsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteTagsCommandOutput) => void): void;
|
|
192
199
|
/**
|
|
200
|
+
* @public
|
|
193
201
|
* <p>Lists agents or connectors as specified by ID or other filters. All agents/connectors
|
|
194
202
|
* associated with your user account can be listed if you call <code>DescribeAgents</code> as is
|
|
195
203
|
* without passing any parameters.</p>
|
|
@@ -198,6 +206,7 @@ export declare class ApplicationDiscoveryService extends ApplicationDiscoverySer
|
|
|
198
206
|
describeAgents(args: DescribeAgentsCommandInput, cb: (err: any, data?: DescribeAgentsCommandOutput) => void): void;
|
|
199
207
|
describeAgents(args: DescribeAgentsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeAgentsCommandOutput) => void): void;
|
|
200
208
|
/**
|
|
209
|
+
* @public
|
|
201
210
|
* <p>Retrieves attributes for a list of configuration item IDs.</p>
|
|
202
211
|
* <note>
|
|
203
212
|
* <p>All of the supplied IDs must be for the same asset type from one of the
|
|
@@ -227,6 +236,7 @@ export declare class ApplicationDiscoveryService extends ApplicationDiscoverySer
|
|
|
227
236
|
describeConfigurations(args: DescribeConfigurationsCommandInput, cb: (err: any, data?: DescribeConfigurationsCommandOutput) => void): void;
|
|
228
237
|
describeConfigurations(args: DescribeConfigurationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeConfigurationsCommandOutput) => void): void;
|
|
229
238
|
/**
|
|
239
|
+
* @public
|
|
230
240
|
* <p>Lists exports as specified by ID. All continuous exports associated with your user
|
|
231
241
|
* account can be listed if you call <code>DescribeContinuousExports</code> as is without passing
|
|
232
242
|
* any parameters.</p>
|
|
@@ -235,6 +245,7 @@ export declare class ApplicationDiscoveryService extends ApplicationDiscoverySer
|
|
|
235
245
|
describeContinuousExports(args: DescribeContinuousExportsCommandInput, cb: (err: any, data?: DescribeContinuousExportsCommandOutput) => void): void;
|
|
236
246
|
describeContinuousExports(args: DescribeContinuousExportsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeContinuousExportsCommandOutput) => void): void;
|
|
237
247
|
/**
|
|
248
|
+
* @public
|
|
238
249
|
* @deprecated
|
|
239
250
|
*
|
|
240
251
|
* <p>
|
|
@@ -244,6 +255,7 @@ export declare class ApplicationDiscoveryService extends ApplicationDiscoverySer
|
|
|
244
255
|
describeExportConfigurations(args: DescribeExportConfigurationsCommandInput, cb: (err: any, data?: DescribeExportConfigurationsCommandOutput) => void): void;
|
|
245
256
|
describeExportConfigurations(args: DescribeExportConfigurationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeExportConfigurationsCommandOutput) => void): void;
|
|
246
257
|
/**
|
|
258
|
+
* @public
|
|
247
259
|
* <p>Retrieve status of one or more export tasks. You can retrieve the status of up to 100
|
|
248
260
|
* export tasks.</p>
|
|
249
261
|
*/
|
|
@@ -251,6 +263,7 @@ export declare class ApplicationDiscoveryService extends ApplicationDiscoverySer
|
|
|
251
263
|
describeExportTasks(args: DescribeExportTasksCommandInput, cb: (err: any, data?: DescribeExportTasksCommandOutput) => void): void;
|
|
252
264
|
describeExportTasks(args: DescribeExportTasksCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeExportTasksCommandOutput) => void): void;
|
|
253
265
|
/**
|
|
266
|
+
* @public
|
|
254
267
|
* <p>Returns an array of import tasks for your account, including status information, times,
|
|
255
268
|
* IDs, the Amazon S3 Object URL for the import file, and more.</p>
|
|
256
269
|
*/
|
|
@@ -258,6 +271,7 @@ export declare class ApplicationDiscoveryService extends ApplicationDiscoverySer
|
|
|
258
271
|
describeImportTasks(args: DescribeImportTasksCommandInput, cb: (err: any, data?: DescribeImportTasksCommandOutput) => void): void;
|
|
259
272
|
describeImportTasks(args: DescribeImportTasksCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeImportTasksCommandOutput) => void): void;
|
|
260
273
|
/**
|
|
274
|
+
* @public
|
|
261
275
|
* <p>Retrieves a list of configuration items that have tags as specified by the key-value
|
|
262
276
|
* pairs, name and value, passed to the optional parameter <code>filters</code>.</p>
|
|
263
277
|
* <p>There are three valid tag filter names:</p>
|
|
@@ -279,12 +293,14 @@ export declare class ApplicationDiscoveryService extends ApplicationDiscoverySer
|
|
|
279
293
|
describeTags(args: DescribeTagsCommandInput, cb: (err: any, data?: DescribeTagsCommandOutput) => void): void;
|
|
280
294
|
describeTags(args: DescribeTagsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeTagsCommandOutput) => void): void;
|
|
281
295
|
/**
|
|
296
|
+
* @public
|
|
282
297
|
* <p>Disassociates one or more configuration items from an application.</p>
|
|
283
298
|
*/
|
|
284
299
|
disassociateConfigurationItemsFromApplication(args: DisassociateConfigurationItemsFromApplicationCommandInput, options?: __HttpHandlerOptions): Promise<DisassociateConfigurationItemsFromApplicationCommandOutput>;
|
|
285
300
|
disassociateConfigurationItemsFromApplication(args: DisassociateConfigurationItemsFromApplicationCommandInput, cb: (err: any, data?: DisassociateConfigurationItemsFromApplicationCommandOutput) => void): void;
|
|
286
301
|
disassociateConfigurationItemsFromApplication(args: DisassociateConfigurationItemsFromApplicationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DisassociateConfigurationItemsFromApplicationCommandOutput) => void): void;
|
|
287
302
|
/**
|
|
303
|
+
* @public
|
|
288
304
|
* @deprecated
|
|
289
305
|
*
|
|
290
306
|
* <p>Deprecated. Use <code>StartExportTask</code> instead.</p>
|
|
@@ -298,6 +314,7 @@ export declare class ApplicationDiscoveryService extends ApplicationDiscoverySer
|
|
|
298
314
|
exportConfigurations(args: ExportConfigurationsCommandInput, cb: (err: any, data?: ExportConfigurationsCommandOutput) => void): void;
|
|
299
315
|
exportConfigurations(args: ExportConfigurationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ExportConfigurationsCommandOutput) => void): void;
|
|
300
316
|
/**
|
|
317
|
+
* @public
|
|
301
318
|
* <p>Retrieves a short summary of discovered assets.</p>
|
|
302
319
|
* <p>This API operation takes no request parameters and is called as is at the command
|
|
303
320
|
* prompt as shown in the example.</p>
|
|
@@ -306,6 +323,7 @@ export declare class ApplicationDiscoveryService extends ApplicationDiscoverySer
|
|
|
306
323
|
getDiscoverySummary(args: GetDiscoverySummaryCommandInput, cb: (err: any, data?: GetDiscoverySummaryCommandOutput) => void): void;
|
|
307
324
|
getDiscoverySummary(args: GetDiscoverySummaryCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetDiscoverySummaryCommandOutput) => void): void;
|
|
308
325
|
/**
|
|
326
|
+
* @public
|
|
309
327
|
* <p>Retrieves a list of configuration items as specified by the value passed to the
|
|
310
328
|
* required parameter <code>configurationType</code>. Optional filtering may be applied to refine
|
|
311
329
|
* search results.</p>
|
|
@@ -314,6 +332,7 @@ export declare class ApplicationDiscoveryService extends ApplicationDiscoverySer
|
|
|
314
332
|
listConfigurations(args: ListConfigurationsCommandInput, cb: (err: any, data?: ListConfigurationsCommandOutput) => void): void;
|
|
315
333
|
listConfigurations(args: ListConfigurationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListConfigurationsCommandOutput) => void): void;
|
|
316
334
|
/**
|
|
335
|
+
* @public
|
|
317
336
|
* <p>Retrieves a list of servers that are one network hop away from a specified
|
|
318
337
|
* server.</p>
|
|
319
338
|
*/
|
|
@@ -321,18 +340,21 @@ export declare class ApplicationDiscoveryService extends ApplicationDiscoverySer
|
|
|
321
340
|
listServerNeighbors(args: ListServerNeighborsCommandInput, cb: (err: any, data?: ListServerNeighborsCommandOutput) => void): void;
|
|
322
341
|
listServerNeighbors(args: ListServerNeighborsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListServerNeighborsCommandOutput) => void): void;
|
|
323
342
|
/**
|
|
343
|
+
* @public
|
|
324
344
|
* <p>Start the continuous flow of agent's discovered data into Amazon Athena.</p>
|
|
325
345
|
*/
|
|
326
346
|
startContinuousExport(args: StartContinuousExportCommandInput, options?: __HttpHandlerOptions): Promise<StartContinuousExportCommandOutput>;
|
|
327
347
|
startContinuousExport(args: StartContinuousExportCommandInput, cb: (err: any, data?: StartContinuousExportCommandOutput) => void): void;
|
|
328
348
|
startContinuousExport(args: StartContinuousExportCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StartContinuousExportCommandOutput) => void): void;
|
|
329
349
|
/**
|
|
350
|
+
* @public
|
|
330
351
|
* <p>Instructs the specified agents or connectors to start collecting data.</p>
|
|
331
352
|
*/
|
|
332
353
|
startDataCollectionByAgentIds(args: StartDataCollectionByAgentIdsCommandInput, options?: __HttpHandlerOptions): Promise<StartDataCollectionByAgentIdsCommandOutput>;
|
|
333
354
|
startDataCollectionByAgentIds(args: StartDataCollectionByAgentIdsCommandInput, cb: (err: any, data?: StartDataCollectionByAgentIdsCommandOutput) => void): void;
|
|
334
355
|
startDataCollectionByAgentIds(args: StartDataCollectionByAgentIdsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StartDataCollectionByAgentIdsCommandOutput) => void): void;
|
|
335
356
|
/**
|
|
357
|
+
* @public
|
|
336
358
|
* <p> Begins the export of discovered data to an S3 bucket.</p>
|
|
337
359
|
* <p> If you specify <code>agentIds</code> in a filter, the task exports up to 72 hours of
|
|
338
360
|
* detailed data collected by the identified Application Discovery Agent, including network,
|
|
@@ -347,6 +369,7 @@ export declare class ApplicationDiscoveryService extends ApplicationDiscoverySer
|
|
|
347
369
|
startExportTask(args: StartExportTaskCommandInput, cb: (err: any, data?: StartExportTaskCommandOutput) => void): void;
|
|
348
370
|
startExportTask(args: StartExportTaskCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StartExportTaskCommandOutput) => void): void;
|
|
349
371
|
/**
|
|
372
|
+
* @public
|
|
350
373
|
* <p>Starts an import task, which allows you to import details of your on-premises environment
|
|
351
374
|
* directly into Amazon Web Services Migration Hub without having to use the Application Discovery Service (ADS)
|
|
352
375
|
* tools such as the Discovery Connector or Discovery Agent. This gives you the option to perform
|
|
@@ -384,18 +407,21 @@ export declare class ApplicationDiscoveryService extends ApplicationDiscoverySer
|
|
|
384
407
|
startImportTask(args: StartImportTaskCommandInput, cb: (err: any, data?: StartImportTaskCommandOutput) => void): void;
|
|
385
408
|
startImportTask(args: StartImportTaskCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StartImportTaskCommandOutput) => void): void;
|
|
386
409
|
/**
|
|
410
|
+
* @public
|
|
387
411
|
* <p>Stop the continuous flow of agent's discovered data into Amazon Athena.</p>
|
|
388
412
|
*/
|
|
389
413
|
stopContinuousExport(args: StopContinuousExportCommandInput, options?: __HttpHandlerOptions): Promise<StopContinuousExportCommandOutput>;
|
|
390
414
|
stopContinuousExport(args: StopContinuousExportCommandInput, cb: (err: any, data?: StopContinuousExportCommandOutput) => void): void;
|
|
391
415
|
stopContinuousExport(args: StopContinuousExportCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StopContinuousExportCommandOutput) => void): void;
|
|
392
416
|
/**
|
|
417
|
+
* @public
|
|
393
418
|
* <p>Instructs the specified agents or connectors to stop collecting data.</p>
|
|
394
419
|
*/
|
|
395
420
|
stopDataCollectionByAgentIds(args: StopDataCollectionByAgentIdsCommandInput, options?: __HttpHandlerOptions): Promise<StopDataCollectionByAgentIdsCommandOutput>;
|
|
396
421
|
stopDataCollectionByAgentIds(args: StopDataCollectionByAgentIdsCommandInput, cb: (err: any, data?: StopDataCollectionByAgentIdsCommandOutput) => void): void;
|
|
397
422
|
stopDataCollectionByAgentIds(args: StopDataCollectionByAgentIdsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StopDataCollectionByAgentIdsCommandOutput) => void): void;
|
|
398
423
|
/**
|
|
424
|
+
* @public
|
|
399
425
|
* <p>Updates metadata about an application.</p>
|
|
400
426
|
*/
|
|
401
427
|
updateApplication(args: UpdateApplicationCommandInput, options?: __HttpHandlerOptions): Promise<UpdateApplicationCommandOutput>;
|
|
@@ -33,15 +33,24 @@ import { StopContinuousExportCommandInput, StopContinuousExportCommandOutput } f
|
|
|
33
33
|
import { StopDataCollectionByAgentIdsCommandInput, StopDataCollectionByAgentIdsCommandOutput } from "./commands/StopDataCollectionByAgentIdsCommand";
|
|
34
34
|
import { UpdateApplicationCommandInput, UpdateApplicationCommandOutput } from "./commands/UpdateApplicationCommand";
|
|
35
35
|
import { ClientInputEndpointParameters, ClientResolvedEndpointParameters, EndpointParameters } from "./endpoint/EndpointParameters";
|
|
36
|
+
/**
|
|
37
|
+
* @public
|
|
38
|
+
*/
|
|
36
39
|
export type ServiceInputTypes = AssociateConfigurationItemsToApplicationCommandInput | BatchDeleteImportDataCommandInput | CreateApplicationCommandInput | CreateTagsCommandInput | DeleteApplicationsCommandInput | DeleteTagsCommandInput | DescribeAgentsCommandInput | DescribeConfigurationsCommandInput | DescribeContinuousExportsCommandInput | DescribeExportConfigurationsCommandInput | DescribeExportTasksCommandInput | DescribeImportTasksCommandInput | DescribeTagsCommandInput | DisassociateConfigurationItemsFromApplicationCommandInput | ExportConfigurationsCommandInput | GetDiscoverySummaryCommandInput | ListConfigurationsCommandInput | ListServerNeighborsCommandInput | StartContinuousExportCommandInput | StartDataCollectionByAgentIdsCommandInput | StartExportTaskCommandInput | StartImportTaskCommandInput | StopContinuousExportCommandInput | StopDataCollectionByAgentIdsCommandInput | UpdateApplicationCommandInput;
|
|
40
|
+
/**
|
|
41
|
+
* @public
|
|
42
|
+
*/
|
|
37
43
|
export type ServiceOutputTypes = AssociateConfigurationItemsToApplicationCommandOutput | BatchDeleteImportDataCommandOutput | CreateApplicationCommandOutput | CreateTagsCommandOutput | DeleteApplicationsCommandOutput | DeleteTagsCommandOutput | DescribeAgentsCommandOutput | DescribeConfigurationsCommandOutput | DescribeContinuousExportsCommandOutput | DescribeExportConfigurationsCommandOutput | DescribeExportTasksCommandOutput | DescribeImportTasksCommandOutput | DescribeTagsCommandOutput | DisassociateConfigurationItemsFromApplicationCommandOutput | ExportConfigurationsCommandOutput | GetDiscoverySummaryCommandOutput | ListConfigurationsCommandOutput | ListServerNeighborsCommandOutput | StartContinuousExportCommandOutput | StartDataCollectionByAgentIdsCommandOutput | StartExportTaskCommandOutput | StartImportTaskCommandOutput | StopContinuousExportCommandOutput | StopDataCollectionByAgentIdsCommandOutput | UpdateApplicationCommandOutput;
|
|
44
|
+
/**
|
|
45
|
+
* @public
|
|
46
|
+
*/
|
|
38
47
|
export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
|
|
39
48
|
/**
|
|
40
49
|
* The HTTP handler to use. Fetch in browser and Https in Nodejs.
|
|
41
50
|
*/
|
|
42
51
|
requestHandler?: __HttpHandler;
|
|
43
52
|
/**
|
|
44
|
-
* A constructor for a class implementing the {@link
|
|
53
|
+
* A constructor for a class implementing the {@link @aws-sdk/types#ChecksumConstructor} interface
|
|
45
54
|
* that computes the SHA-256 HMAC or checksum of a string or binary buffer.
|
|
46
55
|
* @internal
|
|
47
56
|
*/
|
|
@@ -131,23 +140,34 @@ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__
|
|
|
131
140
|
*/
|
|
132
141
|
logger?: __Logger;
|
|
133
142
|
/**
|
|
134
|
-
* The {@link
|
|
143
|
+
* The {@link @aws-sdk/smithy-client#DefaultsMode} that will be used to determine how certain default configuration options are resolved in the SDK.
|
|
135
144
|
*/
|
|
136
145
|
defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
|
|
137
146
|
}
|
|
147
|
+
/**
|
|
148
|
+
* @public
|
|
149
|
+
*/
|
|
138
150
|
type ApplicationDiscoveryServiceClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults & RegionInputConfig & EndpointInputConfig<EndpointParameters> & RetryInputConfig & HostHeaderInputConfig & AwsAuthInputConfig & UserAgentInputConfig & ClientInputEndpointParameters;
|
|
139
151
|
/**
|
|
140
|
-
*
|
|
152
|
+
* @public
|
|
153
|
+
*
|
|
154
|
+
* The configuration interface of ApplicationDiscoveryServiceClient class constructor that set the region, credentials and other options.
|
|
141
155
|
*/
|
|
142
156
|
export interface ApplicationDiscoveryServiceClientConfig extends ApplicationDiscoveryServiceClientConfigType {
|
|
143
157
|
}
|
|
158
|
+
/**
|
|
159
|
+
* @public
|
|
160
|
+
*/
|
|
144
161
|
type ApplicationDiscoveryServiceClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> & Required<ClientDefaults> & RegionResolvedConfig & EndpointResolvedConfig<EndpointParameters> & RetryResolvedConfig & HostHeaderResolvedConfig & AwsAuthResolvedConfig & UserAgentResolvedConfig & ClientResolvedEndpointParameters;
|
|
145
162
|
/**
|
|
146
|
-
*
|
|
163
|
+
* @public
|
|
164
|
+
*
|
|
165
|
+
* The resolved configuration interface of ApplicationDiscoveryServiceClient class. This is resolved and normalized from the {@link ApplicationDiscoveryServiceClientConfig | constructor configuration interface}.
|
|
147
166
|
*/
|
|
148
167
|
export interface ApplicationDiscoveryServiceClientResolvedConfig extends ApplicationDiscoveryServiceClientResolvedConfigType {
|
|
149
168
|
}
|
|
150
169
|
/**
|
|
170
|
+
* @public
|
|
151
171
|
* <fullname>Amazon Web Services Application Discovery Service</fullname>
|
|
152
172
|
* <p>Amazon Web Services Application Discovery Service helps you plan application migration projects. It
|
|
153
173
|
* automatically identifies servers, virtual machines (VMs), and network dependencies in your
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ApplicationDiscoveryServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApplicationDiscoveryServiceClient";
|
|
5
5
|
import { AssociateConfigurationItemsToApplicationRequest, AssociateConfigurationItemsToApplicationResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link AssociateConfigurationItemsToApplicationCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface AssociateConfigurationItemsToApplicationCommandInput extends AssociateConfigurationItemsToApplicationRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link AssociateConfigurationItemsToApplicationCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface AssociateConfigurationItemsToApplicationCommandOutput extends AssociateConfigurationItemsToApplicationResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Associates one or more configuration items with 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 AssociateConfigurationItemsToApplicationCommandOutput extends A
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param AssociateConfigurationItemsToApplicationCommandInput - {@link AssociateConfigurationItemsToApplicationCommandInput}
|
|
34
|
+
* @returns {@link AssociateConfigurationItemsToApplicationCommandOutput}
|
|
28
35
|
* @see {@link AssociateConfigurationItemsToApplicationCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link AssociateConfigurationItemsToApplicationCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link ApplicationDiscoveryServiceClientResolvedConfig | config} for ApplicationDiscoveryServiceClient's `config` shape.
|
|
@@ -51,11 +58,20 @@ export interface AssociateConfigurationItemsToApplicationCommandOutput extends A
|
|
|
51
58
|
export declare class AssociateConfigurationItemsToApplicationCommand extends $Command<AssociateConfigurationItemsToApplicationCommandInput, AssociateConfigurationItemsToApplicationCommandOutput, ApplicationDiscoveryServiceClientResolvedConfig> {
|
|
52
59
|
readonly input: AssociateConfigurationItemsToApplicationCommandInput;
|
|
53
60
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
61
|
+
/**
|
|
62
|
+
* @public
|
|
63
|
+
*/
|
|
54
64
|
constructor(input: AssociateConfigurationItemsToApplicationCommandInput);
|
|
55
65
|
/**
|
|
56
66
|
* @internal
|
|
57
67
|
*/
|
|
58
68
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ApplicationDiscoveryServiceClientResolvedConfig, options?: __HttpHandlerOptions): Handler<AssociateConfigurationItemsToApplicationCommandInput, AssociateConfigurationItemsToApplicationCommandOutput>;
|
|
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 { BatchDeleteImportDataRequest, BatchDeleteImportDataResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link BatchDeleteImportDataCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface BatchDeleteImportDataCommandInput extends BatchDeleteImportDataRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link BatchDeleteImportDataCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface BatchDeleteImportDataCommandOutput extends BatchDeleteImportDataResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Deletes one or more import tasks, each identified by their import ID. Each import task has
|
|
18
23
|
* a number of records that can identify servers or applications. </p>
|
|
19
24
|
* <p>Amazon Web Services Application Discovery Service has built-in matching logic that will identify when
|
|
@@ -31,6 +36,8 @@ export interface BatchDeleteImportDataCommandOutput extends BatchDeleteImportDat
|
|
|
31
36
|
* const response = await client.send(command);
|
|
32
37
|
* ```
|
|
33
38
|
*
|
|
39
|
+
* @param BatchDeleteImportDataCommandInput - {@link BatchDeleteImportDataCommandInput}
|
|
40
|
+
* @returns {@link BatchDeleteImportDataCommandOutput}
|
|
34
41
|
* @see {@link BatchDeleteImportDataCommandInput} for command's `input` shape.
|
|
35
42
|
* @see {@link BatchDeleteImportDataCommandOutput} for command's `response` shape.
|
|
36
43
|
* @see {@link ApplicationDiscoveryServiceClientResolvedConfig | config} for ApplicationDiscoveryServiceClient's `config` shape.
|
|
@@ -57,11 +64,20 @@ export interface BatchDeleteImportDataCommandOutput extends BatchDeleteImportDat
|
|
|
57
64
|
export declare class BatchDeleteImportDataCommand extends $Command<BatchDeleteImportDataCommandInput, BatchDeleteImportDataCommandOutput, ApplicationDiscoveryServiceClientResolvedConfig> {
|
|
58
65
|
readonly input: BatchDeleteImportDataCommandInput;
|
|
59
66
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
67
|
+
/**
|
|
68
|
+
* @public
|
|
69
|
+
*/
|
|
60
70
|
constructor(input: BatchDeleteImportDataCommandInput);
|
|
61
71
|
/**
|
|
62
72
|
* @internal
|
|
63
73
|
*/
|
|
64
74
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ApplicationDiscoveryServiceClientResolvedConfig, options?: __HttpHandlerOptions): Handler<BatchDeleteImportDataCommandInput, BatchDeleteImportDataCommandOutput>;
|
|
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 { CreateApplicationRequest, CreateApplicationResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link CreateApplicationCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface CreateApplicationCommandInput extends CreateApplicationRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link CreateApplicationCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface CreateApplicationCommandOutput extends CreateApplicationResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Creates an application with the given name and description.</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 CreateApplicationCommandOutput extends CreateApplicationRespons
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param CreateApplicationCommandInput - {@link CreateApplicationCommandInput}
|
|
34
|
+
* @returns {@link CreateApplicationCommandOutput}
|
|
28
35
|
* @see {@link CreateApplicationCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link CreateApplicationCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link ApplicationDiscoveryServiceClientResolvedConfig | config} for ApplicationDiscoveryServiceClient's `config` shape.
|
|
@@ -51,11 +58,20 @@ export interface CreateApplicationCommandOutput extends CreateApplicationRespons
|
|
|
51
58
|
export declare class CreateApplicationCommand extends $Command<CreateApplicationCommandInput, CreateApplicationCommandOutput, ApplicationDiscoveryServiceClientResolvedConfig> {
|
|
52
59
|
readonly input: CreateApplicationCommandInput;
|
|
53
60
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
61
|
+
/**
|
|
62
|
+
* @public
|
|
63
|
+
*/
|
|
54
64
|
constructor(input: CreateApplicationCommandInput);
|
|
55
65
|
/**
|
|
56
66
|
* @internal
|
|
57
67
|
*/
|
|
58
68
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ApplicationDiscoveryServiceClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateApplicationCommandInput, CreateApplicationCommandOutput>;
|
|
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 { CreateTagsRequest, CreateTagsResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link CreateTagsCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface CreateTagsCommandInput extends CreateTagsRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link CreateTagsCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface CreateTagsCommandOutput extends CreateTagsResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Creates one or more tags for configuration items. Tags are metadata that help you
|
|
18
23
|
* categorize IT assets. This API accepts a list of multiple configuration items.</p>
|
|
19
24
|
* <important>
|
|
@@ -29,6 +34,8 @@ export interface CreateTagsCommandOutput extends CreateTagsResponse, __MetadataB
|
|
|
29
34
|
* const response = await client.send(command);
|
|
30
35
|
* ```
|
|
31
36
|
*
|
|
37
|
+
* @param CreateTagsCommandInput - {@link CreateTagsCommandInput}
|
|
38
|
+
* @returns {@link CreateTagsCommandOutput}
|
|
32
39
|
* @see {@link CreateTagsCommandInput} for command's `input` shape.
|
|
33
40
|
* @see {@link CreateTagsCommandOutput} for command's `response` shape.
|
|
34
41
|
* @see {@link ApplicationDiscoveryServiceClientResolvedConfig | config} for ApplicationDiscoveryServiceClient's `config` shape.
|
|
@@ -59,11 +66,20 @@ export interface CreateTagsCommandOutput extends CreateTagsResponse, __MetadataB
|
|
|
59
66
|
export declare class CreateTagsCommand extends $Command<CreateTagsCommandInput, CreateTagsCommandOutput, ApplicationDiscoveryServiceClientResolvedConfig> {
|
|
60
67
|
readonly input: CreateTagsCommandInput;
|
|
61
68
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
69
|
+
/**
|
|
70
|
+
* @public
|
|
71
|
+
*/
|
|
62
72
|
constructor(input: CreateTagsCommandInput);
|
|
63
73
|
/**
|
|
64
74
|
* @internal
|
|
65
75
|
*/
|
|
66
76
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ApplicationDiscoveryServiceClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateTagsCommandInput, CreateTagsCommandOutput>;
|
|
77
|
+
/**
|
|
78
|
+
* @internal
|
|
79
|
+
*/
|
|
67
80
|
private serialize;
|
|
81
|
+
/**
|
|
82
|
+
* @internal
|
|
83
|
+
*/
|
|
68
84
|
private deserialize;
|
|
69
85
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ApplicationDiscoveryServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApplicationDiscoveryServiceClient";
|
|
5
5
|
import { DeleteApplicationsRequest, DeleteApplicationsResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DeleteApplicationsCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DeleteApplicationsCommandInput extends DeleteApplicationsRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DeleteApplicationsCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DeleteApplicationsCommandOutput extends DeleteApplicationsResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Deletes a list of applications and their associations with configuration
|
|
18
23
|
* items.</p>
|
|
19
24
|
* @example
|
|
@@ -26,6 +31,8 @@ export interface DeleteApplicationsCommandOutput extends DeleteApplicationsRespo
|
|
|
26
31
|
* const response = await client.send(command);
|
|
27
32
|
* ```
|
|
28
33
|
*
|
|
34
|
+
* @param DeleteApplicationsCommandInput - {@link DeleteApplicationsCommandInput}
|
|
35
|
+
* @returns {@link DeleteApplicationsCommandOutput}
|
|
29
36
|
* @see {@link DeleteApplicationsCommandInput} for command's `input` shape.
|
|
30
37
|
* @see {@link DeleteApplicationsCommandOutput} for command's `response` shape.
|
|
31
38
|
* @see {@link ApplicationDiscoveryServiceClientResolvedConfig | config} for ApplicationDiscoveryServiceClient's `config` shape.
|
|
@@ -52,11 +59,20 @@ export interface DeleteApplicationsCommandOutput extends DeleteApplicationsRespo
|
|
|
52
59
|
export declare class DeleteApplicationsCommand extends $Command<DeleteApplicationsCommandInput, DeleteApplicationsCommandOutput, ApplicationDiscoveryServiceClientResolvedConfig> {
|
|
53
60
|
readonly input: DeleteApplicationsCommandInput;
|
|
54
61
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
62
|
+
/**
|
|
63
|
+
* @public
|
|
64
|
+
*/
|
|
55
65
|
constructor(input: DeleteApplicationsCommandInput);
|
|
56
66
|
/**
|
|
57
67
|
* @internal
|
|
58
68
|
*/
|
|
59
69
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ApplicationDiscoveryServiceClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteApplicationsCommandInput, DeleteApplicationsCommandOutput>;
|
|
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 { DeleteTagsRequest, DeleteTagsResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DeleteTagsCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DeleteTagsCommandInput extends DeleteTagsRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DeleteTagsCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DeleteTagsCommandOutput extends DeleteTagsResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Deletes the association between configuration items and one or more tags. This API
|
|
18
23
|
* accepts a list of multiple configuration items.</p>
|
|
19
24
|
* @example
|
|
@@ -26,6 +31,8 @@ export interface DeleteTagsCommandOutput extends DeleteTagsResponse, __MetadataB
|
|
|
26
31
|
* const response = await client.send(command);
|
|
27
32
|
* ```
|
|
28
33
|
*
|
|
34
|
+
* @param DeleteTagsCommandInput - {@link DeleteTagsCommandInput}
|
|
35
|
+
* @returns {@link DeleteTagsCommandOutput}
|
|
29
36
|
* @see {@link DeleteTagsCommandInput} for command's `input` shape.
|
|
30
37
|
* @see {@link DeleteTagsCommandOutput} for command's `response` shape.
|
|
31
38
|
* @see {@link ApplicationDiscoveryServiceClientResolvedConfig | config} for ApplicationDiscoveryServiceClient's `config` shape.
|
|
@@ -56,11 +63,20 @@ export interface DeleteTagsCommandOutput extends DeleteTagsResponse, __MetadataB
|
|
|
56
63
|
export declare class DeleteTagsCommand extends $Command<DeleteTagsCommandInput, DeleteTagsCommandOutput, ApplicationDiscoveryServiceClientResolvedConfig> {
|
|
57
64
|
readonly input: DeleteTagsCommandInput;
|
|
58
65
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
66
|
+
/**
|
|
67
|
+
* @public
|
|
68
|
+
*/
|
|
59
69
|
constructor(input: DeleteTagsCommandInput);
|
|
60
70
|
/**
|
|
61
71
|
* @internal
|
|
62
72
|
*/
|
|
63
73
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ApplicationDiscoveryServiceClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteTagsCommandInput, DeleteTagsCommandOutput>;
|
|
74
|
+
/**
|
|
75
|
+
* @internal
|
|
76
|
+
*/
|
|
64
77
|
private serialize;
|
|
78
|
+
/**
|
|
79
|
+
* @internal
|
|
80
|
+
*/
|
|
65
81
|
private deserialize;
|
|
66
82
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ApplicationDiscoveryServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApplicationDiscoveryServiceClient";
|
|
5
5
|
import { DescribeAgentsRequest, DescribeAgentsResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DescribeAgentsCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DescribeAgentsCommandInput extends DescribeAgentsRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DescribeAgentsCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DescribeAgentsCommandOutput extends DescribeAgentsResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Lists agents or connectors as specified by ID or other filters. All agents/connectors
|
|
18
23
|
* associated with your user account can be listed if you call <code>DescribeAgents</code> as is
|
|
19
24
|
* without passing any parameters.</p>
|
|
@@ -27,6 +32,8 @@ export interface DescribeAgentsCommandOutput extends DescribeAgentsResponse, __M
|
|
|
27
32
|
* const response = await client.send(command);
|
|
28
33
|
* ```
|
|
29
34
|
*
|
|
35
|
+
* @param DescribeAgentsCommandInput - {@link DescribeAgentsCommandInput}
|
|
36
|
+
* @returns {@link DescribeAgentsCommandOutput}
|
|
30
37
|
* @see {@link DescribeAgentsCommandInput} for command's `input` shape.
|
|
31
38
|
* @see {@link DescribeAgentsCommandOutput} for command's `response` shape.
|
|
32
39
|
* @see {@link ApplicationDiscoveryServiceClientResolvedConfig | config} for ApplicationDiscoveryServiceClient's `config` shape.
|
|
@@ -53,11 +60,20 @@ export interface DescribeAgentsCommandOutput extends DescribeAgentsResponse, __M
|
|
|
53
60
|
export declare class DescribeAgentsCommand extends $Command<DescribeAgentsCommandInput, DescribeAgentsCommandOutput, ApplicationDiscoveryServiceClientResolvedConfig> {
|
|
54
61
|
readonly input: DescribeAgentsCommandInput;
|
|
55
62
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
63
|
+
/**
|
|
64
|
+
* @public
|
|
65
|
+
*/
|
|
56
66
|
constructor(input: DescribeAgentsCommandInput);
|
|
57
67
|
/**
|
|
58
68
|
* @internal
|
|
59
69
|
*/
|
|
60
70
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ApplicationDiscoveryServiceClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeAgentsCommandInput, DescribeAgentsCommandOutput>;
|
|
71
|
+
/**
|
|
72
|
+
* @internal
|
|
73
|
+
*/
|
|
61
74
|
private serialize;
|
|
75
|
+
/**
|
|
76
|
+
* @internal
|
|
77
|
+
*/
|
|
62
78
|
private deserialize;
|
|
63
79
|
}
|