@microsoft/msgraph-sdk 1.0.0-preview.19 → 1.0.0-preview.20
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/models/callRecords/index.d.ts.map +1 -1
- package/models/callRecords/index.js +1 -0
- package/models/externalConnectors/index.d.ts.map +1 -1
- package/models/externalConnectors/index.js +1 -0
- package/models/identityGovernance/index.d.ts.map +1 -1
- package/models/identityGovernance/index.js +1 -0
- package/models/index.d.ts +249 -83
- package/models/index.d.ts.map +1 -1
- package/models/index.js +321 -137
- package/models/oDataErrors/index.d.ts.map +1 -1
- package/models/partners/billing/index.d.ts.map +1 -1
- package/models/partners/billing/index.js +1 -0
- package/models/search/index.d.ts.map +1 -1
- package/models/search/index.js +1 -0
- package/models/security/index.d.ts +860 -10
- package/models/security/index.d.ts.map +1 -1
- package/models/security/index.js +924 -14
- package/models/termStore/index.d.ts.map +1 -1
- package/models/termStore/index.js +1 -0
- package/package.json +2 -2
- package/tsconfig.tsbuildinfo +1 -1
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { type BaseCollectionPaginationCountResponse, type Entity, type Group, type IdentitySet, type PhysicalAddress, type PublicError, type ResultInfo, type Site } from '../';
|
|
2
2
|
import { type AdditionalDataHolder, type BackedModel, type Duration, type Parsable, type ParseNode, type SerializationWriter } from '@microsoft/kiota-abstractions';
|
|
3
3
|
import { type Guid } from 'guid-typescript';
|
|
4
|
+
export type ActionAfterRetentionPeriod = (typeof ActionAfterRetentionPeriodObject)[keyof typeof ActionAfterRetentionPeriodObject];
|
|
4
5
|
export type AdditionalDataOptions = (typeof AdditionalDataOptionsObject)[keyof typeof AdditionalDataOptionsObject];
|
|
5
6
|
export interface Alert extends Entity, Parsable {
|
|
6
7
|
/**
|
|
@@ -356,6 +357,14 @@ export interface ArticleIndicatorCollectionResponse extends BaseCollectionPagina
|
|
|
356
357
|
}
|
|
357
358
|
export interface Artifact extends Entity, Parsable {
|
|
358
359
|
}
|
|
360
|
+
export interface AuthorityTemplate extends FilePlanDescriptorTemplate, Parsable {
|
|
361
|
+
}
|
|
362
|
+
export interface AuthorityTemplateCollectionResponse extends BaseCollectionPaginationCountResponse, Parsable {
|
|
363
|
+
/**
|
|
364
|
+
* The value property
|
|
365
|
+
*/
|
|
366
|
+
value?: AuthorityTemplate[];
|
|
367
|
+
}
|
|
359
368
|
export interface AutonomousSystem extends AdditionalDataHolder, BackedModel, Parsable {
|
|
360
369
|
/**
|
|
361
370
|
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
@@ -508,7 +517,35 @@ export interface CasesRoot extends Entity, Parsable {
|
|
|
508
517
|
ediscoveryCases?: EdiscoveryCase[];
|
|
509
518
|
}
|
|
510
519
|
export type CaseStatus = (typeof CaseStatusObject)[keyof typeof CaseStatusObject];
|
|
520
|
+
export interface CategoryTemplate extends FilePlanDescriptorTemplate, Parsable {
|
|
521
|
+
/**
|
|
522
|
+
* The subcategories property
|
|
523
|
+
*/
|
|
524
|
+
subcategories?: SubcategoryTemplate[];
|
|
525
|
+
}
|
|
526
|
+
export interface CategoryTemplateCollectionResponse extends BaseCollectionPaginationCountResponse, Parsable {
|
|
527
|
+
/**
|
|
528
|
+
* The value property
|
|
529
|
+
*/
|
|
530
|
+
value?: CategoryTemplate[];
|
|
531
|
+
}
|
|
511
532
|
export type ChildSelectability = (typeof ChildSelectabilityObject)[keyof typeof ChildSelectabilityObject];
|
|
533
|
+
export interface CitationTemplate extends FilePlanDescriptorTemplate, Parsable {
|
|
534
|
+
/**
|
|
535
|
+
* Represents the jurisdiction or agency that published the citation.
|
|
536
|
+
*/
|
|
537
|
+
citationJurisdiction?: string;
|
|
538
|
+
/**
|
|
539
|
+
* Represents the URL to the published citation.
|
|
540
|
+
*/
|
|
541
|
+
citationUrl?: string;
|
|
542
|
+
}
|
|
543
|
+
export interface CitationTemplateCollectionResponse extends BaseCollectionPaginationCountResponse, Parsable {
|
|
544
|
+
/**
|
|
545
|
+
* The value property
|
|
546
|
+
*/
|
|
547
|
+
value?: CitationTemplate[];
|
|
548
|
+
}
|
|
512
549
|
export interface CloudApplicationEvidence extends AlertEvidence, Parsable {
|
|
513
550
|
/**
|
|
514
551
|
* Unique identifier of the application.
|
|
@@ -653,6 +690,18 @@ export declare function createArticleIndicatorFromDiscriminatorValue(parseNode:
|
|
|
653
690
|
* @returns {Artifact}
|
|
654
691
|
*/
|
|
655
692
|
export declare function createArtifactFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
693
|
+
/**
|
|
694
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
695
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
696
|
+
* @returns {AuthorityTemplateCollectionResponse}
|
|
697
|
+
*/
|
|
698
|
+
export declare function createAuthorityTemplateCollectionResponseFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
699
|
+
/**
|
|
700
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
701
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
702
|
+
* @returns {AuthorityTemplate}
|
|
703
|
+
*/
|
|
704
|
+
export declare function createAuthorityTemplateFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
656
705
|
/**
|
|
657
706
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
658
707
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
@@ -701,6 +750,30 @@ export declare function createCaseOperationFromDiscriminatorValue(parseNode: Par
|
|
|
701
750
|
* @returns {CasesRoot}
|
|
702
751
|
*/
|
|
703
752
|
export declare function createCasesRootFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
753
|
+
/**
|
|
754
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
755
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
756
|
+
* @returns {CategoryTemplateCollectionResponse}
|
|
757
|
+
*/
|
|
758
|
+
export declare function createCategoryTemplateCollectionResponseFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
759
|
+
/**
|
|
760
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
761
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
762
|
+
* @returns {CategoryTemplate}
|
|
763
|
+
*/
|
|
764
|
+
export declare function createCategoryTemplateFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
765
|
+
/**
|
|
766
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
767
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
768
|
+
* @returns {CitationTemplateCollectionResponse}
|
|
769
|
+
*/
|
|
770
|
+
export declare function createCitationTemplateCollectionResponseFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
771
|
+
/**
|
|
772
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
773
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
774
|
+
* @returns {CitationTemplate}
|
|
775
|
+
*/
|
|
776
|
+
export declare function createCitationTemplateFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
704
777
|
/**
|
|
705
778
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
706
779
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
@@ -755,6 +828,18 @@ export declare function createDataSourceContainerFromDiscriminatorValue(parseNod
|
|
|
755
828
|
* @returns {DataSource}
|
|
756
829
|
*/
|
|
757
830
|
export declare function createDataSourceFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
831
|
+
/**
|
|
832
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
833
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
834
|
+
* @returns {DepartmentTemplateCollectionResponse}
|
|
835
|
+
*/
|
|
836
|
+
export declare function createDepartmentTemplateCollectionResponseFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
837
|
+
/**
|
|
838
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
839
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
840
|
+
* @returns {DepartmentTemplate}
|
|
841
|
+
*/
|
|
842
|
+
export declare function createDepartmentTemplateFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
758
843
|
/**
|
|
759
844
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
760
845
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
@@ -767,6 +852,18 @@ export declare function createDeviceEvidenceFromDiscriminatorValue(parseNode: Pa
|
|
|
767
852
|
* @returns {Dictionary}
|
|
768
853
|
*/
|
|
769
854
|
export declare function createDictionaryFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
855
|
+
/**
|
|
856
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
857
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
858
|
+
* @returns {DispositionReviewStageCollectionResponse}
|
|
859
|
+
*/
|
|
860
|
+
export declare function createDispositionReviewStageCollectionResponseFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
861
|
+
/**
|
|
862
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
863
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
864
|
+
* @returns {DispositionReviewStage}
|
|
865
|
+
*/
|
|
866
|
+
export declare function createDispositionReviewStageFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
770
867
|
/**
|
|
771
868
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
772
869
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
@@ -953,12 +1050,84 @@ export declare function createFileHashEvidenceFromDiscriminatorValue(parseNode:
|
|
|
953
1050
|
* @returns {FileHash}
|
|
954
1051
|
*/
|
|
955
1052
|
export declare function createFileHashFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
1053
|
+
/**
|
|
1054
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
1055
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
1056
|
+
* @returns {FilePlanAppliedCategory}
|
|
1057
|
+
*/
|
|
1058
|
+
export declare function createFilePlanAppliedCategoryFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
1059
|
+
/**
|
|
1060
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
1061
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
1062
|
+
* @returns {FilePlanAuthority}
|
|
1063
|
+
*/
|
|
1064
|
+
export declare function createFilePlanAuthorityFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
1065
|
+
/**
|
|
1066
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
1067
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
1068
|
+
* @returns {FilePlanCitation}
|
|
1069
|
+
*/
|
|
1070
|
+
export declare function createFilePlanCitationFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
1071
|
+
/**
|
|
1072
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
1073
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
1074
|
+
* @returns {FilePlanDepartment}
|
|
1075
|
+
*/
|
|
1076
|
+
export declare function createFilePlanDepartmentFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
1077
|
+
/**
|
|
1078
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
1079
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
1080
|
+
* @returns {FilePlanDescriptorBase}
|
|
1081
|
+
*/
|
|
1082
|
+
export declare function createFilePlanDescriptorBaseFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
1083
|
+
/**
|
|
1084
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
1085
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
1086
|
+
* @returns {FilePlanDescriptor}
|
|
1087
|
+
*/
|
|
1088
|
+
export declare function createFilePlanDescriptorFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
1089
|
+
/**
|
|
1090
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
1091
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
1092
|
+
* @returns {FilePlanDescriptorTemplate}
|
|
1093
|
+
*/
|
|
1094
|
+
export declare function createFilePlanDescriptorTemplateFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
1095
|
+
/**
|
|
1096
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
1097
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
1098
|
+
* @returns {FilePlanReference}
|
|
1099
|
+
*/
|
|
1100
|
+
export declare function createFilePlanReferenceFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
1101
|
+
/**
|
|
1102
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
1103
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
1104
|
+
* @returns {FilePlanReferenceTemplateCollectionResponse}
|
|
1105
|
+
*/
|
|
1106
|
+
export declare function createFilePlanReferenceTemplateCollectionResponseFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
1107
|
+
/**
|
|
1108
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
1109
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
1110
|
+
* @returns {FilePlanReferenceTemplate}
|
|
1111
|
+
*/
|
|
1112
|
+
export declare function createFilePlanReferenceTemplateFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
1113
|
+
/**
|
|
1114
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
1115
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
1116
|
+
* @returns {FilePlanSubcategory}
|
|
1117
|
+
*/
|
|
1118
|
+
export declare function createFilePlanSubcategoryFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
956
1119
|
/**
|
|
957
1120
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
958
1121
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
959
1122
|
* @returns {FormattedContent}
|
|
960
1123
|
*/
|
|
961
1124
|
export declare function createFormattedContentFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
1125
|
+
/**
|
|
1126
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
1127
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
1128
|
+
* @returns {GeoLocation}
|
|
1129
|
+
*/
|
|
1130
|
+
export declare function createGeoLocationFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
962
1131
|
/**
|
|
963
1132
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
964
1133
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
@@ -1241,6 +1410,12 @@ export declare function createKubernetesServiceEvidenceFromDiscriminatorValue(pa
|
|
|
1241
1410
|
* @returns {KubernetesServicePort}
|
|
1242
1411
|
*/
|
|
1243
1412
|
export declare function createKubernetesServicePortFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
1413
|
+
/**
|
|
1414
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
1415
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
1416
|
+
* @returns {LabelsRoot}
|
|
1417
|
+
*/
|
|
1418
|
+
export declare function createLabelsRootFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
1244
1419
|
/**
|
|
1245
1420
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
1246
1421
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
@@ -1331,6 +1506,24 @@ export declare function createRegistryKeyEvidenceFromDiscriminatorValue(parseNod
|
|
|
1331
1506
|
* @returns {RegistryValueEvidence}
|
|
1332
1507
|
*/
|
|
1333
1508
|
export declare function createRegistryValueEvidenceFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
1509
|
+
/**
|
|
1510
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
1511
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
1512
|
+
* @returns {RetentionDurationForever}
|
|
1513
|
+
*/
|
|
1514
|
+
export declare function createRetentionDurationForeverFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
1515
|
+
/**
|
|
1516
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
1517
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
1518
|
+
* @returns {RetentionDuration}
|
|
1519
|
+
*/
|
|
1520
|
+
export declare function createRetentionDurationFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
1521
|
+
/**
|
|
1522
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
1523
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
1524
|
+
* @returns {RetentionDurationInDays}
|
|
1525
|
+
*/
|
|
1526
|
+
export declare function createRetentionDurationInDaysFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
1334
1527
|
/**
|
|
1335
1528
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
1336
1529
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
@@ -1361,6 +1554,18 @@ export declare function createRetentionEventTypeCollectionResponseFromDiscrimina
|
|
|
1361
1554
|
* @returns {RetentionEventType}
|
|
1362
1555
|
*/
|
|
1363
1556
|
export declare function createRetentionEventTypeFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
1557
|
+
/**
|
|
1558
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
1559
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
1560
|
+
* @returns {RetentionLabelCollectionResponse}
|
|
1561
|
+
*/
|
|
1562
|
+
export declare function createRetentionLabelCollectionResponseFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
1563
|
+
/**
|
|
1564
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
1565
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
1566
|
+
* @returns {RetentionLabel}
|
|
1567
|
+
*/
|
|
1568
|
+
export declare function createRetentionLabelFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
1364
1569
|
/**
|
|
1365
1570
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
1366
1571
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
@@ -1427,6 +1632,18 @@ export declare function createSslCertificateFromDiscriminatorValue(parseNode: Pa
|
|
|
1427
1632
|
* @returns {Stream}
|
|
1428
1633
|
*/
|
|
1429
1634
|
export declare function createStreamFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
1635
|
+
/**
|
|
1636
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
1637
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
1638
|
+
* @returns {SubcategoryTemplateCollectionResponse}
|
|
1639
|
+
*/
|
|
1640
|
+
export declare function createSubcategoryTemplateCollectionResponseFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
1641
|
+
/**
|
|
1642
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
1643
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
1644
|
+
* @returns {SubcategoryTemplate}
|
|
1645
|
+
*/
|
|
1646
|
+
export declare function createSubcategoryTemplateFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
1430
1647
|
/**
|
|
1431
1648
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
1432
1649
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
@@ -1688,7 +1905,16 @@ export interface DataSourceContainer extends Entity, Parsable {
|
|
|
1688
1905
|
export type DataSourceContainerStatus = (typeof DataSourceContainerStatusObject)[keyof typeof DataSourceContainerStatusObject];
|
|
1689
1906
|
export type DataSourceHoldStatus = (typeof DataSourceHoldStatusObject)[keyof typeof DataSourceHoldStatusObject];
|
|
1690
1907
|
export type DataSourceScopes = (typeof DataSourceScopesObject)[keyof typeof DataSourceScopesObject];
|
|
1908
|
+
export type DefaultRecordBehavior = (typeof DefaultRecordBehaviorObject)[keyof typeof DefaultRecordBehaviorObject];
|
|
1691
1909
|
export type DefenderAvStatus = (typeof DefenderAvStatusObject)[keyof typeof DefenderAvStatusObject];
|
|
1910
|
+
export interface DepartmentTemplate extends FilePlanDescriptorTemplate, Parsable {
|
|
1911
|
+
}
|
|
1912
|
+
export interface DepartmentTemplateCollectionResponse extends BaseCollectionPaginationCountResponse, Parsable {
|
|
1913
|
+
/**
|
|
1914
|
+
* The value property
|
|
1915
|
+
*/
|
|
1916
|
+
value?: DepartmentTemplate[];
|
|
1917
|
+
}
|
|
1692
1918
|
/**
|
|
1693
1919
|
* The deserialization information for the current model
|
|
1694
1920
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
@@ -1744,6 +1970,16 @@ export declare function deserializeIntoArticleIndicatorCollectionResponse(articl
|
|
|
1744
1970
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
1745
1971
|
*/
|
|
1746
1972
|
export declare function deserializeIntoArtifact(artifact?: Partial<Artifact> | undefined): Record<string, (node: ParseNode) => void>;
|
|
1973
|
+
/**
|
|
1974
|
+
* The deserialization information for the current model
|
|
1975
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
1976
|
+
*/
|
|
1977
|
+
export declare function deserializeIntoAuthorityTemplate(authorityTemplate?: Partial<AuthorityTemplate> | undefined): Record<string, (node: ParseNode) => void>;
|
|
1978
|
+
/**
|
|
1979
|
+
* The deserialization information for the current model
|
|
1980
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
1981
|
+
*/
|
|
1982
|
+
export declare function deserializeIntoAuthorityTemplateCollectionResponse(authorityTemplateCollectionResponse?: Partial<AuthorityTemplateCollectionResponse> | undefined): Record<string, (node: ParseNode) => void>;
|
|
1747
1983
|
/**
|
|
1748
1984
|
* The deserialization information for the current model
|
|
1749
1985
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
@@ -1784,6 +2020,26 @@ export declare function deserializeIntoCaseOperationCollectionResponse(caseOpera
|
|
|
1784
2020
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
1785
2021
|
*/
|
|
1786
2022
|
export declare function deserializeIntoCasesRoot(casesRoot?: Partial<CasesRoot> | undefined): Record<string, (node: ParseNode) => void>;
|
|
2023
|
+
/**
|
|
2024
|
+
* The deserialization information for the current model
|
|
2025
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
2026
|
+
*/
|
|
2027
|
+
export declare function deserializeIntoCategoryTemplate(categoryTemplate?: Partial<CategoryTemplate> | undefined): Record<string, (node: ParseNode) => void>;
|
|
2028
|
+
/**
|
|
2029
|
+
* The deserialization information for the current model
|
|
2030
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
2031
|
+
*/
|
|
2032
|
+
export declare function deserializeIntoCategoryTemplateCollectionResponse(categoryTemplateCollectionResponse?: Partial<CategoryTemplateCollectionResponse> | undefined): Record<string, (node: ParseNode) => void>;
|
|
2033
|
+
/**
|
|
2034
|
+
* The deserialization information for the current model
|
|
2035
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
2036
|
+
*/
|
|
2037
|
+
export declare function deserializeIntoCitationTemplate(citationTemplate?: Partial<CitationTemplate> | undefined): Record<string, (node: ParseNode) => void>;
|
|
2038
|
+
/**
|
|
2039
|
+
* The deserialization information for the current model
|
|
2040
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
2041
|
+
*/
|
|
2042
|
+
export declare function deserializeIntoCitationTemplateCollectionResponse(citationTemplateCollectionResponse?: Partial<CitationTemplateCollectionResponse> | undefined): Record<string, (node: ParseNode) => void>;
|
|
1787
2043
|
/**
|
|
1788
2044
|
* The deserialization information for the current model
|
|
1789
2045
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
@@ -1829,6 +2085,16 @@ export declare function deserializeIntoDataSourceCollectionResponse(dataSourceCo
|
|
|
1829
2085
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
1830
2086
|
*/
|
|
1831
2087
|
export declare function deserializeIntoDataSourceContainer(dataSourceContainer?: Partial<DataSourceContainer> | undefined): Record<string, (node: ParseNode) => void>;
|
|
2088
|
+
/**
|
|
2089
|
+
* The deserialization information for the current model
|
|
2090
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
2091
|
+
*/
|
|
2092
|
+
export declare function deserializeIntoDepartmentTemplate(departmentTemplate?: Partial<DepartmentTemplate> | undefined): Record<string, (node: ParseNode) => void>;
|
|
2093
|
+
/**
|
|
2094
|
+
* The deserialization information for the current model
|
|
2095
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
2096
|
+
*/
|
|
2097
|
+
export declare function deserializeIntoDepartmentTemplateCollectionResponse(departmentTemplateCollectionResponse?: Partial<DepartmentTemplateCollectionResponse> | undefined): Record<string, (node: ParseNode) => void>;
|
|
1832
2098
|
/**
|
|
1833
2099
|
* The deserialization information for the current model
|
|
1834
2100
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
@@ -1839,6 +2105,16 @@ export declare function deserializeIntoDeviceEvidence(deviceEvidence?: Partial<D
|
|
|
1839
2105
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
1840
2106
|
*/
|
|
1841
2107
|
export declare function deserializeIntoDictionary(dictionary?: Partial<Dictionary> | undefined): Record<string, (node: ParseNode) => void>;
|
|
2108
|
+
/**
|
|
2109
|
+
* The deserialization information for the current model
|
|
2110
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
2111
|
+
*/
|
|
2112
|
+
export declare function deserializeIntoDispositionReviewStage(dispositionReviewStage?: Partial<DispositionReviewStage> | undefined): Record<string, (node: ParseNode) => void>;
|
|
2113
|
+
/**
|
|
2114
|
+
* The deserialization information for the current model
|
|
2115
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
2116
|
+
*/
|
|
2117
|
+
export declare function deserializeIntoDispositionReviewStageCollectionResponse(dispositionReviewStageCollectionResponse?: Partial<DispositionReviewStageCollectionResponse> | undefined): Record<string, (node: ParseNode) => void>;
|
|
1842
2118
|
/**
|
|
1843
2119
|
* The deserialization information for the current model
|
|
1844
2120
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
@@ -1994,11 +2270,71 @@ export declare function deserializeIntoFileHash(fileHash?: Partial<FileHash> | u
|
|
|
1994
2270
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
1995
2271
|
*/
|
|
1996
2272
|
export declare function deserializeIntoFileHashEvidence(fileHashEvidence?: Partial<FileHashEvidence> | undefined): Record<string, (node: ParseNode) => void>;
|
|
2273
|
+
/**
|
|
2274
|
+
* The deserialization information for the current model
|
|
2275
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
2276
|
+
*/
|
|
2277
|
+
export declare function deserializeIntoFilePlanAppliedCategory(filePlanAppliedCategory?: Partial<FilePlanAppliedCategory> | undefined): Record<string, (node: ParseNode) => void>;
|
|
2278
|
+
/**
|
|
2279
|
+
* The deserialization information for the current model
|
|
2280
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
2281
|
+
*/
|
|
2282
|
+
export declare function deserializeIntoFilePlanAuthority(filePlanAuthority?: Partial<FilePlanAuthority> | undefined): Record<string, (node: ParseNode) => void>;
|
|
2283
|
+
/**
|
|
2284
|
+
* The deserialization information for the current model
|
|
2285
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
2286
|
+
*/
|
|
2287
|
+
export declare function deserializeIntoFilePlanCitation(filePlanCitation?: Partial<FilePlanCitation> | undefined): Record<string, (node: ParseNode) => void>;
|
|
2288
|
+
/**
|
|
2289
|
+
* The deserialization information for the current model
|
|
2290
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
2291
|
+
*/
|
|
2292
|
+
export declare function deserializeIntoFilePlanDepartment(filePlanDepartment?: Partial<FilePlanDepartment> | undefined): Record<string, (node: ParseNode) => void>;
|
|
2293
|
+
/**
|
|
2294
|
+
* The deserialization information for the current model
|
|
2295
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
2296
|
+
*/
|
|
2297
|
+
export declare function deserializeIntoFilePlanDescriptor(filePlanDescriptor?: Partial<FilePlanDescriptor> | undefined): Record<string, (node: ParseNode) => void>;
|
|
2298
|
+
/**
|
|
2299
|
+
* The deserialization information for the current model
|
|
2300
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
2301
|
+
*/
|
|
2302
|
+
export declare function deserializeIntoFilePlanDescriptorBase(filePlanDescriptorBase?: Partial<FilePlanDescriptorBase> | undefined): Record<string, (node: ParseNode) => void>;
|
|
2303
|
+
/**
|
|
2304
|
+
* The deserialization information for the current model
|
|
2305
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
2306
|
+
*/
|
|
2307
|
+
export declare function deserializeIntoFilePlanDescriptorTemplate(filePlanDescriptorTemplate?: Partial<FilePlanDescriptorTemplate> | undefined): Record<string, (node: ParseNode) => void>;
|
|
2308
|
+
/**
|
|
2309
|
+
* The deserialization information for the current model
|
|
2310
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
2311
|
+
*/
|
|
2312
|
+
export declare function deserializeIntoFilePlanReference(filePlanReference?: Partial<FilePlanReference> | undefined): Record<string, (node: ParseNode) => void>;
|
|
2313
|
+
/**
|
|
2314
|
+
* The deserialization information for the current model
|
|
2315
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
2316
|
+
*/
|
|
2317
|
+
export declare function deserializeIntoFilePlanReferenceTemplate(filePlanReferenceTemplate?: Partial<FilePlanReferenceTemplate> | undefined): Record<string, (node: ParseNode) => void>;
|
|
2318
|
+
/**
|
|
2319
|
+
* The deserialization information for the current model
|
|
2320
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
2321
|
+
*/
|
|
2322
|
+
export declare function deserializeIntoFilePlanReferenceTemplateCollectionResponse(filePlanReferenceTemplateCollectionResponse?: Partial<FilePlanReferenceTemplateCollectionResponse> | undefined): Record<string, (node: ParseNode) => void>;
|
|
2323
|
+
/**
|
|
2324
|
+
* The deserialization information for the current model
|
|
2325
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
2326
|
+
*/
|
|
2327
|
+
export declare function deserializeIntoFilePlanSubcategory(filePlanSubcategory?: Partial<FilePlanSubcategory> | undefined): Record<string, (node: ParseNode) => void>;
|
|
1997
2328
|
/**
|
|
1998
2329
|
* The deserialization information for the current model
|
|
1999
2330
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
2000
2331
|
*/
|
|
2001
2332
|
export declare function deserializeIntoFormattedContent(formattedContent?: Partial<FormattedContent> | undefined): Record<string, (node: ParseNode) => void>;
|
|
2333
|
+
/**
|
|
2334
|
+
* The deserialization information for the current model
|
|
2335
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
2336
|
+
*/
|
|
2337
|
+
export declare function deserializeIntoGeoLocation(geoLocation?: Partial<GeoLocation> | undefined): Record<string, (node: ParseNode) => void>;
|
|
2002
2338
|
/**
|
|
2003
2339
|
* The deserialization information for the current model
|
|
2004
2340
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
@@ -2234,6 +2570,11 @@ export declare function deserializeIntoKubernetesServiceEvidence(kubernetesServi
|
|
|
2234
2570
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
2235
2571
|
*/
|
|
2236
2572
|
export declare function deserializeIntoKubernetesServicePort(kubernetesServicePort?: Partial<KubernetesServicePort> | undefined): Record<string, (node: ParseNode) => void>;
|
|
2573
|
+
/**
|
|
2574
|
+
* The deserialization information for the current model
|
|
2575
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
2576
|
+
*/
|
|
2577
|
+
export declare function deserializeIntoLabelsRoot(labelsRoot?: Partial<LabelsRoot> | undefined): Record<string, (node: ParseNode) => void>;
|
|
2237
2578
|
/**
|
|
2238
2579
|
* The deserialization information for the current model
|
|
2239
2580
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
@@ -2309,6 +2650,21 @@ export declare function deserializeIntoRegistryKeyEvidence(registryKeyEvidence?:
|
|
|
2309
2650
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
2310
2651
|
*/
|
|
2311
2652
|
export declare function deserializeIntoRegistryValueEvidence(registryValueEvidence?: Partial<RegistryValueEvidence> | undefined): Record<string, (node: ParseNode) => void>;
|
|
2653
|
+
/**
|
|
2654
|
+
* The deserialization information for the current model
|
|
2655
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
2656
|
+
*/
|
|
2657
|
+
export declare function deserializeIntoRetentionDuration(retentionDuration?: Partial<RetentionDuration> | undefined): Record<string, (node: ParseNode) => void>;
|
|
2658
|
+
/**
|
|
2659
|
+
* The deserialization information for the current model
|
|
2660
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
2661
|
+
*/
|
|
2662
|
+
export declare function deserializeIntoRetentionDurationForever(retentionDurationForever?: Partial<RetentionDurationForever> | undefined): Record<string, (node: ParseNode) => void>;
|
|
2663
|
+
/**
|
|
2664
|
+
* The deserialization information for the current model
|
|
2665
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
2666
|
+
*/
|
|
2667
|
+
export declare function deserializeIntoRetentionDurationInDays(retentionDurationInDays?: Partial<RetentionDurationInDays> | undefined): Record<string, (node: ParseNode) => void>;
|
|
2312
2668
|
/**
|
|
2313
2669
|
* The deserialization information for the current model
|
|
2314
2670
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
@@ -2334,6 +2690,16 @@ export declare function deserializeIntoRetentionEventType(retentionEventType?: P
|
|
|
2334
2690
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
2335
2691
|
*/
|
|
2336
2692
|
export declare function deserializeIntoRetentionEventTypeCollectionResponse(retentionEventTypeCollectionResponse?: Partial<RetentionEventTypeCollectionResponse> | undefined): Record<string, (node: ParseNode) => void>;
|
|
2693
|
+
/**
|
|
2694
|
+
* The deserialization information for the current model
|
|
2695
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
2696
|
+
*/
|
|
2697
|
+
export declare function deserializeIntoRetentionLabel(retentionLabel?: Partial<RetentionLabel> | undefined): Record<string, (node: ParseNode) => void>;
|
|
2698
|
+
/**
|
|
2699
|
+
* The deserialization information for the current model
|
|
2700
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
2701
|
+
*/
|
|
2702
|
+
export declare function deserializeIntoRetentionLabelCollectionResponse(retentionLabelCollectionResponse?: Partial<RetentionLabelCollectionResponse> | undefined): Record<string, (node: ParseNode) => void>;
|
|
2337
2703
|
/**
|
|
2338
2704
|
* The deserialization information for the current model
|
|
2339
2705
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
@@ -2389,6 +2755,16 @@ export declare function deserializeIntoSslCertificateEntity(sslCertificateEntity
|
|
|
2389
2755
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
2390
2756
|
*/
|
|
2391
2757
|
export declare function deserializeIntoStream(stream?: Partial<Stream> | undefined): Record<string, (node: ParseNode) => void>;
|
|
2758
|
+
/**
|
|
2759
|
+
* The deserialization information for the current model
|
|
2760
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
2761
|
+
*/
|
|
2762
|
+
export declare function deserializeIntoSubcategoryTemplate(subcategoryTemplate?: Partial<SubcategoryTemplate> | undefined): Record<string, (node: ParseNode) => void>;
|
|
2763
|
+
/**
|
|
2764
|
+
* The deserialization information for the current model
|
|
2765
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
2766
|
+
*/
|
|
2767
|
+
export declare function deserializeIntoSubcategoryTemplateCollectionResponse(subcategoryTemplateCollectionResponse?: Partial<SubcategoryTemplateCollectionResponse> | undefined): Record<string, (node: ParseNode) => void>;
|
|
2392
2768
|
/**
|
|
2393
2769
|
* The deserialization information for the current model
|
|
2394
2770
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
@@ -2556,6 +2932,14 @@ export interface DeviceEvidence extends AlertEvidence, Parsable {
|
|
|
2556
2932
|
* Ip interfaces of the device during the time of the alert.
|
|
2557
2933
|
*/
|
|
2558
2934
|
ipInterfaces?: string[];
|
|
2935
|
+
/**
|
|
2936
|
+
* The lastExternalIpAddress property
|
|
2937
|
+
*/
|
|
2938
|
+
lastExternalIpAddress?: string;
|
|
2939
|
+
/**
|
|
2940
|
+
* The lastIpAddress property
|
|
2941
|
+
*/
|
|
2942
|
+
lastIpAddress?: string;
|
|
2559
2943
|
/**
|
|
2560
2944
|
* Users that were logged on the machine during the time of the alert.
|
|
2561
2945
|
*/
|
|
@@ -2613,6 +2997,26 @@ export interface Dictionary extends AdditionalDataHolder, BackedModel, Parsable
|
|
|
2613
2997
|
*/
|
|
2614
2998
|
odataType?: string;
|
|
2615
2999
|
}
|
|
3000
|
+
export interface DispositionReviewStage extends Entity, Parsable {
|
|
3001
|
+
/**
|
|
3002
|
+
* Name representing each stage within a collection.
|
|
3003
|
+
*/
|
|
3004
|
+
name?: string;
|
|
3005
|
+
/**
|
|
3006
|
+
* A collection of reviewers at each stage.
|
|
3007
|
+
*/
|
|
3008
|
+
reviewersEmailAddresses?: string[];
|
|
3009
|
+
/**
|
|
3010
|
+
* The sequence number for each stage of the disposition review.
|
|
3011
|
+
*/
|
|
3012
|
+
stageNumber?: string;
|
|
3013
|
+
}
|
|
3014
|
+
export interface DispositionReviewStageCollectionResponse extends BaseCollectionPaginationCountResponse, Parsable {
|
|
3015
|
+
/**
|
|
3016
|
+
* The value property
|
|
3017
|
+
*/
|
|
3018
|
+
value?: DispositionReviewStage[];
|
|
3019
|
+
}
|
|
2616
3020
|
export interface DnsEvidence extends AlertEvidence, Parsable {
|
|
2617
3021
|
/**
|
|
2618
3022
|
* The dnsServerIp property
|
|
@@ -3070,30 +3474,136 @@ export interface FileHash extends AdditionalDataHolder, BackedModel, Parsable {
|
|
|
3070
3474
|
/**
|
|
3071
3475
|
* The algorithm property
|
|
3072
3476
|
*/
|
|
3073
|
-
algorithm?: FileHashAlgorithm;
|
|
3477
|
+
algorithm?: FileHashAlgorithm;
|
|
3478
|
+
/**
|
|
3479
|
+
* Stores model information.
|
|
3480
|
+
*/
|
|
3481
|
+
backingStoreEnabled?: boolean;
|
|
3482
|
+
/**
|
|
3483
|
+
* The OdataType property
|
|
3484
|
+
*/
|
|
3485
|
+
odataType?: string;
|
|
3486
|
+
/**
|
|
3487
|
+
* The hash value.
|
|
3488
|
+
*/
|
|
3489
|
+
value?: string;
|
|
3490
|
+
}
|
|
3491
|
+
export type FileHashAlgorithm = (typeof FileHashAlgorithmObject)[keyof typeof FileHashAlgorithmObject];
|
|
3492
|
+
export interface FileHashEvidence extends AlertEvidence, Parsable {
|
|
3493
|
+
/**
|
|
3494
|
+
* The algorithm property
|
|
3495
|
+
*/
|
|
3496
|
+
algorithm?: FileHashAlgorithm;
|
|
3497
|
+
/**
|
|
3498
|
+
* The value property
|
|
3499
|
+
*/
|
|
3500
|
+
value?: string;
|
|
3501
|
+
}
|
|
3502
|
+
export interface FilePlanAppliedCategory extends FilePlanDescriptorBase, Parsable {
|
|
3503
|
+
/**
|
|
3504
|
+
* The subcategory property
|
|
3505
|
+
*/
|
|
3506
|
+
subcategory?: FilePlanSubcategory;
|
|
3507
|
+
}
|
|
3508
|
+
export interface FilePlanAuthority extends FilePlanDescriptorBase, Parsable {
|
|
3509
|
+
}
|
|
3510
|
+
export interface FilePlanCitation extends FilePlanDescriptorBase, Parsable {
|
|
3511
|
+
/**
|
|
3512
|
+
* The citationJurisdiction property
|
|
3513
|
+
*/
|
|
3514
|
+
citationJurisdiction?: string;
|
|
3515
|
+
/**
|
|
3516
|
+
* The citationUrl property
|
|
3517
|
+
*/
|
|
3518
|
+
citationUrl?: string;
|
|
3519
|
+
}
|
|
3520
|
+
export interface FilePlanDepartment extends FilePlanDescriptorBase, Parsable {
|
|
3521
|
+
}
|
|
3522
|
+
export interface FilePlanDescriptor extends Entity, Parsable {
|
|
3523
|
+
/**
|
|
3524
|
+
* Represents the file plan descriptor of type authority applied to a particular retention label.
|
|
3525
|
+
*/
|
|
3526
|
+
authority?: FilePlanAuthority;
|
|
3527
|
+
/**
|
|
3528
|
+
* Specifies the underlying authority that describes the type of content to be retained and its retention schedule.
|
|
3529
|
+
*/
|
|
3530
|
+
authorityTemplate?: AuthorityTemplate;
|
|
3531
|
+
/**
|
|
3532
|
+
* The category property
|
|
3533
|
+
*/
|
|
3534
|
+
category?: FilePlanAppliedCategory;
|
|
3535
|
+
/**
|
|
3536
|
+
* Specifies a group of similar types of content in a particular department.
|
|
3537
|
+
*/
|
|
3538
|
+
categoryTemplate?: CategoryTemplate;
|
|
3539
|
+
/**
|
|
3540
|
+
* Represents the file plan descriptor of type citation applied to a particular retention label.
|
|
3541
|
+
*/
|
|
3542
|
+
citation?: FilePlanCitation;
|
|
3543
|
+
/**
|
|
3544
|
+
* The specific rule or regulation created by a jurisdiction used to determine whether certain labels and content should be retained or deleted.
|
|
3545
|
+
*/
|
|
3546
|
+
citationTemplate?: CitationTemplate;
|
|
3547
|
+
/**
|
|
3548
|
+
* Represents the file plan descriptor of type department applied to a particular retention label.
|
|
3549
|
+
*/
|
|
3550
|
+
department?: FilePlanDepartment;
|
|
3551
|
+
/**
|
|
3552
|
+
* Specifies the department or business unit of an organization to which a label belongs.
|
|
3553
|
+
*/
|
|
3554
|
+
departmentTemplate?: DepartmentTemplate;
|
|
3555
|
+
/**
|
|
3556
|
+
* Represents the file plan descriptor of type filePlanReference applied to a particular retention label.
|
|
3557
|
+
*/
|
|
3558
|
+
filePlanReference?: FilePlanReference;
|
|
3559
|
+
/**
|
|
3560
|
+
* Specifies a unique alpha-numeric identifier for an organization’s retention schedule.
|
|
3561
|
+
*/
|
|
3562
|
+
filePlanReferenceTemplate?: FilePlanReferenceTemplate;
|
|
3563
|
+
}
|
|
3564
|
+
export interface FilePlanDescriptorBase extends AdditionalDataHolder, BackedModel, Parsable {
|
|
3565
|
+
/**
|
|
3566
|
+
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
3567
|
+
*/
|
|
3568
|
+
additionalData?: Record<string, unknown>;
|
|
3074
3569
|
/**
|
|
3075
3570
|
* Stores model information.
|
|
3076
3571
|
*/
|
|
3077
3572
|
backingStoreEnabled?: boolean;
|
|
3573
|
+
/**
|
|
3574
|
+
* Unique string that defines the name for the file plan descriptor associated with a particular retention label.
|
|
3575
|
+
*/
|
|
3576
|
+
displayName?: string;
|
|
3078
3577
|
/**
|
|
3079
3578
|
* The OdataType property
|
|
3080
3579
|
*/
|
|
3081
3580
|
odataType?: string;
|
|
3581
|
+
}
|
|
3582
|
+
export interface FilePlanDescriptorTemplate extends Entity, Parsable {
|
|
3082
3583
|
/**
|
|
3083
|
-
*
|
|
3584
|
+
* Represents the user who created the filePlanDescriptorTemplate column.
|
|
3084
3585
|
*/
|
|
3085
|
-
|
|
3086
|
-
}
|
|
3087
|
-
export type FileHashAlgorithm = (typeof FileHashAlgorithmObject)[keyof typeof FileHashAlgorithmObject];
|
|
3088
|
-
export interface FileHashEvidence extends AlertEvidence, Parsable {
|
|
3586
|
+
createdBy?: IdentitySet;
|
|
3089
3587
|
/**
|
|
3090
|
-
*
|
|
3588
|
+
* Represents the date and time in which the filePlanDescriptorTemplate is created.
|
|
3091
3589
|
*/
|
|
3092
|
-
|
|
3590
|
+
createdDateTime?: Date;
|
|
3591
|
+
/**
|
|
3592
|
+
* Unique string that defines a filePlanDescriptorTemplate name.
|
|
3593
|
+
*/
|
|
3594
|
+
displayName?: string;
|
|
3595
|
+
}
|
|
3596
|
+
export interface FilePlanReference extends FilePlanDescriptorBase, Parsable {
|
|
3597
|
+
}
|
|
3598
|
+
export interface FilePlanReferenceTemplate extends FilePlanDescriptorTemplate, Parsable {
|
|
3599
|
+
}
|
|
3600
|
+
export interface FilePlanReferenceTemplateCollectionResponse extends BaseCollectionPaginationCountResponse, Parsable {
|
|
3093
3601
|
/**
|
|
3094
3602
|
* The value property
|
|
3095
3603
|
*/
|
|
3096
|
-
value?:
|
|
3604
|
+
value?: FilePlanReferenceTemplate[];
|
|
3605
|
+
}
|
|
3606
|
+
export interface FilePlanSubcategory extends FilePlanDescriptorBase, Parsable {
|
|
3097
3607
|
}
|
|
3098
3608
|
export interface FormattedContent extends AdditionalDataHolder, BackedModel, Parsable {
|
|
3099
3609
|
/**
|
|
@@ -3117,6 +3627,40 @@ export interface FormattedContent extends AdditionalDataHolder, BackedModel, Par
|
|
|
3117
3627
|
*/
|
|
3118
3628
|
odataType?: string;
|
|
3119
3629
|
}
|
|
3630
|
+
export interface GeoLocation extends AdditionalDataHolder, BackedModel, Parsable {
|
|
3631
|
+
/**
|
|
3632
|
+
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
3633
|
+
*/
|
|
3634
|
+
additionalData?: Record<string, unknown>;
|
|
3635
|
+
/**
|
|
3636
|
+
* Stores model information.
|
|
3637
|
+
*/
|
|
3638
|
+
backingStoreEnabled?: boolean;
|
|
3639
|
+
/**
|
|
3640
|
+
* The city property
|
|
3641
|
+
*/
|
|
3642
|
+
city?: string;
|
|
3643
|
+
/**
|
|
3644
|
+
* The countryName property
|
|
3645
|
+
*/
|
|
3646
|
+
countryName?: string;
|
|
3647
|
+
/**
|
|
3648
|
+
* The latitude property
|
|
3649
|
+
*/
|
|
3650
|
+
latitude?: number;
|
|
3651
|
+
/**
|
|
3652
|
+
* The longitude property
|
|
3653
|
+
*/
|
|
3654
|
+
longitude?: number;
|
|
3655
|
+
/**
|
|
3656
|
+
* The OdataType property
|
|
3657
|
+
*/
|
|
3658
|
+
odataType?: string;
|
|
3659
|
+
/**
|
|
3660
|
+
* The state property
|
|
3661
|
+
*/
|
|
3662
|
+
state?: string;
|
|
3663
|
+
}
|
|
3120
3664
|
export interface GitHubOrganizationEvidence extends AlertEvidence, Parsable {
|
|
3121
3665
|
/**
|
|
3122
3666
|
* The company property
|
|
@@ -3764,7 +4308,7 @@ export interface Incident extends Entity, Parsable {
|
|
|
3764
4308
|
*/
|
|
3765
4309
|
redirectIncidentId?: string;
|
|
3766
4310
|
/**
|
|
3767
|
-
*
|
|
4311
|
+
* User input that explains the resolution of the incident and the classification choice. This property contains free editable text.
|
|
3768
4312
|
*/
|
|
3769
4313
|
resolvingComment?: string;
|
|
3770
4314
|
/**
|
|
@@ -4023,6 +4567,10 @@ export interface IpEvidence extends AlertEvidence, Parsable {
|
|
|
4023
4567
|
* The value of the IP Address, can be either in V4 address or V6 address format.
|
|
4024
4568
|
*/
|
|
4025
4569
|
ipAddress?: string;
|
|
4570
|
+
/**
|
|
4571
|
+
* The location property
|
|
4572
|
+
*/
|
|
4573
|
+
location?: GeoLocation;
|
|
4026
4574
|
/**
|
|
4027
4575
|
* The stream property
|
|
4028
4576
|
*/
|
|
@@ -4218,6 +4766,32 @@ export interface KubernetesServicePort extends AdditionalDataHolder, BackedModel
|
|
|
4218
4766
|
targetPort?: string;
|
|
4219
4767
|
}
|
|
4220
4768
|
export type KubernetesServiceType = (typeof KubernetesServiceTypeObject)[keyof typeof KubernetesServiceTypeObject];
|
|
4769
|
+
export interface LabelsRoot extends Entity, Parsable {
|
|
4770
|
+
/**
|
|
4771
|
+
* Specifies the underlying authority that describes the type of content to be retained and its retention schedule.
|
|
4772
|
+
*/
|
|
4773
|
+
authorities?: AuthorityTemplate[];
|
|
4774
|
+
/**
|
|
4775
|
+
* Specifies a group of similar types of content in a particular department.
|
|
4776
|
+
*/
|
|
4777
|
+
categories?: CategoryTemplate[];
|
|
4778
|
+
/**
|
|
4779
|
+
* The specific rule or regulation created by a jurisdiction used to determine whether certain labels and content should be retained or deleted.
|
|
4780
|
+
*/
|
|
4781
|
+
citations?: CitationTemplate[];
|
|
4782
|
+
/**
|
|
4783
|
+
* Specifies the department or business unit of an organization to which a label belongs.
|
|
4784
|
+
*/
|
|
4785
|
+
departments?: DepartmentTemplate[];
|
|
4786
|
+
/**
|
|
4787
|
+
* Specifies a unique alpha-numeric identifier for an organization’s retention schedule.
|
|
4788
|
+
*/
|
|
4789
|
+
filePlanReferences?: FilePlanReferenceTemplate[];
|
|
4790
|
+
/**
|
|
4791
|
+
* Represents how customers can manage their data, whether and for how long to retain or delete it.
|
|
4792
|
+
*/
|
|
4793
|
+
retentionLabels?: RetentionLabel[];
|
|
4794
|
+
}
|
|
4221
4795
|
export interface LoggedOnUser extends AdditionalDataHolder, BackedModel, Parsable {
|
|
4222
4796
|
/**
|
|
4223
4797
|
* User account name of the logged-on user.
|
|
@@ -4550,6 +5124,28 @@ export interface RegistryValueEvidence extends AlertEvidence, Parsable {
|
|
|
4550
5124
|
*/
|
|
4551
5125
|
registryValueType?: string;
|
|
4552
5126
|
}
|
|
5127
|
+
export interface RetentionDuration extends AdditionalDataHolder, BackedModel, Parsable {
|
|
5128
|
+
/**
|
|
5129
|
+
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
5130
|
+
*/
|
|
5131
|
+
additionalData?: Record<string, unknown>;
|
|
5132
|
+
/**
|
|
5133
|
+
* Stores model information.
|
|
5134
|
+
*/
|
|
5135
|
+
backingStoreEnabled?: boolean;
|
|
5136
|
+
/**
|
|
5137
|
+
* The OdataType property
|
|
5138
|
+
*/
|
|
5139
|
+
odataType?: string;
|
|
5140
|
+
}
|
|
5141
|
+
export interface RetentionDurationForever extends Parsable, RetentionDuration {
|
|
5142
|
+
}
|
|
5143
|
+
export interface RetentionDurationInDays extends Parsable, RetentionDuration {
|
|
5144
|
+
/**
|
|
5145
|
+
* Specifies the time period in days for which an item with the applied retention label will be retained for.
|
|
5146
|
+
*/
|
|
5147
|
+
days?: number;
|
|
5148
|
+
}
|
|
4553
5149
|
export interface RetentionEvent extends Entity, Parsable {
|
|
4554
5150
|
/**
|
|
4555
5151
|
* The user who created the retentionEvent.
|
|
@@ -4660,6 +5256,83 @@ export interface RetentionEventTypeCollectionResponse extends BaseCollectionPagi
|
|
|
4660
5256
|
*/
|
|
4661
5257
|
value?: RetentionEventType[];
|
|
4662
5258
|
}
|
|
5259
|
+
export interface RetentionLabel extends Entity, Parsable {
|
|
5260
|
+
/**
|
|
5261
|
+
* Specifies the action to take on the labeled document after the period specified by the retentionDuration property expires. The possible values are: none, delete, startDispositionReview, unknownFutureValue.
|
|
5262
|
+
*/
|
|
5263
|
+
actionAfterRetentionPeriod?: ActionAfterRetentionPeriod;
|
|
5264
|
+
/**
|
|
5265
|
+
* Specifies how the behavior of a document with this label should be during the retention period. The possible values are: doNotRetain, retain, retainAsRecord, retainAsRegulatoryRecord, unknownFutureValue.
|
|
5266
|
+
*/
|
|
5267
|
+
behaviorDuringRetentionPeriod?: BehaviorDuringRetentionPeriod;
|
|
5268
|
+
/**
|
|
5269
|
+
* Represents the user who created the retentionLabel.
|
|
5270
|
+
*/
|
|
5271
|
+
createdBy?: IdentitySet;
|
|
5272
|
+
/**
|
|
5273
|
+
* Represents the date and time in which the retentionLabel is created.
|
|
5274
|
+
*/
|
|
5275
|
+
createdDateTime?: Date;
|
|
5276
|
+
/**
|
|
5277
|
+
* Specifies the locked or unlocked state of a record label when it is created.The possible values are: startLocked, startUnlocked, unknownFutureValue.
|
|
5278
|
+
*/
|
|
5279
|
+
defaultRecordBehavior?: DefaultRecordBehavior;
|
|
5280
|
+
/**
|
|
5281
|
+
* Provides label information for the admin. Optional.
|
|
5282
|
+
*/
|
|
5283
|
+
descriptionForAdmins?: string;
|
|
5284
|
+
/**
|
|
5285
|
+
* Provides the label information for the user. Optional.
|
|
5286
|
+
*/
|
|
5287
|
+
descriptionForUsers?: string;
|
|
5288
|
+
/**
|
|
5289
|
+
* Represents out-of-the-box values that provide more options to improve the manageability and organization of the content you need to label.
|
|
5290
|
+
*/
|
|
5291
|
+
descriptors?: FilePlanDescriptor;
|
|
5292
|
+
/**
|
|
5293
|
+
* Unique string that defines a label name.
|
|
5294
|
+
*/
|
|
5295
|
+
displayName?: string;
|
|
5296
|
+
/**
|
|
5297
|
+
* When action at the end of retention is chosen as 'dispositionReview', dispositionReviewStages specifies a sequential set of stages with at least one reviewer in each stage.
|
|
5298
|
+
*/
|
|
5299
|
+
dispositionReviewStages?: DispositionReviewStage[];
|
|
5300
|
+
/**
|
|
5301
|
+
* Specifies whether the label is currently being used.
|
|
5302
|
+
*/
|
|
5303
|
+
isInUse?: boolean;
|
|
5304
|
+
/**
|
|
5305
|
+
* Specifies the replacement label to be applied automatically after the retention period of the current label ends.
|
|
5306
|
+
*/
|
|
5307
|
+
labelToBeApplied?: string;
|
|
5308
|
+
/**
|
|
5309
|
+
* The user who last modified the retentionLabel.
|
|
5310
|
+
*/
|
|
5311
|
+
lastModifiedBy?: IdentitySet;
|
|
5312
|
+
/**
|
|
5313
|
+
* The latest date time when the retentionLabel was modified.
|
|
5314
|
+
*/
|
|
5315
|
+
lastModifiedDateTime?: Date;
|
|
5316
|
+
/**
|
|
5317
|
+
* Specifies the number of days to retain the content.
|
|
5318
|
+
*/
|
|
5319
|
+
retentionDuration?: RetentionDuration;
|
|
5320
|
+
/**
|
|
5321
|
+
* Represents the type associated with a retention event.
|
|
5322
|
+
*/
|
|
5323
|
+
retentionEventType?: RetentionEventType;
|
|
5324
|
+
/**
|
|
5325
|
+
* Specifies whether the retention duration is calculated from the content creation date, labeled date, or last modification date. The possible values are: dateLabeled, dateCreated, dateModified, dateOfEvent, unknownFutureValue.
|
|
5326
|
+
*/
|
|
5327
|
+
retentionTrigger?: RetentionTrigger;
|
|
5328
|
+
}
|
|
5329
|
+
export interface RetentionLabelCollectionResponse extends BaseCollectionPaginationCountResponse, Parsable {
|
|
5330
|
+
/**
|
|
5331
|
+
* The value property
|
|
5332
|
+
*/
|
|
5333
|
+
value?: RetentionLabel[];
|
|
5334
|
+
}
|
|
5335
|
+
export type RetentionTrigger = (typeof RetentionTriggerObject)[keyof typeof RetentionTriggerObject];
|
|
4663
5336
|
export interface SasTokenEvidence extends AlertEvidence, Parsable {
|
|
4664
5337
|
/**
|
|
4665
5338
|
* The allowedIpAddresses property
|
|
@@ -4797,6 +5470,16 @@ export declare function serializeArticleIndicatorCollectionResponse(writer: Seri
|
|
|
4797
5470
|
* @param writer Serialization writer to use to serialize this model
|
|
4798
5471
|
*/
|
|
4799
5472
|
export declare function serializeArtifact(writer: SerializationWriter, artifact?: Partial<Artifact> | undefined): void;
|
|
5473
|
+
/**
|
|
5474
|
+
* Serializes information the current object
|
|
5475
|
+
* @param writer Serialization writer to use to serialize this model
|
|
5476
|
+
*/
|
|
5477
|
+
export declare function serializeAuthorityTemplate(writer: SerializationWriter, authorityTemplate?: Partial<AuthorityTemplate> | undefined): void;
|
|
5478
|
+
/**
|
|
5479
|
+
* Serializes information the current object
|
|
5480
|
+
* @param writer Serialization writer to use to serialize this model
|
|
5481
|
+
*/
|
|
5482
|
+
export declare function serializeAuthorityTemplateCollectionResponse(writer: SerializationWriter, authorityTemplateCollectionResponse?: Partial<AuthorityTemplateCollectionResponse> | undefined): void;
|
|
4800
5483
|
/**
|
|
4801
5484
|
* Serializes information the current object
|
|
4802
5485
|
* @param writer Serialization writer to use to serialize this model
|
|
@@ -4837,6 +5520,26 @@ export declare function serializeCaseOperationCollectionResponse(writer: Seriali
|
|
|
4837
5520
|
* @param writer Serialization writer to use to serialize this model
|
|
4838
5521
|
*/
|
|
4839
5522
|
export declare function serializeCasesRoot(writer: SerializationWriter, casesRoot?: Partial<CasesRoot> | undefined): void;
|
|
5523
|
+
/**
|
|
5524
|
+
* Serializes information the current object
|
|
5525
|
+
* @param writer Serialization writer to use to serialize this model
|
|
5526
|
+
*/
|
|
5527
|
+
export declare function serializeCategoryTemplate(writer: SerializationWriter, categoryTemplate?: Partial<CategoryTemplate> | undefined): void;
|
|
5528
|
+
/**
|
|
5529
|
+
* Serializes information the current object
|
|
5530
|
+
* @param writer Serialization writer to use to serialize this model
|
|
5531
|
+
*/
|
|
5532
|
+
export declare function serializeCategoryTemplateCollectionResponse(writer: SerializationWriter, categoryTemplateCollectionResponse?: Partial<CategoryTemplateCollectionResponse> | undefined): void;
|
|
5533
|
+
/**
|
|
5534
|
+
* Serializes information the current object
|
|
5535
|
+
* @param writer Serialization writer to use to serialize this model
|
|
5536
|
+
*/
|
|
5537
|
+
export declare function serializeCitationTemplate(writer: SerializationWriter, citationTemplate?: Partial<CitationTemplate> | undefined): void;
|
|
5538
|
+
/**
|
|
5539
|
+
* Serializes information the current object
|
|
5540
|
+
* @param writer Serialization writer to use to serialize this model
|
|
5541
|
+
*/
|
|
5542
|
+
export declare function serializeCitationTemplateCollectionResponse(writer: SerializationWriter, citationTemplateCollectionResponse?: Partial<CitationTemplateCollectionResponse> | undefined): void;
|
|
4840
5543
|
/**
|
|
4841
5544
|
* Serializes information the current object
|
|
4842
5545
|
* @param writer Serialization writer to use to serialize this model
|
|
@@ -4882,6 +5585,16 @@ export declare function serializeDataSourceCollectionResponse(writer: Serializat
|
|
|
4882
5585
|
* @param writer Serialization writer to use to serialize this model
|
|
4883
5586
|
*/
|
|
4884
5587
|
export declare function serializeDataSourceContainer(writer: SerializationWriter, dataSourceContainer?: Partial<DataSourceContainer> | undefined): void;
|
|
5588
|
+
/**
|
|
5589
|
+
* Serializes information the current object
|
|
5590
|
+
* @param writer Serialization writer to use to serialize this model
|
|
5591
|
+
*/
|
|
5592
|
+
export declare function serializeDepartmentTemplate(writer: SerializationWriter, departmentTemplate?: Partial<DepartmentTemplate> | undefined): void;
|
|
5593
|
+
/**
|
|
5594
|
+
* Serializes information the current object
|
|
5595
|
+
* @param writer Serialization writer to use to serialize this model
|
|
5596
|
+
*/
|
|
5597
|
+
export declare function serializeDepartmentTemplateCollectionResponse(writer: SerializationWriter, departmentTemplateCollectionResponse?: Partial<DepartmentTemplateCollectionResponse> | undefined): void;
|
|
4885
5598
|
/**
|
|
4886
5599
|
* Serializes information the current object
|
|
4887
5600
|
* @param writer Serialization writer to use to serialize this model
|
|
@@ -4892,6 +5605,16 @@ export declare function serializeDeviceEvidence(writer: SerializationWriter, dev
|
|
|
4892
5605
|
* @param writer Serialization writer to use to serialize this model
|
|
4893
5606
|
*/
|
|
4894
5607
|
export declare function serializeDictionary(writer: SerializationWriter, dictionary?: Partial<Dictionary> | undefined): void;
|
|
5608
|
+
/**
|
|
5609
|
+
* Serializes information the current object
|
|
5610
|
+
* @param writer Serialization writer to use to serialize this model
|
|
5611
|
+
*/
|
|
5612
|
+
export declare function serializeDispositionReviewStage(writer: SerializationWriter, dispositionReviewStage?: Partial<DispositionReviewStage> | undefined): void;
|
|
5613
|
+
/**
|
|
5614
|
+
* Serializes information the current object
|
|
5615
|
+
* @param writer Serialization writer to use to serialize this model
|
|
5616
|
+
*/
|
|
5617
|
+
export declare function serializeDispositionReviewStageCollectionResponse(writer: SerializationWriter, dispositionReviewStageCollectionResponse?: Partial<DispositionReviewStageCollectionResponse> | undefined): void;
|
|
4895
5618
|
/**
|
|
4896
5619
|
* Serializes information the current object
|
|
4897
5620
|
* @param writer Serialization writer to use to serialize this model
|
|
@@ -5047,11 +5770,71 @@ export declare function serializeFileHash(writer: SerializationWriter, fileHash?
|
|
|
5047
5770
|
* @param writer Serialization writer to use to serialize this model
|
|
5048
5771
|
*/
|
|
5049
5772
|
export declare function serializeFileHashEvidence(writer: SerializationWriter, fileHashEvidence?: Partial<FileHashEvidence> | undefined): void;
|
|
5773
|
+
/**
|
|
5774
|
+
* Serializes information the current object
|
|
5775
|
+
* @param writer Serialization writer to use to serialize this model
|
|
5776
|
+
*/
|
|
5777
|
+
export declare function serializeFilePlanAppliedCategory(writer: SerializationWriter, filePlanAppliedCategory?: Partial<FilePlanAppliedCategory> | undefined): void;
|
|
5778
|
+
/**
|
|
5779
|
+
* Serializes information the current object
|
|
5780
|
+
* @param writer Serialization writer to use to serialize this model
|
|
5781
|
+
*/
|
|
5782
|
+
export declare function serializeFilePlanAuthority(writer: SerializationWriter, filePlanAuthority?: Partial<FilePlanAuthority> | undefined): void;
|
|
5783
|
+
/**
|
|
5784
|
+
* Serializes information the current object
|
|
5785
|
+
* @param writer Serialization writer to use to serialize this model
|
|
5786
|
+
*/
|
|
5787
|
+
export declare function serializeFilePlanCitation(writer: SerializationWriter, filePlanCitation?: Partial<FilePlanCitation> | undefined): void;
|
|
5788
|
+
/**
|
|
5789
|
+
* Serializes information the current object
|
|
5790
|
+
* @param writer Serialization writer to use to serialize this model
|
|
5791
|
+
*/
|
|
5792
|
+
export declare function serializeFilePlanDepartment(writer: SerializationWriter, filePlanDepartment?: Partial<FilePlanDepartment> | undefined): void;
|
|
5793
|
+
/**
|
|
5794
|
+
* Serializes information the current object
|
|
5795
|
+
* @param writer Serialization writer to use to serialize this model
|
|
5796
|
+
*/
|
|
5797
|
+
export declare function serializeFilePlanDescriptor(writer: SerializationWriter, filePlanDescriptor?: Partial<FilePlanDescriptor> | undefined): void;
|
|
5798
|
+
/**
|
|
5799
|
+
* Serializes information the current object
|
|
5800
|
+
* @param writer Serialization writer to use to serialize this model
|
|
5801
|
+
*/
|
|
5802
|
+
export declare function serializeFilePlanDescriptorBase(writer: SerializationWriter, filePlanDescriptorBase?: Partial<FilePlanDescriptorBase> | undefined): void;
|
|
5803
|
+
/**
|
|
5804
|
+
* Serializes information the current object
|
|
5805
|
+
* @param writer Serialization writer to use to serialize this model
|
|
5806
|
+
*/
|
|
5807
|
+
export declare function serializeFilePlanDescriptorTemplate(writer: SerializationWriter, filePlanDescriptorTemplate?: Partial<FilePlanDescriptorTemplate> | undefined): void;
|
|
5808
|
+
/**
|
|
5809
|
+
* Serializes information the current object
|
|
5810
|
+
* @param writer Serialization writer to use to serialize this model
|
|
5811
|
+
*/
|
|
5812
|
+
export declare function serializeFilePlanReference(writer: SerializationWriter, filePlanReference?: Partial<FilePlanReference> | undefined): void;
|
|
5813
|
+
/**
|
|
5814
|
+
* Serializes information the current object
|
|
5815
|
+
* @param writer Serialization writer to use to serialize this model
|
|
5816
|
+
*/
|
|
5817
|
+
export declare function serializeFilePlanReferenceTemplate(writer: SerializationWriter, filePlanReferenceTemplate?: Partial<FilePlanReferenceTemplate> | undefined): void;
|
|
5818
|
+
/**
|
|
5819
|
+
* Serializes information the current object
|
|
5820
|
+
* @param writer Serialization writer to use to serialize this model
|
|
5821
|
+
*/
|
|
5822
|
+
export declare function serializeFilePlanReferenceTemplateCollectionResponse(writer: SerializationWriter, filePlanReferenceTemplateCollectionResponse?: Partial<FilePlanReferenceTemplateCollectionResponse> | undefined): void;
|
|
5823
|
+
/**
|
|
5824
|
+
* Serializes information the current object
|
|
5825
|
+
* @param writer Serialization writer to use to serialize this model
|
|
5826
|
+
*/
|
|
5827
|
+
export declare function serializeFilePlanSubcategory(writer: SerializationWriter, filePlanSubcategory?: Partial<FilePlanSubcategory> | undefined): void;
|
|
5050
5828
|
/**
|
|
5051
5829
|
* Serializes information the current object
|
|
5052
5830
|
* @param writer Serialization writer to use to serialize this model
|
|
5053
5831
|
*/
|
|
5054
5832
|
export declare function serializeFormattedContent(writer: SerializationWriter, formattedContent?: Partial<FormattedContent> | undefined): void;
|
|
5833
|
+
/**
|
|
5834
|
+
* Serializes information the current object
|
|
5835
|
+
* @param writer Serialization writer to use to serialize this model
|
|
5836
|
+
*/
|
|
5837
|
+
export declare function serializeGeoLocation(writer: SerializationWriter, geoLocation?: Partial<GeoLocation> | undefined): void;
|
|
5055
5838
|
/**
|
|
5056
5839
|
* Serializes information the current object
|
|
5057
5840
|
* @param writer Serialization writer to use to serialize this model
|
|
@@ -5287,6 +6070,11 @@ export declare function serializeKubernetesServiceEvidence(writer: Serialization
|
|
|
5287
6070
|
* @param writer Serialization writer to use to serialize this model
|
|
5288
6071
|
*/
|
|
5289
6072
|
export declare function serializeKubernetesServicePort(writer: SerializationWriter, kubernetesServicePort?: Partial<KubernetesServicePort> | undefined): void;
|
|
6073
|
+
/**
|
|
6074
|
+
* Serializes information the current object
|
|
6075
|
+
* @param writer Serialization writer to use to serialize this model
|
|
6076
|
+
*/
|
|
6077
|
+
export declare function serializeLabelsRoot(writer: SerializationWriter, labelsRoot?: Partial<LabelsRoot> | undefined): void;
|
|
5290
6078
|
/**
|
|
5291
6079
|
* Serializes information the current object
|
|
5292
6080
|
* @param writer Serialization writer to use to serialize this model
|
|
@@ -5362,6 +6150,21 @@ export declare function serializeRegistryKeyEvidence(writer: SerializationWriter
|
|
|
5362
6150
|
* @param writer Serialization writer to use to serialize this model
|
|
5363
6151
|
*/
|
|
5364
6152
|
export declare function serializeRegistryValueEvidence(writer: SerializationWriter, registryValueEvidence?: Partial<RegistryValueEvidence> | undefined): void;
|
|
6153
|
+
/**
|
|
6154
|
+
* Serializes information the current object
|
|
6155
|
+
* @param writer Serialization writer to use to serialize this model
|
|
6156
|
+
*/
|
|
6157
|
+
export declare function serializeRetentionDuration(writer: SerializationWriter, retentionDuration?: Partial<RetentionDuration> | undefined): void;
|
|
6158
|
+
/**
|
|
6159
|
+
* Serializes information the current object
|
|
6160
|
+
* @param writer Serialization writer to use to serialize this model
|
|
6161
|
+
*/
|
|
6162
|
+
export declare function serializeRetentionDurationForever(writer: SerializationWriter, retentionDurationForever?: Partial<RetentionDurationForever> | undefined): void;
|
|
6163
|
+
/**
|
|
6164
|
+
* Serializes information the current object
|
|
6165
|
+
* @param writer Serialization writer to use to serialize this model
|
|
6166
|
+
*/
|
|
6167
|
+
export declare function serializeRetentionDurationInDays(writer: SerializationWriter, retentionDurationInDays?: Partial<RetentionDurationInDays> | undefined): void;
|
|
5365
6168
|
/**
|
|
5366
6169
|
* Serializes information the current object
|
|
5367
6170
|
* @param writer Serialization writer to use to serialize this model
|
|
@@ -5387,6 +6190,16 @@ export declare function serializeRetentionEventType(writer: SerializationWriter,
|
|
|
5387
6190
|
* @param writer Serialization writer to use to serialize this model
|
|
5388
6191
|
*/
|
|
5389
6192
|
export declare function serializeRetentionEventTypeCollectionResponse(writer: SerializationWriter, retentionEventTypeCollectionResponse?: Partial<RetentionEventTypeCollectionResponse> | undefined): void;
|
|
6193
|
+
/**
|
|
6194
|
+
* Serializes information the current object
|
|
6195
|
+
* @param writer Serialization writer to use to serialize this model
|
|
6196
|
+
*/
|
|
6197
|
+
export declare function serializeRetentionLabel(writer: SerializationWriter, retentionLabel?: Partial<RetentionLabel> | undefined): void;
|
|
6198
|
+
/**
|
|
6199
|
+
* Serializes information the current object
|
|
6200
|
+
* @param writer Serialization writer to use to serialize this model
|
|
6201
|
+
*/
|
|
6202
|
+
export declare function serializeRetentionLabelCollectionResponse(writer: SerializationWriter, retentionLabelCollectionResponse?: Partial<RetentionLabelCollectionResponse> | undefined): void;
|
|
5390
6203
|
/**
|
|
5391
6204
|
* Serializes information the current object
|
|
5392
6205
|
* @param writer Serialization writer to use to serialize this model
|
|
@@ -5442,6 +6255,16 @@ export declare function serializeSslCertificateEntity(writer: SerializationWrite
|
|
|
5442
6255
|
* @param writer Serialization writer to use to serialize this model
|
|
5443
6256
|
*/
|
|
5444
6257
|
export declare function serializeStream(writer: SerializationWriter, stream?: Partial<Stream> | undefined): void;
|
|
6258
|
+
/**
|
|
6259
|
+
* Serializes information the current object
|
|
6260
|
+
* @param writer Serialization writer to use to serialize this model
|
|
6261
|
+
*/
|
|
6262
|
+
export declare function serializeSubcategoryTemplate(writer: SerializationWriter, subcategoryTemplate?: Partial<SubcategoryTemplate> | undefined): void;
|
|
6263
|
+
/**
|
|
6264
|
+
* Serializes information the current object
|
|
6265
|
+
* @param writer Serialization writer to use to serialize this model
|
|
6266
|
+
*/
|
|
6267
|
+
export declare function serializeSubcategoryTemplateCollectionResponse(writer: SerializationWriter, subcategoryTemplateCollectionResponse?: Partial<SubcategoryTemplateCollectionResponse> | undefined): void;
|
|
5445
6268
|
/**
|
|
5446
6269
|
* Serializes information the current object
|
|
5447
6270
|
* @param writer Serialization writer to use to serialize this model
|
|
@@ -5761,6 +6584,14 @@ export interface Stream extends AdditionalDataHolder, BackedModel, Parsable {
|
|
|
5761
6584
|
*/
|
|
5762
6585
|
odataType?: string;
|
|
5763
6586
|
}
|
|
6587
|
+
export interface SubcategoryTemplate extends FilePlanDescriptorTemplate, Parsable {
|
|
6588
|
+
}
|
|
6589
|
+
export interface SubcategoryTemplateCollectionResponse extends BaseCollectionPaginationCountResponse, Parsable {
|
|
6590
|
+
/**
|
|
6591
|
+
* The value property
|
|
6592
|
+
*/
|
|
6593
|
+
value?: SubcategoryTemplate[];
|
|
6594
|
+
}
|
|
5764
6595
|
export interface Subdomain extends Entity, Parsable {
|
|
5765
6596
|
/**
|
|
5766
6597
|
* The date and time when Microsoft Defender Threat Intelligence first observed the subdomain. The timestamp type represents date and time information using ISO 8601 format and is always in UTC. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z.
|
|
@@ -6323,6 +7154,13 @@ export interface WhoisRecordCollectionResponse extends BaseCollectionPaginationC
|
|
|
6323
7154
|
*/
|
|
6324
7155
|
value?: WhoisRecord[];
|
|
6325
7156
|
}
|
|
7157
|
+
export declare const ActionAfterRetentionPeriodObject: {
|
|
7158
|
+
readonly None: "none";
|
|
7159
|
+
readonly Delete: "delete";
|
|
7160
|
+
readonly StartDispositionReview: "startDispositionReview";
|
|
7161
|
+
readonly Relabel: "relabel";
|
|
7162
|
+
readonly UnknownFutureValue: "unknownFutureValue";
|
|
7163
|
+
};
|
|
6326
7164
|
export declare const AdditionalDataOptionsObject: {
|
|
6327
7165
|
readonly AllVersions: "allVersions";
|
|
6328
7166
|
readonly LinkedFiles: "linkedFiles";
|
|
@@ -6442,6 +7280,11 @@ export declare const DataSourceScopesObject: {
|
|
|
6442
7280
|
readonly AllCaseNoncustodialDataSources: "allCaseNoncustodialDataSources";
|
|
6443
7281
|
readonly UnknownFutureValue: "unknownFutureValue";
|
|
6444
7282
|
};
|
|
7283
|
+
export declare const DefaultRecordBehaviorObject: {
|
|
7284
|
+
readonly StartLocked: "startLocked";
|
|
7285
|
+
readonly StartUnlocked: "startUnlocked";
|
|
7286
|
+
readonly UnknownFutureValue: "unknownFutureValue";
|
|
7287
|
+
};
|
|
6445
7288
|
export declare const DefenderAvStatusObject: {
|
|
6446
7289
|
readonly NotReporting: "notReporting";
|
|
6447
7290
|
readonly Disabled: "disabled";
|
|
@@ -6688,6 +7531,13 @@ export declare const QueryTypeObject: {
|
|
|
6688
7531
|
readonly Messages: "messages";
|
|
6689
7532
|
readonly UnknownFutureValue: "unknownFutureValue";
|
|
6690
7533
|
};
|
|
7534
|
+
export declare const RetentionTriggerObject: {
|
|
7535
|
+
readonly DateLabeled: "dateLabeled";
|
|
7536
|
+
readonly DateCreated: "dateCreated";
|
|
7537
|
+
readonly DateModified: "dateModified";
|
|
7538
|
+
readonly DateOfEvent: "dateOfEvent";
|
|
7539
|
+
readonly UnknownFutureValue: "unknownFutureValue";
|
|
7540
|
+
};
|
|
6691
7541
|
export declare const ServicePrincipalTypeObject: {
|
|
6692
7542
|
readonly Unknown: "unknown";
|
|
6693
7543
|
readonly Application: "application";
|