@microsoft/msgraph-sdk 1.0.0-preview.72 → 1.0.0-preview.74
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/identityGovernance/index.d.ts +1 -1
- package/models/index.d.ts +2167 -259
- package/models/index.d.ts.map +1 -1
- package/models/index.js +2200 -128
- package/models/index.js.map +1 -1
- package/models/security/index.d.ts +56 -2
- package/models/security/index.d.ts.map +1 -1
- package/models/security/index.js +63 -1
- package/models/security/index.js.map +1 -1
- package/package.json +2 -2
- package/tsconfig.tsbuildinfo +1 -1
- package/version.d.ts +1 -1
- package/version.js +1 -1
|
@@ -76,6 +76,10 @@ export interface Alert extends Entity, Parsable {
|
|
|
76
76
|
* URL for the incident page in the Microsoft 365 Defender portal.
|
|
77
77
|
*/
|
|
78
78
|
incidentWebUrl?: string | null;
|
|
79
|
+
/**
|
|
80
|
+
* Information on the current status of the investigation. Possible values are: unknown, terminated, successfullyRemediated, benign, failed, partiallyRemediated, running, pendingApproval, pendingResource, queued, innerFailure, preexistingAlert, unsupportedOs, unsupportedAlertType, suppressedAlert, partiallyInvestigated, terminatedByUser, terminatedBySystem, unknownFutureValue.
|
|
81
|
+
*/
|
|
82
|
+
investigationState?: InvestigationState | null;
|
|
79
83
|
/**
|
|
80
84
|
* The oldest activity associated with the alert.
|
|
81
85
|
*/
|
|
@@ -468,7 +472,7 @@ export interface CaseEscaped extends Entity, Parsable {
|
|
|
468
472
|
}
|
|
469
473
|
export interface CaseOperation extends Entity, Parsable {
|
|
470
474
|
/**
|
|
471
|
-
* The type of action the operation represents. Possible values are: contentExport, applyTags, convertToPdf, index, estimateStatistics, addToReviewSet, holdUpdate, unknownFutureValue, purgeData, exportReport, exportResult. Use the Prefer: include-unknown-enum-members request header to get the following values from this evolvable enum: purgeData, exportReport, exportResult.
|
|
475
|
+
* The type of action the operation represents. 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.
|
|
472
476
|
*/
|
|
473
477
|
action?: CaseAction | null;
|
|
474
478
|
/**
|
|
@@ -492,7 +496,7 @@ export interface CaseOperation extends Entity, Parsable {
|
|
|
492
496
|
*/
|
|
493
497
|
resultInfo?: ResultInfo | null;
|
|
494
498
|
/**
|
|
495
|
-
* The status of the case operation. Possible values are: notStarted, submissionFailed, running, succeeded, partiallySucceeded, failed.
|
|
499
|
+
* The status of the case operation. Possible values are: notStarted, submissionFailed, running, succeeded, partiallySucceeded, failed, unknownFutureValue.
|
|
496
500
|
*/
|
|
497
501
|
status?: CaseOperationStatus | null;
|
|
498
502
|
}
|
|
@@ -981,6 +985,12 @@ export declare function createEdiscoveryExportOperationFromDiscriminatorValue(pa
|
|
|
981
985
|
* @returns {EdiscoveryHoldOperation}
|
|
982
986
|
*/
|
|
983
987
|
export declare function createEdiscoveryHoldOperationFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
988
|
+
/**
|
|
989
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
990
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
991
|
+
* @returns {EdiscoveryHoldPolicySyncOperation}
|
|
992
|
+
*/
|
|
993
|
+
export declare function createEdiscoveryHoldPolicySyncOperationFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
984
994
|
/**
|
|
985
995
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
986
996
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
@@ -2377,6 +2387,12 @@ export declare function deserializeIntoEdiscoveryExportOperation(ediscoveryExpor
|
|
|
2377
2387
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
2378
2388
|
*/
|
|
2379
2389
|
export declare function deserializeIntoEdiscoveryHoldOperation(ediscoveryHoldOperation?: Partial<EdiscoveryHoldOperation> | undefined): Record<string, (node: ParseNode) => void>;
|
|
2390
|
+
/**
|
|
2391
|
+
* The deserialization information for the current model
|
|
2392
|
+
* @param EdiscoveryHoldPolicySyncOperation The instance to deserialize into.
|
|
2393
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
2394
|
+
*/
|
|
2395
|
+
export declare function deserializeIntoEdiscoveryHoldPolicySyncOperation(ediscoveryHoldPolicySyncOperation?: Partial<EdiscoveryHoldPolicySyncOperation> | undefined): Record<string, (node: ParseNode) => void>;
|
|
2380
2396
|
/**
|
|
2381
2397
|
* The deserialization information for the current model
|
|
2382
2398
|
* @param EdiscoveryIndexOperation The instance to deserialize into.
|
|
@@ -3678,6 +3694,12 @@ export interface EdiscoveryExportOperation extends CaseOperation, Parsable {
|
|
|
3678
3694
|
}
|
|
3679
3695
|
export interface EdiscoveryHoldOperation extends CaseOperation, Parsable {
|
|
3680
3696
|
}
|
|
3697
|
+
export interface EdiscoveryHoldPolicySyncOperation extends CaseOperation, Parsable {
|
|
3698
|
+
/**
|
|
3699
|
+
* Contains the properties for report file metadata, including downloadUrl, fileName, and size.
|
|
3700
|
+
*/
|
|
3701
|
+
reportFileMetadata?: ReportFileMetadata[] | null;
|
|
3702
|
+
}
|
|
3681
3703
|
export interface EdiscoveryIndexOperation extends CaseOperation, Parsable {
|
|
3682
3704
|
}
|
|
3683
3705
|
export interface EdiscoveryNoncustodialDataSource extends DataSourceContainer, Parsable {
|
|
@@ -4976,6 +4998,7 @@ export interface IntelligenceProfileIndicatorCollectionResponse extends BaseColl
|
|
|
4976
4998
|
value?: IntelligenceProfileIndicator[] | null;
|
|
4977
4999
|
}
|
|
4978
5000
|
export type IntelligenceProfileKind = (typeof IntelligenceProfileKindObject)[keyof typeof IntelligenceProfileKindObject];
|
|
5001
|
+
export type InvestigationState = (typeof InvestigationStateObject)[keyof typeof InvestigationStateObject];
|
|
4979
5002
|
export interface IoTDeviceEvidence extends AlertEvidence, Parsable {
|
|
4980
5003
|
/**
|
|
4981
5004
|
* The device ID.
|
|
@@ -6479,6 +6502,13 @@ export declare function serializeEdiscoveryExportOperation(writer: Serialization
|
|
|
6479
6502
|
* @param writer Serialization writer to use to serialize this model
|
|
6480
6503
|
*/
|
|
6481
6504
|
export declare function serializeEdiscoveryHoldOperation(writer: SerializationWriter, ediscoveryHoldOperation?: Partial<EdiscoveryHoldOperation> | undefined | null, isSerializingDerivedType?: boolean): void;
|
|
6505
|
+
/**
|
|
6506
|
+
* Serializes information the current object
|
|
6507
|
+
* @param EdiscoveryHoldPolicySyncOperation The instance to serialize from.
|
|
6508
|
+
* @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
|
|
6509
|
+
* @param writer Serialization writer to use to serialize this model
|
|
6510
|
+
*/
|
|
6511
|
+
export declare function serializeEdiscoveryHoldPolicySyncOperation(writer: SerializationWriter, ediscoveryHoldPolicySyncOperation?: Partial<EdiscoveryHoldPolicySyncOperation> | undefined | null, isSerializingDerivedType?: boolean): void;
|
|
6482
6512
|
/**
|
|
6483
6513
|
* Serializes information the current object
|
|
6484
6514
|
* @param EdiscoveryIndexOperation The instance to serialize from.
|
|
@@ -8526,6 +8556,7 @@ export declare const CaseActionObject: {
|
|
|
8526
8556
|
readonly PurgeData: "purgeData";
|
|
8527
8557
|
readonly ExportReport: "exportReport";
|
|
8528
8558
|
readonly ExportResult: "exportResult";
|
|
8559
|
+
readonly HoldPolicySync: "holdPolicySync";
|
|
8529
8560
|
};
|
|
8530
8561
|
export declare const CaseOperationStatusObject: {
|
|
8531
8562
|
readonly NotStarted: "notStarted";
|
|
@@ -8658,6 +8689,8 @@ export declare const DetectionSourceObject: {
|
|
|
8658
8689
|
readonly BuiltInMl: "builtInMl";
|
|
8659
8690
|
readonly MicrosoftInsiderRiskManagement: "microsoftInsiderRiskManagement";
|
|
8660
8691
|
readonly MicrosoftThreatIntelligence: "microsoftThreatIntelligence";
|
|
8692
|
+
readonly MicrosoftDefenderForAIServices: "microsoftDefenderForAIServices";
|
|
8693
|
+
readonly SecurityCopilot: "securityCopilot";
|
|
8661
8694
|
readonly MicrosoftSentinel: "microsoftSentinel";
|
|
8662
8695
|
};
|
|
8663
8696
|
export declare const DetectionStatusObject: {
|
|
@@ -8853,6 +8886,27 @@ export declare const IntelligenceProfileKindObject: {
|
|
|
8853
8886
|
readonly Tool: "tool";
|
|
8854
8887
|
readonly UnknownFutureValue: "unknownFutureValue";
|
|
8855
8888
|
};
|
|
8889
|
+
export declare const InvestigationStateObject: {
|
|
8890
|
+
readonly Unknown: "unknown";
|
|
8891
|
+
readonly Terminated: "terminated";
|
|
8892
|
+
readonly SuccessfullyRemediated: "successfullyRemediated";
|
|
8893
|
+
readonly Benign: "benign";
|
|
8894
|
+
readonly Failed: "failed";
|
|
8895
|
+
readonly PartiallyRemediated: "partiallyRemediated";
|
|
8896
|
+
readonly Running: "running";
|
|
8897
|
+
readonly PendingApproval: "pendingApproval";
|
|
8898
|
+
readonly PendingResource: "pendingResource";
|
|
8899
|
+
readonly Queued: "queued";
|
|
8900
|
+
readonly InnerFailure: "innerFailure";
|
|
8901
|
+
readonly PreexistingAlert: "preexistingAlert";
|
|
8902
|
+
readonly UnsupportedOs: "unsupportedOs";
|
|
8903
|
+
readonly UnsupportedAlertType: "unsupportedAlertType";
|
|
8904
|
+
readonly SuppressedAlert: "suppressedAlert";
|
|
8905
|
+
readonly PartiallyInvestigated: "partiallyInvestigated";
|
|
8906
|
+
readonly TerminatedByUser: "terminatedByUser";
|
|
8907
|
+
readonly TerminatedBySystem: "terminatedBySystem";
|
|
8908
|
+
readonly UnknownFutureValue: "unknownFutureValue";
|
|
8909
|
+
};
|
|
8856
8910
|
export declare const IoTDeviceImportanceTypeObject: {
|
|
8857
8911
|
readonly Unknown: "unknown";
|
|
8858
8912
|
readonly Low: "low";
|