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