@microsoft/msgraph-sdk 1.0.0-preview.18 → 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.
@@ -1,12 +1,17 @@
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
  /**
7
8
  * The adversary or activity group that is associated with this alert.
8
9
  */
9
10
  actorDisplayName?: string;
11
+ /**
12
+ * A collection of other alert properties, including user-defined properties. Any custom details defined in the alert, and any dynamic content in the alert details, are stored here.
13
+ */
14
+ additionalDataProperty?: Dictionary;
10
15
  /**
11
16
  * 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.
12
17
  */
@@ -352,6 +357,14 @@ export interface ArticleIndicatorCollectionResponse extends BaseCollectionPagina
352
357
  }
353
358
  export interface Artifact extends Entity, Parsable {
354
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
+ }
355
368
  export interface AutonomousSystem extends AdditionalDataHolder, BackedModel, Parsable {
356
369
  /**
357
370
  * Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
@@ -504,7 +517,35 @@ export interface CasesRoot extends Entity, Parsable {
504
517
  ediscoveryCases?: EdiscoveryCase[];
505
518
  }
506
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
+ }
507
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
+ }
508
549
  export interface CloudApplicationEvidence extends AlertEvidence, Parsable {
509
550
  /**
510
551
  * Unique identifier of the application.
@@ -649,6 +690,18 @@ export declare function createArticleIndicatorFromDiscriminatorValue(parseNode:
649
690
  * @returns {Artifact}
650
691
  */
651
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>);
652
705
  /**
653
706
  * Creates a new instance of the appropriate class based on discriminator value
654
707
  * @param parseNode The parse node to use to read the discriminator value and create the object
@@ -697,6 +750,30 @@ export declare function createCaseOperationFromDiscriminatorValue(parseNode: Par
697
750
  * @returns {CasesRoot}
698
751
  */
699
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>);
700
777
  /**
701
778
  * Creates a new instance of the appropriate class based on discriminator value
702
779
  * @param parseNode The parse node to use to read the discriminator value and create the object
@@ -751,6 +828,18 @@ export declare function createDataSourceContainerFromDiscriminatorValue(parseNod
751
828
  * @returns {DataSource}
752
829
  */
753
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>);
754
843
  /**
755
844
  * Creates a new instance of the appropriate class based on discriminator value
756
845
  * @param parseNode The parse node to use to read the discriminator value and create the object
@@ -763,6 +852,18 @@ export declare function createDeviceEvidenceFromDiscriminatorValue(parseNode: Pa
763
852
  * @returns {Dictionary}
764
853
  */
765
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>);
766
867
  /**
767
868
  * Creates a new instance of the appropriate class based on discriminator value
768
869
  * @param parseNode The parse node to use to read the discriminator value and create the object
@@ -949,12 +1050,84 @@ export declare function createFileHashEvidenceFromDiscriminatorValue(parseNode:
949
1050
  * @returns {FileHash}
950
1051
  */
951
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>);
952
1119
  /**
953
1120
  * Creates a new instance of the appropriate class based on discriminator value
954
1121
  * @param parseNode The parse node to use to read the discriminator value and create the object
955
1122
  * @returns {FormattedContent}
956
1123
  */
957
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>);
958
1131
  /**
959
1132
  * Creates a new instance of the appropriate class based on discriminator value
960
1133
  * @param parseNode The parse node to use to read the discriminator value and create the object
@@ -1237,6 +1410,12 @@ export declare function createKubernetesServiceEvidenceFromDiscriminatorValue(pa
1237
1410
  * @returns {KubernetesServicePort}
1238
1411
  */
1239
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>);
1240
1419
  /**
1241
1420
  * Creates a new instance of the appropriate class based on discriminator value
1242
1421
  * @param parseNode The parse node to use to read the discriminator value and create the object
@@ -1327,6 +1506,24 @@ export declare function createRegistryKeyEvidenceFromDiscriminatorValue(parseNod
1327
1506
  * @returns {RegistryValueEvidence}
1328
1507
  */
