@aws-sdk/client-application-discovery-service 3.169.0 → 3.170.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.
Files changed (44) hide show
  1. package/CHANGELOG.md +8 -0
  2. package/dist-types/ts3.4/ApplicationDiscoveryService.d.ts +466 -130
  3. package/dist-types/ts3.4/ApplicationDiscoveryServiceClient.d.ts +280 -98
  4. package/dist-types/ts3.4/commands/AssociateConfigurationItemsToApplicationCommand.d.ts +41 -17
  5. package/dist-types/ts3.4/commands/BatchDeleteImportDataCommand.d.ts +41 -17
  6. package/dist-types/ts3.4/commands/CreateApplicationCommand.d.ts +38 -17
  7. package/dist-types/ts3.4/commands/CreateTagsCommand.d.ts +34 -17
  8. package/dist-types/ts3.4/commands/DeleteApplicationsCommand.d.ts +38 -17
  9. package/dist-types/ts3.4/commands/DeleteTagsCommand.d.ts +34 -17
  10. package/dist-types/ts3.4/commands/DescribeAgentsCommand.d.ts +37 -17
  11. package/dist-types/ts3.4/commands/DescribeConfigurationsCommand.d.ts +41 -17
  12. package/dist-types/ts3.4/commands/DescribeContinuousExportsCommand.d.ts +41 -17
  13. package/dist-types/ts3.4/commands/DescribeExportConfigurationsCommand.d.ts +41 -17
  14. package/dist-types/ts3.4/commands/DescribeExportTasksCommand.d.ts +38 -17
  15. package/dist-types/ts3.4/commands/DescribeImportTasksCommand.d.ts +38 -17
  16. package/dist-types/ts3.4/commands/DescribeTagsCommand.d.ts +34 -17
  17. package/dist-types/ts3.4/commands/DisassociateConfigurationItemsFromApplicationCommand.d.ts +41 -17
  18. package/dist-types/ts3.4/commands/ExportConfigurationsCommand.d.ts +37 -17
  19. package/dist-types/ts3.4/commands/GetDiscoverySummaryCommand.d.ts +38 -17
  20. package/dist-types/ts3.4/commands/ListConfigurationsCommand.d.ts +38 -17
  21. package/dist-types/ts3.4/commands/ListServerNeighborsCommand.d.ts +38 -17
  22. package/dist-types/ts3.4/commands/StartContinuousExportCommand.d.ts +41 -17
  23. package/dist-types/ts3.4/commands/StartDataCollectionByAgentIdsCommand.d.ts +41 -17
  24. package/dist-types/ts3.4/commands/StartExportTaskCommand.d.ts +37 -17
  25. package/dist-types/ts3.4/commands/StartImportTaskCommand.d.ts +37 -17
  26. package/dist-types/ts3.4/commands/StopContinuousExportCommand.d.ts +41 -17
  27. package/dist-types/ts3.4/commands/StopDataCollectionByAgentIdsCommand.d.ts +41 -17
  28. package/dist-types/ts3.4/commands/UpdateApplicationCommand.d.ts +38 -17
  29. package/dist-types/ts3.4/commands/index.d.ts +25 -25
  30. package/dist-types/ts3.4/endpoints.d.ts +2 -2
  31. package/dist-types/ts3.4/index.d.ts +6 -6
  32. package/dist-types/ts3.4/models/ApplicationDiscoveryServiceServiceException.d.ts +8 -6
  33. package/dist-types/ts3.4/models/index.d.ts +1 -1
  34. package/dist-types/ts3.4/models/models_0.d.ts +872 -799
  35. package/dist-types/ts3.4/pagination/DescribeContinuousExportsPaginator.d.ts +11 -4
  36. package/dist-types/ts3.4/pagination/DescribeImportTasksPaginator.d.ts +11 -4
  37. package/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -6
  38. package/dist-types/ts3.4/pagination/index.d.ts +3 -3
  39. package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +305 -77
  40. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +68 -38
  41. package/dist-types/ts3.4/runtimeConfig.d.ts +68 -38
  42. package/dist-types/ts3.4/runtimeConfig.native.d.ts +69 -37
  43. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +13 -11
  44. package/package.json +34 -34
