@microsoft/msgraph-sdk 1.0.0-preview.75 → 1.0.0-preview.77
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 +4 -4
- package/models/externalConnectors/index.d.ts +3 -3
- package/models/index.d.ts +1534 -277
- package/models/index.d.ts.map +1 -1
- package/models/index.js +1282 -15
- package/models/index.js.map +1 -1
- package/models/partners/billing/index.d.ts +1 -1
- package/models/search/index.d.ts +3 -3
- package/models/security/index.d.ts +137 -36
- package/models/security/index.d.ts.map +1 -1
- package/models/security/index.js +113 -2
- package/models/security/index.js.map +1 -1
- package/models/teamsAdministration/index.d.ts +256 -0
- package/models/teamsAdministration/index.d.ts.map +1 -0
- package/models/teamsAdministration/index.js +254 -0
- package/models/teamsAdministration/index.js.map +1 -0
- package/models/termStore/index.d.ts +2 -2
- package/package.json +2 -3
- package/tsconfig.tsbuildinfo +1 -1
- package/version.d.ts +1 -1
- package/version.js +1 -1
- package/LICENSE +0 -21
|
@@ -312,7 +312,7 @@ export interface Operation extends Entity, Parsable {
|
|
|
312
312
|
*/
|
|
313
313
|
lastActionDateTime?: Date | null;
|
|
314
314
|
/**
|
|
315
|
-
* The status of the operation.
|
|
315
|
+
* The status of the operation. The possible values are: notStarted, running, completed, failed, unknownFutureValue.
|
|
316
316
|
*/
|
|
317
317
|
status?: LongRunningOperationStatus | null;
|
|
318
318
|
}
|
package/models/search/index.d.ts
CHANGED
|
@@ -61,7 +61,7 @@ export interface AnswerVariant extends AdditionalDataHolder, BackedModel, Parsab
|
|
|
61
61
|
*/
|
|
62
62
|
odataType?: string | null;
|
|
63
63
|
/**
|
|
64
|
-
* The device or operating system that can view this answer variation.
|
|
64
|
+
* The device or operating system that can view this answer variation. The possible values are: android, androidForWork, ios, macOS, windowsPhone81, windowsPhone81AndLater, windows10AndLater, androidWorkProfile, unknown, androidASOP, androidMobileApplicationManagement, iOSMobileApplicationManagement, unknownFutureValue.
|
|
65
65
|
*/
|
|
66
66
|
platform?: DevicePlatformType | null;
|
|
67
67
|
/**
|
|
@@ -99,7 +99,7 @@ export interface Bookmark extends Parsable, SearchAnswer {
|
|
|
99
99
|
*/
|
|
100
100
|
languageTags?: string[] | null;
|
|
101
101
|
/**
|
|
102
|
-
* List of devices and operating systems that are able to view this bookmark.
|
|
102
|
+
* List of devices and operating systems that are able to view this bookmark. The possible values are: android, androidForWork, ios, macOS, windowsPhone81, windowsPhone81AndLater, windows10AndLater, androidWorkProfile, unknown, androidASOP, androidMobileApplicationManagement, iOSMobileApplicationManagement, unknownFutureValue.
|
|
103
103
|
*/
|
|
104
104
|
platforms?: DevicePlatformType[] | null;
|
|
105
105
|
/**
|
|
@@ -319,7 +319,7 @@ export interface Qna extends Parsable, SearchAnswer {
|
|
|
319
319
|
*/
|
|
320
320
|
languageTags?: string[] | null;
|
|
321
321
|
/**
|
|
322
|
-
* List of devices and operating systems that are able to view this QnA.
|
|
322
|
+
* List of devices and operating systems that are able to view this QnA. The possible values are: android, androidForWork, ios, macOS, windowsPhone81, windowsPhone81AndLater, windows10AndLater, androidWorkProfile, unknown, androidASOP, androidMobileApplicationManagement, iOSMobileApplicationManagement, unknownFutureValue.
|
|
323
323
|
*/
|
|
324
324
|
platforms?: DevicePlatformType[] | null;
|
|
325
325
|
/**
|
|
@@ -24,6 +24,16 @@ export interface Account extends AdditionalDataHolder, BackedModel, Parsable {
|
|
|
24
24
|
}
|
|
25
25
|
export type Action = (typeof ActionObject)[keyof typeof ActionObject];
|
|
26
26
|
export type ActionAfterRetentionPeriod = (typeof ActionAfterRetentionPeriodObject)[keyof typeof ActionAfterRetentionPeriodObject];
|
|
27
|
+
export interface ActiveDirectoryDomainEvidence extends AlertEvidence, Parsable {
|
|
28
|
+
/**
|
|
29
|
+
* The activeDirectoryDomainName property
|
|
30
|
+
*/
|
|
31
|
+
activeDirectoryDomainName?: string | null;
|
|
32
|
+
/**
|
|
33
|
+
* The trustedDomains property
|
|
34
|
+
*/
|
|
35
|
+
trustedDomains?: ActiveDirectoryDomainEvidence[] | null;
|
|
36
|
+
}
|
|
27
37
|
export type AdditionalDataOptions = (typeof AdditionalDataOptionsObject)[keyof typeof AdditionalDataOptionsObject];
|
|
28
38
|
export type AdditionalOptions = (typeof AdditionalOptionsObject)[keyof typeof AdditionalOptionsObject];
|
|
29
39
|
export interface AiAgentEvidence extends AlertEvidence, Parsable {
|
|
@@ -36,7 +46,7 @@ export interface AiAgentEvidence extends AlertEvidence, Parsable {
|
|
|
36
46
|
*/
|
|
37
47
|
agentName?: string | null;
|
|
38
48
|
/**
|
|
39
|
-
* Type of the platform the agent runs on.
|
|
49
|
+
* Type of the platform the agent runs on. The possible values are: unknown, azureAIFoundry, copilotStudio, copilot, unknownFutureValue.
|
|
40
50
|
*/
|
|
41
51
|
hostingPlatformType?: AiAgentPlatform | null;
|
|
42
52
|
/**
|
|
@@ -71,7 +81,7 @@ export interface Alert extends Entity, Parsable {
|
|
|
71
81
|
*/
|
|
72
82
|
category?: string | null;
|
|
73
83
|
/**
|
|
74
|
-
* Specifies whether the alert represents a true threat.
|
|
84
|
+
* Specifies whether the alert represents a true threat. The possible values are: unknown, falsePositive, truePositive, informationalExpectedActivity, unknownFutureValue.
|
|
75
85
|
*/
|
|
76
86
|
classification?: AlertClassification | null;
|
|
77
87
|
/**
|
|
@@ -91,7 +101,7 @@ export interface Alert extends Entity, Parsable {
|
|
|
91
101
|
*/
|
|
92
102
|
description?: string | null;
|
|
93
103
|
/**
|
|
94
|
-
* Detection technology or sensor that identified the notable component or activity.
|
|
104
|
+
* Detection technology or sensor that identified the notable component or activity. The possible values are: unknown, microsoftDefenderForEndpoint, antivirus, smartScreen, customTi, microsoftDefenderForOffice365, automatedInvestigation, microsoftThreatExperts, customDetection, microsoftDefenderForIdentity, cloudAppSecurity, microsoft365Defender, azureAdIdentityProtection, manual, microsoftDataLossPrevention, appGovernancePolicy, appGovernanceDetection, unknownFutureValue, microsoftDefenderForCloud, microsoftDefenderForIoT, microsoftDefenderForServers, microsoftDefenderForStorage, microsoftDefenderForDNS, microsoftDefenderForDatabases, microsoftDefenderForContainers, microsoftDefenderForNetwork, microsoftDefenderForAppService, microsoftDefenderForKeyVault, microsoftDefenderForResourceManager, microsoftDefenderForApiManagement, microsoftSentinel, nrtAlerts, scheduledAlerts, microsoftDefenderThreatIntelligenceAnalytics, builtInMl, microsoftThreatIntelligence, microsoftDefenderForAIServices, securityCopilot. Use the Prefer: include-unknown-enum-members request header to get the following values in this evolvable enum: microsoftDefenderForCloud, microsoftDefenderForIoT, microsoftDefenderForServers, microsoftDefenderForStorage, microsoftDefenderForDNS, microsoftDefenderForDatabases, microsoftDefenderForContainers, microsoftDefenderForNetwork, microsoftDefenderForAppService, microsoftDefenderForKeyVault, microsoftDefenderForResourceManager, microsoftDefenderForApiManagement, microsoftSentinel, nrtAlerts, scheduledAlerts, microsoftDefenderThreatIntelligenceAnalytics, builtInMl, microsoftThreatIntelligence, microsoftDefenderForAIServices, securityCopilot.
|
|
95
105
|
*/
|
|
96
106
|
detectionSource?: DetectionSource | null;
|
|
97
107
|
/**
|
|
@@ -99,7 +109,7 @@ export interface Alert extends Entity, Parsable {
|
|
|
99
109
|
*/
|
|
100
110
|
detectorId?: string | null;
|
|
101
111
|
/**
|
|
102
|
-
* Specifies the result of the investigation, whether the alert represents a true attack and if so, the nature of the attack.
|
|
112
|
+
* Specifies the result of the investigation, whether the alert represents a true attack and if so, the nature of the attack. The possible values are: unknown, apt, malware, securityPersonnel, securityTesting, unwantedSoftware, other, multiStagedAttack, compromisedAccount, phishing, maliciousUserActivity, notMalicious, notEnoughDataToValidate, confirmedUserActivity, lineOfBusinessApplication, unknownFutureValue.
|
|
103
113
|
*/
|
|
104
114
|
determination?: AlertDetermination | null;
|
|
105
115
|
/**
|
|
@@ -119,7 +129,7 @@ export interface Alert extends Entity, Parsable {
|
|
|
119
129
|
*/
|
|
120
130
|
incidentWebUrl?: string | null;
|
|
121
131
|
/**
|
|
122
|
-
* Information on the current status of the investigation.
|
|
132
|
+
* Information on the current status of the investigation. The possible values are: unknown, terminated, successfullyRemediated, benign, failed, partiallyRemediated, running, pendingApproval, pendingResource, queued, innerFailure, preexistingAlert, unsupportedOs, unsupportedAlertType, suppressedAlert, partiallyInvestigated, terminatedByUser, terminatedBySystem, unknownFutureValue.
|
|
123
133
|
*/
|
|
124
134
|
investigationState?: InvestigationState | null;
|
|
125
135
|
/**
|
|
@@ -514,7 +524,7 @@ export interface CaseEscaped extends Entity, Parsable {
|
|
|
514
524
|
}
|
|
515
525
|
export interface CaseOperation extends Entity, Parsable {
|
|
516
526
|
/**
|
|
517
|
-
* The type of action the operation represents.
|
|
527
|
+
* The type of action the operation represents. The possible values are: contentExport, applyTags, convertToPdf, index, estimateStatistics, addToReviewSet, holdUpdate, unknownFutureValue, purgeData, exportReport, exportResult, holdPolicySync. Use the Prefer: include-unknown-enum-members request header to get the following values from this evolvable enum: purgeData, exportReport, exportResult, holdPolicySync.
|
|
518
528
|
*/
|
|
519
529
|
action?: CaseAction | null;
|
|
520
530
|
/**
|
|
@@ -538,7 +548,7 @@ export interface CaseOperation extends Entity, Parsable {
|
|
|
538
548
|
*/
|
|
539
549
|
resultInfo?: ResultInfo | null;
|
|
540
550
|
/**
|
|
541
|
-
* The status of the case operation.
|
|
551
|
+
* The status of the case operation. The possible values are: notStarted, submissionFailed, running, succeeded, partiallySucceeded, failed, unknownFutureValue.
|
|
542
552
|
*/
|
|
543
553
|
status?: CaseOperationStatus | null;
|
|
544
554
|
}
|
|
@@ -715,6 +725,12 @@ export type ContentFormat = (typeof ContentFormatObject)[keyof typeof ContentFor
|
|
|
715
725
|
* @returns {Account}
|
|
716
726
|
*/
|
|
717
727
|
export declare function createAccountFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
728
|
+
/**
|
|
729
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
730
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
731
|
+
* @returns {ActiveDirectoryDomainEvidence}
|
|
732
|
+
*/
|
|
733
|
+
export declare function createActiveDirectoryDomainEvidenceFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
718
734
|
/**
|
|
719
735
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
720
736
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
@@ -1003,6 +1019,18 @@ export declare function createEdiscoveryCaseCollectionResponseFromDiscriminatorV
|
|
|
1003
1019
|
* @returns {EdiscoveryCase}
|
|
1004
1020
|
*/
|
|
1005
1021
|
export declare function createEdiscoveryCaseFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
1022
|
+
/**
|
|
1023
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
1024
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
1025
|
+
* @returns {EdiscoveryCaseMemberCollectionResponse}
|
|
1026
|
+
*/
|
|
1027
|
+
export declare function createEdiscoveryCaseMemberCollectionResponseFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
1028
|
+
/**
|
|
1029
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
1030
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
1031
|
+
* @returns {EdiscoveryCaseMember}
|
|
1032
|
+
*/
|
|
1033
|
+
export declare function createEdiscoveryCaseMemberFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
1006
1034
|
/**
|
|
1007
1035
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
1008
1036
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
@@ -2133,7 +2161,7 @@ export interface DataSourceContainer extends Entity, Parsable {
|
|
|
2133
2161
|
*/
|
|
2134
2162
|
releasedDateTime?: Date | null;
|
|
2135
2163
|
/**
|
|
2136
|
-
* Latest status of the dataSourceContainer.
|
|
2164
|
+
* Latest status of the dataSourceContainer. The possible values are: Active, Released.
|
|
2137
2165
|
*/
|
|
2138
2166
|
status?: DataSourceContainerStatus | null;
|
|
2139
2167
|
}
|
|
@@ -2171,6 +2199,12 @@ export type DeploymentStatus = (typeof DeploymentStatusObject)[keyof typeof Depl
|
|
|
2171
2199
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
2172
2200
|
*/
|
|
2173
2201
|
export declare function deserializeIntoAccount(account?: Partial<Account> | undefined): Record<string, (node: ParseNode) => void>;
|
|
2202
|
+
/**
|
|
2203
|
+
* The deserialization information for the current model
|
|
2204
|
+
* @param ActiveDirectoryDomainEvidence The instance to deserialize into.
|
|
2205
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
2206
|
+
*/
|
|
2207
|
+
export declare function deserializeIntoActiveDirectoryDomainEvidence(activeDirectoryDomainEvidence?: Partial<ActiveDirectoryDomainEvidence> | undefined): Record<string, (node: ParseNode) => void>;
|
|
2174
2208
|
/**
|
|
2175
2209
|
* The deserialization information for the current model
|
|
2176
2210
|
* @param AiAgentEvidence The instance to deserialize into.
|
|
@@ -2459,6 +2493,18 @@ export declare function deserializeIntoEdiscoveryCase(ediscoveryCase?: Partial<E
|
|
|
2459
2493
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
2460
2494
|
*/
|
|
2461
2495
|
export declare function deserializeIntoEdiscoveryCaseCollectionResponse(ediscoveryCaseCollectionResponse?: Partial<EdiscoveryCaseCollectionResponse> | undefined): Record<string, (node: ParseNode) => void>;
|
|
2496
|
+
/**
|
|
2497
|
+
* The deserialization information for the current model
|
|
2498
|
+
* @param EdiscoveryCaseMember The instance to deserialize into.
|
|
2499
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
2500
|
+
*/
|
|
2501
|
+
export declare function deserializeIntoEdiscoveryCaseMember(ediscoveryCaseMember?: Partial<EdiscoveryCaseMember> | undefined): Record<string, (node: ParseNode) => void>;
|
|
2502
|
+
/**
|
|
2503
|
+
* The deserialization information for the current model
|
|
2504
|
+
* @param EdiscoveryCaseMemberCollectionResponse The instance to deserialize into.
|
|
2505
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
2506
|
+
*/
|
|
2507
|
+
export declare function deserializeIntoEdiscoveryCaseMemberCollectionResponse(ediscoveryCaseMemberCollectionResponse?: Partial<EdiscoveryCaseMemberCollectionResponse> | undefined): Record<string, (node: ParseNode) => void>;
|
|
2462
2508
|
/**
|
|
2463
2509
|
* The deserialization information for the current model
|
|
2464
2510
|
* @param EdiscoveryCaseSettings The instance to deserialize into.
|
|
@@ -3511,7 +3557,7 @@ export interface DeviceEvidence extends AlertEvidence, Parsable {
|
|
|
3511
3557
|
*/
|
|
3512
3558
|
azureAdDeviceId?: string | null;
|
|
3513
3559
|
/**
|
|
3514
|
-
* State of the Defender
|
|
3560
|
+
* State of the Defender anti-malware engine. The possible values are: notReporting, disabled, notUpdated, updated, unknown, notSupported, unknownFutureValue.
|
|
3515
3561
|
*/
|
|
3516
3562
|
defenderAvStatus?: DefenderAvStatus | null;
|
|
3517
3563
|
/**
|
|
@@ -3578,6 +3624,10 @@ export interface DeviceEvidence extends AlertEvidence, Parsable {
|
|
|
3578
3624
|
* The name of the RBAC device group.
|
|
3579
3625
|
*/
|
|
3580
3626
|
rbacGroupName?: string | null;
|
|
3627
|
+
/**
|
|
3628
|
+
* Information on resource access attempts made by the user account.
|
|
3629
|
+
*/
|
|
3630
|
+
resourceAccessEvents?: ResourceAccessEvent[] | null;
|
|
3581
3631
|
/**
|
|
3582
3632
|
* Risk score as evaluated by Microsoft Defender for Endpoint. The possible values are: none, informational, low, medium, high, unknownFutureValue.
|
|
3583
3633
|
*/
|
|
@@ -3644,19 +3694,19 @@ export interface DnsEvidence extends AlertEvidence, Parsable {
|
|
|
3644
3694
|
export type DocumentVersion = (typeof DocumentVersionObject)[keyof typeof DocumentVersionObject];
|
|
3645
3695
|
export interface EdiscoveryAddToReviewSetOperation extends CaseOperation, Parsable {
|
|
3646
3696
|
/**
|
|
3647
|
-
* The options to add items to the review set.
|
|
3697
|
+
* The options to add items to the review set. The possible values are: allVersions, linkedFiles, unknownFutureValue, advancedIndexing, listAttachments, htmlTranscripts, messageConversationExpansion, locationsWithoutHits, allItemsInFolder. Use the Prefer: include-unknown-enum-members request header to get the following values from this evolvable enum: advancedIndexing, listAttachments, htmlTranscripts, messageConversationExpansion, locationsWithoutHits, allItemsInFolder.
|
|
3648
3698
|
*/
|
|
3649
3699
|
additionalDataOptions?: AdditionalDataOptions[] | null;
|
|
3650
3700
|
/**
|
|
3651
|
-
* Specifies the number of most recent versions of cloud attachments to collect.
|
|
3701
|
+
* Specifies the number of most recent versions of cloud attachments to collect. The possible values are: latest, recent10, recent100, all, unknownFutureValue.
|
|
3652
3702
|
*/
|
|
3653
3703
|
cloudAttachmentVersion?: CloudAttachmentVersion | null;
|
|
3654
3704
|
/**
|
|
3655
|
-
* Specifies the number of most recent versions of SharePoint documents to collect.
|
|
3705
|
+
* Specifies the number of most recent versions of SharePoint documents to collect. The possible values are: latest, recent10, recent100, all, unknownFutureValue.
|
|
3656
3706
|
*/
|
|
3657
3707
|
documentVersion?: DocumentVersion | null;
|
|
3658
3708
|
/**
|
|
3659
|
-
* The items to include in the review set.
|
|
3709
|
+
* The items to include in the review set. The possible values are: searchHits, partiallyIndexed, unknownFutureValue.
|
|
3660
3710
|
*/
|
|
3661
3711
|
itemsToInclude?: ItemsToInclude[] | null;
|
|
3662
3712
|
/**
|
|
@@ -3673,6 +3723,10 @@ export interface EdiscoveryAddToReviewSetOperation extends CaseOperation, Parsab
|
|
|
3673
3723
|
search?: EdiscoverySearch | null;
|
|
3674
3724
|
}
|
|
3675
3725
|
export interface EdiscoveryCase extends CaseEscaped, Parsable {
|
|
3726
|
+
/**
|
|
3727
|
+
* Represents members of an eDiscovery case.
|
|
3728
|
+
*/
|
|
3729
|
+
caseMembers?: EdiscoveryCaseMember[] | null;
|
|
3676
3730
|
/**
|
|
3677
3731
|
* The user who closed the case.
|
|
3678
3732
|
*/
|
|
@@ -3720,6 +3774,26 @@ export interface EdiscoveryCaseCollectionResponse extends BaseCollectionPaginati
|
|
|
3720
3774
|
*/
|
|
3721
3775
|
value?: EdiscoveryCase[] | null;
|
|
3722
3776
|
}
|
|
3777
|
+
export interface EdiscoveryCaseMember extends Entity, Parsable {
|
|
3778
|
+
/**
|
|
3779
|
+
* The display name of the eDiscovery case member. Allowed only for case members of type roleGroup.
|
|
3780
|
+
*/
|
|
3781
|
+
displayName?: string | null;
|
|
3782
|
+
/**
|
|
3783
|
+
* Specifies the recipient type of the eDiscovery case member. The possible values are: user, roleGroup, unknownFutureValue.
|
|
3784
|
+
*/
|
|
3785
|
+
recipientType?: RecipientType[] | null;
|
|
3786
|
+
/**
|
|
3787
|
+
* The smtp address of the eDiscovery case member. Allowed only for case members of type user.
|
|
3788
|
+
*/
|
|
3789
|
+
smtpAddress?: string | null;
|
|
3790
|
+
}
|
|
3791
|
+
export interface EdiscoveryCaseMemberCollectionResponse extends BaseCollectionPaginationCountResponse, Parsable {
|
|
3792
|
+
/**
|
|
3793
|
+
* The value property
|
|
3794
|
+
*/
|
|
3795
|
+
value?: EdiscoveryCaseMember[] | null;
|
|
3796
|
+
}
|
|
3723
3797
|
export interface EdiscoveryCaseSettings extends Entity, Parsable {
|
|
3724
3798
|
/**
|
|
3725
3799
|
* The caseType property
|
|
@@ -3734,7 +3808,7 @@ export interface EdiscoveryCaseSettings extends Entity, Parsable {
|
|
|
3734
3808
|
*/
|
|
3735
3809
|
redundancyDetection?: RedundancyDetectionSettings | null;
|
|
3736
3810
|
/**
|
|
3737
|
-
* The settings of the review set for the case.
|
|
3811
|
+
* The settings of the review set for the case. The possible values are: none, disableGrouping, unknownFutureValue.
|
|
3738
3812
|
*/
|
|
3739
3813
|
reviewSetSettings?: ReviewSetSettings[] | null;
|
|
3740
3814
|
/**
|
|
@@ -3800,7 +3874,7 @@ export interface EdiscoveryEstimateOperation extends CaseOperation, Parsable {
|
|
|
3800
3874
|
*/
|
|
3801
3875
|
siteCount?: number | null;
|
|
3802
3876
|
/**
|
|
3803
|
-
* The options to generate statistics.
|
|
3877
|
+
* The options to generate statistics. The possible values are: includeRefiners, includeQueryStats, includeUnindexedStats, advancedIndexing, locationsWithoutHits, unknownFutureValue.
|
|
3804
3878
|
*/
|
|
3805
3879
|
statisticsOptions?: StatisticsOptions[] | null;
|
|
3806
3880
|
/**
|
|
@@ -3822,11 +3896,11 @@ export interface EdiscoveryExportOperation extends CaseOperation, Parsable {
|
|
|
3822
3896
|
*/
|
|
3823
3897
|
exportFileMetadata?: ExportFileMetadata[] | null;
|
|
3824
3898
|
/**
|
|
3825
|
-
* The options provided for the export. For more information, see reviewSet: export.
|
|
3899
|
+
* The options provided for the export. For more information, see reviewSet: export. The possible values are: originalFiles, text, pdfReplacement, tags, unknownFutureValue, splitSource, includeFolderAndPath, friendlyName, condensePaths. Use the Prefer: include-unknown-enum-members request header to get the following values from this evolvable enum: splitSource, includeFolderAndPath, friendlyName, condensePaths.
|
|
3826
3900
|
*/
|
|
3827
3901
|
exportOptions?: ExportOptions[] | null;
|
|
3828
3902
|
/**
|
|
3829
|
-
* The options that specify the structure of the export. For more information, see reviewSet: export.
|
|
3903
|
+
* The options that specify the structure of the export. For more information, see reviewSet: export. The possible values are: none, directory (deprecated), pst, unknownFutureValue, msg. Use the Prefer: include-unknown-enum-members request header to get the following members from this evolvable enum: msg. The directory member is deprecated. It remains in v1.0 for backward compatibility. Going forward, use either pst or msg.
|
|
3830
3904
|
*/
|
|
3831
3905
|
exportStructure?: ExportFileStructure | null;
|
|
3832
3906
|
/**
|
|
@@ -3892,7 +3966,7 @@ export interface EdiscoveryReviewSetQueryCollectionResponse extends BaseCollecti
|
|
|
3892
3966
|
}
|
|
3893
3967
|
export interface EdiscoveryReviewTag extends Parsable, Tag {
|
|
3894
3968
|
/**
|
|
3895
|
-
* Indicates whether a single or multiple child tags can be associated with a document.
|
|
3969
|
+
* Indicates whether a single or multiple child tags can be associated with a document. The possible values are: One, Many. This value controls whether the UX presents the tags as checkboxes or a radio button group.
|
|
3896
3970
|
*/
|
|
3897
3971
|
childSelectability?: ChildSelectability | null;
|
|
3898
3972
|
/**
|
|
@@ -3924,7 +3998,7 @@ export interface EdiscoverySearch extends Parsable, Search {
|
|
|
3924
3998
|
*/
|
|
3925
3999
|
custodianSources?: DataSource[] | null;
|
|
3926
4000
|
/**
|
|
3927
|
-
* When specified, the collection spans across a service for an entire workload.
|
|
4001
|
+
* When specified, the collection spans across a service for an entire workload. The possible values are: none, allTenantMailboxes, allTenantSites, allCaseCustodians, allCaseNoncustodialDataSources.
|
|
3928
4002
|
*/
|
|
3929
4003
|
dataSourceScopes?: DataSourceScopes[] | null;
|
|
3930
4004
|
/**
|
|
@@ -3948,7 +4022,7 @@ export interface EdiscoverySearchExportOperation extends CaseOperation, Parsable
|
|
|
3948
4022
|
*/
|
|
3949
4023
|
additionalOptions?: AdditionalOptions[] | null;
|
|
3950
4024
|
/**
|
|
3951
|
-
* The versions of cloud attachments to include in messages.
|
|
4025
|
+
* The versions of cloud attachments to include in messages. The possible values are: latest, recent10, recent100, all, unknownFutureValue.
|
|
3952
4026
|
*/
|
|
3953
4027
|
cloudAttachmentVersion?: CloudAttachmentVersion | null;
|
|
3954
4028
|
/**
|
|
@@ -3960,7 +4034,7 @@ export interface EdiscoverySearchExportOperation extends CaseOperation, Parsable
|
|
|
3960
4034
|
*/
|
|
3961
4035
|
displayName?: string | null;
|
|
3962
4036
|
/**
|
|
3963
|
-
* The versions of files in SharePoint to include.
|
|
4037
|
+
* The versions of files in SharePoint to include. The possible values are: latest, recent10, recent100, all, unknownFutureValue.
|
|
3964
4038
|
*/
|
|
3965
4039
|
documentVersion?: DocumentVersion | null;
|
|
3966
4040
|
/**
|
|
@@ -4412,7 +4486,7 @@ export interface GoogleCloudResourceEvidence extends AlertEvidence, Parsable {
|
|
|
4412
4486
|
*/
|
|
4413
4487
|
location?: string | null;
|
|
4414
4488
|
/**
|
|
4415
|
-
* The type of location.
|
|
4489
|
+
* The type of location. The possible values are: unknown, regional, zonal, global, unknownFutureValue.
|
|
4416
4490
|
*/
|
|
4417
4491
|
locationType?: GoogleCloudLocationType | null;
|
|
4418
4492
|
/**
|
|
@@ -5024,7 +5098,7 @@ export interface Incident extends Entity, Parsable {
|
|
|
5024
5098
|
*/
|
|
5025
5099
|
assignedTo?: string | null;
|
|
5026
5100
|
/**
|
|
5027
|
-
* The specification for the incident.
|
|
5101
|
+
* The specification for the incident. The possible values are: unknown, falsePositive, truePositive, informationalExpectedActivity, unknownFutureValue.
|
|
5028
5102
|
*/
|
|
5029
5103
|
classification?: AlertClassification | null;
|
|
5030
5104
|
/**
|
|
@@ -5044,7 +5118,7 @@ export interface Incident extends Entity, Parsable {
|
|
|
5044
5118
|
*/
|
|
5045
5119
|
description?: string | null;
|
|
5046
5120
|
/**
|
|
5047
|
-
* Specifies the determination of the incident.
|
|
5121
|
+
* Specifies the determination of the incident. The possible values are: unknown, apt, malware, securityPersonnel, securityTesting, unwantedSoftware, other, multiStagedAttack, compromisedUser, phishing, maliciousUserActivity, clean, insufficientData, confirmedUserActivity, lineOfBusinessApplication, unknownFutureValue.
|
|
5048
5122
|
*/
|
|
5049
5123
|
determination?: AlertDetermination | null;
|
|
5050
5124
|
/**
|
|
@@ -5378,7 +5452,7 @@ export interface KubernetesClusterEvidence extends AlertEvidence, Parsable {
|
|
|
5378
5452
|
*/
|
|
5379
5453
|
name?: string | null;
|
|
5380
5454
|
/**
|
|
5381
|
-
* The platform the cluster runs on.
|
|
5455
|
+
* The platform the cluster runs on. The possible values are: unknown, aks, eks, gke, arc, unknownFutureValue.
|
|
5382
5456
|
*/
|
|
5383
5457
|
platform?: KubernetesPlatform | null;
|
|
5384
5458
|
/**
|
|
@@ -5541,7 +5615,7 @@ export interface KubernetesServicePort extends AdditionalDataHolder, BackedModel
|
|
|
5541
5615
|
*/
|
|
5542
5616
|
port?: number | null;
|
|
5543
5617
|
/**
|
|
5544
|
-
* The protocol name.
|
|
5618
|
+
* The protocol name. The possible values are: udp, tcp, sctp, unknownFutureValue.
|
|
5545
5619
|
*/
|
|
5546
5620
|
protocol?: ContainerPortProtocol | null;
|
|
5547
5621
|
/**
|
|
@@ -5596,27 +5670,27 @@ export interface LoggedOnUser extends AdditionalDataHolder, BackedModel, Parsabl
|
|
|
5596
5670
|
}
|
|
5597
5671
|
export interface MailboxConfigurationEvidence extends AlertEvidence, Parsable {
|
|
5598
5672
|
/**
|
|
5599
|
-
* The
|
|
5673
|
+
* The unique identifier of the mailbox configuration.
|
|
5600
5674
|
*/
|
|
5601
5675
|
configurationId?: string | null;
|
|
5602
5676
|
/**
|
|
5603
|
-
* The
|
|
5677
|
+
* The type of mailbox configuration. The possible values are: mailForwardingRule, owaSettings, ewsSettings, mailDelegation, userInboxRule, unknownFutureValue.
|
|
5604
5678
|
*/
|
|
5605
5679
|
configurationType?: MailboxConfigurationType | null;
|
|
5606
5680
|
/**
|
|
5607
|
-
* The
|
|
5681
|
+
* The display name of the mailbox.
|
|
5608
5682
|
*/
|
|
5609
5683
|
displayName?: string | null;
|
|
5610
5684
|
/**
|
|
5611
|
-
* The
|
|
5685
|
+
* The external directory object identifier of the mailbox.
|
|
5612
5686
|
*/
|
|
5613
5687
|
externalDirectoryObjectId?: Guid | null;
|
|
5614
5688
|
/**
|
|
5615
|
-
* The
|
|
5689
|
+
* The primary email address of the mailbox.
|
|
5616
5690
|
*/
|
|
5617
5691
|
mailboxPrimaryAddress?: string | null;
|
|
5618
5692
|
/**
|
|
5619
|
-
* The
|
|
5693
|
+
* The user principal name (UPN) of the mailbox.
|
|
5620
5694
|
*/
|
|
5621
5695
|
upn?: string | null;
|
|
5622
5696
|
}
|
|
@@ -5848,6 +5922,7 @@ export type ProtocolType = (typeof ProtocolTypeObject)[keyof typeof ProtocolType
|
|
|
5848
5922
|
export type PurgeAreas = (typeof PurgeAreasObject)[keyof typeof PurgeAreasObject];
|
|
5849
5923
|
export type PurgeType = (typeof PurgeTypeObject)[keyof typeof PurgeTypeObject];
|
|
5850
5924
|
export type QueryType = (typeof QueryTypeObject)[keyof typeof QueryTypeObject];
|
|
5925
|
+
export type RecipientType = (typeof RecipientTypeObject)[keyof typeof RecipientTypeObject];
|
|
5851
5926
|
export interface RedundancyDetectionSettings extends AdditionalDataHolder, BackedModel, Parsable {
|
|
5852
5927
|
/**
|
|
5853
5928
|
* Stores model information.
|
|
@@ -6386,6 +6461,13 @@ export type SensorType = (typeof SensorTypeObject)[keyof typeof SensorTypeObject
|
|
|
6386
6461
|
* @param writer Serialization writer to use to serialize this model
|
|
6387
6462
|
*/
|
|
6388
6463
|
export declare function serializeAccount(writer: SerializationWriter, account?: Partial<Account> | undefined | null, isSerializingDerivedType?: boolean): void;
|
|
6464
|
+
/**
|
|
6465
|
+
* Serializes information the current object
|
|
6466
|
+
* @param ActiveDirectoryDomainEvidence The instance to serialize from.
|
|
6467
|
+
* @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
|
|
6468
|
+
* @param writer Serialization writer to use to serialize this model
|
|
6469
|
+
*/
|
|
6470
|
+
export declare function serializeActiveDirectoryDomainEvidence(writer: SerializationWriter, activeDirectoryDomainEvidence?: Partial<ActiveDirectoryDomainEvidence> | undefined | null, isSerializingDerivedType?: boolean): void;
|
|
6389
6471
|
/**
|
|
6390
6472
|
* Serializes information the current object
|
|
6391
6473
|
* @param AiAgentEvidence The instance to serialize from.
|
|
@@ -6722,6 +6804,20 @@ export declare function serializeEdiscoveryCase(writer: SerializationWriter, edi
|
|
|
6722
6804
|
* @param writer Serialization writer to use to serialize this model
|
|
6723
6805
|
*/
|
|
6724
6806
|
export declare function serializeEdiscoveryCaseCollectionResponse(writer: SerializationWriter, ediscoveryCaseCollectionResponse?: Partial<EdiscoveryCaseCollectionResponse> | undefined | null, isSerializingDerivedType?: boolean): void;
|
|
6807
|
+
/**
|
|
6808
|
+
* Serializes information the current object
|
|
6809
|
+
* @param EdiscoveryCaseMember The instance to serialize from.
|
|
6810
|
+
* @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
|
|
6811
|
+
* @param writer Serialization writer to use to serialize this model
|
|
6812
|
+
*/
|
|
6813
|
+
export declare function serializeEdiscoveryCaseMember(writer: SerializationWriter, ediscoveryCaseMember?: Partial<EdiscoveryCaseMember> | undefined | null, isSerializingDerivedType?: boolean): void;
|
|
6814
|
+
/**
|
|
6815
|
+
* Serializes information the current object
|
|
6816
|
+
* @param EdiscoveryCaseMemberCollectionResponse The instance to serialize from.
|
|
6817
|
+
* @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
|
|
6818
|
+
* @param writer Serialization writer to use to serialize this model
|
|
6819
|
+
*/
|
|
6820
|
+
export declare function serializeEdiscoveryCaseMemberCollectionResponse(writer: SerializationWriter, ediscoveryCaseMemberCollectionResponse?: Partial<EdiscoveryCaseMemberCollectionResponse> | undefined | null, isSerializingDerivedType?: boolean): void;
|
|
6725
6821
|
/**
|
|
6726
6822
|
* Serializes information the current object
|
|
6727
6823
|
* @param EdiscoveryCaseSettings The instance to serialize from.
|
|
@@ -8200,11 +8296,11 @@ export interface TeamsMessageEvidence extends AlertEvidence, Parsable {
|
|
|
8200
8296
|
*/
|
|
8201
8297
|
channelId?: string | null;
|
|
8202
8298
|
/**
|
|
8203
|
-
* The delivery action of this Teams message.
|
|
8299
|
+
* The delivery action of this Teams message. The possible values are: unknown, deliveredAsSpam, delivered, blocked, replaced, unknownFutureValue.
|
|
8204
8300
|
*/
|
|
8205
8301
|
deliveryAction?: TeamsMessageDeliveryAction | null;
|
|
8206
8302
|
/**
|
|
8207
|
-
* The delivery location of this Teams message.
|
|
8303
|
+
* The delivery location of this Teams message. The possible values are: unknown, teams, quarantine, failed, unknownFutureValue.
|
|
8208
8304
|
*/
|
|
8209
8305
|
deliveryLocation?: TeamsDeliveryLocation | null;
|
|
8210
8306
|
/**
|
|
@@ -8412,7 +8508,7 @@ export interface UnifiedGroupSource extends DataSource, Parsable {
|
|
|
8412
8508
|
*/
|
|
8413
8509
|
group?: Group | null;
|
|
8414
8510
|
/**
|
|
8415
|
-
* Specifies which sources are included in this group.
|
|
8511
|
+
* Specifies which sources are included in this group. The possible values are: mailbox, site.
|
|
8416
8512
|
*/
|
|
8417
8513
|
includedSources?: SourceType[] | null;
|
|
8418
8514
|
}
|
|
@@ -8496,7 +8592,7 @@ export interface UserSource extends DataSource, Parsable {
|
|
|
8496
8592
|
*/
|
|
8497
8593
|
email?: string | null;
|
|
8498
8594
|
/**
|
|
8499
|
-
* Specifies which sources are included in this group.
|
|
8595
|
+
* Specifies which sources are included in this group. The possible values are: mailbox, site.
|
|
8500
8596
|
*/
|
|
8501
8597
|
includedSources?: SourceType[] | null;
|
|
8502
8598
|
/**
|
|
@@ -9313,6 +9409,11 @@ export declare const QueryTypeObject: {
|
|
|
9313
9409
|
readonly Messages: "messages";
|
|
9314
9410
|
readonly UnknownFutureValue: "unknownFutureValue";
|
|
9315
9411
|
};
|
|
9412
|
+
export declare const RecipientTypeObject: {
|
|
9413
|
+
readonly User: "user";
|
|
9414
|
+
readonly RoleGroup: "roleGroup";
|
|
9415
|
+
readonly UnknownFutureValue: "unknownFutureValue";
|
|
9416
|
+
};
|
|
9316
9417
|
export declare const RetentionTriggerObject: {
|
|
9317
9418
|
readonly DateLabeled: "dateLabeled";
|
|
9318
9419
|
readonly DateCreated: "dateCreated";
|