@aws-sdk/client-application-discovery-service 3.132.0 → 3.142.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 (59) hide show
  1. package/CHANGELOG.md +33 -0
  2. package/README.md +1 -1
  3. package/dist-cjs/commands/AssociateConfigurationItemsToApplicationCommand.js +2 -2
  4. package/dist-cjs/commands/BatchDeleteImportDataCommand.js +2 -2
  5. package/dist-cjs/commands/CreateApplicationCommand.js +2 -2
  6. package/dist-cjs/commands/CreateTagsCommand.js +2 -2
  7. package/dist-cjs/commands/DeleteApplicationsCommand.js +2 -2
  8. package/dist-cjs/commands/DeleteTagsCommand.js +2 -2
  9. package/dist-cjs/commands/DescribeAgentsCommand.js +2 -2
  10. package/dist-cjs/commands/DescribeConfigurationsCommand.js +2 -2
  11. package/dist-cjs/commands/DescribeContinuousExportsCommand.js +2 -2
  12. package/dist-cjs/commands/DescribeExportConfigurationsCommand.js +2 -2
  13. package/dist-cjs/commands/DescribeExportTasksCommand.js +2 -2
  14. package/dist-cjs/commands/DescribeImportTasksCommand.js +2 -2
  15. package/dist-cjs/commands/DescribeTagsCommand.js +2 -2
  16. package/dist-cjs/commands/DisassociateConfigurationItemsFromApplicationCommand.js +2 -2
  17. package/dist-cjs/commands/ExportConfigurationsCommand.js +1 -1
  18. package/dist-cjs/commands/GetDiscoverySummaryCommand.js +2 -2
  19. package/dist-cjs/commands/ListConfigurationsCommand.js +2 -2
  20. package/dist-cjs/commands/ListServerNeighborsCommand.js +2 -2
  21. package/dist-cjs/commands/StartContinuousExportCommand.js +2 -2
  22. package/dist-cjs/commands/StartDataCollectionByAgentIdsCommand.js +2 -2
  23. package/dist-cjs/commands/StartExportTaskCommand.js +2 -2
  24. package/dist-cjs/commands/StartImportTaskCommand.js +2 -2
  25. package/dist-cjs/commands/StopContinuousExportCommand.js +2 -2
  26. package/dist-cjs/commands/StopDataCollectionByAgentIdsCommand.js +2 -2
  27. package/dist-cjs/commands/UpdateApplicationCommand.js +2 -2
  28. package/dist-cjs/models/models_0.js +274 -410
  29. package/dist-cjs/protocols/Aws_json1_1.js +125 -245
  30. package/dist-es/commands/AssociateConfigurationItemsToApplicationCommand.js +3 -3
  31. package/dist-es/commands/BatchDeleteImportDataCommand.js +3 -3
  32. package/dist-es/commands/CreateApplicationCommand.js +3 -3
  33. package/dist-es/commands/CreateTagsCommand.js +3 -3
  34. package/dist-es/commands/DeleteApplicationsCommand.js +3 -3
  35. package/dist-es/commands/DeleteTagsCommand.js +3 -3
  36. package/dist-es/commands/DescribeAgentsCommand.js +3 -3
  37. package/dist-es/commands/DescribeConfigurationsCommand.js +3 -3
  38. package/dist-es/commands/DescribeContinuousExportsCommand.js +3 -3
  39. package/dist-es/commands/DescribeExportConfigurationsCommand.js +3 -3
  40. package/dist-es/commands/DescribeExportTasksCommand.js +3 -3
  41. package/dist-es/commands/DescribeImportTasksCommand.js +3 -3
  42. package/dist-es/commands/DescribeTagsCommand.js +3 -3
  43. package/dist-es/commands/DisassociateConfigurationItemsFromApplicationCommand.js +3 -3
  44. package/dist-es/commands/ExportConfigurationsCommand.js +2 -2
  45. package/dist-es/commands/GetDiscoverySummaryCommand.js +3 -3
  46. package/dist-es/commands/ListConfigurationsCommand.js +3 -3
  47. package/dist-es/commands/ListServerNeighborsCommand.js +3 -3
  48. package/dist-es/commands/StartContinuousExportCommand.js +3 -3
  49. package/dist-es/commands/StartDataCollectionByAgentIdsCommand.js +3 -3
  50. package/dist-es/commands/StartExportTaskCommand.js +3 -3
  51. package/dist-es/commands/StartImportTaskCommand.js +3 -3
  52. package/dist-es/commands/StopContinuousExportCommand.js +3 -3
  53. package/dist-es/commands/StopDataCollectionByAgentIdsCommand.js +3 -3
  54. package/dist-es/commands/UpdateApplicationCommand.js +3 -3
  55. package/dist-es/models/models_0.js +68 -272
  56. package/dist-es/protocols/Aws_json1_1.js +201 -246
  57. package/dist-types/models/models_0.d.ts +272 -408
  58. package/dist-types/ts3.4/models/models_0.d.ts +136 -272
  59. package/package.json +6 -6