@@ -1,799 +1,872 @@
1
- import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
2
- import { ApplicationDiscoveryServiceServiceException as __BaseException } from "./ApplicationDiscoveryServiceServiceException";
3
-
4
- export interface AgentConfigurationStatus {
5
-
6
- agentId?: string;
7
-
8
- operationSucceeded?: boolean;
9
-
10
- description?: string;
11
- }
12
-
13
- export interface AgentNetworkInfo {
14
-
15
- ipAddress?: string;
16
-
17
- macAddress?: string;
18
- }
19
- export declare enum AgentStatus {
20
- BLACKLISTED = "BLACKLISTED",
21
- HEALTHY = "HEALTHY",
22
- RUNNING = "RUNNING",
23
- SHUTDOWN = "SHUTDOWN",
24
- UNHEALTHY = "UNHEALTHY",
25
- UNKNOWN = "UNKNOWN"
26
- }
27
-
28
- export interface AgentInfo {
29
-
30
- agentId?: string;
31
-
32
- hostName?: string;
33
-
34
- agentNetworkInfoList?: AgentNetworkInfo[];
35
-
36
- connectorId?: string;
37
-
38
- version?: string;
39
-
40
- health?: AgentStatus | string;
41
-
42
- lastHealthPingTime?: string;
43
-
44
- collectionStatus?: string;
45
-
46
- agentType?: string;
47
-
48
- registeredTime?: string;
49
- }
50
- export interface AssociateConfigurationItemsToApplicationRequest {
51
-
52
- applicationConfigurationId: string | undefined;
53
-
54
- configurationIds: string[] | undefined;
55
- }
56
- export interface AssociateConfigurationItemsToApplicationResponse {
57
- }
58
-
59
- export declare class AuthorizationErrorException extends __BaseException {
60
- readonly name: "AuthorizationErrorException";
61
- readonly $fault: "client";
62
-
63
- constructor(opts: __ExceptionOptionType<AuthorizationErrorException, __BaseException>);
64
- }
65
-
66
- export declare class HomeRegionNotSetException extends __BaseException {
67
- readonly name: "HomeRegionNotSetException";
68
- readonly $fault: "client";
69
-
70
- constructor(opts: __ExceptionOptionType<HomeRegionNotSetException, __BaseException>);
71
- }
72
-
73
- export declare class InvalidParameterException extends __BaseException {
74
- readonly name: "InvalidParameterException";
75
- readonly $fault: "client";
76
-
77
- constructor(opts: __ExceptionOptionType<InvalidParameterException, __BaseException>);
78
- }
79
-
80
- export declare class InvalidParameterValueException extends __BaseException {
81
- readonly name: "InvalidParameterValueException";
82
- readonly $fault: "client";
83
-
84
- constructor(opts: __ExceptionOptionType<InvalidParameterValueException, __BaseException>);
85
- }
86
-
87
- export declare class ServerInternalErrorException extends __BaseException {
88
- readonly name: "ServerInternalErrorException";
89
- readonly $fault: "server";
90
-
91
- constructor(opts: __ExceptionOptionType<ServerInternalErrorException, __BaseException>);
92
- }
93
- export interface BatchDeleteImportDataRequest {
94
-
95
- importTaskIds: string[] | undefined;
96
- }
97
- export declare enum BatchDeleteImportDataErrorCode {
98
- INTERNAL_SERVER_ERROR = "INTERNAL_SERVER_ERROR",
99
- NOT_FOUND = "NOT_FOUND",
100
- OVER_LIMIT = "OVER_LIMIT"
101
- }
102
-
103
- export interface BatchDeleteImportDataError {
104
-
105
- importTaskId?: string;
106
-
107
- errorCode?: BatchDeleteImportDataErrorCode | string;
108
-
109
- errorDescription?: string;
110
- }
111
- export interface BatchDeleteImportDataResponse {
112
-
113
- errors?: BatchDeleteImportDataError[];
114
- }
115
- export interface CreateApplicationRequest {
116
-
117
- name: string | undefined;
118
-
119
- description?: string;
120
- }
121
- export interface CreateApplicationResponse {
122
-
123
- configurationId?: string;
124
- }
125
-
126
- export interface Tag {
127
-
128
- key: string | undefined;
129
-
130
- value: string | undefined;
131
- }
132
- export interface CreateTagsRequest {
133
-
134
- configurationIds: string[] | undefined;
135
-
136
- tags: Tag[] | undefined;
137
- }
138
- export interface CreateTagsResponse {
139
- }
140
-
141
- export declare class ResourceNotFoundException extends __BaseException {
142
- readonly name: "ResourceNotFoundException";
143
- readonly $fault: "client";
144
-
145
- constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
146
- }
147
- export interface DeleteApplicationsRequest {
148
-
149
- configurationIds: string[] | undefined;
150
- }
151
- export interface DeleteApplicationsResponse {
152
- }
153
- export interface DeleteTagsRequest {
154
-
155
- configurationIds: string[] | undefined;
156
-
157
- tags?: Tag[];
158
- }
159
- export interface DeleteTagsResponse {
160
- }
161
-
162
- export interface Filter {
163
-
164
- name: string | undefined;
165
-
166
- values: string[] | undefined;
167
-
168
- condition: string | undefined;
169
- }
170
- export interface DescribeAgentsRequest {
171
-
172
- agentIds?: string[];
173
-
174
- filters?: Filter[];
175
-
176
- maxResults?: number;
177
-
178
- nextToken?: string;
179
- }
180
- export interface DescribeAgentsResponse {
181
-
182
- agentsInfo?: AgentInfo[];
183
-
184
- nextToken?: string;
185
- }
186
- export interface DescribeConfigurationsRequest {
187
-
188
- configurationIds: string[] | undefined;
189
- }
190
- export interface DescribeConfigurationsResponse {
191
-
192
- configurations?: Record<string, string>[];
193
- }
194
- export interface DescribeContinuousExportsRequest {
195
-
196
- exportIds?: string[];
197
-
198
- maxResults?: number;
199
-
200
- nextToken?: string;
201
- }
202
- export declare enum DataSource {
203
- AGENT = "AGENT"
204
- }
205
- export declare enum ContinuousExportStatus {
206
- ACTIVE = "ACTIVE",
207
- ERROR = "ERROR",
208
- INACTIVE = "INACTIVE",
209
- START_FAILED = "START_FAILED",
210
- START_IN_PROGRESS = "START_IN_PROGRESS",
211
- STOP_FAILED = "STOP_FAILED",
212
- STOP_IN_PROGRESS = "STOP_IN_PROGRESS"
213
- }
214
-
215
- export interface ContinuousExportDescription {
216
-
217
- exportId?: string;
218
-
219
- status?: ContinuousExportStatus | string;
220
-
221
- statusDetail?: string;
222
-
223
- s3Bucket?: string;
224
-
225
- startTime?: Date;
226
-
227
- stopTime?: Date;
228
-
229
- dataSource?: DataSource | string;
230
-
231
- schemaStorageConfig?: Record<string, string>;
232
- }
233
- export interface DescribeContinuousExportsResponse {
234
-
235
- descriptions?: ContinuousExportDescription[];
236
-
237
- nextToken?: string;
238
- }
239
-
240
- export declare class OperationNotPermittedException extends __BaseException {
241
- readonly name: "OperationNotPermittedException";
242
- readonly $fault: "client";
243
-
244
- constructor(opts: __ExceptionOptionType<OperationNotPermittedException, __BaseException>);
245
- }
246
- export interface DescribeExportConfigurationsRequest {
247
-
248
- exportIds?: string[];
249
-
250
- maxResults?: number;
251
-
252
- nextToken?: string;
253
- }
254
- export declare enum ExportStatus {
255
- FAILED = "FAILED",
256
- IN_PROGRESS = "IN_PROGRESS",
257
- SUCCEEDED = "SUCCEEDED"
258
- }
259
-
260
- export interface ExportInfo {
261
-
262
- exportId: string | undefined;
263
-
264
- exportStatus: ExportStatus | string | undefined;
265
-
266
- statusMessage: string | undefined;
267
-
268
- configurationsDownloadUrl?: string;
269
-
270
- exportRequestTime: Date | undefined;
271
-
272
- isTruncated?: boolean;
273
-
274
- requestedStartTime?: Date;
275
-
276
- requestedEndTime?: Date;
277
- }
278
- export interface DescribeExportConfigurationsResponse {
279
-
280
- exportsInfo?: ExportInfo[];
281
-
282
- nextToken?: string;
283
- }
284
-
285
- export interface ExportFilter {
286
-
287
- name: string | undefined;
288
-
289
- values: string[] | undefined;
290
-
291
- condition: string | undefined;
292
- }
293
- export interface DescribeExportTasksRequest {
294
-
295
- exportIds?: string[];
296
-
297
- filters?: ExportFilter[];
298
-
299
- maxResults?: number;
300
-
301
- nextToken?: string;
302
- }
303
- export interface DescribeExportTasksResponse {
304
-
305
- exportsInfo?: ExportInfo[];
306
-
307
- nextToken?: string;
308
- }
309
- export declare enum ImportTaskFilterName {
310
- IMPORT_TASK_ID = "IMPORT_TASK_ID",
311
- NAME = "NAME",
312
- STATUS = "STATUS"
313
- }
314
-
315
- export interface ImportTaskFilter {
316
-
317
- name?: ImportTaskFilterName | string;
318
-
319
- values?: string[];
320
- }
321
- export interface DescribeImportTasksRequest {
322
-
323
- filters?: ImportTaskFilter[];
324
-
325
- maxResults?: number;
326
-
327
- nextToken?: string;
328
- }
329
- export declare enum ImportStatus {
330
- DELETE_COMPLETE = "DELETE_COMPLETE",
331
- DELETE_FAILED = "DELETE_FAILED",
332
- DELETE_FAILED_LIMIT_EXCEEDED = "DELETE_FAILED_LIMIT_EXCEEDED",
333
- DELETE_IN_PROGRESS = "DELETE_IN_PROGRESS",
334
- IMPORT_COMPLETE = "IMPORT_COMPLETE",
335
- IMPORT_COMPLETE_WITH_ERRORS = "IMPORT_COMPLETE_WITH_ERRORS",
336
- IMPORT_FAILED = "IMPORT_FAILED",
337
- IMPORT_FAILED_RECORD_LIMIT_EXCEEDED = "IMPORT_FAILED_RECORD_LIMIT_EXCEEDED",
338
- IMPORT_FAILED_SERVER_LIMIT_EXCEEDED = "IMPORT_FAILED_SERVER_LIMIT_EXCEEDED",
339
- IMPORT_IN_PROGRESS = "IMPORT_IN_PROGRESS",
340
- INTERNAL_ERROR = "INTERNAL_ERROR"
341
- }
342
-
343
- export interface ImportTask {
344
-
345
- importTaskId?: string;
346
-
347
- clientRequestToken?: string;
348
-
349
- name?: string;
350
-
351
- importUrl?: string;
352
-
353
- status?: ImportStatus | string;
354
-
355
- importRequestTime?: Date;
356
-
357
- importCompletionTime?: Date;
358
-
359
- importDeletedTime?: Date;
360
-
361
- serverImportSuccess?: number;
362
-
363
- serverImportFailure?: number;
364
-
365
- applicationImportSuccess?: number;
366
-
367
- applicationImportFailure?: number;
368
-
369
- errorsAndFailedEntriesZip?: string;
370
- }
371
- export interface DescribeImportTasksResponse {
372
-
373
- nextToken?: string;
374
-
375
- tasks?: ImportTask[];
376
- }
377
-
378
- export interface TagFilter {
379
-
380
- name: string | undefined;
381
-
382
- values: string[] | undefined;
383
- }
384
- export interface DescribeTagsRequest {
385
-
386
- filters?: TagFilter[];
387
-
388
- maxResults?: number;
389
-
390
- nextToken?: string;
391
- }
392
- export declare enum ConfigurationItemType {
393
- APPLICATION = "APPLICATION",
394
- CONNECTIONS = "CONNECTION",
395
- PROCESS = "PROCESS",
396
- SERVER = "SERVER"
397
- }
398
-
399
- export interface ConfigurationTag {
400
-
401
- configurationType?: ConfigurationItemType | string;
402
-
403
- configurationId?: string;
404
-
405
- key?: string;
406
-
407
- value?: string;
408
-
409
- timeOfCreation?: Date;
410
- }
411
- export interface DescribeTagsResponse {
412
-
413
- tags?: ConfigurationTag[];
414
-
415
- nextToken?: string;
416
- }
417
- export interface DisassociateConfigurationItemsFromApplicationRequest {
418
-
419
- applicationConfigurationId: string | undefined;
420
-
421
- configurationIds: string[] | undefined;
422
- }
423
- export interface DisassociateConfigurationItemsFromApplicationResponse {
424
- }
425
- export interface ExportConfigurationsResponse {
426
-
427
- exportId?: string;
428
- }
429
- export interface GetDiscoverySummaryRequest {
430
- }
431
- export interface CustomerAgentlessCollectorInfo {
432
- activeAgentlessCollectors: number | undefined;
433
- healthyAgentlessCollectors: number | undefined;
434
- denyListedAgentlessCollectors: number | undefined;
435
- shutdownAgentlessCollectors: number | undefined;
436
- unhealthyAgentlessCollectors: number | undefined;
437
- totalAgentlessCollectors: number | undefined;
438
- unknownAgentlessCollectors: number | undefined;
439
- }
440
-
441
- export interface CustomerAgentInfo {
442
-
443
- activeAgents: number | undefined;
444
-
445
- healthyAgents: number | undefined;
446
-
447
- blackListedAgents: number | undefined;
448
-
449
- shutdownAgents: number | undefined;
450
-
451
- unhealthyAgents: number | undefined;
452
-
453
- totalAgents: number | undefined;
454
-
455
- unknownAgents: number | undefined;
456
- }
457
-
458
- export interface CustomerConnectorInfo {
459
-
460
- activeConnectors: number | undefined;
461
-
462
- healthyConnectors: number | undefined;
463
-
464
- blackListedConnectors: number | undefined;
465
-
466
- shutdownConnectors: number | undefined;
467
-
468
- unhealthyConnectors: number | undefined;
469
-
470
- totalConnectors: number | undefined;
471
-
472
- unknownConnectors: number | undefined;
473
- }
474
-
475
- export interface CustomerMeCollectorInfo {
476
-
477
- activeMeCollectors: number | undefined;
478
-
479
- healthyMeCollectors: number | undefined;
480
-
481
- denyListedMeCollectors: number | undefined;
482
-
483
- shutdownMeCollectors: number | undefined;
484
-
485
- unhealthyMeCollectors: number | undefined;
486
-
487
- totalMeCollectors: number | undefined;
488
-
489
- unknownMeCollectors: number | undefined;
490
- }
491
- export interface GetDiscoverySummaryResponse {
492
-
493
- servers?: number;
494
-
495
- applications?: number;
496
-
497
- serversMappedToApplications?: number;
498
-
499
- serversMappedtoTags?: number;
500
-
501
- agentSummary?: CustomerAgentInfo;
502
-
503
- connectorSummary?: CustomerConnectorInfo;
504
-
505
- meCollectorSummary?: CustomerMeCollectorInfo;
506
- agentlessCollectorSummary?: CustomerAgentlessCollectorInfo;
507
- }
508
- export declare enum OrderString {
509
- ASC = "ASC",
510
- DESC = "DESC"
511
- }
512
-
513
- export interface OrderByElement {
514
-
515
- fieldName: string | undefined;
516
-
517
- sortOrder?: OrderString | string;
518
- }
519
- export interface ListConfigurationsRequest {
520
-
521
- configurationType: ConfigurationItemType | string | undefined;
522
-
523
- filters?: Filter[];
524
-
525
- maxResults?: number;
526
-
527
- nextToken?: string;
528
-
529
- orderBy?: OrderByElement[];
530
- }
531
- export interface ListConfigurationsResponse {
532
-
533
- configurations?: Record<string, string>[];
534
-
535
- nextToken?: string;
536
- }
537
- export interface ListServerNeighborsRequest {
538
-
539
- configurationId: string | undefined;
540
-
541
- portInformationNeeded?: boolean;
542
-
543
- neighborConfigurationIds?: string[];
544
-
545
- maxResults?: number;
546
-
547
- nextToken?: string;
548
- }
549
-
550
- export interface NeighborConnectionDetail {
551
-
552
- sourceServerId: string | undefined;
553
-
554
- destinationServerId: string | undefined;
555
-
556
- destinationPort?: number;
557
-
558
- transportProtocol?: string;
559
-
560
- connectionsCount: number | undefined;
561
- }
562
- export interface ListServerNeighborsResponse {
563
-
564
- neighbors: NeighborConnectionDetail[] | undefined;
565
-
566
- nextToken?: string;
567
-
568
- knownDependencyCount?: number;
569
- }
570
-
571
- export declare class ConflictErrorException extends __BaseException {
572
- readonly name: "ConflictErrorException";
573
- readonly $fault: "client";
574
-
575
- constructor(opts: __ExceptionOptionType<ConflictErrorException, __BaseException>);
576
- }
577
-
578
- export declare class ResourceInUseException extends __BaseException {
579
- readonly name: "ResourceInUseException";
580
- readonly $fault: "client";
581
-
582
- constructor(opts: __ExceptionOptionType<ResourceInUseException, __BaseException>);
583
- }
584
- export interface StartContinuousExportRequest {
585
- }
586
- export interface StartContinuousExportResponse {
587
-
588
- exportId?: string;
589
-
590
- s3Bucket?: string;
591
-
592
- startTime?: Date;
593
-
594
- dataSource?: DataSource | string;
595
-
596
- schemaStorageConfig?: Record<string, string>;
597
- }
598
- export interface StartDataCollectionByAgentIdsRequest {
599
-
600
- agentIds: string[] | undefined;
601
- }
602
- export interface StartDataCollectionByAgentIdsResponse {
603
-
604
- agentsConfigurationStatus?: AgentConfigurationStatus[];
605
- }
606
- export declare enum ExportDataFormat {
607
- CSV = "CSV",
608
- GRAPHML = "GRAPHML"
609
- }
610
- export interface StartExportTaskRequest {
611
-
612
- exportDataFormat?: (ExportDataFormat | string)[];
613
-
614
- filters?: ExportFilter[];
615
-
616
- startTime?: Date;
617
-
618
- endTime?: Date;
619
- }
620
- export interface StartExportTaskResponse {
621
-
622
- exportId?: string;
623
- }
624
- export interface StartImportTaskRequest {
625
-
626
- clientRequestToken?: string;
627
-
628
- name: string | undefined;
629
-
630
- importUrl: string | undefined;
631
- }
632
- export interface StartImportTaskResponse {
633
-
634
- task?: ImportTask;
635
- }
636
- export interface StopContinuousExportRequest {
637
-
638
- exportId: string | undefined;
639
- }
640
- export interface StopContinuousExportResponse {
641
-
642
- startTime?: Date;
643
-
644
- stopTime?: Date;
645
- }
646
- export interface StopDataCollectionByAgentIdsRequest {
647
-
648
- agentIds: string[] | undefined;
649
- }
650
- export interface StopDataCollectionByAgentIdsResponse {
651
-
652
- agentsConfigurationStatus?: AgentConfigurationStatus[];
653
- }
654
- export interface UpdateApplicationRequest {
655
-
656
- configurationId: string | undefined;
657
-
658
- name?: string;
659
-
660
- description?: string;
661
- }
662
- export interface UpdateApplicationResponse {
663
- }
664
-
665
- export declare const AgentConfigurationStatusFilterSensitiveLog: (obj: AgentConfigurationStatus) => any;
666
-
667
- export declare const AgentNetworkInfoFilterSensitiveLog: (obj: AgentNetworkInfo) => any;
668
-
669
- export declare const AgentInfoFilterSensitiveLog: (obj: AgentInfo) => any;
670
-
671
- export declare const AssociateConfigurationItemsToApplicationRequestFilterSensitiveLog: (obj: AssociateConfigurationItemsToApplicationRequest) => any;
672
-
673
- export declare const AssociateConfigurationItemsToApplicationResponseFilterSensitiveLog: (obj: AssociateConfigurationItemsToApplicationResponse) => any;
674
-
675
- export declare const BatchDeleteImportDataRequestFilterSensitiveLog: (obj: BatchDeleteImportDataRequest) => any;
676
-
677
- export declare const BatchDeleteImportDataErrorFilterSensitiveLog: (obj: BatchDeleteImportDataError) => any;
678
-
679
- export declare const BatchDeleteImportDataResponseFilterSensitiveLog: (obj: BatchDeleteImportDataResponse) => any;
680
-
681
- export declare const CreateApplicationRequestFilterSensitiveLog: (obj: CreateApplicationRequest) => any;
682
-
683
- export declare const CreateApplicationResponseFilterSensitiveLog: (obj: CreateApplicationResponse) => any;
684
-
685
- export declare const TagFilterSensitiveLog: (obj: Tag) => any;
686
-
687
- export declare const CreateTagsRequestFilterSensitiveLog: (obj: CreateTagsRequest) => any;
688
-
689
- export declare const CreateTagsResponseFilterSensitiveLog: (obj: CreateTagsResponse) => any;
690
-
691
- export declare const DeleteApplicationsRequestFilterSensitiveLog: (obj: DeleteApplicationsRequest) => any;
692
-
693
- export declare const DeleteApplicationsResponseFilterSensitiveLog: (obj: DeleteApplicationsResponse) => any;
694
-
695
- export declare const DeleteTagsRequestFilterSensitiveLog: (obj: DeleteTagsRequest) => any;
696
-
697
- export declare const DeleteTagsResponseFilterSensitiveLog: (obj: DeleteTagsResponse) => any;
698
-
699
- export declare const FilterFilterSensitiveLog: (obj: Filter) => any;
700
-
701
- export declare const DescribeAgentsRequestFilterSensitiveLog: (obj: DescribeAgentsRequest) => any;
702
-
703
- export declare const DescribeAgentsResponseFilterSensitiveLog: (obj: DescribeAgentsResponse) => any;
704
-
705
- export declare const DescribeConfigurationsRequestFilterSensitiveLog: (obj: DescribeConfigurationsRequest) => any;
706
-
707
- export declare const DescribeConfigurationsResponseFilterSensitiveLog: (obj: DescribeConfigurationsResponse) => any;
708
-
709
- export declare const DescribeContinuousExportsRequestFilterSensitiveLog: (obj: DescribeContinuousExportsRequest) => any;
710
-
711
- export declare const ContinuousExportDescriptionFilterSensitiveLog: (obj: ContinuousExportDescription) => any;
712
-
713
- export declare const DescribeContinuousExportsResponseFilterSensitiveLog: (obj: DescribeContinuousExportsResponse) => any;
714
-
715
- export declare const DescribeExportConfigurationsRequestFilterSensitiveLog: (obj: DescribeExportConfigurationsRequest) => any;
716
-
717
- export declare const ExportInfoFilterSensitiveLog: (obj: ExportInfo) => any;
718
-
719
- export declare const DescribeExportConfigurationsResponseFilterSensitiveLog: (obj: DescribeExportConfigurationsResponse) => any;
720
-
721
- export declare const ExportFilterFilterSensitiveLog: (obj: ExportFilter) => any;
722
-
723
- export declare const DescribeExportTasksRequestFilterSensitiveLog: (obj: DescribeExportTasksRequest) => any;
724
-
725
- export declare const DescribeExportTasksResponseFilterSensitiveLog: (obj: DescribeExportTasksResponse) => any;
726
-
727
- export declare const ImportTaskFilterFilterSensitiveLog: (obj: ImportTaskFilter) => any;
728
-
729
- export declare const DescribeImportTasksRequestFilterSensitiveLog: (obj: DescribeImportTasksRequest) => any;
730
-
731
- export declare const ImportTaskFilterSensitiveLog: (obj: ImportTask) => any;
732
-
733
- export declare const DescribeImportTasksResponseFilterSensitiveLog: (obj: DescribeImportTasksResponse) => any;
734
-
735
- export declare const TagFilterFilterSensitiveLog: (obj: TagFilter) => any;
736
-
737
- export declare const DescribeTagsRequestFilterSensitiveLog: (obj: DescribeTagsRequest) => any;
738
-
739
- export declare const ConfigurationTagFilterSensitiveLog: (obj: ConfigurationTag) => any;
740
-
741
- export declare const DescribeTagsResponseFilterSensitiveLog: (obj: DescribeTagsResponse) => any;
742
-
743
- export declare const DisassociateConfigurationItemsFromApplicationRequestFilterSensitiveLog: (obj: DisassociateConfigurationItemsFromApplicationRequest) => any;
744
-
745
- export declare const DisassociateConfigurationItemsFromApplicationResponseFilterSensitiveLog: (obj: DisassociateConfigurationItemsFromApplicationResponse) => any;
746
-
747
- export declare const ExportConfigurationsResponseFilterSensitiveLog: (obj: ExportConfigurationsResponse) => any;
748
-
749
- export declare const GetDiscoverySummaryRequestFilterSensitiveLog: (obj: GetDiscoverySummaryRequest) => any;
750
-
751
- export declare const CustomerAgentlessCollectorInfoFilterSensitiveLog: (obj: CustomerAgentlessCollectorInfo) => any;
752
-
753
- export declare const CustomerAgentInfoFilterSensitiveLog: (obj: CustomerAgentInfo) => any;
754
-
755
- export declare const CustomerConnectorInfoFilterSensitiveLog: (obj: CustomerConnectorInfo) => any;
756
-
757
- export declare const CustomerMeCollectorInfoFilterSensitiveLog: (obj: CustomerMeCollectorInfo) => any;
758
-
759
- export declare const GetDiscoverySummaryResponseFilterSensitiveLog: (obj: GetDiscoverySummaryResponse) => any;
760
-
761
- export declare const OrderByElementFilterSensitiveLog: (obj: OrderByElement) => any;
762
-
763
- export declare const ListConfigurationsRequestFilterSensitiveLog: (obj: ListConfigurationsRequest) => any;
764
-
765
- export declare const ListConfigurationsResponseFilterSensitiveLog: (obj: ListConfigurationsResponse) => any;
766
-
767
- export declare const ListServerNeighborsRequestFilterSensitiveLog: (obj: ListServerNeighborsRequest) => any;
768
-
769
- export declare const NeighborConnectionDetailFilterSensitiveLog: (obj: NeighborConnectionDetail) => any;
770
-
771
- export declare const ListServerNeighborsResponseFilterSensitiveLog: (obj: ListServerNeighborsResponse) => any;
772
-
773
- export declare const StartContinuousExportRequestFilterSensitiveLog: (obj: StartContinuousExportRequest) => any;
774
-
775
- export declare const StartContinuousExportResponseFilterSensitiveLog: (obj: StartContinuousExportResponse) => any;
776
-
777
- export declare const StartDataCollectionByAgentIdsRequestFilterSensitiveLog: (obj: StartDataCollectionByAgentIdsRequest) => any;
778
-
779
- export declare const StartDataCollectionByAgentIdsResponseFilterSensitiveLog: (obj: StartDataCollectionByAgentIdsResponse) => any;
780
-
781
- export declare const StartExportTaskRequestFilterSensitiveLog: (obj: StartExportTaskRequest) => any;
782
-
783
- export declare const StartExportTaskResponseFilterSensitiveLog: (obj: StartExportTaskResponse) => any;
784
-
785
- export declare const StartImportTaskRequestFilterSensitiveLog: (obj: StartImportTaskRequest) => any;
786
-
787
- export declare const StartImportTaskResponseFilterSensitiveLog: (obj: StartImportTaskResponse) => any;
788
-
789
- export declare const StopContinuousExportRequestFilterSensitiveLog: (obj: StopContinuousExportRequest) => any;
790
-
791
- export declare const StopContinuousExportResponseFilterSensitiveLog: (obj: StopContinuousExportResponse) => any;
792
-
793
- export declare const StopDataCollectionByAgentIdsRequestFilterSensitiveLog: (obj: StopDataCollectionByAgentIdsRequest) => any;
794
-
795
- export declare const StopDataCollectionByAgentIdsResponseFilterSensitiveLog: (obj: StopDataCollectionByAgentIdsResponse) => any;
796
-
797
- export declare const UpdateApplicationRequestFilterSensitiveLog: (obj: UpdateApplicationRequest) => any;
798
-
799
- export declare const UpdateApplicationResponseFilterSensitiveLog: (obj: UpdateApplicationResponse) => any;
1
+ import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
2
+ import { ApplicationDiscoveryServiceServiceException as __BaseException } from "./ApplicationDiscoveryServiceServiceException";
3
+
4
+ export interface AgentConfigurationStatus {
5
+ agentId?: string;
6
+
7
+ operationSucceeded?: boolean;
8
+
9
+ description?: string;
10
+ }
11
+
12
+ export interface AgentNetworkInfo {
13
+ ipAddress?: string;
14
+
15
+ macAddress?: string;
16
+ }
17
+ export declare enum AgentStatus {
18
+ BLACKLISTED = "BLACKLISTED",
19
+ HEALTHY = "HEALTHY",
20
+ RUNNING = "RUNNING",
21
+ SHUTDOWN = "SHUTDOWN",
22
+ UNHEALTHY = "UNHEALTHY",
23
+ UNKNOWN = "UNKNOWN",
24
+ }
25
+
26
+ export interface AgentInfo {
27
+ agentId?: string;
28
+
29
+ hostName?: string;
30
+
31
+ agentNetworkInfoList?: AgentNetworkInfo[];
32
+
33
+ connectorId?: string;
34
+
35
+ version?: string;
36
+
37
+ health?: AgentStatus | string;
38
+
39
+ lastHealthPingTime?: string;
40
+
41
+ collectionStatus?: string;
42
+
43
+ agentType?: string;
44
+
45
+ registeredTime?: string;
46
+ }
47
+ export interface AssociateConfigurationItemsToApplicationRequest {
48
+ applicationConfigurationId: string | undefined;
49
+
50
+ configurationIds: string[] | undefined;
51
+ }
52
+ export interface AssociateConfigurationItemsToApplicationResponse {}
53
+
54
+ export declare class AuthorizationErrorException extends __BaseException {
55
+ readonly name: "AuthorizationErrorException";
56
+ readonly $fault: "client";
57
+
58
+ constructor(
59
+ opts: __ExceptionOptionType<AuthorizationErrorException, __BaseException>
60
+ );
61
+ }
62
+
63
+ export declare class HomeRegionNotSetException extends __BaseException {
64
+ readonly name: "HomeRegionNotSetException";
65
+ readonly $fault: "client";
66
+
67
+ constructor(
68
+ opts: __ExceptionOptionType<HomeRegionNotSetException, __BaseException>
69
+ );
70
+ }
71
+
72
+ export declare class InvalidParameterException extends __BaseException {
73
+ readonly name: "InvalidParameterException";
74
+ readonly $fault: "client";
75
+
76
+ constructor(
77
+ opts: __ExceptionOptionType<InvalidParameterException, __BaseException>
78
+ );
79
+ }
80
+
81
+ export declare class InvalidParameterValueException extends __BaseException {
82
+ readonly name: "InvalidParameterValueException";
83
+ readonly $fault: "client";
84
+
85
+ constructor(
86
+ opts: __ExceptionOptionType<InvalidParameterValueException, __BaseException>
87
+ );
88
+ }
89
+
90
+ export declare class ServerInternalErrorException extends __BaseException {
91
+ readonly name: "ServerInternalErrorException";
92
+ readonly $fault: "server";
93
+
94
+ constructor(
95
+ opts: __ExceptionOptionType<ServerInternalErrorException, __BaseException>
96
+ );
97
+ }
98
+ export interface BatchDeleteImportDataRequest {
99
+ importTaskIds: string[] | undefined;
100
+ }
101
+ export declare enum BatchDeleteImportDataErrorCode {
102
+ INTERNAL_SERVER_ERROR = "INTERNAL_SERVER_ERROR",
103
+ NOT_FOUND = "NOT_FOUND",
104
+ OVER_LIMIT = "OVER_LIMIT",
105
+ }
106
+
107
+ export interface BatchDeleteImportDataError {
108
+ importTaskId?: string;
109
+
110
+ errorCode?: BatchDeleteImportDataErrorCode | string;
111
+
112
+ errorDescription?: string;
113
+ }
114
+ export interface BatchDeleteImportDataResponse {
115
+ errors?: BatchDeleteImportDataError[];
116
+ }
117
+ export interface CreateApplicationRequest {
118
+ name: string | undefined;
119
+
120
+ description?: string;
121
+ }
122
+ export interface CreateApplicationResponse {
123
+ configurationId?: string;
124
+ }
125
+
126
+ export interface Tag {
127
+ key: string | undefined;
128
+
129
+ value: string | undefined;
130
+ }
131
+ export interface CreateTagsRequest {
132
+ configurationIds: string[] | undefined;
133
+
134
+ tags: Tag[] | undefined;
135
+ }
136
+ export interface CreateTagsResponse {}
137
+
138
+ export declare class ResourceNotFoundException extends __BaseException {
139
+ readonly name: "ResourceNotFoundException";
140
+ readonly $fault: "client";
141
+
142
+ constructor(
143
+ opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
144
+ );
145
+ }
146
+ export interface DeleteApplicationsRequest {
147
+ configurationIds: string[] | undefined;
148
+ }
149
+ export interface DeleteApplicationsResponse {}
150
+ export interface DeleteTagsRequest {
151
+ configurationIds: string[] | undefined;
152
+
153
+ tags?: Tag[];
154
+ }
155
+ export interface DeleteTagsResponse {}
156
+
157
+ export interface Filter {
158
+ name: string | undefined;
159
+
160
+ values: string[] | undefined;
161
+
162
+ condition: string | undefined;
163
+ }
164
+ export interface DescribeAgentsRequest {
165
+ agentIds?: string[];
166
+
167
+ filters?: Filter[];
168
+
169
+ maxResults?: number;
170
+
171
+ nextToken?: string;
172
+ }
173
+ export interface DescribeAgentsResponse {
174
+ agentsInfo?: AgentInfo[];
175
+
176
+ nextToken?: string;
177
+ }
178
+ export interface DescribeConfigurationsRequest {
179
+ configurationIds: string[] | undefined;
180
+ }
181
+ export interface DescribeConfigurationsResponse {
182
+ configurations?: Record<string, string>[];
183
+ }
184
+ export interface DescribeContinuousExportsRequest {
185
+ exportIds?: string[];
186
+
187
+ maxResults?: number;
188
+
189
+ nextToken?: string;
190
+ }
191
+ export declare enum DataSource {
192
+ AGENT = "AGENT",
193
+ }
194
+ export declare enum ContinuousExportStatus {
195
+ ACTIVE = "ACTIVE",
196
+ ERROR = "ERROR",
197
+ INACTIVE = "INACTIVE",
198
+ START_FAILED = "START_FAILED",
199
+ START_IN_PROGRESS = "START_IN_PROGRESS",
200
+ STOP_FAILED = "STOP_FAILED",
201
+ STOP_IN_PROGRESS = "STOP_IN_PROGRESS",
202
+ }
203
+
204
+ export interface ContinuousExportDescription {
205
+ exportId?: string;
206
+
207
+ status?: ContinuousExportStatus | string;
208
+
209
+ statusDetail?: string;
210
+
211
+ s3Bucket?: string;
212
+
213
+ startTime?: Date;
214
+
215
+ stopTime?: Date;
216
+
217
+ dataSource?: DataSource | string;
218
+
219
+ schemaStorageConfig?: Record<string, string>;
220
+ }
221
+ export interface DescribeContinuousExportsResponse {
222
+ descriptions?: ContinuousExportDescription[];
223
+
224
+ nextToken?: string;
225
+ }
226
+
227
+ export declare class OperationNotPermittedException extends __BaseException {
228
+ readonly name: "OperationNotPermittedException";
229
+ readonly $fault: "client";
230
+
231
+ constructor(
232
+ opts: __ExceptionOptionType<OperationNotPermittedException, __BaseException>
233
+ );
234
+ }
235
+ export interface DescribeExportConfigurationsRequest {
236
+ exportIds?: string[];
237
+
238
+ maxResults?: number;
239
+
240
+ nextToken?: string;
241
+ }
242
+ export declare enum ExportStatus {
243
+ FAILED = "FAILED",
244
+ IN_PROGRESS = "IN_PROGRESS",
245
+ SUCCEEDED = "SUCCEEDED",
246
+ }
247
+
248
+ export interface ExportInfo {
249
+ exportId: string | undefined;
250
+
251
+ exportStatus: ExportStatus | string | undefined;
252
+
253
+ statusMessage: string | undefined;
254
+
255
+ configurationsDownloadUrl?: string;
256
+
257
+ exportRequestTime: Date | undefined;
258
+
259
+ isTruncated?: boolean;
260
+
261
+ requestedStartTime?: Date;
262
+
263
+ requestedEndTime?: Date;
264
+ }
265
+ export interface DescribeExportConfigurationsResponse {
266
+ exportsInfo?: ExportInfo[];
267
+
268
+ nextToken?: string;
269
+ }
270
+
271
+ export interface ExportFilter {
272
+ name: string | undefined;
273
+
274
+ values: string[] | undefined;
275
+
276
+ condition: string | undefined;
277
+ }
278
+ export interface DescribeExportTasksRequest {
279
+ exportIds?: string[];
280
+
281
+ filters?: ExportFilter[];
282
+
283
+ maxResults?: number;
284
+
285
+ nextToken?: string;
286
+ }
287
+ export interface DescribeExportTasksResponse {
288
+ exportsInfo?: ExportInfo[];
289
+
290
+ nextToken?: string;
291
+ }
292
+ export declare enum ImportTaskFilterName {
293
+ IMPORT_TASK_ID = "IMPORT_TASK_ID",
294
+ NAME = "NAME",
295
+ STATUS = "STATUS",
296
+ }
297
+
298
+ export interface ImportTaskFilter {
299
+ name?: ImportTaskFilterName | string;
300
+
301
+ values?: string[];
302
+ }
303
+ export interface DescribeImportTasksRequest {
304
+ filters?: ImportTaskFilter[];
305
+
306
+ maxResults?: number;
307
+
308
+ nextToken?: string;
309
+ }
310
+ export declare enum ImportStatus {
311
+ DELETE_COMPLETE = "DELETE_COMPLETE",
312
+ DELETE_FAILED = "DELETE_FAILED",
313
+ DELETE_FAILED_LIMIT_EXCEEDED = "DELETE_FAILED_LIMIT_EXCEEDED",
314
+ DELETE_IN_PROGRESS = "DELETE_IN_PROGRESS",
315
+ IMPORT_COMPLETE = "IMPORT_COMPLETE",
316
+ IMPORT_COMPLETE_WITH_ERRORS = "IMPORT_COMPLETE_WITH_ERRORS",
317
+ IMPORT_FAILED = "IMPORT_FAILED",
318
+ IMPORT_FAILED_RECORD_LIMIT_EXCEEDED = "IMPORT_FAILED_RECORD_LIMIT_EXCEEDED",
319
+ IMPORT_FAILED_SERVER_LIMIT_EXCEEDED = "IMPORT_FAILED_SERVER_LIMIT_EXCEEDED",
320
+ IMPORT_IN_PROGRESS = "IMPORT_IN_PROGRESS",
321
+ INTERNAL_ERROR = "INTERNAL_ERROR",
322
+ }
323
+
324
+ export interface ImportTask {
325
+ importTaskId?: string;
326
+
327
+ clientRequestToken?: string;
328
+
329
+ name?: string;
330
+
331
+ importUrl?: string;
332
+
333
+ status?: ImportStatus | string;
334
+
335
+ importRequestTime?: Date;
336
+
337
+ importCompletionTime?: Date;
338
+
339
+ importDeletedTime?: Date;
340
+
341
+ serverImportSuccess?: number;
342
+
343
+ serverImportFailure?: number;
344
+
345
+ applicationImportSuccess?: number;
346
+
347
+ applicationImportFailure?: number;
348
+
349
+ errorsAndFailedEntriesZip?: string;
350
+ }
351
+ export interface DescribeImportTasksResponse {
352
+ nextToken?: string;
353
+
354
+ tasks?: ImportTask[];
355
+ }
356
+
357
+ export interface TagFilter {
358
+ name: string | undefined;
359
+
360
+ values: string[] | undefined;
361
+ }
362
+ export interface DescribeTagsRequest {
363
+ filters?: TagFilter[];
364
+
365
+ maxResults?: number;
366
+
367
+ nextToken?: string;
368
+ }
369
+ export declare enum ConfigurationItemType {
370
+ APPLICATION = "APPLICATION",
371
+ CONNECTIONS = "CONNECTION",
372
+ PROCESS = "PROCESS",
373
+ SERVER = "SERVER",
374
+ }
375
+
376
+ export interface ConfigurationTag {
377
+ configurationType?: ConfigurationItemType | string;
378
+
379
+ configurationId?: string;
380
+
381
+ key?: string;
382
+
383
+ value?: string;
384
+
385
+ timeOfCreation?: Date;
386
+ }
387
+ export interface DescribeTagsResponse {
388
+ tags?: ConfigurationTag[];
389
+
390
+ nextToken?: string;
391
+ }
392
+ export interface DisassociateConfigurationItemsFromApplicationRequest {
393
+ applicationConfigurationId: string | undefined;
394
+
395
+ configurationIds: string[] | undefined;
396
+ }
397
+ export interface DisassociateConfigurationItemsFromApplicationResponse {}
398
+ export interface ExportConfigurationsResponse {
399
+ exportId?: string;
400
+ }
401
+ export interface GetDiscoverySummaryRequest {}
402
+ export interface CustomerAgentlessCollectorInfo {
403
+ activeAgentlessCollectors: number | undefined;
404
+ healthyAgentlessCollectors: number | undefined;
405
+ denyListedAgentlessCollectors: number | undefined;
406
+ shutdownAgentlessCollectors: number | undefined;
407
+ unhealthyAgentlessCollectors: number | undefined;
408
+ totalAgentlessCollectors: number | undefined;
409
+ unknownAgentlessCollectors: number | undefined;
410
+ }
411
+
412
+ export interface CustomerAgentInfo {
413
+ activeAgents: number | undefined;
414
+
415
+ healthyAgents: number | undefined;
416
+
417
+ blackListedAgents: number | undefined;
418
+
419
+ shutdownAgents: number | undefined;
420
+
421
+ unhealthyAgents: number | undefined;
422
+
423
+ totalAgents: number | undefined;
424
+
425
+ unknownAgents: number | undefined;
426
+ }
427
+
428
+ export interface CustomerConnectorInfo {
429
+ activeConnectors: number | undefined;
430
+
431
+ healthyConnectors: number | undefined;
432
+
433
+ blackListedConnectors: number | undefined;
434
+
435
+ shutdownConnectors: number | undefined;
436
+
437
+ unhealthyConnectors: number | undefined;
438
+
439
+ totalConnectors: number | undefined;
440
+
441
+ unknownConnectors: number | undefined;
442
+ }
443
+
444
+ export interface CustomerMeCollectorInfo {
445
+ activeMeCollectors: number | undefined;
446
+
447
+ healthyMeCollectors: number | undefined;
448
+
449
+ denyListedMeCollectors: number | undefined;
450
+
451
+ shutdownMeCollectors: number | undefined;
452
+
453
+ unhealthyMeCollectors: number | undefined;
454
+
455
+ totalMeCollectors: number | undefined;
456
+
457
+ unknownMeCollectors: number | undefined;
458
+ }
459
+ export interface GetDiscoverySummaryResponse {
460
+ servers?: number;
461
+
462
+ applications?: number;
463
+
464
+ serversMappedToApplications?: number;
465
+
466
+ serversMappedtoTags?: number;
467
+
468
+ agentSummary?: CustomerAgentInfo;
469
+
470
+ connectorSummary?: CustomerConnectorInfo;
471
+
472
+ meCollectorSummary?: CustomerMeCollectorInfo;
473
+ agentlessCollectorSummary?: CustomerAgentlessCollectorInfo;
474
+ }
475
+ export declare enum OrderString {
476
+ ASC = "ASC",
477
+ DESC = "DESC",
478
+ }
479
+
480
+ export interface OrderByElement {
481
+ fieldName: string | undefined;
482
+
483
+ sortOrder?: OrderString | string;
484
+ }
485
+ export interface ListConfigurationsRequest {
486
+ configurationType: ConfigurationItemType | string | undefined;
487
+
488
+ filters?: Filter[];
489
+
490
+ maxResults?: number;
491
+
492
+ nextToken?: string;
493
+
494
+ orderBy?: OrderByElement[];
495
+ }
496
+ export interface ListConfigurationsResponse {
497
+ configurations?: Record<string, string>[];
498
+
499
+ nextToken?: string;
500
+ }
501
+ export interface ListServerNeighborsRequest {
502
+ configurationId: string | undefined;
503
+
504
+ portInformationNeeded?: boolean;
505
+
506
+ neighborConfigurationIds?: string[];
507
+
508
+ maxResults?: number;
509
+
510
+ nextToken?: string;
511
+ }
512
+
513
+ export interface NeighborConnectionDetail {
514
+ sourceServerId: string | undefined;
515
+
516
+ destinationServerId: string | undefined;
517
+
518
+ destinationPort?: number;
519
+
520
+ transportProtocol?: string;
521
+
522
+ connectionsCount: number | undefined;
523
+ }
524
+ export interface ListServerNeighborsResponse {
525
+ neighbors: NeighborConnectionDetail[] | undefined;
526
+
527
+ nextToken?: string;
528
+
529
+ knownDependencyCount?: number;
530
+ }
531
+
532
+ export declare class ConflictErrorException extends __BaseException {
533
+ readonly name: "ConflictErrorException";
534
+ readonly $fault: "client";
535
+
536
+ constructor(
537
+ opts: __ExceptionOptionType<ConflictErrorException, __BaseException>
538
+ );
539
+ }
540
+
541
+ export declare class ResourceInUseException extends __BaseException {
542
+ readonly name: "ResourceInUseException";
543
+ readonly $fault: "client";
544
+
545
+ constructor(
546
+ opts: __ExceptionOptionType<ResourceInUseException, __BaseException>
547
+ );
548
+ }
549
+ export interface StartContinuousExportRequest {}
550
+ export interface StartContinuousExportResponse {
551
+ exportId?: string;
552
+
553
+ s3Bucket?: string;
554
+
555
+ startTime?: Date;
556
+
557
+ dataSource?: DataSource | string;
558
+
559
+ schemaStorageConfig?: Record<string, string>;
560
+ }
561
+ export interface StartDataCollectionByAgentIdsRequest {
562
+ agentIds: string[] | undefined;
563
+ }
564
+ export interface StartDataCollectionByAgentIdsResponse {
565
+ agentsConfigurationStatus?: AgentConfigurationStatus[];
566
+ }
567
+ export declare enum ExportDataFormat {
568
+ CSV = "CSV",
569
+ GRAPHML = "GRAPHML",
570
+ }
571
+ export interface StartExportTaskRequest {
572
+ exportDataFormat?: (ExportDataFormat | string)[];
573
+
574
+ filters?: ExportFilter[];
575
+
576
+ startTime?: Date;
577
+
578
+ endTime?: Date;
579
+ }
580
+ export interface StartExportTaskResponse {
581
+ exportId?: string;
582
+ }
583
+ export interface StartImportTaskRequest {
584
+ clientRequestToken?: string;
585
+
586
+ name: string | undefined;
587
+
588
+ importUrl: string | undefined;
589
+ }
590
+ export interface StartImportTaskResponse {
591
+ task?: ImportTask;
592
+ }
593
+ export interface StopContinuousExportRequest {
594
+ exportId: string | undefined;
595
+ }
596
+ export interface StopContinuousExportResponse {
597
+ startTime?: Date;
598
+
599
+ stopTime?: Date;
600
+ }
601
+ export interface StopDataCollectionByAgentIdsRequest {
602
+ agentIds: string[] | undefined;
603
+ }
604
+ export interface StopDataCollectionByAgentIdsResponse {
605
+ agentsConfigurationStatus?: AgentConfigurationStatus[];
606
+ }
607
+ export interface UpdateApplicationRequest {
608
+ configurationId: string | undefined;
609
+
610
+ name?: string;
611
+
612
+ description?: string;
613
+ }
614
+ export interface UpdateApplicationResponse {}
615
+
616
+ export declare const AgentConfigurationStatusFilterSensitiveLog: (
617
+ obj: AgentConfigurationStatus
618
+ ) => any;
619
+
620
+ export declare const AgentNetworkInfoFilterSensitiveLog: (
621
+ obj: AgentNetworkInfo
622
+ ) => any;
623
+
624
+ export declare const AgentInfoFilterSensitiveLog: (obj: AgentInfo) => any;
625
+
626
+ export declare const AssociateConfigurationItemsToApplicationRequestFilterSensitiveLog: (
627
+ obj: AssociateConfigurationItemsToApplicationRequest
628
+ ) => any;
629
+
630
+ export declare const AssociateConfigurationItemsToApplicationResponseFilterSensitiveLog: (
631
+ obj: AssociateConfigurationItemsToApplicationResponse
632
+ ) => any;
633
+
634
+ export declare const BatchDeleteImportDataRequestFilterSensitiveLog: (
635
+ obj: BatchDeleteImportDataRequest
636
+ ) => any;
637
+
638
+ export declare const BatchDeleteImportDataErrorFilterSensitiveLog: (
639
+ obj: BatchDeleteImportDataError
640
+ ) => any;
641
+
642
+ export declare const BatchDeleteImportDataResponseFilterSensitiveLog: (
643
+ obj: BatchDeleteImportDataResponse
644
+ ) => any;
645
+
646
+ export declare const CreateApplicationRequestFilterSensitiveLog: (
647
+ obj: CreateApplicationRequest
648
+ ) => any;
649
+
650
+ export declare const CreateApplicationResponseFilterSensitiveLog: (
651
+ obj: CreateApplicationResponse
652
+ ) => any;
653
+
654
+ export declare const TagFilterSensitiveLog: (obj: Tag) => any;
655
+
656
+ export declare const CreateTagsRequestFilterSensitiveLog: (
657
+ obj: CreateTagsRequest
658
+ ) => any;
659
+
660
+ export declare const CreateTagsResponseFilterSensitiveLog: (
661
+ obj: CreateTagsResponse
662
+ ) => any;
663
+
664
+ export declare const DeleteApplicationsRequestFilterSensitiveLog: (
665
+ obj: DeleteApplicationsRequest
666
+ ) => any;
667
+
668
+ export declare const DeleteApplicationsResponseFilterSensitiveLog: (
669
+ obj: DeleteApplicationsResponse
670
+ ) => any;
671
+
672
+ export declare const DeleteTagsRequestFilterSensitiveLog: (
673
+ obj: DeleteTagsRequest
674
+ ) => any;
675
+
676
+ export declare const DeleteTagsResponseFilterSensitiveLog: (
677
+ obj: DeleteTagsResponse
678
+ ) => any;
679
+
680
+ export declare const FilterFilterSensitiveLog: (obj: Filter) => any;
681
+
682
+ export declare const DescribeAgentsRequestFilterSensitiveLog: (
683
+ obj: DescribeAgentsRequest
684
+ ) => any;
685
+
686
+ export declare const DescribeAgentsResponseFilterSensitiveLog: (
687
+ obj: DescribeAgentsResponse
688
+ ) => any;
689
+
690
+ export declare const DescribeConfigurationsRequestFilterSensitiveLog: (
691
+ obj: DescribeConfigurationsRequest
692
+ ) => any;
693
+
694
+ export declare const DescribeConfigurationsResponseFilterSensitiveLog: (
695
+ obj: DescribeConfigurationsResponse
696
+ ) => any;
697
+
698
+ export declare const DescribeContinuousExportsRequestFilterSensitiveLog: (
699
+ obj: DescribeContinuousExportsRequest
700
+ ) => any;
701
+
702
+ export declare const ContinuousExportDescriptionFilterSensitiveLog: (
703
+ obj: ContinuousExportDescription
704
+ ) => any;
705
+
706
+ export declare const DescribeContinuousExportsResponseFilterSensitiveLog: (
707
+ obj: DescribeContinuousExportsResponse
708
+ ) => any;
709
+
710
+ export declare const DescribeExportConfigurationsRequestFilterSensitiveLog: (
711
+ obj: DescribeExportConfigurationsRequest
712
+ ) => any;
713
+
714
+ export declare const ExportInfoFilterSensitiveLog: (obj: ExportInfo) => any;
715
+
716
+ export declare const DescribeExportConfigurationsResponseFilterSensitiveLog: (
717
+ obj: DescribeExportConfigurationsResponse
718
+ ) => any;
719
+
720
+ export declare const ExportFilterFilterSensitiveLog: (obj: ExportFilter) => any;
721
+
722
+ export declare const DescribeExportTasksRequestFilterSensitiveLog: (
723
+ obj: DescribeExportTasksRequest
724
+ ) => any;
725
+
726
+ export declare const DescribeExportTasksResponseFilterSensitiveLog: (
727
+ obj: DescribeExportTasksResponse
728
+ ) => any;
729
+
730
+ export declare const ImportTaskFilterFilterSensitiveLog: (
731
+ obj: ImportTaskFilter
732
+ ) => any;
733
+
734
+ export declare const DescribeImportTasksRequestFilterSensitiveLog: (
735
+ obj: DescribeImportTasksRequest
736
+ ) => any;
737
+
738
+ export declare const ImportTaskFilterSensitiveLog: (obj: ImportTask) => any;
739
+
740
+ export declare const DescribeImportTasksResponseFilterSensitiveLog: (
741
+ obj: DescribeImportTasksResponse
742
+ ) => any;
743
+
744
+ export declare const TagFilterFilterSensitiveLog: (obj: TagFilter) => any;
745
+
746
+ export declare const DescribeTagsRequestFilterSensitiveLog: (
747
+ obj: DescribeTagsRequest
748
+ ) => any;
749
+
750
+ export declare const ConfigurationTagFilterSensitiveLog: (
751
+ obj: ConfigurationTag
752
+ ) => any;
753
+
754
+ export declare const DescribeTagsResponseFilterSensitiveLog: (
755
+ obj: DescribeTagsResponse
756
+ ) => any;
757
+
758
+ export declare const DisassociateConfigurationItemsFromApplicationRequestFilterSensitiveLog: (
759
+ obj: DisassociateConfigurationItemsFromApplicationRequest
760
+ ) => any;
761
+
762
+ export declare const DisassociateConfigurationItemsFromApplicationResponseFilterSensitiveLog: (
763
+ obj: DisassociateConfigurationItemsFromApplicationResponse
764
+ ) => any;
765
+
766
+ export declare const ExportConfigurationsResponseFilterSensitiveLog: (
767
+ obj: ExportConfigurationsResponse
768
+ ) => any;
769
+
770
+ export declare const GetDiscoverySummaryRequestFilterSensitiveLog: (
771
+ obj: GetDiscoverySummaryRequest
772
+ ) => any;
773
+
774
+ export declare const CustomerAgentlessCollectorInfoFilterSensitiveLog: (
775
+ obj: CustomerAgentlessCollectorInfo
776
+ ) => any;
777
+
778
+ export declare const CustomerAgentInfoFilterSensitiveLog: (
779
+ obj: CustomerAgentInfo
780
+ ) => any;
781
+
782
+ export declare const CustomerConnectorInfoFilterSensitiveLog: (
783
+ obj: CustomerConnectorInfo
784
+ ) => any;
785
+
786
+ export declare const CustomerMeCollectorInfoFilterSensitiveLog: (
787
+ obj: CustomerMeCollectorInfo
788
+ ) => any;
789
+
790
+ export declare const GetDiscoverySummaryResponseFilterSensitiveLog: (
791
+ obj: GetDiscoverySummaryResponse
792
+ ) => any;
793
+
794
+ export declare const OrderByElementFilterSensitiveLog: (
795
+ obj: OrderByElement
796
+ ) => any;
797
+
798
+ export declare const ListConfigurationsRequestFilterSensitiveLog: (
799
+ obj: ListConfigurationsRequest
800
+ ) => any;
801
+
802
+ export declare const ListConfigurationsResponseFilterSensitiveLog: (
803
+ obj: ListConfigurationsResponse
804
+ ) => any;
805
+
806
+ export declare const ListServerNeighborsRequestFilterSensitiveLog: (
807
+ obj: ListServerNeighborsRequest
808
+ ) => any;
809
+
810
+ export declare const NeighborConnectionDetailFilterSensitiveLog: (
811
+ obj: NeighborConnectionDetail
812
+ ) => any;
813
+
814
+ export declare const ListServerNeighborsResponseFilterSensitiveLog: (
815
+ obj: ListServerNeighborsResponse
816
+ ) => any;
817
+
818
+ export declare const StartContinuousExportRequestFilterSensitiveLog: (
819
+ obj: StartContinuousExportRequest
820
+ ) => any;
821
+
822
+ export declare const StartContinuousExportResponseFilterSensitiveLog: (
823
+ obj: StartContinuousExportResponse
824
+ ) => any;
825
+
826
+ export declare const StartDataCollectionByAgentIdsRequestFilterSensitiveLog: (
827
+ obj: StartDataCollectionByAgentIdsRequest
828
+ ) => any;
829
+
830
+ export declare const StartDataCollectionByAgentIdsResponseFilterSensitiveLog: (
831
+ obj: StartDataCollectionByAgentIdsResponse
832
+ ) => any;
833
+
834
+ export declare const StartExportTaskRequestFilterSensitiveLog: (
835
+ obj: StartExportTaskRequest
836
+ ) => any;
837
+
838
+ export declare const StartExportTaskResponseFilterSensitiveLog: (
839
+ obj: StartExportTaskResponse
840
+ ) => any;
841
+
842
+ export declare const StartImportTaskRequestFilterSensitiveLog: (
843
+ obj: StartImportTaskRequest
844
+ ) => any;
845
+
846
+ export declare const StartImportTaskResponseFilterSensitiveLog: (
847
+ obj: StartImportTaskResponse
848
+ ) => any;
849
+
850
+ export declare const StopContinuousExportRequestFilterSensitiveLog: (
851
+ obj: StopContinuousExportRequest
852
+ ) => any;
853
+
854
+ export declare const StopContinuousExportResponseFilterSensitiveLog: (
855
+ obj: StopContinuousExportResponse
856
+ ) => any;
857
+
858
+ export declare const StopDataCollectionByAgentIdsRequestFilterSensitiveLog: (
859
+ obj: StopDataCollectionByAgentIdsRequest
860
+ ) => any;
861
+
862
+ export declare const StopDataCollectionByAgentIdsResponseFilterSensitiveLog: (
863
+ obj: StopDataCollectionByAgentIdsResponse
864
+ ) => any;
865
+
866
+ export declare const UpdateApplicationRequestFilterSensitiveLog: (
867
+ obj: UpdateApplicationRequest
868
+ ) => any;
869
+
870
+ export declare const UpdateApplicationResponseFilterSensitiveLog: (
871
+ obj: UpdateApplicationResponse
872
+ ) => any;