@aws-sdk/client-application-discovery-service 3.130.0 → 3.137.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +30 -0
- package/dist-cjs/commands/AssociateConfigurationItemsToApplicationCommand.js +2 -2
- package/dist-cjs/commands/BatchDeleteImportDataCommand.js +2 -2
- package/dist-cjs/commands/CreateApplicationCommand.js +2 -2
- package/dist-cjs/commands/CreateTagsCommand.js +2 -2
- package/dist-cjs/commands/DeleteApplicationsCommand.js +2 -2
- package/dist-cjs/commands/DeleteTagsCommand.js +2 -2
- package/dist-cjs/commands/DescribeAgentsCommand.js +2 -2
- package/dist-cjs/commands/DescribeConfigurationsCommand.js +2 -2
- package/dist-cjs/commands/DescribeContinuousExportsCommand.js +2 -2
- package/dist-cjs/commands/DescribeExportConfigurationsCommand.js +2 -2
- package/dist-cjs/commands/DescribeExportTasksCommand.js +2 -2
- package/dist-cjs/commands/DescribeImportTasksCommand.js +2 -2
- package/dist-cjs/commands/DescribeTagsCommand.js +2 -2
- package/dist-cjs/commands/DisassociateConfigurationItemsFromApplicationCommand.js +2 -2
- package/dist-cjs/commands/ExportConfigurationsCommand.js +1 -1
- package/dist-cjs/commands/GetDiscoverySummaryCommand.js +2 -2
- package/dist-cjs/commands/ListConfigurationsCommand.js +2 -2
- package/dist-cjs/commands/ListServerNeighborsCommand.js +2 -2
- package/dist-cjs/commands/StartContinuousExportCommand.js +2 -2
- package/dist-cjs/commands/StartDataCollectionByAgentIdsCommand.js +2 -2
- package/dist-cjs/commands/StartExportTaskCommand.js +2 -2
- package/dist-cjs/commands/StartImportTaskCommand.js +2 -2
- package/dist-cjs/commands/StopContinuousExportCommand.js +2 -2
- package/dist-cjs/commands/StopDataCollectionByAgentIdsCommand.js +2 -2
- package/dist-cjs/commands/UpdateApplicationCommand.js +2 -2
- package/dist-cjs/models/models_0.js +274 -404
- package/dist-cjs/protocols/Aws_json1_1.js +14 -0
- package/dist-es/commands/AssociateConfigurationItemsToApplicationCommand.js +3 -3
- package/dist-es/commands/BatchDeleteImportDataCommand.js +3 -3
- package/dist-es/commands/CreateApplicationCommand.js +3 -3
- package/dist-es/commands/CreateTagsCommand.js +3 -3
- package/dist-es/commands/DeleteApplicationsCommand.js +3 -3
- package/dist-es/commands/DeleteTagsCommand.js +3 -3
- package/dist-es/commands/DescribeAgentsCommand.js +3 -3
- package/dist-es/commands/DescribeConfigurationsCommand.js +3 -3
- package/dist-es/commands/DescribeContinuousExportsCommand.js +3 -3
- package/dist-es/commands/DescribeExportConfigurationsCommand.js +3 -3
- package/dist-es/commands/DescribeExportTasksCommand.js +3 -3
- package/dist-es/commands/DescribeImportTasksCommand.js +3 -3
- package/dist-es/commands/DescribeTagsCommand.js +3 -3
- package/dist-es/commands/DisassociateConfigurationItemsFromApplicationCommand.js +3 -3
- package/dist-es/commands/ExportConfigurationsCommand.js +2 -2
- package/dist-es/commands/GetDiscoverySummaryCommand.js +3 -3
- package/dist-es/commands/ListConfigurationsCommand.js +3 -3
- package/dist-es/commands/ListServerNeighborsCommand.js +3 -3
- package/dist-es/commands/StartContinuousExportCommand.js +3 -3
- package/dist-es/commands/StartDataCollectionByAgentIdsCommand.js +3 -3
- package/dist-es/commands/StartExportTaskCommand.js +3 -3
- package/dist-es/commands/StartImportTaskCommand.js +3 -3
- package/dist-es/commands/StopContinuousExportCommand.js +3 -3
- package/dist-es/commands/StopDataCollectionByAgentIdsCommand.js +3 -3
- package/dist-es/commands/UpdateApplicationCommand.js +3 -3
- package/dist-es/models/models_0.js +68 -268
- package/dist-es/protocols/Aws_json1_1.js +14 -0
- package/dist-types/models/models_0.d.ts +281 -401
- package/dist-types/ts3.4/models/models_0.d.ts +145 -267
- package/package.json +7 -7
|
@@ -22,12 +22,6 @@ export interface AgentConfigurationStatus {
|
|
|
22
22
|
*/
|
|
23
23
|
description?: string;
|
|
24
24
|
}
|
|
25
|
-
export declare namespace AgentConfigurationStatus {
|
|
26
|
-
/**
|
|
27
|
-
* @internal
|
|
28
|
-
*/
|
|
29
|
-
const filterSensitiveLog: (obj: AgentConfigurationStatus) => any;
|
|
30
|
-
}
|
|
31
25
|
/**
|
|
32
26
|
* <p>Network details about the host where the agent/connector resides.</p>
|
|
33
27
|
*/
|
|
@@ -41,12 +35,6 @@ export interface AgentNetworkInfo {
|
|
|
41
35
|
*/
|
|
42
36
|
macAddress?: string;
|
|
43
37
|
}
|
|
44
|
-
export declare namespace AgentNetworkInfo {
|
|
45
|
-
/**
|
|
46
|
-
* @internal
|
|
47
|
-
*/
|
|
48
|
-
const filterSensitiveLog: (obj: AgentNetworkInfo) => any;
|
|
49
|
-
}
|
|
50
38
|
export declare enum AgentStatus {
|
|
51
39
|
BLACKLISTED = "BLACKLISTED",
|
|
52
40
|
HEALTHY = "HEALTHY",
|
|
@@ -104,12 +92,6 @@ export interface AgentInfo {
|
|
|
104
92
|
*/
|
|
105
93
|
registeredTime?: string;
|
|
106
94
|
}
|
|
107
|
-
export declare namespace AgentInfo {
|
|
108
|
-
/**
|
|
109
|
-
* @internal
|
|
110
|
-
*/
|
|
111
|
-
const filterSensitiveLog: (obj: AgentInfo) => any;
|
|
112
|
-
}
|
|
113
95
|
export interface AssociateConfigurationItemsToApplicationRequest {
|
|
114
96
|
/**
|
|
115
97
|
* <p>The configuration ID of an application with which items are to be associated.</p>
|
|
@@ -120,20 +102,8 @@ export interface AssociateConfigurationItemsToApplicationRequest {
|
|
|
120
102
|
*/
|
|
121
103
|
configurationIds: string[] | undefined;
|
|
122
104
|
}
|
|
123
|
-
export declare namespace AssociateConfigurationItemsToApplicationRequest {
|
|
124
|
-
/**
|
|
125
|
-
* @internal
|
|
126
|
-
*/
|
|
127
|
-
const filterSensitiveLog: (obj: AssociateConfigurationItemsToApplicationRequest) => any;
|
|
128
|
-
}
|
|
129
105
|
export interface AssociateConfigurationItemsToApplicationResponse {
|
|
130
106
|
}
|
|
131
|
-
export declare namespace AssociateConfigurationItemsToApplicationResponse {
|
|
132
|
-
/**
|
|
133
|
-
* @internal
|
|
134
|
-
*/
|
|
135
|
-
const filterSensitiveLog: (obj: AssociateConfigurationItemsToApplicationResponse) => any;
|
|
136
|
-
}
|
|
137
107
|
/**
|
|
138
108
|
* <p>The Amazon Web Services user account does not have permission to perform the action. Check the IAM
|
|
139
109
|
* policy associated with this account.</p>
|
|
@@ -197,12 +167,6 @@ export interface BatchDeleteImportDataRequest {
|
|
|
197
167
|
*/
|
|
198
168
|
importTaskIds: string[] | undefined;
|
|
199
169
|
}
|
|
200
|
-
export declare namespace BatchDeleteImportDataRequest {
|
|
201
|
-
/**
|
|
202
|
-
* @internal
|
|
203
|
-
*/
|
|
204
|
-
const filterSensitiveLog: (obj: BatchDeleteImportDataRequest) => any;
|
|
205
|
-
}
|
|
206
170
|
export declare enum BatchDeleteImportDataErrorCode {
|
|
207
171
|
INTERNAL_SERVER_ERROR = "INTERNAL_SERVER_ERROR",
|
|
208
172
|
NOT_FOUND = "NOT_FOUND",
|
|
@@ -226,12 +190,6 @@ export interface BatchDeleteImportDataError {
|
|
|
226
190
|
*/
|
|
227
191
|
errorDescription?: string;
|
|
228
192
|
}
|
|
229
|
-
export declare namespace BatchDeleteImportDataError {
|
|
230
|
-
/**
|
|
231
|
-
* @internal
|
|
232
|
-
*/
|
|
233
|
-
const filterSensitiveLog: (obj: BatchDeleteImportDataError) => any;
|
|
234
|
-
}
|
|
235
193
|
export interface BatchDeleteImportDataResponse {
|
|
236
194
|
/**
|
|
237
195
|
* <p>Error messages returned for each import task that you deleted as a response for this
|
|
@@ -239,12 +197,6 @@ export interface BatchDeleteImportDataResponse {
|
|
|
239
197
|
*/
|
|
240
198
|
errors?: BatchDeleteImportDataError[];
|
|
241
199
|
}
|
|
242
|
-
export declare namespace BatchDeleteImportDataResponse {
|
|
243
|
-
/**
|
|
244
|
-
* @internal
|
|
245
|
-
*/
|
|
246
|
-
const filterSensitiveLog: (obj: BatchDeleteImportDataResponse) => any;
|
|
247
|
-
}
|
|
248
200
|
export interface CreateApplicationRequest {
|
|
249
201
|
/**
|
|
250
202
|
* <p>Name of the application to be created.</p>
|
|
@@ -255,24 +207,12 @@ export interface CreateApplicationRequest {
|
|
|
255
207
|
*/
|
|
256
208
|
description?: string;
|
|
257
209
|
}
|
|
258
|
-
export declare namespace CreateApplicationRequest {
|
|
259
|
-
/**
|
|
260
|
-
* @internal
|
|
261
|
-
*/
|
|
262
|
-
const filterSensitiveLog: (obj: CreateApplicationRequest) => any;
|
|
263
|
-
}
|
|
264
210
|
export interface CreateApplicationResponse {
|
|
265
211
|
/**
|
|
266
212
|
* <p>Configuration ID of an application to be created.</p>
|
|
267
213
|
*/
|
|
268
214
|
configurationId?: string;
|
|
269
215
|
}
|
|
270
|
-
export declare namespace CreateApplicationResponse {
|
|
271
|
-
/**
|
|
272
|
-
* @internal
|
|
273
|
-
*/
|
|
274
|
-
const filterSensitiveLog: (obj: CreateApplicationResponse) => any;
|
|
275
|
-
}
|
|
276
216
|
/**
|
|
277
217
|
* <p>Metadata that help you categorize IT assets.</p>
|
|
278
218
|
* <important>
|
|
@@ -289,12 +229,6 @@ export interface Tag {
|
|
|
289
229
|
*/
|
|
290
230
|
value: string | undefined;
|
|
291
231
|
}
|
|
292
|
-
export declare namespace Tag {
|
|
293
|
-
/**
|
|
294
|
-
* @internal
|
|
295
|
-
*/
|
|
296
|
-
const filterSensitiveLog: (obj: Tag) => any;
|
|
297
|
-
}
|
|
298
232
|
export interface CreateTagsRequest {
|
|
299
233
|
/**
|
|
300
234
|
* <p>A list of configuration items that you want to tag.</p>
|
|
@@ -310,20 +244,8 @@ export interface CreateTagsRequest {
|
|
|
310
244
|
*/
|
|
311
245
|
tags: Tag[] | undefined;
|
|
312
246
|
}
|
|
313
|
-
export declare namespace CreateTagsRequest {
|
|
314
|
-
/**
|
|
315
|
-
* @internal
|
|
316
|
-
*/
|
|
317
|
-
const filterSensitiveLog: (obj: CreateTagsRequest) => any;
|
|
318
|
-
}
|
|
319
247
|
export interface CreateTagsResponse {
|
|
320
248
|
}
|
|
321
|
-
export declare namespace CreateTagsResponse {
|
|
322
|
-
/**
|
|
323
|
-
* @internal
|
|
324
|
-
*/
|
|
325
|
-
const filterSensitiveLog: (obj: CreateTagsResponse) => any;
|
|
326
|
-
}
|
|
327
249
|
/**
|
|
328
250
|
* <p>The specified configuration ID was not located. Verify the configuration ID and try
|
|
329
251
|
* again.</p>
|
|
@@ -342,20 +264,8 @@ export interface DeleteApplicationsRequest {
|
|
|
342
264
|
*/
|
|
343
265
|
configurationIds: string[] | undefined;
|
|
344
266
|
}
|
|
345
|
-
export declare namespace DeleteApplicationsRequest {
|
|
346
|
-
/**
|
|
347
|
-
* @internal
|
|
348
|
-
*/
|
|
349
|
-
const filterSensitiveLog: (obj: DeleteApplicationsRequest) => any;
|
|
350
|
-
}
|
|
351
267
|
export interface DeleteApplicationsResponse {
|
|
352
268
|
}
|
|
353
|
-
export declare namespace DeleteApplicationsResponse {
|
|
354
|
-
/**
|
|
355
|
-
* @internal
|
|
356
|
-
*/
|
|
357
|
-
const filterSensitiveLog: (obj: DeleteApplicationsResponse) => any;
|
|
358
|
-
}
|
|
359
269
|
export interface DeleteTagsRequest {
|
|
360
270
|
/**
|
|
361
271
|
* <p>A list of configuration items with tags that you want to delete.</p>
|
|
@@ -371,20 +281,8 @@ export interface DeleteTagsRequest {
|
|
|
371
281
|
*/
|
|
372
282
|
tags?: Tag[];
|
|
373
283
|
}
|
|
374
|
-
export declare namespace DeleteTagsRequest {
|
|
375
|
-
/**
|
|
376
|
-
* @internal
|
|
377
|
-
*/
|
|
378
|
-
const filterSensitiveLog: (obj: DeleteTagsRequest) => any;
|
|
379
|
-
}
|
|
380
284
|
export interface DeleteTagsResponse {
|
|
381
285
|
}
|
|
382
|
-
export declare namespace DeleteTagsResponse {
|
|
383
|
-
/**
|
|
384
|
-
* @internal
|
|
385
|
-
*/
|
|
386
|
-
const filterSensitiveLog: (obj: DeleteTagsResponse) => any;
|
|
387
|
-
}
|
|
388
286
|
/**
|
|
389
287
|
* <p>A filter that can use conditional operators.</p>
|
|
390
288
|
* <p>For more information about filters, see <a href="https://docs.aws.amazon.com/application-discovery/latest/userguide/discovery-api-queries.html">Querying Discovered
|
|
@@ -412,12 +310,6 @@ export interface Filter {
|
|
|
412
310
|
*/
|
|
413
311
|
condition: string | undefined;
|
|
414
312
|
}
|
|
415
|
-
export declare namespace Filter {
|
|
416
|
-
/**
|
|
417
|
-
* @internal
|
|
418
|
-
*/
|
|
419
|
-
const filterSensitiveLog: (obj: Filter) => any;
|
|
420
|
-
}
|
|
421
313
|
export interface DescribeAgentsRequest {
|
|
422
314
|
/**
|
|
423
315
|
* <p>The agent or the Connector IDs for which you want information. If you specify no IDs,
|
|
@@ -446,12 +338,6 @@ export interface DescribeAgentsRequest {
|
|
|
446
338
|
*/
|
|
447
339
|
nextToken?: string;
|
|
448
340
|
}
|
|
449
|
-
export declare namespace DescribeAgentsRequest {
|
|
450
|
-
/**
|
|
451
|
-
* @internal
|
|
452
|
-
*/
|
|
453
|
-
const filterSensitiveLog: (obj: DescribeAgentsRequest) => any;
|
|
454
|
-
}
|
|
455
341
|
export interface DescribeAgentsResponse {
|
|
456
342
|
/**
|
|
457
343
|
* <p>Lists agents or the Connector by ID or lists all agents/Connectors associated with your
|
|
@@ -468,36 +354,18 @@ export interface DescribeAgentsResponse {
|
|
|
468
354
|
*/
|
|
469
355
|
nextToken?: string;
|
|
470
356
|
}
|
|
471
|
-
export declare namespace DescribeAgentsResponse {
|
|
472
|
-
/**
|
|
473
|
-
* @internal
|
|
474
|
-
*/
|
|
475
|
-
const filterSensitiveLog: (obj: DescribeAgentsResponse) => any;
|
|
476
|
-
}
|
|
477
357
|
export interface DescribeConfigurationsRequest {
|
|
478
358
|
/**
|
|
479
359
|
* <p>One or more configuration IDs.</p>
|
|
480
360
|
*/
|
|
481
361
|
configurationIds: string[] | undefined;
|
|
482
362
|
}
|
|
483
|
-
export declare namespace DescribeConfigurationsRequest {
|
|
484
|
-
/**
|
|
485
|
-
* @internal
|
|
486
|
-
*/
|
|
487
|
-
const filterSensitiveLog: (obj: DescribeConfigurationsRequest) => any;
|
|
488
|
-
}
|
|
489
363
|
export interface DescribeConfigurationsResponse {
|
|
490
364
|
/**
|
|
491
365
|
* <p>A key in the response map. The value is an array of data.</p>
|
|
492
366
|
*/
|
|
493
367
|
configurations?: Record<string, string>[];
|
|
494
368
|
}
|
|
495
|
-
export declare namespace DescribeConfigurationsResponse {
|
|
496
|
-
/**
|
|
497
|
-
* @internal
|
|
498
|
-
*/
|
|
499
|
-
const filterSensitiveLog: (obj: DescribeConfigurationsResponse) => any;
|
|
500
|
-
}
|
|
501
369
|
export interface DescribeContinuousExportsRequest {
|
|
502
370
|
/**
|
|
503
371
|
* <p>The unique IDs assigned to the exports.</p>
|
|
@@ -513,12 +381,6 @@ export interface DescribeContinuousExportsRequest {
|
|
|
513
381
|
*/
|
|
514
382
|
nextToken?: string;
|
|
515
383
|
}
|
|
516
|
-
export declare namespace DescribeContinuousExportsRequest {
|
|
517
|
-
/**
|
|
518
|
-
* @internal
|
|
519
|
-
*/
|
|
520
|
-
const filterSensitiveLog: (obj: DescribeContinuousExportsRequest) => any;
|
|
521
|
-
}
|
|
522
384
|
export declare enum DataSource {
|
|
523
385
|
AGENT = "AGENT"
|
|
524
386
|
}
|
|
@@ -681,12 +543,6 @@ export interface ContinuousExportDescription {
|
|
|
681
543
|
*/
|
|
682
544
|
schemaStorageConfig?: Record<string, string>;
|
|
683
545
|
}
|
|
684
|
-
export declare namespace ContinuousExportDescription {
|
|
685
|
-
/**
|
|
686
|
-
* @internal
|
|
687
|
-
*/
|
|
688
|
-
const filterSensitiveLog: (obj: ContinuousExportDescription) => any;
|
|
689
|
-
}
|
|
690
546
|
export interface DescribeContinuousExportsResponse {
|
|
691
547
|
/**
|
|
692
548
|
* <p>A list of continuous export descriptions.</p>
|
|
@@ -697,12 +553,6 @@ export interface DescribeContinuousExportsResponse {
|
|
|
697
553
|
*/
|
|
698
554
|
nextToken?: string;
|
|
699
555
|
}
|
|
700
|
-
export declare namespace DescribeContinuousExportsResponse {
|
|
701
|
-
/**
|
|
702
|
-
* @internal
|
|
703
|
-
*/
|
|
704
|
-
const filterSensitiveLog: (obj: DescribeContinuousExportsResponse) => any;
|
|
705
|
-
}
|
|
706
556
|
/**
|
|
707
557
|
* <p>This operation is not permitted.</p>
|
|
708
558
|
*/
|
|
@@ -729,12 +579,6 @@ export interface DescribeExportConfigurationsRequest {
|
|
|
729
579
|
*/
|
|
730
580
|
nextToken?: string;
|
|
731
581
|
}
|
|
732
|
-
export declare namespace DescribeExportConfigurationsRequest {
|
|
733
|
-
/**
|
|
734
|
-
* @internal
|
|
735
|
-
*/
|
|
736
|
-
const filterSensitiveLog: (obj: DescribeExportConfigurationsRequest) => any;
|
|
737
|
-
}
|
|
738
582
|
export declare enum ExportStatus {
|
|
739
583
|
FAILED = "FAILED",
|
|
740
584
|
IN_PROGRESS = "IN_PROGRESS",
|
|
@@ -786,12 +630,6 @@ export interface ExportInfo {
|
|
|
786
630
|
*/
|
|
787
631
|
requestedEndTime?: Date;
|
|
788
632
|
}
|
|
789
|
-
export declare namespace ExportInfo {
|
|
790
|
-
/**
|
|
791
|
-
* @internal
|
|
792
|
-
*/
|
|
793
|
-
const filterSensitiveLog: (obj: ExportInfo) => any;
|
|
794
|
-
}
|
|
795
633
|
export interface DescribeExportConfigurationsResponse {
|
|
796
634
|
/**
|
|
797
635
|
* <p></p>
|
|
@@ -802,12 +640,6 @@ export interface DescribeExportConfigurationsResponse {
|
|
|
802
640
|
*/
|
|
803
641
|
nextToken?: string;
|
|
804
642
|
}
|
|
805
|
-
export declare namespace DescribeExportConfigurationsResponse {
|
|
806
|
-
/**
|
|
807
|
-
* @internal
|
|
808
|
-
*/
|
|
809
|
-
const filterSensitiveLog: (obj: DescribeExportConfigurationsResponse) => any;
|
|
810
|
-
}
|
|
811
643
|
/**
|
|
812
644
|
* <p>Used to select which agent's data is to be exported. A single agent ID may be selected
|
|
813
645
|
* for export using the <a href="http://docs.aws.amazon.com/application-discovery/latest/APIReference/API_StartExportTask.html">StartExportTask</a> action.</p>
|
|
@@ -829,12 +661,6 @@ export interface ExportFilter {
|
|
|
829
661
|
*/
|
|
830
662
|
condition: string | undefined;
|
|
831
663
|
}
|
|
832
|
-
export declare namespace ExportFilter {
|
|
833
|
-
/**
|
|
834
|
-
* @internal
|
|
835
|
-
*/
|
|
836
|
-
const filterSensitiveLog: (obj: ExportFilter) => any;
|
|
837
|
-
}
|
|
838
664
|
export interface DescribeExportTasksRequest {
|
|
839
665
|
/**
|
|
840
666
|
* <p>One or more unique identifiers used to query the status of an export request.</p>
|
|
@@ -867,12 +693,6 @@ export interface DescribeExportTasksRequest {
|
|
|
867
693
|
*/
|
|
868
694
|
nextToken?: string;
|
|
869
695
|
}
|
|
870
|
-
export declare namespace DescribeExportTasksRequest {
|
|
871
|
-
/**
|
|
872
|
-
* @internal
|
|
873
|
-
*/
|
|
874
|
-
const filterSensitiveLog: (obj: DescribeExportTasksRequest) => any;
|
|
875
|
-
}
|
|
876
696
|
export interface DescribeExportTasksResponse {
|
|
877
697
|
/**
|
|
878
698
|
* <p>Contains one or more sets of export request details. When the status of a request is
|
|
@@ -889,12 +709,6 @@ export interface DescribeExportTasksResponse {
|
|
|
889
709
|
*/
|
|
890
710
|
nextToken?: string;
|
|
891
711
|
}
|
|
892
|
-
export declare namespace DescribeExportTasksResponse {
|
|
893
|
-
/**
|
|
894
|
-
* @internal
|
|
895
|
-
*/
|
|
896
|
-
const filterSensitiveLog: (obj: DescribeExportTasksResponse) => any;
|
|
897
|
-
}
|
|
898
712
|
export declare enum ImportTaskFilterName {
|
|
899
713
|
IMPORT_TASK_ID = "IMPORT_TASK_ID",
|
|
900
714
|
NAME = "NAME",
|
|
@@ -919,12 +733,6 @@ export interface ImportTaskFilter {
|
|
|
919
733
|
*/
|
|
920
734
|
values?: string[];
|
|
921
735
|
}
|
|
922
|
-
export declare namespace ImportTaskFilter {
|
|
923
|
-
/**
|
|
924
|
-
* @internal
|
|
925
|
-
*/
|
|
926
|
-
const filterSensitiveLog: (obj: ImportTaskFilter) => any;
|
|
927
|
-
}
|
|
928
736
|
export interface DescribeImportTasksRequest {
|
|
929
737
|
/**
|
|
930
738
|
* <p>An array of name-value pairs that you provide to filter the results for the
|
|
@@ -941,12 +749,6 @@ export interface DescribeImportTasksRequest {
|
|
|
941
749
|
*/
|
|
942
750
|
nextToken?: string;
|
|
943
751
|
}
|
|
944
|
-
export declare namespace DescribeImportTasksRequest {
|
|
945
|
-
/**
|
|
946
|
-
* @internal
|
|
947
|
-
*/
|
|
948
|
-
const filterSensitiveLog: (obj: DescribeImportTasksRequest) => any;
|
|
949
|
-
}
|
|
950
752
|
export declare enum ImportStatus {
|
|
951
753
|
DELETE_COMPLETE = "DELETE_COMPLETE",
|
|
952
754
|
DELETE_FAILED = "DELETE_FAILED",
|
|
@@ -1043,12 +845,6 @@ export interface ImportTask {
|
|
|
1043
845
|
*/
|
|
1044
846
|
errorsAndFailedEntriesZip?: string;
|
|
1045
847
|
}
|
|
1046
|
-
export declare namespace ImportTask {
|
|
1047
|
-
/**
|
|
1048
|
-
* @internal
|
|
1049
|
-
*/
|
|
1050
|
-
const filterSensitiveLog: (obj: ImportTask) => any;
|
|
1051
|
-
}
|
|
1052
848
|
export interface DescribeImportTasksResponse {
|
|
1053
849
|
/**
|
|
1054
850
|
* <p>The token to request the next page of results.</p>
|
|
@@ -1060,12 +856,6 @@ export interface DescribeImportTasksResponse {
|
|
|
1060
856
|
*/
|
|
1061
857
|
tasks?: ImportTask[];
|
|
1062
858
|
}
|
|
1063
|
-
export declare namespace DescribeImportTasksResponse {
|
|
1064
|
-
/**
|
|
1065
|
-
* @internal
|
|
1066
|
-
*/
|
|
1067
|
-
const filterSensitiveLog: (obj: DescribeImportTasksResponse) => any;
|
|
1068
|
-
}
|
|
1069
859
|
/**
|
|
1070
860
|
* <p>The tag filter. Valid names are: <code>tagKey</code>, <code>tagValue</code>,
|
|
1071
861
|
* <code>configurationId</code>.</p>
|
|
@@ -1080,12 +870,6 @@ export interface TagFilter {
|
|
|
1080
870
|
*/
|
|
1081
871
|
values: string[] | undefined;
|
|
1082
872
|
}
|
|
1083
|
-
export declare namespace TagFilter {
|
|
1084
|
-
/**
|
|
1085
|
-
* @internal
|
|
1086
|
-
*/
|
|
1087
|
-
const filterSensitiveLog: (obj: TagFilter) => any;
|
|
1088
|
-
}
|
|
1089
873
|
export interface DescribeTagsRequest {
|
|
1090
874
|
/**
|
|
1091
875
|
* <p>You can filter the list using a <i>key</i>-<i>value</i>
|
|
@@ -1103,12 +887,6 @@ export interface DescribeTagsRequest {
|
|
|
1103
887
|
*/
|
|
1104
888
|
nextToken?: string;
|
|
1105
889
|
}
|
|
1106
|
-
export declare namespace DescribeTagsRequest {
|
|
1107
|
-
/**
|
|
1108
|
-
* @internal
|
|
1109
|
-
*/
|
|
1110
|
-
const filterSensitiveLog: (obj: DescribeTagsRequest) => any;
|
|
1111
|
-
}
|
|
1112
890
|
export declare enum ConfigurationItemType {
|
|
1113
891
|
APPLICATION = "APPLICATION",
|
|
1114
892
|
CONNECTIONS = "CONNECTION",
|
|
@@ -1145,12 +923,6 @@ export interface ConfigurationTag {
|
|
|
1145
923
|
*/
|
|
1146
924
|
timeOfCreation?: Date;
|
|
1147
925
|
}
|
|
1148
|
-
export declare namespace ConfigurationTag {
|
|
1149
|
-
/**
|
|
1150
|
-
* @internal
|
|
1151
|
-
*/
|
|
1152
|
-
const filterSensitiveLog: (obj: ConfigurationTag) => any;
|
|
1153
|
-
}
|
|
1154
926
|
export interface DescribeTagsResponse {
|
|
1155
927
|
/**
|
|
1156
928
|
* <p>Depending on the input, this is a list of configuration items tagged with a specific
|
|
@@ -1162,12 +934,6 @@ export interface DescribeTagsResponse {
|
|
|
1162
934
|
*/
|
|
1163
935
|
nextToken?: string;
|
|
1164
936
|
}
|
|
1165
|
-
export declare namespace DescribeTagsResponse {
|
|
1166
|
-
/**
|
|
1167
|
-
* @internal
|
|
1168
|
-
*/
|
|
1169
|
-
const filterSensitiveLog: (obj: DescribeTagsResponse) => any;
|
|
1170
|
-
}
|
|
1171
937
|
export interface DisassociateConfigurationItemsFromApplicationRequest {
|
|
1172
938
|
/**
|
|
1173
939
|
* <p>Configuration ID of an application from which each item is disassociated.</p>
|
|
@@ -1178,39 +944,24 @@ export interface DisassociateConfigurationItemsFromApplicationRequest {
|
|
|
1178
944
|
*/
|
|
1179
945
|
configurationIds: string[] | undefined;
|
|
1180
946
|
}
|
|
1181
|
-
export declare namespace DisassociateConfigurationItemsFromApplicationRequest {
|
|
1182
|
-
/**
|
|
1183
|
-
* @internal
|
|
1184
|
-
*/
|
|
1185
|
-
const filterSensitiveLog: (obj: DisassociateConfigurationItemsFromApplicationRequest) => any;
|
|
1186
|
-
}
|
|
1187
947
|
export interface DisassociateConfigurationItemsFromApplicationResponse {
|
|
1188
948
|
}
|
|
1189
|
-
export declare namespace DisassociateConfigurationItemsFromApplicationResponse {
|
|
1190
|
-
/**
|
|
1191
|
-
* @internal
|
|
1192
|
-
*/
|
|
1193
|
-
const filterSensitiveLog: (obj: DisassociateConfigurationItemsFromApplicationResponse) => any;
|
|
1194
|
-
}
|
|
1195
949
|
export interface ExportConfigurationsResponse {
|
|
1196
950
|
/**
|
|
1197
951
|
* <p>A unique identifier that you can use to query the export status.</p>
|
|
1198
952
|
*/
|
|
1199
953
|
exportId?: string;
|
|
1200
954
|
}
|
|
1201
|
-
export declare namespace ExportConfigurationsResponse {
|
|
1202
|
-
/**
|
|
1203
|
-
* @internal
|
|
1204
|
-
*/
|
|
1205
|
-
const filterSensitiveLog: (obj: ExportConfigurationsResponse) => any;
|
|
1206
|
-
}
|
|
1207
955
|
export interface GetDiscoverySummaryRequest {
|
|
1208
956
|
}
|
|
1209
|
-
export
|
|
1210
|
-
|
|
1211
|
-
|
|
1212
|
-
|
|
1213
|
-
|
|
957
|
+
export interface CustomerAgentlessCollectorInfo {
|
|
958
|
+
activeAgentlessCollectors: number | undefined;
|
|
959
|
+
healthyAgentlessCollectors: number | undefined;
|
|
960
|
+
denyListedAgentlessCollectors: number | undefined;
|
|
961
|
+
shutdownAgentlessCollectors: number | undefined;
|
|
962
|
+
unhealthyAgentlessCollectors: number | undefined;
|
|
963
|
+
totalAgentlessCollectors: number | undefined;
|
|
964
|
+
unknownAgentlessCollectors: number | undefined;
|
|
1214
965
|
}
|
|
1215
966
|
/**
|
|
1216
967
|
* <p>Inventory data for installed discovery agents.</p>
|
|
@@ -1245,12 +996,6 @@ export interface CustomerAgentInfo {
|
|
|
1245
996
|
*/
|
|
1246
997
|
unknownAgents: number | undefined;
|
|
1247
998
|
}
|
|
1248
|
-
export declare namespace CustomerAgentInfo {
|
|
1249
|
-
/**
|
|
1250
|
-
* @internal
|
|
1251
|
-
*/
|
|
1252
|
-
const filterSensitiveLog: (obj: CustomerAgentInfo) => any;
|
|
1253
|
-
}
|
|
1254
999
|
/**
|
|
1255
1000
|
* <p>Inventory data for installed discovery connectors.</p>
|
|
1256
1001
|
*/
|
|
@@ -1284,12 +1029,6 @@ export interface CustomerConnectorInfo {
|
|
|
1284
1029
|
*/
|
|
1285
1030
|
unknownConnectors: number | undefined;
|
|
1286
1031
|
}
|
|
1287
|
-
export declare namespace CustomerConnectorInfo {
|
|
1288
|
-
/**
|
|
1289
|
-
* @internal
|
|
1290
|
-
*/
|
|
1291
|
-
const filterSensitiveLog: (obj: CustomerConnectorInfo) => any;
|
|
1292
|
-
}
|
|
1293
1032
|
/**
|
|
1294
1033
|
* <p>
|
|
1295
1034
|
* The inventory data for installed Migration Evaluator collectors.
|
|
@@ -1339,12 +1078,6 @@ export interface CustomerMeCollectorInfo {
|
|
|
1339
1078
|
*/
|
|
1340
1079
|
unknownMeCollectors: number | undefined;
|
|
1341
1080
|
}
|
|
1342
|
-
export declare namespace CustomerMeCollectorInfo {
|
|
1343
|
-
/**
|
|
1344
|
-
* @internal
|
|
1345
|
-
*/
|
|
1346
|
-
const filterSensitiveLog: (obj: CustomerMeCollectorInfo) => any;
|
|
1347
|
-
}
|
|
1348
1081
|
export interface GetDiscoverySummaryResponse {
|
|
1349
1082
|
/**
|
|
1350
1083
|
* <p>The number of servers discovered.</p>
|
|
@@ -1376,12 +1109,7 @@ export interface GetDiscoverySummaryResponse {
|
|
|
1376
1109
|
* </p>
|
|
1377
1110
|
*/
|
|
1378
1111
|
meCollectorSummary?: CustomerMeCollectorInfo;
|
|
1379
|
-
|
|
1380
|
-
export declare namespace GetDiscoverySummaryResponse {
|
|
1381
|
-
/**
|
|
1382
|
-
* @internal
|
|
1383
|
-
*/
|
|
1384
|
-
const filterSensitiveLog: (obj: GetDiscoverySummaryResponse) => any;
|
|
1112
|
+
agentlessCollectorSummary?: CustomerAgentlessCollectorInfo;
|
|
1385
1113
|
}
|
|
1386
1114
|
export declare enum OrderString {
|
|
1387
1115
|
ASC = "ASC",
|
|
@@ -1400,12 +1128,6 @@ export interface OrderByElement {
|
|
|
1400
1128
|
*/
|
|
1401
1129
|
sortOrder?: OrderString | string;
|
|
1402
1130
|
}
|
|
1403
|
-
export declare namespace OrderByElement {
|
|
1404
|
-
/**
|
|
1405
|
-
* @internal
|
|
1406
|
-
*/
|
|
1407
|
-
const filterSensitiveLog: (obj: OrderByElement) => any;
|
|
1408
|
-
}
|
|
1409
1131
|
export interface ListConfigurationsRequest {
|
|
1410
1132
|
/**
|
|
1411
1133
|
* <p>A valid configuration identified by Application Discovery Service. </p>
|
|
@@ -1440,12 +1162,6 @@ export interface ListConfigurationsRequest {
|
|
|
1440
1162
|
*/
|
|
1441
1163
|
orderBy?: OrderByElement[];
|
|
1442
1164
|
}
|
|
1443
|
-
export declare namespace ListConfigurationsRequest {
|
|
1444
|
-
/**
|
|
1445
|
-
* @internal
|
|
1446
|
-
*/
|
|
1447
|
-
const filterSensitiveLog: (obj: ListConfigurationsRequest) => any;
|
|
1448
|
-
}
|
|
1449
1165
|
export interface ListConfigurationsResponse {
|
|
1450
1166
|
/**
|
|
1451
1167
|
* <p>Returns configuration details, including the configuration ID, attribute names, and
|
|
@@ -1461,12 +1177,6 @@ export interface ListConfigurationsResponse {
|
|
|
1461
1177
|
*/
|
|
1462
1178
|
nextToken?: string;
|
|
1463
1179
|
}
|
|
1464
|
-
export declare namespace ListConfigurationsResponse {
|
|
1465
|
-
/**
|
|
1466
|
-
* @internal
|
|
1467
|
-
*/
|
|
1468
|
-
const filterSensitiveLog: (obj: ListConfigurationsResponse) => any;
|
|
1469
|
-
}
|
|
1470
1180
|
export interface ListServerNeighborsRequest {
|
|
1471
1181
|
/**
|
|
1472
1182
|
* <p>Configuration ID of the server for which neighbors are being listed.</p>
|
|
@@ -1493,12 +1203,6 @@ export interface ListServerNeighborsRequest {
|
|
|
1493
1203
|
*/
|
|
1494
1204
|
nextToken?: string;
|
|
1495
1205
|
}
|
|
1496
|
-
export declare namespace ListServerNeighborsRequest {
|
|
1497
|
-
/**
|
|
1498
|
-
* @internal
|
|
1499
|
-
*/
|
|
1500
|
-
const filterSensitiveLog: (obj: ListServerNeighborsRequest) => any;
|
|
1501
|
-
}
|
|
1502
1206
|
/**
|
|
1503
1207
|
* <p>Details about neighboring servers.</p>
|
|
1504
1208
|
*/
|
|
@@ -1524,12 +1228,6 @@ export interface NeighborConnectionDetail {
|
|
|
1524
1228
|
*/
|
|
1525
1229
|
connectionsCount: number | undefined;
|
|
1526
1230
|
}
|
|
1527
|
-
export declare namespace NeighborConnectionDetail {
|
|
1528
|
-
/**
|
|
1529
|
-
* @internal
|
|
1530
|
-
*/
|
|
1531
|
-
const filterSensitiveLog: (obj: NeighborConnectionDetail) => any;
|
|
1532
|
-
}
|
|
1533
1231
|
export interface ListServerNeighborsResponse {
|
|
1534
1232
|
/**
|
|
1535
1233
|
* <p>List of distinct servers that are one hop away from the given server.</p>
|
|
@@ -1548,12 +1246,6 @@ export interface ListServerNeighborsResponse {
|
|
|
1548
1246
|
*/
|
|
1549
1247
|
knownDependencyCount?: number;
|
|
1550
1248
|
}
|
|
1551
|
-
export declare namespace ListServerNeighborsResponse {
|
|
1552
|
-
/**
|
|
1553
|
-
* @internal
|
|
1554
|
-
*/
|
|
1555
|
-
const filterSensitiveLog: (obj: ListServerNeighborsResponse) => any;
|
|
1556
|
-
}
|
|
1557
1249
|
/**
|
|
1558
1250
|
* <p></p>
|
|
1559
1251
|
*/
|
|
@@ -1582,12 +1274,6 @@ export declare class ResourceInUseException extends __BaseException {
|
|
|
1582
1274
|
}
|
|
1583
1275
|
export interface StartContinuousExportRequest {
|
|
1584
1276
|
}
|
|
1585
|
-
export declare namespace StartContinuousExportRequest {
|
|
1586
|
-
/**
|
|
1587
|
-
* @internal
|
|
1588
|
-
*/
|
|
1589
|
-
const filterSensitiveLog: (obj: StartContinuousExportRequest) => any;
|
|
1590
|
-
}
|
|
1591
1277
|
export interface StartContinuousExportResponse {
|
|
1592
1278
|
/**
|
|
1593
1279
|
* <p>The unique ID assigned to this export.</p>
|
|
@@ -1618,12 +1304,6 @@ export interface StartContinuousExportResponse {
|
|
|
1618
1304
|
*/
|
|
1619
1305
|
schemaStorageConfig?: Record<string, string>;
|
|
1620
1306
|
}
|
|
1621
|
-
export declare namespace StartContinuousExportResponse {
|
|
1622
|
-
/**
|
|
1623
|
-
* @internal
|
|
1624
|
-
*/
|
|
1625
|
-
const filterSensitiveLog: (obj: StartContinuousExportResponse) => any;
|
|
1626
|
-
}
|
|
1627
1307
|
export interface StartDataCollectionByAgentIdsRequest {
|
|
1628
1308
|
/**
|
|
1629
1309
|
* <p>The IDs of the agents or connectors from which to start collecting data. If you send a
|
|
@@ -1636,12 +1316,6 @@ export interface StartDataCollectionByAgentIdsRequest {
|
|
|
1636
1316
|
*/
|
|
1637
1317
|
agentIds: string[] | undefined;
|
|
1638
1318
|
}
|
|
1639
|
-
export declare namespace StartDataCollectionByAgentIdsRequest {
|
|
1640
|
-
/**
|
|
1641
|
-
* @internal
|
|
1642
|
-
*/
|
|
1643
|
-
const filterSensitiveLog: (obj: StartDataCollectionByAgentIdsRequest) => any;
|
|
1644
|
-
}
|
|
1645
1319
|
export interface StartDataCollectionByAgentIdsResponse {
|
|
1646
1320
|
/**
|
|
1647
1321
|
* <p>Information about agents or the connector that were instructed to start collecting
|
|
@@ -1650,12 +1324,6 @@ export interface StartDataCollectionByAgentIdsResponse {
|
|
|
1650
1324
|
*/
|
|
1651
1325
|
agentsConfigurationStatus?: AgentConfigurationStatus[];
|
|
1652
1326
|
}
|
|
1653
|
-
export declare namespace StartDataCollectionByAgentIdsResponse {
|
|
1654
|
-
/**
|
|
1655
|
-
* @internal
|
|
1656
|
-
*/
|
|
1657
|
-
const filterSensitiveLog: (obj: StartDataCollectionByAgentIdsResponse) => any;
|
|
1658
|
-
}
|
|
1659
1327
|
export declare enum ExportDataFormat {
|
|
1660
1328
|
CSV = "CSV",
|
|
1661
1329
|
GRAPHML = "GRAPHML"
|
|
@@ -1692,24 +1360,12 @@ export interface StartExportTaskRequest {
|
|
|
1692
1360
|
*/
|
|
1693
1361
|
endTime?: Date;
|
|
1694
1362
|
}
|
|
1695
|
-
export declare namespace StartExportTaskRequest {
|
|
1696
|
-
/**
|
|
1697
|
-
* @internal
|
|
1698
|
-
*/
|
|
1699
|
-
const filterSensitiveLog: (obj: StartExportTaskRequest) => any;
|
|
1700
|
-
}
|
|
1701
1363
|
export interface StartExportTaskResponse {
|
|
1702
1364
|
/**
|
|
1703
1365
|
* <p>A unique identifier used to query the status of an export request.</p>
|
|
1704
1366
|
*/
|
|
1705
1367
|
exportId?: string;
|
|
1706
1368
|
}
|
|
1707
|
-
export declare namespace StartExportTaskResponse {
|
|
1708
|
-
/**
|
|
1709
|
-
* @internal
|
|
1710
|
-
*/
|
|
1711
|
-
const filterSensitiveLog: (obj: StartExportTaskResponse) => any;
|
|
1712
|
-
}
|
|
1713
1369
|
export interface StartImportTaskRequest {
|
|
1714
1370
|
/**
|
|
1715
1371
|
* <p>Optional. A unique token that you can provide to prevent the same import request from
|
|
@@ -1738,12 +1394,6 @@ export interface StartImportTaskRequest {
|
|
|
1738
1394
|
*/
|
|
1739
1395
|
importUrl: string | undefined;
|
|
1740
1396
|
}
|
|
1741
|
-
export declare namespace StartImportTaskRequest {
|
|
1742
|
-
/**
|
|
1743
|
-
* @internal
|
|
1744
|
-
*/
|
|
1745
|
-
const filterSensitiveLog: (obj: StartImportTaskRequest) => any;
|
|
1746
|
-
}
|
|
1747
1397
|
export interface StartImportTaskResponse {
|
|
1748
1398
|
/**
|
|
1749
1399
|
* <p>An array of information related to the import task request including status information,
|
|
@@ -1751,24 +1401,12 @@ export interface StartImportTaskResponse {
|
|
|
1751
1401
|
*/
|
|
1752
1402
|
task?: ImportTask;
|
|
1753
1403
|
}
|
|
1754
|
-
export declare namespace StartImportTaskResponse {
|
|
1755
|
-
/**
|
|
1756
|
-
* @internal
|
|
1757
|
-
*/
|
|
1758
|
-
const filterSensitiveLog: (obj: StartImportTaskResponse) => any;
|
|
1759
|
-
}
|
|
1760
1404
|
export interface StopContinuousExportRequest {
|
|
1761
1405
|
/**
|
|
1762
1406
|
* <p>The unique ID assigned to this export.</p>
|
|
1763
1407
|
*/
|
|
1764
1408
|
exportId: string | undefined;
|
|
1765
1409
|
}
|
|
1766
|
-
export declare namespace StopContinuousExportRequest {
|
|
1767
|
-
/**
|
|
1768
|
-
* @internal
|
|
1769
|
-
*/
|
|
1770
|
-
const filterSensitiveLog: (obj: StopContinuousExportRequest) => any;
|
|
1771
|
-
}
|
|
1772
1410
|
export interface StopContinuousExportResponse {
|
|
1773
1411
|
/**
|
|
1774
1412
|
* <p>Timestamp that represents when this continuous export started collecting
|
|
@@ -1780,24 +1418,12 @@ export interface StopContinuousExportResponse {
|
|
|
1780
1418
|
*/
|
|
1781
1419
|
stopTime?: Date;
|
|
1782
1420
|
}
|
|
1783
|
-
export declare namespace StopContinuousExportResponse {
|
|
1784
|
-
/**
|
|
1785
|
-
* @internal
|
|
1786
|
-
*/
|
|
1787
|
-
const filterSensitiveLog: (obj: StopContinuousExportResponse) => any;
|
|
1788
|
-
}
|
|
1789
1421
|
export interface StopDataCollectionByAgentIdsRequest {
|
|
1790
1422
|
/**
|
|
1791
1423
|
* <p>The IDs of the agents or connectors from which to stop collecting data.</p>
|
|
1792
1424
|
*/
|
|
1793
1425
|
agentIds: string[] | undefined;
|
|
1794
1426
|
}
|
|
1795
|
-
export declare namespace StopDataCollectionByAgentIdsRequest {
|
|
1796
|
-
/**
|
|
1797
|
-
* @internal
|
|
1798
|
-
*/
|
|
1799
|
-
const filterSensitiveLog: (obj: StopDataCollectionByAgentIdsRequest) => any;
|
|
1800
|
-
}
|
|
1801
1427
|
export interface StopDataCollectionByAgentIdsResponse {
|
|
1802
1428
|
/**
|
|
1803
1429
|
* <p>Information about the agents or connector that were instructed to stop collecting data.
|
|
@@ -1806,12 +1432,6 @@ export interface StopDataCollectionByAgentIdsResponse {
|
|
|
1806
1432
|
*/
|
|
1807
1433
|
agentsConfigurationStatus?: AgentConfigurationStatus[];
|
|
1808
1434
|
}
|
|
1809
|
-
export declare namespace StopDataCollectionByAgentIdsResponse {
|
|
1810
|
-
/**
|
|
1811
|
-
* @internal
|
|
1812
|
-
*/
|
|
1813
|
-
const filterSensitiveLog: (obj: StopDataCollectionByAgentIdsResponse) => any;
|
|
1814
|
-
}
|
|
1815
1435
|
export interface UpdateApplicationRequest {
|
|
1816
1436
|
/**
|
|
1817
1437
|
* <p>Configuration ID of the application to be updated.</p>
|
|
@@ -1826,17 +1446,277 @@ export interface UpdateApplicationRequest {
|
|
|
1826
1446
|
*/
|
|
1827
1447
|
description?: string;
|
|
1828
1448
|
}
|
|
1829
|
-
export declare namespace UpdateApplicationRequest {
|
|
1830
|
-
/**
|
|
1831
|
-
* @internal
|
|
1832
|
-
*/
|
|
1833
|
-
const filterSensitiveLog: (obj: UpdateApplicationRequest) => any;
|
|
1834
|
-
}
|
|
1835
1449
|
export interface UpdateApplicationResponse {
|
|
1836
1450
|
}
|
|
1837
|
-
|
|
1838
|
-
|
|
1839
|
-
|
|
1840
|
-
|
|
1841
|
-
|
|
1842
|
-
|
|
1451
|
+
/**
|
|
1452
|
+
* @internal
|
|
1453
|
+
*/
|
|
1454
|
+
export declare const AgentConfigurationStatusFilterSensitiveLog: (obj: AgentConfigurationStatus) => any;
|
|
1455
|
+
/**
|
|
1456
|
+
* @internal
|
|
1457
|
+
*/
|
|
1458
|
+
export declare const AgentNetworkInfoFilterSensitiveLog: (obj: AgentNetworkInfo) => any;
|
|
1459
|
+
/**
|
|
1460
|
+
* @internal
|
|
1461
|
+
*/
|
|
1462
|
+
export declare const AgentInfoFilterSensitiveLog: (obj: AgentInfo) => any;
|
|
1463
|
+
/**
|
|
1464
|
+
* @internal
|
|
1465
|
+
*/
|
|
1466
|
+
export declare const AssociateConfigurationItemsToApplicationRequestFilterSensitiveLog: (obj: AssociateConfigurationItemsToApplicationRequest) => any;
|
|
1467
|
+
/**
|
|
1468
|
+
* @internal
|
|
1469
|
+
*/
|
|
1470
|
+
export declare const AssociateConfigurationItemsToApplicationResponseFilterSensitiveLog: (obj: AssociateConfigurationItemsToApplicationResponse) => any;
|
|
1471
|
+
/**
|
|
1472
|
+
* @internal
|
|
1473
|
+
*/
|
|
1474
|
+
export declare const BatchDeleteImportDataRequestFilterSensitiveLog: (obj: BatchDeleteImportDataRequest) => any;
|
|
1475
|
+
/**
|
|
1476
|
+
* @internal
|
|
1477
|
+
*/
|
|
1478
|
+
export declare const BatchDeleteImportDataErrorFilterSensitiveLog: (obj: BatchDeleteImportDataError) => any;
|
|
1479
|
+
/**
|
|
1480
|
+
* @internal
|
|
1481
|
+
*/
|
|
1482
|
+
export declare const BatchDeleteImportDataResponseFilterSensitiveLog: (obj: BatchDeleteImportDataResponse) => any;
|
|
1483
|
+
/**
|
|
1484
|
+
* @internal
|
|
1485
|
+
*/
|
|
1486
|
+
export declare const CreateApplicationRequestFilterSensitiveLog: (obj: CreateApplicationRequest) => any;
|
|
1487
|
+
/**
|
|
1488
|
+
* @internal
|
|
1489
|
+
*/
|
|
1490
|
+
export declare const CreateApplicationResponseFilterSensitiveLog: (obj: CreateApplicationResponse) => any;
|
|
1491
|
+
/**
|
|
1492
|
+
* @internal
|
|
1493
|
+
*/
|
|
1494
|
+
export declare const TagFilterSensitiveLog: (obj: Tag) => any;
|
|
1495
|
+
/**
|
|
1496
|
+
* @internal
|
|
1497
|
+
*/
|
|
1498
|
+
export declare const CreateTagsRequestFilterSensitiveLog: (obj: CreateTagsRequest) => any;
|
|
1499
|
+
/**
|
|
1500
|
+
* @internal
|
|
1501
|
+
*/
|
|
1502
|
+
export declare const CreateTagsResponseFilterSensitiveLog: (obj: CreateTagsResponse) => any;
|
|
1503
|
+
/**
|
|
1504
|
+
* @internal
|
|
1505
|
+
*/
|
|
1506
|
+
export declare const DeleteApplicationsRequestFilterSensitiveLog: (obj: DeleteApplicationsRequest) => any;
|
|
1507
|
+
/**
|
|
1508
|
+
* @internal
|
|
1509
|
+
*/
|
|
1510
|
+
export declare const DeleteApplicationsResponseFilterSensitiveLog: (obj: DeleteApplicationsResponse) => any;
|
|
1511
|
+
/**
|
|
1512
|
+
* @internal
|
|
1513
|
+
*/
|
|
1514
|
+
export declare const DeleteTagsRequestFilterSensitiveLog: (obj: DeleteTagsRequest) => any;
|
|
1515
|
+
/**
|
|
1516
|
+
* @internal
|
|
1517
|
+
*/
|
|
1518
|
+
export declare const DeleteTagsResponseFilterSensitiveLog: (obj: DeleteTagsResponse) => any;
|
|
1519
|
+
/**
|
|
1520
|
+
* @internal
|
|
1521
|
+
*/
|
|
1522
|
+
export declare const FilterFilterSensitiveLog: (obj: Filter) => any;
|
|
1523
|
+
/**
|
|
1524
|
+
* @internal
|
|
1525
|
+
*/
|
|
1526
|
+
export declare const DescribeAgentsRequestFilterSensitiveLog: (obj: DescribeAgentsRequest) => any;
|
|
1527
|
+
/**
|
|
1528
|
+
* @internal
|
|
1529
|
+
*/
|
|
1530
|
+
export declare const DescribeAgentsResponseFilterSensitiveLog: (obj: DescribeAgentsResponse) => any;
|
|
1531
|
+
/**
|
|
1532
|
+
* @internal
|
|
1533
|
+
*/
|
|
1534
|
+
export declare const DescribeConfigurationsRequestFilterSensitiveLog: (obj: DescribeConfigurationsRequest) => any;
|
|
1535
|
+
/**
|
|
1536
|
+
* @internal
|
|
1537
|
+
*/
|
|
1538
|
+
export declare const DescribeConfigurationsResponseFilterSensitiveLog: (obj: DescribeConfigurationsResponse) => any;
|
|
1539
|
+
/**
|
|
1540
|
+
* @internal
|
|
1541
|
+
*/
|
|
1542
|
+
export declare const DescribeContinuousExportsRequestFilterSensitiveLog: (obj: DescribeContinuousExportsRequest) => any;
|
|
1543
|
+
/**
|
|
1544
|
+
* @internal
|
|
1545
|
+
*/
|
|
1546
|
+
export declare const ContinuousExportDescriptionFilterSensitiveLog: (obj: ContinuousExportDescription) => any;
|
|
1547
|
+
/**
|
|
1548
|
+
* @internal
|
|
1549
|
+
*/
|
|
1550
|
+
export declare const DescribeContinuousExportsResponseFilterSensitiveLog: (obj: DescribeContinuousExportsResponse) => any;
|
|
1551
|
+
/**
|
|
1552
|
+
* @internal
|
|
1553
|
+
*/
|
|
1554
|
+
export declare const DescribeExportConfigurationsRequestFilterSensitiveLog: (obj: DescribeExportConfigurationsRequest) => any;
|
|
1555
|
+
/**
|
|
1556
|
+
* @internal
|
|
1557
|
+
*/
|
|
1558
|
+
export declare const ExportInfoFilterSensitiveLog: (obj: ExportInfo) => any;
|
|
1559
|
+
/**
|
|
1560
|
+
* @internal
|
|
1561
|
+
*/
|
|
1562
|
+
export declare const DescribeExportConfigurationsResponseFilterSensitiveLog: (obj: DescribeExportConfigurationsResponse) => any;
|
|
1563
|
+
/**
|
|
1564
|
+
* @internal
|
|
1565
|
+
*/
|
|
1566
|
+
export declare const ExportFilterFilterSensitiveLog: (obj: ExportFilter) => any;
|
|
1567
|
+
/**
|
|
1568
|
+
* @internal
|
|
1569
|
+
*/
|
|
1570
|
+
export declare const DescribeExportTasksRequestFilterSensitiveLog: (obj: DescribeExportTasksRequest) => any;
|
|
1571
|
+
/**
|
|
1572
|
+
* @internal
|
|
1573
|
+
*/
|
|
1574
|
+
export declare const DescribeExportTasksResponseFilterSensitiveLog: (obj: DescribeExportTasksResponse) => any;
|
|
1575
|
+
/**
|
|
1576
|
+
* @internal
|
|
1577
|
+
*/
|
|
1578
|
+
export declare const ImportTaskFilterFilterSensitiveLog: (obj: ImportTaskFilter) => any;
|
|
1579
|
+
/**
|
|
1580
|
+
* @internal
|
|
1581
|
+
*/
|
|
1582
|
+
export declare const DescribeImportTasksRequestFilterSensitiveLog: (obj: DescribeImportTasksRequest) => any;
|
|
1583
|
+
/**
|
|
1584
|
+
* @internal
|
|
1585
|
+
*/
|
|
1586
|
+
export declare const ImportTaskFilterSensitiveLog: (obj: ImportTask) => any;
|
|
1587
|
+
/**
|
|
1588
|
+
* @internal
|
|
1589
|
+
*/
|
|
1590
|
+
export declare const DescribeImportTasksResponseFilterSensitiveLog: (obj: DescribeImportTasksResponse) => any;
|
|
1591
|
+
/**
|
|
1592
|
+
* @internal
|
|
1593
|
+
*/
|
|
1594
|
+
export declare const TagFilterFilterSensitiveLog: (obj: TagFilter) => any;
|
|
1595
|
+
/**
|
|
1596
|
+
* @internal
|
|
1597
|
+
*/
|
|
1598
|
+
export declare const DescribeTagsRequestFilterSensitiveLog: (obj: DescribeTagsRequest) => any;
|
|
1599
|
+
/**
|
|
1600
|
+
* @internal
|
|
1601
|
+
*/
|
|
1602
|
+
export declare const ConfigurationTagFilterSensitiveLog: (obj: ConfigurationTag) => any;
|
|
1603
|
+
/**
|
|
1604
|
+
* @internal
|
|
1605
|
+
*/
|
|
1606
|
+
export declare const DescribeTagsResponseFilterSensitiveLog: (obj: DescribeTagsResponse) => any;
|
|
1607
|
+
/**
|
|
1608
|
+
* @internal
|
|
1609
|
+
*/
|
|
1610
|
+
export declare const DisassociateConfigurationItemsFromApplicationRequestFilterSensitiveLog: (obj: DisassociateConfigurationItemsFromApplicationRequest) => any;
|
|
1611
|
+
/**
|
|
1612
|
+
* @internal
|
|
1613
|
+
*/
|
|
1614
|
+
export declare const DisassociateConfigurationItemsFromApplicationResponseFilterSensitiveLog: (obj: DisassociateConfigurationItemsFromApplicationResponse) => any;
|
|
1615
|
+
/**
|
|
1616
|
+
* @internal
|
|
1617
|
+
*/
|
|
1618
|
+
export declare const ExportConfigurationsResponseFilterSensitiveLog: (obj: ExportConfigurationsResponse) => any;
|
|
1619
|
+
/**
|
|
1620
|
+
* @internal
|
|
1621
|
+
*/
|
|
1622
|
+
export declare const GetDiscoverySummaryRequestFilterSensitiveLog: (obj: GetDiscoverySummaryRequest) => any;
|
|
1623
|
+
/**
|
|
1624
|
+
* @internal
|
|
1625
|
+
*/
|
|
1626
|
+
export declare const CustomerAgentlessCollectorInfoFilterSensitiveLog: (obj: CustomerAgentlessCollectorInfo) => any;
|
|
1627
|
+
/**
|
|
1628
|
+
* @internal
|
|
1629
|
+
*/
|
|
1630
|
+
export declare const CustomerAgentInfoFilterSensitiveLog: (obj: CustomerAgentInfo) => any;
|
|
1631
|
+
/**
|
|
1632
|
+
* @internal
|
|
1633
|
+
*/
|
|
1634
|
+
export declare const CustomerConnectorInfoFilterSensitiveLog: (obj: CustomerConnectorInfo) => any;
|
|
1635
|
+
/**
|
|
1636
|
+
* @internal
|
|
1637
|
+
*/
|
|
1638
|
+
export declare const CustomerMeCollectorInfoFilterSensitiveLog: (obj: CustomerMeCollectorInfo) => any;
|
|
1639
|
+
/**
|
|
1640
|
+
* @internal
|
|
1641
|
+
*/
|
|
1642
|
+
export declare const GetDiscoverySummaryResponseFilterSensitiveLog: (obj: GetDiscoverySummaryResponse) => any;
|
|
1643
|
+
/**
|
|
1644
|
+
* @internal
|
|
1645
|
+
*/
|
|
1646
|
+
export declare const OrderByElementFilterSensitiveLog: (obj: OrderByElement) => any;
|
|
1647
|
+
/**
|
|
1648
|
+
* @internal
|
|
1649
|
+
*/
|
|
1650
|
+
export declare const ListConfigurationsRequestFilterSensitiveLog: (obj: ListConfigurationsRequest) => any;
|
|
1651
|
+
/**
|
|
1652
|
+
* @internal
|
|
1653
|
+
*/
|
|
1654
|
+
export declare const ListConfigurationsResponseFilterSensitiveLog: (obj: ListConfigurationsResponse) => any;
|
|
1655
|
+
/**
|
|
1656
|
+
* @internal
|
|
1657
|
+
*/
|
|
1658
|
+
export declare const ListServerNeighborsRequestFilterSensitiveLog: (obj: ListServerNeighborsRequest) => any;
|
|
1659
|
+
/**
|
|
1660
|
+
* @internal
|
|
1661
|
+
*/
|
|
1662
|
+
export declare const NeighborConnectionDetailFilterSensitiveLog: (obj: NeighborConnectionDetail) => any;
|
|
1663
|
+
/**
|
|
1664
|
+
* @internal
|
|
1665
|
+
*/
|
|
1666
|
+
export declare const ListServerNeighborsResponseFilterSensitiveLog: (obj: ListServerNeighborsResponse) => any;
|
|
1667
|
+
/**
|
|
1668
|
+
* @internal
|
|
1669
|
+
*/
|
|
1670
|
+
export declare const StartContinuousExportRequestFilterSensitiveLog: (obj: StartContinuousExportRequest) => any;
|
|
1671
|
+
/**
|
|
1672
|
+
* @internal
|
|
1673
|
+
*/
|
|
1674
|
+
export declare const StartContinuousExportResponseFilterSensitiveLog: (obj: StartContinuousExportResponse) => any;
|
|
1675
|
+
/**
|
|
1676
|
+
* @internal
|
|
1677
|
+
*/
|
|
1678
|
+
export declare const StartDataCollectionByAgentIdsRequestFilterSensitiveLog: (obj: StartDataCollectionByAgentIdsRequest) => any;
|
|
1679
|
+
/**
|
|
1680
|
+
* @internal
|
|
1681
|
+
*/
|
|
1682
|
+
export declare const StartDataCollectionByAgentIdsResponseFilterSensitiveLog: (obj: StartDataCollectionByAgentIdsResponse) => any;
|
|
1683
|
+
/**
|
|
1684
|
+
* @internal
|
|
1685
|
+
*/
|
|
1686
|
+
export declare const StartExportTaskRequestFilterSensitiveLog: (obj: StartExportTaskRequest) => any;
|
|
1687
|
+
/**
|
|
1688
|
+
* @internal
|
|
1689
|
+
*/
|
|
1690
|
+
export declare const StartExportTaskResponseFilterSensitiveLog: (obj: StartExportTaskResponse) => any;
|
|
1691
|
+
/**
|
|
1692
|
+
* @internal
|
|
1693
|
+
*/
|
|
1694
|
+
export declare const StartImportTaskRequestFilterSensitiveLog: (obj: StartImportTaskRequest) => any;
|
|
1695
|
+
/**
|
|
1696
|
+
* @internal
|
|
1697
|
+
*/
|
|
1698
|
+
export declare const StartImportTaskResponseFilterSensitiveLog: (obj: StartImportTaskResponse) => any;
|
|
1699
|
+
/**
|
|
1700
|
+
* @internal
|
|
1701
|
+
*/
|
|
1702
|
+
export declare const StopContinuousExportRequestFilterSensitiveLog: (obj: StopContinuousExportRequest) => any;
|
|
1703
|
+
/**
|
|
1704
|
+
* @internal
|
|
1705
|
+
*/
|
|
1706
|
+
export declare const StopContinuousExportResponseFilterSensitiveLog: (obj: StopContinuousExportResponse) => any;
|
|
1707
|
+
/**
|
|
1708
|
+
* @internal
|
|
1709
|
+
*/
|
|
1710
|
+
export declare const StopDataCollectionByAgentIdsRequestFilterSensitiveLog: (obj: StopDataCollectionByAgentIdsRequest) => any;
|
|
1711
|
+
/**
|
|
1712
|
+
* @internal
|
|
1713
|
+
*/
|
|
1714
|
+
export declare const StopDataCollectionByAgentIdsResponseFilterSensitiveLog: (obj: StopDataCollectionByAgentIdsResponse) => any;
|
|
1715
|
+
/**
|
|
1716
|
+
* @internal
|
|
1717
|
+
*/
|
|
1718
|
+
export declare const UpdateApplicationRequestFilterSensitiveLog: (obj: UpdateApplicationRequest) => any;
|
|
1719
|
+
/**
|
|
1720
|
+
* @internal
|
|
1721
|
+
*/
|
|
1722
|
+
export declare const UpdateApplicationResponseFilterSensitiveLog: (obj: UpdateApplicationResponse) => any;
|