@@ -9,10 +9,6 @@ export interface AgentConfigurationStatus {
9
9
 
10
10
  description?: string;
11
11
  }
12
- export declare namespace AgentConfigurationStatus {
13
-
14
- const filterSensitiveLog: (obj: AgentConfigurationStatus) => any;
15
- }
16
12
 
17
13
  export interface AgentNetworkInfo {
18
14
 
@@ -20,10 +16,6 @@ export interface AgentNetworkInfo {
20
16
 
21
17
  macAddress?: string;
22
18
  }
23
- export declare namespace AgentNetworkInfo {
24
-
25
- const filterSensitiveLog: (obj: AgentNetworkInfo) => any;
26
- }
27
19
  export declare enum AgentStatus {
28
20
  BLACKLISTED = "BLACKLISTED",
29
21
  HEALTHY = "HEALTHY",
@@ -55,26 +47,14 @@ export interface AgentInfo {
55
47
 
56
48
  registeredTime?: string;
57
49
  }
58
- export declare namespace AgentInfo {
59
-
60
- const filterSensitiveLog: (obj: AgentInfo) => any;
61
- }
62
50
  export interface AssociateConfigurationItemsToApplicationRequest {
63
51
 
64
52
  applicationConfigurationId: string | undefined;
65
53
 
66
54
  configurationIds: string[] | undefined;
67
55
  }
68
- export declare namespace AssociateConfigurationItemsToApplicationRequest {
69
-
70
- const filterSensitiveLog: (obj: AssociateConfigurationItemsToApplicationRequest) => any;
71
- }
72
56
  export interface AssociateConfigurationItemsToApplicationResponse {
73
57
  }
74
- export declare namespace AssociateConfigurationItemsToApplicationResponse {
75
-
76
- const filterSensitiveLog: (obj: AssociateConfigurationItemsToApplicationResponse) => any;
77
- }
78
58
 
79
59
  export declare class AuthorizationErrorException extends __BaseException {
80
60
  readonly name: "AuthorizationErrorException";
@@ -114,10 +94,6 @@ export interface BatchDeleteImportDataRequest {
114
94
 
115
95
  importTaskIds: string[] | undefined;
116
96
  }
117
- export declare namespace BatchDeleteImportDataRequest {
118
-
119
- const filterSensitiveLog: (obj: BatchDeleteImportDataRequest) => any;
120
- }
121
97
  export declare enum BatchDeleteImportDataErrorCode {
122
98
  INTERNAL_SERVER_ERROR = "INTERNAL_SERVER_ERROR",
123
99
  NOT_FOUND = "NOT_FOUND",
@@ -132,36 +108,20 @@ export interface BatchDeleteImportDataError {
132
108
 
133
109
  errorDescription?: string;
134
110
  }
135
- export declare namespace BatchDeleteImportDataError {
136
-
137
- const filterSensitiveLog: (obj: BatchDeleteImportDataError) => any;
138
- }
139
111
  export interface BatchDeleteImportDataResponse {
140
112
 
141
113
  errors?: BatchDeleteImportDataError[];
142
114
  }
143
- export declare namespace BatchDeleteImportDataResponse {
144
-
145
- const filterSensitiveLog: (obj: BatchDeleteImportDataResponse) => any;
146
- }
147
115
  export interface CreateApplicationRequest {
148
116
 
149
117
  name: string | undefined;
150
118
 
151
119
  description?: string;
152
120
  }
153
- export declare namespace CreateApplicationRequest {
154
-
155
- const filterSensitiveLog: (obj: CreateApplicationRequest) => any;
156
- }
157
121
  export interface CreateApplicationResponse {
158
122
 
159
123
  configurationId?: string;
160
124
  }
161
- export declare namespace CreateApplicationResponse {
162
-
163
- const filterSensitiveLog: (obj: CreateApplicationResponse) => any;
164
- }
165
125
 
166
126
  export interface Tag {
167
127
 
@@ -169,26 +129,14 @@ export interface Tag {
169
129
 
170
130
  value: string | undefined;
171
131
  }
172
- export declare namespace Tag {
173
-
174
- const filterSensitiveLog: (obj: Tag) => any;
175
- }
176
132
  export interface CreateTagsRequest {
177
133
 
178
134
  configurationIds: string[] | undefined;
179
135
 
180
136
  tags: Tag[] | undefined;
181
137
  }
182
- export declare namespace CreateTagsRequest {
183
-
184
- const filterSensitiveLog: (obj: CreateTagsRequest) => any;
185
- }
186
138
  export interface CreateTagsResponse {
187
139
  }
188
- export declare namespace CreateTagsResponse {
189
-
190
- const filterSensitiveLog: (obj: CreateTagsResponse) => any;
191
- }
192
140
 
193
141
  export declare class ResourceNotFoundException extends __BaseException {
194
142
  readonly name: "ResourceNotFoundException";
@@ -200,32 +148,16 @@ export interface DeleteApplicationsRequest {
200
148
 
201
149
  configurationIds: string[] | undefined;
202
150
  }
203
- export declare namespace DeleteApplicationsRequest {
204
-
205
- const filterSensitiveLog: (obj: DeleteApplicationsRequest) => any;
206
- }
207
151
  export interface DeleteApplicationsResponse {
208
152
  }
209
- export declare namespace DeleteApplicationsResponse {
210
-
211
- const filterSensitiveLog: (obj: DeleteApplicationsResponse) => any;
212
- }
213
153
  export interface DeleteTagsRequest {
214
154
 
215
155
  configurationIds: string[] | undefined;
216
156
 
217
157
  tags?: Tag[];
218
158
  }
219
- export declare namespace DeleteTagsRequest {
220
-
221
- const filterSensitiveLog: (obj: DeleteTagsRequest) => any;
222
- }
223
159
  export interface DeleteTagsResponse {
224
160
  }
225
- export declare namespace DeleteTagsResponse {
226
-
227
- const filterSensitiveLog: (obj: DeleteTagsResponse) => any;
228
- }
229
161
 
230
162
  export interface Filter {
231
163
 
@@ -235,10 +167,6 @@ export interface Filter {
235
167
 
236
168
  condition: string | undefined;
237
169
  }
238
- export declare namespace Filter {
239
-
240
- const filterSensitiveLog: (obj: Filter) => any;
241
- }
242
170
  export interface DescribeAgentsRequest {
243
171
 
244
172
  agentIds?: string[];
@@ -249,36 +177,20 @@ export interface DescribeAgentsRequest {
249
177
 
250
178
  nextToken?: string;
251
179
  }
252
- export declare namespace DescribeAgentsRequest {
253
-
254
- const filterSensitiveLog: (obj: DescribeAgentsRequest) => any;
255
- }
256
180
  export interface DescribeAgentsResponse {
257
181
 
258
182
  agentsInfo?: AgentInfo[];
259
183
 
260
184
  nextToken?: string;
261
185
  }
262
- export declare namespace DescribeAgentsResponse {
263
-
264
- const filterSensitiveLog: (obj: DescribeAgentsResponse) => any;
265
- }
266
186
  export interface DescribeConfigurationsRequest {
267
187
 
268
188
  configurationIds: string[] | undefined;
269
189
  }
270
- export declare namespace DescribeConfigurationsRequest {
271
-
272
- const filterSensitiveLog: (obj: DescribeConfigurationsRequest) => any;
273
- }
274
190
  export interface DescribeConfigurationsResponse {
275
191
 
276
192
  configurations?: Record<string, string>[];
277
193
  }
278
- export declare namespace DescribeConfigurationsResponse {
279
-
280
- const filterSensitiveLog: (obj: DescribeConfigurationsResponse) => any;
281
- }
282
194
  export interface DescribeContinuousExportsRequest {
283
195
 
284
196
  exportIds?: string[];
@@ -287,10 +199,6 @@ export interface DescribeContinuousExportsRequest {
287
199
 
288
200
  nextToken?: string;
289
201
  }
290
- export declare namespace DescribeContinuousExportsRequest {
291
-
292
- const filterSensitiveLog: (obj: DescribeContinuousExportsRequest) => any;
293
- }
294
202
  export declare enum DataSource {
295
203
  AGENT = "AGENT"
296
204
  }
@@ -322,20 +230,12 @@ export interface ContinuousExportDescription {
322
230
 
323
231
  schemaStorageConfig?: Record<string, string>;
324
232
  }
325
- export declare namespace ContinuousExportDescription {
326
-
327
- const filterSensitiveLog: (obj: ContinuousExportDescription) => any;
328
- }
329
233
  export interface DescribeContinuousExportsResponse {
330
234
 
331
235
  descriptions?: ContinuousExportDescription[];
332
236
 
333
237
  nextToken?: string;
334
238
  }
335
- export declare namespace DescribeContinuousExportsResponse {
336
-
337
- const filterSensitiveLog: (obj: DescribeContinuousExportsResponse) => any;
338
- }
339
239
 
340
240
  export declare class OperationNotPermittedException extends __BaseException {
341
241
  readonly name: "OperationNotPermittedException";
@@ -351,10 +251,6 @@ export interface DescribeExportConfigurationsRequest {
351
251
 
352
252
  nextToken?: string;
353
253
  }
354
- export declare namespace DescribeExportConfigurationsRequest {
355
-
356
- const filterSensitiveLog: (obj: DescribeExportConfigurationsRequest) => any;
357
- }
358
254
  export declare enum ExportStatus {
359
255
  FAILED = "FAILED",
360
256
  IN_PROGRESS = "IN_PROGRESS",
@@ -379,20 +275,12 @@ export interface ExportInfo {
379
275
 
380
276
  requestedEndTime?: Date;
381
277
  }
382
- export declare namespace ExportInfo {
383
-
384
- const filterSensitiveLog: (obj: ExportInfo) => any;
385
- }
386
278
  export interface DescribeExportConfigurationsResponse {
387
279
 
388
280
  exportsInfo?: ExportInfo[];
389
281
 
390
282
  nextToken?: string;
391
283
  }
392
- export declare namespace DescribeExportConfigurationsResponse {
393
-
394
- const filterSensitiveLog: (obj: DescribeExportConfigurationsResponse) => any;
395
- }
396
284
 
397
285
  export interface ExportFilter {
398
286
 
@@ -402,10 +290,6 @@ export interface ExportFilter {
402
290
 
403
291
  condition: string | undefined;
404
292
  }
405
- export declare namespace ExportFilter {
406
-
407
- const filterSensitiveLog: (obj: ExportFilter) => any;
408
- }
409
293
  export interface DescribeExportTasksRequest {
410
294
 
411
295
  exportIds?: string[];
@@ -416,20 +300,12 @@ export interface DescribeExportTasksRequest {
416
300
 
417
301
  nextToken?: string;
418
302
  }
419
- export declare namespace DescribeExportTasksRequest {
420
-
421
- const filterSensitiveLog: (obj: DescribeExportTasksRequest) => any;
422
- }
423
303
  export interface DescribeExportTasksResponse {
424
304
 
425
305
  exportsInfo?: ExportInfo[];
426
306
 
427
307
  nextToken?: string;
428
308
  }
429
- export declare namespace DescribeExportTasksResponse {
430
-
431
- const filterSensitiveLog: (obj: DescribeExportTasksResponse) => any;
432
- }
433
309
  export declare enum ImportTaskFilterName {
434
310
  IMPORT_TASK_ID = "IMPORT_TASK_ID",
435
311
  NAME = "NAME",
@@ -442,10 +318,6 @@ export interface ImportTaskFilter {
442
318
 
443
319
  values?: string[];
444
320
  }
445
- export declare namespace ImportTaskFilter {
446
-
447
- const filterSensitiveLog: (obj: ImportTaskFilter) => any;
448
- }
449
321
  export interface DescribeImportTasksRequest {
450
322
 
451
323
  filters?: ImportTaskFilter[];
@@ -454,10 +326,6 @@ export interface DescribeImportTasksRequest {
454
326
 
455
327
  nextToken?: string;
456
328
  }
457
- export declare namespace DescribeImportTasksRequest {
458
-
459
- const filterSensitiveLog: (obj: DescribeImportTasksRequest) => any;
460
- }
461
329
  export declare enum ImportStatus {
462
330
  DELETE_COMPLETE = "DELETE_COMPLETE",
463
331
  DELETE_FAILED = "DELETE_FAILED",
@@ -500,20 +368,12 @@ export interface ImportTask {
500
368
 
501
369
  errorsAndFailedEntriesZip?: string;
502
370
  }
503
- export declare namespace ImportTask {
504
-
505
- const filterSensitiveLog: (obj: ImportTask) => any;
506
- }
507
371
  export interface DescribeImportTasksResponse {
508
372
 
509
373
  nextToken?: string;
510
374
 
511
375
  tasks?: ImportTask[];
512
376
  }
513
- export declare namespace DescribeImportTasksResponse {
514
-
515
- const filterSensitiveLog: (obj: DescribeImportTasksResponse) => any;
516
- }
517
377
 
518
378
  export interface TagFilter {
519
379
 
@@ -521,10 +381,6 @@ export interface TagFilter {
521
381
 
522
382
  values: string[] | undefined;
523
383
  }
524
- export declare namespace TagFilter {
525
-
526
- const filterSensitiveLog: (obj: TagFilter) => any;
527
- }
528
384
  export interface DescribeTagsRequest {
529
385
 
530
386
  filters?: TagFilter[];
@@ -533,10 +389,6 @@ export interface DescribeTagsRequest {
533
389
 
534
390
  nextToken?: string;
535
391
  }
536
- export declare namespace DescribeTagsRequest {
537
-
538
- const filterSensitiveLog: (obj: DescribeTagsRequest) => any;
539
- }
540
392
  export declare enum ConfigurationItemType {
541
393
  APPLICATION = "APPLICATION",
542
394
  CONNECTIONS = "CONNECTION",
@@ -556,50 +408,26 @@ export interface ConfigurationTag {
556
408
 
557
409
  timeOfCreation?: Date;
558
410
  }
559
- export declare namespace ConfigurationTag {
560
-
561
- const filterSensitiveLog: (obj: ConfigurationTag) => any;
562
- }
563
411
  export interface DescribeTagsResponse {
564
412
 
565
413
  tags?: ConfigurationTag[];
566
414
 
567
415
  nextToken?: string;
568
416
  }
569
- export declare namespace DescribeTagsResponse {
570
-
571
- const filterSensitiveLog: (obj: DescribeTagsResponse) => any;
572
- }
573
417
  export interface DisassociateConfigurationItemsFromApplicationRequest {
574
418
 
575
419
  applicationConfigurationId: string | undefined;
576
420
 
577
421
  configurationIds: string[] | undefined;
578
422
  }
579
- export declare namespace DisassociateConfigurationItemsFromApplicationRequest {
580
-
581
- const filterSensitiveLog: (obj: DisassociateConfigurationItemsFromApplicationRequest) => any;
582
- }
583
423
  export interface DisassociateConfigurationItemsFromApplicationResponse {
584
424
  }
585
- export declare namespace DisassociateConfigurationItemsFromApplicationResponse {
586
-
587
- const filterSensitiveLog: (obj: DisassociateConfigurationItemsFromApplicationResponse) => any;
588
- }
589
425
  export interface ExportConfigurationsResponse {
590
426
 
591
427
  exportId?: string;
592
428
  }
593
- export declare namespace ExportConfigurationsResponse {
594
-
595
- const filterSensitiveLog: (obj: ExportConfigurationsResponse) => any;
596
- }
597
429
  export interface GetDiscoverySummaryRequest {
598
430
  }
599
- export declare namespace GetDiscoverySummaryRequest {
600
-
601
- const filterSensitiveLog: (obj: GetDiscoverySummaryRequest) => any;
602
- }
603
431
  export interface CustomerAgentlessCollectorInfo {
604
432
  activeAgentlessCollectors: number | undefined;
605
433
  healthyAgentlessCollectors: number | undefined;
@@ -609,10 +437,6 @@ export interface CustomerAgentlessCollectorInfo {
609
437
  totalAgentlessCollectors: number | undefined;
610
438
  unknownAgentlessCollectors: number | undefined;
611
439
  }
612
- export declare namespace CustomerAgentlessCollectorInfo {
613
-
614
- const filterSensitiveLog: (obj: CustomerAgentlessCollectorInfo) => any;
615
- }
616
440
 
617
441
  export interface CustomerAgentInfo {
618
442
 
@@ -630,10 +454,6 @@ export interface CustomerAgentInfo {
630
454
 
631
455
  unknownAgents: number | undefined;
632
456
  }
633
- export declare namespace CustomerAgentInfo {
634
-
635
- const filterSensitiveLog: (obj: CustomerAgentInfo) => any;
636
- }
637
457
 
638
458
  export interface CustomerConnectorInfo {
639
459
 
@@ -651,10 +471,6 @@ export interface CustomerConnectorInfo {
651
471
 
652
472
  unknownConnectors: number | undefined;
653
473
  }
654
- export declare namespace CustomerConnectorInfo {
655
-
656
- const filterSensitiveLog: (obj: CustomerConnectorInfo) => any;
657
- }
658
474
 
659
475
  export interface CustomerMeCollectorInfo {
660
476
 
@@ -672,10 +488,6 @@ export interface CustomerMeCollectorInfo {
672
488
 
673
489
  unknownMeCollectors: number | undefined;
674
490
  }
675
- export declare namespace CustomerMeCollectorInfo {
676
-
677
- const filterSensitiveLog: (obj: CustomerMeCollectorInfo) => any;
678
- }
679
491
  export interface GetDiscoverySummaryResponse {
680
492
 
681
493
  servers?: number;
@@ -693,10 +505,6 @@ export interface GetDiscoverySummaryResponse {
693
505
  meCollectorSummary?: CustomerMeCollectorInfo;
694
506
  agentlessCollectorSummary?: CustomerAgentlessCollectorInfo;
695
507
  }
696
- export declare namespace GetDiscoverySummaryResponse {
697
-
698
- const filterSensitiveLog: (obj: GetDiscoverySummaryResponse) => any;
699
- }
700
508
  export declare enum OrderString {
701
509
  ASC = "ASC",
702
510
  DESC = "DESC"
@@ -708,10 +516,6 @@ export interface OrderByElement {
708
516
 
709
517
  sortOrder?: OrderString | string;
710
518
  }
711
- export declare namespace OrderByElement {
712
-
713
- const filterSensitiveLog: (obj: OrderByElement) => any;
714
- }
715
519
  export interface ListConfigurationsRequest {
716
520
 
717
521
  configurationType: ConfigurationItemType | string | undefined;
@@ -724,20 +528,12 @@ export interface ListConfigurationsRequest {
724
528
 
725
529
  orderBy?: OrderByElement[];
726
530
  }
727
- export declare namespace ListConfigurationsRequest {
728
-
729
- const filterSensitiveLog: (obj: ListConfigurationsRequest) => any;
730
- }
731
531
  export interface ListConfigurationsResponse {
732
532
 
733
533
  configurations?: Record<string, string>[];
734
534
 
735
535
  nextToken?: string;
736
536
  }
737
- export declare namespace ListConfigurationsResponse {
738
-
739
- const filterSensitiveLog: (obj: ListConfigurationsResponse) => any;
740
- }
741
537
  export interface ListServerNeighborsRequest {
742
538
 
743
539
  configurationId: string | undefined;
@@ -750,10 +546,6 @@ export interface ListServerNeighborsRequest {
750
546
 
751
547
  nextToken?: string;
752
548
  }
753
- export declare namespace ListServerNeighborsRequest {
754
-
755
- const filterSensitiveLog: (obj: ListServerNeighborsRequest) => any;
756
- }
757
549
 
758
550
  export interface NeighborConnectionDetail {
759
551
 
@@ -767,10 +559,6 @@ export interface NeighborConnectionDetail {
767
559
 
768
560
  connectionsCount: number | undefined;
769
561
  }
770
- export declare namespace NeighborConnectionDetail {
771
-
772
- const filterSensitiveLog: (obj: NeighborConnectionDetail) => any;
773
- }
774
562
  export interface ListServerNeighborsResponse {
775
563
 
776
564
  neighbors: NeighborConnectionDetail[] | undefined;
@@ -779,10 +567,6 @@ export interface ListServerNeighborsResponse {
779
567
 
780
568
  knownDependencyCount?: number;
781
569
  }
782
- export declare namespace ListServerNeighborsResponse {
783
-
784
- const filterSensitiveLog: (obj: ListServerNeighborsResponse) => any;
785
- }
786
570
 
787
571
  export declare class ConflictErrorException extends __BaseException {
788
572
  readonly name: "ConflictErrorException";
@@ -799,10 +583,6 @@ export declare class ResourceInUseException extends __BaseException {
799
583
  }
800
584
  export interface StartContinuousExportRequest {
801
585
  }
802
- export declare namespace StartContinuousExportRequest {
803
-
804
- const filterSensitiveLog: (obj: StartContinuousExportRequest) => any;
805
- }
806
586
  export interface StartContinuousExportResponse {
807
587
 
808
588
  exportId?: string;
@@ -815,26 +595,14 @@ export interface StartContinuousExportResponse {
815
595
 
816
596
  schemaStorageConfig?: Record<string, string>;
817
597
  }
818
- export declare namespace StartContinuousExportResponse {
819
-
820
- const filterSensitiveLog: (obj: StartContinuousExportResponse) => any;
821
- }
822
598
  export interface StartDataCollectionByAgentIdsRequest {
823
599
 
824
600
  agentIds: string[] | undefined;
825
601
  }
826
- export declare namespace StartDataCollectionByAgentIdsRequest {
827
-
828
- const filterSensitiveLog: (obj: StartDataCollectionByAgentIdsRequest) => any;
829
- }
830
602
  export interface StartDataCollectionByAgentIdsResponse {
831
603
 
832
604
  agentsConfigurationStatus?: AgentConfigurationStatus[];
833
605
  }
834
- export declare namespace StartDataCollectionByAgentIdsResponse {
835
-
836
- const filterSensitiveLog: (obj: StartDataCollectionByAgentIdsResponse) => any;
837
- }
838
606
  export declare enum ExportDataFormat {
839
607
  CSV = "CSV",
840
608
  GRAPHML = "GRAPHML"
@@ -849,18 +617,10 @@ export interface StartExportTaskRequest {
849
617
 
850
618
  endTime?: Date;
851
619
  }
852
- export declare namespace StartExportTaskRequest {
853
-
854
- const filterSensitiveLog: (obj: StartExportTaskRequest) => any;
855
- }
856
620
  export interface StartExportTaskResponse {
857
621
 
858
622
  exportId?: string;
859
623
  }
860
- export declare namespace StartExportTaskResponse {
861
-
862
- const filterSensitiveLog: (obj: StartExportTaskResponse) => any;
863
- }
864
624
  export interface StartImportTaskRequest {
865
625
 
866
626
  clientRequestToken?: string;
@@ -869,52 +629,28 @@ export interface StartImportTaskRequest {
869
629
 
870
630
  importUrl: string | undefined;
871
631
  }
872
- export declare namespace StartImportTaskRequest {
873
-
874
- const filterSensitiveLog: (obj: StartImportTaskRequest) => any;
875
- }
876
632
  export interface StartImportTaskResponse {
877
633
 
878
634
  task?: ImportTask;
879
635
  }
880
- export declare namespace StartImportTaskResponse {
881
-
882
- const filterSensitiveLog: (obj: StartImportTaskResponse) => any;
883
- }
884
636
  export interface StopContinuousExportRequest {
885
637
 
886
638
  exportId: string | undefined;
887
639
  }
888
- export declare namespace StopContinuousExportRequest {
889
-
890
- const filterSensitiveLog: (obj: StopContinuousExportRequest) => any;
891
- }
892
640
  export interface StopContinuousExportResponse {
893
641
 
894
642
  startTime?: Date;
895
643
 
896
644
  stopTime?: Date;
897
645
  }
898
- export declare namespace StopContinuousExportResponse {
899
-
900
- const filterSensitiveLog: (obj: StopContinuousExportResponse) => any;
901
- }
902
646
  export interface StopDataCollectionByAgentIdsRequest {
903
647
 
904
648
  agentIds: string[] | undefined;
905
649
  }
906
- export declare namespace StopDataCollectionByAgentIdsRequest {
907
-
908
- const filterSensitiveLog: (obj: StopDataCollectionByAgentIdsRequest) => any;
909
- }
910
650
  export interface StopDataCollectionByAgentIdsResponse {
911
651
 
912
652
  agentsConfigurationStatus?: AgentConfigurationStatus[];
913
653
  }
914
- export declare namespace StopDataCollectionByAgentIdsResponse {
915
-
916
- const filterSensitiveLog: (obj: StopDataCollectionByAgentIdsResponse) => any;
917
- }
918
654
  export interface UpdateApplicationRequest {
919
655
 
920
656
  configurationId: string | undefined;
@@ -923,13 +659,141 @@ export interface UpdateApplicationRequest {
923
659
 
924
660
  description?: string;
925
661
  }
926
- export declare namespace UpdateApplicationRequest {
927
-
928
- const filterSensitiveLog: (obj: UpdateApplicationRequest) => any;
929
- }
930
662
  export interface UpdateApplicationResponse {
931
663
  }
932
- export declare namespace UpdateApplicationResponse {
933
-
934
- const filterSensitiveLog: (obj: UpdateApplicationResponse) => any;
935
- }
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;