@microsoft/msgraph-sdk 1.0.0-preview.73 → 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/index.d.ts +755 -49
- package/models/index.d.ts.map +1 -1
- package/models/index.js +834 -45
- package/models/index.js.map +1 -1
- package/models/security/index.d.ts +26 -0
- package/models/security/index.d.ts.map +1 -1
- package/models/security/index.js +23 -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
|
*/
|
|
@@ -4994,6 +4998,7 @@ export interface IntelligenceProfileIndicatorCollectionResponse extends BaseColl
|
|
|
4994
4998
|
value?: IntelligenceProfileIndicator[] | null;
|
|
4995
4999
|
}
|
|
4996
5000
|
export type IntelligenceProfileKind = (typeof IntelligenceProfileKindObject)[keyof typeof IntelligenceProfileKindObject];
|
|
5001
|
+
export type InvestigationState = (typeof InvestigationStateObject)[keyof typeof InvestigationStateObject];
|
|
4997
5002
|
export interface IoTDeviceEvidence extends AlertEvidence, Parsable {
|
|
4998
5003
|
/**
|
|
4999
5004
|
* The device ID.
|
|
@@ -8881,6 +8886,27 @@ export declare const IntelligenceProfileKindObject: {
|
|
|
8881
8886
|
readonly Tool: "tool";
|
|
8882
8887
|
readonly UnknownFutureValue: "unknownFutureValue";
|
|
8883
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
|
+
};
|
|
8884
8910
|
export declare const IoTDeviceImportanceTypeObject: {
|
|
8885
8911
|
readonly Unknown: "unknown";
|
|
8886
8912
|
readonly Low: "low";
|