From d82def49c6d26ccbb54c9e53c10df789964173e7 Mon Sep 17 00:00:00 2001 From: Microsoft Graph DevX Tooling Date: Thu, 22 Jan 2026 18:17:27 +0000 Subject: [PATCH] feat(generation): update request builders and models Update generated files with build 208109 --- .../Models/ProtectionPolicyArtifactCount.php | 202 ++++++++++++++++++ src/Generated/Models/ProtectionPolicyBase.php | 44 ++++ src/Generated/Models/Security/Alert.php | 4 +- src/Generated/Models/Security/Incident.php | 22 ++ src/Generated/Models/Security/Sensor.php | 22 ++ .../Models/Security/SensorCandidate.php | 22 ++ .../Models/Security/ServiceStatus.php | 15 ++ src/Generated/Models/ServicePrincipal.php | 4 +- src/Generated/kiota-dom-export.txt | 36 ++++ src/Generated/kiota-lock.json | 2 +- 10 files changed, 368 insertions(+), 5 deletions(-) create mode 100644 src/Generated/Models/ProtectionPolicyArtifactCount.php create mode 100644 src/Generated/Models/Security/ServiceStatus.php diff --git a/src/Generated/Models/ProtectionPolicyArtifactCount.php b/src/Generated/Models/ProtectionPolicyArtifactCount.php new file mode 100644 index 00000000000..7f42da80379 --- /dev/null +++ b/src/Generated/Models/ProtectionPolicyArtifactCount.php @@ -0,0 +1,202 @@ +backingStore = BackingStoreFactorySingleton::getInstance()->createBackingStore(); + $this->setAdditionalData([]); + } + + /** + * Creates a new instance of the appropriate class based on discriminator value + * @param ParseNode $parseNode The parse node to use to read the discriminator value and create the object + * @return ProtectionPolicyArtifactCount + */ + public static function createFromDiscriminatorValue(ParseNode $parseNode): ProtectionPolicyArtifactCount { + return new ProtectionPolicyArtifactCount(); + } + + /** + * Gets the AdditionalData property value. Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well. + * @return array|null + */ + public function getAdditionalData(): ?array { + $val = $this->getBackingStore()->get('additionalData'); + if (is_null($val) || is_array($val)) { + /** @var array|null $val */ + return $val; + } + throw new \UnexpectedValueException("Invalid type found in backing store for 'additionalData'"); + } + + /** + * Gets the BackingStore property value. Stores model information. + * @return BackingStore + */ + public function getBackingStore(): BackingStore { + return $this->backingStore; + } + + /** + * Gets the completed property value. The completed property + * @return int|null + */ + public function getCompleted(): ?int { + $val = $this->getBackingStore()->get('completed'); + if (is_null($val) || is_int($val)) { + return $val; + } + throw new \UnexpectedValueException("Invalid type found in backing store for 'completed'"); + } + + /** + * Gets the failed property value. The failed property + * @return int|null + */ + public function getFailed(): ?int { + $val = $this->getBackingStore()->get('failed'); + if (is_null($val) || is_int($val)) { + return $val; + } + throw new \UnexpectedValueException("Invalid type found in backing store for 'failed'"); + } + + /** + * The deserialization information for the current model + * @return array + */ + public function getFieldDeserializers(): array { + $o = $this; + return [ + 'completed' => fn(ParseNode $n) => $o->setCompleted($n->getIntegerValue()), + 'failed' => fn(ParseNode $n) => $o->setFailed($n->getIntegerValue()), + 'inProgress' => fn(ParseNode $n) => $o->setInProgress($n->getIntegerValue()), + '@odata.type' => fn(ParseNode $n) => $o->setOdataType($n->getStringValue()), + 'total' => fn(ParseNode $n) => $o->setTotal($n->getIntegerValue()), + ]; + } + + /** + * Gets the inProgress property value. The inProgress property + * @return int|null + */ + public function getInProgress(): ?int { + $val = $this->getBackingStore()->get('inProgress'); + if (is_null($val) || is_int($val)) { + return $val; + } + throw new \UnexpectedValueException("Invalid type found in backing store for 'inProgress'"); + } + + /** + * Gets the @odata.type property value. The OdataType property + * @return string|null + */ + public function getOdataType(): ?string { + $val = $this->getBackingStore()->get('odataType'); + if (is_null($val) || is_string($val)) { + return $val; + } + throw new \UnexpectedValueException("Invalid type found in backing store for 'odataType'"); + } + + /** + * Gets the total property value. The total property + * @return int|null + */ + public function getTotal(): ?int { + $val = $this->getBackingStore()->get('total'); + if (is_null($val) || is_int($val)) { + return $val; + } + throw new \UnexpectedValueException("Invalid type found in backing store for 'total'"); + } + + /** + * Serializes information the current object + * @param SerializationWriter $writer Serialization writer to use to serialize this model + */ + public function serialize(SerializationWriter $writer): void { + $writer->writeIntegerValue('completed', $this->getCompleted()); + $writer->writeIntegerValue('failed', $this->getFailed()); + $writer->writeIntegerValue('inProgress', $this->getInProgress()); + $writer->writeStringValue('@odata.type', $this->getOdataType()); + $writer->writeIntegerValue('total', $this->getTotal()); + $writer->writeAdditionalData($this->getAdditionalData()); + } + + /** + * Sets the AdditionalData property value. Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well. + * @param array $value Value to set for the AdditionalData property. + */ + public function setAdditionalData(?array $value): void { + $this->getBackingStore()->set('additionalData', $value); + } + + /** + * Sets the BackingStore property value. Stores model information. + * @param BackingStore $value Value to set for the BackingStore property. + */ + public function setBackingStore(BackingStore $value): void { + $this->backingStore = $value; + } + + /** + * Sets the completed property value. The completed property + * @param int|null $value Value to set for the completed property. + */ + public function setCompleted(?int $value): void { + $this->getBackingStore()->set('completed', $value); + } + + /** + * Sets the failed property value. The failed property + * @param int|null $value Value to set for the failed property. + */ + public function setFailed(?int $value): void { + $this->getBackingStore()->set('failed', $value); + } + + /** + * Sets the inProgress property value. The inProgress property + * @param int|null $value Value to set for the inProgress property. + */ + public function setInProgress(?int $value): void { + $this->getBackingStore()->set('inProgress', $value); + } + + /** + * Sets the @odata.type property value. The OdataType property + * @param string|null $value Value to set for the @odata.type property. + */ + public function setOdataType(?string $value): void { + $this->getBackingStore()->set('odataType', $value); + } + + /** + * Sets the total property value. The total property + * @param int|null $value Value to set for the total property. + */ + public function setTotal(?int $value): void { + $this->getBackingStore()->set('total', $value); + } + +} diff --git a/src/Generated/Models/ProtectionPolicyBase.php b/src/Generated/Models/ProtectionPolicyBase.php index a0e61c43af9..e582a1ee297 100644 --- a/src/Generated/Models/ProtectionPolicyBase.php +++ b/src/Generated/Models/ProtectionPolicyBase.php @@ -81,13 +81,27 @@ public function getFieldDeserializers(): array { 'createdBy' => fn(ParseNode $n) => $o->setCreatedBy($n->getObjectValue([IdentitySet::class, 'createFromDiscriminatorValue'])), 'createdDateTime' => fn(ParseNode $n) => $o->setCreatedDateTime($n->getDateTimeValue()), 'displayName' => fn(ParseNode $n) => $o->setDisplayName($n->getStringValue()), + 'isEnabled' => fn(ParseNode $n) => $o->setIsEnabled($n->getBooleanValue()), 'lastModifiedBy' => fn(ParseNode $n) => $o->setLastModifiedBy($n->getObjectValue([IdentitySet::class, 'createFromDiscriminatorValue'])), 'lastModifiedDateTime' => fn(ParseNode $n) => $o->setLastModifiedDateTime($n->getDateTimeValue()), + 'protectionPolicyArtifactCount' => fn(ParseNode $n) => $o->setProtectionPolicyArtifactCount($n->getObjectValue([ProtectionPolicyArtifactCount::class, 'createFromDiscriminatorValue'])), 'retentionSettings' => fn(ParseNode $n) => $o->setRetentionSettings($n->getCollectionOfObjectValues([RetentionSetting::class, 'createFromDiscriminatorValue'])), 'status' => fn(ParseNode $n) => $o->setStatus($n->getEnumValue(ProtectionPolicyStatus::class)), ]); } + /** + * Gets the isEnabled property value. The isEnabled property + * @return bool|null + */ + public function getIsEnabled(): ?bool { + $val = $this->getBackingStore()->get('isEnabled'); + if (is_null($val) || is_bool($val)) { + return $val; + } + throw new \UnexpectedValueException("Invalid type found in backing store for 'isEnabled'"); + } + /** * Gets the lastModifiedBy property value. The identity of the person who last modified the policy. * @return IdentitySet|null @@ -112,6 +126,18 @@ public function getLastModifiedDateTime(): ?DateTime { throw new \UnexpectedValueException("Invalid type found in backing store for 'lastModifiedDateTime'"); } + /** + * Gets the protectionPolicyArtifactCount property value. The protectionPolicyArtifactCount property + * @return ProtectionPolicyArtifactCount|null + */ + public function getProtectionPolicyArtifactCount(): ?ProtectionPolicyArtifactCount { + $val = $this->getBackingStore()->get('protectionPolicyArtifactCount'); + if (is_null($val) || $val instanceof ProtectionPolicyArtifactCount) { + return $val; + } + throw new \UnexpectedValueException("Invalid type found in backing store for 'protectionPolicyArtifactCount'"); + } + /** * Gets the retentionSettings property value. Contains the retention setting details for the policy. * @return array|null @@ -147,8 +173,10 @@ public function serialize(SerializationWriter $writer): void { $writer->writeObjectValue('createdBy', $this->getCreatedBy()); $writer->writeDateTimeValue('createdDateTime', $this->getCreatedDateTime()); $writer->writeStringValue('displayName', $this->getDisplayName()); + $writer->writeBooleanValue('isEnabled', $this->getIsEnabled()); $writer->writeObjectValue('lastModifiedBy', $this->getLastModifiedBy()); $writer->writeDateTimeValue('lastModifiedDateTime', $this->getLastModifiedDateTime()); + $writer->writeObjectValue('protectionPolicyArtifactCount', $this->getProtectionPolicyArtifactCount()); $writer->writeCollectionOfObjectValues('retentionSettings', $this->getRetentionSettings()); $writer->writeEnumValue('status', $this->getStatus()); } @@ -177,6 +205,14 @@ public function setDisplayName(?string $value): void { $this->getBackingStore()->set('displayName', $value); } + /** + * Sets the isEnabled property value. The isEnabled property + * @param bool|null $value Value to set for the isEnabled property. + */ + public function setIsEnabled(?bool $value): void { + $this->getBackingStore()->set('isEnabled', $value); + } + /** * Sets the lastModifiedBy property value. The identity of the person who last modified the policy. * @param IdentitySet|null $value Value to set for the lastModifiedBy property. @@ -193,6 +229,14 @@ public function setLastModifiedDateTime(?DateTime $value): void { $this->getBackingStore()->set('lastModifiedDateTime', $value); } + /** + * Sets the protectionPolicyArtifactCount property value. The protectionPolicyArtifactCount property + * @param ProtectionPolicyArtifactCount|null $value Value to set for the protectionPolicyArtifactCount property. + */ + public function setProtectionPolicyArtifactCount(?ProtectionPolicyArtifactCount $value): void { + $this->getBackingStore()->set('protectionPolicyArtifactCount', $value); + } + /** * Sets the retentionSettings property value. Contains the retention setting details for the policy. * @param array|null $value Value to set for the retentionSettings property. diff --git a/src/Generated/Models/Security/Alert.php b/src/Generated/Models/Security/Alert.php index 4a8990a16f7..5d265105376 100644 --- a/src/Generated/Models/Security/Alert.php +++ b/src/Generated/Models/Security/Alert.php @@ -162,7 +162,7 @@ public function getDescription(): ?string { } /** - * Gets the detectionSource property value. 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. + * Gets the detectionSource property value. Detection technology or sensor that identified the notable component or activity. * @return DetectionSource|null */ public function getDetectionSource(): ?DetectionSource { @@ -632,7 +632,7 @@ public function setDescription(?string $value): void { } /** - * Sets the detectionSource property value. 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. + * Sets the detectionSource property value. Detection technology or sensor that identified the notable component or activity. * @param DetectionSource|null $value Value to set for the detectionSource property. */ public function setDetectionSource(?DetectionSource $value): void { diff --git a/src/Generated/Models/Security/Incident.php b/src/Generated/Models/Security/Incident.php index 4fce10c0e0c..3f0f832220d 100644 --- a/src/Generated/Models/Security/Incident.php +++ b/src/Generated/Models/Security/Incident.php @@ -167,6 +167,7 @@ public function getFieldDeserializers(): array { 'incidentWebUrl' => fn(ParseNode $n) => $o->setIncidentWebUrl($n->getStringValue()), 'lastModifiedBy' => fn(ParseNode $n) => $o->setLastModifiedBy($n->getStringValue()), 'lastUpdateDateTime' => fn(ParseNode $n) => $o->setLastUpdateDateTime($n->getDateTimeValue()), + 'priorityScore' => fn(ParseNode $n) => $o->setPriorityScore($n->getIntegerValue()), 'redirectIncidentId' => fn(ParseNode $n) => $o->setRedirectIncidentId($n->getStringValue()), 'resolvingComment' => fn(ParseNode $n) => $o->setResolvingComment($n->getStringValue()), 'severity' => fn(ParseNode $n) => $o->setSeverity($n->getEnumValue(AlertSeverity::class)), @@ -220,6 +221,18 @@ public function getLastUpdateDateTime(): ?DateTime { throw new \UnexpectedValueException("Invalid type found in backing store for 'lastUpdateDateTime'"); } + /** + * Gets the priorityScore property value. The priorityScore property + * @return int|null + */ + public function getPriorityScore(): ?int { + $val = $this->getBackingStore()->get('priorityScore'); + if (is_null($val) || is_int($val)) { + return $val; + } + throw new \UnexpectedValueException("Invalid type found in backing store for 'priorityScore'"); + } + /** * Gets the redirectIncidentId property 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. * @return string|null @@ -324,6 +337,7 @@ public function serialize(SerializationWriter $writer): void { $writer->writeStringValue('incidentWebUrl', $this->getIncidentWebUrl()); $writer->writeStringValue('lastModifiedBy', $this->getLastModifiedBy()); $writer->writeDateTimeValue('lastUpdateDateTime', $this->getLastUpdateDateTime()); + $writer->writeIntegerValue('priorityScore', $this->getPriorityScore()); $writer->writeStringValue('redirectIncidentId', $this->getRedirectIncidentId()); $writer->writeStringValue('resolvingComment', $this->getResolvingComment()); $writer->writeEnumValue('severity', $this->getSeverity()); @@ -429,6 +443,14 @@ public function setLastUpdateDateTime(?DateTime $value): void { $this->getBackingStore()->set('lastUpdateDateTime', $value); } + /** + * Sets the priorityScore property value. The priorityScore property + * @param int|null $value Value to set for the priorityScore property. + */ + public function setPriorityScore(?int $value): void { + $this->getBackingStore()->set('priorityScore', $value); + } + /** * Sets the redirectIncidentId property 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. * @param string|null $value Value to set for the redirectIncidentId property. diff --git a/src/Generated/Models/Security/Sensor.php b/src/Generated/Models/Security/Sensor.php index 590b674d946..f8a67878541 100644 --- a/src/Generated/Models/Security/Sensor.php +++ b/src/Generated/Models/Security/Sensor.php @@ -90,6 +90,7 @@ public function getFieldDeserializers(): array { 'healthStatus' => fn(ParseNode $n) => $o->setHealthStatus($n->getEnumValue(SensorHealthStatus::class)), 'openHealthIssuesCount' => fn(ParseNode $n) => $o->setOpenHealthIssuesCount($n->getIntegerValue()), 'sensorType' => fn(ParseNode $n) => $o->setSensorType($n->getEnumValue(SensorType::class)), + 'serviceStatus' => fn(ParseNode $n) => $o->setServiceStatus($n->getEnumValue(ServiceStatus::class)), 'settings' => fn(ParseNode $n) => $o->setSettings($n->getObjectValue([SensorSettings::class, 'createFromDiscriminatorValue'])), 'version' => fn(ParseNode $n) => $o->setVersion($n->getStringValue()), ]); @@ -145,6 +146,18 @@ public function getSensorType(): ?SensorType { throw new \UnexpectedValueException("Invalid type found in backing store for 'sensorType'"); } + /** + * Gets the serviceStatus property value. The serviceStatus property + * @return ServiceStatus|null + */ + public function getServiceStatus(): ?ServiceStatus { + $val = $this->getBackingStore()->get('serviceStatus'); + if (is_null($val) || $val instanceof ServiceStatus) { + return $val; + } + throw new \UnexpectedValueException("Invalid type found in backing store for 'serviceStatus'"); + } + /** * Gets the settings property value. The settings property * @return SensorSettings|null @@ -183,6 +196,7 @@ public function serialize(SerializationWriter $writer): void { $writer->writeEnumValue('healthStatus', $this->getHealthStatus()); $writer->writeIntegerValue('openHealthIssuesCount', $this->getOpenHealthIssuesCount()); $writer->writeEnumValue('sensorType', $this->getSensorType()); + $writer->writeEnumValue('serviceStatus', $this->getServiceStatus()); $writer->writeObjectValue('settings', $this->getSettings()); $writer->writeStringValue('version', $this->getVersion()); } @@ -251,6 +265,14 @@ public function setSensorType(?SensorType $value): void { $this->getBackingStore()->set('sensorType', $value); } + /** + * Sets the serviceStatus property value. The serviceStatus property + * @param ServiceStatus|null $value Value to set for the serviceStatus property. + */ + public function setServiceStatus(?ServiceStatus $value): void { + $this->getBackingStore()->set('serviceStatus', $value); + } + /** * Sets the settings property value. The settings property * @param SensorSettings|null $value Value to set for the settings property. diff --git a/src/Generated/Models/Security/SensorCandidate.php b/src/Generated/Models/Security/SensorCandidate.php index 401cfc0ecc4..e3a545a5b73 100644 --- a/src/Generated/Models/Security/SensorCandidate.php +++ b/src/Generated/Models/Security/SensorCandidate.php @@ -38,6 +38,18 @@ public function getComputerDnsName(): ?string { throw new \UnexpectedValueException("Invalid type found in backing store for 'computerDnsName'"); } + /** + * Gets the domainName property value. The domain name of the sensor. + * @return string|null + */ + public function getDomainName(): ?string { + $val = $this->getBackingStore()->get('domainName'); + if (is_null($val) || is_string($val)) { + return $val; + } + throw new \UnexpectedValueException("Invalid type found in backing store for 'domainName'"); + } + /** * The deserialization information for the current model * @return array @@ -46,6 +58,7 @@ public function getFieldDeserializers(): array { $o = $this; return array_merge(parent::getFieldDeserializers(), [ 'computerDnsName' => fn(ParseNode $n) => $o->setComputerDnsName($n->getStringValue()), + 'domainName' => fn(ParseNode $n) => $o->setDomainName($n->getStringValue()), 'lastSeenDateTime' => fn(ParseNode $n) => $o->setLastSeenDateTime($n->getDateTimeValue()), 'senseClientVersion' => fn(ParseNode $n) => $o->setSenseClientVersion($n->getStringValue()), ]); @@ -82,6 +95,7 @@ public function getSenseClientVersion(): ?string { public function serialize(SerializationWriter $writer): void { parent::serialize($writer); $writer->writeStringValue('computerDnsName', $this->getComputerDnsName()); + $writer->writeStringValue('domainName', $this->getDomainName()); $writer->writeDateTimeValue('lastSeenDateTime', $this->getLastSeenDateTime()); $writer->writeStringValue('senseClientVersion', $this->getSenseClientVersion()); } @@ -94,6 +108,14 @@ public function setComputerDnsName(?string $value): void { $this->getBackingStore()->set('computerDnsName', $value); } + /** + * Sets the domainName property value. The domain name of the sensor. + * @param string|null $value Value to set for the domainName property. + */ + public function setDomainName(?string $value): void { + $this->getBackingStore()->set('domainName', $value); + } + /** * Sets the lastSeenDateTime property value. The date and time when the sensor was last seen. * @param DateTime|null $value Value to set for the lastSeenDateTime property. diff --git a/src/Generated/Models/Security/ServiceStatus.php b/src/Generated/Models/Security/ServiceStatus.php new file mode 100644 index 00000000000..00e8bbc7e08 --- /dev/null +++ b/src/Generated/Models/Security/ServiceStatus.php @@ -0,0 +1,15 @@ +AdditionalDataHolder; BackedModel; Parsable +Microsoft\Graph\Generated.models.protectionPolicyArtifactCount::|public|constructor():void +Microsoft\Graph\Generated.models.protectionPolicyArtifactCount::|public|getAdditionalData():array +Microsoft\Graph\Generated.models.protectionPolicyArtifactCount::|public|getBackingStore():BackingStore +Microsoft\Graph\Generated.models.protectionPolicyArtifactCount::|public|getCompleted():int +Microsoft\Graph\Generated.models.protectionPolicyArtifactCount::|public|getFailed():int +Microsoft\Graph\Generated.models.protectionPolicyArtifactCount::|public|GetFieldDeserializers():array +Microsoft\Graph\Generated.models.protectionPolicyArtifactCount::|public|getInProgress():int +Microsoft\Graph\Generated.models.protectionPolicyArtifactCount::|public|getOdataType():string +Microsoft\Graph\Generated.models.protectionPolicyArtifactCount::|public|getTotal():int +Microsoft\Graph\Generated.models.protectionPolicyArtifactCount::|public|Serialize(writer:ISerializationWriter):void +Microsoft\Graph\Generated.models.protectionPolicyArtifactCount::|public|setAdditionalData(value?:array):void +Microsoft\Graph\Generated.models.protectionPolicyArtifactCount::|public|setBackingStore(value:BackingStore):void +Microsoft\Graph\Generated.models.protectionPolicyArtifactCount::|public|setCompleted(value?:int):void +Microsoft\Graph\Generated.models.protectionPolicyArtifactCount::|public|setFailed(value?:int):void +Microsoft\Graph\Generated.models.protectionPolicyArtifactCount::|public|setInProgress(value?:int):void +Microsoft\Graph\Generated.models.protectionPolicyArtifactCount::|public|setOdataType(value?:string):void +Microsoft\Graph\Generated.models.protectionPolicyArtifactCount::|public|setTotal(value?:int):void +Microsoft\Graph\Generated.models.protectionPolicyArtifactCount::|static|public|CreateFromDiscriminatorValue(parseNode:ParseNode):ProtectionPolicyArtifactCount +Microsoft\Graph\Generated.models.protectionPolicyArtifactCount~~>AdditionalDataHolder; BackedModel; Parsable Microsoft\Graph\Generated.models.protectionPolicyBase-->Entity Microsoft\Graph\Generated.models.protectionPolicyBase::|public|constructor():void Microsoft\Graph\Generated.models.protectionPolicyBase::|public|getCreatedBy():IdentitySet Microsoft\Graph\Generated.models.protectionPolicyBase::|public|getCreatedDateTime():DateTime Microsoft\Graph\Generated.models.protectionPolicyBase::|public|getDisplayName():string Microsoft\Graph\Generated.models.protectionPolicyBase::|public|GetFieldDeserializers():array +Microsoft\Graph\Generated.models.protectionPolicyBase::|public|getIsEnabled():bool Microsoft\Graph\Generated.models.protectionPolicyBase::|public|getLastModifiedBy():IdentitySet Microsoft\Graph\Generated.models.protectionPolicyBase::|public|getLastModifiedDateTime():DateTime +Microsoft\Graph\Generated.models.protectionPolicyBase::|public|getProtectionPolicyArtifactCount():ProtectionPolicyArtifactCount Microsoft\Graph\Generated.models.protectionPolicyBase::|public|getRetentionSettings():array Microsoft\Graph\Generated.models.protectionPolicyBase::|public|getStatus():ProtectionPolicyStatus Microsoft\Graph\Generated.models.protectionPolicyBase::|public|OdataType:string @@ -143101,8 +143122,10 @@ Microsoft\Graph\Generated.models.protectionPolicyBase::|public|Serialize(writer: Microsoft\Graph\Generated.models.protectionPolicyBase::|public|setCreatedBy(value?:IdentitySet):void Microsoft\Graph\Generated.models.protectionPolicyBase::|public|setCreatedDateTime(value?:DateTime):void Microsoft\Graph\Generated.models.protectionPolicyBase::|public|setDisplayName(value?:string):void +Microsoft\Graph\Generated.models.protectionPolicyBase::|public|setIsEnabled(value?:bool):void Microsoft\Graph\Generated.models.protectionPolicyBase::|public|setLastModifiedBy(value?:IdentitySet):void Microsoft\Graph\Generated.models.protectionPolicyBase::|public|setLastModifiedDateTime(value?:DateTime):void +Microsoft\Graph\Generated.models.protectionPolicyBase::|public|setProtectionPolicyArtifactCount(value?:ProtectionPolicyArtifactCount):void Microsoft\Graph\Generated.models.protectionPolicyBase::|public|setRetentionSettings(value?:array):void Microsoft\Graph\Generated.models.protectionPolicyBase::|public|setStatus(value?:ProtectionPolicyStatus):void Microsoft\Graph\Generated.models.protectionPolicyBase::|static|public|CreateFromDiscriminatorValue(parseNode:ParseNode):ProtectionPolicyBase @@ -148561,6 +148584,7 @@ Microsoft\Graph\Generated.models.security.incident::|public|GetFieldDeserializer Microsoft\Graph\Generated.models.security.incident::|public|getIncidentWebUrl():string Microsoft\Graph\Generated.models.security.incident::|public|getLastModifiedBy():string Microsoft\Graph\Generated.models.security.incident::|public|getLastUpdateDateTime():DateTime +Microsoft\Graph\Generated.models.security.incident::|public|getPriorityScore():int Microsoft\Graph\Generated.models.security.incident::|public|getRedirectIncidentId():string Microsoft\Graph\Generated.models.security.incident::|public|getResolvingComment():string Microsoft\Graph\Generated.models.security.incident::|public|getSeverity():AlertSeverity @@ -148582,6 +148606,7 @@ Microsoft\Graph\Generated.models.security.incident::|public|setDisplayName(value Microsoft\Graph\Generated.models.security.incident::|public|setIncidentWebUrl(value?:string):void Microsoft\Graph\Generated.models.security.incident::|public|setLastModifiedBy(value?:string):void Microsoft\Graph\Generated.models.security.incident::|public|setLastUpdateDateTime(value?:DateTime):void +Microsoft\Graph\Generated.models.security.incident::|public|setPriorityScore(value?:int):void Microsoft\Graph\Generated.models.security.incident::|public|setRedirectIncidentId(value?:string):void Microsoft\Graph\Generated.models.security.incident::|public|setResolvingComment(value?:string):void Microsoft\Graph\Generated.models.security.incident::|public|setSeverity(value?:AlertSeverity):void @@ -149554,6 +149579,7 @@ Microsoft\Graph\Generated.models.security.sensor::|public|getHealthIssues():arra Microsoft\Graph\Generated.models.security.sensor::|public|getHealthStatus():SensorHealthStatus Microsoft\Graph\Generated.models.security.sensor::|public|getOpenHealthIssuesCount():int Microsoft\Graph\Generated.models.security.sensor::|public|getSensorType():SensorType +Microsoft\Graph\Generated.models.security.sensor::|public|getServiceStatus():ServiceStatus Microsoft\Graph\Generated.models.security.sensor::|public|getSettings():SensorSettings Microsoft\Graph\Generated.models.security.sensor::|public|getVersion():string Microsoft\Graph\Generated.models.security.sensor::|public|OdataType:string @@ -149566,18 +149592,21 @@ Microsoft\Graph\Generated.models.security.sensor::|public|setHealthIssues(value? Microsoft\Graph\Generated.models.security.sensor::|public|setHealthStatus(value?:SensorHealthStatus):void Microsoft\Graph\Generated.models.security.sensor::|public|setOpenHealthIssuesCount(value?:int):void Microsoft\Graph\Generated.models.security.sensor::|public|setSensorType(value?:SensorType):void +Microsoft\Graph\Generated.models.security.sensor::|public|setServiceStatus(value?:ServiceStatus):void Microsoft\Graph\Generated.models.security.sensor::|public|setSettings(value?:SensorSettings):void Microsoft\Graph\Generated.models.security.sensor::|public|setVersion(value?:string):void Microsoft\Graph\Generated.models.security.sensor::|static|public|CreateFromDiscriminatorValue(parseNode:ParseNode):Sensor Microsoft\Graph\Generated.models.security.sensorCandidate-->Entity Microsoft\Graph\Generated.models.security.sensorCandidate::|public|constructor():void Microsoft\Graph\Generated.models.security.sensorCandidate::|public|getComputerDnsName():string +Microsoft\Graph\Generated.models.security.sensorCandidate::|public|getDomainName():string Microsoft\Graph\Generated.models.security.sensorCandidate::|public|GetFieldDeserializers():array Microsoft\Graph\Generated.models.security.sensorCandidate::|public|getLastSeenDateTime():DateTime Microsoft\Graph\Generated.models.security.sensorCandidate::|public|getSenseClientVersion():string Microsoft\Graph\Generated.models.security.sensorCandidate::|public|OdataType:string Microsoft\Graph\Generated.models.security.sensorCandidate::|public|Serialize(writer:ISerializationWriter):void Microsoft\Graph\Generated.models.security.sensorCandidate::|public|setComputerDnsName(value?:string):void +Microsoft\Graph\Generated.models.security.sensorCandidate::|public|setDomainName(value?:string):void Microsoft\Graph\Generated.models.security.sensorCandidate::|public|setLastSeenDateTime(value?:DateTime):void Microsoft\Graph\Generated.models.security.sensorCandidate::|public|setSenseClientVersion(value?:string):void Microsoft\Graph\Generated.models.security.sensorCandidate::|static|public|CreateFromDiscriminatorValue(parseNode:ParseNode):SensorCandidate @@ -149688,6 +149717,13 @@ Microsoft\Graph\Generated.models.security.serviceSource::0010-microsoftDefenderF Microsoft\Graph\Generated.models.security.serviceSource::0011-microsoftSentinel Microsoft\Graph\Generated.models.security.serviceSource::0012-microsoftInsiderRiskManagement Microsoft\Graph\Generated.models.security.serviceSource::0013-microsoftThreatIntelligence +Microsoft\Graph\Generated.models.security.serviceStatus::0000-stopped +Microsoft\Graph\Generated.models.security.serviceStatus::0001-starting +Microsoft\Graph\Generated.models.security.serviceStatus::0002-running +Microsoft\Graph\Generated.models.security.serviceStatus::0003-disabled +Microsoft\Graph\Generated.models.security.serviceStatus::0004-onboarding +Microsoft\Graph\Generated.models.security.serviceStatus::0005-unknown +Microsoft\Graph\Generated.models.security.serviceStatus::0006-unknownFutureValue Microsoft\Graph\Generated.models.security.singlePropertySchema::|public|constructor():void Microsoft\Graph\Generated.models.security.singlePropertySchema::|public|getAdditionalData():array Microsoft\Graph\Generated.models.security.singlePropertySchema::|public|getBackingStore():BackingStore diff --git a/src/Generated/kiota-lock.json b/src/Generated/kiota-lock.json index 939669940d0..5d2f04e20ba 100644 --- a/src/Generated/kiota-lock.json +++ b/src/Generated/kiota-lock.json @@ -1,5 +1,5 @@ { - "descriptionHash": "B772231A114EE0F151C5CAD415592E6EC30B995AF2CC2035B656C76E0001C925D96ED0F43B5BE31AF65452F62E25448AB3A19A7FBECB1096C50BCB71D40F0E49", + "descriptionHash": "B02CED4D519DAD7AEE3434A50C96EA210737F35497DEDEB8E7604CCBC9B0E4C9C9387FBD5AA8BDCD61AF3F723790969091A25F0BB6E7AF2D2ED117718910B5FC", "descriptionLocation": "../../msgraph-metadata/clean_v10_openapi/openapi.yaml", "lockFileVersion": "1.0.0", "kiotaVersion": "1.30.0",