1329
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>);
1330
1527
  /**
1331
1528
  * Creates a new instance of the appropriate class based on discriminator value
1332
1529
  * @param parseNode The parse node to use to read the discriminator value and create the object
@@ -1357,6 +1554,18 @@ export declare function createRetentionEventTypeCollectionResponseFromDiscrimina
1357
1554
  * @returns {RetentionEventType}
1358
1555
  */
1359
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>);
1360
1569
  /**
1361
1570
  * Creates a new instance of the appropriate class based on discriminator value
1362
1571
  * @param parseNode The parse node to use to read the discriminator value and create the object
@@ -1423,6 +1632,18 @@ export declare function createSslCertificateFromDiscriminatorValue(parseNode: Pa
1423
1632
  * @returns {Stream}
1424
1633
  */
1425
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>);
1426
1647
  /**
1427
1648
  * Creates a new instance of the appropriate class based on discriminator value
1428
1649
  * @param parseNode The parse node to use to read the discriminator value and create the object
@@ -1684,7 +1905,16 @@ export interface DataSourceContainer extends Entity, Parsable {
1684
1905
  export type DataSourceContainerStatus = (typeof DataSourceContainerStatusObject)[keyof typeof DataSourceContainerStatusObject];
1685
1906
  export type DataSourceHoldStatus = (typeof DataSourceHoldStatusObject)[keyof typeof DataSourceHoldStatusObject];
1686
1907
  export type DataSourceScopes = (typeof DataSourceScopesObject)[keyof typeof DataSourceScopesObject];
1908
+ export type DefaultRecordBehavior = (typeof DefaultRecordBehaviorObject)[keyof typeof DefaultRecordBehaviorObject];
1687
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
+ }
1688
1918
  /**
1689
1919
  * The deserialization information for the current model
1690
1920
  * @returns {Record<string, (node: ParseNode) => void>}
@@ -1740,6 +1970,16 @@ export declare function deserializeIntoArticleIndicatorCollectionResponse(articl
1740
1970
  * @returns {Record<string, (node: ParseNode) => void>}
1741
1971
  */
1742
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>;
1743
1983
  /**
1744
1984
  * The deserialization information for the current model
1745
1985
  * @returns {Record<string, (node: ParseNode) => void>}
@@ -1780,6 +2020,26 @@ export declare function deserializeIntoCaseOperationCollectionResponse(caseOpera
1780
2020
  * @returns {Record<string, (node: ParseNode) => void>}
1781
2021
  */
1782
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>;
1783
2043
  /**
1784
2044
  * The deserialization information for the current model
1785
2045
  * @returns {Record<string, (node: ParseNode) => void>}
@@ -1825,6 +2085,16 @@ export declare function deserializeIntoDataSourceCollectionResponse(dataSourceCo
1825
2085
  * @returns {Record<string, (node: ParseNode) => void>}
1826
2086
  */
1827
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>;
1828
2098
  /**
1829
2099
  * The deserialization information for the current model
1830
2100
  * @returns {Record<string, (node: ParseNode) => void>}
@@ -1835,6 +2105,16 @@ export declare function deserializeIntoDeviceEvidence(deviceEvidence?: Partial<D
1835
2105
  * @returns {Record<string, (node: ParseNode) => void>}
1836
2106
  */
1837
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>;
1838
2118
  /**
1839
2119
  * The deserialization information for the current model
1840
2120
  * @returns {Record<string, (node: ParseNode) => void>}
@@ -1990,11 +2270,71 @@ export declare function deserializeIntoFileHash(fileHash?: Partial<FileHash> | u
1990
2270
  * @returns {Record<string, (node: ParseNode) => void>}
1991
2271
  */
1992
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>;
1993
2328
  /**
1994
2329
  * The deserialization information for the current model
1995
2330
  * @returns {Record<string, (node: ParseNode) => void>}
1996
2331
  */
