????JFIF??x?x????'
Server IP : 79.136.114.73 / Your IP : 18.116.62.169 Web Server : Apache/2.4.7 (Ubuntu) PHP/5.5.9-1ubuntu4.29 OpenSSL/1.0.1f System : Linux b8009 3.13.0-170-generic #220-Ubuntu SMP Thu May 9 12:40:49 UTC 2019 x86_64 User : www-data ( 33) PHP Version : 5.5.9-1ubuntu4.29 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority, MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /var/www/icad.astacus.se/sharepoint/vendor/vgrem/php-spo/src/Graph/ |
Upload File : |
<?php /** * Generated by phpSPO model generator 2020-05-24T21:23:29+00:00 */ namespace Office365\Graph; /** * Represents the directory audit items and its collection. */ class DirectoryAudit extends Entity { /** * Indicates which resource category that's targeted by the activity. (For example: User Management, Group Management etc..) * @return string */ public function getCategory() { if (!$this->isPropertyAvailable("Category")) { return null; } return $this->getProperty("Category"); } /** * Indicates which resource category that's targeted by the activity. (For example: User Management, Group Management etc..) * @var string */ public function setCategory($value) { $this->setProperty("Category", $value, true); } /** * Indicates a unique ID that helps correlate activities that span across various services. Can be used to trace logs across services. * @return string */ public function getCorrelationId() { if (!$this->isPropertyAvailable("CorrelationId")) { return null; } return $this->getProperty("CorrelationId"); } /** * Indicates a unique ID that helps correlate activities that span across various services. Can be used to trace logs across services. * @var string */ public function setCorrelationId($value) { $this->setProperty("CorrelationId", $value, true); } /** * Describes cause of "failure" or "timeout" results. * @return string */ public function getResultReason() { if (!$this->isPropertyAvailable("ResultReason")) { return null; } return $this->getProperty("ResultReason"); } /** * Describes cause of "failure" or "timeout" results. * @var string */ public function setResultReason($value) { $this->setProperty("ResultReason", $value, true); } /** * Indicates the activity name or the operation name (examples: "Create User" and "Add member to group"). For full list, see [Azure AD activity list](https://docs.microsoft.com/azure/active-directory/active-directory-reporting-activity-audit-logs#azure-ad-audit-activity-list). * @return string */ public function getActivityDisplayName() { if (!$this->isPropertyAvailable("ActivityDisplayName")) { return null; } return $this->getProperty("ActivityDisplayName"); } /** * Indicates the activity name or the operation name (examples: "Create User" and "Add member to group"). For full list, see [Azure AD activity list](https://docs.microsoft.com/azure/active-directory/active-directory-reporting-activity-audit-logs#azure-ad-audit-activity-list). * @var string */ public function setActivityDisplayName($value) { $this->setProperty("ActivityDisplayName", $value, true); } /** * Indicates information on which service initiated the activity (For example: Self-service Password Management, Core Directory, B2C, Invited Users, Microsoft Identity Manager, Privileged Identity Management. * @return string */ public function getLoggedByService() { if (!$this->isPropertyAvailable("LoggedByService")) { return null; } return $this->getProperty("LoggedByService"); } /** * Indicates information on which service initiated the activity (For example: Self-service Password Management, Core Directory, B2C, Invited Users, Microsoft Identity Manager, Privileged Identity Management. * @var string */ public function setLoggedByService($value) { $this->setProperty("LoggedByService", $value, true); } /** * @return string */ public function getOperationType() { if (!$this->isPropertyAvailable("OperationType")) { return null; } return $this->getProperty("OperationType"); } /** * @var string */ public function setOperationType($value) { $this->setProperty("OperationType", $value, true); } /** * Indicates information about the user or app initiated the activity. * @return AuditActivityInitiator */ public function getInitiatedBy() { if (!$this->isPropertyAvailable("InitiatedBy")) { return null; } return $this->getProperty("InitiatedBy"); } /** * Indicates information about the user or app initiated the activity. * @var AuditActivityInitiator */ public function setInitiatedBy($value) { $this->setProperty("InitiatedBy", $value, true); } }