diff --git a/src/Microsoft.Graph/Generated/Models/ProtectionPolicyArtifactCount.cs b/src/Microsoft.Graph/Generated/Models/ProtectionPolicyArtifactCount.cs
new file mode 100644
index 00000000000..52401f4b914
--- /dev/null
+++ b/src/Microsoft.Graph/Generated/Models/ProtectionPolicyArtifactCount.cs
@@ -0,0 +1,113 @@
+//
+#pragma warning disable CS0618
+using Microsoft.Kiota.Abstractions.Extensions;
+using Microsoft.Kiota.Abstractions.Serialization;
+using Microsoft.Kiota.Abstractions.Store;
+using System.Collections.Generic;
+using System.IO;
+using System;
+namespace Microsoft.Graph.Models
+{
+ [global::System.CodeDom.Compiler.GeneratedCode("Kiota", "1.0.0")]
+ #pragma warning disable CS1591
+ public partial class ProtectionPolicyArtifactCount : IAdditionalDataHolder, IBackedModel, IParsable
+ #pragma warning restore CS1591
+ {
+ /// Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
+ public IDictionary AdditionalData
+ {
+ get { return BackingStore.Get>("AdditionalData") ?? new Dictionary(); }
+ set { BackingStore.Set("AdditionalData", value); }
+ }
+ /// Stores model information.
+ public IBackingStore BackingStore { get; private set; }
+ /// The completed property
+ public int? Completed
+ {
+ get { return BackingStore?.Get("completed"); }
+ set { BackingStore?.Set("completed", value); }
+ }
+ /// The failed property
+ public int? Failed
+ {
+ get { return BackingStore?.Get("failed"); }
+ set { BackingStore?.Set("failed", value); }
+ }
+ /// The inProgress property
+ public int? InProgress
+ {
+ get { return BackingStore?.Get("inProgress"); }
+ set { BackingStore?.Set("inProgress", value); }
+ }
+ /// The OdataType property
+#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER
+#nullable enable
+ public string? OdataType
+ {
+ get { return BackingStore?.Get("@odata.type"); }
+ set { BackingStore?.Set("@odata.type", value); }
+ }
+#nullable restore
+#else
+ public string OdataType
+ {
+ get { return BackingStore?.Get("@odata.type"); }
+ set { BackingStore?.Set("@odata.type", value); }
+ }
+#endif
+ /// The total property
+ public int? Total
+ {
+ get { return BackingStore?.Get("total"); }
+ set { BackingStore?.Set("total", value); }
+ }
+ ///
+ /// Instantiates a new and sets the default values.
+ ///
+ public ProtectionPolicyArtifactCount()
+ {
+ BackingStore = BackingStoreFactorySingleton.Instance.CreateBackingStore();
+ AdditionalData = new Dictionary();
+ }
+ ///
+ /// Creates a new instance of the appropriate class based on discriminator value
+ ///
+ /// A
+ /// The parse node to use to read the discriminator value and create the object
+ public static global::Microsoft.Graph.Models.ProtectionPolicyArtifactCount CreateFromDiscriminatorValue(IParseNode parseNode)
+ {
+ if(ReferenceEquals(parseNode, null)) throw new ArgumentNullException(nameof(parseNode));
+ return new global::Microsoft.Graph.Models.ProtectionPolicyArtifactCount();
+ }
+ ///
+ /// The deserialization information for the current model
+ ///
+ /// A IDictionary<string, Action<IParseNode>>
+ public virtual IDictionary> GetFieldDeserializers()
+ {
+ return new Dictionary>
+ {
+ { "completed", n => { Completed = n.GetIntValue(); } },
+ { "failed", n => { Failed = n.GetIntValue(); } },
+ { "inProgress", n => { InProgress = n.GetIntValue(); } },
+ { "@odata.type", n => { OdataType = n.GetStringValue(); } },
+ { "total", n => { Total = n.GetIntValue(); } },
+ };
+ }
+ ///
+ /// Serializes information the current object
+ ///
+ /// Serialization writer to use to serialize this model
+ public virtual void Serialize(ISerializationWriter writer)
+ {
+ if(ReferenceEquals(writer, null)) throw new ArgumentNullException(nameof(writer));
+ writer.WriteIntValue("completed", Completed);
+ writer.WriteIntValue("failed", Failed);
+ writer.WriteIntValue("inProgress", InProgress);
+ writer.WriteStringValue("@odata.type", OdataType);
+ writer.WriteIntValue("total", Total);
+ writer.WriteAdditionalData(AdditionalData);
+ }
+ }
+}
+#pragma warning restore CS0618
diff --git a/src/Microsoft.Graph/Generated/Models/ProtectionPolicyBase.cs b/src/Microsoft.Graph/Generated/Models/ProtectionPolicyBase.cs
index bdc6a7a08a5..c6aaa17beee 100644
--- a/src/Microsoft.Graph/Generated/Models/ProtectionPolicyBase.cs
+++ b/src/Microsoft.Graph/Generated/Models/ProtectionPolicyBase.cs
@@ -50,6 +50,12 @@ public string DisplayName
set { BackingStore?.Set("displayName", value); }
}
#endif
+ /// The isEnabled property
+ public bool? IsEnabled
+ {
+ get { return BackingStore?.Get("isEnabled"); }
+ set { BackingStore?.Set("isEnabled", value); }
+ }
/// The identity of the person who last modified the policy.
#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER
#nullable enable
@@ -72,6 +78,22 @@ public DateTimeOffset? LastModifiedDateTime
get { return BackingStore?.Get("lastModifiedDateTime"); }
set { BackingStore?.Set("lastModifiedDateTime", value); }
}
+ /// The protectionPolicyArtifactCount property
+#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER
+#nullable enable
+ public global::Microsoft.Graph.Models.ProtectionPolicyArtifactCount? ProtectionPolicyArtifactCount
+ {
+ get { return BackingStore?.Get("protectionPolicyArtifactCount"); }
+ set { BackingStore?.Set("protectionPolicyArtifactCount", value); }
+ }
+#nullable restore
+#else
+ public global::Microsoft.Graph.Models.ProtectionPolicyArtifactCount ProtectionPolicyArtifactCount
+ {
+ get { return BackingStore?.Get("protectionPolicyArtifactCount"); }
+ set { BackingStore?.Set("protectionPolicyArtifactCount", value); }
+ }
+#endif
/// Contains the retention setting details for the policy.
#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER
#nullable enable
@@ -122,8 +144,10 @@ public override IDictionary> GetFieldDeserializers()
{ "createdBy", n => { CreatedBy = n.GetObjectValue(global::Microsoft.Graph.Models.IdentitySet.CreateFromDiscriminatorValue); } },
{ "createdDateTime", n => { CreatedDateTime = n.GetDateTimeOffsetValue(); } },
{ "displayName", n => { DisplayName = n.GetStringValue(); } },
+ { "isEnabled", n => { IsEnabled = n.GetBoolValue(); } },
{ "lastModifiedBy", n => { LastModifiedBy = n.GetObjectValue(global::Microsoft.Graph.Models.IdentitySet.CreateFromDiscriminatorValue); } },
{ "lastModifiedDateTime", n => { LastModifiedDateTime = n.GetDateTimeOffsetValue(); } },
+ { "protectionPolicyArtifactCount", n => { ProtectionPolicyArtifactCount = n.GetObjectValue(global::Microsoft.Graph.Models.ProtectionPolicyArtifactCount.CreateFromDiscriminatorValue); } },
{ "retentionSettings", n => { RetentionSettings = n.GetCollectionOfObjectValues(global::Microsoft.Graph.Models.RetentionSetting.CreateFromDiscriminatorValue)?.AsList(); } },
{ "status", n => { Status = n.GetEnumValue(); } },
};
@@ -139,8 +163,10 @@ public override void Serialize(ISerializationWriter writer)
writer.WriteObjectValue("createdBy", CreatedBy);
writer.WriteDateTimeOffsetValue("createdDateTime", CreatedDateTime);
writer.WriteStringValue("displayName", DisplayName);
+ writer.WriteBoolValue("isEnabled", IsEnabled);
writer.WriteObjectValue("lastModifiedBy", LastModifiedBy);
writer.WriteDateTimeOffsetValue("lastModifiedDateTime", LastModifiedDateTime);
+ writer.WriteObjectValue("protectionPolicyArtifactCount", ProtectionPolicyArtifactCount);
writer.WriteCollectionOfObjectValues("retentionSettings", RetentionSettings);
writer.WriteEnumValue("status", Status);
}
diff --git a/src/Microsoft.Graph/Generated/Models/Security/Alert.cs b/src/Microsoft.Graph/Generated/Models/Security/Alert.cs
index e858772e0c2..52a48eccdcb 100644
--- a/src/Microsoft.Graph/Generated/Models/Security/Alert.cs
+++ b/src/Microsoft.Graph/Generated/Models/Security/Alert.cs
@@ -168,7 +168,7 @@ public string Description
set { BackingStore?.Set("description", value); }
}
#endif
- /// 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.
+ /// Detection technology or sensor that identified the notable component or activity.
public global::Microsoft.Graph.Models.Security.DetectionSource? DetectionSource
{
get { return BackingStore?.Get("detectionSource"); }
diff --git a/src/Microsoft.Graph/Generated/Models/Security/Incident.cs b/src/Microsoft.Graph/Generated/Models/Security/Incident.cs
index 329f2510f5c..70c46192d36 100644
--- a/src/Microsoft.Graph/Generated/Models/Security/Incident.cs
+++ b/src/Microsoft.Graph/Generated/Models/Security/Incident.cs
@@ -164,6 +164,12 @@ public DateTimeOffset? LastUpdateDateTime
get { return BackingStore?.Get("lastUpdateDateTime"); }
set { BackingStore?.Set("lastUpdateDateTime", value); }
}
+ /// The priorityScore property
+ public int? PriorityScore
+ {
+ get { return BackingStore?.Get("priorityScore"); }
+ set { BackingStore?.Set("priorityScore", value); }
+ }
/// Only populated in case an incident is grouped with another incident, as part of the logic that processes incidents. In such a case, the status property is redirected.
#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER
#nullable enable
@@ -286,6 +292,7 @@ public override IDictionary> GetFieldDeserializers()
{ "incidentWebUrl", n => { IncidentWebUrl = n.GetStringValue(); } },
{ "lastModifiedBy", n => { LastModifiedBy = n.GetStringValue(); } },
{ "lastUpdateDateTime", n => { LastUpdateDateTime = n.GetDateTimeOffsetValue(); } },
+ { "priorityScore", n => { PriorityScore = n.GetIntValue(); } },
{ "redirectIncidentId", n => { RedirectIncidentId = n.GetStringValue(); } },
{ "resolvingComment", n => { ResolvingComment = n.GetStringValue(); } },
{ "severity", n => { Severity = n.GetEnumValue(); } },
@@ -315,6 +322,7 @@ public override void Serialize(ISerializationWriter writer)
writer.WriteStringValue("incidentWebUrl", IncidentWebUrl);
writer.WriteStringValue("lastModifiedBy", LastModifiedBy);
writer.WriteDateTimeOffsetValue("lastUpdateDateTime", LastUpdateDateTime);
+ writer.WriteIntValue("priorityScore", PriorityScore);
writer.WriteStringValue("redirectIncidentId", RedirectIncidentId);
writer.WriteStringValue("resolvingComment", ResolvingComment);
writer.WriteEnumValue("severity", Severity);
diff --git a/src/Microsoft.Graph/Generated/Models/Security/Sensor.cs b/src/Microsoft.Graph/Generated/Models/Security/Sensor.cs
index 486284cb773..856f08356ca 100644
--- a/src/Microsoft.Graph/Generated/Models/Security/Sensor.cs
+++ b/src/Microsoft.Graph/Generated/Models/Security/Sensor.cs
@@ -90,6 +90,12 @@ public long? OpenHealthIssuesCount
get { return BackingStore?.Get("sensorType"); }
set { BackingStore?.Set("sensorType", value); }
}
+ /// The serviceStatus property
+ public global::Microsoft.Graph.Models.Security.ServiceStatus? ServiceStatus
+ {
+ get { return BackingStore?.Get("serviceStatus"); }
+ set { BackingStore?.Set("serviceStatus", value); }
+ }
/// The settings property
#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER
#nullable enable
@@ -148,6 +154,7 @@ public override IDictionary> GetFieldDeserializers()
{ "healthStatus", n => { HealthStatus = n.GetEnumValue(); } },
{ "openHealthIssuesCount", n => { OpenHealthIssuesCount = n.GetLongValue(); } },
{ "sensorType", n => { SensorType = n.GetEnumValue(); } },
+ { "serviceStatus", n => { ServiceStatus = n.GetEnumValue(); } },
{ "settings", n => { Settings = n.GetObjectValue(global::Microsoft.Graph.Models.Security.SensorSettings.CreateFromDiscriminatorValue); } },
{ "version", n => { Version = n.GetStringValue(); } },
};
@@ -168,6 +175,7 @@ public override void Serialize(ISerializationWriter writer)
writer.WriteEnumValue("healthStatus", HealthStatus);
writer.WriteLongValue("openHealthIssuesCount", OpenHealthIssuesCount);
writer.WriteEnumValue("sensorType", SensorType);
+ writer.WriteEnumValue("serviceStatus", ServiceStatus);
writer.WriteObjectValue("settings", Settings);
writer.WriteStringValue("version", Version);
}
diff --git a/src/Microsoft.Graph/Generated/Models/Security/SensorCandidate.cs b/src/Microsoft.Graph/Generated/Models/Security/SensorCandidate.cs
index c59186b7e26..aadae3046ab 100644
--- a/src/Microsoft.Graph/Generated/Models/Security/SensorCandidate.cs
+++ b/src/Microsoft.Graph/Generated/Models/Security/SensorCandidate.cs
@@ -27,6 +27,22 @@ public string ComputerDnsName
get { return BackingStore?.Get("computerDnsName"); }
set { BackingStore?.Set("computerDnsName", value); }
}
+#endif
+ /// The domain name of the sensor.
+#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER
+#nullable enable
+ public string? DomainName
+ {
+ get { return BackingStore?.Get("domainName"); }
+ set { BackingStore?.Set("domainName", value); }
+ }
+#nullable restore
+#else
+ public string DomainName
+ {
+ get { return BackingStore?.Get("domainName"); }
+ set { BackingStore?.Set("domainName", value); }
+ }
#endif
/// The date and time when the sensor was last seen.
public DateTimeOffset? LastSeenDateTime
@@ -69,6 +85,7 @@ public override IDictionary> GetFieldDeserializers()
return new Dictionary>(base.GetFieldDeserializers())
{
{ "computerDnsName", n => { ComputerDnsName = n.GetStringValue(); } },
+ { "domainName", n => { DomainName = n.GetStringValue(); } },
{ "lastSeenDateTime", n => { LastSeenDateTime = n.GetDateTimeOffsetValue(); } },
{ "senseClientVersion", n => { SenseClientVersion = n.GetStringValue(); } },
};
@@ -82,6 +99,7 @@ public override void Serialize(ISerializationWriter writer)
if(ReferenceEquals(writer, null)) throw new ArgumentNullException(nameof(writer));
base.Serialize(writer);
writer.WriteStringValue("computerDnsName", ComputerDnsName);
+ writer.WriteStringValue("domainName", DomainName);
writer.WriteDateTimeOffsetValue("lastSeenDateTime", LastSeenDateTime);
writer.WriteStringValue("senseClientVersion", SenseClientVersion);
}
diff --git a/src/Microsoft.Graph/Generated/Models/Security/ServiceStatus.cs b/src/Microsoft.Graph/Generated/Models/Security/ServiceStatus.cs
new file mode 100644
index 00000000000..7de068ef9bd
--- /dev/null
+++ b/src/Microsoft.Graph/Generated/Models/Security/ServiceStatus.cs
@@ -0,0 +1,40 @@
+//
+using System.Runtime.Serialization;
+using System;
+namespace Microsoft.Graph.Models.Security
+{
+ [global::System.CodeDom.Compiler.GeneratedCode("Kiota", "1.0.0")]
+ #pragma warning disable CS1591
+ public enum ServiceStatus
+ #pragma warning restore CS1591
+ {
+ [EnumMember(Value = "stopped")]
+ #pragma warning disable CS1591
+ Stopped,
+ #pragma warning restore CS1591
+ [EnumMember(Value = "starting")]
+ #pragma warning disable CS1591
+ Starting,
+ #pragma warning restore CS1591
+ [EnumMember(Value = "running")]
+ #pragma warning disable CS1591
+ Running,
+ #pragma warning restore CS1591
+ [EnumMember(Value = "disabled")]
+ #pragma warning disable CS1591
+ Disabled,
+ #pragma warning restore CS1591
+ [EnumMember(Value = "onboarding")]
+ #pragma warning disable CS1591
+ Onboarding,
+ #pragma warning restore CS1591
+ [EnumMember(Value = "unknown")]
+ #pragma warning disable CS1591
+ Unknown,
+ #pragma warning restore CS1591
+ [EnumMember(Value = "unknownFutureValue")]
+ #pragma warning disable CS1591
+ UnknownFutureValue,
+ #pragma warning restore CS1591
+ }
+}
diff --git a/src/Microsoft.Graph/Generated/Models/ServicePrincipal.cs b/src/Microsoft.Graph/Generated/Models/ServicePrincipal.cs
index 515526adf11..8d0bc9e6375 100644
--- a/src/Microsoft.Graph/Generated/Models/ServicePrincipal.cs
+++ b/src/Microsoft.Graph/Generated/Models/ServicePrincipal.cs
@@ -670,7 +670,7 @@ public List ServicePrincipalNames
set { BackingStore?.Set("servicePrincipalNames", value); }
}
#endif
- /// Identifies whether the service principal represents an application, a managed identity, or a legacy application. This is set by Microsoft Entra ID internally. The servicePrincipalType property can be set to three different values: Application - A service principal that represents an application or service. The appId property identifies the associated app registration, and matches the appId of an application, possibly from a different tenant. If the associated app registration is missing, tokens aren't issued for the service principal.ManagedIdentity - A service principal that represents a managed identity. Service principals representing managed identities can be granted access and permissions, but can't be updated or modified directly.Legacy - A service principal that represents an app created before app registrations, or through legacy experiences. A legacy service principal can have credentials, service principal names, reply URLs, and other properties that are editable by an authorized user, but doesn't have an associated app registration. The appId value doesn't associate the service principal with an app registration. The service principal can only be used in the tenant where it was created.SocialIdp - For internal use.
+ /// Identifies whether the service principal represents an application, a managed identity, or a legacy application. This property is set by Microsoft Entra ID internally. The servicePrincipalType property can be set to three different values: Application - A service principal that represents an application or service. The appId property identifies the associated app registration, and matches the appId of an application, possibly from a different tenant. If the associated app registration is missing, tokens aren't issued for the service principal.ManagedIdentity - A service principal that represents a managed identity. Service principals representing managed identities can be granted access and permissions, but can't be updated or modified directly.Legacy - A service principal that represents an app created before app registrations, or through legacy experiences. A legacy service principal can have credentials, service principal names, reply URLs, and other properties that are editable by an authorized user, but doesn't have an associated app registration. The appId value doesn't associate the service principal with an app registration. The service principal can only be used in the tenant where it was created.ServiceIdentity - A service principal that represents an agent identity.SocialIdp - For internal use.
#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER
#nullable enable
public string? ServicePrincipalType
diff --git a/src/Microsoft.Graph/Generated/kiota-dom-export.txt b/src/Microsoft.Graph/Generated/kiota-dom-export.txt
index 2adc0b161da..560ba79f036 100644
--- a/src/Microsoft.Graph/Generated/kiota-dom-export.txt
+++ b/src/Microsoft.Graph/Generated/kiota-dom-export.txt
@@ -114790,14 +114790,28 @@ Microsoft.Graph.Models.protectedContent::|public|OdataType:string
Microsoft.Graph.Models.protectedContent::|public|Serialize(writer:ISerializationWriter):void
Microsoft.Graph.Models.protectedContent::|static|public|CreateFromDiscriminatorValue(parseNode:IParseNode):global.Microsoft.Graph.Models.ProtectedContent
Microsoft.Graph.Models.protectedContent~~>IAdditionalDataHolder; IBackedModel; IParsable
+Microsoft.Graph.Models.protectionPolicyArtifactCount::|public|AdditionalData:IDictionary
+Microsoft.Graph.Models.protectionPolicyArtifactCount::|public|BackingStore:IBackingStore
+Microsoft.Graph.Models.protectionPolicyArtifactCount::|public|Completed:int?
+Microsoft.Graph.Models.protectionPolicyArtifactCount::|public|constructor():void
+Microsoft.Graph.Models.protectionPolicyArtifactCount::|public|Failed:int?
+Microsoft.Graph.Models.protectionPolicyArtifactCount::|public|GetFieldDeserializers():IDictionary>
+Microsoft.Graph.Models.protectionPolicyArtifactCount::|public|InProgress:int?
+Microsoft.Graph.Models.protectionPolicyArtifactCount::|public|OdataType:string
+Microsoft.Graph.Models.protectionPolicyArtifactCount::|public|Serialize(writer:ISerializationWriter):void
+Microsoft.Graph.Models.protectionPolicyArtifactCount::|public|Total:int?
+Microsoft.Graph.Models.protectionPolicyArtifactCount::|static|public|CreateFromDiscriminatorValue(parseNode:IParseNode):global.Microsoft.Graph.Models.ProtectionPolicyArtifactCount
+Microsoft.Graph.Models.protectionPolicyArtifactCount~~>IAdditionalDataHolder; IBackedModel; IParsable
Microsoft.Graph.Models.protectionPolicyBase-->global.Microsoft.Graph.Models.Entity
Microsoft.Graph.Models.protectionPolicyBase::|public|CreatedBy:global.Microsoft.Graph.Models.IdentitySet
Microsoft.Graph.Models.protectionPolicyBase::|public|CreatedDateTime:DateTimeOffset?
Microsoft.Graph.Models.protectionPolicyBase::|public|DisplayName:string
Microsoft.Graph.Models.protectionPolicyBase::|public|GetFieldDeserializers():IDictionary>
+Microsoft.Graph.Models.protectionPolicyBase::|public|IsEnabled:bool?
Microsoft.Graph.Models.protectionPolicyBase::|public|LastModifiedBy:global.Microsoft.Graph.Models.IdentitySet
Microsoft.Graph.Models.protectionPolicyBase::|public|LastModifiedDateTime:DateTimeOffset?
Microsoft.Graph.Models.protectionPolicyBase::|public|OdataType:string
+Microsoft.Graph.Models.protectionPolicyBase::|public|ProtectionPolicyArtifactCount:global.Microsoft.Graph.Models.ProtectionPolicyArtifactCount
Microsoft.Graph.Models.protectionPolicyBase::|public|RetentionSettings:List
Microsoft.Graph.Models.protectionPolicyBase::|public|Serialize(writer:ISerializationWriter):void
Microsoft.Graph.Models.protectionPolicyBase::|public|Status:global.Microsoft.Graph.Models.ProtectionPolicyStatus?
@@ -118638,6 +118652,7 @@ Microsoft.Graph.Models.Security.incident::|public|IncidentWebUrl:string
Microsoft.Graph.Models.Security.incident::|public|LastModifiedBy:string
Microsoft.Graph.Models.Security.incident::|public|LastUpdateDateTime:DateTimeOffset?
Microsoft.Graph.Models.Security.incident::|public|OdataType:string
+Microsoft.Graph.Models.Security.incident::|public|PriorityScore:int?
Microsoft.Graph.Models.Security.incident::|public|RedirectIncidentId:string
Microsoft.Graph.Models.Security.incident::|public|ResolvingComment:string
Microsoft.Graph.Models.Security.incident::|public|Serialize(writer:ISerializationWriter):void
@@ -119310,11 +119325,13 @@ Microsoft.Graph.Models.Security.sensor::|public|OdataType:string
Microsoft.Graph.Models.Security.sensor::|public|OpenHealthIssuesCount:long?
Microsoft.Graph.Models.Security.sensor::|public|SensorType:global.Microsoft.Graph.Models.Security.SensorType?
Microsoft.Graph.Models.Security.sensor::|public|Serialize(writer:ISerializationWriter):void
+Microsoft.Graph.Models.Security.sensor::|public|ServiceStatus:global.Microsoft.Graph.Models.Security.ServiceStatus?
Microsoft.Graph.Models.Security.sensor::|public|Settings:global.Microsoft.Graph.Models.Security.SensorSettings
Microsoft.Graph.Models.Security.sensor::|public|Version:string
Microsoft.Graph.Models.Security.sensor::|static|public|CreateFromDiscriminatorValue(parseNode:IParseNode):global.Microsoft.Graph.Models.Security.Sensor
Microsoft.Graph.Models.Security.sensorCandidate-->global.Microsoft.Graph.Models.Entity
Microsoft.Graph.Models.Security.sensorCandidate::|public|ComputerDnsName:string
+Microsoft.Graph.Models.Security.sensorCandidate::|public|DomainName:string
Microsoft.Graph.Models.Security.sensorCandidate::|public|GetFieldDeserializers():IDictionary>
Microsoft.Graph.Models.Security.sensorCandidate::|public|LastSeenDateTime:DateTimeOffset?
Microsoft.Graph.Models.Security.sensorCandidate::|public|OdataType:string
@@ -119404,6 +119421,13 @@ Microsoft.Graph.Models.Security.serviceSource::0010-microsoftDefenderForCloud
Microsoft.Graph.Models.Security.serviceSource::0011-microsoftSentinel
Microsoft.Graph.Models.Security.serviceSource::0012-microsoftInsiderRiskManagement
Microsoft.Graph.Models.Security.serviceSource::0013-microsoftThreatIntelligence
+Microsoft.Graph.Models.Security.serviceStatus::0000-stopped
+Microsoft.Graph.Models.Security.serviceStatus::0001-starting
+Microsoft.Graph.Models.Security.serviceStatus::0002-running
+Microsoft.Graph.Models.Security.serviceStatus::0003-disabled
+Microsoft.Graph.Models.Security.serviceStatus::0004-onboarding
+Microsoft.Graph.Models.Security.serviceStatus::0005-unknown
+Microsoft.Graph.Models.Security.serviceStatus::0006-unknownFutureValue
Microsoft.Graph.Models.Security.singlePropertySchema::|public|AdditionalData:IDictionary
Microsoft.Graph.Models.Security.singlePropertySchema::|public|BackingStore:IBackingStore
Microsoft.Graph.Models.Security.singlePropertySchema::|public|constructor():void
diff --git a/src/Microsoft.Graph/Generated/kiota-lock.json b/src/Microsoft.Graph/Generated/kiota-lock.json
index 7377dd44ab4..6862b3fd9d1 100644
--- a/src/Microsoft.Graph/Generated/kiota-lock.json
+++ b/src/Microsoft.Graph/Generated/kiota-lock.json
@@ -1,5 +1,5 @@
{
- "descriptionHash": "E447522D07D5280D03AE980E261F704EC7DFFB38AA82C6ECCEB1E1961B84B9060C1F748B8D5CA3822EC190D29A29D7FB0B4EC9B7D063F7B5174A07BD4210B6B4",
+ "descriptionHash": "8A7229A3AAC3EA73DD3751139F26E4BFA13E44560944A50736902F6B60AB8B48CB785B3FF1F85D3D55A3826AD5E42121DEB4DA534CAD1AACAF761326D10C8ABB",
"descriptionLocation": "../../msgraph-metadata/clean_v10_openapi/openapi.yaml",
"lockFileVersion": "1.0.0",
"kiotaVersion": "1.30.0",