@microsoft/msgraph-sdk 1.0.0-preview.69 → 1.0.0-preview.70

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.
@@ -49,7 +49,7 @@ export interface Alert extends Entity, Parsable {
49
49
  */
50
50
  description?: string | null;
51
51
  /**
52
- * Detection technology or sensor that identified the notable component or activity. 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. 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.
52
+ * Detection technology or sensor that identified the notable component or activity. 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.
53
53
  */
54
54
  detectionSource?: DetectionSource | null;
55
55
  /**
@@ -510,6 +510,7 @@ export interface CasesRoot extends Entity, Parsable {
510
510
  ediscoveryCases?: EdiscoveryCase[] | null;
511
511
  }
512
512
  export type CaseStatus = (typeof CaseStatusObject)[keyof typeof CaseStatusObject];
513
+ export type CaseType = (typeof CaseTypeObject)[keyof typeof CaseTypeObject];
513
514
  export interface CategoryTemplate extends FilePlanDescriptorTemplate, Parsable {
514
515
  /**
515
516
  * Represents all subcategories under a particular category.
@@ -3554,6 +3555,10 @@ export interface EdiscoveryCaseCollectionResponse extends BaseCollectionPaginati
3554
3555
  value?: EdiscoveryCase[] | null;
3555
3556
  }
3556
3557
  export interface EdiscoveryCaseSettings extends Entity, Parsable {
3558
+ /**
3559
+ * The caseType property
3560
+ */
3561
+ caseType?: CaseType | null;
3557
3562
  /**
3558
3563
  * The OCR (Optical Character Recognition) settings for the case.
3559
3564
  */
@@ -3562,6 +3567,10 @@ export interface EdiscoveryCaseSettings extends Entity, Parsable {
3562
3567
  * The redundancy (near duplicate and email threading) detection settings for the case.
3563
3568
  */
3564
3569
  redundancyDetection?: RedundancyDetectionSettings | null;
3570
+ /**
3571
+ * The settings of the review set for the case. Possible values are: none, disableGrouping, unknownFutureValue.
3572
+ */
3573
+ reviewSetSettings?: ReviewSetSettings[] | null;
3565
3574
  /**
3566
3575
  * The Topic Modeling (Themes) settings for the case.
3567
3576
  */
@@ -5906,6 +5915,7 @@ export interface RetentionLabelCollectionResponse extends BaseCollectionPaginati
5906
5915
  value?: RetentionLabel[] | null;
5907
5916
  }
5908
5917
  export type RetentionTrigger = (typeof RetentionTriggerObject)[keyof typeof RetentionTriggerObject];
5918
+ export type ReviewSetSettings = (typeof ReviewSetSettingsObject)[keyof typeof ReviewSetSettingsObject];
5909
5919
  export interface SasTokenEvidence extends AlertEvidence, Parsable {
5910
5920
  /**
5911
5921
  * The allowedIpAddresses property
@@ -5979,14 +5989,30 @@ export interface Search extends Entity, Parsable {
5979
5989
  lastModifiedDateTime?: Date | null;
5980
5990
  }
5981
5991
  export interface SecurityGroupEvidence extends AlertEvidence, Parsable {
5992
+ /**
5993
+ * The unique group identifier assigned by the on-premises Active Directory.
5994
+ */
5995
+ activeDirectoryObjectGuid?: Guid | null;
5982
5996
  /**
5983
5997
  * The name of the security group.
5984
5998
  */
5985
5999
  displayName?: string | null;
6000
+ /**
6001
+ * The distinguished name of the security group.
6002
+ */
6003
+ distinguishedName?: string | null;
6004
+ /**
6005
+ * The friendly name of the security group.
6006
+ */
6007
+ friendlyName?: string | null;
5986
6008
  /**
5987
6009
  * Unique identifier of the security group.
5988
6010
  */
5989
6011
  securityGroupId?: string | null;
6012
+ /**
6013
+ * The security identifier of the group.
6014
+ */
6015
+ sid?: string | null;
5990
6016
  }
5991
6017
  export interface Sensor extends Entity, Parsable {
5992
6018
  /**
@@ -8066,6 +8092,10 @@ export interface UserAccount extends AdditionalDataHolder, BackedModel, Parsable
8066
8092
  * The displayed name of the user account.
8067
8093
  */
8068
8094
  accountName?: string | null;
8095
+ /**
8096
+ * The unique user identifier assigned by the on-premises Active Directory.
8097
+ */
8098
+ activeDirectoryObjectGuid?: Guid | null;
8069
8099
  /**
8070
8100
  * The user object identifier in Microsoft Entra ID.
8071
8101
  */
@@ -8515,6 +8545,11 @@ export declare const CaseStatusObject: {
8515
8545
  readonly ClosedWithError: "closedWithError";
8516
8546
  readonly UnknownFutureValue: "unknownFutureValue";
8517
8547
  };
8548
+ export declare const CaseTypeObject: {
8549
+ readonly Standard: "standard";
8550
+ readonly Premium: "premium";
8551
+ readonly UnknownFutureValue: "unknownFutureValue";
8552
+ };
8518
8553
  export declare const ChildSelectabilityObject: {
8519
8554
  readonly One: "One";
8520
8555
  readonly Many: "Many";
@@ -8888,6 +8923,11 @@ export declare const RetentionTriggerObject: {
8888
8923
  readonly DateOfEvent: "dateOfEvent";
8889
8924
  readonly UnknownFutureValue: "unknownFutureValue";
8890
8925
  };
8926
+ export declare const ReviewSetSettingsObject: {
8927
+ readonly None: "none";
8928
+ readonly DisableGrouping: "disableGrouping";
8929
+ readonly UnknownFutureValue: "unknownFutureValue";
8930
+ };
8891
8931
  export declare const SensorHealthStatusObject: {
8892
8932
  readonly Healthy: "healthy";
8893
8933
  readonly NotHealthyLow: "notHealthyLow";