@microsoft/msgraph-sdk 1.0.0-preview.13 → 1.0.0-preview.15
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/graphServiceClient.js +1 -1
- package/models/callRecords/index.d.ts +44 -44
- package/models/callRecords/index.js +44 -44
- package/models/externalConnectors/index.d.ts +54 -54
- package/models/externalConnectors/index.js +54 -54
- package/models/identityGovernance/index.d.ts +72 -72
- package/models/identityGovernance/index.js +72 -72
- package/models/index.d.ts +4940 -4144
- package/models/index.d.ts.map +1 -1
- package/models/index.js +4984 -4229
- package/models/oDataErrors/index.d.ts +8 -8
- package/models/oDataErrors/index.js +8 -8
- package/models/partners/billing/index.d.ts +24 -24
- package/models/partners/billing/index.js +24 -24
- package/models/security/index.d.ts +343 -339
- package/models/security/index.d.ts.map +1 -1
- package/models/security/index.js +334 -333
- package/models/termStore/index.d.ts +26 -26
- package/models/termStore/index.js +26 -26
- package/package.json +2 -2
- package/tsconfig.tsbuildinfo +1 -1
|
@@ -7,11 +7,11 @@ export interface Alert extends Entity, Parsable {
|
|
|
7
7
|
*/
|
|
8
8
|
actorDisplayName?: string;
|
|
9
9
|
/**
|
|
10
|
-
* The
|
|
10
|
+
* The ID of the policy that generated the alert, and populated when there is a specific policy that generated the alert, whether configured by a customer or a built-in policy.
|
|
11
11
|
*/
|
|
12
12
|
alertPolicyId?: string;
|
|
13
13
|
/**
|
|
14
|
-
*
|
|
14
|
+
* The alertWebUrl property
|
|
15
15
|
*/
|
|
16
16
|
alertWebUrl?: string;
|
|
17
17
|
/**
|
|
@@ -39,7 +39,7 @@ export interface Alert extends Entity, Parsable {
|
|
|
39
39
|
*/
|
|
40
40
|
description?: string;
|
|
41
41
|
/**
|
|
42
|
-
* Detection technology or sensor that identified the notable component or activity. Possible values are: unknown, microsoftDefenderForEndpoint, antivirus, smartScreen, customTi, microsoftDefenderForOffice365, automatedInvestigation, microsoftThreatExperts, customDetection, microsoftDefenderForIdentity, cloudAppSecurity, microsoft365Defender, azureAdIdentityProtection, manual, microsoftDataLossPrevention, appGovernancePolicy, appGovernanceDetection, unknownFutureValue, microsoftDefenderForCloud, microsoftDefenderForIoT, microsoftDefenderForServers, microsoftDefenderForStorage, microsoftDefenderForDNS, microsoftDefenderForDatabases, microsoftDefenderForContainers, microsoftDefenderForNetwork, microsoftDefenderForAppService, microsoftDefenderForKeyVault, microsoftDefenderForResourceManager, microsoftDefenderForApiManagement. You must use the Prefer: include-unknown-enum-members request header to get the following value(s) in this evolvable enum: microsoftDefenderForCloud, microsoftDefenderForIoT, microsoftDefenderForServers, microsoftDefenderForStorage, microsoftDefenderForDNS, microsoftDefenderForDatabases, microsoftDefenderForContainers, microsoftDefenderForNetwork, microsoftDefenderForAppService, microsoftDefenderForKeyVault, microsoftDefenderForResourceManager, microsoftDefenderForApiManagement.
|
|
42
|
+
* Detection technology or sensor that identified the notable component or activity. Possible values are: unknown, microsoftDefenderForEndpoint, antivirus, smartScreen, customTi, microsoftDefenderForOffice365, automatedInvestigation, microsoftThreatExperts, customDetection, microsoftDefenderForIdentity, cloudAppSecurity, microsoft365Defender, azureAdIdentityProtection, manual, microsoftDataLossPrevention, appGovernancePolicy, appGovernanceDetection, unknownFutureValue, microsoftDefenderForCloud, microsoftDefenderForIoT, microsoftDefenderForServers, microsoftDefenderForStorage, microsoftDefenderForDNS, microsoftDefenderForDatabases, microsoftDefenderForContainers, microsoftDefenderForNetwork, microsoftDefenderForAppService, microsoftDefenderForKeyVault, microsoftDefenderForResourceManager, microsoftDefenderForApiManagement, microsoftSentinel, nrtAlerts, scheduledAlerts, microsoftDefenderThreatIntelligenceAnalytics, builtInMl. You must use the Prefer: include-unknown-enum-members request header to get the following value(s) in this evolvable enum: microsoftDefenderForCloud, microsoftDefenderForIoT, microsoftDefenderForServers, microsoftDefenderForStorage, microsoftDefenderForDNS, microsoftDefenderForDatabases, microsoftDefenderForContainers, microsoftDefenderForNetwork, microsoftDefenderForAppService, microsoftDefenderForKeyVault, microsoftDefenderForResourceManager, microsoftDefenderForApiManagement, microsoftSentinel, nrtAlerts, scheduledAlerts, microsoftDefenderThreatIntelligenceAnalytics, builtInMl.
|
|
43
43
|
*/
|
|
44
44
|
detectionSource?: DetectionSource;
|
|
45
45
|
/**
|
|
@@ -106,6 +106,10 @@ export interface Alert extends Entity, Parsable {
|
|
|
106
106
|
* The status property
|
|
107
107
|
*/
|
|
108
108
|
status?: AlertStatus;
|
|
109
|
+
/**
|
|
110
|
+
* The system tags associated with the alert.
|
|
111
|
+
*/
|
|
112
|
+
systemTags?: string[];
|
|
109
113
|
/**
|
|
110
114
|
* The Microsoft Entra tenant the alert was created in.
|
|
111
115
|
*/
|
|
@@ -577,997 +581,997 @@ export type ContentFormat = (typeof ContentFormatObject)[keyof typeof ContentFor
|
|
|
577
581
|
/**
|
|
578
582
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
579
583
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
580
|
-
* @returns
|
|
584
|
+
* @returns {AlertCollectionResponse}
|
|
581
585
|
*/
|
|
582
586
|
export declare function createAlertCollectionResponseFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
583
587
|
/**
|
|
584
588
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
585
589
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
586
|
-
* @returns
|
|
590
|
+
* @returns {AlertComment}
|
|
587
591
|
*/
|
|
588
592
|
export declare function createAlertCommentFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
589
593
|
/**
|
|
590
594
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
591
595
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
592
|
-
* @returns
|
|
596
|
+
* @returns {AlertEvidence}
|
|
593
597
|
*/
|
|
594
598
|
export declare function createAlertEvidenceFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
595
599
|
/**
|
|
596
600
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
597
601
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
598
|
-
* @returns
|
|
602
|
+
* @returns {Alert}
|
|
599
603
|
*/
|
|
600
604
|
export declare function createAlertFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
601
605
|
/**
|
|
602
606
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
603
607
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
604
|
-
* @returns
|
|
608
|
+
* @returns {AmazonResourceEvidence}
|
|
605
609
|
*/
|
|
606
610
|
export declare function createAmazonResourceEvidenceFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
607
611
|
/**
|
|
608
612
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
609
613
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
610
|
-
* @returns
|
|
614
|
+
* @returns {AnalyzedMessageEvidence}
|
|
611
615
|
*/
|
|
612
616
|
export declare function createAnalyzedMessageEvidenceFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
613
617
|
/**
|
|
614
618
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
615
619
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
616
|
-
* @returns
|
|
620
|
+
* @returns {ArticleCollectionResponse}
|
|
617
621
|
*/
|
|
618
622
|
export declare function createArticleCollectionResponseFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
619
623
|
/**
|
|
620
624
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
621
625
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
622
|
-
* @returns
|
|
626
|
+
* @returns {Article}
|
|
623
627
|
*/
|
|
624
628
|
export declare function createArticleFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
625
629
|
/**
|
|
626
630
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
627
631
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
628
|
-
* @returns
|
|
632
|
+
* @returns {ArticleIndicatorCollectionResponse}
|
|
629
633
|
*/
|
|
630
634
|
export declare function createArticleIndicatorCollectionResponseFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
631
635
|
/**
|
|
632
636
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
633
637
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
634
|
-
* @returns
|
|
638
|
+
* @returns {ArticleIndicator}
|
|
635
639
|
*/
|
|
636
640
|
export declare function createArticleIndicatorFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
637
641
|
/**
|
|
638
642
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
639
643
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
640
|
-
* @returns
|
|
644
|
+
* @returns {Artifact}
|
|
641
645
|
*/
|
|
642
646
|
export declare function createArtifactFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
643
647
|
/**
|
|
644
648
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
645
649
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
646
|
-
* @returns
|
|
650
|
+
* @returns {AutonomousSystem}
|
|
647
651
|
*/
|
|
648
652
|
export declare function createAutonomousSystemFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
649
653
|
/**
|
|
650
654
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
651
655
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
652
|
-
* @returns
|
|
656
|
+
* @returns {AzureResourceEvidence}
|
|
653
657
|
*/
|
|
654
658
|
export declare function createAzureResourceEvidenceFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
655
659
|
/**
|
|
656
660
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
657
661
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
658
|
-
* @returns
|
|
662
|
+
* @returns {BlobContainerEvidence}
|
|
659
663
|
*/
|
|
660
664
|
export declare function createBlobContainerEvidenceFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
661
665
|
/**
|
|
662
666
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
663
667
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
664
|
-
* @returns
|
|
668
|
+
* @returns {BlobEvidence}
|
|
665
669
|
*/
|
|
666
670
|
export declare function createBlobEvidenceFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
667
671
|
/**
|
|
668
672
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
669
673
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
670
|
-
* @returns
|
|
674
|
+
* @returns {CaseEscaped}
|
|
671
675
|
*/
|
|
672
676
|
export declare function createCaseEscapedFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
673
677
|
/**
|
|
674
678
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
675
679
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
676
|
-
* @returns
|
|
680
|
+
* @returns {CaseOperationCollectionResponse}
|
|
677
681
|
*/
|
|
678
682
|
export declare function createCaseOperationCollectionResponseFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
679
683
|
/**
|
|
680
684
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
681
685
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
682
|
-
* @returns
|
|
686
|
+
* @returns {CaseOperation}
|
|
683
687
|
*/
|
|
684
688
|
export declare function createCaseOperationFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
685
689
|
/**
|
|
686
690
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
687
691
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
688
|
-
* @returns
|
|
692
|
+
* @returns {CasesRoot}
|
|
689
693
|
*/
|
|
690
694
|
export declare function createCasesRootFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
691
695
|
/**
|
|
692
696
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
693
697
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
694
|
-
* @returns
|
|
698
|
+
* @returns {CloudApplicationEvidence}
|
|
695
699
|
*/
|
|
696
700
|
export declare function createCloudApplicationEvidenceFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
697
701
|
/**
|
|
698
702
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
699
703
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
700
|
-
* @returns
|
|
704
|
+
* @returns {ContainerEvidence}
|
|
701
705
|
*/
|
|
702
706
|
export declare function createContainerEvidenceFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
703
707
|
/**
|
|
704
708
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
705
709
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
706
|
-
* @returns
|
|
710
|
+
* @returns {ContainerImageEvidence}
|
|
707
711
|
*/
|
|
708
712
|
export declare function createContainerImageEvidenceFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
709
713
|
/**
|
|
710
714
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
711
715
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
712
|
-
* @returns
|
|
716
|
+
* @returns {ContainerRegistryEvidence}
|
|
713
717
|
*/
|
|
714
718
|
export declare function createContainerRegistryEvidenceFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
715
719
|
/**
|
|
716
720
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
717
721
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
718
|
-
* @returns
|
|
722
|
+
* @returns {CvssSummary}
|
|
719
723
|
*/
|
|
720
724
|
export declare function createCvssSummaryFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
721
725
|
/**
|
|
722
726
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
723
727
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
724
|
-
* @returns
|
|
728
|
+
* @returns {DataSet}
|
|
725
729
|
*/
|
|
726
730
|
export declare function createDataSetFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
727
731
|
/**
|
|
728
732
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
729
733
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
730
|
-
* @returns
|
|
734
|
+
* @returns {DataSourceCollectionResponse}
|
|
731
735
|
*/
|
|
732
736
|
export declare function createDataSourceCollectionResponseFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
733
737
|
/**
|
|
734
738
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
735
739
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
736
|
-
* @returns
|
|
740
|
+
* @returns {DataSourceContainer}
|
|
737
741
|
*/
|
|
738
742
|
export declare function createDataSourceContainerFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
739
743
|
/**
|
|
740
744
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
741
745
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
742
|
-
* @returns
|
|
746
|
+
* @returns {DataSource}
|
|
743
747
|
*/
|
|
744
748
|
export declare function createDataSourceFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
745
749
|
/**
|
|
746
750
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
747
751
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
748
|
-
* @returns
|
|
752
|
+
* @returns {DeviceEvidence}
|
|
749
753
|
*/
|
|
750
754
|
export declare function createDeviceEvidenceFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
751
755
|
/**
|
|
752
756
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
753
757
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
754
|
-
* @returns
|
|
758
|
+
* @returns {Dictionary}
|
|
755
759
|
*/
|
|
756
760
|
export declare function createDictionaryFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
757
761
|
/**
|
|
758
762
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
759
763
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
760
|
-
* @returns
|
|
764
|
+
* @returns {DnsEvidence}
|
|
761
765
|
*/
|
|
762
766
|
export declare function createDnsEvidenceFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
763
767
|
/**
|
|
764
768
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
765
769
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
766
|
-
* @returns
|
|
770
|
+
* @returns {EdiscoveryAddToReviewSetOperation}
|
|
767
771
|
*/
|
|
768
772
|
export declare function createEdiscoveryAddToReviewSetOperationFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
769
773
|
/**
|
|
770
774
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
771
775
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
772
|
-
* @returns
|
|
776
|
+
* @returns {EdiscoveryCaseCollectionResponse}
|
|
773
777
|
*/
|
|
774
778
|
export declare function createEdiscoveryCaseCollectionResponseFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
775
779
|
/**
|
|
776
780
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
777
781
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
778
|
-
* @returns
|
|
782
|
+
* @returns {EdiscoveryCase}
|
|
779
783
|
*/
|
|
780
784
|
export declare function createEdiscoveryCaseFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
781
785
|
/**
|
|
782
786
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
783
787
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
784
|
-
* @returns
|
|
788
|
+
* @returns {EdiscoveryCaseSettings}
|
|
785
789
|
*/
|
|
786
790
|
export declare function createEdiscoveryCaseSettingsFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
787
791
|
/**
|
|
788
792
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
789
793
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
790
|
-
* @returns
|
|
794
|
+
* @returns {EdiscoveryCustodianCollectionResponse}
|
|
791
795
|
*/
|
|
792
796
|
export declare function createEdiscoveryCustodianCollectionResponseFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
793
797
|
/**
|
|
794
798
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
795
799
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
796
|
-
* @returns
|
|
800
|
+
* @returns {EdiscoveryCustodian}
|
|
797
801
|
*/
|
|
798
802
|
export declare function createEdiscoveryCustodianFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
799
803
|
/**
|
|
800
804
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
801
805
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
802
|
-
* @returns
|
|
806
|
+
* @returns {EdiscoveryEstimateOperation}
|
|
803
807
|
*/
|
|
804
808
|
export declare function createEdiscoveryEstimateOperationFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
805
809
|
/**
|
|
806
810
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
807
811
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
808
|
-
* @returns
|
|
812
|
+
* @returns {EdiscoveryExportOperation}
|
|
809
813
|
*/
|
|
810
814
|
export declare function createEdiscoveryExportOperationFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
811
815
|
/**
|
|
812
816
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
813
817
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
814
|
-
* @returns
|
|
818
|
+
* @returns {EdiscoveryHoldOperation}
|
|
815
819
|
*/
|
|
816
820
|
export declare function createEdiscoveryHoldOperationFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
817
821
|
/**
|
|
818
822
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
819
823
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
820
|
-
* @returns
|
|
824
|
+
* @returns {EdiscoveryIndexOperation}
|
|
821
825
|
*/
|
|
822
826
|
export declare function createEdiscoveryIndexOperationFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
823
827
|
/**
|
|
824
828
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
825
829
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
826
|
-
* @returns
|
|
830
|
+
* @returns {EdiscoveryNoncustodialDataSourceCollectionResponse}
|
|
827
831
|
*/
|
|
828
832
|
export declare function createEdiscoveryNoncustodialDataSourceCollectionResponseFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
829
833
|
/**
|
|
830
834
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
831
835
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
832
|
-
* @returns
|
|
836
|
+
* @returns {EdiscoveryNoncustodialDataSource}
|
|
833
837
|
*/
|
|
834
838
|
export declare function createEdiscoveryNoncustodialDataSourceFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
835
839
|
/**
|
|
836
840
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
837
841
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
838
|
-
* @returns
|
|
842
|
+
* @returns {EdiscoveryPurgeDataOperation}
|
|
839
843
|
*/
|
|
840
844
|
export declare function createEdiscoveryPurgeDataOperationFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
841
845
|
/**
|
|
842
846
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
843
847
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
844
|
-
* @returns
|
|
848
|
+
* @returns {EdiscoveryReviewSetCollectionResponse}
|
|
845
849
|
*/
|
|
846
850
|
export declare function createEdiscoveryReviewSetCollectionResponseFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
847
851
|
/**
|
|
848
852
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
849
853
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
850
|
-
* @returns
|
|
854
|
+
* @returns {EdiscoveryReviewSet}
|
|
851
855
|
*/
|
|
852
856
|
export declare function createEdiscoveryReviewSetFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
853
857
|
/**
|
|
854
858
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
855
859
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
856
|
-
* @returns
|
|
860
|
+
* @returns {EdiscoveryReviewSetQueryCollectionResponse}
|
|
857
861
|
*/
|
|
858
862
|
export declare function createEdiscoveryReviewSetQueryCollectionResponseFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
859
863
|
/**
|
|
860
864
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
861
865
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
862
|
-
* @returns
|
|
866
|
+
* @returns {EdiscoveryReviewSetQuery}
|
|
863
867
|
*/
|
|
864
868
|
export declare function createEdiscoveryReviewSetQueryFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
865
869
|
/**
|
|
866
870
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
867
871
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
868
|
-
* @returns
|
|
872
|
+
* @returns {EdiscoveryReviewTagCollectionResponse}
|
|
869
873
|
*/
|
|
870
874
|
export declare function createEdiscoveryReviewTagCollectionResponseFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
871
875
|
/**
|
|
872
876
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
873
877
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
874
|
-
* @returns
|
|
878
|
+
* @returns {EdiscoveryReviewTag}
|
|
875
879
|
*/
|
|
876
880
|
export declare function createEdiscoveryReviewTagFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
877
881
|
/**
|
|
878
882
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
879
883
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
880
|
-
* @returns
|
|
884
|
+
* @returns {EdiscoverySearchCollectionResponse}
|
|
881
885
|
*/
|
|
882
886
|
export declare function createEdiscoverySearchCollectionResponseFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
883
887
|
/**
|
|
884
888
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
885
889
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
886
|
-
* @returns
|
|
890
|
+
* @returns {EdiscoverySearch}
|
|
887
891
|
*/
|
|
888
892
|
export declare function createEdiscoverySearchFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
889
893
|
/**
|
|
890
894
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
891
895
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
892
|
-
* @returns
|
|
896
|
+
* @returns {EdiscoveryTagOperation}
|
|
893
897
|
*/
|
|
894
898
|
export declare function createEdiscoveryTagOperationFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
895
899
|
/**
|
|
896
900
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
897
901
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
898
|
-
* @returns
|
|
902
|
+
* @returns {EmailSender}
|
|
899
903
|
*/
|
|
900
904
|
export declare function createEmailSenderFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
901
905
|
/**
|
|
902
906
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
903
907
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
904
|
-
* @returns
|
|
908
|
+
* @returns {EventPropagationResult}
|
|
905
909
|
*/
|
|
906
910
|
export declare function createEventPropagationResultFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
907
911
|
/**
|
|
908
912
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
909
913
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
910
|
-
* @returns
|
|
914
|
+
* @returns {EventQuery}
|
|
911
915
|
*/
|
|
912
916
|
export declare function createEventQueryFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
913
917
|
/**
|
|
914
918
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
915
919
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
916
|
-
* @returns
|
|
920
|
+
* @returns {ExportFileMetadata}
|
|
917
921
|
*/
|
|
918
922
|
export declare function createExportFileMetadataFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
919
923
|
/**
|
|
920
924
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
921
925
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
922
|
-
* @returns
|
|
926
|
+
* @returns {FileDetails}
|
|
923
927
|
*/
|
|
924
928
|
export declare function createFileDetailsFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
925
929
|
/**
|
|
926
930
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
927
931
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
928
|
-
* @returns
|
|
932
|
+
* @returns {FileEvidence}
|
|
929
933
|
*/
|
|
930
934
|
export declare function createFileEvidenceFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
931
935
|
/**
|
|
932
936
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
933
937
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
934
|
-
* @returns
|
|
938
|
+
* @returns {FileHashEvidence}
|
|
935
939
|
*/
|
|
936
940
|
export declare function createFileHashEvidenceFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
937
941
|
/**
|
|
938
942
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
939
943
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
940
|
-
* @returns
|
|
944
|
+
* @returns {FileHash}
|
|
941
945
|
*/
|
|
942
946
|
export declare function createFileHashFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
943
947
|
/**
|
|
944
948
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
945
949
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
946
|
-
* @returns
|
|
950
|
+
* @returns {FormattedContent}
|
|
947
951
|
*/
|
|
948
952
|
export declare function createFormattedContentFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
949
953
|
/**
|
|
950
954
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
951
955
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
952
|
-
* @returns
|
|
956
|
+
* @returns {GitHubOrganizationEvidence}
|
|
953
957
|
*/
|
|
954
958
|
export declare function createGitHubOrganizationEvidenceFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
955
959
|
/**
|
|
956
960
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
957
961
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
958
|
-
* @returns
|
|
962
|
+
* @returns {GitHubRepoEvidence}
|
|
959
963
|
*/
|
|
960
964
|
export declare function createGitHubRepoEvidenceFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
961
965
|
/**
|
|
962
966
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
963
967
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
964
|
-
* @returns
|
|
968
|
+
* @returns {GitHubUserEvidence}
|
|
965
969
|
*/
|
|
966
970
|
export declare function createGitHubUserEvidenceFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
967
971
|
/**
|
|
968
972
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
969
973
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
970
|
-
* @returns
|
|
974
|
+
* @returns {GoogleCloudResourceEvidence}
|
|
971
975
|
*/
|
|
972
976
|
export declare function createGoogleCloudResourceEvidenceFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
973
977
|
/**
|
|
974
978
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
975
979
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
976
|
-
* @returns
|
|
980
|
+
* @returns {HostCollectionResponse}
|
|
977
981
|
*/
|
|
978
982
|
export declare function createHostCollectionResponseFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
979
983
|
/**
|
|
980
984
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
981
985
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
982
|
-
* @returns
|
|
986
|
+
* @returns {HostComponentCollectionResponse}
|
|
983
987
|
*/
|
|
984
988
|
export declare function createHostComponentCollectionResponseFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
985
989
|
/**
|
|
986
990
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
987
991
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
988
|
-
* @returns
|
|
992
|
+
* @returns {HostComponent}
|
|
989
993
|
*/
|
|
990
994
|
export declare function createHostComponentFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
991
995
|
/**
|
|
992
996
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
993
997
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
994
|
-
* @returns
|
|
998
|
+
* @returns {HostCookieCollectionResponse}
|
|
995
999
|
*/
|
|
996
1000
|
export declare function createHostCookieCollectionResponseFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
997
1001
|
/**
|
|
998
1002
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
999
1003
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
1000
|
-
* @returns
|
|
1004
|
+
* @returns {HostCookie}
|
|
1001
1005
|
*/
|
|
1002
1006
|
export declare function createHostCookieFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
1003
1007
|
/**
|
|
1004
1008
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
1005
1009
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
1006
|
-
* @returns
|
|
1010
|
+
* @returns {Host}
|
|
1007
1011
|
*/
|
|
1008
1012
|
export declare function createHostFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
1009
1013
|
/**
|
|
1010
1014
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
1011
1015
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
1012
|
-
* @returns
|
|
1016
|
+
* @returns {HostLogonSessionEvidence}
|
|
1013
1017
|
*/
|
|
1014
1018
|
export declare function createHostLogonSessionEvidenceFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
1015
1019
|
/**
|
|
1016
1020
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
1017
1021
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
1018
|
-
* @returns
|
|
1022
|
+
* @returns {Hostname}
|
|
1019
1023
|
*/
|
|
1020
1024
|
export declare function createHostnameFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
1021
1025
|
/**
|
|
1022
1026
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
1023
1027
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
1024
|
-
* @returns
|
|
1028
|
+
* @returns {HostPairCollectionResponse}
|
|
1025
1029
|
*/
|
|
1026
1030
|
export declare function createHostPairCollectionResponseFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
1027
1031
|
/**
|
|
1028
1032
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
1029
1033
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
1030
|
-
* @returns
|
|
1034
|
+
* @returns {HostPair}
|
|
1031
1035
|
*/
|
|
1032
1036
|
export declare function createHostPairFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
1033
1037
|
/**
|
|
1034
1038
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
1035
1039
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
1036
|
-
* @returns
|
|
1040
|
+
* @returns {HostPortBanner}
|
|
1037
1041
|
*/
|
|
1038
1042
|
export declare function createHostPortBannerFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
1039
1043
|
/**
|
|
1040
1044
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
1041
1045
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
1042
|
-
* @returns
|
|
1046
|
+
* @returns {HostPortCollectionResponse}
|
|
1043
1047
|
*/
|
|
1044
1048
|
export declare function createHostPortCollectionResponseFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
1045
1049
|
/**
|
|
1046
1050
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
1047
1051
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
1048
|
-
* @returns
|
|
1052
|
+
* @returns {HostPortComponent}
|
|
1049
1053
|
*/
|
|
1050
1054
|
export declare function createHostPortComponentFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
1051
1055
|
/**
|
|
1052
1056
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
1053
1057
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
1054
|
-
* @returns
|
|
1058
|
+
* @returns {HostPort}
|
|
1055
1059
|
*/
|
|
1056
1060
|
export declare function createHostPortFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
1057
1061
|
/**
|
|
1058
1062
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
1059
1063
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
1060
|
-
* @returns
|
|
1064
|
+
* @returns {HostReputation}
|
|
1061
1065
|
*/
|
|
1062
1066
|
export declare function createHostReputationFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
1063
1067
|
/**
|
|
1064
1068
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
1065
1069
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
1066
|
-
* @returns
|
|
1070
|
+
* @returns {HostReputationRule}
|
|
1067
1071
|
*/
|
|
1068
1072
|
export declare function createHostReputationRuleFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
1069
1073
|
/**
|
|
1070
1074
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
1071
1075
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
1072
|
-
* @returns
|
|
1076
|
+
* @returns {HostSslCertificateCollectionResponse}
|
|
1073
1077
|
*/
|
|
1074
1078
|
export declare function createHostSslCertificateCollectionResponseFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
1075
1079
|
/**
|
|
1076
1080
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
1077
1081
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
1078
|
-
* @returns
|
|
1082
|
+
* @returns {HostSslCertificate}
|
|
1079
1083
|
*/
|
|
1080
1084
|
export declare function createHostSslCertificateFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
1081
1085
|
/**
|
|
1082
1086
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
1083
1087
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
1084
|
-
* @returns
|
|
1088
|
+
* @returns {HostSslCertificatePort}
|
|
1085
1089
|
*/
|
|
1086
1090
|
export declare function createHostSslCertificatePortFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
1087
1091
|
/**
|
|
1088
1092
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
1089
1093
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
1090
|
-
* @returns
|
|
1094
|
+
* @returns {HostTrackerCollectionResponse}
|
|
1091
1095
|
*/
|
|
1092
1096
|
export declare function createHostTrackerCollectionResponseFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
1093
1097
|
/**
|
|
1094
1098
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
1095
1099
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
1096
|
-
* @returns
|
|
1100
|
+
* @returns {HostTracker}
|
|
1097
1101
|
*/
|
|
1098
1102
|
export declare function createHostTrackerFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
1099
1103
|
/**
|
|
1100
1104
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
1101
1105
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
1102
|
-
* @returns
|
|
1106
|
+
* @returns {HuntingQueryResults}
|
|
1103
1107
|
*/
|
|
1104
1108
|
export declare function createHuntingQueryResultsFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
1105
1109
|
/**
|
|
1106
1110
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
1107
1111
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
1108
|
-
* @returns
|
|
1112
|
+
* @returns {HuntingRowResult}
|
|
1109
1113
|
*/
|
|
1110
1114
|
export declare function createHuntingRowResultFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
1111
1115
|
/**
|
|
1112
1116
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
1113
1117
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
1114
|
-
* @returns
|
|
1118
|
+
* @returns {Hyperlink}
|
|
1115
1119
|
*/
|
|
1116
1120
|
export declare function createHyperlinkFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
1117
1121
|
/**
|
|
1118
1122
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
1119
1123
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
1120
|
-
* @returns
|
|
1124
|
+
* @returns {IncidentCollectionResponse}
|
|
1121
1125
|
*/
|
|
1122
1126
|
export declare function createIncidentCollectionResponseFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
1123
1127
|
/**
|
|
1124
1128
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
1125
1129
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
1126
|
-
* @returns
|
|
1130
|
+
* @returns {Incident}
|
|
1127
1131
|
*/
|
|
1128
1132
|
export declare function createIncidentFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
1129
1133
|
/**
|
|
1130
1134
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
1131
1135
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
1132
|
-
* @returns
|
|
1136
|
+
* @returns {Indicator}
|
|
1133
1137
|
*/
|
|
1134
1138
|
export declare function createIndicatorFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
1135
1139
|
/**
|
|
1136
1140
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
1137
1141
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
1138
|
-
* @returns
|
|
1142
|
+
* @returns {IntelligenceProfileCollectionResponse}
|
|
1139
1143
|
*/
|
|
1140
1144
|
export declare function createIntelligenceProfileCollectionResponseFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
1141
1145
|
/**
|
|
1142
1146
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
1143
1147
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
1144
|
-
* @returns
|
|
1148
|
+
* @returns {IntelligenceProfileCountryOrRegionOfOrigin}
|
|
1145
1149
|
*/
|
|
1146
1150
|
export declare function createIntelligenceProfileCountryOrRegionOfOriginFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
1147
1151
|
/**
|
|
1148
1152
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
1149
1153
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
1150
|
-
* @returns
|
|
1154
|
+
* @returns {IntelligenceProfile}
|
|
1151
1155
|
*/
|
|
1152
1156
|
export declare function createIntelligenceProfileFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
1153
1157
|
/**
|
|
1154
1158
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
1155
1159
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
1156
|
-
* @returns
|
|
1160
|
+
* @returns {IntelligenceProfileIndicatorCollectionResponse}
|
|
1157
1161
|
*/
|
|
1158
1162
|
export declare function createIntelligenceProfileIndicatorCollectionResponseFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
1159
1163
|
/**
|
|
1160
1164
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
1161
1165
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
1162
|
-
* @returns
|
|
1166
|
+
* @returns {IntelligenceProfileIndicator}
|
|
1163
1167
|
*/
|
|
1164
1168
|
export declare function createIntelligenceProfileIndicatorFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
1165
1169
|
/**
|
|
1166
1170
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
1167
1171
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
1168
|
-
* @returns
|
|
1172
|
+
* @returns {IoTDeviceEvidence}
|
|
1169
1173
|
*/
|
|
1170
1174
|
export declare function createIoTDeviceEvidenceFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
1171
1175
|
/**
|
|
1172
1176
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
1173
1177
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
1174
|
-
* @returns
|
|
1178
|
+
* @returns {IpAddress}
|
|
1175
1179
|
*/
|
|
1176
1180
|
export declare function createIpAddressFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
1177
1181
|
/**
|
|
1178
1182
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
1179
1183
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
1180
|
-
* @returns
|
|
1184
|
+
* @returns {IpEvidence}
|
|
1181
1185
|
*/
|
|
1182
1186
|
export declare function createIpEvidenceFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
1183
1187
|
/**
|
|
1184
1188
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
1185
1189
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
1186
|
-
* @returns
|
|
1190
|
+
* @returns {KubernetesClusterEvidence}
|
|
1187
1191
|
*/
|
|
1188
1192
|
export declare function createKubernetesClusterEvidenceFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
1189
1193
|
/**
|
|
1190
1194
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
1191
1195
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
1192
|
-
* @returns
|
|
1196
|
+
* @returns {KubernetesControllerEvidence}
|
|
1193
1197
|
*/
|
|
1194
1198
|
export declare function createKubernetesControllerEvidenceFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
1195
1199
|
/**
|
|
1196
1200
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
1197
1201
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
1198
|
-
* @returns
|
|
1202
|
+
* @returns {KubernetesNamespaceEvidence}
|
|
1199
1203
|
*/
|
|
1200
1204
|
export declare function createKubernetesNamespaceEvidenceFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
1201
1205
|
/**
|
|
1202
1206
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
1203
1207
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
1204
|
-
* @returns
|
|
1208
|
+
* @returns {KubernetesPodEvidence}
|
|
1205
1209
|
*/
|
|
1206
1210
|
export declare function createKubernetesPodEvidenceFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
1207
1211
|
/**
|
|
1208
1212
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
1209
1213
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
1210
|
-
* @returns
|
|
1214
|
+
* @returns {KubernetesSecretEvidence}
|
|
1211
1215
|
*/
|
|
1212
1216
|
export declare function createKubernetesSecretEvidenceFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
1213
1217
|
/**
|
|
1214
1218
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
1215
1219
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
1216
|
-
* @returns
|
|
1220
|
+
* @returns {KubernetesServiceAccountEvidence}
|
|
1217
1221
|
*/
|
|
1218
1222
|
export declare function createKubernetesServiceAccountEvidenceFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
1219
1223
|
/**
|
|
1220
1224
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
1221
1225
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
1222
|
-
* @returns
|
|
1226
|
+
* @returns {KubernetesServiceEvidence}
|
|
1223
1227
|
*/
|
|
1224
1228
|
export declare function createKubernetesServiceEvidenceFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
1225
1229
|
/**
|
|
1226
1230
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
1227
1231
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
1228
|
-
* @returns
|
|
1232
|
+
* @returns {KubernetesServicePort}
|
|
1229
1233
|
*/
|
|
1230
1234
|
export declare function createKubernetesServicePortFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
1231
1235
|
/**
|
|
1232
1236
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
1233
1237
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
1234
|
-
* @returns
|
|
1238
|
+
* @returns {LoggedOnUser}
|
|
1235
1239
|
*/
|
|
1236
1240
|
export declare function createLoggedOnUserFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
1237
1241
|
/**
|
|
1238
1242
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
1239
1243
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
1240
|
-
* @returns
|
|
1244
|
+
* @returns {MailboxEvidence}
|
|
1241
1245
|
*/
|
|
1242
1246
|
export declare function createMailboxEvidenceFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
1243
1247
|
/**
|
|
1244
1248
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
1245
1249
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
1246
|
-
* @returns
|
|
1250
|
+
* @returns {MailClusterEvidence}
|
|
1247
1251
|
*/
|
|
1248
1252
|
export declare function createMailClusterEvidenceFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
1249
1253
|
/**
|
|
1250
1254
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
1251
1255
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
1252
|
-
* @returns
|
|
1256
|
+
* @returns {MalwareEvidence}
|
|
1253
1257
|
*/
|
|
1254
1258
|
export declare function createMalwareEvidenceFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
1255
1259
|
/**
|
|
1256
1260
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
1257
1261
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
1258
|
-
* @returns
|
|
1262
|
+
* @returns {NetworkConnectionEvidence}
|
|
1259
1263
|
*/
|
|
1260
1264
|
export declare function createNetworkConnectionEvidenceFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
1261
1265
|
/**
|
|
1262
1266
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
1263
1267
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
1264
|
-
* @returns
|
|
1268
|
+
* @returns {NicEvidence}
|
|
1265
1269
|
*/
|
|
1266
1270
|
export declare function createNicEvidenceFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
1267
1271
|
/**
|
|
1268
1272
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
1269
1273
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
1270
|
-
* @returns
|
|
1274
|
+
* @returns {OauthApplicationEvidence}
|
|
1271
1275
|
*/
|
|
1272
1276
|
export declare function createOauthApplicationEvidenceFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
1273
1277
|
/**
|
|
1274
1278
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
1275
1279
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
1276
|
-
* @returns
|
|
1280
|
+
* @returns {OcrSettings}
|
|
1277
1281
|
*/
|
|
1278
1282
|
export declare function createOcrSettingsFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
1279
1283
|
/**
|
|
1280
1284
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
1281
1285
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
1282
|
-
* @returns
|
|
1286
|
+
* @returns {PassiveDnsRecordCollectionResponse}
|
|
1283
1287
|
*/
|
|
1284
1288
|
export declare function createPassiveDnsRecordCollectionResponseFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
1285
1289
|
/**
|
|
1286
1290
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
1287
1291
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
1288
|
-
* @returns
|
|
1292
|
+
* @returns {PassiveDnsRecord}
|
|
1289
1293
|
*/
|
|
1290
1294
|
export declare function createPassiveDnsRecordFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
1291
1295
|
/**
|
|
1292
1296
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
1293
1297
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
1294
|
-
* @returns
|
|
1298
|
+
* @returns {ProcessEvidence}
|
|
1295
1299
|
*/
|
|
1296
1300
|
export declare function createProcessEvidenceFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
1297
1301
|
/**
|
|
1298
1302
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
1299
1303
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
1300
|
-
* @returns
|
|
1304
|
+
* @returns {RedundancyDetectionSettings}
|
|
1301
1305
|
*/
|
|
1302
1306
|
export declare function createRedundancyDetectionSettingsFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
1303
1307
|
/**
|
|
1304
1308
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
1305
1309
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
1306
|
-
* @returns
|
|
1310
|
+
* @returns {RegistryKeyEvidence}
|
|
1307
1311
|
*/
|
|
1308
1312
|
export declare function createRegistryKeyEvidenceFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
1309
1313
|
/**
|
|
1310
1314
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
1311
1315
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
1312
|
-
* @returns
|
|
1316
|
+
* @returns {RegistryValueEvidence}
|
|
1313
1317
|
*/
|
|
1314
1318
|
export declare function createRegistryValueEvidenceFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
1315
1319
|
/**
|
|
1316
1320
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
1317
1321
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
1318
|
-
* @returns
|
|
1322
|
+
* @returns {RetentionEventCollectionResponse}
|
|
1319
1323
|
*/
|
|
1320
1324
|
export declare function createRetentionEventCollectionResponseFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
1321
1325
|
/**
|
|
1322
1326
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
1323
1327
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
1324
|
-
* @returns
|
|
1328
|
+
* @returns {RetentionEvent}
|
|
1325
1329
|
*/
|
|
1326
1330
|
export declare function createRetentionEventFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
1327
1331
|
/**
|
|
1328
1332
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
1329
1333
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
1330
|
-
* @returns
|
|
1334
|
+
* @returns {RetentionEventStatus}
|
|
1331
1335
|
*/
|
|
1332
1336
|
export declare function createRetentionEventStatusFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
1333
1337
|
/**
|
|
1334
1338
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
1335
1339
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
1336
|
-
* @returns
|
|
1340
|
+
* @returns {RetentionEventTypeCollectionResponse}
|
|
1337
1341
|
*/
|
|
1338
1342
|
export declare function createRetentionEventTypeCollectionResponseFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
1339
1343
|
/**
|
|
1340
1344
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
1341
1345
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
1342
|
-
* @returns
|
|
1346
|
+
* @returns {RetentionEventType}
|
|
1343
1347
|
*/
|
|
1344
1348
|
export declare function createRetentionEventTypeFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
1345
1349
|
/**
|
|
1346
1350
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
1347
1351
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
1348
|
-
* @returns
|
|
1352
|
+
* @returns {SasTokenEvidence}
|
|
1349
1353
|
*/
|
|
1350
1354
|
export declare function createSasTokenEvidenceFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
1351
1355
|
/**
|
|
1352
1356
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
1353
1357
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
1354
|
-
* @returns
|
|
1358
|
+
* @returns {Search}
|
|
1355
1359
|
*/
|
|
1356
1360
|
export declare function createSearchFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
1357
1361
|
/**
|
|
1358
1362
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
1359
1363
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
1360
|
-
* @returns
|
|
1364
|
+
* @returns {SecurityGroupEvidence}
|
|
1361
1365
|
*/
|
|
1362
1366
|
export declare function createSecurityGroupEvidenceFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
1363
1367
|
/**
|
|
1364
1368
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
1365
1369
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
1366
|
-
* @returns
|
|
1370
|
+
* @returns {ServicePrincipalEvidence}
|
|
1367
1371
|
*/
|
|
1368
1372
|
export declare function createServicePrincipalEvidenceFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
1369
1373
|
/**
|
|
1370
1374
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
1371
1375
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
1372
|
-
* @returns
|
|
1376
|
+
* @returns {SinglePropertySchema}
|
|
1373
1377
|
*/
|
|
1374
1378
|
export declare function createSinglePropertySchemaFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
1375
1379
|
/**
|
|
1376
1380
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
1377
1381
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
1378
|
-
* @returns
|
|
1382
|
+
* @returns {SiteSourceCollectionResponse}
|
|
1379
1383
|
*/
|
|
1380
1384
|
export declare function createSiteSourceCollectionResponseFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
1381
1385
|
/**
|
|
1382
1386
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
1383
1387
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
1384
|
-
* @returns
|
|
1388
|
+
* @returns {SiteSource}
|
|
1385
1389
|
*/
|
|
1386
1390
|
export declare function createSiteSourceFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
1387
1391
|
/**
|
|
1388
1392
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
1389
1393
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
1390
|
-
* @returns
|
|
1394
|
+
* @returns {SslCertificateCollectionResponse}
|
|
1391
1395
|
*/
|
|
1392
1396
|
export declare function createSslCertificateCollectionResponseFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
1393
1397
|
/**
|
|
1394
1398
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
1395
1399
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
1396
|
-
* @returns
|
|
1400
|
+
* @returns {SslCertificateEntity}
|
|
1397
1401
|
*/
|
|
1398
1402
|
export declare function createSslCertificateEntityFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
1399
1403
|
/**
|
|
1400
1404
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
1401
1405
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
1402
|
-
* @returns
|
|
1406
|
+
* @returns {SslCertificate}
|
|
1403
1407
|
*/
|
|
1404
1408
|
export declare function createSslCertificateFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
1405
1409
|
/**
|
|
1406
1410
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
1407
1411
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
1408
|
-
* @returns
|
|
1412
|
+
* @returns {SubdomainCollectionResponse}
|
|
1409
1413
|
*/
|
|
1410
1414
|
export declare function createSubdomainCollectionResponseFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
1411
1415
|
/**
|
|
1412
1416
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
1413
1417
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
1414
|
-
* @returns
|
|
1418
|
+
* @returns {Subdomain}
|
|
1415
1419
|
*/
|
|
1416
1420
|
export declare function createSubdomainFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
1417
1421
|
/**
|
|
1418
1422
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
1419
1423
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
1420
|
-
* @returns
|
|
1424
|
+
* @returns {SubmissionMailEvidence}
|
|
1421
1425
|
*/
|
|
1422
1426
|
export declare function createSubmissionMailEvidenceFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
1423
1427
|
/**
|
|
1424
1428
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
1425
1429
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
1426
|
-
* @returns
|
|
1430
|
+
* @returns {Tag}
|
|
1427
1431
|
*/
|
|
1428
1432
|
export declare function createTagFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
1429
1433
|
/**
|
|
1430
1434
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
1431
1435
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
1432
|
-
* @returns
|
|
1436
|
+
* @returns {ThreatIntelligence}
|
|
1433
1437
|
*/
|
|
1434
1438
|
export declare function createThreatIntelligenceFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
1435
1439
|
/**
|
|
1436
1440
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
1437
1441
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
1438
|
-
* @returns
|
|
1442
|
+
* @returns {TopicModelingSettings}
|
|
1439
1443
|
*/
|
|
1440
1444
|
export declare function createTopicModelingSettingsFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
1441
1445
|
/**
|
|
1442
1446
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
1443
1447
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
1444
|
-
* @returns
|
|
1448
|
+
* @returns {TriggersRoot}
|
|
1445
1449
|
*/
|
|
1446
1450
|
export declare function createTriggersRootFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
1447
1451
|
/**
|
|
1448
1452
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
1449
1453
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
1450
|
-
* @returns
|
|
1454
|
+
* @returns {TriggerTypesRoot}
|
|
1451
1455
|
*/
|
|
1452
1456
|
export declare function createTriggerTypesRootFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
1453
1457
|
/**
|
|
1454
1458
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
1455
1459
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
1456
|
-
* @returns
|
|
1460
|
+
* @returns {UnclassifiedArtifact}
|
|
1457
1461
|
*/
|
|
1458
1462
|
export declare function createUnclassifiedArtifactFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
1459
1463
|
/**
|
|
1460
1464
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
1461
1465
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
1462
|
-
* @returns
|
|
1466
|
+
* @returns {UnifiedGroupSourceCollectionResponse}
|
|
1463
1467
|
*/
|
|
1464
1468
|
export declare function createUnifiedGroupSourceCollectionResponseFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
1465
1469
|
/**
|
|
1466
1470
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
1467
1471
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
1468
|
-
* @returns
|
|
1472
|
+
* @returns {UnifiedGroupSource}
|
|
1469
1473
|
*/
|
|
1470
1474
|
export declare function createUnifiedGroupSourceFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
1471
1475
|
/**
|
|
1472
1476
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
1473
1477
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
1474
|
-
* @returns
|
|
1478
|
+
* @returns {UrlEvidence}
|
|
1475
1479
|
*/
|
|
1476
1480
|
export declare function createUrlEvidenceFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
1477
1481
|
/**
|
|
1478
1482
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
1479
1483
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
1480
|
-
* @returns
|
|
1484
|
+
* @returns {UserAccount}
|
|
1481
1485
|
*/
|
|
1482
1486
|
export declare function createUserAccountFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
1483
1487
|
/**
|
|
1484
1488
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
1485
1489
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
1486
|
-
* @returns
|
|
1490
|
+
* @returns {UserEvidence}
|
|
1487
1491
|
*/
|
|
1488
1492
|
export declare function createUserEvidenceFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
1489
1493
|
/**
|
|
1490
1494
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
1491
1495
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
1492
|
-
* @returns
|
|
1496
|
+
* @returns {UserSourceCollectionResponse}
|
|
1493
1497
|
*/
|
|
1494
1498
|
export declare function createUserSourceCollectionResponseFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
1495
1499
|
/**
|
|
1496
1500
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
1497
1501
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
1498
|
-
* @returns
|
|
1502
|
+
* @returns {UserSource}
|
|
1499
1503
|
*/
|
|
1500
1504
|
export declare function createUserSourceFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
1501
1505
|
/**
|
|
1502
1506
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
1503
1507
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
1504
|
-
* @returns
|
|
1508
|
+
* @returns {VmMetadata}
|
|
1505
1509
|
*/
|
|
1506
1510
|
export declare function createVmMetadataFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
1507
1511
|
/**
|
|
1508
1512
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
1509
1513
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
1510
|
-
* @returns
|
|
1514
|
+
* @returns {VulnerabilityCollectionResponse}
|
|
1511
1515
|
*/
|
|
1512
1516
|
export declare function createVulnerabilityCollectionResponseFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
1513
1517
|
/**
|
|
1514
1518
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
1515
1519
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
1516
|
-
* @returns
|
|
1520
|
+
* @returns {VulnerabilityComponentCollectionResponse}
|
|
1517
1521
|
*/
|
|
1518
1522
|
export declare function createVulnerabilityComponentCollectionResponseFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
1519
1523
|
/**
|
|
1520
1524
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
1521
1525
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
1522
|
-
* @returns
|
|
1526
|
+
* @returns {VulnerabilityComponent}
|
|
1523
1527
|
*/
|
|
1524
1528
|
export declare function createVulnerabilityComponentFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
1525
1529
|
/**
|
|
1526
1530
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
1527
1531
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
1528
|
-
* @returns
|
|
1532
|
+
* @returns {Vulnerability}
|
|
1529
1533
|
*/
|
|
1530
1534
|
export declare function createVulnerabilityFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
1531
1535
|
/**
|
|
1532
1536
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
1533
1537
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
1534
|
-
* @returns
|
|
1538
|
+
* @returns {WhoisBaseRecord}
|
|
1535
1539
|
*/
|
|
1536
1540
|
export declare function createWhoisBaseRecordFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
1537
1541
|
/**
|
|
1538
1542
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
1539
1543
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
1540
|
-
* @returns
|
|
1544
|
+
* @returns {WhoisContact}
|
|
1541
1545
|
*/
|
|
1542
1546
|
export declare function createWhoisContactFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
1543
1547
|
/**
|
|
1544
1548
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
1545
1549
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
1546
|
-
* @returns
|
|
1550
|
+
* @returns {WhoisHistoryRecordCollectionResponse}
|
|
1547
1551
|
*/
|
|
1548
1552
|
export declare function createWhoisHistoryRecordCollectionResponseFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
1549
1553
|
/**
|
|
1550
1554
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
1551
1555
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
1552
|
-
* @returns
|
|
1556
|
+
* @returns {WhoisHistoryRecord}
|
|
1553
1557
|
*/
|
|
1554
1558
|
export declare function createWhoisHistoryRecordFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
1555
1559
|
/**
|
|
1556
1560
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
1557
1561
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
1558
|
-
* @returns
|
|
1562
|
+
* @returns {WhoisNameserver}
|
|
1559
1563
|
*/
|
|
1560
1564
|
export declare function createWhoisNameserverFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
1561
1565
|
/**
|
|
1562
1566
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
1563
1567
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
1564
|
-
* @returns
|
|
1568
|
+
* @returns {WhoisRecordCollectionResponse}
|
|
1565
1569
|
*/
|
|
1566
1570
|
export declare function createWhoisRecordCollectionResponseFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
1567
1571
|
/**
|
|
1568
1572
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
1569
1573
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
1570
|
-
* @returns
|
|
1574
|
+
* @returns {WhoisRecord}
|
|
1571
1575
|
*/
|
|
1572
1576
|
export declare function createWhoisRecordFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
1573
1577
|
export interface CvssSummary extends AdditionalDataHolder, BackedModel, Parsable {
|
|
@@ -1666,832 +1670,832 @@ export type DataSourceScopes = (typeof DataSourceScopesObject)[keyof typeof Data
|
|
|
1666
1670
|
export type DefenderAvStatus = (typeof DefenderAvStatusObject)[keyof typeof DefenderAvStatusObject];
|
|
1667
1671
|
/**
|
|
1668
1672
|
* The deserialization information for the current model
|
|
1669
|
-
* @returns
|
|
1673
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
1670
1674
|
*/
|
|
1671
1675
|
export declare function deserializeIntoAlert(alert?: Partial<Alert> | undefined): Record<string, (node: ParseNode) => void>;
|
|
1672
1676
|
/**
|
|
1673
1677
|
* The deserialization information for the current model
|
|
1674
|
-
* @returns
|
|
1678
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
1675
1679
|
*/
|
|
1676
1680
|
export declare function deserializeIntoAlertCollectionResponse(alertCollectionResponse?: Partial<AlertCollectionResponse> | undefined): Record<string, (node: ParseNode) => void>;
|
|
1677
1681
|
/**
|
|
1678
1682
|
* The deserialization information for the current model
|
|
1679
|
-
* @returns
|
|
1683
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
1680
1684
|
*/
|
|
1681
1685
|
export declare function deserializeIntoAlertComment(alertComment?: Partial<AlertComment> | undefined): Record<string, (node: ParseNode) => void>;
|
|
1682
1686
|
/**
|
|
1683
1687
|
* The deserialization information for the current model
|
|
1684
|
-
* @returns
|
|
1688
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
1685
1689
|
*/
|
|
1686
1690
|
export declare function deserializeIntoAlertEvidence(alertEvidence?: Partial<AlertEvidence> | undefined): Record<string, (node: ParseNode) => void>;
|
|
1687
1691
|
/**
|
|
1688
1692
|
* The deserialization information for the current model
|
|
1689
|
-
* @returns
|
|
1693
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
1690
1694
|
*/
|
|
1691
1695
|
export declare function deserializeIntoAmazonResourceEvidence(amazonResourceEvidence?: Partial<AmazonResourceEvidence> | undefined): Record<string, (node: ParseNode) => void>;
|
|
1692
1696
|
/**
|
|
1693
1697
|
* The deserialization information for the current model
|
|
1694
|
-
* @returns
|
|
1698
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
1695
1699
|
*/
|
|
1696
1700
|
export declare function deserializeIntoAnalyzedMessageEvidence(analyzedMessageEvidence?: Partial<AnalyzedMessageEvidence> | undefined): Record<string, (node: ParseNode) => void>;
|
|
1697
1701
|
/**
|
|
1698
1702
|
* The deserialization information for the current model
|
|
1699
|
-
* @returns
|
|
1703
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
1700
1704
|
*/
|
|
1701
1705
|
export declare function deserializeIntoArticle(article?: Partial<Article> | undefined): Record<string, (node: ParseNode) => void>;
|
|
1702
1706
|
/**
|
|
1703
1707
|
* The deserialization information for the current model
|
|
1704
|
-
* @returns
|
|
1708
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
1705
1709
|
*/
|
|
1706
1710
|
export declare function deserializeIntoArticleCollectionResponse(articleCollectionResponse?: Partial<ArticleCollectionResponse> | undefined): Record<string, (node: ParseNode) => void>;
|
|
1707
1711
|
/**
|
|
1708
1712
|
* The deserialization information for the current model
|
|
1709
|
-
* @returns
|
|
1713
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
1710
1714
|
*/
|
|
1711
1715
|
export declare function deserializeIntoArticleIndicator(articleIndicator?: Partial<ArticleIndicator> | undefined): Record<string, (node: ParseNode) => void>;
|
|
1712
1716
|
/**
|
|
1713
1717
|
* The deserialization information for the current model
|
|
1714
|
-
* @returns
|
|
1718
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
1715
1719
|
*/
|
|
1716
1720
|
export declare function deserializeIntoArticleIndicatorCollectionResponse(articleIndicatorCollectionResponse?: Partial<ArticleIndicatorCollectionResponse> | undefined): Record<string, (node: ParseNode) => void>;
|
|
1717
1721
|
/**
|
|
1718
1722
|
* The deserialization information for the current model
|
|
1719
|
-
* @returns
|
|
1723
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
1720
1724
|
*/
|
|
1721
1725
|
export declare function deserializeIntoArtifact(artifact?: Partial<Artifact> | undefined): Record<string, (node: ParseNode) => void>;
|
|
1722
1726
|
/**
|
|
1723
1727
|
* The deserialization information for the current model
|
|
1724
|
-
* @returns
|
|
1728
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
1725
1729
|
*/
|
|
1726
1730
|
export declare function deserializeIntoAutonomousSystem(autonomousSystem?: Partial<AutonomousSystem> | undefined): Record<string, (node: ParseNode) => void>;
|
|
1727
1731
|
/**
|
|
1728
1732
|
* The deserialization information for the current model
|
|
1729
|
-
* @returns
|
|
1733
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
1730
1734
|
*/
|
|
1731
1735
|
export declare function deserializeIntoAzureResourceEvidence(azureResourceEvidence?: Partial<AzureResourceEvidence> | undefined): Record<string, (node: ParseNode) => void>;
|
|
1732
1736
|
/**
|
|
1733
1737
|
* The deserialization information for the current model
|
|
1734
|
-
* @returns
|
|
1738
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
1735
1739
|
*/
|
|
1736
1740
|
export declare function deserializeIntoBlobContainerEvidence(blobContainerEvidence?: Partial<BlobContainerEvidence> | undefined): Record<string, (node: ParseNode) => void>;
|
|
1737
1741
|
/**
|
|
1738
1742
|
* The deserialization information for the current model
|
|
1739
|
-
* @returns
|
|
1743
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
1740
1744
|
*/
|
|
1741
1745
|
export declare function deserializeIntoBlobEvidence(blobEvidence?: Partial<BlobEvidence> | undefined): Record<string, (node: ParseNode) => void>;
|
|
1742
1746
|
/**
|
|
1743
1747
|
* The deserialization information for the current model
|
|
1744
|
-
* @returns
|
|
1748
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
1745
1749
|
*/
|
|
1746
1750
|
export declare function deserializeIntoCaseEscaped(caseEscaped?: Partial<CaseEscaped> | undefined): Record<string, (node: ParseNode) => void>;
|
|
1747
1751
|
/**
|
|
1748
1752
|
* The deserialization information for the current model
|
|
1749
|
-
* @returns
|
|
1753
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
1750
1754
|
*/
|
|
1751
1755
|
export declare function deserializeIntoCaseOperation(caseOperation?: Partial<CaseOperation> | undefined): Record<string, (node: ParseNode) => void>;
|
|
1752
1756
|
/**
|
|
1753
1757
|
* The deserialization information for the current model
|
|
1754
|
-
* @returns
|
|
1758
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
1755
1759
|
*/
|
|
1756
1760
|
export declare function deserializeIntoCaseOperationCollectionResponse(caseOperationCollectionResponse?: Partial<CaseOperationCollectionResponse> | undefined): Record<string, (node: ParseNode) => void>;
|
|
1757
1761
|
/**
|
|
1758
1762
|
* The deserialization information for the current model
|
|
1759
|
-
* @returns
|
|
1763
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
1760
1764
|
*/
|
|
1761
1765
|
export declare function deserializeIntoCasesRoot(casesRoot?: Partial<CasesRoot> | undefined): Record<string, (node: ParseNode) => void>;
|
|
1762
1766
|
/**
|
|
1763
1767
|
* The deserialization information for the current model
|
|
1764
|
-
* @returns
|
|
1768
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
1765
1769
|
*/
|
|
1766
1770
|
export declare function deserializeIntoCloudApplicationEvidence(cloudApplicationEvidence?: Partial<CloudApplicationEvidence> | undefined): Record<string, (node: ParseNode) => void>;
|
|
1767
1771
|
/**
|
|
1768
1772
|
* The deserialization information for the current model
|
|
1769
|
-
* @returns
|
|
1773
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
1770
1774
|
*/
|
|
1771
1775
|
export declare function deserializeIntoContainerEvidence(containerEvidence?: Partial<ContainerEvidence> | undefined): Record<string, (node: ParseNode) => void>;
|
|
1772
1776
|
/**
|
|
1773
1777
|
* The deserialization information for the current model
|
|
1774
|
-
* @returns
|
|
1778
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
1775
1779
|
*/
|
|
1776
1780
|
export declare function deserializeIntoContainerImageEvidence(containerImageEvidence?: Partial<ContainerImageEvidence> | undefined): Record<string, (node: ParseNode) => void>;
|
|
1777
1781
|
/**
|
|
1778
1782
|
* The deserialization information for the current model
|
|
1779
|
-
* @returns
|
|
1783
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
1780
1784
|
*/
|
|
1781
1785
|
export declare function deserializeIntoContainerRegistryEvidence(containerRegistryEvidence?: Partial<ContainerRegistryEvidence> | undefined): Record<string, (node: ParseNode) => void>;
|
|
1782
1786
|
/**
|
|
1783
1787
|
* The deserialization information for the current model
|
|
1784
|
-
* @returns
|
|
1788
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
1785
1789
|
*/
|
|
1786
1790
|
export declare function deserializeIntoCvssSummary(cvssSummary?: Partial<CvssSummary> | undefined): Record<string, (node: ParseNode) => void>;
|
|
1787
1791
|
/**
|
|
1788
1792
|
* The deserialization information for the current model
|
|
1789
|
-
* @returns
|
|
1793
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
1790
1794
|
*/
|
|
1791
1795
|
export declare function deserializeIntoDataSet(dataSet?: Partial<DataSet> | undefined): Record<string, (node: ParseNode) => void>;
|
|
1792
1796
|
/**
|
|
1793
1797
|
* The deserialization information for the current model
|
|
1794
|
-
* @returns
|
|
1798
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
1795
1799
|
*/
|
|
1796
1800
|
export declare function deserializeIntoDataSource(dataSource?: Partial<DataSource> | undefined): Record<string, (node: ParseNode) => void>;
|
|
1797
1801
|
/**
|
|
1798
1802
|
* The deserialization information for the current model
|
|
1799
|
-
* @returns
|
|
1803
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
1800
1804
|
*/
|
|
1801
1805
|
export declare function deserializeIntoDataSourceCollectionResponse(dataSourceCollectionResponse?: Partial<DataSourceCollectionResponse> | undefined): Record<string, (node: ParseNode) => void>;
|
|
1802
1806
|
/**
|
|
1803
1807
|
* The deserialization information for the current model
|
|
1804
|
-
* @returns
|
|
1808
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
1805
1809
|
*/
|
|
1806
1810
|
export declare function deserializeIntoDataSourceContainer(dataSourceContainer?: Partial<DataSourceContainer> | undefined): Record<string, (node: ParseNode) => void>;
|
|
1807
1811
|
/**
|
|
1808
1812
|
* The deserialization information for the current model
|
|
1809
|
-
* @returns
|
|
1813
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
1810
1814
|
*/
|
|
1811
1815
|
export declare function deserializeIntoDeviceEvidence(deviceEvidence?: Partial<DeviceEvidence> | undefined): Record<string, (node: ParseNode) => void>;
|
|
1812
1816
|
/**
|
|
1813
1817
|
* The deserialization information for the current model
|
|
1814
|
-
* @returns
|
|
1818
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
1815
1819
|
*/
|
|
1816
1820
|
export declare function deserializeIntoDictionary(dictionary?: Partial<Dictionary> | undefined): Record<string, (node: ParseNode) => void>;
|
|
1817
1821
|
/**
|
|
1818
1822
|
* The deserialization information for the current model
|
|
1819
|
-
* @returns
|
|
1823
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
1820
1824
|
*/
|
|
1821
1825
|
export declare function deserializeIntoDnsEvidence(dnsEvidence?: Partial<DnsEvidence> | undefined): Record<string, (node: ParseNode) => void>;
|
|
1822
1826
|
/**
|
|
1823
1827
|
* The deserialization information for the current model
|
|
1824
|
-
* @returns
|
|
1828
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
1825
1829
|
*/
|
|
1826
1830
|
export declare function deserializeIntoEdiscoveryAddToReviewSetOperation(ediscoveryAddToReviewSetOperation?: Partial<EdiscoveryAddToReviewSetOperation> | undefined): Record<string, (node: ParseNode) => void>;
|
|
1827
1831
|
/**
|
|
1828
1832
|
* The deserialization information for the current model
|
|
1829
|
-
* @returns
|
|
1833
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
1830
1834
|
*/
|
|
1831
1835
|
export declare function deserializeIntoEdiscoveryCase(ediscoveryCase?: Partial<EdiscoveryCase> | undefined): Record<string, (node: ParseNode) => void>;
|
|
1832
1836
|
/**
|
|
1833
1837
|
* The deserialization information for the current model
|
|
1834
|
-
* @returns
|
|
1838
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
1835
1839
|
*/
|
|
1836
1840
|
export declare function deserializeIntoEdiscoveryCaseCollectionResponse(ediscoveryCaseCollectionResponse?: Partial<EdiscoveryCaseCollectionResponse> | undefined): Record<string, (node: ParseNode) => void>;
|
|
1837
1841
|
/**
|
|
1838
1842
|
* The deserialization information for the current model
|
|
1839
|
-
* @returns
|
|
1843
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
1840
1844
|
*/
|
|
1841
1845
|
export declare function deserializeIntoEdiscoveryCaseSettings(ediscoveryCaseSettings?: Partial<EdiscoveryCaseSettings> | undefined): Record<string, (node: ParseNode) => void>;
|
|
1842
1846
|
/**
|
|
1843
1847
|
* The deserialization information for the current model
|
|
1844
|
-
* @returns
|
|
1848
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
1845
1849
|
*/
|
|
1846
1850
|
export declare function deserializeIntoEdiscoveryCustodian(ediscoveryCustodian?: Partial<EdiscoveryCustodian> | undefined): Record<string, (node: ParseNode) => void>;
|
|
1847
1851
|
/**
|
|
1848
1852
|
* The deserialization information for the current model
|
|
1849
|
-
* @returns
|
|
1853
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
1850
1854
|
*/
|
|
1851
1855
|
export declare function deserializeIntoEdiscoveryCustodianCollectionResponse(ediscoveryCustodianCollectionResponse?: Partial<EdiscoveryCustodianCollectionResponse> | undefined): Record<string, (node: ParseNode) => void>;
|
|
1852
1856
|
/**
|
|
1853
1857
|
* The deserialization information for the current model
|
|
1854
|
-
* @returns
|
|
1858
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
1855
1859
|
*/
|
|
1856
1860
|
export declare function deserializeIntoEdiscoveryEstimateOperation(ediscoveryEstimateOperation?: Partial<EdiscoveryEstimateOperation> | undefined): Record<string, (node: ParseNode) => void>;
|
|
1857
1861
|
/**
|
|
1858
1862
|
* The deserialization information for the current model
|
|
1859
|
-
* @returns
|
|
1863
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
1860
1864
|
*/
|
|
1861
1865
|
export declare function deserializeIntoEdiscoveryExportOperation(ediscoveryExportOperation?: Partial<EdiscoveryExportOperation> | undefined): Record<string, (node: ParseNode) => void>;
|
|
1862
1866
|
/**
|
|
1863
1867
|
* The deserialization information for the current model
|
|
1864
|
-
* @returns
|
|
1868
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
1865
1869
|
*/
|
|
1866
1870
|
export declare function deserializeIntoEdiscoveryHoldOperation(ediscoveryHoldOperation?: Partial<EdiscoveryHoldOperation> | undefined): Record<string, (node: ParseNode) => void>;
|
|
1867
1871
|
/**
|
|
1868
1872
|
* The deserialization information for the current model
|
|
1869
|
-
* @returns
|
|
1873
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
1870
1874
|
*/
|
|
1871
1875
|
export declare function deserializeIntoEdiscoveryIndexOperation(ediscoveryIndexOperation?: Partial<EdiscoveryIndexOperation> | undefined): Record<string, (node: ParseNode) => void>;
|
|
1872
1876
|
/**
|
|
1873
1877
|
* The deserialization information for the current model
|
|
1874
|
-
* @returns
|
|
1878
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
1875
1879
|
*/
|
|
1876
1880
|
export declare function deserializeIntoEdiscoveryNoncustodialDataSource(ediscoveryNoncustodialDataSource?: Partial<EdiscoveryNoncustodialDataSource> | undefined): Record<string, (node: ParseNode) => void>;
|
|
1877
1881
|
/**
|
|
1878
1882
|
* The deserialization information for the current model
|
|
1879
|
-
* @returns
|
|
1883
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
1880
1884
|
*/
|
|
1881
1885
|
export declare function deserializeIntoEdiscoveryNoncustodialDataSourceCollectionResponse(ediscoveryNoncustodialDataSourceCollectionResponse?: Partial<EdiscoveryNoncustodialDataSourceCollectionResponse> | undefined): Record<string, (node: ParseNode) => void>;
|
|
1882
1886
|
/**
|
|
1883
1887
|
* The deserialization information for the current model
|
|
1884
|
-
* @returns
|
|
1888
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
1885
1889
|
*/
|
|
1886
1890
|
export declare function deserializeIntoEdiscoveryPurgeDataOperation(ediscoveryPurgeDataOperation?: Partial<EdiscoveryPurgeDataOperation> | undefined): Record<string, (node: ParseNode) => void>;
|
|
1887
1891
|
/**
|
|
1888
1892
|
* The deserialization information for the current model
|
|
1889
|
-
* @returns
|
|
1893
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
1890
1894
|
*/
|
|
1891
1895
|
export declare function deserializeIntoEdiscoveryReviewSet(ediscoveryReviewSet?: Partial<EdiscoveryReviewSet> | undefined): Record<string, (node: ParseNode) => void>;
|
|
1892
1896
|
/**
|
|
1893
1897
|
* The deserialization information for the current model
|
|
1894
|
-
* @returns
|
|
1898
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
1895
1899
|
*/
|
|
1896
1900
|
export declare function deserializeIntoEdiscoveryReviewSetCollectionResponse(ediscoveryReviewSetCollectionResponse?: Partial<EdiscoveryReviewSetCollectionResponse> | undefined): Record<string, (node: ParseNode) => void>;
|
|
1897
1901
|
/**
|
|
1898
1902
|
* The deserialization information for the current model
|
|
1899
|
-
* @returns
|
|
1903
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
1900
1904
|
*/
|
|
1901
1905
|
export declare function deserializeIntoEdiscoveryReviewSetQuery(ediscoveryReviewSetQuery?: Partial<EdiscoveryReviewSetQuery> | undefined): Record<string, (node: ParseNode) => void>;
|
|
1902
1906
|
/**
|
|
1903
1907
|
* The deserialization information for the current model
|
|
1904
|
-
* @returns
|
|
1908
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
1905
1909
|
*/
|
|
1906
1910
|
export declare function deserializeIntoEdiscoveryReviewSetQueryCollectionResponse(ediscoveryReviewSetQueryCollectionResponse?: Partial<EdiscoveryReviewSetQueryCollectionResponse> | undefined): Record<string, (node: ParseNode) => void>;
|
|
1907
1911
|
/**
|
|
1908
1912
|
* The deserialization information for the current model
|
|
1909
|
-
* @returns
|
|
1913
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
1910
1914
|
*/
|
|
1911
1915
|
export declare function deserializeIntoEdiscoveryReviewTag(ediscoveryReviewTag?: Partial<EdiscoveryReviewTag> | undefined): Record<string, (node: ParseNode) => void>;
|
|
1912
1916
|
/**
|
|
1913
1917
|
* The deserialization information for the current model
|
|
1914
|
-
* @returns
|
|
1918
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
1915
1919
|
*/
|
|
1916
1920
|
export declare function deserializeIntoEdiscoveryReviewTagCollectionResponse(ediscoveryReviewTagCollectionResponse?: Partial<EdiscoveryReviewTagCollectionResponse> | undefined): Record<string, (node: ParseNode) => void>;
|
|
1917
1921
|
/**
|
|
1918
1922
|
* The deserialization information for the current model
|
|
1919
|
-
* @returns
|
|
1923
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
1920
1924
|
*/
|
|
1921
1925
|
export declare function deserializeIntoEdiscoverySearch(ediscoverySearch?: Partial<EdiscoverySearch> | undefined): Record<string, (node: ParseNode) => void>;
|
|
1922
1926
|
/**
|
|
1923
1927
|
* The deserialization information for the current model
|
|
1924
|
-
* @returns
|
|
1928
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
1925
1929
|
*/
|
|
1926
1930
|
export declare function deserializeIntoEdiscoverySearchCollectionResponse(ediscoverySearchCollectionResponse?: Partial<EdiscoverySearchCollectionResponse> | undefined): Record<string, (node: ParseNode) => void>;
|
|
1927
1931
|
/**
|
|
1928
1932
|
* The deserialization information for the current model
|
|
1929
|
-
* @returns
|
|
1933
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
1930
1934
|
*/
|
|
1931
1935
|
export declare function deserializeIntoEdiscoveryTagOperation(ediscoveryTagOperation?: Partial<EdiscoveryTagOperation> | undefined): Record<string, (node: ParseNode) => void>;
|
|
1932
1936
|
/**
|
|
1933
1937
|
* The deserialization information for the current model
|
|
1934
|
-
* @returns
|
|
1938
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
1935
1939
|
*/
|
|
1936
1940
|
export declare function deserializeIntoEmailSender(emailSender?: Partial<EmailSender> | undefined): Record<string, (node: ParseNode) => void>;
|
|
1937
1941
|
/**
|
|
1938
1942
|
* The deserialization information for the current model
|
|
1939
|
-
* @returns
|
|
1943
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
1940
1944
|
*/
|
|
1941
1945
|
export declare function deserializeIntoEventPropagationResult(eventPropagationResult?: Partial<EventPropagationResult> | undefined): Record<string, (node: ParseNode) => void>;
|
|
1942
1946
|
/**
|
|
1943
1947
|
* The deserialization information for the current model
|
|
1944
|
-
* @returns
|
|
1948
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
1945
1949
|
*/
|
|
1946
1950
|
export declare function deserializeIntoEventQuery(eventQuery?: Partial<EventQuery> | undefined): Record<string, (node: ParseNode) => void>;
|
|
1947
1951
|
/**
|
|
1948
1952
|
* The deserialization information for the current model
|
|
1949
|
-
* @returns
|
|
1953
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
1950
1954
|
*/
|
|
1951
1955
|
export declare function deserializeIntoExportFileMetadata(exportFileMetadata?: Partial<ExportFileMetadata> | undefined): Record<string, (node: ParseNode) => void>;
|
|
1952
1956
|
/**
|
|
1953
1957
|
* The deserialization information for the current model
|
|
1954
|
-
* @returns
|
|
1958
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
1955
1959
|
*/
|
|
1956
1960
|
export declare function deserializeIntoFileDetails(fileDetails?: Partial<FileDetails> | undefined): Record<string, (node: ParseNode) => void>;
|
|
1957
1961
|
/**
|
|
1958
1962
|
* The deserialization information for the current model
|
|
1959
|
-
* @returns
|
|
1963
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
1960
1964
|
*/
|
|
1961
1965
|
export declare function deserializeIntoFileEvidence(fileEvidence?: Partial<FileEvidence> | undefined): Record<string, (node: ParseNode) => void>;
|
|
1962
1966
|
/**
|
|
1963
1967
|
* The deserialization information for the current model
|
|
1964
|
-
* @returns
|
|
1968
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
1965
1969
|
*/
|
|
1966
1970
|
export declare function deserializeIntoFileHash(fileHash?: Partial<FileHash> | undefined): Record<string, (node: ParseNode) => void>;
|
|
1967
1971
|
/**
|
|
1968
1972
|
* The deserialization information for the current model
|
|
1969
|
-
* @returns
|
|
1973
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
1970
1974
|
*/
|
|
1971
1975
|
export declare function deserializeIntoFileHashEvidence(fileHashEvidence?: Partial<FileHashEvidence> | undefined): Record<string, (node: ParseNode) => void>;
|
|
1972
1976
|
/**
|
|
1973
1977
|
* The deserialization information for the current model
|
|
1974
|
-
* @returns
|
|
1978
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
1975
1979
|
*/
|
|
1976
1980
|
export declare function deserializeIntoFormattedContent(formattedContent?: Partial<FormattedContent> | undefined): Record<string, (node: ParseNode) => void>;
|
|
1977
1981
|
/**
|
|
1978
1982
|
* The deserialization information for the current model
|
|
1979
|
-
* @returns
|
|
1983
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
1980
1984
|
*/
|
|
1981
1985
|
export declare function deserializeIntoGitHubOrganizationEvidence(gitHubOrganizationEvidence?: Partial<GitHubOrganizationEvidence> | undefined): Record<string, (node: ParseNode) => void>;
|
|
1982
1986
|
/**
|
|
1983
1987
|
* The deserialization information for the current model
|
|
1984
|
-
* @returns
|
|
1988
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
1985
1989
|
*/
|
|
1986
1990
|
export declare function deserializeIntoGitHubRepoEvidence(gitHubRepoEvidence?: Partial<GitHubRepoEvidence> | undefined): Record<string, (node: ParseNode) => void>;
|
|
1987
1991
|
/**
|
|
1988
1992
|
* The deserialization information for the current model
|
|
1989
|
-
* @returns
|
|
1993
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
1990
1994
|
*/
|
|
1991
1995
|
export declare function deserializeIntoGitHubUserEvidence(gitHubUserEvidence?: Partial<GitHubUserEvidence> | undefined): Record<string, (node: ParseNode) => void>;
|
|
1992
1996
|
/**
|
|
1993
1997
|
* The deserialization information for the current model
|
|
1994
|
-
* @returns
|
|
1998
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
1995
1999
|
*/
|
|
1996
2000
|
export declare function deserializeIntoGoogleCloudResourceEvidence(googleCloudResourceEvidence?: Partial<GoogleCloudResourceEvidence> | undefined): Record<string, (node: ParseNode) => void>;
|
|
1997
2001
|
/**
|
|
1998
2002
|
* The deserialization information for the current model
|
|
1999
|
-
* @returns
|
|
2003
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
2000
2004
|
*/
|
|
2001
2005
|
export declare function deserializeIntoHost(host?: Partial<Host> | undefined): Record<string, (node: ParseNode) => void>;
|
|
2002
2006
|
/**
|
|
2003
2007
|
* The deserialization information for the current model
|
|
2004
|
-
* @returns
|
|
2008
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
2005
2009
|
*/
|
|
2006
2010
|
export declare function deserializeIntoHostCollectionResponse(hostCollectionResponse?: Partial<HostCollectionResponse> | undefined): Record<string, (node: ParseNode) => void>;
|
|
2007
2011
|
/**
|
|
2008
2012
|
* The deserialization information for the current model
|
|
2009
|
-
* @returns
|
|
2013
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
2010
2014
|
*/
|
|
2011
2015
|
export declare function deserializeIntoHostComponent(hostComponent?: Partial<HostComponent> | undefined): Record<string, (node: ParseNode) => void>;
|
|
2012
2016
|
/**
|
|
2013
2017
|
* The deserialization information for the current model
|
|
2014
|
-
* @returns
|
|
2018
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
2015
2019
|
*/
|
|
2016
2020
|
export declare function deserializeIntoHostComponentCollectionResponse(hostComponentCollectionResponse?: Partial<HostComponentCollectionResponse> | undefined): Record<string, (node: ParseNode) => void>;
|
|
2017
2021
|
/**
|
|
2018
2022
|
* The deserialization information for the current model
|
|
2019
|
-
* @returns
|
|
2023
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
2020
2024
|
*/
|
|
2021
2025
|
export declare function deserializeIntoHostCookie(hostCookie?: Partial<HostCookie> | undefined): Record<string, (node: ParseNode) => void>;
|
|
2022
2026
|
/**
|
|
2023
2027
|
* The deserialization information for the current model
|
|
2024
|
-
* @returns
|
|
2028
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
2025
2029
|
*/
|
|
2026
2030
|
export declare function deserializeIntoHostCookieCollectionResponse(hostCookieCollectionResponse?: Partial<HostCookieCollectionResponse> | undefined): Record<string, (node: ParseNode) => void>;
|
|
2027
2031
|
/**
|
|
2028
2032
|
* The deserialization information for the current model
|
|
2029
|
-
* @returns
|
|
2033
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
2030
2034
|
*/
|
|
2031
2035
|
export declare function deserializeIntoHostLogonSessionEvidence(hostLogonSessionEvidence?: Partial<HostLogonSessionEvidence> | undefined): Record<string, (node: ParseNode) => void>;
|
|
2032
2036
|
/**
|
|
2033
2037
|
* The deserialization information for the current model
|
|
2034
|
-
* @returns
|
|
2038
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
2035
2039
|
*/
|
|
2036
2040
|
export declare function deserializeIntoHostname(hostname?: Partial<Hostname> | undefined): Record<string, (node: ParseNode) => void>;
|
|
2037
2041
|
/**
|
|
2038
2042
|
* The deserialization information for the current model
|
|
2039
|
-
* @returns
|
|
2043
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
2040
2044
|
*/
|
|
2041
2045
|
export declare function deserializeIntoHostPair(hostPair?: Partial<HostPair> | undefined): Record<string, (node: ParseNode) => void>;
|
|
2042
2046
|
/**
|
|
2043
2047
|
* The deserialization information for the current model
|
|
2044
|
-
* @returns
|
|
2048
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
2045
2049
|
*/
|
|
2046
2050
|
export declare function deserializeIntoHostPairCollectionResponse(hostPairCollectionResponse?: Partial<HostPairCollectionResponse> | undefined): Record<string, (node: ParseNode) => void>;
|
|
2047
2051
|
/**
|
|
2048
2052
|
* The deserialization information for the current model
|
|
2049
|
-
* @returns
|
|
2053
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
2050
2054
|
*/
|
|
2051
2055
|
export declare function deserializeIntoHostPort(hostPort?: Partial<HostPort> | undefined): Record<string, (node: ParseNode) => void>;
|
|
2052
2056
|
/**
|
|
2053
2057
|
* The deserialization information for the current model
|
|
2054
|
-
* @returns
|
|
2058
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
2055
2059
|
*/
|
|
2056
2060
|
export declare function deserializeIntoHostPortBanner(hostPortBanner?: Partial<HostPortBanner> | undefined): Record<string, (node: ParseNode) => void>;
|
|
2057
2061
|
/**
|
|
2058
2062
|
* The deserialization information for the current model
|
|
2059
|
-
* @returns
|
|
2063
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
2060
2064
|
*/
|
|
2061
2065
|
export declare function deserializeIntoHostPortCollectionResponse(hostPortCollectionResponse?: Partial<HostPortCollectionResponse> | undefined): Record<string, (node: ParseNode) => void>;
|
|
2062
2066
|
/**
|
|
2063
2067
|
* The deserialization information for the current model
|
|
2064
|
-
* @returns
|
|
2068
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
2065
2069
|
*/
|
|
2066
2070
|
export declare function deserializeIntoHostPortComponent(hostPortComponent?: Partial<HostPortComponent> | undefined): Record<string, (node: ParseNode) => void>;
|
|
2067
2071
|
/**
|
|
2068
2072
|
* The deserialization information for the current model
|
|
2069
|
-
* @returns
|
|
2073
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
2070
2074
|
*/
|
|
2071
2075
|
export declare function deserializeIntoHostReputation(hostReputation?: Partial<HostReputation> | undefined): Record<string, (node: ParseNode) => void>;
|
|
2072
2076
|
/**
|
|
2073
2077
|
* The deserialization information for the current model
|
|
2074
|
-
* @returns
|
|
2078
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
2075
2079
|
*/
|
|
2076
2080
|
export declare function deserializeIntoHostReputationRule(hostReputationRule?: Partial<HostReputationRule> | undefined): Record<string, (node: ParseNode) => void>;
|
|
2077
2081
|
/**
|
|
2078
2082
|
* The deserialization information for the current model
|
|
2079
|
-
* @returns
|
|
2083
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
2080
2084
|
*/
|
|
2081
2085
|
export declare function deserializeIntoHostSslCertificate(hostSslCertificate?: Partial<HostSslCertificate> | undefined): Record<string, (node: ParseNode) => void>;
|
|
2082
2086
|
/**
|
|
2083
2087
|
* The deserialization information for the current model
|
|
2084
|
-
* @returns
|
|
2088
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
2085
2089
|
*/
|
|
2086
2090
|
export declare function deserializeIntoHostSslCertificateCollectionResponse(hostSslCertificateCollectionResponse?: Partial<HostSslCertificateCollectionResponse> | undefined): Record<string, (node: ParseNode) => void>;
|
|
2087
2091
|
/**
|
|
2088
2092
|
* The deserialization information for the current model
|
|
2089
|
-
* @returns
|
|
2093
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
2090
2094
|
*/
|
|
2091
2095
|
export declare function deserializeIntoHostSslCertificatePort(hostSslCertificatePort?: Partial<HostSslCertificatePort> | undefined): Record<string, (node: ParseNode) => void>;
|
|
2092
2096
|
/**
|
|
2093
2097
|
* The deserialization information for the current model
|
|
2094
|
-
* @returns
|
|
2098
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
2095
2099
|
*/
|
|
2096
2100
|
export declare function deserializeIntoHostTracker(hostTracker?: Partial<HostTracker> | undefined): Record<string, (node: ParseNode) => void>;
|
|
2097
2101
|
/**
|
|
2098
2102
|
* The deserialization information for the current model
|
|
2099
|
-
* @returns
|
|
2103
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
2100
2104
|
*/
|
|
2101
2105
|
export declare function deserializeIntoHostTrackerCollectionResponse(hostTrackerCollectionResponse?: Partial<HostTrackerCollectionResponse> | undefined): Record<string, (node: ParseNode) => void>;
|
|
2102
2106
|
/**
|
|
2103
2107
|
* The deserialization information for the current model
|
|
2104
|
-
* @returns
|
|
2108
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
2105
2109
|
*/
|
|
2106
2110
|
export declare function deserializeIntoHuntingQueryResults(huntingQueryResults?: Partial<HuntingQueryResults> | undefined): Record<string, (node: ParseNode) => void>;
|
|
2107
2111
|
/**
|
|
2108
2112
|
* The deserialization information for the current model
|
|
2109
|
-
* @returns
|
|
2113
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
2110
2114
|
*/
|
|
2111
2115
|
export declare function deserializeIntoHuntingRowResult(huntingRowResult?: Partial<HuntingRowResult> | undefined): Record<string, (node: ParseNode) => void>;
|
|
2112
2116
|
/**
|
|
2113
2117
|
* The deserialization information for the current model
|
|
2114
|
-
* @returns
|
|
2118
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
2115
2119
|
*/
|
|
2116
2120
|
export declare function deserializeIntoHyperlink(hyperlink?: Partial<Hyperlink> | undefined): Record<string, (node: ParseNode) => void>;
|
|
2117
2121
|
/**
|
|
2118
2122
|
* The deserialization information for the current model
|
|
2119
|
-
* @returns
|
|
2123
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
2120
2124
|
*/
|
|
2121
2125
|
export declare function deserializeIntoIncident(incident?: Partial<Incident> | undefined): Record<string, (node: ParseNode) => void>;
|
|
2122
2126
|
/**
|
|
2123
2127
|
* The deserialization information for the current model
|
|
2124
|
-
* @returns
|
|
2128
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
2125
2129
|
*/
|
|
2126
2130
|
export declare function deserializeIntoIncidentCollectionResponse(incidentCollectionResponse?: Partial<IncidentCollectionResponse> | undefined): Record<string, (node: ParseNode) => void>;
|
|
2127
2131
|
/**
|
|
2128
2132
|
* The deserialization information for the current model
|
|
2129
|
-
* @returns
|
|
2133
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
2130
2134
|
*/
|
|
2131
2135
|
export declare function deserializeIntoIndicator(indicator?: Partial<Indicator> | undefined): Record<string, (node: ParseNode) => void>;
|
|
2132
2136
|
/**
|
|
2133
2137
|
* The deserialization information for the current model
|
|
2134
|
-
* @returns
|
|
2138
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
2135
2139
|
*/
|
|
2136
2140
|
export declare function deserializeIntoIntelligenceProfile(intelligenceProfile?: Partial<IntelligenceProfile> | undefined): Record<string, (node: ParseNode) => void>;
|
|
2137
2141
|
/**
|
|
2138
2142
|
* The deserialization information for the current model
|
|
2139
|
-
* @returns
|
|
2143
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
2140
2144
|
*/
|
|
2141
2145
|
export declare function deserializeIntoIntelligenceProfileCollectionResponse(intelligenceProfileCollectionResponse?: Partial<IntelligenceProfileCollectionResponse> | undefined): Record<string, (node: ParseNode) => void>;
|
|
2142
2146
|
/**
|
|
2143
2147
|
* The deserialization information for the current model
|
|
2144
|
-
* @returns
|
|
2148
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
2145
2149
|
*/
|
|
2146
2150
|
export declare function deserializeIntoIntelligenceProfileCountryOrRegionOfOrigin(intelligenceProfileCountryOrRegionOfOrigin?: Partial<IntelligenceProfileCountryOrRegionOfOrigin> | undefined): Record<string, (node: ParseNode) => void>;
|
|
2147
2151
|
/**
|
|
2148
2152
|
* The deserialization information for the current model
|
|
2149
|
-
* @returns
|
|
2153
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
2150
2154
|
*/
|
|
2151
2155
|
export declare function deserializeIntoIntelligenceProfileIndicator(intelligenceProfileIndicator?: Partial<IntelligenceProfileIndicator> | undefined): Record<string, (node: ParseNode) => void>;
|
|
2152
2156
|
/**
|
|
2153
2157
|
* The deserialization information for the current model
|
|
2154
|
-
* @returns
|
|
2158
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
2155
2159
|
*/
|
|
2156
2160
|
export declare function deserializeIntoIntelligenceProfileIndicatorCollectionResponse(intelligenceProfileIndicatorCollectionResponse?: Partial<IntelligenceProfileIndicatorCollectionResponse> | undefined): Record<string, (node: ParseNode) => void>;
|
|
2157
2161
|
/**
|
|
2158
2162
|
* The deserialization information for the current model
|
|
2159
|
-
* @returns
|
|
2163
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
2160
2164
|
*/
|
|
2161
2165
|
export declare function deserializeIntoIoTDeviceEvidence(ioTDeviceEvidence?: Partial<IoTDeviceEvidence> | undefined): Record<string, (node: ParseNode) => void>;
|
|
2162
2166
|
/**
|
|
2163
2167
|
* The deserialization information for the current model
|
|
2164
|
-
* @returns
|
|
2168
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
2165
2169
|
*/
|
|
2166
2170
|
export declare function deserializeIntoIpAddress(ipAddress?: Partial<IpAddress> | undefined): Record<string, (node: ParseNode) => void>;
|
|
2167
2171
|
/**
|
|
2168
2172
|
* The deserialization information for the current model
|
|
2169
|
-
* @returns
|
|
2173
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
2170
2174
|
*/
|
|
2171
2175
|
export declare function deserializeIntoIpEvidence(ipEvidence?: Partial<IpEvidence> | undefined): Record<string, (node: ParseNode) => void>;
|
|
2172
2176
|
/**
|
|
2173
2177
|
* The deserialization information for the current model
|
|
2174
|
-
* @returns
|
|
2178
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
2175
2179
|
*/
|
|
2176
2180
|
export declare function deserializeIntoKubernetesClusterEvidence(kubernetesClusterEvidence?: Partial<KubernetesClusterEvidence> | undefined): Record<string, (node: ParseNode) => void>;
|
|
2177
2181
|
/**
|
|
2178
2182
|
* The deserialization information for the current model
|
|
2179
|
-
* @returns
|
|
2183
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
2180
2184
|
*/
|
|
2181
2185
|
export declare function deserializeIntoKubernetesControllerEvidence(kubernetesControllerEvidence?: Partial<KubernetesControllerEvidence> | undefined): Record<string, (node: ParseNode) => void>;
|
|
2182
2186
|
/**
|
|
2183
2187
|
* The deserialization information for the current model
|
|
2184
|
-
* @returns
|
|
2188
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
2185
2189
|
*/
|
|
2186
2190
|
export declare function deserializeIntoKubernetesNamespaceEvidence(kubernetesNamespaceEvidence?: Partial<KubernetesNamespaceEvidence> | undefined): Record<string, (node: ParseNode) => void>;
|
|
2187
2191
|
/**
|
|
2188
2192
|
* The deserialization information for the current model
|
|
2189
|
-
* @returns
|
|
2193
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
2190
2194
|
*/
|
|
2191
2195
|
export declare function deserializeIntoKubernetesPodEvidence(kubernetesPodEvidence?: Partial<KubernetesPodEvidence> | undefined): Record<string, (node: ParseNode) => void>;
|
|
2192
2196
|
/**
|
|
2193
2197
|
* The deserialization information for the current model
|
|
2194
|
-
* @returns
|
|
2198
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
2195
2199
|
*/
|
|
2196
2200
|
export declare function deserializeIntoKubernetesSecretEvidence(kubernetesSecretEvidence?: Partial<KubernetesSecretEvidence> | undefined): Record<string, (node: ParseNode) => void>;
|
|
2197
2201
|
/**
|
|
2198
2202
|
* The deserialization information for the current model
|
|
2199
|
-
* @returns
|
|
2203
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
2200
2204
|
*/
|
|
2201
2205
|
export declare function deserializeIntoKubernetesServiceAccountEvidence(kubernetesServiceAccountEvidence?: Partial<KubernetesServiceAccountEvidence> | undefined): Record<string, (node: ParseNode) => void>;
|
|
2202
2206
|
/**
|
|
2203
2207
|
* The deserialization information for the current model
|
|
2204
|
-
* @returns
|
|
2208
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
2205
2209
|
*/
|
|
2206
2210
|
export declare function deserializeIntoKubernetesServiceEvidence(kubernetesServiceEvidence?: Partial<KubernetesServiceEvidence> | undefined): Record<string, (node: ParseNode) => void>;
|
|
2207
2211
|
/**
|
|
2208
2212
|
* The deserialization information for the current model
|
|
2209
|
-
* @returns
|
|
2213
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
2210
2214
|
*/
|
|
2211
2215
|
export declare function deserializeIntoKubernetesServicePort(kubernetesServicePort?: Partial<KubernetesServicePort> | undefined): Record<string, (node: ParseNode) => void>;
|
|
2212
2216
|
/**
|
|
2213
2217
|
* The deserialization information for the current model
|
|
2214
|
-
* @returns
|
|
2218
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
2215
2219
|
*/
|
|
2216
2220
|
export declare function deserializeIntoLoggedOnUser(loggedOnUser?: Partial<LoggedOnUser> | undefined): Record<string, (node: ParseNode) => void>;
|
|
2217
2221
|
/**
|
|
2218
2222
|
* The deserialization information for the current model
|
|
2219
|
-
* @returns
|
|
2223
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
2220
2224
|
*/
|
|
2221
2225
|
export declare function deserializeIntoMailboxEvidence(mailboxEvidence?: Partial<MailboxEvidence> | undefined): Record<string, (node: ParseNode) => void>;
|
|
2222
2226
|
/**
|
|
2223
2227
|
* The deserialization information for the current model
|
|
2224
|
-
* @returns
|
|
2228
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
2225
2229
|
*/
|
|
2226
2230
|
export declare function deserializeIntoMailClusterEvidence(mailClusterEvidence?: Partial<MailClusterEvidence> | undefined): Record<string, (node: ParseNode) => void>;
|
|
2227
2231
|
/**
|
|
2228
2232
|
* The deserialization information for the current model
|
|
2229
|
-
* @returns
|
|
2233
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
2230
2234
|
*/
|
|
2231
2235
|
export declare function deserializeIntoMalwareEvidence(malwareEvidence?: Partial<MalwareEvidence> | undefined): Record<string, (node: ParseNode) => void>;
|
|
2232
2236
|
/**
|
|
2233
2237
|
* The deserialization information for the current model
|
|
2234
|
-
* @returns
|
|
2238
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
2235
2239
|
*/
|
|
2236
2240
|
export declare function deserializeIntoNetworkConnectionEvidence(networkConnectionEvidence?: Partial<NetworkConnectionEvidence> | undefined): Record<string, (node: ParseNode) => void>;
|
|
2237
2241
|
/**
|
|
2238
2242
|
* The deserialization information for the current model
|
|
2239
|
-
* @returns
|
|
2243
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
2240
2244
|
*/
|
|
2241
2245
|
export declare function deserializeIntoNicEvidence(nicEvidence?: Partial<NicEvidence> | undefined): Record<string, (node: ParseNode) => void>;
|
|
2242
2246
|
/**
|
|
2243
2247
|
* The deserialization information for the current model
|
|
2244
|
-
* @returns
|
|
2248
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
2245
2249
|
*/
|
|
2246
2250
|
export declare function deserializeIntoOauthApplicationEvidence(oauthApplicationEvidence?: Partial<OauthApplicationEvidence> | undefined): Record<string, (node: ParseNode) => void>;
|
|
2247
2251
|
/**
|
|
2248
2252
|
* The deserialization information for the current model
|
|
2249
|
-
* @returns
|
|
2253
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
2250
2254
|
*/
|
|
2251
2255
|
export declare function deserializeIntoOcrSettings(ocrSettings?: Partial<OcrSettings> | undefined): Record<string, (node: ParseNode) => void>;
|
|
2252
2256
|
/**
|
|
2253
2257
|
* The deserialization information for the current model
|
|
2254
|
-
* @returns
|
|
2258
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
2255
2259
|
*/
|
|
2256
2260
|
export declare function deserializeIntoPassiveDnsRecord(passiveDnsRecord?: Partial<PassiveDnsRecord> | undefined): Record<string, (node: ParseNode) => void>;
|
|
2257
2261
|
/**
|
|
2258
2262
|
* The deserialization information for the current model
|
|
2259
|
-
* @returns
|
|
2263
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
2260
2264
|
*/
|
|
2261
2265
|
export declare function deserializeIntoPassiveDnsRecordCollectionResponse(passiveDnsRecordCollectionResponse?: Partial<PassiveDnsRecordCollectionResponse> | undefined): Record<string, (node: ParseNode) => void>;
|
|
2262
2266
|
/**
|
|
2263
2267
|
* The deserialization information for the current model
|
|
2264
|
-
* @returns
|
|
2268
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
2265
2269
|
*/
|
|
2266
2270
|
export declare function deserializeIntoProcessEvidence(processEvidence?: Partial<ProcessEvidence> | undefined): Record<string, (node: ParseNode) => void>;
|
|
2267
2271
|
/**
|
|
2268
2272
|
* The deserialization information for the current model
|
|
2269
|
-
* @returns
|
|
2273
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
2270
2274
|
*/
|
|
2271
2275
|
export declare function deserializeIntoRedundancyDetectionSettings(redundancyDetectionSettings?: Partial<RedundancyDetectionSettings> | undefined): Record<string, (node: ParseNode) => void>;
|
|
2272
2276
|
/**
|
|
2273
2277
|
* The deserialization information for the current model
|
|
2274
|
-
* @returns
|
|
2278
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
2275
2279
|
*/
|
|
2276
2280
|
export declare function deserializeIntoRegistryKeyEvidence(registryKeyEvidence?: Partial<RegistryKeyEvidence> | undefined): Record<string, (node: ParseNode) => void>;
|
|
2277
2281
|
/**
|
|
2278
2282
|
* The deserialization information for the current model
|
|
2279
|
-
* @returns
|
|
2283
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
2280
2284
|
*/
|
|
2281
2285
|
export declare function deserializeIntoRegistryValueEvidence(registryValueEvidence?: Partial<RegistryValueEvidence> | undefined): Record<string, (node: ParseNode) => void>;
|
|
2282
2286
|
/**
|
|
2283
2287
|
* The deserialization information for the current model
|
|
2284
|
-
* @returns
|
|
2288
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
2285
2289
|
*/
|
|
2286
2290
|
export declare function deserializeIntoRetentionEvent(retentionEvent?: Partial<RetentionEvent> | undefined): Record<string, (node: ParseNode) => void>;
|
|
2287
2291
|
/**
|
|
2288
2292
|
* The deserialization information for the current model
|
|
2289
|
-
* @returns
|
|
2293
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
2290
2294
|
*/
|
|
2291
2295
|
export declare function deserializeIntoRetentionEventCollectionResponse(retentionEventCollectionResponse?: Partial<RetentionEventCollectionResponse> | undefined): Record<string, (node: ParseNode) => void>;
|
|
2292
2296
|
/**
|
|
2293
2297
|
* The deserialization information for the current model
|
|
2294
|
-
* @returns
|
|
2298
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
2295
2299
|
*/
|
|
2296
2300
|
export declare function deserializeIntoRetentionEventStatus(retentionEventStatus?: Partial<RetentionEventStatus> | undefined): Record<string, (node: ParseNode) => void>;
|
|
2297
2301
|
/**
|
|
2298
2302
|
* The deserialization information for the current model
|
|
2299
|
-
* @returns
|
|
2303
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
2300
2304
|
*/
|
|
2301
2305
|
export declare function deserializeIntoRetentionEventType(retentionEventType?: Partial<RetentionEventType> | undefined): Record<string, (node: ParseNode) => void>;
|
|
2302
2306
|
/**
|
|
2303
2307
|
* The deserialization information for the current model
|
|
2304
|
-
* @returns
|
|
2308
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
2305
2309
|
*/
|
|
2306
2310
|
export declare function deserializeIntoRetentionEventTypeCollectionResponse(retentionEventTypeCollectionResponse?: Partial<RetentionEventTypeCollectionResponse> | undefined): Record<string, (node: ParseNode) => void>;
|
|
2307
2311
|
/**
|
|
2308
2312
|
* The deserialization information for the current model
|
|
2309
|
-
* @returns
|
|
2313
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
2310
2314
|
*/
|
|
2311
2315
|
export declare function deserializeIntoSasTokenEvidence(sasTokenEvidence?: Partial<SasTokenEvidence> | undefined): Record<string, (node: ParseNode) => void>;
|
|
2312
2316
|
/**
|
|
2313
2317
|
* The deserialization information for the current model
|
|
2314
|
-
* @returns
|
|
2318
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
2315
2319
|
*/
|
|
2316
2320
|
export declare function deserializeIntoSearch(search?: Partial<Search> | undefined): Record<string, (node: ParseNode) => void>;
|
|
2317
2321
|
/**
|
|
2318
2322
|
* The deserialization information for the current model
|
|
2319
|
-
* @returns
|
|
2323
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
2320
2324
|
*/
|
|
2321
2325
|
export declare function deserializeIntoSecurityGroupEvidence(securityGroupEvidence?: Partial<SecurityGroupEvidence> | undefined): Record<string, (node: ParseNode) => void>;
|
|
2322
2326
|
/**
|
|
2323
2327
|
* The deserialization information for the current model
|
|
2324
|
-
* @returns
|
|
2328
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
2325
2329
|
*/
|
|
2326
2330
|
export declare function deserializeIntoServicePrincipalEvidence(servicePrincipalEvidence?: Partial<ServicePrincipalEvidence> | undefined): Record<string, (node: ParseNode) => void>;
|
|
2327
2331
|
/**
|
|
2328
2332
|
* The deserialization information for the current model
|
|
2329
|
-
* @returns
|
|
2333
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
2330
2334
|
*/
|
|
2331
2335
|
export declare function deserializeIntoSinglePropertySchema(singlePropertySchema?: Partial<SinglePropertySchema> | undefined): Record<string, (node: ParseNode) => void>;
|
|
2332
2336
|
/**
|
|
2333
2337
|
* The deserialization information for the current model
|
|
2334
|
-
* @returns
|
|
2338
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
2335
2339
|
*/
|
|
2336
2340
|
export declare function deserializeIntoSiteSource(siteSource?: Partial<SiteSource> | undefined): Record<string, (node: ParseNode) => void>;
|
|
2337
2341
|
/**
|
|
2338
2342
|
* The deserialization information for the current model
|
|
2339
|
-
* @returns
|
|
2343
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
2340
2344
|
*/
|
|
2341
2345
|
export declare function deserializeIntoSiteSourceCollectionResponse(siteSourceCollectionResponse?: Partial<SiteSourceCollectionResponse> | undefined): Record<string, (node: ParseNode) => void>;
|
|
2342
2346
|
/**
|
|
2343
2347
|
* The deserialization information for the current model
|
|
2344
|
-
* @returns
|
|
2348
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
2345
2349
|
*/
|
|
2346
2350
|
export declare function deserializeIntoSslCertificate(sslCertificate?: Partial<SslCertificate> | undefined): Record<string, (node: ParseNode) => void>;
|
|
2347
2351
|
/**
|
|
2348
2352
|
* The deserialization information for the current model
|
|
2349
|
-
* @returns
|
|
2353
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
2350
2354
|
*/
|
|
2351
2355
|
export declare function deserializeIntoSslCertificateCollectionResponse(sslCertificateCollectionResponse?: Partial<SslCertificateCollectionResponse> | undefined): Record<string, (node: ParseNode) => void>;
|
|
2352
2356
|
/**
|
|
2353
2357
|
* The deserialization information for the current model
|
|
2354
|
-
* @returns
|
|
2358
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
2355
2359
|
*/
|
|
2356
2360
|
export declare function deserializeIntoSslCertificateEntity(sslCertificateEntity?: Partial<SslCertificateEntity> | undefined): Record<string, (node: ParseNode) => void>;
|
|
2357
2361
|
/**
|
|
2358
2362
|
* The deserialization information for the current model
|
|
2359
|
-
* @returns
|
|
2363
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
2360
2364
|
*/
|
|
2361
2365
|
export declare function deserializeIntoSubdomain(subdomain?: Partial<Subdomain> | undefined): Record<string, (node: ParseNode) => void>;
|
|
2362
2366
|
/**
|
|
2363
2367
|
* The deserialization information for the current model
|
|
2364
|
-
* @returns
|
|
2368
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
2365
2369
|
*/
|
|
2366
2370
|
export declare function deserializeIntoSubdomainCollectionResponse(subdomainCollectionResponse?: Partial<SubdomainCollectionResponse> | undefined): Record<string, (node: ParseNode) => void>;
|
|
2367
2371
|
/**
|
|
2368
2372
|
* The deserialization information for the current model
|
|
2369
|
-
* @returns
|
|
2373
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
2370
2374
|
*/
|
|
2371
2375
|
export declare function deserializeIntoSubmissionMailEvidence(submissionMailEvidence?: Partial<SubmissionMailEvidence> | undefined): Record<string, (node: ParseNode) => void>;
|
|
2372
2376
|
/**
|
|
2373
2377
|
* The deserialization information for the current model
|
|
2374
|
-
* @returns
|
|
2378
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
2375
2379
|
*/
|
|
2376
2380
|
export declare function deserializeIntoTag(tag?: Partial<Tag> | undefined): Record<string, (node: ParseNode) => void>;
|
|
2377
2381
|
/**
|
|
2378
2382
|
* The deserialization information for the current model
|
|
2379
|
-
* @returns
|
|
2383
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
2380
2384
|
*/
|
|
2381
2385
|
export declare function deserializeIntoThreatIntelligence(threatIntelligence?: Partial<ThreatIntelligence> | undefined): Record<string, (node: ParseNode) => void>;
|
|
2382
2386
|
/**
|
|
2383
2387
|
* The deserialization information for the current model
|
|
2384
|
-
* @returns
|
|
2388
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
2385
2389
|
*/
|
|
2386
2390
|
export declare function deserializeIntoTopicModelingSettings(topicModelingSettings?: Partial<TopicModelingSettings> | undefined): Record<string, (node: ParseNode) => void>;
|
|
2387
2391
|
/**
|
|
2388
2392
|
* The deserialization information for the current model
|
|
2389
|
-
* @returns
|
|
2393
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
2390
2394
|
*/
|
|
2391
2395
|
export declare function deserializeIntoTriggersRoot(triggersRoot?: Partial<TriggersRoot> | undefined): Record<string, (node: ParseNode) => void>;
|
|
2392
2396
|
/**
|
|
2393
2397
|
* The deserialization information for the current model
|
|
2394
|
-
* @returns
|
|
2398
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
2395
2399
|
*/
|
|
2396
2400
|
export declare function deserializeIntoTriggerTypesRoot(triggerTypesRoot?: Partial<TriggerTypesRoot> | undefined): Record<string, (node: ParseNode) => void>;
|
|
2397
2401
|
/**
|
|
2398
2402
|
* The deserialization information for the current model
|
|
2399
|
-
* @returns
|
|
2403
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
2400
2404
|
*/
|
|
2401
2405
|
export declare function deserializeIntoUnclassifiedArtifact(unclassifiedArtifact?: Partial<UnclassifiedArtifact> | undefined): Record<string, (node: ParseNode) => void>;
|
|
2402
2406
|
/**
|
|
2403
2407
|
* The deserialization information for the current model
|
|
2404
|
-
* @returns
|
|
2408
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
2405
2409
|
*/
|
|
2406
2410
|
export declare function deserializeIntoUnifiedGroupSource(unifiedGroupSource?: Partial<UnifiedGroupSource> | undefined): Record<string, (node: ParseNode) => void>;
|
|
2407
2411
|
/**
|
|
2408
2412
|
* The deserialization information for the current model
|
|
2409
|
-
* @returns
|
|
2413
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
2410
2414
|
*/
|
|
2411
2415
|
export declare function deserializeIntoUnifiedGroupSourceCollectionResponse(unifiedGroupSourceCollectionResponse?: Partial<UnifiedGroupSourceCollectionResponse> | undefined): Record<string, (node: ParseNode) => void>;
|
|
2412
2416
|
/**
|
|
2413
2417
|
* The deserialization information for the current model
|
|
2414
|
-
* @returns
|
|
2418
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
2415
2419
|
*/
|
|
2416
2420
|
export declare function deserializeIntoUrlEvidence(urlEvidence?: Partial<UrlEvidence> | undefined): Record<string, (node: ParseNode) => void>;
|
|
2417
2421
|
/**
|
|
2418
2422
|
* The deserialization information for the current model
|
|
2419
|
-
* @returns
|
|
2423
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
2420
2424
|
*/
|
|
2421
2425
|
export declare function deserializeIntoUserAccount(userAccount?: Partial<UserAccount> | undefined): Record<string, (node: ParseNode) => void>;
|
|
2422
2426
|
/**
|
|
2423
2427
|
* The deserialization information for the current model
|
|
2424
|
-
* @returns
|
|
2428
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
2425
2429
|
*/
|
|
2426
2430
|
export declare function deserializeIntoUserEvidence(userEvidence?: Partial<UserEvidence> | undefined): Record<string, (node: ParseNode) => void>;
|
|
2427
2431
|
/**
|
|
2428
2432
|
* The deserialization information for the current model
|
|
2429
|
-
* @returns
|
|
2433
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
2430
2434
|
*/
|
|
2431
2435
|
export declare function deserializeIntoUserSource(userSource?: Partial<UserSource> | undefined): Record<string, (node: ParseNode) => void>;
|
|
2432
2436
|
/**
|
|
2433
2437
|
* The deserialization information for the current model
|
|
2434
|
-
* @returns
|
|
2438
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
2435
2439
|
*/
|
|
2436
2440
|
export declare function deserializeIntoUserSourceCollectionResponse(userSourceCollectionResponse?: Partial<UserSourceCollectionResponse> | undefined): Record<string, (node: ParseNode) => void>;
|
|
2437
2441
|
/**
|
|
2438
2442
|
* The deserialization information for the current model
|
|
2439
|
-
* @returns
|
|
2443
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
2440
2444
|
*/
|
|
2441
2445
|
export declare function deserializeIntoVmMetadata(vmMetadata?: Partial<VmMetadata> | undefined): Record<string, (node: ParseNode) => void>;
|
|
2442
2446
|
/**
|
|
2443
2447
|
* The deserialization information for the current model
|
|
2444
|
-
* @returns
|
|
2448
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
2445
2449
|
*/
|
|
2446
2450
|
export declare function deserializeIntoVulnerability(vulnerability?: Partial<Vulnerability> | undefined): Record<string, (node: ParseNode) => void>;
|
|
2447
2451
|
/**
|
|
2448
2452
|
* The deserialization information for the current model
|
|
2449
|
-
* @returns
|
|
2453
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
2450
2454
|
*/
|
|
2451
2455
|
export declare function deserializeIntoVulnerabilityCollectionResponse(vulnerabilityCollectionResponse?: Partial<VulnerabilityCollectionResponse> | undefined): Record<string, (node: ParseNode) => void>;
|
|
2452
2456
|
/**
|
|
2453
2457
|
* The deserialization information for the current model
|
|
2454
|
-
* @returns
|
|
2458
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
2455
2459
|
*/
|
|
2456
2460
|
export declare function deserializeIntoVulnerabilityComponent(vulnerabilityComponent?: Partial<VulnerabilityComponent> | undefined): Record<string, (node: ParseNode) => void>;
|
|
2457
2461
|
/**
|
|
2458
2462
|
* The deserialization information for the current model
|
|
2459
|
-
* @returns
|
|
2463
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
2460
2464
|
*/
|
|
2461
2465
|
export declare function deserializeIntoVulnerabilityComponentCollectionResponse(vulnerabilityComponentCollectionResponse?: Partial<VulnerabilityComponentCollectionResponse> | undefined): Record<string, (node: ParseNode) => void>;
|
|
2462
2466
|
/**
|
|
2463
2467
|
* The deserialization information for the current model
|
|
2464
|
-
* @returns
|
|
2468
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
2465
2469
|
*/
|
|
2466
2470
|
export declare function deserializeIntoWhoisBaseRecord(whoisBaseRecord?: Partial<WhoisBaseRecord> | undefined): Record<string, (node: ParseNode) => void>;
|
|
2467
2471
|
/**
|
|
2468
2472
|
* The deserialization information for the current model
|
|
2469
|
-
* @returns
|
|
2473
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
2470
2474
|
*/
|
|
2471
2475
|
export declare function deserializeIntoWhoisContact(whoisContact?: Partial<WhoisContact> | undefined): Record<string, (node: ParseNode) => void>;
|
|
2472
2476
|
/**
|
|
2473
2477
|
* The deserialization information for the current model
|
|
2474
|
-
* @returns
|
|
2478
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
2475
2479
|
*/
|
|
2476
2480
|
export declare function deserializeIntoWhoisHistoryRecord(whoisHistoryRecord?: Partial<WhoisHistoryRecord> | undefined): Record<string, (node: ParseNode) => void>;
|
|
2477
2481
|
/**
|
|
2478
2482
|
* The deserialization information for the current model
|
|
2479
|
-
* @returns
|
|
2483
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
2480
2484
|
*/
|
|
2481
2485
|
export declare function deserializeIntoWhoisHistoryRecordCollectionResponse(whoisHistoryRecordCollectionResponse?: Partial<WhoisHistoryRecordCollectionResponse> | undefined): Record<string, (node: ParseNode) => void>;
|
|
2482
2486
|
/**
|
|
2483
2487
|
* The deserialization information for the current model
|
|
2484
|
-
* @returns
|
|
2488
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
2485
2489
|
*/
|
|
2486
2490
|
export declare function deserializeIntoWhoisNameserver(whoisNameserver?: Partial<WhoisNameserver> | undefined): Record<string, (node: ParseNode) => void>;
|
|
2487
2491
|
/**
|
|
2488
2492
|
* The deserialization information for the current model
|
|
2489
|
-
* @returns
|
|
2493
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
2490
2494
|
*/
|
|
2491
2495
|
export declare function deserializeIntoWhoisRecord(whoisRecord?: Partial<WhoisRecord> | undefined): Record<string, (node: ParseNode) => void>;
|
|
2492
2496
|
/**
|
|
2493
2497
|
* The deserialization information for the current model
|
|
2494
|
-
* @returns
|
|
2498
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
2495
2499
|
*/
|
|
2496
2500
|
export declare function deserializeIntoWhoisRecordCollectionResponse(whoisRecordCollectionResponse?: Partial<WhoisRecordCollectionResponse> | undefined): Record<string, (node: ParseNode) => void>;
|
|
2497
2501
|
export type DetectionSource = (typeof DetectionSourceObject)[keyof typeof DetectionSourceObject];
|
|
@@ -3697,7 +3701,7 @@ export interface Incident extends Entity, Parsable {
|
|
|
3697
3701
|
*/
|
|
3698
3702
|
customTags?: string[];
|
|
3699
3703
|
/**
|
|
3700
|
-
*
|
|
3704
|
+
* Description of the incident.
|
|
3701
3705
|
*/
|
|
3702
3706
|
description?: string;
|
|
3703
3707
|
/**
|
|
@@ -3713,7 +3717,7 @@ export interface Incident extends Entity, Parsable {
|
|
|
3713
3717
|
*/
|
|
3714
3718
|
incidentWebUrl?: string;
|
|
3715
3719
|
/**
|
|
3716
|
-
* The
|
|
3720
|
+
* The identity that last modified the incident.
|
|
3717
3721
|
*/
|
|
3718
3722
|
lastModifiedBy?: string;
|
|
3719
3723
|
/**
|
|
@@ -3721,7 +3725,7 @@ export interface Incident extends Entity, Parsable {
|
|
|
3721
3725
|
*/
|
|
3722
3726
|
lastUpdateDateTime?: Date;
|
|
3723
3727
|
/**
|
|
3724
|
-
* Only populated in case an incident is grouped
|
|
3728
|
+
* Only populated in case an incident is grouped with another incident, as part of the logic that processes incidents. In such a case, the status property is redirected.
|
|
3725
3729
|
*/
|
|
3726
3730
|
redirectIncidentId?: string;
|
|
3727
3731
|
/**
|
|
@@ -3733,7 +3737,7 @@ export interface Incident extends Entity, Parsable {
|
|
|
3733
3737
|
*/
|
|
3734
3738
|
status?: IncidentStatus;
|
|
3735
3739
|
/**
|
|
3736
|
-
* The
|
|
3740
|
+
* The system tags associated with the incident.
|
|
3737
3741
|
*/
|
|
3738
3742
|
systemTags?: string[];
|
|
3739
3743
|
/**
|