1997
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>;
1998
2338
  /**
1999
2339
  * The deserialization information for the current model
2000
2340
  * @returns {Record<string, (node: ParseNode) => void>}
@@ -2230,6 +2570,11 @@ export declare function deserializeIntoKubernetesServiceEvidence(kubernetesServi
2230
2570
  * @returns {Record<string, (node: ParseNode) => void>}
2231
2571
  */
2232
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>;
2233
2578
  /**
2234
2579
  * The deserialization information for the current model
2235
2580
  * @returns {Record<string, (node: ParseNode) => void>}
@@ -2305,6 +2650,21 @@ export declare function deserializeIntoRegistryKeyEvidence(registryKeyEvidence?:
2305
2650
  * @returns {Record<string, (node: ParseNode) => void>}
2306
2651
  */
2307
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>;
2308
2668
  /**
2309
2669
  * The deserialization information for the current model
2310
2670
  * @returns {Record<string, (node: ParseNode) => void>}
@@ -2330,6 +2690,16 @@ export declare function deserializeIntoRetentionEventType(retentionEventType?: P
2330
2690
  * @returns {Record<string, (node: ParseNode) => void>}
2331
2691
  */
2332
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>;
2333
2703
  /**
2334
2704
  * The deserialization information for the current model
2335
2705
  * @returns {Record<string, (node: ParseNode) => void>}
@@ -2385,6 +2755,16 @@ export declare function deserializeIntoSslCertificateEntity(sslCertificateEntity
2385
2755
  * @returns {Record<string, (node: ParseNode) => void>}
2386
2756
  */
2387
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>;
2388
2768
  /**
2389
2769
  * The deserialization information for the current model
2390
2770
  * @returns {Record<string, (node: ParseNode) => void>}
@@ -2552,6 +2932,14 @@ export interface DeviceEvidence extends AlertEvidence, Parsable {
2552
2932
  * Ip interfaces of the device during the time of the alert.
2553
2933
  */
2554
2934
  ipInterfaces?: string[];
2935
+ /**
2936
+ * The lastExternalIpAddress property
2937
+ */
2938
+ lastExternalIpAddress?: string;
2939
+ /**
2940
+ * The lastIpAddress property
2941
+ */
2942
+ lastIpAddress?: string;
2555
2943
  /**
2556
2944
  * Users that were logged on the machine during the time of the alert.
2557
2945
  */
@@ -2609,6 +2997,26 @@ export interface Dictionary extends AdditionalDataHolder, BackedModel, Parsable
2609
2997
  */
2610
2998
  odataType?: string;
