@microsoft/msgraph-sdk 1.0.0-preview.71 → 1.0.0-preview.73
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 +1433 -231
- package/models/index.d.ts.map +1 -1
- package/models/index.js +1366 -83
- package/models/index.js.map +1 -1
- package/models/security/index.d.ts +30 -2
- package/models/security/index.d.ts.map +1 -1
- package/models/security/index.js +40 -0
- 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
|
@@ -468,7 +468,7 @@ export interface CaseEscaped extends Entity, Parsable {
|
|
|
468
468
|
}
|
|
469
469
|
export interface CaseOperation extends Entity, Parsable {
|
|
470
470
|
/**
|
|
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.
|
|
471
|
+
* 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
472
|
*/
|
|
473
473
|
action?: CaseAction | null;
|
|
474
474
|
/**
|
|
@@ -492,7 +492,7 @@ export interface CaseOperation extends Entity, Parsable {
|
|
|
492
492
|
*/
|
|
493
493
|
resultInfo?: ResultInfo | null;
|
|
494
494
|
/**
|
|
495
|
-
* The status of the case operation. Possible values are: notStarted, submissionFailed, running, succeeded, partiallySucceeded, failed.
|
|
495
|
+
* The status of the case operation. Possible values are: notStarted, submissionFailed, running, succeeded, partiallySucceeded, failed, unknownFutureValue.
|
|
496
496
|
*/
|
|
497
497
|
status?: CaseOperationStatus | null;
|
|
498
498
|
}
|
|
@@ -981,6 +981,12 @@ export declare function createEdiscoveryExportOperationFromDiscriminatorValue(pa
|
|
|
981
981
|
* @returns {EdiscoveryHoldOperation}
|
|
982
982
|
*/
|
|
983
983
|
export declare function createEdiscoveryHoldOperationFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
984
|
+
/**
|
|
985
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
986
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
987
|
+
* @returns {EdiscoveryHoldPolicySyncOperation}
|
|
988
|
+
*/
|
|
989
|
+
export declare function createEdiscoveryHoldPolicySyncOperationFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
984
990
|
/**
|
|
985
991
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
986
992
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
@@ -2377,6 +2383,12 @@ export declare function deserializeIntoEdiscoveryExportOperation(ediscoveryExpor
|
|
|
2377
2383
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
2378
2384
|
*/
|
|
2379
2385
|
export declare function deserializeIntoEdiscoveryHoldOperation(ediscoveryHoldOperation?: Partial<EdiscoveryHoldOperation> | undefined): Record<string, (node: ParseNode) => void>;
|
|
2386
|
+
/**
|
|
2387
|
+
* The deserialization information for the current model
|
|
2388
|
+
* @param EdiscoveryHoldPolicySyncOperation The instance to deserialize into.
|
|
2389
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
2390
|
+
*/
|
|
2391
|
+
export declare function deserializeIntoEdiscoveryHoldPolicySyncOperation(ediscoveryHoldPolicySyncOperation?: Partial<EdiscoveryHoldPolicySyncOperation> | undefined): Record<string, (node: ParseNode) => void>;
|
|
2380
2392
|
/**
|
|
2381
2393
|
* The deserialization information for the current model
|
|
2382
2394
|
* @param EdiscoveryIndexOperation The instance to deserialize into.
|
|
@@ -3678,6 +3690,12 @@ export interface EdiscoveryExportOperation extends CaseOperation, Parsable {
|
|
|
3678
3690
|
}
|
|
3679
3691
|
export interface EdiscoveryHoldOperation extends CaseOperation, Parsable {
|
|
3680
3692
|
}
|
|
3693
|
+
export interface EdiscoveryHoldPolicySyncOperation extends CaseOperation, Parsable {
|
|
3694
|
+
/**
|
|
3695
|
+
* Contains the properties for report file metadata, including downloadUrl, fileName, and size.
|
|
3696
|
+
*/
|
|
3697
|
+
reportFileMetadata?: ReportFileMetadata[] | null;
|
|
3698
|
+
}
|
|
3681
3699
|
export interface EdiscoveryIndexOperation extends CaseOperation, Parsable {
|
|
3682
3700
|
}
|
|
3683
3701
|
export interface EdiscoveryNoncustodialDataSource extends DataSourceContainer, Parsable {
|
|
@@ -6479,6 +6497,13 @@ export declare function serializeEdiscoveryExportOperation(writer: Serialization
|
|
|
6479
6497
|
* @param writer Serialization writer to use to serialize this model
|
|
6480
6498
|
*/
|
|
6481
6499
|
export declare function serializeEdiscoveryHoldOperation(writer: SerializationWriter, ediscoveryHoldOperation?: Partial<EdiscoveryHoldOperation> | undefined | null, isSerializingDerivedType?: boolean): void;
|
|
6500
|
+
/**
|
|
6501
|
+
* Serializes information the current object
|
|
6502
|
+
* @param EdiscoveryHoldPolicySyncOperation The instance to serialize from.
|
|
6503
|
+
* @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
|
|
6504
|
+
* @param writer Serialization writer to use to serialize this model
|
|
6505
|
+
*/
|
|
6506
|
+
export declare function serializeEdiscoveryHoldPolicySyncOperation(writer: SerializationWriter, ediscoveryHoldPolicySyncOperation?: Partial<EdiscoveryHoldPolicySyncOperation> | undefined | null, isSerializingDerivedType?: boolean): void;
|
|
6482
6507
|
/**
|
|
6483
6508
|
* Serializes information the current object
|
|
6484
6509
|
* @param EdiscoveryIndexOperation The instance to serialize from.
|
|
@@ -8526,6 +8551,7 @@ export declare const CaseActionObject: {
|
|
|
8526
8551
|
readonly PurgeData: "purgeData";
|
|
8527
8552
|
readonly ExportReport: "exportReport";
|
|
8528
8553
|
readonly ExportResult: "exportResult";
|
|
8554
|
+
readonly HoldPolicySync: "holdPolicySync";
|
|
8529
8555
|
};
|
|
8530
8556
|
export declare const CaseOperationStatusObject: {
|
|
8531
8557
|
readonly NotStarted: "notStarted";
|
|
@@ -8658,6 +8684,8 @@ export declare const DetectionSourceObject: {
|
|
|
8658
8684
|
readonly BuiltInMl: "builtInMl";
|
|
8659
8685
|
readonly MicrosoftInsiderRiskManagement: "microsoftInsiderRiskManagement";
|
|
8660
8686
|
readonly MicrosoftThreatIntelligence: "microsoftThreatIntelligence";
|
|
8687
|
+
readonly MicrosoftDefenderForAIServices: "microsoftDefenderForAIServices";
|
|
8688
|
+
readonly SecurityCopilot: "securityCopilot";
|
|
8661
8689
|
readonly MicrosoftSentinel: "microsoftSentinel";
|
|
8662
8690
|
};
|
|
8663
8691
|
export declare const DetectionStatusObject: {
|