PATH:
home
/
thebhoeo
/
.trash
/
backwpup
/
vendor
/
microsoft
/
microsoft-graph
/
src
/
SecurityNamespace
/
Model
<?php /** * Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information. * * ProcessEvidence File * PHP version 7 * * @category Library * @package Microsoft.Graph * @copyright (c) Microsoft Corporation. All rights reserved. * @license https://opensource.org/licenses/MIT MIT License * @link https://graph.microsoft.com */ namespace Microsoft\Graph\SecurityNamespace\Model; /** * ProcessEvidence class * * @category Model * @package Microsoft.Graph * @copyright (c) Microsoft Corporation. All rights reserved. * @license https://opensource.org/licenses/MIT MIT License * @link https://graph.microsoft.com */ class ProcessEvidence extends AlertEvidence { /** * Gets the detectionStatus * The status of the detection.The possible values are: detected, blocked, prevented, unknownFutureValue. * * @return DetectionStatus|null The detectionStatus */ public function getDetectionStatus() { if (array_key_exists("detectionStatus", $this->_propDict)) { if (is_a($this->_propDict["detectionStatus"], "\Microsoft\Graph\SecurityNamespace\Model\DetectionStatus") || is_null($this->_propDict["detectionStatus"])) { return $this->_propDict["detectionStatus"]; } else { $this->_propDict["detectionStatus"] = new DetectionStatus($this->_propDict["detectionStatus"]); return $this->_propDict["detectionStatus"]; } } return null; } /** * Sets the detectionStatus * The status of the detection.The possible values are: detected, blocked, prevented, unknownFutureValue. * * @param DetectionStatus $val The value to assign to the detectionStatus * * @return ProcessEvidence The ProcessEvidence */ public function setDetectionStatus($val) { $this->_propDict["detectionStatus"] = $val; return $this; } /** * Gets the imageFile * Image file details. * * @return FileDetails|null The imageFile */ public function getImageFile() { if (array_key_exists("imageFile", $this->_propDict)) { if (is_a($this->_propDict["imageFile"], "\Microsoft\Graph\SecurityNamespace\Model\FileDetails") || is_null($this->_propDict["imageFile"])) { return $this->_propDict["imageFile"]; } else { $this->_propDict["imageFile"] = new FileDetails($this->_propDict["imageFile"]); return $this->_propDict["imageFile"]; } } return null; } /** * Sets the imageFile * Image file details. * * @param FileDetails $val The value to assign to the imageFile * * @return ProcessEvidence The ProcessEvidence */ public function setImageFile($val) { $this->_propDict["imageFile"] = $val; return $this; } /** * Gets the mdeDeviceId * A unique identifier assigned to a device by Microsoft Defender for Endpoint. * * @return string|null The mdeDeviceId */ public function getMdeDeviceId() { if (array_key_exists("mdeDeviceId", $this->_propDict)) { return $this->_propDict["mdeDeviceId"]; } else { return null; } } /** * Sets the mdeDeviceId * A unique identifier assigned to a device by Microsoft Defender for Endpoint. * * @param string $val The value of the mdeDeviceId * * @return ProcessEvidence */ public function setMdeDeviceId($val) { $this->_propDict["mdeDeviceId"] = $val; return $this; } /** * Gets the parentProcessCreationDateTime * Date and time when the parent of the process was created. The DateTimeOffset type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. * * @return \DateTime|null The parentProcessCreationDateTime */ public function getParentProcessCreationDateTime() { if (array_key_exists("parentProcessCreationDateTime", $this->_propDict)) { if (is_a($this->_propDict["parentProcessCreationDateTime"], "\DateTime") || is_null($this->_propDict["parentProcessCreationDateTime"])) { return $this->_propDict["parentProcessCreationDateTime"]; } else { $this->_propDict["parentProcessCreationDateTime"] = new \DateTime($this->_propDict["parentProcessCreationDateTime"]); return $this->_propDict["parentProcessCreationDateTime"]; } } return null; } /** * Sets the parentProcessCreationDateTime * Date and time when the parent of the process was created. The DateTimeOffset type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. * * @param \DateTime $val The value to assign to the parentProcessCreationDateTime * * @return ProcessEvidence The ProcessEvidence */ public function setParentProcessCreationDateTime($val) { $this->_propDict["parentProcessCreationDateTime"] = $val; return $this; } /** * Gets the parentProcessId * Process ID (PID) of the parent process that spawned the process. * * @return int|null The parentProcessId */ public function getParentProcessId() { if (array_key_exists("parentProcessId", $this->_propDict)) { return $this->_propDict["parentProcessId"]; } else { return null; } } /** * Sets the parentProcessId * Process ID (PID) of the parent process that spawned the process. * * @param int $val The value of the parentProcessId * * @return ProcessEvidence */ public function setParentProcessId($val) { $this->_propDict["parentProcessId"] = $val; return $this; } /** * Gets the parentProcessImageFile * Parent process image file details. * * @return FileDetails|null The parentProcessImageFile */ public function getParentProcessImageFile() { if (array_key_exists("parentProcessImageFile", $this->_propDict)) { if (is_a($this->_propDict["parentProcessImageFile"], "\Microsoft\Graph\SecurityNamespace\Model\FileDetails") || is_null($this->_propDict["parentProcessImageFile"])) { return $this->_propDict["parentProcessImageFile"]; } else { $this->_propDict["parentProcessImageFile"] = new FileDetails($this->_propDict["parentProcessImageFile"]); return $this->_propDict["parentProcessImageFile"]; } } return null; } /** * Sets the parentProcessImageFile * Parent process image file details. * * @param FileDetails $val The value to assign to the parentProcessImageFile * * @return ProcessEvidence The ProcessEvidence */ public function setParentProcessImageFile($val) { $this->_propDict["parentProcessImageFile"] = $val; return $this; } /** * Gets the processCommandLine * Command line used to create the new process. * * @return string|null The processCommandLine */ public function getProcessCommandLine() { if (array_key_exists("processCommandLine", $this->_propDict)) { return $this->_propDict["processCommandLine"]; } else { return null; } } /** * Sets the processCommandLine * Command line used to create the new process. * * @param string $val The value of the processCommandLine * * @return ProcessEvidence */ public function setProcessCommandLine($val) { $this->_propDict["processCommandLine"] = $val; return $this; } /** * Gets the processCreationDateTime * Date and time when the process was created. The DateTimeOffset type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. * * @return \DateTime|null The processCreationDateTime */ public function getProcessCreationDateTime() { if (array_key_exists("processCreationDateTime", $this->_propDict)) { if (is_a($this->_propDict["processCreationDateTime"], "\DateTime") || is_null($this->_propDict["processCreationDateTime"])) { return $this->_propDict["processCreationDateTime"]; } else { $this->_propDict["processCreationDateTime"] = new \DateTime($this->_propDict["processCreationDateTime"]); return $this->_propDict["processCreationDateTime"]; } } return null; } /** * Sets the processCreationDateTime * Date and time when the process was created. The DateTimeOffset type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. * * @param \DateTime $val The value to assign to the processCreationDateTime * * @return ProcessEvidence The ProcessEvidence */ public function setProcessCreationDateTime($val) { $this->_propDict["processCreationDateTime"] = $val; return $this; } /** * Gets the processId * Process ID (PID) of the newly created process. * * @return int|null The processId */ public function getProcessId() { if (array_key_exists("processId", $this->_propDict)) { return $this->_propDict["processId"]; } else { return null; } } /** * Sets the processId * Process ID (PID) of the newly created process. * * @param int $val The value of the processId * * @return ProcessEvidence */ public function setProcessId($val) { $this->_propDict["processId"] = $val; return $this; } /** * Gets the userAccount * User details of the user that ran the process. * * @return UserAccount|null The userAccount */ public function getUserAccount() { if (array_key_exists("userAccount", $this->_propDict)) { if (is_a($this->_propDict["userAccount"], "\Microsoft\Graph\SecurityNamespace\Model\UserAccount") || is_null($this->_propDict["userAccount"])) { return $this->_propDict["userAccount"]; } else { $this->_propDict["userAccount"] = new UserAccount($this->_propDict["userAccount"]); return $this->_propDict["userAccount"]; } } return null; } /** * Sets the userAccount * User details of the user that ran the process. * * @param UserAccount $val The value to assign to the userAccount * * @return ProcessEvidence The ProcessEvidence */ public function setUserAccount($val) { $this->_propDict["userAccount"] = $val; return $this; } }
[+]
..
[-] ExportFileMetadata.php
[edit]
[-] AmazonResourceEvidence.php
[edit]
[-] Subdomain.php
[edit]
[-] EmailSender.php
[edit]
[-] FileHashAlgorithm.php
[edit]
[-] IntelligenceProfileKind.php
[edit]
[-] AlertDetermination.php
[edit]
[-] EvidenceVerdict.php
[edit]
[-] Hyperlink.php
[edit]
[-] SiteSource.php
[edit]
[-] EdiscoveryCase.php
[edit]
[-] DataSourceContainer.php
[edit]
[-] EdiscoveryAddToReviewSetOperation.php
[edit]
[-] BlobContainerEvidence.php
[edit]
[-] HostReputationRuleSeverity.php
[edit]
[-] UnclassifiedArtifact.php
[edit]
[-] WhoisDomainStatus.php
[edit]
[-] WhoisBaseRecord.php
[edit]
[-] EdiscoveryIndexOperation.php
[edit]
[-] UrlEvidence.php
[edit]
[-] FileDetails.php
[edit]
[-] AlertClassification.php
[edit]
[-] IntelligenceProfileIndicator.php
[edit]
[-] DataSourceHoldStatus.php
[edit]
[-] FileHash.php
[edit]
[-] KubernetesClusterEvidence.php
[edit]
[-] KubernetesServicePort.php
[edit]
[-] DataSource.php
[edit]
[-] ChildSelectability.php
[edit]
[-] GoogleCloudLocationType.php
[edit]
[-] EdiscoveryExportOperation.php
[edit]
[-] EdiscoveryCustodian.php
[edit]
[-] KubernetesControllerEvidence.php
[edit]
[-] Search.php
[edit]
[-] KubernetesPlatform.php
[edit]
[-] PurgeType.php
[edit]
[-] RetentionEvent.php
[edit]
[-] OcrSettings.php
[edit]
[-] VulnerabilityComponent.php
[edit]
[-] KubernetesSecretEvidence.php
[edit]
[-] HostPort.php
[edit]
[-] MailboxEvidence.php
[edit]
[-] IncidentStatus.php
[edit]
[-] Vulnerability.php
[edit]
[-] KubernetesServiceAccountEvidence.php
[edit]
[-] AlertComment.php
[edit]
[-] RegistryValueEvidence.php
[edit]
[-] Hostname.php
[edit]
[-] OauthApplicationEvidence.php
[edit]
[-] HuntingQueryResults.php
[edit]
[-] KubernetesPodEvidence.php
[edit]
[-] DeviceRiskScore.php
[edit]
[-] CaseOperation.php
[edit]
[-] DataSet.php
[edit]
[-] CaseOperationStatus.php
[edit]
[-] AdditionalDataOptions.php
[edit]
[-] EventStatusType.php
[edit]
[-] IntelligenceProfile.php
[edit]
[-] EdiscoveryTagOperation.php
[edit]
[-] WhoisRecord.php
[edit]
[-] KubernetesServiceType.php
[edit]
[-] ServiceSource.php
[edit]
[-] ContentFormat.php
[edit]
[-] DeviceEvidence.php
[edit]
[-] HostPair.php
[edit]
[-] LoggedOnUser.php
[edit]
[-] HostPortProtocol.php
[edit]
[-] AlertStatus.php
[edit]
[-] VmCloudProvider.php
[edit]
[-] Article.php
[edit]
[-] EdiscoveryReviewSetQuery.php
[edit]
[-] DetectionStatus.php
[edit]
[-] FormattedContent.php
[edit]
[-] WhoisContact.php
[edit]
[-] CvssSummary.php
[edit]
[-] AnalyzedMessageEvidence.php
[edit]
[-] EdiscoveryReviewTag.php
[edit]
[-] AzureResourceEvidence.php
[edit]
[-] ArticleIndicator.php
[edit]
[-] CaseStatus.php
[edit]
[-] WhoisHistoryRecord.php
[edit]
[-] EvidenceRole.php
[edit]
[-] EvidenceRemediationStatus.php
[edit]
[-] HuntingRowResult.php
[edit]
[-] HostReputationRule.php
[edit]
[-] RedundancyDetectionSettings.php
[edit]
[-] EdiscoveryPurgeDataOperation.php
[edit]
[-] HostComponent.php
[edit]
[-] ThreatIntelligence.php
[edit]
[-] AlertEvidence.php
[edit]
[-] SslCertificate.php
[edit]
[-] IpEvidence.php
[edit]
[-] Incident.php
[edit]
[-] RetentionEventStatus.php
[edit]
[-] OnboardingStatus.php
[edit]
[-] VulnerabilitySeverity.php
[edit]
[-] UserAccount.php
[edit]
[-] EdiscoveryNoncustodialDataSource.php
[edit]
[-] GoogleCloudResourceEvidence.php
[edit]
[-] DefenderAvStatus.php
[edit]
[-] IpAddress.php
[edit]
[-] HostPortStatus.php
[edit]
[-] ProcessEvidence.php
[edit]
[-] Dictionary.php
[edit]
[-] DynamicColumnValue.php
[edit]
[-] ExportOptions.php
[edit]
[-] CasesRoot.php
[edit]
[-] EdiscoverySearch.php
[edit]
[-] FileEvidence.php
[edit]
[-] BlobEvidence.php
[edit]
[-] UserEvidence.php
[edit]
[-] ContainerImageEvidence.php
[edit]
[-] RegistryKeyEvidence.php
[edit]
[-] HostSslCertificate.php
[edit]
[-] EdiscoveryEstimateOperation.php
[edit]
[-] QueryType.php
[edit]
[-] EventPropagationResult.php
[edit]
[-] HostPortComponent.php
[edit]
[-] DataSourceContainerStatus.php
[edit]
[-] RetentionTrigger.php
[edit]
[-] UnifiedGroupSource.php
[edit]
[-] PassiveDnsRecord.php
[edit]
[-] EdiscoveryCaseSettings.php
[edit]
[-] HostCookie.php
[edit]
[-] CloudApplicationEvidence.php
[edit]
[-] DetectionSource.php
[edit]
[-] HostTracker.php
[edit]
[-] EdiscoveryReviewSet.php
[edit]
[-] SinglePropertySchema.php
[edit]
[-] HostPortBanner.php
[edit]
[-] UserSource.php
[edit]
[-] GraphCase.php
[edit]
[-] Artifact.php
[edit]
[-] DataSourceScopes.php
[edit]
[-] ExportFileStructure.php
[edit]
[-] EventPropagationStatus.php
[edit]
[-] HostReputationClassification.php
[edit]
[-] WhoisNameserver.php
[edit]
[-] HostSslCertificatePort.php
[edit]
[-] MailClusterEvidence.php
[edit]
[-] EdiscoveryHoldOperation.php
[edit]
[-] TopicModelingSettings.php
[edit]
[-] HostReputation.php
[edit]
[-] IntelligenceProfileCountryOrRegionOfOrigin.php
[edit]
[-] SslCertificateEntity.php
[edit]
[-] TriggersRoot.php
[edit]
[-] ContainerRegistryEvidence.php
[edit]
[-] IndicatorSource.php
[edit]
[-] TriggerTypesRoot.php
[edit]
[-] SourceType.php
[edit]
[-] PurgeAreas.php
[edit]
[-] ContainerPortProtocol.php
[edit]
[-] KubernetesServiceEvidence.php
[edit]
[-] RetentionEventType.php
[edit]
[-] Tag.php
[edit]
[-] StringValueDictionary.php
[edit]
[-] KubernetesNamespaceEvidence.php
[edit]
[-] SecurityGroupEvidence.php
[edit]
[-] AlertSeverity.php
[edit]
[-] ContainerEvidence.php
[edit]
[-] Indicator.php
[edit]
[-] AutonomousSystem.php
[edit]
[-] DeviceHealthStatus.php
[edit]
[-] VmMetadata.php
[edit]
[-] EventQuery.php
[edit]
[-] CaseAction.php
[edit]
[-] Host.php
[edit]
[-] Alert.php
[edit]