2611
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
+ }
2612
3020
  export interface DnsEvidence extends AlertEvidence, Parsable {
2613
3021
  /**
2614
3022
  * The dnsServerIp property
@@ -3076,20 +3484,126 @@ export interface FileHash extends AdditionalDataHolder, BackedModel, Parsable {
3076
3484
  */
3077
3485
  odataType?: string;
3078
3486
  /**
3079
- * The hash value.
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>;
3569
+ /**
3570
+ * Stores model information.
3571
+ */
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;
3577
+ /**
3578
+ * The OdataType property
3579
+ */
3580
+ odataType?: string;
3581
+ }
3582
+ export interface FilePlanDescriptorTemplate extends Entity, Parsable {
3583
+ /**
3584
+ * Represents the user who created the filePlanDescriptorTemplate column.
3080
3585
  */
3081
- value?: string;
3082
- }
3083
- export type FileHashAlgorithm = (typeof FileHashAlgorithmObject)[keyof typeof FileHashAlgorithmObject];
3084
- export interface FileHashEvidence extends AlertEvidence, Parsable {
3586
+ createdBy?: IdentitySet;
3085
3587
  /**
3086
- * The algorithm property
3588
+ * Represents the date and time in which the filePlanDescriptorTemplate is created.
3087
3589
  */
3088
- algorithm?: FileHashAlgorithm;
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 {
3089
3601
  /**
3090
3602
  * The value property
3091
3603
  */
3092
- value?: string;
3604
+ value?: FilePlanReferenceTemplate[];
3605
+ }
3606
+ export interface FilePlanSubcategory extends FilePlanDescriptorBase, Parsable {
3093
3607
  }
3094
3608
  export interface FormattedContent extends AdditionalDataHolder, BackedModel, Parsable {
3095
3609
  /**
@@ -3113,6 +3627,40 @@ export interface FormattedContent extends AdditionalDataHolder, BackedModel, Par
3113
3627
  */
3114
3628
  odataType?: string;
3115
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
+ }
3116
3664
  export interface GitHubOrganizationEvidence extends AlertEvidence, Parsable {
3117
3665
  /**
3118
3666
  * The company property
@@ -3759,6 +4307,10 @@ export interface Incident extends Entity, Parsable {
3759
4307
  * 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.
3760
4308
  */
3761
4309
  redirectIncidentId?: string;
4310
+ /**
4311
+ * User input that explains the resolution of the incident and the classification choice. This property contains free editable text.
4312
+ */
4313
+ resolvingComment?: string;
3762
4314
  /**
3763
4315
  * The severity property
3764
4316
  */
@@ -4015,6 +4567,10 @@ export interface IpEvidence extends AlertEvidence, Parsable {
4015
4567
  * The value of the IP Address, can be either in V4 address or V6 address format.
4016
4568
  */
4017
4569
  ipAddress?: string;
4570
+ /**
4571
+ * The location property
4572
+ */
4573
+ location?: GeoLocation;
4018
4574
  /**
4019
4575
  * The stream property
4020
4576
  */
@@ -4210,6 +4766,32 @@ export interface KubernetesServicePort extends AdditionalDataHolder, BackedModel
4210
4766
  targetPort?: string;
4211
4767
  }
4212
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
+ }
4213
4795
  export interface LoggedOnUser extends AdditionalDataHolder, BackedModel, Parsable {
4214
4796
  /**
4215
4797
  * User account name of the logged-on user.
@@ -4542,6 +5124,28 @@ export interface RegistryValueEvidence extends AlertEvidence, Parsable {
4542
5124
  */
4543
5125
  registryValueType?: string;
4544
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
+ }
4545
5149
  export interface RetentionEvent extends Entity, Parsable {
4546
5150
  /**
4547
5151
  * The user who created the retentionEvent.
@@ -4652,6 +5256,83 @@ export interface RetentionEventTypeCollectionResponse extends BaseCollectionPagi
4652
5256
  */
4653
5257
  value?: RetentionEventType[];
4654
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];
4655
5336
  export interface SasTokenEvidence extends AlertEvidence, Parsable {
4656
5337
  /**
4657
5338
  * The allowedIpAddresses property
@@ -4789,6 +5470,16 @@ export declare function serializeArticleIndicatorCollectionResponse(writer: Seri
4789
5470
  * @param writer Serialization writer to use to serialize this model
4790
5471
  */
4791
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;
4792
5483
  /**
4793
5484
  * Serializes information the current object
4794
5485
  * @param writer Serialization writer to use to serialize this model
@@ -4829,6 +5520,26 @@ export declare function serializeCaseOperationCollectionResponse(writer: Seriali
4829
5520
  * @param writer Serialization writer to use to serialize this model
4830
5521
  */
4831
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;
4832
5543
  /**
4833
5544
  * Serializes information the current object
4834
5545
  * @param writer Serialization writer to use to serialize this model
@@ -4874,6 +5585,16 @@ export declare function serializeDataSourceCollectionResponse(writer: Serializat
4874
5585
  * @param writer Serialization writer to use to serialize this model
4875
5586
  */
4876
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;
4877
5598
  /**
4878
5599
  * Serializes information the current object
4879
5600
  * @param writer Serialization writer to use to serialize this model
@@ -4884,6 +5605,16 @@ export declare function serializeDeviceEvidence(writer: SerializationWriter, dev
4884
5605
  * @param writer Serialization writer to use to serialize this model
4885
5606
  */
4886
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;
4887
5618
  /**
4888
5619
  * Serializes information the current object
4889
5620
  * @param writer Serialization writer to use to serialize this model
@@ -5039,11 +5770,71 @@ export declare function serializeFileHash(writer: SerializationWriter, fileHash?
5039
5770
  * @param writer Serialization writer to use to serialize this model
5040
5771
  */
5041
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;
5042
5828
  /**
5043
5829
  * Serializes information the current object
5044
5830
  * @param writer Serialization writer to use to serialize this model
5045
5831
  */
5046
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;
5047
5838
  /**
5048
5839
  * Serializes information the current object
5049
5840
  * @param writer Serialization writer to use to serialize this model
@@ -5279,6 +6070,11 @@ export declare function serializeKubernetesServiceEvidence(writer: Serialization
5279
6070
  * @param writer Serialization writer to use to serialize this model
5280
6071
  */
5281
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;
5282
6078
  /**
5283
6079
  * Serializes information the current object
5284
6080
  * @param writer Serialization writer to use to serialize this model
@@ -5354,6 +6150,21 @@ export declare function serializeRegistryKeyEvidence(writer: SerializationWriter
5354
6150
  * @param writer Serialization writer to use to serialize this model
5355
6151
  */
5356
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;
5357
6168
  /**
5358
6169
  * Serializes information the current object
5359
6170
  * @param writer Serialization writer to use to serialize this model
@@ -5379,6 +6190,16 @@ export declare function serializeRetentionEventType(writer: SerializationWriter,
5379
6190
  * @param writer Serialization writer to use to serialize this model
5380
6191
  */
5381
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;
5382
6203
  /**
5383
6204
  * Serializes information the current object
5384
6205
  * @param writer Serialization writer to use to serialize this model
@@ -5434,6 +6255,16 @@ export declare function serializeSslCertificateEntity(writer: SerializationWrite
5434
6255
  * @param writer Serialization writer to use to serialize this model
5435
6256
  */
5436
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;
5437
6268
  /**
5438
6269
  * Serializes information the current object
5439
6270
  * @param writer Serialization writer to use to serialize this model
@@ -5753,6 +6584,14 @@ export interface Stream extends AdditionalDataHolder, BackedModel, Parsable {
5753
6584
  */
5754
6585
  odataType?: string;
5755
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
+ }
5756
6595
  export interface Subdomain extends Entity, Parsable {
5757
6596
  /**
5758
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.
@@ -6315,6 +7154,13 @@ export interface WhoisRecordCollectionResponse extends BaseCollectionPaginationC
6315
7154
  */
6316
7155
  value?: WhoisRecord[];
6317
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
+ };
6318
7164
  export declare const AdditionalDataOptionsObject: {
6319
7165
  readonly AllVersions: "allVersions";
6320
7166
  readonly LinkedFiles: "linkedFiles";
@@ -6434,6 +7280,11 @@ export declare const DataSourceScopesObject: {
6434
7280
  readonly AllCaseNoncustodialDataSources: "allCaseNoncustodialDataSources";
6435
7281
  readonly UnknownFutureValue: "unknownFutureValue";
6436
7282
  };
7283
+ export declare const DefaultRecordBehaviorObject: {
7284
+ readonly StartLocked: "startLocked";
7285
+ readonly StartUnlocked: "startUnlocked";
7286
+ readonly UnknownFutureValue: "unknownFutureValue";
7287
+ };
6437
7288
  export declare const DefenderAvStatusObject: {
6438
7289
  readonly NotReporting: "notReporting";
6439
7290
  readonly Disabled: "disabled";
@@ -6680,6 +7531,13 @@ export declare const QueryTypeObject: {
6680
7531
  readonly Messages: "messages";
6681
7532
  readonly UnknownFutureValue: "unknownFutureValue";
6682
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
+ };
6683
7541
  export declare const ServicePrincipalTypeObject: {
6684
7542
  readonly Unknown: "unknown";
6685
7543
  readonly Application: "application";