@azure-rest/defender-easm 1.0.0-beta.2 → 1.0.0-beta.3

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.
@@ -0,0 +1,2709 @@
1
+ ## API Report File for "@azure-rest/defender-easm"
2
+
3
+ > Do not edit this file. It is a report generated by [API Extractor](https://api-extractor.com/).
4
+
5
+ ```ts
6
+
7
+ import type { Client } from '@azure-rest/core-client';
8
+ import type { ClientOptions } from '@azure-rest/core-client';
9
+ import type { ErrorResponse } from '@azure-rest/core-client';
10
+ import type { HttpResponse } from '@azure-rest/core-client';
11
+ import type { PathUncheckedResponse } from '@azure-rest/core-client';
12
+ import type { RawHttpHeaders } from '@azure/core-rest-pipeline';
13
+ import type { RequestParameters } from '@azure-rest/core-client';
14
+ import type { StreamableMethod } from '@azure-rest/core-client';
15
+ import type { TokenCredential } from '@azure/core-auth';
16
+
17
+ // @public (undocumented)
18
+ export interface AlexaInfoOutput {
19
+ // (undocumented)
20
+ alexaRank?: number;
21
+ // (undocumented)
22
+ category?: string;
23
+ // (undocumented)
24
+ count?: number;
25
+ // (undocumented)
26
+ firstSeen?: string;
27
+ // (undocumented)
28
+ lastSeen?: string;
29
+ // (undocumented)
30
+ recent?: boolean;
31
+ }
32
+
33
+ // @public (undocumented)
34
+ export interface AsAssetOutput extends InventoryAssetOutput {
35
+ // (undocumented)
36
+ adminContacts?: Array<ObservedStringOutput>;
37
+ // (undocumented)
38
+ adminNames?: Array<ObservedStringOutput>;
39
+ // (undocumented)
40
+ adminOrgs?: Array<ObservedStringOutput>;
41
+ // (undocumented)
42
+ adminPhones?: Array<ObservedStringOutput>;
43
+ // (undocumented)
44
+ asn?: number;
45
+ // (undocumented)
46
+ asNames?: Array<ObservedStringOutput>;
47
+ // (undocumented)
48
+ count?: number;
49
+ // (undocumented)
50
+ countries?: Array<ObservedStringOutput>;
51
+ // (undocumented)
52
+ detailedFromWhoisAt?: string;
53
+ // (undocumented)
54
+ firstSeen?: string;
55
+ // (undocumented)
56
+ lastSeen?: string;
57
+ // (undocumented)
58
+ orgIds?: Array<ObservedStringOutput>;
59
+ // (undocumented)
60
+ orgNames?: Array<ObservedStringOutput>;
61
+ // (undocumented)
62
+ registrantContacts?: Array<ObservedStringOutput>;
63
+ // (undocumented)
64
+ registrantNames?: Array<ObservedStringOutput>;
65
+ // (undocumented)
66
+ registrantPhones?: Array<ObservedStringOutput>;
67
+ // (undocumented)
68
+ registrarCreatedAt?: Array<ObservedLongOutput>;
69
+ // (undocumented)
70
+ registrarNames?: Array<ObservedStringOutput>;
71
+ // (undocumented)
72
+ registrarUpdatedAt?: Array<ObservedLongOutput>;
73
+ // (undocumented)
74
+ registries?: Array<ObservedStringOutput>;
75
+ // (undocumented)
76
+ sources?: Array<SourceOutput>;
77
+ // (undocumented)
78
+ technicalContacts?: Array<ObservedStringOutput>;
79
+ // (undocumented)
80
+ technicalNames?: Array<ObservedStringOutput>;
81
+ // (undocumented)
82
+ technicalOrgs?: Array<ObservedStringOutput>;
83
+ // (undocumented)
84
+ technicalPhones?: Array<ObservedStringOutput>;
85
+ }
86
+
87
+ // @public (undocumented)
88
+ export interface AsAssetResourceOutput extends AssetResourceOutputParent {
89
+ asset: AsAssetOutput;
90
+ kind: "as";
91
+ }
92
+
93
+ // @public
94
+ export interface AssetPageResultOutput {
95
+ mark?: string;
96
+ nextLink?: string;
97
+ totalElements?: number;
98
+ value?: Array<AssetResourceOutput>;
99
+ }
100
+
101
+ // @public
102
+ export type AssetResourceOutput = AssetResourceOutputParent | AsAssetResourceOutput | ContactAssetResourceOutput | DomainAssetResourceOutput | HostAssetResourceOutput | IpAddressAssetResourceOutput | IpBlockAssetResourceOutput | PageAssetResourceOutput | SslCertAssetResourceOutput;
103
+
104
+ // @public
105
+ export interface AssetResourceOutputParent {
106
+ auditTrail?: Array<AuditTrailItemOutput>;
107
+ createdDate?: string;
108
+ discoGroupName?: string;
109
+ displayName?: string;
110
+ externalId?: string;
111
+ readonly id: string;
112
+ // (undocumented)
113
+ kind: string;
114
+ labels?: string[];
115
+ name?: string;
116
+ // (undocumented)
117
+ reason?: string;
118
+ state?: AssetStateOutput;
119
+ updatedDate?: string;
120
+ uuid?: string;
121
+ wildcard?: boolean;
122
+ }
123
+
124
+ // @public (undocumented)
125
+ export interface AssetSecurityPolicyOutput {
126
+ // (undocumented)
127
+ count?: number;
128
+ // (undocumented)
129
+ description?: string;
130
+ // (undocumented)
131
+ firstSeen?: string;
132
+ // (undocumented)
133
+ isAffected?: boolean;
134
+ // (undocumented)
135
+ lastSeen?: string;
136
+ // (undocumented)
137
+ policyName?: string;
138
+ // (undocumented)
139
+ recent?: boolean;
140
+ // (undocumented)
141
+ sources?: Array<SourceOutput>;
142
+ }
143
+
144
+ // @public
145
+ export type AssetStateOutput = string;
146
+
147
+ // @public
148
+ export interface AssetSummaryResultOutput {
149
+ children?: Array<AssetSummaryResultOutput>;
150
+ count?: number;
151
+ description?: string;
152
+ displayName?: string;
153
+ filter?: string;
154
+ labelName?: string;
155
+ link?: string;
156
+ metric?: string;
157
+ metricCategory?: string;
158
+ updatedAt?: string;
159
+ }
160
+
161
+ // @public
162
+ export interface AssetUpdateData {
163
+ externalId?: string;
164
+ labels?: Record<string, boolean>;
165
+ state?: AssetUpdateState;
166
+ transfers?: AssetUpdateTransfers;
167
+ }
168
+
169
+ // @public
170
+ export type AssetUpdateState = string;
171
+
172
+ // @public
173
+ export type AssetUpdateStateOutput = string;
174
+
175
+ // @public
176
+ export type AssetUpdateTransfers = string;
177
+
178
+ // @public (undocumented)
179
+ export interface AttributeOutput {
180
+ // (undocumented)
181
+ attributeType?: string;
182
+ // (undocumented)
183
+ attributeValue?: string;
184
+ // (undocumented)
185
+ count?: number;
186
+ // (undocumented)
187
+ firstSeen?: string;
188
+ // (undocumented)
189
+ lastSeen?: string;
190
+ // (undocumented)
191
+ recent?: boolean;
192
+ // (undocumented)
193
+ sources?: Array<SourceOutput>;
194
+ }
195
+
196
+ // @public
197
+ export type AuditTrailItemKindOutput = string;
198
+
199
+ // @public
200
+ export interface AuditTrailItemOutput {
201
+ displayName?: string;
202
+ id?: string;
203
+ kind?: AuditTrailItemKindOutput;
204
+ name?: string;
205
+ reason?: string;
206
+ }
207
+
208
+ // @public (undocumented)
209
+ export interface AzureDataExplorerDataConnectionData extends DataConnectionDataParent {
210
+ kind: "azureDataExplorer";
211
+ properties: AzureDataExplorerDataConnectionProperties;
212
+ }
213
+
214
+ // @public (undocumented)
215
+ export interface AzureDataExplorerDataConnectionOutput extends DataConnectionOutputParent {
216
+ kind: "azureDataExplorer";
217
+ properties: AzureDataExplorerDataConnectionPropertiesOutput;
218
+ }
219
+
220
+ // @public
221
+ export interface AzureDataExplorerDataConnectionProperties extends DataConnectionProperties {
222
+ clusterName?: string;
223
+ databaseName?: string;
224
+ region?: string;
225
+ }
226
+
227
+ // @public (undocumented)
228
+ export interface AzureDataExplorerDataConnectionPropertiesOutput extends DataConnectionPropertiesOutput {
229
+ clusterName?: string;
230
+ databaseName?: string;
231
+ region?: string;
232
+ }
233
+
234
+ // @public (undocumented)
235
+ export interface BannerOutput {
236
+ // (undocumented)
237
+ banner?: string;
238
+ // (undocumented)
239
+ bannerMetadata?: string;
240
+ // (undocumented)
241
+ count?: number;
242
+ // (undocumented)
243
+ firstSeen?: string;
244
+ // (undocumented)
245
+ lastSeen?: string;
246
+ // (undocumented)
247
+ port?: number;
248
+ // (undocumented)
249
+ recent?: boolean;
250
+ // (undocumented)
251
+ scanType?: string;
252
+ // (undocumented)
253
+ sha256?: string;
254
+ // (undocumented)
255
+ sources?: Array<SourceOutput>;
256
+ }
257
+
258
+ // @public (undocumented)
259
+ export interface CancelTask {
260
+ post(options?: CancelTaskParameters): StreamableMethod<CancelTask200Response | CancelTaskDefaultResponse>;
261
+ }
262
+
263
+ // @public
264
+ export interface CancelTask200Response extends HttpResponse {
265
+ // (undocumented)
266
+ body: TaskOutput;
267
+ // (undocumented)
268
+ status: "200";
269
+ }
270
+
271
+ // @public (undocumented)
272
+ export interface CancelTaskDefaultHeaders {
273
+ "x-ms-error-code"?: string;
274
+ }
275
+
276
+ // @public (undocumented)
277
+ export interface CancelTaskDefaultResponse extends HttpResponse {
278
+ // (undocumented)
279
+ body: ErrorResponse;
280
+ // (undocumented)
281
+ headers: RawHttpHeaders & CancelTaskDefaultHeaders;
282
+ // (undocumented)
283
+ status: string;
284
+ }
285
+
286
+ // @public (undocumented)
287
+ export type CancelTaskParameters = RequestParameters;
288
+
289
+ // @public (undocumented)
290
+ export interface ContactAssetOutput extends InventoryAssetOutput {
291
+ // (undocumented)
292
+ count?: number;
293
+ // (undocumented)
294
+ email?: string;
295
+ // (undocumented)
296
+ firstSeen?: string;
297
+ // (undocumented)
298
+ lastSeen?: string;
299
+ // (undocumented)
300
+ names?: Array<ObservedStringOutput>;
301
+ // (undocumented)
302
+ organizations?: Array<ObservedStringOutput>;
303
+ // (undocumented)
304
+ sources?: Array<SourceOutput>;
305
+ }
306
+
307
+ // @public (undocumented)
308
+ export interface ContactAssetResourceOutput extends AssetResourceOutputParent {
309
+ asset: ContactAssetOutput;
310
+ kind: "contact";
311
+ }
312
+
313
+ // @public (undocumented)
314
+ export interface CookieOutput {
315
+ // (undocumented)
316
+ cookieDomain?: string;
317
+ // (undocumented)
318
+ cookieExpiryDate?: string;
319
+ // (undocumented)
320
+ cookieName?: string;
321
+ // (undocumented)
322
+ count?: number;
323
+ // (undocumented)
324
+ firstSeen?: string;
325
+ // (undocumented)
326
+ lastSeen?: string;
327
+ // (undocumented)
328
+ recent?: boolean;
329
+ }
330
+
331
+ // @public
332
+ function createClient(endpointParam: string, credentials: TokenCredential, { apiVersion, ...options }?: EasmClientOptions): EasmClient;
333
+ export default createClient;
334
+
335
+ // @public
336
+ export interface CreateOrReplaceDataConnection200Response extends HttpResponse {
337
+ // (undocumented)
338
+ body: DataConnectionOutput;
339
+ // (undocumented)
340
+ status: "200";
341
+ }
342
+
343
+ // @public (undocumented)
344
+ export interface CreateOrReplaceDataConnectionBodyParam {
345
+ // (undocumented)
346
+ body: DataConnectionData;
347
+ }
348
+
349
+ // @public (undocumented)
350
+ export interface CreateOrReplaceDataConnectionDefaultHeaders {
351
+ "x-ms-error-code"?: string;
352
+ }
353
+
354
+ // @public (undocumented)
355
+ export interface CreateOrReplaceDataConnectionDefaultResponse extends HttpResponse {
356
+ // (undocumented)
357
+ body: ErrorResponse;
358
+ // (undocumented)
359
+ headers: RawHttpHeaders & CreateOrReplaceDataConnectionDefaultHeaders;
360
+ // (undocumented)
361
+ status: string;
362
+ }
363
+
364
+ // @public (undocumented)
365
+ export type CreateOrReplaceDataConnectionParameters = CreateOrReplaceDataConnectionBodyParam & RequestParameters;
366
+
367
+ // @public
368
+ export interface CreateOrReplaceDiscoGroup200Response extends HttpResponse {
369
+ // (undocumented)
370
+ body: DiscoGroupOutput;
371
+ // (undocumented)
372
+ status: "200";
373
+ }
374
+
375
+ // @public (undocumented)
376
+ export interface CreateOrReplaceDiscoGroupBodyParam {
377
+ // (undocumented)
378
+ body: DiscoGroupData;
379
+ }
380
+
381
+ // @public (undocumented)
382
+ export interface CreateOrReplaceDiscoGroupDefaultHeaders {
383
+ "x-ms-error-code"?: string;
384
+ }
385
+
386
+ // @public (undocumented)
387
+ export interface CreateOrReplaceDiscoGroupDefaultResponse extends HttpResponse {
388
+ // (undocumented)
389
+ body: ErrorResponse;
390
+ // (undocumented)
391
+ headers: RawHttpHeaders & CreateOrReplaceDiscoGroupDefaultHeaders;
392
+ // (undocumented)
393
+ status: string;
394
+ }
395
+
396
+ // @public (undocumented)
397
+ export type CreateOrReplaceDiscoGroupParameters = CreateOrReplaceDiscoGroupBodyParam & RequestParameters;
398
+
399
+ // @public
400
+ export interface CreateOrReplaceSavedFilter200Response extends HttpResponse {
401
+ // (undocumented)
402
+ body: SavedFilterOutput;
403
+ // (undocumented)
404
+ status: "200";
405
+ }
406
+
407
+ // @public (undocumented)
408
+ export interface CreateOrReplaceSavedFilterBodyParam {
409
+ // (undocumented)
410
+ body: SavedFilterData;
411
+ }
412
+
413
+ // @public (undocumented)
414
+ export interface CreateOrReplaceSavedFilterDefaultHeaders {
415
+ "x-ms-error-code"?: string;
416
+ }
417
+
418
+ // @public (undocumented)
419
+ export interface CreateOrReplaceSavedFilterDefaultResponse extends HttpResponse {
420
+ // (undocumented)
421
+ body: ErrorResponse;
422
+ // (undocumented)
423
+ headers: RawHttpHeaders & CreateOrReplaceSavedFilterDefaultHeaders;
424
+ // (undocumented)
425
+ status: string;
426
+ }
427
+
428
+ // @public (undocumented)
429
+ export type CreateOrReplaceSavedFilterParameters = CreateOrReplaceSavedFilterBodyParam & RequestParameters;
430
+
431
+ // @public (undocumented)
432
+ export interface CveOutput {
433
+ // (undocumented)
434
+ cvss3Summary?: Cvss3SummaryOutput;
435
+ // (undocumented)
436
+ cvssScore?: number;
437
+ // (undocumented)
438
+ cweId?: string;
439
+ // (undocumented)
440
+ name?: string;
441
+ }
442
+
443
+ // @public (undocumented)
444
+ export interface Cvss3SummaryOutput {
445
+ // (undocumented)
446
+ attackComplexity?: string;
447
+ // (undocumented)
448
+ attackVector?: string;
449
+ // (undocumented)
450
+ availabilityImpact?: string;
451
+ // (undocumented)
452
+ baseScore?: number;
453
+ // (undocumented)
454
+ baseSeverity?: string;
455
+ // (undocumented)
456
+ confidentialityImpact?: string;
457
+ // (undocumented)
458
+ exploitabilityScore?: number;
459
+ // (undocumented)
460
+ exploitCodeMaturity?: string;
461
+ // (undocumented)
462
+ impactScore?: number;
463
+ // (undocumented)
464
+ integrityImpact?: string;
465
+ // (undocumented)
466
+ privilegesRequired?: string;
467
+ // (undocumented)
468
+ remediationLevel?: string;
469
+ // (undocumented)
470
+ reportConfidence?: string;
471
+ // (undocumented)
472
+ scope?: string;
473
+ // (undocumented)
474
+ userInteraction?: string;
475
+ // (undocumented)
476
+ vectorString?: string;
477
+ // (undocumented)
478
+ version?: string;
479
+ }
480
+
481
+ // @public
482
+ export type DataConnectionContent = string;
483
+
484
+ // @public
485
+ export type DataConnectionContentOutput = string;
486
+
487
+ // @public (undocumented)
488
+ export type DataConnectionData = DataConnectionDataParent | LogAnalyticsDataConnectionData | AzureDataExplorerDataConnectionData;
489
+
490
+ // @public (undocumented)
491
+ export interface DataConnectionDataParent {
492
+ content?: DataConnectionContent;
493
+ frequency?: DataConnectionFrequency;
494
+ frequencyOffset?: number;
495
+ // (undocumented)
496
+ kind: string;
497
+ name?: string;
498
+ }
499
+
500
+ // @public
501
+ export type DataConnectionFrequency = string;
502
+
503
+ // @public
504
+ export type DataConnectionFrequencyOutput = string;
505
+
506
+ // @public (undocumented)
507
+ export type DataConnectionOutput = DataConnectionOutputParent | LogAnalyticsDataConnectionOutput | AzureDataExplorerDataConnectionOutput;
508
+
509
+ // @public (undocumented)
510
+ export interface DataConnectionOutputParent {
511
+ active?: boolean;
512
+ content?: DataConnectionContentOutput;
513
+ readonly createdDate?: string;
514
+ displayName?: string;
515
+ frequency?: DataConnectionFrequencyOutput;
516
+ frequencyOffset?: number;
517
+ id?: string;
518
+ readonly inactiveMessage?: string;
519
+ // (undocumented)
520
+ kind: string;
521
+ readonly name: string;
522
+ readonly updatedDate?: string;
523
+ readonly userUpdatedAt?: string;
524
+ }
525
+
526
+ // @public
527
+ export interface DataConnectionProperties {
528
+ }
529
+
530
+ // @public
531
+ export interface DataConnectionPropertiesOutput {
532
+ }
533
+
534
+ // @public
535
+ export interface DeleteDataConnection204Response extends HttpResponse {
536
+ // (undocumented)
537
+ status: "204";
538
+ }
539
+
540
+ // @public (undocumented)
541
+ export interface DeleteDataConnectionDefaultHeaders {
542
+ "x-ms-error-code"?: string;
543
+ }
544
+
545
+ // @public (undocumented)
546
+ export interface DeleteDataConnectionDefaultResponse extends HttpResponse {
547
+ // (undocumented)
548
+ body: ErrorResponse;
549
+ // (undocumented)
550
+ headers: RawHttpHeaders & DeleteDataConnectionDefaultHeaders;
551
+ // (undocumented)
552
+ status: string;
553
+ }
554
+
555
+ // @public (undocumented)
556
+ export type DeleteDataConnectionParameters = RequestParameters;
557
+
558
+ // @public
559
+ export interface DeleteSavedFilter204Response extends HttpResponse {
560
+ // (undocumented)
561
+ status: "204";
562
+ }
563
+
564
+ // @public (undocumented)
565
+ export interface DeleteSavedFilterDefaultHeaders {
566
+ "x-ms-error-code"?: string;
567
+ }
568
+
569
+ // @public (undocumented)
570
+ export interface DeleteSavedFilterDefaultResponse extends HttpResponse {
571
+ // (undocumented)
572
+ body: ErrorResponse;
573
+ // (undocumented)
574
+ headers: RawHttpHeaders & DeleteSavedFilterDefaultHeaders;
575
+ // (undocumented)
576
+ status: string;
577
+ }
578
+
579
+ // @public (undocumented)
580
+ export type DeleteSavedFilterParameters = RequestParameters;
581
+
582
+ // @public (undocumented)
583
+ export interface DependentResourceOutput {
584
+ // (undocumented)
585
+ cached?: boolean;
586
+ // (undocumented)
587
+ contentType?: string;
588
+ // (undocumented)
589
+ count?: number;
590
+ // (undocumented)
591
+ firstSeen?: string;
592
+ // (undocumented)
593
+ firstSeenCrawlGuid?: string;
594
+ // (undocumented)
595
+ firstSeenPageGuid?: string;
596
+ // (undocumented)
597
+ firstSeenResourceGuid?: string;
598
+ // (undocumented)
599
+ host?: string;
600
+ // (undocumented)
601
+ lastObservedActualSriHash?: string;
602
+ // (undocumented)
603
+ lastObservedExpectedSriHash?: string;
604
+ // (undocumented)
605
+ lastObservedValidation?: string;
606
+ // (undocumented)
607
+ lastObservedViolation?: string;
608
+ // (undocumented)
609
+ lastSeen?: string;
610
+ // (undocumented)
611
+ lastSeenCrawlGuid?: string;
612
+ // (undocumented)
613
+ lastSeenPageGuid?: string;
614
+ // (undocumented)
615
+ lastSeenResourceGuid?: string;
616
+ // (undocumented)
617
+ md5?: string;
618
+ // (undocumented)
619
+ responseBodyMinhash?: number[];
620
+ // (undocumented)
621
+ responseBodySize?: number;
622
+ // (undocumented)
623
+ sha256?: string;
624
+ // (undocumented)
625
+ sha384?: string;
626
+ // (undocumented)
627
+ sha512?: string;
628
+ // (undocumented)
629
+ sriChecks?: Array<SubResourceIntegrityCheckOutput>;
630
+ // (undocumented)
631
+ url?: string;
632
+ }
633
+
634
+ // @public
635
+ export interface DiscoGroupData {
636
+ description?: string;
637
+ excludes?: Array<DiscoSource>;
638
+ frequencyMilliseconds?: number;
639
+ name?: string;
640
+ names?: string[];
641
+ seeds?: Array<DiscoSource>;
642
+ templateId?: string;
643
+ tier?: string;
644
+ }
645
+
646
+ // @public (undocumented)
647
+ export interface DiscoGroupOutput {
648
+ createdDate?: string;
649
+ description?: string;
650
+ displayName?: string;
651
+ excludes?: Array<DiscoSourceOutput>;
652
+ frequencyMilliseconds?: number;
653
+ id?: string;
654
+ latestRun?: DiscoRunResultOutput;
655
+ readonly name: string;
656
+ names?: string[];
657
+ seeds?: Array<DiscoSourceOutput>;
658
+ templateId?: string;
659
+ tier?: string;
660
+ }
661
+
662
+ // @public (undocumented)
663
+ export interface DiscoRunPageResultOutput {
664
+ nextLink?: string;
665
+ totalElements?: number;
666
+ value?: Array<DiscoRunResultOutput>;
667
+ }
668
+
669
+ // @public
670
+ export interface DiscoRunResultOutput {
671
+ completedDate?: string;
672
+ excludes?: Array<DiscoSourceOutput>;
673
+ names?: string[];
674
+ seeds?: Array<DiscoSourceOutput>;
675
+ startedDate?: string;
676
+ state?: DiscoRunStateOutput;
677
+ submittedDate?: string;
678
+ tier?: string;
679
+ totalAssetsFoundCount?: number;
680
+ }
681
+
682
+ // @public
683
+ export type DiscoRunStateOutput = string;
684
+
685
+ // @public
686
+ export interface DiscoSource {
687
+ kind?: DiscoSourceKind;
688
+ name?: string;
689
+ }
690
+
691
+ // @public
692
+ export type DiscoSourceKind = string;
693
+
694
+ // @public
695
+ export type DiscoSourceKindOutput = string;
696
+
697
+ // @public
698
+ export interface DiscoSourceOutput {
699
+ kind?: DiscoSourceKindOutput;
700
+ name?: string;
701
+ }
702
+
703
+ // @public
704
+ export interface DiscoTemplateOutput {
705
+ city?: string;
706
+ countryCode?: string;
707
+ displayName?: string;
708
+ readonly id: string;
709
+ industry?: string;
710
+ name?: string;
711
+ names?: string[];
712
+ region?: string;
713
+ seeds?: Array<DiscoSourceOutput>;
714
+ stateCode?: string;
715
+ }
716
+
717
+ // @public (undocumented)
718
+ export interface DomainAssetOutput {
719
+ // (undocumented)
720
+ adminContacts?: Array<ObservedStringOutput>;
721
+ // (undocumented)
722
+ adminNames?: Array<ObservedStringOutput>;
723
+ // (undocumented)
724
+ adminOrgs?: Array<ObservedStringOutput>;
725
+ // (undocumented)
726
+ adminPhones?: Array<ObservedStringOutput>;
727
+ // (undocumented)
728
+ alexaInfos?: Array<AlexaInfoOutput>;
729
+ // (undocumented)
730
+ count?: number;
731
+ // (undocumented)
732
+ detailedFromWhoisAt?: string;
733
+ // (undocumented)
734
+ domain?: string;
735
+ // (undocumented)
736
+ domainStatuses?: Array<ObservedStringOutput>;
737
+ // (undocumented)
738
+ firstSeen?: string;
739
+ // (undocumented)
740
+ lastSeen?: string;
741
+ // (undocumented)
742
+ mailServers?: Array<ObservedStringOutput>;
743
+ // (undocumented)
744
+ nameServers?: Array<ObservedStringOutput>;
745
+ // (undocumented)
746
+ parkedDomain?: Array<ObservedBooleanOutput>;
747
+ // (undocumented)
748
+ registrantContacts?: Array<ObservedStringOutput>;
749
+ // (undocumented)
750
+ registrantNames?: Array<ObservedStringOutput>;
751
+ // (undocumented)
752
+ registrantOrgs?: Array<ObservedStringOutput>;
753
+ // (undocumented)
754
+ registrantPhones?: Array<ObservedStringOutput>;
755
+ // (undocumented)
756
+ registrarCreatedAt?: Array<ObservedLongOutput>;
757
+ // (undocumented)
758
+ registrarExpiresAt?: Array<ObservedLongOutput>;
759
+ // (undocumented)
760
+ registrarIanaIds?: Array<ObservedIntegerOutput>;
761
+ // (undocumented)
762
+ registrarNames?: Array<ObservedStringOutput>;
763
+ // (undocumented)
764
+ registrarUpdatedAt?: Array<ObservedLongOutput>;
765
+ // (undocumented)
766
+ soaRecords?: Array<SoaRecordOutput>;
767
+ // (undocumented)
768
+ sources?: Array<SourceOutput>;
769
+ // (undocumented)
770
+ technicalContacts?: Array<ObservedStringOutput>;
771
+ // (undocumented)
772
+ technicalNames?: Array<ObservedStringOutput>;
773
+ // (undocumented)
774
+ technicalOrgs?: Array<ObservedStringOutput>;
775
+ // (undocumented)
776
+ technicalPhones?: Array<ObservedStringOutput>;
777
+ // (undocumented)
778
+ whoisId?: number;
779
+ // (undocumented)
780
+ whoisServers?: Array<ObservedStringOutput>;
781
+ }
782
+
783
+ // @public (undocumented)
784
+ export interface DomainAssetResourceOutput extends AssetResourceOutputParent {
785
+ asset: DomainAssetOutput;
786
+ kind: "domain";
787
+ }
788
+
789
+ // @public (undocumented)
790
+ export type EasmClient = Client & {
791
+ path: Routes;
792
+ };
793
+
794
+ // @public
795
+ export interface EasmClientOptions extends ClientOptions {
796
+ apiVersion?: string;
797
+ }
798
+
799
+ // @public
800
+ export interface ErrorDetailOutput {
801
+ code: string;
802
+ details?: Array<ErrorDetailOutput>;
803
+ innererror?: InnerErrorOutput;
804
+ message: string;
805
+ target?: string;
806
+ }
807
+
808
+ // @public
809
+ export type GetArrayType<T> = T extends Array<infer TData> ? TData : never;
810
+
811
+ // @public (undocumented)
812
+ export interface GetAssetResource {
813
+ get(options?: GetAssetResourceParameters): StreamableMethod<GetAssetResource200Response | GetAssetResourceDefaultResponse>;
814
+ }
815
+
816
+ // @public
817
+ export interface GetAssetResource200Response extends HttpResponse {
818
+ // (undocumented)
819
+ body: AssetResourceOutput;
820
+ // (undocumented)
821
+ status: "200";
822
+ }
823
+
824
+ // @public (undocumented)
825
+ export interface GetAssetResourceDefaultHeaders {
826
+ "x-ms-error-code"?: string;
827
+ }
828
+
829
+ // @public (undocumented)
830
+ export interface GetAssetResourceDefaultResponse extends HttpResponse {
831
+ // (undocumented)
832
+ body: ErrorResponse;
833
+ // (undocumented)
834
+ headers: RawHttpHeaders & GetAssetResourceDefaultHeaders;
835
+ // (undocumented)
836
+ status: string;
837
+ }
838
+
839
+ // @public (undocumented)
840
+ export type GetAssetResourceParameters = RequestParameters;
841
+
842
+ // @public (undocumented)
843
+ export interface GetBillable {
844
+ post(options?: GetBillableParameters): StreamableMethod<GetBillable200Response | GetBillableDefaultResponse>;
845
+ }
846
+
847
+ // @public
848
+ export interface GetBillable200Response extends HttpResponse {
849
+ // (undocumented)
850
+ body: ReportBillableAssetSummaryResultOutput;
851
+ // (undocumented)
852
+ status: "200";
853
+ }
854
+
855
+ // @public (undocumented)
856
+ export interface GetBillableDefaultHeaders {
857
+ "x-ms-error-code"?: string;
858
+ }
859
+
860
+ // @public (undocumented)
861
+ export interface GetBillableDefaultResponse extends HttpResponse {
862
+ // (undocumented)
863
+ body: ErrorResponse;
864
+ // (undocumented)
865
+ headers: RawHttpHeaders & GetBillableDefaultHeaders;
866
+ // (undocumented)
867
+ status: string;
868
+ }
869
+
870
+ // @public (undocumented)
871
+ export type GetBillableParameters = RequestParameters;
872
+
873
+ // @public (undocumented)
874
+ export interface GetDataConnection {
875
+ delete(options?: DeleteDataConnectionParameters): StreamableMethod<DeleteDataConnection204Response | DeleteDataConnectionDefaultResponse>;
876
+ get(options?: GetDataConnectionParameters): StreamableMethod<GetDataConnection200Response | GetDataConnectionDefaultResponse>;
877
+ put(options: CreateOrReplaceDataConnectionParameters): StreamableMethod<CreateOrReplaceDataConnection200Response | CreateOrReplaceDataConnectionDefaultResponse>;
878
+ }
879
+
880
+ // @public
881
+ export interface GetDataConnection200Response extends HttpResponse {
882
+ // (undocumented)
883
+ body: DataConnectionOutput;
884
+ // (undocumented)
885
+ status: "200";
886
+ }
887
+
888
+ // @public (undocumented)
889
+ export interface GetDataConnectionDefaultHeaders {
890
+ "x-ms-error-code"?: string;
891
+ }
892
+
893
+ // @public (undocumented)
894
+ export interface GetDataConnectionDefaultResponse extends HttpResponse {
895
+ // (undocumented)
896
+ body: ErrorResponse;
897
+ // (undocumented)
898
+ headers: RawHttpHeaders & GetDataConnectionDefaultHeaders;
899
+ // (undocumented)
900
+ status: string;
901
+ }
902
+
903
+ // @public (undocumented)
904
+ export type GetDataConnectionParameters = RequestParameters;
905
+
906
+ // @public (undocumented)
907
+ export interface GetDiscoGroup {
908
+ get(options?: GetDiscoGroupParameters): StreamableMethod<GetDiscoGroup200Response | GetDiscoGroupDefaultResponse>;
909
+ put(options: CreateOrReplaceDiscoGroupParameters): StreamableMethod<CreateOrReplaceDiscoGroup200Response | CreateOrReplaceDiscoGroupDefaultResponse>;
910
+ }
911
+
912
+ // @public
913
+ export interface GetDiscoGroup200Response extends HttpResponse {
914
+ // (undocumented)
915
+ body: DiscoGroupOutput;
916
+ // (undocumented)
917
+ status: "200";
918
+ }
919
+
920
+ // @public (undocumented)
921
+ export interface GetDiscoGroupDefaultHeaders {
922
+ "x-ms-error-code"?: string;
923
+ }
924
+
925
+ // @public (undocumented)
926
+ export interface GetDiscoGroupDefaultResponse extends HttpResponse {
927
+ // (undocumented)
928
+ body: ErrorResponse;
929
+ // (undocumented)
930
+ headers: RawHttpHeaders & GetDiscoGroupDefaultHeaders;
931
+ // (undocumented)
932
+ status: string;
933
+ }
934
+
935
+ // @public (undocumented)
936
+ export type GetDiscoGroupParameters = RequestParameters;
937
+
938
+ // @public (undocumented)
939
+ export interface GetDiscoTemplate {
940
+ get(options?: GetDiscoTemplateParameters): StreamableMethod<GetDiscoTemplate200Response | GetDiscoTemplateDefaultResponse>;
941
+ }
942
+
943
+ // @public
944
+ export interface GetDiscoTemplate200Response extends HttpResponse {
945
+ // (undocumented)
946
+ body: DiscoTemplateOutput;
947
+ // (undocumented)
948
+ status: "200";
949
+ }
950
+
951
+ // @public (undocumented)
952
+ export interface GetDiscoTemplateDefaultHeaders {
953
+ "x-ms-error-code"?: string;
954
+ }
955
+
956
+ // @public (undocumented)
957
+ export interface GetDiscoTemplateDefaultResponse extends HttpResponse {
958
+ // (undocumented)
959
+ body: ErrorResponse;
960
+ // (undocumented)
961
+ headers: RawHttpHeaders & GetDiscoTemplateDefaultHeaders;
962
+ // (undocumented)
963
+ status: string;
964
+ }
965
+
966
+ // @public (undocumented)
967
+ export type GetDiscoTemplateParameters = RequestParameters;
968
+
969
+ // @public
970
+ export type GetPage<TPage> = (pageLink: string) => Promise<{
971
+ page: TPage;
972
+ nextPageLink?: string;
973
+ }>;
974
+
975
+ // @public (undocumented)
976
+ export interface GetSavedFilter {
977
+ delete(options?: DeleteSavedFilterParameters): StreamableMethod<DeleteSavedFilter204Response | DeleteSavedFilterDefaultResponse>;
978
+ get(options?: GetSavedFilterParameters): StreamableMethod<GetSavedFilter200Response | GetSavedFilterDefaultResponse>;
979
+ put(options: CreateOrReplaceSavedFilterParameters): StreamableMethod<CreateOrReplaceSavedFilter200Response | CreateOrReplaceSavedFilterDefaultResponse>;
980
+ }
981
+
982
+ // @public
983
+ export interface GetSavedFilter200Response extends HttpResponse {
984
+ // (undocumented)
985
+ body: SavedFilterOutput;
986
+ // (undocumented)
987
+ status: "200";
988
+ }
989
+
990
+ // @public (undocumented)
991
+ export interface GetSavedFilterDefaultHeaders {
992
+ "x-ms-error-code"?: string;
993
+ }
994
+
995
+ // @public (undocumented)
996
+ export interface GetSavedFilterDefaultResponse extends HttpResponse {
997
+ // (undocumented)
998
+ body: ErrorResponse;
999
+ // (undocumented)
1000
+ headers: RawHttpHeaders & GetSavedFilterDefaultHeaders;
1001
+ // (undocumented)
1002
+ status: string;
1003
+ }
1004
+
1005
+ // @public (undocumented)
1006
+ export type GetSavedFilterParameters = RequestParameters;
1007
+
1008
+ // @public (undocumented)
1009
+ export interface GetSnapshot {
1010
+ post(options: GetSnapshotParameters): StreamableMethod<GetSnapshot200Response | GetSnapshotDefaultResponse>;
1011
+ }
1012
+
1013
+ // @public
1014
+ export interface GetSnapshot200Response extends HttpResponse {
1015
+ // (undocumented)
1016
+ body: ReportAssetSnapshotResultOutput;
1017
+ // (undocumented)
1018
+ status: "200";
1019
+ }
1020
+
1021
+ // @public (undocumented)
1022
+ export interface GetSnapshotBodyParam {
1023
+ // (undocumented)
1024
+ body: ReportAssetSnapshotRequest;
1025
+ }
1026
+
1027
+ // @public (undocumented)
1028
+ export interface GetSnapshotDefaultHeaders {
1029
+ "x-ms-error-code"?: string;
1030
+ }
1031
+
1032
+ // @public (undocumented)
1033
+ export interface GetSnapshotDefaultResponse extends HttpResponse {
1034
+ // (undocumented)
1035
+ body: ErrorResponse;
1036
+ // (undocumented)
1037
+ headers: RawHttpHeaders & GetSnapshotDefaultHeaders;
1038
+ // (undocumented)
1039
+ status: string;
1040
+ }
1041
+
1042
+ // @public (undocumented)
1043
+ export type GetSnapshotParameters = GetSnapshotBodyParam & RequestParameters;
1044
+
1045
+ // @public (undocumented)
1046
+ export interface GetSummary {
1047
+ post(options: GetSummaryParameters): StreamableMethod<GetSummary200Response | GetSummaryDefaultResponse>;
1048
+ }
1049
+
1050
+ // @public
1051
+ export interface GetSummary200Response extends HttpResponse {
1052
+ // (undocumented)
1053
+ body: ReportAssetSummaryResultOutput;
1054
+ // (undocumented)
1055
+ status: "200";
1056
+ }
1057
+
1058
+ // @public (undocumented)
1059
+ export interface GetSummaryBodyParam {
1060
+ // (undocumented)
1061
+ body: ReportAssetSummaryRequest;
1062
+ }
1063
+
1064
+ // @public (undocumented)
1065
+ export interface GetSummaryDefaultHeaders {
1066
+ "x-ms-error-code"?: string;
1067
+ }
1068
+
1069
+ // @public (undocumented)
1070
+ export interface GetSummaryDefaultResponse extends HttpResponse {
1071
+ // (undocumented)
1072
+ body: ErrorResponse;
1073
+ // (undocumented)
1074
+ headers: RawHttpHeaders & GetSummaryDefaultHeaders;
1075
+ // (undocumented)
1076
+ status: string;
1077
+ }
1078
+
1079
+ // @public (undocumented)
1080
+ export type GetSummaryParameters = GetSummaryBodyParam & RequestParameters;
1081
+
1082
+ // @public (undocumented)
1083
+ export interface GetTask {
1084
+ get(options?: GetTaskParameters): StreamableMethod<GetTask200Response | GetTaskDefaultResponse>;
1085
+ }
1086
+
1087
+ // @public
1088
+ export interface GetTask200Response extends HttpResponse {
1089
+ // (undocumented)
1090
+ body: TaskOutput;
1091
+ // (undocumented)
1092
+ status: "200";
1093
+ }
1094
+
1095
+ // @public (undocumented)
1096
+ export interface GetTaskDefaultHeaders {
1097
+ "x-ms-error-code"?: string;
1098
+ }
1099
+
1100
+ // @public (undocumented)
1101
+ export interface GetTaskDefaultResponse extends HttpResponse {
1102
+ // (undocumented)
1103
+ body: ErrorResponse;
1104
+ // (undocumented)
1105
+ headers: RawHttpHeaders & GetTaskDefaultHeaders;
1106
+ // (undocumented)
1107
+ status: string;
1108
+ }
1109
+
1110
+ // @public (undocumented)
1111
+ export type GetTaskParameters = RequestParameters;
1112
+
1113
+ // @public (undocumented)
1114
+ export interface GuidPairOutput {
1115
+ // (undocumented)
1116
+ crawlStateGuid?: string;
1117
+ // (undocumented)
1118
+ loadDate?: string;
1119
+ // (undocumented)
1120
+ pageGuid?: string;
1121
+ // (undocumented)
1122
+ recent?: boolean;
1123
+ }
1124
+
1125
+ // @public (undocumented)
1126
+ export interface HostAssetOutput extends InventoryAssetOutput {
1127
+ // (undocumented)
1128
+ asns?: Array<ObservedLongOutput>;
1129
+ // (undocumented)
1130
+ attributes?: Array<AttributeOutput>;
1131
+ // (undocumented)
1132
+ banners?: Array<BannerOutput>;
1133
+ // (undocumented)
1134
+ childHosts?: Array<ObservedStringOutput>;
1135
+ // (undocumented)
1136
+ cnames?: Array<ObservedStringOutput>;
1137
+ // (undocumented)
1138
+ cookies?: Array<CookieOutput>;
1139
+ // (undocumented)
1140
+ count?: number;
1141
+ // (undocumented)
1142
+ domain?: string;
1143
+ // (undocumented)
1144
+ domainAsset?: DomainAssetOutput;
1145
+ // (undocumented)
1146
+ firstSeen?: string;
1147
+ // (undocumented)
1148
+ headers?: Array<ObservedHeaderOutput>;
1149
+ // (undocumented)
1150
+ host?: string;
1151
+ // (undocumented)
1152
+ hostCore?: HostCoreOutput;
1153
+ // (undocumented)
1154
+ ipAddresses?: Array<ObservedStringOutput>;
1155
+ // (undocumented)
1156
+ ipBlocks?: Array<IpBlockOutput>;
1157
+ // (undocumented)
1158
+ ipv4?: Array<ObservedBooleanOutput>;
1159
+ // (undocumented)
1160
+ ipv6?: Array<ObservedBooleanOutput>;
1161
+ // (undocumented)
1162
+ isWildcard?: Array<ObservedBooleanOutput>;
1163
+ // (undocumented)
1164
+ lastSeen?: string;
1165
+ // (undocumented)
1166
+ location?: Array<ObservedLocationOutput>;
1167
+ // (undocumented)
1168
+ mxRecord?: Array<ObservedBooleanOutput>;
1169
+ // (undocumented)
1170
+ nsRecord?: Array<ObservedBooleanOutput>;
1171
+ // (undocumented)
1172
+ nxdomain?: Array<ObservedBooleanOutput>;
1173
+ // (undocumented)
1174
+ parentHosts?: Array<ObservedStringOutput>;
1175
+ // (undocumented)
1176
+ resourceUrls?: Array<ResourceUrlOutput>;
1177
+ // (undocumented)
1178
+ responseBodies?: Array<ObservedStringOutput>;
1179
+ // (undocumented)
1180
+ scanMetadata?: Array<ScanMetadataOutput>;
1181
+ // (undocumented)
1182
+ services?: Array<ServiceOutput>;
1183
+ // (undocumented)
1184
+ sources?: Array<SourceOutput>;
1185
+ // (undocumented)
1186
+ sslCerts?: Array<SslCertAssetOutput>;
1187
+ // (undocumented)
1188
+ sslServerConfig?: Array<SslServerConfigOutput>;
1189
+ // (undocumented)
1190
+ webComponents?: Array<WebComponentOutput>;
1191
+ // (undocumented)
1192
+ webserver?: Array<ObservedBooleanOutput>;
1193
+ }
1194
+
1195
+ // @public (undocumented)
1196
+ export interface HostAssetResourceOutput extends AssetResourceOutputParent {
1197
+ asset: HostAssetOutput;
1198
+ kind: "host";
1199
+ }
1200
+
1201
+ // @public (undocumented)
1202
+ export interface HostCoreOutput {
1203
+ // (undocumented)
1204
+ alexaRank?: number;
1205
+ // (undocumented)
1206
+ blacklistCauseCount?: number;
1207
+ // (undocumented)
1208
+ blacklistCauseFirstSeen?: string;
1209
+ // (undocumented)
1210
+ blacklistCauseLastSeen?: string;
1211
+ // (undocumented)
1212
+ blacklistResourceCount?: number;
1213
+ // (undocumented)
1214
+ blacklistResourceFirstSeen?: string;
1215
+ // (undocumented)
1216
+ blacklistResourceLastSeen?: string;
1217
+ // (undocumented)
1218
+ blacklistSequenceCount?: number;
1219
+ // (undocumented)
1220
+ blacklistSequenceFirstSeen?: string;
1221
+ // (undocumented)
1222
+ blacklistSequenceLastSeen?: string;
1223
+ // (undocumented)
1224
+ count?: number;
1225
+ // (undocumented)
1226
+ domain?: string;
1227
+ // (undocumented)
1228
+ domainMalwareReputationScore?: number;
1229
+ // (undocumented)
1230
+ domainPhishReputationScore?: number;
1231
+ // (undocumented)
1232
+ domainReputationScore?: number;
1233
+ // (undocumented)
1234
+ domainScamReputationScore?: number;
1235
+ // (undocumented)
1236
+ domainSpamReputationScore?: number;
1237
+ // (undocumented)
1238
+ firstSeen?: string;
1239
+ // (undocumented)
1240
+ host?: string;
1241
+ // (undocumented)
1242
+ hostMalwareReputationScore?: number;
1243
+ // (undocumented)
1244
+ hostPhishReputationScore?: number;
1245
+ // (undocumented)
1246
+ hostReputationScore?: number;
1247
+ // (undocumented)
1248
+ hostScamReputationScore?: number;
1249
+ // (undocumented)
1250
+ hostSpamReputationScore?: number;
1251
+ // (undocumented)
1252
+ lastSeen?: string;
1253
+ // (undocumented)
1254
+ malwareCauseCount?: number;
1255
+ // (undocumented)
1256
+ malwareResourceCount?: number;
1257
+ // (undocumented)
1258
+ malwareSequenceCount?: number;
1259
+ // (undocumented)
1260
+ phishCauseCount?: number;
1261
+ // (undocumented)
1262
+ phishResourceCount?: number;
1263
+ // (undocumented)
1264
+ phishSequenceCount?: number;
1265
+ // (undocumented)
1266
+ scamCauseCount?: number;
1267
+ // (undocumented)
1268
+ scamResourceCount?: number;
1269
+ // (undocumented)
1270
+ scamSequenceCount?: number;
1271
+ // (undocumented)
1272
+ spamCauseCount?: number;
1273
+ // (undocumented)
1274
+ spamResourceCount?: number;
1275
+ // (undocumented)
1276
+ spamSequenceCount?: number;
1277
+ // (undocumented)
1278
+ uuid?: string;
1279
+ }
1280
+
1281
+ // @public
1282
+ export interface InnerErrorOutput {
1283
+ code?: string;
1284
+ value?: any;
1285
+ }
1286
+
1287
+ // @public
1288
+ export interface InventoryAssetOutput {
1289
+ }
1290
+
1291
+ // @public (undocumented)
1292
+ export interface IpAddressAssetOutput extends InventoryAssetOutput {
1293
+ // (undocumented)
1294
+ asns?: Array<ObservedLongOutput>;
1295
+ // (undocumented)
1296
+ attributes?: Array<AttributeOutput>;
1297
+ // (undocumented)
1298
+ banners?: Array<BannerOutput>;
1299
+ // (undocumented)
1300
+ cookies?: Array<CookieOutput>;
1301
+ // (undocumented)
1302
+ count?: number;
1303
+ // (undocumented)
1304
+ firstSeen?: string;
1305
+ // (undocumented)
1306
+ headers?: Array<ObservedHeaderOutput>;
1307
+ // (undocumented)
1308
+ hosts?: Array<ObservedStringOutput>;
1309
+ // (undocumented)
1310
+ ipAddress?: string;
1311
+ // (undocumented)
1312
+ ipBlocks?: Array<IpBlockOutput>;
1313
+ // (undocumented)
1314
+ ipv4?: boolean;
1315
+ // (undocumented)
1316
+ ipv6?: boolean;
1317
+ // (undocumented)
1318
+ lastSeen?: string;
1319
+ // (undocumented)
1320
+ location?: Array<ObservedLocationOutput>;
1321
+ // (undocumented)
1322
+ mxRecord?: Array<ObservedBooleanOutput>;
1323
+ // (undocumented)
1324
+ netRanges?: Array<ObservedStringOutput>;
1325
+ // (undocumented)
1326
+ nsRecord?: Array<ObservedBooleanOutput>;
1327
+ // (undocumented)
1328
+ nxdomain?: Array<ObservedBooleanOutput>;
1329
+ // (undocumented)
1330
+ reputations?: Array<ReputationOutput>;
1331
+ // (undocumented)
1332
+ scanMetadata?: Array<ScanMetadataOutput>;
1333
+ // (undocumented)
1334
+ services?: Array<ServiceOutput>;
1335
+ // (undocumented)
1336
+ sources?: Array<SourceOutput>;
1337
+ // (undocumented)
1338
+ sslCerts?: Array<SslCertAssetOutput>;
1339
+ // (undocumented)
1340
+ sslServerConfig?: Array<SslServerConfigOutput>;
1341
+ // (undocumented)
1342
+ webComponents?: Array<WebComponentOutput>;
1343
+ }
1344
+
1345
+ // @public (undocumented)
1346
+ export interface IpAddressAssetResourceOutput extends AssetResourceOutputParent {
1347
+ asset: IpAddressAssetOutput;
1348
+ kind: "ipAddress";
1349
+ }
1350
+
1351
+ // @public (undocumented)
1352
+ export interface IpBlockAssetOutput extends InventoryAssetOutput {
1353
+ // (undocumented)
1354
+ adminContacts?: Array<ObservedStringOutput>;
1355
+ // (undocumented)
1356
+ adminNames?: Array<ObservedStringOutput>;
1357
+ // (undocumented)
1358
+ adminOrgs?: Array<ObservedStringOutput>;
1359
+ // (undocumented)
1360
+ adminPhones?: Array<ObservedStringOutput>;
1361
+ // (undocumented)
1362
+ asns?: Array<ObservedLongOutput>;
1363
+ // (undocumented)
1364
+ bgpPrefixes?: Array<ObservedStringOutput>;
1365
+ // (undocumented)
1366
+ count?: number;
1367
+ // (undocumented)
1368
+ detailedFromWhoisAt?: string;
1369
+ // (undocumented)
1370
+ endIp?: string;
1371
+ // (undocumented)
1372
+ firstSeen?: string;
1373
+ // (undocumented)
1374
+ ipBlock?: string;
1375
+ // (undocumented)
1376
+ ipv4?: boolean;
1377
+ // (undocumented)
1378
+ ipv6?: boolean;
1379
+ // (undocumented)
1380
+ lastSeen?: string;
1381
+ // (undocumented)
1382
+ location?: Array<ObservedLocationOutput>;
1383
+ // (undocumented)
1384
+ netNames?: Array<ObservedStringOutput>;
1385
+ // (undocumented)
1386
+ netRanges?: Array<ObservedStringOutput>;
1387
+ // (undocumented)
1388
+ registrantContacts?: Array<ObservedStringOutput>;
1389
+ // (undocumented)
1390
+ registrantNames?: Array<ObservedStringOutput>;
1391
+ // (undocumented)
1392
+ registrantOrgs?: Array<ObservedStringOutput>;
1393
+ // (undocumented)
1394
+ registrantPhones?: Array<ObservedStringOutput>;
1395
+ // (undocumented)
1396
+ registrarCreatedAt?: Array<ObservedLongOutput>;
1397
+ // (undocumented)
1398
+ registrarExpiresAt?: Array<ObservedLongOutput>;
1399
+ // (undocumented)
1400
+ registrarUpdatedAt?: Array<ObservedLongOutput>;
1401
+ // (undocumented)
1402
+ reputations?: Array<ReputationOutput>;
1403
+ // (undocumented)
1404
+ sources?: Array<SourceOutput>;
1405
+ // (undocumented)
1406
+ startIp?: string;
1407
+ // (undocumented)
1408
+ technicalContacts?: Array<ObservedStringOutput>;
1409
+ // (undocumented)
1410
+ technicalNames?: Array<ObservedStringOutput>;
1411
+ // (undocumented)
1412
+ technicalOrgs?: Array<ObservedStringOutput>;
1413
+ // (undocumented)
1414
+ technicalPhones?: Array<ObservedStringOutput>;
1415
+ }
1416
+
1417
+ // @public (undocumented)
1418
+ export interface IpBlockAssetResourceOutput extends AssetResourceOutputParent {
1419
+ asset: IpBlockAssetOutput;
1420
+ kind: "ipBlock";
1421
+ }
1422
+
1423
+ // @public (undocumented)
1424
+ export interface IpBlockOutput {
1425
+ // (undocumented)
1426
+ count?: number;
1427
+ // (undocumented)
1428
+ firstSeen?: string;
1429
+ // (undocumented)
1430
+ ipBlock?: string;
1431
+ // (undocumented)
1432
+ lastSeen?: string;
1433
+ // (undocumented)
1434
+ recent?: boolean;
1435
+ // (undocumented)
1436
+ sources?: Array<SourceOutput>;
1437
+ }
1438
+
1439
+ // @public (undocumented)
1440
+ export function isUnexpected(response: ListAssetResource200Response | ListAssetResourceDefaultResponse): response is ListAssetResourceDefaultResponse;
1441
+
1442
+ // @public (undocumented)
1443
+ export function isUnexpected(response: UpdateAssets200Response | UpdateAssetsDefaultResponse): response is UpdateAssetsDefaultResponse;
1444
+
1445
+ // @public (undocumented)
1446
+ export function isUnexpected(response: GetAssetResource200Response | GetAssetResourceDefaultResponse): response is GetAssetResourceDefaultResponse;
1447
+
1448
+ // @public (undocumented)
1449
+ export function isUnexpected(response: ListDataConnection200Response | ListDataConnectionDefaultResponse): response is ListDataConnectionDefaultResponse;
1450
+
1451
+ // @public (undocumented)
1452
+ export function isUnexpected(response: ValidateDataConnection200Response | ValidateDataConnectionDefaultResponse): response is ValidateDataConnectionDefaultResponse;
1453
+
1454
+ // @public (undocumented)
1455
+ export function isUnexpected(response: GetDataConnection200Response | GetDataConnectionDefaultResponse): response is GetDataConnectionDefaultResponse;
1456
+
1457
+ // @public (undocumented)
1458
+ export function isUnexpected(response: CreateOrReplaceDataConnection200Response | CreateOrReplaceDataConnectionDefaultResponse): response is CreateOrReplaceDataConnectionDefaultResponse;
1459
+
1460
+ // @public (undocumented)
1461
+ export function isUnexpected(response: DeleteDataConnection204Response | DeleteDataConnectionDefaultResponse): response is DeleteDataConnectionDefaultResponse;
1462
+
1463
+ // @public (undocumented)
1464
+ export function isUnexpected(response: ListDiscoGroup200Response | ListDiscoGroupDefaultResponse): response is ListDiscoGroupDefaultResponse;
1465
+
1466
+ // @public (undocumented)
1467
+ export function isUnexpected(response: ValidateDiscoGroup200Response | ValidateDiscoGroupDefaultResponse): response is ValidateDiscoGroupDefaultResponse;
1468
+
1469
+ // @public (undocumented)
1470
+ export function isUnexpected(response: GetDiscoGroup200Response | GetDiscoGroupDefaultResponse): response is GetDiscoGroupDefaultResponse;
1471
+
1472
+ // @public (undocumented)
1473
+ export function isUnexpected(response: CreateOrReplaceDiscoGroup200Response | CreateOrReplaceDiscoGroupDefaultResponse): response is CreateOrReplaceDiscoGroupDefaultResponse;
1474
+
1475
+ // @public (undocumented)
1476
+ export function isUnexpected(response: RunDiscoGroup204Response | RunDiscoGroupDefaultResponse): response is RunDiscoGroupDefaultResponse;
1477
+
1478
+ // @public (undocumented)
1479
+ export function isUnexpected(response: ListRuns200Response | ListRunsDefaultResponse): response is ListRunsDefaultResponse;
1480
+
1481
+ // @public (undocumented)
1482
+ export function isUnexpected(response: ListDiscoTemplate200Response | ListDiscoTemplateDefaultResponse): response is ListDiscoTemplateDefaultResponse;
1483
+
1484
+ // @public (undocumented)
1485
+ export function isUnexpected(response: GetDiscoTemplate200Response | GetDiscoTemplateDefaultResponse): response is GetDiscoTemplateDefaultResponse;
1486
+
1487
+ // @public (undocumented)
1488
+ export function isUnexpected(response: GetBillable200Response | GetBillableDefaultResponse): response is GetBillableDefaultResponse;
1489
+
1490
+ // @public (undocumented)
1491
+ export function isUnexpected(response: GetSnapshot200Response | GetSnapshotDefaultResponse): response is GetSnapshotDefaultResponse;
1492
+
1493
+ // @public (undocumented)
1494
+ export function isUnexpected(response: GetSummary200Response | GetSummaryDefaultResponse): response is GetSummaryDefaultResponse;
1495
+
1496
+ // @public (undocumented)
1497
+ export function isUnexpected(response: ListSavedFilter200Response | ListSavedFilterDefaultResponse): response is ListSavedFilterDefaultResponse;
1498
+
1499
+ // @public (undocumented)
1500
+ export function isUnexpected(response: GetSavedFilter200Response | GetSavedFilterDefaultResponse): response is GetSavedFilterDefaultResponse;
1501
+
1502
+ // @public (undocumented)
1503
+ export function isUnexpected(response: CreateOrReplaceSavedFilter200Response | CreateOrReplaceSavedFilterDefaultResponse): response is CreateOrReplaceSavedFilterDefaultResponse;
1504
+
1505
+ // @public (undocumented)
1506
+ export function isUnexpected(response: DeleteSavedFilter204Response | DeleteSavedFilterDefaultResponse): response is DeleteSavedFilterDefaultResponse;
1507
+
1508
+ // @public (undocumented)
1509
+ export function isUnexpected(response: ListTask200Response | ListTaskDefaultResponse): response is ListTaskDefaultResponse;
1510
+
1511
+ // @public (undocumented)
1512
+ export function isUnexpected(response: GetTask200Response | GetTaskDefaultResponse): response is GetTaskDefaultResponse;
1513
+
1514
+ // @public (undocumented)
1515
+ export function isUnexpected(response: CancelTask200Response | CancelTaskDefaultResponse): response is CancelTaskDefaultResponse;
1516
+
1517
+ // @public (undocumented)
1518
+ export interface ListAssetResource {
1519
+ get(options?: ListAssetResourceParameters): StreamableMethod<ListAssetResource200Response | ListAssetResourceDefaultResponse>;
1520
+ post(options: UpdateAssetsParameters): StreamableMethod<UpdateAssets200Response | UpdateAssetsDefaultResponse>;
1521
+ }
1522
+
1523
+ // @public
1524
+ export interface ListAssetResource200Response extends HttpResponse {
1525
+ // (undocumented)
1526
+ body: PagedAssetResourceOutput;
1527
+ // (undocumented)
1528
+ status: "200";
1529
+ }
1530
+
1531
+ // @public (undocumented)
1532
+ export interface ListAssetResourceDefaultHeaders {
1533
+ "x-ms-error-code"?: string;
1534
+ }
1535
+
1536
+ // @public (undocumented)
1537
+ export interface ListAssetResourceDefaultResponse extends HttpResponse {
1538
+ // (undocumented)
1539
+ body: ErrorResponse;
1540
+ // (undocumented)
1541
+ headers: RawHttpHeaders & ListAssetResourceDefaultHeaders;
1542
+ // (undocumented)
1543
+ status: string;
1544
+ }
1545
+
1546
+ // @public (undocumented)
1547
+ export type ListAssetResourceParameters = ListAssetResourceQueryParam & RequestParameters;
1548
+
1549
+ // @public (undocumented)
1550
+ export interface ListAssetResourceQueryParam {
1551
+ // (undocumented)
1552
+ queryParameters?: ListAssetResourceQueryParamProperties;
1553
+ }
1554
+
1555
+ // @public (undocumented)
1556
+ export interface ListAssetResourceQueryParamProperties {
1557
+ filter?: string;
1558
+ mark?: string;
1559
+ maxpagesize?: number;
1560
+ orderby?: string;
1561
+ skip?: number;
1562
+ }
1563
+
1564
+ // @public (undocumented)
1565
+ export interface ListDataConnection {
1566
+ get(options?: ListDataConnectionParameters): StreamableMethod<ListDataConnection200Response | ListDataConnectionDefaultResponse>;
1567
+ }
1568
+
1569
+ // @public
1570
+ export interface ListDataConnection200Response extends HttpResponse {
1571
+ // (undocumented)
1572
+ body: PagedDataConnectionOutput;
1573
+ // (undocumented)
1574
+ status: "200";
1575
+ }
1576
+
1577
+ // @public (undocumented)
1578
+ export interface ListDataConnectionDefaultHeaders {
1579
+ "x-ms-error-code"?: string;
1580
+ }
1581
+
1582
+ // @public (undocumented)
1583
+ export interface ListDataConnectionDefaultResponse extends HttpResponse {
1584
+ // (undocumented)
1585
+ body: ErrorResponse;
1586
+ // (undocumented)
1587
+ headers: RawHttpHeaders & ListDataConnectionDefaultHeaders;
1588
+ // (undocumented)
1589
+ status: string;
1590
+ }
1591
+
1592
+ // @public (undocumented)
1593
+ export type ListDataConnectionParameters = ListDataConnectionQueryParam & RequestParameters;
1594
+
1595
+ // @public (undocumented)
1596
+ export interface ListDataConnectionQueryParam {
1597
+ // (undocumented)
1598
+ queryParameters?: ListDataConnectionQueryParamProperties;
1599
+ }
1600
+
1601
+ // @public (undocumented)
1602
+ export interface ListDataConnectionQueryParamProperties {
1603
+ maxpagesize?: number;
1604
+ skip?: number;
1605
+ }
1606
+
1607
+ // @public (undocumented)
1608
+ export interface ListDiscoGroup {
1609
+ get(options?: ListDiscoGroupParameters): StreamableMethod<ListDiscoGroup200Response | ListDiscoGroupDefaultResponse>;
1610
+ }
1611
+
1612
+ // @public
1613
+ export interface ListDiscoGroup200Response extends HttpResponse {
1614
+ // (undocumented)
1615
+ body: PagedDiscoGroupOutput;
1616
+ // (undocumented)
1617
+ status: "200";
1618
+ }
1619
+
1620
+ // @public (undocumented)
1621
+ export interface ListDiscoGroupDefaultHeaders {
1622
+ "x-ms-error-code"?: string;
1623
+ }
1624
+
1625
+ // @public (undocumented)
1626
+ export interface ListDiscoGroupDefaultResponse extends HttpResponse {
1627
+ // (undocumented)
1628
+ body: ErrorResponse;
1629
+ // (undocumented)
1630
+ headers: RawHttpHeaders & ListDiscoGroupDefaultHeaders;
1631
+ // (undocumented)
1632
+ status: string;
1633
+ }
1634
+
1635
+ // @public (undocumented)
1636
+ export type ListDiscoGroupParameters = ListDiscoGroupQueryParam & RequestParameters;
1637
+
1638
+ // @public (undocumented)
1639
+ export interface ListDiscoGroupQueryParam {
1640
+ // (undocumented)
1641
+ queryParameters?: ListDiscoGroupQueryParamProperties;
1642
+ }
1643
+
1644
+ // @public (undocumented)
1645
+ export interface ListDiscoGroupQueryParamProperties {
1646
+ filter?: string;
1647
+ maxpagesize?: number;
1648
+ skip?: number;
1649
+ }
1650
+
1651
+ // @public (undocumented)
1652
+ export interface ListDiscoTemplate {
1653
+ get(options?: ListDiscoTemplateParameters): StreamableMethod<ListDiscoTemplate200Response | ListDiscoTemplateDefaultResponse>;
1654
+ }
1655
+
1656
+ // @public
1657
+ export interface ListDiscoTemplate200Response extends HttpResponse {
1658
+ // (undocumented)
1659
+ body: PagedDiscoTemplateOutput;
1660
+ // (undocumented)
1661
+ status: "200";
1662
+ }
1663
+
1664
+ // @public (undocumented)
1665
+ export interface ListDiscoTemplateDefaultHeaders {
1666
+ "x-ms-error-code"?: string;
1667
+ }
1668
+
1669
+ // @public (undocumented)
1670
+ export interface ListDiscoTemplateDefaultResponse extends HttpResponse {
1671
+ // (undocumented)
1672
+ body: ErrorResponse;
1673
+ // (undocumented)
1674
+ headers: RawHttpHeaders & ListDiscoTemplateDefaultHeaders;
1675
+ // (undocumented)
1676
+ status: string;
1677
+ }
1678
+
1679
+ // @public (undocumented)
1680
+ export type ListDiscoTemplateParameters = ListDiscoTemplateQueryParam & RequestParameters;
1681
+
1682
+ // @public (undocumented)
1683
+ export interface ListDiscoTemplateQueryParam {
1684
+ // (undocumented)
1685
+ queryParameters?: ListDiscoTemplateQueryParamProperties;
1686
+ }
1687
+
1688
+ // @public (undocumented)
1689
+ export interface ListDiscoTemplateQueryParamProperties {
1690
+ filter?: string;
1691
+ maxpagesize?: number;
1692
+ skip?: number;
1693
+ }
1694
+
1695
+ // @public (undocumented)
1696
+ export interface ListRuns {
1697
+ get(options?: ListRunsParameters): StreamableMethod<ListRuns200Response | ListRunsDefaultResponse>;
1698
+ }
1699
+
1700
+ // @public
1701
+ export interface ListRuns200Response extends HttpResponse {
1702
+ // (undocumented)
1703
+ body: DiscoRunPageResultOutput;
1704
+ // (undocumented)
1705
+ status: "200";
1706
+ }
1707
+
1708
+ // @public (undocumented)
1709
+ export interface ListRunsDefaultHeaders {
1710
+ "x-ms-error-code"?: string;
1711
+ }
1712
+
1713
+ // @public (undocumented)
1714
+ export interface ListRunsDefaultResponse extends HttpResponse {
1715
+ // (undocumented)
1716
+ body: ErrorResponse;
1717
+ // (undocumented)
1718
+ headers: RawHttpHeaders & ListRunsDefaultHeaders;
1719
+ // (undocumented)
1720
+ status: string;
1721
+ }
1722
+
1723
+ // @public (undocumented)
1724
+ export type ListRunsParameters = ListRunsQueryParam & RequestParameters;
1725
+
1726
+ // @public (undocumented)
1727
+ export interface ListRunsQueryParam {
1728
+ // (undocumented)
1729
+ queryParameters?: ListRunsQueryParamProperties;
1730
+ }
1731
+
1732
+ // @public (undocumented)
1733
+ export interface ListRunsQueryParamProperties {
1734
+ filter?: string;
1735
+ maxpagesize?: number;
1736
+ skip?: number;
1737
+ }
1738
+
1739
+ // @public (undocumented)
1740
+ export interface ListSavedFilter {
1741
+ get(options?: ListSavedFilterParameters): StreamableMethod<ListSavedFilter200Response | ListSavedFilterDefaultResponse>;
1742
+ }
1743
+
1744
+ // @public
1745
+ export interface ListSavedFilter200Response extends HttpResponse {
1746
+ // (undocumented)
1747
+ body: PagedSavedFilterOutput;
1748
+ // (undocumented)
1749
+ status: "200";
1750
+ }
1751
+
1752
+ // @public (undocumented)
1753
+ export interface ListSavedFilterDefaultHeaders {
1754
+ "x-ms-error-code"?: string;
1755
+ }
1756
+
1757
+ // @public (undocumented)
1758
+ export interface ListSavedFilterDefaultResponse extends HttpResponse {
1759
+ // (undocumented)
1760
+ body: ErrorResponse;
1761
+ // (undocumented)
1762
+ headers: RawHttpHeaders & ListSavedFilterDefaultHeaders;
1763
+ // (undocumented)
1764
+ status: string;
1765
+ }
1766
+
1767
+ // @public (undocumented)
1768
+ export type ListSavedFilterParameters = ListSavedFilterQueryParam & RequestParameters;
1769
+
1770
+ // @public (undocumented)
1771
+ export interface ListSavedFilterQueryParam {
1772
+ // (undocumented)
1773
+ queryParameters?: ListSavedFilterQueryParamProperties;
1774
+ }
1775
+
1776
+ // @public (undocumented)
1777
+ export interface ListSavedFilterQueryParamProperties {
1778
+ filter?: string;
1779
+ maxpagesize?: number;
1780
+ skip?: number;
1781
+ }
1782
+
1783
+ // @public (undocumented)
1784
+ export interface ListTask {
1785
+ get(options?: ListTaskParameters): StreamableMethod<ListTask200Response | ListTaskDefaultResponse>;
1786
+ }
1787
+
1788
+ // @public
1789
+ export interface ListTask200Response extends HttpResponse {
1790
+ // (undocumented)
1791
+ body: PagedTaskOutput;
1792
+ // (undocumented)
1793
+ status: "200";
1794
+ }
1795
+
1796
+ // @public (undocumented)
1797
+ export interface ListTaskDefaultHeaders {
1798
+ "x-ms-error-code"?: string;
1799
+ }
1800
+
1801
+ // @public (undocumented)
1802
+ export interface ListTaskDefaultResponse extends HttpResponse {
1803
+ // (undocumented)
1804
+ body: ErrorResponse;
1805
+ // (undocumented)
1806
+ headers: RawHttpHeaders & ListTaskDefaultHeaders;
1807
+ // (undocumented)
1808
+ status: string;
1809
+ }
1810
+
1811
+ // @public (undocumented)
1812
+ export type ListTaskParameters = ListTaskQueryParam & RequestParameters;
1813
+
1814
+ // @public (undocumented)
1815
+ export interface ListTaskQueryParam {
1816
+ // (undocumented)
1817
+ queryParameters?: ListTaskQueryParamProperties;
1818
+ }
1819
+
1820
+ // @public (undocumented)
1821
+ export interface ListTaskQueryParamProperties {
1822
+ filter?: string;
1823
+ maxpagesize?: number;
1824
+ orderby?: string;
1825
+ skip?: number;
1826
+ }
1827
+
1828
+ // @public (undocumented)
1829
+ export interface LocationOutput {
1830
+ // (undocumented)
1831
+ areaCode?: number;
1832
+ // (undocumented)
1833
+ city?: string;
1834
+ // (undocumented)
1835
+ countryCode?: string;
1836
+ // (undocumented)
1837
+ countryName?: string;
1838
+ // (undocumented)
1839
+ dmaCode?: number;
1840
+ // (undocumented)
1841
+ latitude?: number;
1842
+ // (undocumented)
1843
+ longitude?: number;
1844
+ // (undocumented)
1845
+ metroCodeId?: number;
1846
+ // (undocumented)
1847
+ postalCode?: string;
1848
+ // (undocumented)
1849
+ region?: string;
1850
+ // (undocumented)
1851
+ regionName?: string;
1852
+ }
1853
+
1854
+ // @public (undocumented)
1855
+ export interface LogAnalyticsDataConnectionData extends DataConnectionDataParent {
1856
+ kind: "logAnalytics";
1857
+ properties: LogAnalyticsDataConnectionProperties;
1858
+ }
1859
+
1860
+ // @public (undocumented)
1861
+ export interface LogAnalyticsDataConnectionOutput extends DataConnectionOutputParent {
1862
+ kind: "logAnalytics";
1863
+ properties: LogAnalyticsDataConnectionPropertiesOutput;
1864
+ }
1865
+
1866
+ // @public
1867
+ export interface LogAnalyticsDataConnectionProperties extends DataConnectionProperties {
1868
+ apiKey?: string;
1869
+ workspaceId?: string;
1870
+ }
1871
+
1872
+ // @public (undocumented)
1873
+ export interface LogAnalyticsDataConnectionPropertiesOutput extends DataConnectionPropertiesOutput {
1874
+ apiKey?: string;
1875
+ workspaceId?: string;
1876
+ }
1877
+
1878
+ // @public (undocumented)
1879
+ export interface ObservedBooleanOutput extends ObservedValueOutput {
1880
+ // (undocumented)
1881
+ sources?: Array<SourceOutput>;
1882
+ // (undocumented)
1883
+ value?: boolean;
1884
+ }
1885
+
1886
+ // @public (undocumented)
1887
+ export interface ObservedHeaderOutput extends ObservedValueOutput {
1888
+ // (undocumented)
1889
+ headerName?: string;
1890
+ // (undocumented)
1891
+ headerValue?: string;
1892
+ }
1893
+
1894
+ // @public (undocumented)
1895
+ export interface ObservedIntegerOutput extends ObservedValueOutput {
1896
+ // (undocumented)
1897
+ sources?: Array<SourceOutput>;
1898
+ // (undocumented)
1899
+ value?: number;
1900
+ }
1901
+
1902
+ // @public (undocumented)
1903
+ export interface ObservedIntegersOutput extends ObservedValueOutput {
1904
+ // (undocumented)
1905
+ sources?: Array<SourceOutput>;
1906
+ // (undocumented)
1907
+ values?: number[];
1908
+ }
1909
+
1910
+ // @public (undocumented)
1911
+ export interface ObservedLocationOutput extends ObservedValueOutput {
1912
+ // (undocumented)
1913
+ sources?: Array<SourceOutput>;
1914
+ // (undocumented)
1915
+ value?: LocationOutput;
1916
+ }
1917
+
1918
+ // @public (undocumented)
1919
+ export interface ObservedLongOutput extends ObservedValueOutput {
1920
+ // (undocumented)
1921
+ sources?: Array<SourceOutput>;
1922
+ // (undocumented)
1923
+ value?: number;
1924
+ }
1925
+
1926
+ // @public (undocumented)
1927
+ export interface ObservedPortStateOutput extends ObservedValueOutput {
1928
+ // (undocumented)
1929
+ port?: number;
1930
+ value?: ObservedPortStateValueOutput;
1931
+ }
1932
+
1933
+ // @public
1934
+ export type ObservedPortStateValueOutput = string;
1935
+
1936
+ // @public (undocumented)
1937
+ export interface ObservedStringOutput extends ObservedValueOutput {
1938
+ // (undocumented)
1939
+ sources?: Array<SourceOutput>;
1940
+ // (undocumented)
1941
+ value?: string;
1942
+ }
1943
+
1944
+ // @public
1945
+ export interface ObservedValueOutput {
1946
+ // (undocumented)
1947
+ count?: number;
1948
+ // (undocumented)
1949
+ firstSeen?: string;
1950
+ // (undocumented)
1951
+ lastSeen?: string;
1952
+ // (undocumented)
1953
+ recent?: boolean;
1954
+ }
1955
+
1956
+ // @public (undocumented)
1957
+ export interface PageAssetOutput extends InventoryAssetOutput {
1958
+ // (undocumented)
1959
+ asns?: Array<ObservedLongOutput>;
1960
+ // (undocumented)
1961
+ assetSecurityPolicies?: Array<AssetSecurityPolicyOutput>;
1962
+ // (undocumented)
1963
+ attributes?: Array<AttributeOutput>;
1964
+ // (undocumented)
1965
+ cause?: PageCauseOutput;
1966
+ // (undocumented)
1967
+ cdns?: Array<ObservedStringOutput>;
1968
+ // (undocumented)
1969
+ charsets?: Array<ObservedStringOutput>;
1970
+ // (undocumented)
1971
+ cnames?: Array<ObservedStringOutput>;
1972
+ // (undocumented)
1973
+ contentLengths?: Array<ObservedLongOutput>;
1974
+ // (undocumented)
1975
+ contentTypes?: Array<ObservedStringOutput>;
1976
+ // (undocumented)
1977
+ cookies?: Array<CookieOutput>;
1978
+ // (undocumented)
1979
+ count?: number;
1980
+ // (undocumented)
1981
+ domain?: string;
1982
+ // (undocumented)
1983
+ domainAsset?: DomainAssetOutput;
1984
+ // (undocumented)
1985
+ errors?: Array<ObservedStringOutput>;
1986
+ // (undocumented)
1987
+ finalAsns?: Array<ObservedLongOutput>;
1988
+ // (undocumented)
1989
+ finalIpAddresses?: Array<ObservedStringOutput>;
1990
+ // (undocumented)
1991
+ finalIpBlocks?: Array<IpBlockOutput>;
1992
+ // (undocumented)
1993
+ finalResponseCodes?: Array<ObservedIntegerOutput>;
1994
+ // (undocumented)
1995
+ finalUrls?: Array<ObservedStringOutput>;
1996
+ // (undocumented)
1997
+ firstSeen?: string;
1998
+ // (undocumented)
1999
+ frames?: Array<ObservedBooleanOutput>;
2000
+ // (undocumented)
2001
+ fullDomMinhashSignatures?: Array<ObservedIntegersOutput>;
2002
+ // (undocumented)
2003
+ gdprAssetSecurityPolicies?: Array<AssetSecurityPolicyOutput>;
2004
+ // (undocumented)
2005
+ guids?: Array<GuidPairOutput>;
2006
+ // (undocumented)
2007
+ host?: string;
2008
+ // (undocumented)
2009
+ httpMethod?: string;
2010
+ // (undocumented)
2011
+ httpResponseCodes?: Array<ObservedIntegerOutput>;
2012
+ // (undocumented)
2013
+ httpResponseMessages?: Array<ObservedStringOutput>;
2014
+ // (undocumented)
2015
+ ipAddresses?: Array<ObservedStringOutput>;
2016
+ // (undocumented)
2017
+ ipBlocks?: Array<IpBlockOutput>;
2018
+ // (undocumented)
2019
+ ipv4?: Array<ObservedBooleanOutput>;
2020
+ // (undocumented)
2021
+ ipv6?: Array<ObservedBooleanOutput>;
2022
+ // (undocumented)
2023
+ isRootUrl?: boolean;
2024
+ // (undocumented)
2025
+ languages?: Array<ObservedStringOutput>;
2026
+ // (undocumented)
2027
+ lastSeen?: string;
2028
+ // (undocumented)
2029
+ location?: Array<ObservedLocationOutput>;
2030
+ // (undocumented)
2031
+ nonHtmlFrames?: Array<ObservedBooleanOutput>;
2032
+ // (undocumented)
2033
+ parkedPage?: Array<ObservedBooleanOutput>;
2034
+ redirectType?: PageAssetRedirectTypeOutput;
2035
+ // (undocumented)
2036
+ redirectUrls?: Array<ObservedStringOutput>;
2037
+ // (undocumented)
2038
+ referrer?: string;
2039
+ // (undocumented)
2040
+ resourceUrls?: Array<ResourceUrlOutput>;
2041
+ // (undocumented)
2042
+ responseBodies?: Array<ObservedStringOutput>;
2043
+ // (undocumented)
2044
+ responseBodyHashSignatures?: Array<ObservedStringOutput>;
2045
+ // (undocumented)
2046
+ responseBodyMinhashSignatures?: Array<ObservedIntegersOutput>;
2047
+ // (undocumented)
2048
+ responseHeaders?: Array<ObservedHeaderOutput>;
2049
+ // (undocumented)
2050
+ responseTimes?: Array<ObservedLongOutput>;
2051
+ // (undocumented)
2052
+ rootUrl?: ObservedBooleanOutput;
2053
+ // (undocumented)
2054
+ service?: string;
2055
+ // (undocumented)
2056
+ services?: Array<ServiceOutput>;
2057
+ // (undocumented)
2058
+ siteStatus?: string;
2059
+ // (undocumented)
2060
+ sources?: Array<SourceOutput>;
2061
+ // (undocumented)
2062
+ sslCerts?: Array<SslCertAssetOutput>;
2063
+ // (undocumented)
2064
+ sslServerConfig?: Array<SslServerConfigOutput>;
2065
+ // (undocumented)
2066
+ successful?: Array<ObservedBooleanOutput>;
2067
+ // (undocumented)
2068
+ titles?: Array<ObservedStringOutput>;
2069
+ // (undocumented)
2070
+ undirectedContent?: Array<ObservedBooleanOutput>;
2071
+ // (undocumented)
2072
+ url?: string;
2073
+ // (undocumented)
2074
+ webComponents?: Array<WebComponentOutput>;
2075
+ // (undocumented)
2076
+ windowNames?: Array<ObservedStringOutput>;
2077
+ // (undocumented)
2078
+ windows?: Array<ObservedBooleanOutput>;
2079
+ }
2080
+
2081
+ // @public
2082
+ export type PageAssetRedirectTypeOutput = string;
2083
+
2084
+ // @public (undocumented)
2085
+ export interface PageAssetResourceOutput extends AssetResourceOutputParent {
2086
+ asset: PageAssetOutput;
2087
+ kind: "page";
2088
+ }
2089
+
2090
+ // @public (undocumented)
2091
+ export interface PageCauseOutput {
2092
+ // (undocumented)
2093
+ cause?: string;
2094
+ // (undocumented)
2095
+ causeElementXPath?: string;
2096
+ // (undocumented)
2097
+ domChangeIndex?: number;
2098
+ // (undocumented)
2099
+ location?: string;
2100
+ // (undocumented)
2101
+ loopDetected?: boolean;
2102
+ // (undocumented)
2103
+ possibleMatches?: number;
2104
+ // (undocumented)
2105
+ version?: number;
2106
+ }
2107
+
2108
+ // @public
2109
+ export interface PagedAssetResourceOutput {
2110
+ mark?: string;
2111
+ nextLink?: string;
2112
+ totalElements?: number;
2113
+ value: Array<AssetResourceOutput>;
2114
+ }
2115
+
2116
+ // @public
2117
+ export interface PagedAsyncIterableIterator<TElement, TPage = TElement[], TPageSettings = PageSettings> {
2118
+ [Symbol.asyncIterator](): PagedAsyncIterableIterator<TElement, TPage, TPageSettings>;
2119
+ byPage: (settings?: TPageSettings) => AsyncIterableIterator<TPage>;
2120
+ next(): Promise<IteratorResult<TElement>>;
2121
+ }
2122
+
2123
+ // @public
2124
+ export interface PagedDataConnectionOutput {
2125
+ nextLink?: string;
2126
+ totalElements?: number;
2127
+ value: Array<DataConnectionOutput>;
2128
+ }
2129
+
2130
+ // @public
2131
+ export interface PagedDiscoGroupOutput {
2132
+ nextLink?: string;
2133
+ totalElements?: number;
2134
+ value: Array<DiscoGroupOutput>;
2135
+ }
2136
+
2137
+ // @public
2138
+ export interface PagedDiscoTemplateOutput {
2139
+ nextLink?: string;
2140
+ totalElements?: number;
2141
+ value: Array<DiscoTemplateOutput>;
2142
+ }
2143
+
2144
+ // @public
2145
+ export interface PagedSavedFilterOutput {
2146
+ nextLink?: string;
2147
+ totalElements?: number;
2148
+ value: Array<SavedFilterOutput>;
2149
+ }
2150
+
2151
+ // @public
2152
+ export interface PagedTaskOutput {
2153
+ nextLink?: string;
2154
+ totalElements?: number;
2155
+ value: Array<TaskOutput>;
2156
+ }
2157
+
2158
+ // @public
2159
+ export interface PageSettings {
2160
+ continuationToken?: string;
2161
+ }
2162
+
2163
+ // @public
2164
+ export function paginate<TResponse extends PathUncheckedResponse>(client: Client, initialResponse: TResponse, options?: PagingOptions<TResponse>): PagedAsyncIterableIterator<PaginateReturn<TResponse>>;
2165
+
2166
+ // @public
2167
+ export type PaginateReturn<TResult> = TResult extends {
2168
+ body: {
2169
+ value?: infer TPage;
2170
+ };
2171
+ } ? GetArrayType<TPage> : Array<unknown>;
2172
+
2173
+ // @public
2174
+ export interface PagingOptions<TResponse> {
2175
+ customGetPage?: GetPage<PaginateReturn<TResponse>[]>;
2176
+ }
2177
+
2178
+ // @public (undocumented)
2179
+ export interface PortOutput {
2180
+ // (undocumented)
2181
+ count?: number;
2182
+ // (undocumented)
2183
+ firstSeen?: string;
2184
+ // (undocumented)
2185
+ lastSeen?: string;
2186
+ // (undocumented)
2187
+ port?: number;
2188
+ }
2189
+
2190
+ // @public
2191
+ export interface ReportAssetSnapshotRequest {
2192
+ labelName?: string;
2193
+ metric?: string;
2194
+ page?: number;
2195
+ size?: number;
2196
+ }
2197
+
2198
+ // @public
2199
+ export interface ReportAssetSnapshotResultOutput {
2200
+ assets?: AssetPageResultOutput;
2201
+ description?: string;
2202
+ displayName?: string;
2203
+ labelName?: string;
2204
+ metric?: string;
2205
+ updatedAt?: string;
2206
+ }
2207
+
2208
+ // @public
2209
+ export interface ReportAssetSummaryRequest {
2210
+ filters?: string[];
2211
+ groupBy?: string;
2212
+ labelName?: string;
2213
+ metricCategories?: string[];
2214
+ metrics?: string[];
2215
+ segmentBy?: string;
2216
+ }
2217
+
2218
+ // @public (undocumented)
2219
+ export interface ReportAssetSummaryResultOutput {
2220
+ assetSummaries?: Array<AssetSummaryResultOutput>;
2221
+ }
2222
+
2223
+ // @public
2224
+ export type ReportBillableAssetBreakdownKindOutput = string;
2225
+
2226
+ // @public
2227
+ export interface ReportBillableAssetBreakdownOutput {
2228
+ count?: number;
2229
+ kind?: ReportBillableAssetBreakdownKindOutput;
2230
+ }
2231
+
2232
+ // @public (undocumented)
2233
+ export interface ReportBillableAssetSnapshotResultOutput {
2234
+ assetBreakdown?: Array<ReportBillableAssetBreakdownOutput>;
2235
+ date?: string;
2236
+ total?: number;
2237
+ }
2238
+
2239
+ // @public (undocumented)
2240
+ export interface ReportBillableAssetSummaryResultOutput {
2241
+ // (undocumented)
2242
+ assetSummaries?: Array<ReportBillableAssetSnapshotResultOutput>;
2243
+ }
2244
+
2245
+ // @public (undocumented)
2246
+ export interface ReputationOutput {
2247
+ // (undocumented)
2248
+ cidr?: string;
2249
+ // (undocumented)
2250
+ firstSeen?: string;
2251
+ // (undocumented)
2252
+ lastSeen?: string;
2253
+ // (undocumented)
2254
+ listName?: string;
2255
+ // (undocumented)
2256
+ listUpdatedAt?: string;
2257
+ // (undocumented)
2258
+ recent?: boolean;
2259
+ // (undocumented)
2260
+ threatType?: string;
2261
+ // (undocumented)
2262
+ trusted?: boolean;
2263
+ }
2264
+
2265
+ // @public (undocumented)
2266
+ export interface ResourceUrlOutput {
2267
+ // (undocumented)
2268
+ count?: number;
2269
+ // (undocumented)
2270
+ firstSeen?: string;
2271
+ // (undocumented)
2272
+ lastSeen?: string;
2273
+ // (undocumented)
2274
+ recent?: boolean;
2275
+ // (undocumented)
2276
+ resources?: Array<DependentResourceOutput>;
2277
+ // (undocumented)
2278
+ url?: string;
2279
+ }
2280
+
2281
+ // @public (undocumented)
2282
+ export interface Routes {
2283
+ (path: "/assets"): ListAssetResource;
2284
+ (path: "/assets/{assetId}", assetId: string): GetAssetResource;
2285
+ (path: "/dataConnections"): ListDataConnection;
2286
+ (path: "/dataConnections:validate"): ValidateDataConnection;
2287
+ (path: "/dataConnections/{dataConnectionName}", dataConnectionName: string): GetDataConnection;
2288
+ (path: "/discoGroups"): ListDiscoGroup;
2289
+ (path: "/discoGroups:validate"): ValidateDiscoGroup;
2290
+ (path: "/discoGroups/{groupName}", groupName: string): GetDiscoGroup;
2291
+ (path: "/discoGroups/{groupName}:run", groupName: string): RunDiscoGroup;
2292
+ (path: "/discoGroups/{groupName}/runs", groupName: string): ListRuns;
2293
+ (path: "/discoTemplates"): ListDiscoTemplate;
2294
+ (path: "/discoTemplates/{templateId}", templateId: string): GetDiscoTemplate;
2295
+ (path: "/reports/assets:getBillable"): GetBillable;
2296
+ (path: "/reports/assets:getSnapshot"): GetSnapshot;
2297
+ (path: "/reports/assets:getSummary"): GetSummary;
2298
+ (path: "/savedFilters"): ListSavedFilter;
2299
+ (path: "/savedFilters/{filterName}", filterName: string): GetSavedFilter;
2300
+ (path: "/tasks"): ListTask;
2301
+ (path: "/tasks/{taskId}", taskId: string): GetTask;
2302
+ (path: "/tasks/{taskId}:cancel", taskId: string): CancelTask;
2303
+ }
2304
+
2305
+ // @public (undocumented)
2306
+ export interface RunDiscoGroup {
2307
+ post(options?: RunDiscoGroupParameters): StreamableMethod<RunDiscoGroup204Response | RunDiscoGroupDefaultResponse>;
2308
+ }
2309
+
2310
+ // @public
2311
+ export interface RunDiscoGroup204Response extends HttpResponse {
2312
+ // (undocumented)
2313
+ status: "204";
2314
+ }
2315
+
2316
+ // @public (undocumented)
2317
+ export interface RunDiscoGroupDefaultHeaders {
2318
+ "x-ms-error-code"?: string;
2319
+ }
2320
+
2321
+ // @public (undocumented)
2322
+ export interface RunDiscoGroupDefaultResponse extends HttpResponse {
2323
+ // (undocumented)
2324
+ body: ErrorResponse;
2325
+ // (undocumented)
2326
+ headers: RawHttpHeaders & RunDiscoGroupDefaultHeaders;
2327
+ // (undocumented)
2328
+ status: string;
2329
+ }
2330
+
2331
+ // @public (undocumented)
2332
+ export type RunDiscoGroupParameters = RequestParameters;
2333
+
2334
+ // @public
2335
+ export interface SavedFilterData {
2336
+ description: string;
2337
+ filter: string;
2338
+ }
2339
+
2340
+ // @public (undocumented)
2341
+ export interface SavedFilterOutput {
2342
+ // (undocumented)
2343
+ description?: string;
2344
+ displayName?: string;
2345
+ // (undocumented)
2346
+ filter?: string;
2347
+ id?: string;
2348
+ readonly name: string;
2349
+ }
2350
+
2351
+ // @public (undocumented)
2352
+ export interface ScanMetadataOutput {
2353
+ // (undocumented)
2354
+ bannerMetadata?: string;
2355
+ // (undocumented)
2356
+ endScan?: string;
2357
+ // (undocumented)
2358
+ port?: number;
2359
+ // (undocumented)
2360
+ startScan?: string;
2361
+ }
2362
+
2363
+ // @public (undocumented)
2364
+ export interface ServiceOutput {
2365
+ // (undocumented)
2366
+ count?: number;
2367
+ // (undocumented)
2368
+ exceptions?: Array<ObservedStringOutput>;
2369
+ // (undocumented)
2370
+ firstSeen?: string;
2371
+ // (undocumented)
2372
+ lastSeen?: string;
2373
+ // (undocumented)
2374
+ port?: number;
2375
+ // (undocumented)
2376
+ portStates?: Array<ObservedPortStateOutput>;
2377
+ // (undocumented)
2378
+ recent?: boolean;
2379
+ // (undocumented)
2380
+ scheme?: string;
2381
+ // (undocumented)
2382
+ sources?: Array<SourceOutput>;
2383
+ // (undocumented)
2384
+ sslCerts?: Array<SslCertAssetOutput>;
2385
+ // (undocumented)
2386
+ webComponents?: Array<WebComponentOutput>;
2387
+ }
2388
+
2389
+ // @public (undocumented)
2390
+ export interface SoaRecordOutput {
2391
+ // (undocumented)
2392
+ count?: number;
2393
+ // (undocumented)
2394
+ email?: string;
2395
+ // (undocumented)
2396
+ firstSeen?: string;
2397
+ // (undocumented)
2398
+ lastSeen?: string;
2399
+ // (undocumented)
2400
+ nameServer?: string;
2401
+ // (undocumented)
2402
+ recent?: boolean;
2403
+ // (undocumented)
2404
+ serialNumber?: number;
2405
+ }
2406
+
2407
+ // @public (undocumented)
2408
+ export interface SourceOutput {
2409
+ // (undocumented)
2410
+ count?: number;
2411
+ // (undocumented)
2412
+ firstSeen?: string;
2413
+ // (undocumented)
2414
+ lastSeen?: string;
2415
+ // (undocumented)
2416
+ reason?: string;
2417
+ // (undocumented)
2418
+ source?: string;
2419
+ }
2420
+
2421
+ // @public (undocumented)
2422
+ export interface SslCertAssetOutput extends InventoryAssetOutput {
2423
+ // (undocumented)
2424
+ certificateAuthority?: boolean;
2425
+ // (undocumented)
2426
+ count?: number;
2427
+ // (undocumented)
2428
+ firstSeen?: string;
2429
+ // (undocumented)
2430
+ invalidAfter?: string;
2431
+ // (undocumented)
2432
+ invalidBefore?: string;
2433
+ // (undocumented)
2434
+ issuerAlternativeNames?: string[];
2435
+ // (undocumented)
2436
+ issuerCommonNames?: string[];
2437
+ // (undocumented)
2438
+ issuerCountry?: string[];
2439
+ // (undocumented)
2440
+ issuerLocality?: string[];
2441
+ // (undocumented)
2442
+ issuerOrganizationalUnits?: string[];
2443
+ // (undocumented)
2444
+ issuerOrganizations?: string[];
2445
+ // (undocumented)
2446
+ issuerState?: string[];
2447
+ // (undocumented)
2448
+ keyAlgorithm?: string;
2449
+ // (undocumented)
2450
+ keySize?: number;
2451
+ // (undocumented)
2452
+ lastSeen?: string;
2453
+ // (undocumented)
2454
+ organizationalUnits?: string[];
2455
+ // (undocumented)
2456
+ organizations?: string[];
2457
+ // (undocumented)
2458
+ recent?: boolean;
2459
+ // (undocumented)
2460
+ selfSigned?: boolean;
2461
+ // (undocumented)
2462
+ serialNumber?: string;
2463
+ // (undocumented)
2464
+ sha1?: string;
2465
+ // (undocumented)
2466
+ sigAlgName?: string;
2467
+ // (undocumented)
2468
+ sigAlgOid?: string;
2469
+ // (undocumented)
2470
+ sources?: Array<SourceOutput>;
2471
+ // (undocumented)
2472
+ subjectAlternativeNames?: string[];
2473
+ // (undocumented)
2474
+ subjectCommonNames?: string[];
2475
+ // (undocumented)
2476
+ subjectCountry?: string[];
2477
+ // (undocumented)
2478
+ subjectLocality?: string[];
2479
+ // (undocumented)
2480
+ subjectOrganizationalUnits?: string[];
2481
+ // (undocumented)
2482
+ subjectOrganizations?: string[];
2483
+ // (undocumented)
2484
+ subjectState?: string[];
2485
+ validationType?: SslCertAssetValidationTypeOutput;
2486
+ // (undocumented)
2487
+ version?: number;
2488
+ }
2489
+
2490
+ // @public (undocumented)
2491
+ export interface SslCertAssetResourceOutput extends AssetResourceOutputParent {
2492
+ asset: SslCertAssetOutput;
2493
+ kind: "sslCert";
2494
+ }
2495
+
2496
+ // @public
2497
+ export type SslCertAssetValidationTypeOutput = string;
2498
+
2499
+ // @public (undocumented)
2500
+ export interface SslServerConfigOutput {
2501
+ // (undocumented)
2502
+ cipherSuites?: string[];
2503
+ // (undocumented)
2504
+ count?: number;
2505
+ // (undocumented)
2506
+ firstSeen?: string;
2507
+ // (undocumented)
2508
+ lastSeen?: string;
2509
+ // (undocumented)
2510
+ sources?: Array<SourceOutput>;
2511
+ // (undocumented)
2512
+ tlsVersions?: string[];
2513
+ }
2514
+
2515
+ // @public (undocumented)
2516
+ export interface SubResourceIntegrityCheckOutput {
2517
+ // (undocumented)
2518
+ causePageUrl?: string;
2519
+ // (undocumented)
2520
+ count?: number;
2521
+ // (undocumented)
2522
+ crawlGuid?: string;
2523
+ // (undocumented)
2524
+ expectedHash?: string;
2525
+ // (undocumented)
2526
+ firstSeen?: string;
2527
+ // (undocumented)
2528
+ lastSeen?: string;
2529
+ // (undocumented)
2530
+ pageGuid?: string;
2531
+ // (undocumented)
2532
+ resourceGuid?: string;
2533
+ // (undocumented)
2534
+ violation?: boolean;
2535
+ }
2536
+
2537
+ // @public (undocumented)
2538
+ export interface TaskOutput {
2539
+ completedAt?: string;
2540
+ readonly id: string;
2541
+ lastPolledAt?: string;
2542
+ metadata?: Record<string, any>;
2543
+ phase?: TaskPhaseOutput;
2544
+ reason?: string;
2545
+ startedAt?: string;
2546
+ state?: TaskStateOutput;
2547
+ }
2548
+
2549
+ // @public
2550
+ export type TaskPhaseOutput = string;
2551
+
2552
+ // @public
2553
+ export type TaskStateOutput = string;
2554
+
2555
+ // @public
2556
+ export interface UpdateAssets200Response extends HttpResponse {
2557
+ // (undocumented)
2558
+ body: TaskOutput;
2559
+ // (undocumented)
2560
+ status: "200";
2561
+ }
2562
+
2563
+ // @public (undocumented)
2564
+ export interface UpdateAssetsBodyParam {
2565
+ // (undocumented)
2566
+ body: AssetUpdateData;
2567
+ }
2568
+
2569
+ // @public (undocumented)
2570
+ export interface UpdateAssetsDefaultHeaders {
2571
+ "x-ms-error-code"?: string;
2572
+ }
2573
+
2574
+ // @public (undocumented)
2575
+ export interface UpdateAssetsDefaultResponse extends HttpResponse {
2576
+ // (undocumented)
2577
+ body: ErrorResponse;
2578
+ // (undocumented)
2579
+ headers: RawHttpHeaders & UpdateAssetsDefaultHeaders;
2580
+ // (undocumented)
2581
+ status: string;
2582
+ }
2583
+
2584
+ // @public (undocumented)
2585
+ export type UpdateAssetsParameters = UpdateAssetsQueryParam & UpdateAssetsBodyParam & RequestParameters;
2586
+
2587
+ // @public (undocumented)
2588
+ export interface UpdateAssetsQueryParam {
2589
+ // (undocumented)
2590
+ queryParameters: UpdateAssetsQueryParamProperties;
2591
+ }
2592
+
2593
+ // @public (undocumented)
2594
+ export interface UpdateAssetsQueryParamProperties {
2595
+ filter: string;
2596
+ }
2597
+
2598
+ // @public (undocumented)
2599
+ export interface ValidateDataConnection {
2600
+ post(options: ValidateDataConnectionParameters): StreamableMethod<ValidateDataConnection200Response | ValidateDataConnectionDefaultResponse>;
2601
+ }
2602
+
2603
+ // @public
2604
+ export interface ValidateDataConnection200Response extends HttpResponse {
2605
+ // (undocumented)
2606
+ body: ValidateResultOutput;
2607
+ // (undocumented)
2608
+ status: "200";
2609
+ }
2610
+
2611
+ // @public (undocumented)
2612
+ export interface ValidateDataConnectionBodyParam {
2613
+ // (undocumented)
2614
+ body: DataConnectionData;
2615
+ }
2616
+
2617
+ // @public (undocumented)
2618
+ export interface ValidateDataConnectionDefaultHeaders {
2619
+ "x-ms-error-code"?: string;
2620
+ }
2621
+
2622
+ // @public (undocumented)
2623
+ export interface ValidateDataConnectionDefaultResponse extends HttpResponse {
2624
+ // (undocumented)
2625
+ body: ErrorResponse;
2626
+ // (undocumented)
2627
+ headers: RawHttpHeaders & ValidateDataConnectionDefaultHeaders;
2628
+ // (undocumented)
2629
+ status: string;
2630
+ }
2631
+
2632
+ // @public (undocumented)
2633
+ export type ValidateDataConnectionParameters = ValidateDataConnectionBodyParam & RequestParameters;
2634
+
2635
+ // @public (undocumented)
2636
+ export interface ValidateDiscoGroup {
2637
+ post(options: ValidateDiscoGroupParameters): StreamableMethod<ValidateDiscoGroup200Response | ValidateDiscoGroupDefaultResponse>;
2638
+ }
2639
+
2640
+ // @public
2641
+ export interface ValidateDiscoGroup200Response extends HttpResponse {
2642
+ // (undocumented)
2643
+ body: ValidateResultOutput;
2644
+ // (undocumented)
2645
+ status: "200";
2646
+ }
2647
+
2648
+ // @public (undocumented)
2649
+ export interface ValidateDiscoGroupBodyParam {
2650
+ // (undocumented)
2651
+ body: DiscoGroupData;
2652
+ }
2653
+
2654
+ // @public (undocumented)
2655
+ export interface ValidateDiscoGroupDefaultHeaders {
2656
+ "x-ms-error-code"?: string;
2657
+ }
2658
+
2659
+ // @public (undocumented)
2660
+ export interface ValidateDiscoGroupDefaultResponse extends HttpResponse {
2661
+ // (undocumented)
2662
+ body: ErrorResponse;
2663
+ // (undocumented)
2664
+ headers: RawHttpHeaders & ValidateDiscoGroupDefaultHeaders;
2665
+ // (undocumented)
2666
+ status: string;
2667
+ }
2668
+
2669
+ // @public (undocumented)
2670
+ export type ValidateDiscoGroupParameters = ValidateDiscoGroupBodyParam & RequestParameters;
2671
+
2672
+ // @public
2673
+ export interface ValidateResultOutput {
2674
+ error?: ErrorDetailOutput;
2675
+ }
2676
+
2677
+ // @public (undocumented)
2678
+ export interface WebComponentOutput {
2679
+ // (undocumented)
2680
+ count?: number;
2681
+ // (undocumented)
2682
+ cve?: Array<CveOutput>;
2683
+ // (undocumented)
2684
+ endOfLife?: number;
2685
+ // (undocumented)
2686
+ firstSeen?: string;
2687
+ // (undocumented)
2688
+ lastSeen?: string;
2689
+ // (undocumented)
2690
+ name?: string;
2691
+ // (undocumented)
2692
+ ports?: Array<PortOutput>;
2693
+ // (undocumented)
2694
+ recent?: boolean;
2695
+ // (undocumented)
2696
+ ruleId?: string[];
2697
+ // (undocumented)
2698
+ service?: string;
2699
+ // (undocumented)
2700
+ sources?: Array<SourceOutput>;
2701
+ // (undocumented)
2702
+ type?: string;
2703
+ // (undocumented)
2704
+ version?: string;
2705
+ }
2706
+
2707
+ // (No @packageDocumentation comment for this package)
2708
+
2709
+ ```