code
stringlengths
17
296k
docstring
stringlengths
30
30.3k
func_name
stringlengths
1
89
language
stringclasses
1 value
repo
stringlengths
7
63
path
stringlengths
7
153
url
stringlengths
51
209
license
stringclasses
4 values
public function setComments($val) { $this->_propDict["comments"] = $val; return $this; }
Sets the comments Customer-provided comments on alert (for customer alert management) (supports update). @param string[] $val The comments @return Alert
setComments
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Alert.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Alert.php
MIT
public function getConfidence() { if (array_key_exists("confidence", $this->_propDict)) { return $this->_propDict["confidence"]; } else { return null; } }
Gets the confidence Confidence of the detection logic (percentage between 1-100). @return int|null The confidence
getConfidence
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Alert.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Alert.php
MIT
public function setConfidence($val) { $this->_propDict["confidence"] = intval($val); return $this; }
Sets the confidence Confidence of the detection logic (percentage between 1-100). @param int $val The confidence @return Alert
setConfidence
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Alert.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Alert.php
MIT
public function getCreatedDateTime() { if (array_key_exists("createdDateTime", $this->_propDict)) { if (is_a($this->_propDict["createdDateTime"], "\DateTime") || is_null($this->_propDict["createdDateTime"])) { return $this->_propDict["createdDateTime"]; } else { $this->_propDict["createdDateTime"] = new \DateTime($this->_propDict["createdDateTime"]); return $this->_propDict["createdDateTime"]; } } return null; }
Gets the createdDateTime Time at which the alert was created by the alert provider. The Timestamp 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. Required. @return \DateTime|null The createdDateTime
getCreatedDateTime
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Alert.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Alert.php
MIT
public function setCreatedDateTime($val) { $this->_propDict["createdDateTime"] = $val; return $this; }
Sets the createdDateTime Time at which the alert was created by the alert provider. The Timestamp 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. Required. @param \DateTime $val The createdDateTime @return Alert
setCreatedDateTime
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Alert.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Alert.php
MIT
public function getDescription() { if (array_key_exists("description", $this->_propDict)) { return $this->_propDict["description"]; } else { return null; } }
Gets the description Alert description. @return string|null The description
getDescription
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Alert.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Alert.php
MIT
public function setDescription($val) { $this->_propDict["description"] = $val; return $this; }
Sets the description Alert description. @param string $val The description @return Alert
setDescription
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Alert.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Alert.php
MIT
public function getDetectionIds() { if (array_key_exists("detectionIds", $this->_propDict)) { return $this->_propDict["detectionIds"]; } else { return null; } }
Gets the detectionIds Set of alerts related to this alert entity (each alert is pushed to the SIEM as a separate record). @return array|null The detectionIds
getDetectionIds
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Alert.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Alert.php
MIT
public function setDetectionIds($val) { $this->_propDict["detectionIds"] = $val; return $this; }
Sets the detectionIds Set of alerts related to this alert entity (each alert is pushed to the SIEM as a separate record). @param string[] $val The detectionIds @return Alert
setDetectionIds
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Alert.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Alert.php
MIT
public function getEventDateTime() { if (array_key_exists("eventDateTime", $this->_propDict)) { if (is_a($this->_propDict["eventDateTime"], "\DateTime") || is_null($this->_propDict["eventDateTime"])) { return $this->_propDict["eventDateTime"]; } else { $this->_propDict["eventDateTime"] = new \DateTime($this->_propDict["eventDateTime"]); return $this->_propDict["eventDateTime"]; } } return null; }
Gets the eventDateTime Time at which the event(s) that served as the trigger(s) to generate the alert occurred. The Timestamp 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. Required. @return \DateTime|null The eventDateTime
getEventDateTime
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Alert.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Alert.php
MIT
public function setEventDateTime($val) { $this->_propDict["eventDateTime"] = $val; return $this; }
Sets the eventDateTime Time at which the event(s) that served as the trigger(s) to generate the alert occurred. The Timestamp 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. Required. @param \DateTime $val The eventDateTime @return Alert
setEventDateTime
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Alert.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Alert.php
MIT
public function getFeedback() { if (array_key_exists("feedback", $this->_propDict)) { if (is_a($this->_propDict["feedback"], "\Beta\Microsoft\Graph\Model\AlertFeedback") || is_null($this->_propDict["feedback"])) { return $this->_propDict["feedback"]; } else { $this->_propDict["feedback"] = new AlertFeedback($this->_propDict["feedback"]); return $this->_propDict["feedback"]; } } return null; }
Gets the feedback Analyst feedback on the alert. Possible values are: unknown, truePositive, falsePositive, benignPositive. (supports update) @return AlertFeedback|null The feedback
getFeedback
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Alert.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Alert.php
MIT
public function setFeedback($val) { $this->_propDict["feedback"] = $val; return $this; }
Sets the feedback Analyst feedback on the alert. Possible values are: unknown, truePositive, falsePositive, benignPositive. (supports update) @param AlertFeedback $val The feedback @return Alert
setFeedback
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Alert.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Alert.php
MIT
public function getFileStates() { if (array_key_exists("fileStates", $this->_propDict)) { return $this->_propDict["fileStates"]; } else { return null; } }
Gets the fileStates Security-related stateful information generated by the provider about the file(s) related to this alert. @return array|null The fileStates
getFileStates
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Alert.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Alert.php
MIT
public function setFileStates($val) { $this->_propDict["fileStates"] = $val; return $this; }
Sets the fileStates Security-related stateful information generated by the provider about the file(s) related to this alert. @param FileSecurityState[] $val The fileStates @return Alert
setFileStates
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Alert.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Alert.php
MIT
public function getHistoryStates() { if (array_key_exists("historyStates", $this->_propDict)) { return $this->_propDict["historyStates"]; } else { return null; } }
Gets the historyStates A collection of alertHistoryStates comprising an audit log of all updates made to an alert. @return array|null The historyStates
getHistoryStates
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Alert.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Alert.php
MIT
public function setHistoryStates($val) { $this->_propDict["historyStates"] = $val; return $this; }
Sets the historyStates A collection of alertHistoryStates comprising an audit log of all updates made to an alert. @param AlertHistoryState[] $val The historyStates @return Alert
setHistoryStates
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Alert.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Alert.php
MIT
public function getHostStates() { if (array_key_exists("hostStates", $this->_propDict)) { return $this->_propDict["hostStates"]; } else { return null; } }
Gets the hostStates Security-related stateful information generated by the provider about the host(s) related to this alert. @return array|null The hostStates
getHostStates
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Alert.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Alert.php
MIT
public function setHostStates($val) { $this->_propDict["hostStates"] = $val; return $this; }
Sets the hostStates Security-related stateful information generated by the provider about the host(s) related to this alert. @param HostSecurityState[] $val The hostStates @return Alert
setHostStates
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Alert.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Alert.php
MIT
public function getIncidentIds() { if (array_key_exists("incidentIds", $this->_propDict)) { return $this->_propDict["incidentIds"]; } else { return null; } }
Gets the incidentIds IDs of incidents related to current alert. @return array|null The incidentIds
getIncidentIds
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Alert.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Alert.php
MIT
public function setIncidentIds($val) { $this->_propDict["incidentIds"] = $val; return $this; }
Sets the incidentIds IDs of incidents related to current alert. @param string[] $val The incidentIds @return Alert
setIncidentIds
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Alert.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Alert.php
MIT
public function getInvestigationSecurityStates() { if (array_key_exists("investigationSecurityStates", $this->_propDict)) { return $this->_propDict["investigationSecurityStates"]; } else { return null; } }
Gets the investigationSecurityStates @return array|null The investigationSecurityStates
getInvestigationSecurityStates
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Alert.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Alert.php
MIT
public function setInvestigationSecurityStates($val) { $this->_propDict["investigationSecurityStates"] = $val; return $this; }
Sets the investigationSecurityStates @param InvestigationSecurityState[] $val The investigationSecurityStates @return Alert
setInvestigationSecurityStates
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Alert.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Alert.php
MIT
public function getLastModifiedDateTime() { if (array_key_exists("lastModifiedDateTime", $this->_propDict)) { if (is_a($this->_propDict["lastModifiedDateTime"], "\DateTime") || is_null($this->_propDict["lastModifiedDateTime"])) { return $this->_propDict["lastModifiedDateTime"]; } else { $this->_propDict["lastModifiedDateTime"] = new \DateTime($this->_propDict["lastModifiedDateTime"]); return $this->_propDict["lastModifiedDateTime"]; } } return null; }
Gets the lastModifiedDateTime Time at which the alert entity was last modified. The Timestamp 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 lastModifiedDateTime
getLastModifiedDateTime
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Alert.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Alert.php
MIT
public function setLastModifiedDateTime($val) { $this->_propDict["lastModifiedDateTime"] = $val; return $this; }
Sets the lastModifiedDateTime Time at which the alert entity was last modified. The Timestamp 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 lastModifiedDateTime @return Alert
setLastModifiedDateTime
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Alert.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Alert.php
MIT
public function getMalwareStates() { if (array_key_exists("malwareStates", $this->_propDict)) { return $this->_propDict["malwareStates"]; } else { return null; } }
Gets the malwareStates Threat Intelligence pertaining to malware related to this alert. @return array|null The malwareStates
getMalwareStates
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Alert.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Alert.php
MIT
public function setMalwareStates($val) { $this->_propDict["malwareStates"] = $val; return $this; }
Sets the malwareStates Threat Intelligence pertaining to malware related to this alert. @param MalwareState[] $val The malwareStates @return Alert
setMalwareStates
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Alert.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Alert.php
MIT
public function getMessageSecurityStates() { if (array_key_exists("messageSecurityStates", $this->_propDict)) { return $this->_propDict["messageSecurityStates"]; } else { return null; } }
Gets the messageSecurityStates @return array|null The messageSecurityStates
getMessageSecurityStates
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Alert.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Alert.php
MIT
public function setMessageSecurityStates($val) { $this->_propDict["messageSecurityStates"] = $val; return $this; }
Sets the messageSecurityStates @param MessageSecurityState[] $val The messageSecurityStates @return Alert
setMessageSecurityStates
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Alert.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Alert.php
MIT
public function getNetworkConnections() { if (array_key_exists("networkConnections", $this->_propDict)) { return $this->_propDict["networkConnections"]; } else { return null; } }
Gets the networkConnections Security-related stateful information generated by the provider about the network connection(s) related to this alert. @return array|null The networkConnections
getNetworkConnections
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Alert.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Alert.php
MIT
public function setNetworkConnections($val) { $this->_propDict["networkConnections"] = $val; return $this; }
Sets the networkConnections Security-related stateful information generated by the provider about the network connection(s) related to this alert. @param NetworkConnection[] $val The networkConnections @return Alert
setNetworkConnections
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Alert.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Alert.php
MIT
public function getProcesses() { if (array_key_exists("processes", $this->_propDict)) { return $this->_propDict["processes"]; } else { return null; } }
Gets the processes Security-related stateful information generated by the provider about the process or processes related to this alert. @return array|null The processes
getProcesses
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Alert.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Alert.php
MIT
public function setProcesses($val) { $this->_propDict["processes"] = $val; return $this; }
Sets the processes Security-related stateful information generated by the provider about the process or processes related to this alert. @param Process[] $val The processes @return Alert
setProcesses
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Alert.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Alert.php
MIT
public function getRecommendedActions() { if (array_key_exists("recommendedActions", $this->_propDict)) { return $this->_propDict["recommendedActions"]; } else { return null; } }
Gets the recommendedActions Vendor/provider recommended action(s) to take as a result of the alert (for example, isolate machine, enforce2FA, reimage host). @return array|null The recommendedActions
getRecommendedActions
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Alert.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Alert.php
MIT
public function setRecommendedActions($val) { $this->_propDict["recommendedActions"] = $val; return $this; }
Sets the recommendedActions Vendor/provider recommended action(s) to take as a result of the alert (for example, isolate machine, enforce2FA, reimage host). @param string[] $val The recommendedActions @return Alert
setRecommendedActions
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Alert.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Alert.php
MIT
public function getRegistryKeyStates() { if (array_key_exists("registryKeyStates", $this->_propDict)) { return $this->_propDict["registryKeyStates"]; } else { return null; } }
Gets the registryKeyStates Security-related stateful information generated by the provider about the registry keys related to this alert. @return array|null The registryKeyStates
getRegistryKeyStates
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Alert.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Alert.php
MIT
public function setRegistryKeyStates($val) { $this->_propDict["registryKeyStates"] = $val; return $this; }
Sets the registryKeyStates Security-related stateful information generated by the provider about the registry keys related to this alert. @param RegistryKeyState[] $val The registryKeyStates @return Alert
setRegistryKeyStates
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Alert.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Alert.php
MIT
public function getSecurityResources() { if (array_key_exists("securityResources", $this->_propDict)) { return $this->_propDict["securityResources"]; } else { return null; } }
Gets the securityResources Resources related to current alert. For example, for some alerts this can have the Azure Resource value. @return array|null The securityResources
getSecurityResources
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Alert.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Alert.php
MIT
public function setSecurityResources($val) { $this->_propDict["securityResources"] = $val; return $this; }
Sets the securityResources Resources related to current alert. For example, for some alerts this can have the Azure Resource value. @param SecurityResource[] $val The securityResources @return Alert
setSecurityResources
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Alert.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Alert.php
MIT
public function getSeverity() { if (array_key_exists("severity", $this->_propDict)) { if (is_a($this->_propDict["severity"], "\Beta\Microsoft\Graph\Model\AlertSeverity") || is_null($this->_propDict["severity"])) { return $this->_propDict["severity"]; } else { $this->_propDict["severity"] = new AlertSeverity($this->_propDict["severity"]); return $this->_propDict["severity"]; } } return null; }
Gets the severity Alert severity - set by vendor/provider. Possible values are: unknown, informational, low, medium, high. Required. @return AlertSeverity|null The severity
getSeverity
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Alert.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Alert.php
MIT
public function setSeverity($val) { $this->_propDict["severity"] = $val; return $this; }
Sets the severity Alert severity - set by vendor/provider. Possible values are: unknown, informational, low, medium, high. Required. @param AlertSeverity $val The severity @return Alert
setSeverity
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Alert.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Alert.php
MIT
public function getSourceMaterials() { if (array_key_exists("sourceMaterials", $this->_propDict)) { return $this->_propDict["sourceMaterials"]; } else { return null; } }
Gets the sourceMaterials Hyperlinks (URIs) to the source material related to the alert, for example, provider's user interface for alerts or log search, etc. @return array|null The sourceMaterials
getSourceMaterials
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Alert.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Alert.php
MIT
public function setSourceMaterials($val) { $this->_propDict["sourceMaterials"] = $val; return $this; }
Sets the sourceMaterials Hyperlinks (URIs) to the source material related to the alert, for example, provider's user interface for alerts or log search, etc. @param string[] $val The sourceMaterials @return Alert
setSourceMaterials
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Alert.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Alert.php
MIT
public function getStatus() { if (array_key_exists("status", $this->_propDict)) { if (is_a($this->_propDict["status"], "\Beta\Microsoft\Graph\Model\AlertStatus") || is_null($this->_propDict["status"])) { return $this->_propDict["status"]; } else { $this->_propDict["status"] = new AlertStatus($this->_propDict["status"]); return $this->_propDict["status"]; } } return null; }
Gets the status Alert lifecycle status (stage). Possible values are: unknown, newAlert, inProgress, resolved. (supports update). Required. @return AlertStatus|null The status
getStatus
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Alert.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Alert.php
MIT
public function setStatus($val) { $this->_propDict["status"] = $val; return $this; }
Sets the status Alert lifecycle status (stage). Possible values are: unknown, newAlert, inProgress, resolved. (supports update). Required. @param AlertStatus $val The status @return Alert
setStatus
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Alert.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Alert.php
MIT
public function getTags() { if (array_key_exists("tags", $this->_propDict)) { return $this->_propDict["tags"]; } else { return null; } }
Gets the tags User-definable labels that can be applied to an alert and can serve as filter conditions (for example 'HVA', 'SAW', etc.) (supports update). @return array|null The tags
getTags
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Alert.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Alert.php
MIT
public function setTags($val) { $this->_propDict["tags"] = $val; return $this; }
Sets the tags User-definable labels that can be applied to an alert and can serve as filter conditions (for example 'HVA', 'SAW', etc.) (supports update). @param string[] $val The tags @return Alert
setTags
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Alert.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Alert.php
MIT
public function getTitle() { if (array_key_exists("title", $this->_propDict)) { return $this->_propDict["title"]; } else { return null; } }
Gets the title Alert title. Required. @return string|null The title
getTitle
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Alert.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Alert.php
MIT
public function setTitle($val) { $this->_propDict["title"] = $val; return $this; }
Sets the title Alert title. Required. @param string $val The title @return Alert
setTitle
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Alert.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Alert.php
MIT
public function getTriggers() { if (array_key_exists("triggers", $this->_propDict)) { return $this->_propDict["triggers"]; } else { return null; } }
Gets the triggers Security-related information about the specific properties that triggered the alert (properties appearing in the alert). Alerts might contain information about multiple users, hosts, files, ip addresses. This field indicates which properties triggered the alert generation. @return array|null The triggers
getTriggers
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Alert.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Alert.php
MIT
public function setTriggers($val) { $this->_propDict["triggers"] = $val; return $this; }
Sets the triggers Security-related information about the specific properties that triggered the alert (properties appearing in the alert). Alerts might contain information about multiple users, hosts, files, ip addresses. This field indicates which properties triggered the alert generation. @param AlertTrigger[] $val The triggers @return Alert
setTriggers
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Alert.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Alert.php
MIT
public function getUriClickSecurityStates() { if (array_key_exists("uriClickSecurityStates", $this->_propDict)) { return $this->_propDict["uriClickSecurityStates"]; } else { return null; } }
Gets the uriClickSecurityStates @return array|null The uriClickSecurityStates
getUriClickSecurityStates
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Alert.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Alert.php
MIT
public function setUriClickSecurityStates($val) { $this->_propDict["uriClickSecurityStates"] = $val; return $this; }
Sets the uriClickSecurityStates @param UriClickSecurityState[] $val The uriClickSecurityStates @return Alert
setUriClickSecurityStates
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Alert.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Alert.php
MIT
public function getUserStates() { if (array_key_exists("userStates", $this->_propDict)) { return $this->_propDict["userStates"]; } else { return null; } }
Gets the userStates Security-related stateful information generated by the provider about the user accounts related to this alert. @return array|null The userStates
getUserStates
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Alert.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Alert.php
MIT
public function setUserStates($val) { $this->_propDict["userStates"] = $val; return $this; }
Sets the userStates Security-related stateful information generated by the provider about the user accounts related to this alert. @param UserSecurityState[] $val The userStates @return Alert
setUserStates
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Alert.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Alert.php
MIT
public function getVendorInformation() { if (array_key_exists("vendorInformation", $this->_propDict)) { if (is_a($this->_propDict["vendorInformation"], "\Beta\Microsoft\Graph\Model\SecurityVendorInformation") || is_null($this->_propDict["vendorInformation"])) { return $this->_propDict["vendorInformation"]; } else { $this->_propDict["vendorInformation"] = new SecurityVendorInformation($this->_propDict["vendorInformation"]); return $this->_propDict["vendorInformation"]; } } return null; }
Gets the vendorInformation Complex type containing details about the security product/service vendor, provider, and subprovider (for example, vendor=Microsoft; provider=Windows Defender ATP; subProvider=AppLocker). Required. @return SecurityVendorInformation|null The vendorInformation
getVendorInformation
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Alert.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Alert.php
MIT
public function setVendorInformation($val) { $this->_propDict["vendorInformation"] = $val; return $this; }
Sets the vendorInformation Complex type containing details about the security product/service vendor, provider, and subprovider (for example, vendor=Microsoft; provider=Windows Defender ATP; subProvider=AppLocker). Required. @param SecurityVendorInformation $val The vendorInformation @return Alert
setVendorInformation
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Alert.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Alert.php
MIT
public function getVulnerabilityStates() { if (array_key_exists("vulnerabilityStates", $this->_propDict)) { return $this->_propDict["vulnerabilityStates"]; } else { return null; } }
Gets the vulnerabilityStates Threat intelligence pertaining to one or more vulnerabilities related to this alert. @return array|null The vulnerabilityStates
getVulnerabilityStates
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Alert.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Alert.php
MIT
public function setVulnerabilityStates($val) { $this->_propDict["vulnerabilityStates"] = $val; return $this; }
Sets the vulnerabilityStates Threat intelligence pertaining to one or more vulnerabilities related to this alert. @param VulnerabilityState[] $val The vulnerabilityStates @return Alert
setVulnerabilityStates
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Alert.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Alert.php
MIT
public function getCreatedBy() { if (array_key_exists("createdBy", $this->_propDict)) { if (is_a($this->_propDict["createdBy"], "\Beta\Microsoft\Graph\Model\EmailIdentity") || is_null($this->_propDict["createdBy"])) { return $this->_propDict["createdBy"]; } else { $this->_propDict["createdBy"] = new EmailIdentity($this->_propDict["createdBy"]); return $this->_propDict["createdBy"]; } } return null; }
Gets the createdBy Identity of the user who created the attack simulation automation. @return EmailIdentity|null The createdBy
getCreatedBy
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/SimulationAutomation.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/SimulationAutomation.php
MIT
public function setCreatedBy($val) { $this->_propDict["createdBy"] = $val; return $this; }
Sets the createdBy Identity of the user who created the attack simulation automation. @param EmailIdentity $val The createdBy @return SimulationAutomation
setCreatedBy
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/SimulationAutomation.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/SimulationAutomation.php
MIT
public function getCreatedDateTime() { if (array_key_exists("createdDateTime", $this->_propDict)) { if (is_a($this->_propDict["createdDateTime"], "\DateTime") || is_null($this->_propDict["createdDateTime"])) { return $this->_propDict["createdDateTime"]; } else { $this->_propDict["createdDateTime"] = new \DateTime($this->_propDict["createdDateTime"]); return $this->_propDict["createdDateTime"]; } } return null; }
Gets the createdDateTime Date and time when the attack simulation automation was created. @return \DateTime|null The createdDateTime
getCreatedDateTime
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/SimulationAutomation.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/SimulationAutomation.php
MIT
public function setCreatedDateTime($val) { $this->_propDict["createdDateTime"] = $val; return $this; }
Sets the createdDateTime Date and time when the attack simulation automation was created. @param \DateTime $val The createdDateTime @return SimulationAutomation
setCreatedDateTime
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/SimulationAutomation.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/SimulationAutomation.php
MIT
public function getDescription() { if (array_key_exists("description", $this->_propDict)) { return $this->_propDict["description"]; } else { return null; } }
Gets the description Description of the attack simulation automation. @return string|null The description
getDescription
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/SimulationAutomation.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/SimulationAutomation.php
MIT
public function setDescription($val) { $this->_propDict["description"] = $val; return $this; }
Sets the description Description of the attack simulation automation. @param string $val The description @return SimulationAutomation
setDescription
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/SimulationAutomation.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/SimulationAutomation.php
MIT
public function getDisplayName() { if (array_key_exists("displayName", $this->_propDict)) { return $this->_propDict["displayName"]; } else { return null; } }
Gets the displayName Display name of the attack simulation automation. Supports $filter and $orderby. @return string|null The displayName
getDisplayName
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/SimulationAutomation.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/SimulationAutomation.php
MIT
public function setDisplayName($val) { $this->_propDict["displayName"] = $val; return $this; }
Sets the displayName Display name of the attack simulation automation. Supports $filter and $orderby. @param string $val The displayName @return SimulationAutomation
setDisplayName
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/SimulationAutomation.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/SimulationAutomation.php
MIT
public function getLastModifiedBy() { if (array_key_exists("lastModifiedBy", $this->_propDict)) { if (is_a($this->_propDict["lastModifiedBy"], "\Beta\Microsoft\Graph\Model\EmailIdentity") || is_null($this->_propDict["lastModifiedBy"])) { return $this->_propDict["lastModifiedBy"]; } else { $this->_propDict["lastModifiedBy"] = new EmailIdentity($this->_propDict["lastModifiedBy"]); return $this->_propDict["lastModifiedBy"]; } } return null; }
Gets the lastModifiedBy Identity of the user who most recently modified the attack simulation automation. @return EmailIdentity|null The lastModifiedBy
getLastModifiedBy
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/SimulationAutomation.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/SimulationAutomation.php
MIT
public function setLastModifiedBy($val) { $this->_propDict["lastModifiedBy"] = $val; return $this; }
Sets the lastModifiedBy Identity of the user who most recently modified the attack simulation automation. @param EmailIdentity $val The lastModifiedBy @return SimulationAutomation
setLastModifiedBy
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/SimulationAutomation.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/SimulationAutomation.php
MIT
public function getLastModifiedDateTime() { if (array_key_exists("lastModifiedDateTime", $this->_propDict)) { if (is_a($this->_propDict["lastModifiedDateTime"], "\DateTime") || is_null($this->_propDict["lastModifiedDateTime"])) { return $this->_propDict["lastModifiedDateTime"]; } else { $this->_propDict["lastModifiedDateTime"] = new \DateTime($this->_propDict["lastModifiedDateTime"]); return $this->_propDict["lastModifiedDateTime"]; } } return null; }
Gets the lastModifiedDateTime Date and time when the attack simulation automation was most recently modified. @return \DateTime|null The lastModifiedDateTime
getLastModifiedDateTime
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/SimulationAutomation.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/SimulationAutomation.php
MIT
public function setLastModifiedDateTime($val) { $this->_propDict["lastModifiedDateTime"] = $val; return $this; }
Sets the lastModifiedDateTime Date and time when the attack simulation automation was most recently modified. @param \DateTime $val The lastModifiedDateTime @return SimulationAutomation
setLastModifiedDateTime
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/SimulationAutomation.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/SimulationAutomation.php
MIT
public function getLastRunDateTime() { if (array_key_exists("lastRunDateTime", $this->_propDict)) { if (is_a($this->_propDict["lastRunDateTime"], "\DateTime") || is_null($this->_propDict["lastRunDateTime"])) { return $this->_propDict["lastRunDateTime"]; } else { $this->_propDict["lastRunDateTime"] = new \DateTime($this->_propDict["lastRunDateTime"]); return $this->_propDict["lastRunDateTime"]; } } return null; }
Gets the lastRunDateTime Date and time of the latest run of the attack simulation automation. @return \DateTime|null The lastRunDateTime
getLastRunDateTime
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/SimulationAutomation.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/SimulationAutomation.php
MIT
public function setLastRunDateTime($val) { $this->_propDict["lastRunDateTime"] = $val; return $this; }
Sets the lastRunDateTime Date and time of the latest run of the attack simulation automation. @param \DateTime $val The lastRunDateTime @return SimulationAutomation
setLastRunDateTime
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/SimulationAutomation.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/SimulationAutomation.php
MIT
public function getNextRunDateTime() { if (array_key_exists("nextRunDateTime", $this->_propDict)) { if (is_a($this->_propDict["nextRunDateTime"], "\DateTime") || is_null($this->_propDict["nextRunDateTime"])) { return $this->_propDict["nextRunDateTime"]; } else { $this->_propDict["nextRunDateTime"] = new \DateTime($this->_propDict["nextRunDateTime"]); return $this->_propDict["nextRunDateTime"]; } } return null; }
Gets the nextRunDateTime Date and time of the upcoming run of the attack simulation automation. @return \DateTime|null The nextRunDateTime
getNextRunDateTime
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/SimulationAutomation.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/SimulationAutomation.php
MIT
public function setNextRunDateTime($val) { $this->_propDict["nextRunDateTime"] = $val; return $this; }
Sets the nextRunDateTime Date and time of the upcoming run of the attack simulation automation. @param \DateTime $val The nextRunDateTime @return SimulationAutomation
setNextRunDateTime
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/SimulationAutomation.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/SimulationAutomation.php
MIT
public function getStatus() { if (array_key_exists("status", $this->_propDict)) { if (is_a($this->_propDict["status"], "\Beta\Microsoft\Graph\Model\SimulationAutomationStatus") || is_null($this->_propDict["status"])) { return $this->_propDict["status"]; } else { $this->_propDict["status"] = new SimulationAutomationStatus($this->_propDict["status"]); return $this->_propDict["status"]; } } return null; }
Gets the status Status of the attack simulation automation. Supports $filter and $orderby. The possible values are: unknown, draft, notRunning, running, completed, unknownFutureValue. @return SimulationAutomationStatus|null The status
getStatus
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/SimulationAutomation.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/SimulationAutomation.php
MIT
public function setStatus($val) { $this->_propDict["status"] = $val; return $this; }
Sets the status Status of the attack simulation automation. Supports $filter and $orderby. The possible values are: unknown, draft, notRunning, running, completed, unknownFutureValue. @param SimulationAutomationStatus $val The status @return SimulationAutomation
setStatus
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/SimulationAutomation.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/SimulationAutomation.php
MIT
public function getRuns() { if (array_key_exists("runs", $this->_propDict)) { return $this->_propDict["runs"]; } else { return null; } }
Gets the runs A collection of simulation automation runs. @return array|null The runs
getRuns
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/SimulationAutomation.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/SimulationAutomation.php
MIT
public function setRuns($val) { $this->_propDict["runs"] = $val; return $this; }
Sets the runs A collection of simulation automation runs. @param SimulationAutomationRun[] $val The runs @return SimulationAutomation
setRuns
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/SimulationAutomation.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/SimulationAutomation.php
MIT
public function getDisplayName() { if (array_key_exists("displayName", $this->_propDict)) { return $this->_propDict["displayName"]; } else { return null; } }
Gets the displayName The display name of the resource. @return string|null The displayName
getDisplayName
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/GovernanceResource.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/GovernanceResource.php
MIT
public function setDisplayName($val) { $this->_propDict["displayName"] = $val; return $this; }
Sets the displayName The display name of the resource. @param string $val The displayName @return GovernanceResource
setDisplayName
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/GovernanceResource.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/GovernanceResource.php
MIT
public function getExternalId() { if (array_key_exists("externalId", $this->_propDict)) { return $this->_propDict["externalId"]; } else { return null; } }
Gets the externalId The external id of the resource, representing its original id in the external system. For example, a subscription resource's external id can be '/subscriptions/c14ae696-5e0c-4e5d-88cc-bef6637737ac'. @return string|null The externalId
getExternalId
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/GovernanceResource.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/GovernanceResource.php
MIT
public function setExternalId($val) { $this->_propDict["externalId"] = $val; return $this; }
Sets the externalId The external id of the resource, representing its original id in the external system. For example, a subscription resource's external id can be '/subscriptions/c14ae696-5e0c-4e5d-88cc-bef6637737ac'. @param string $val The externalId @return GovernanceResource
setExternalId
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/GovernanceResource.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/GovernanceResource.php
MIT
public function getRegisteredDateTime() { if (array_key_exists("registeredDateTime", $this->_propDict)) { if (is_a($this->_propDict["registeredDateTime"], "\DateTime") || is_null($this->_propDict["registeredDateTime"])) { return $this->_propDict["registeredDateTime"]; } else { $this->_propDict["registeredDateTime"] = new \DateTime($this->_propDict["registeredDateTime"]); return $this->_propDict["registeredDateTime"]; } } return null; }
Gets the registeredDateTime Represents the date time when the resource is registered in PIM. @return \DateTime|null The registeredDateTime
getRegisteredDateTime
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/GovernanceResource.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/GovernanceResource.php
MIT
public function setRegisteredDateTime($val) { $this->_propDict["registeredDateTime"] = $val; return $this; }
Sets the registeredDateTime Represents the date time when the resource is registered in PIM. @param \DateTime $val The registeredDateTime @return GovernanceResource
setRegisteredDateTime
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/GovernanceResource.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/GovernanceResource.php
MIT
public function getRegisteredRoot() { if (array_key_exists("registeredRoot", $this->_propDict)) { return $this->_propDict["registeredRoot"]; } else { return null; } }
Gets the registeredRoot The externalId of the resource's root scope that is registered in PIM. The root scope can be the parent, grandparent, or higher ancestor resources. @return string|null The registeredRoot
getRegisteredRoot
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/GovernanceResource.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/GovernanceResource.php
MIT
public function setRegisteredRoot($val) { $this->_propDict["registeredRoot"] = $val; return $this; }
Sets the registeredRoot The externalId of the resource's root scope that is registered in PIM. The root scope can be the parent, grandparent, or higher ancestor resources. @param string $val The registeredRoot @return GovernanceResource
setRegisteredRoot
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/GovernanceResource.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/GovernanceResource.php
MIT
public function getStatus() { if (array_key_exists("status", $this->_propDict)) { return $this->_propDict["status"]; } else { return null; } }
Gets the status The status of a given resource. For example, it could represent whether the resource is locked or not (values: Active/Locked). Note: This property may be extended in the future to support more scenarios. @return string|null The status
getStatus
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/GovernanceResource.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/GovernanceResource.php
MIT
public function setStatus($val) { $this->_propDict["status"] = $val; return $this; }
Sets the status The status of a given resource. For example, it could represent whether the resource is locked or not (values: Active/Locked). Note: This property may be extended in the future to support more scenarios. @param string $val The status @return GovernanceResource
setStatus
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/GovernanceResource.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/GovernanceResource.php
MIT
public function getType() { if (array_key_exists("type", $this->_propDict)) { return $this->_propDict["type"]; } else { return null; } }
Gets the type Required. Resource type. For example, for Azure resources, the type could be 'Subscription', 'ResourceGroup', 'Microsoft.Sql/server', etc. @return string|null The type
getType
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/GovernanceResource.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/GovernanceResource.php
MIT
public function setType($val) { $this->_propDict["type"] = $val; return $this; }
Sets the type Required. Resource type. For example, for Azure resources, the type could be 'Subscription', 'ResourceGroup', 'Microsoft.Sql/server', etc. @param string $val The type @return GovernanceResource
setType
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/GovernanceResource.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/GovernanceResource.php
MIT
public function getParent() { if (array_key_exists("parent", $this->_propDict)) { if (is_a($this->_propDict["parent"], "\Beta\Microsoft\Graph\Model\GovernanceResource") || is_null($this->_propDict["parent"])) { return $this->_propDict["parent"]; } else { $this->_propDict["parent"] = new GovernanceResource($this->_propDict["parent"]); return $this->_propDict["parent"]; } } return null; }
Gets the parent Read-only. The parent resource. for pimforazurerbac scenario, it can represent the subscription the resource belongs to. @return GovernanceResource|null The parent
getParent
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/GovernanceResource.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/GovernanceResource.php
MIT
public function setParent($val) { $this->_propDict["parent"] = $val; return $this; }
Sets the parent Read-only. The parent resource. for pimforazurerbac scenario, it can represent the subscription the resource belongs to. @param GovernanceResource $val The parent @return GovernanceResource
setParent
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/GovernanceResource.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/GovernanceResource.php
MIT
public function getRoleAssignmentRequests() { if (array_key_exists("roleAssignmentRequests", $this->_propDict)) { return $this->_propDict["roleAssignmentRequests"]; } else { return null; } }
Gets the roleAssignmentRequests The collection of role assignment requests for the resource. @return array|null The roleAssignmentRequests
getRoleAssignmentRequests
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/GovernanceResource.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/GovernanceResource.php
MIT
public function setRoleAssignmentRequests($val) { $this->_propDict["roleAssignmentRequests"] = $val; return $this; }
Sets the roleAssignmentRequests The collection of role assignment requests for the resource. @param GovernanceRoleAssignmentRequest[] $val The roleAssignmentRequests @return GovernanceResource
setRoleAssignmentRequests
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/GovernanceResource.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/GovernanceResource.php
MIT
public function getRoleAssignments() { if (array_key_exists("roleAssignments", $this->_propDict)) { return $this->_propDict["roleAssignments"]; } else { return null; } }
Gets the roleAssignments The collection of role assignments for the resource. @return array|null The roleAssignments
getRoleAssignments
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/GovernanceResource.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/GovernanceResource.php
MIT
public function setRoleAssignments($val) { $this->_propDict["roleAssignments"] = $val; return $this; }
Sets the roleAssignments The collection of role assignments for the resource. @param GovernanceRoleAssignment[] $val The roleAssignments @return GovernanceResource
setRoleAssignments
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/GovernanceResource.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/GovernanceResource.php
MIT
public function getRoleDefinitions() { if (array_key_exists("roleDefinitions", $this->_propDict)) { return $this->_propDict["roleDefinitions"]; } else { return null; } }
Gets the roleDefinitions The collection of role defintions for the resource. @return array|null The roleDefinitions
getRoleDefinitions
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/GovernanceResource.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/GovernanceResource.php
MIT
public function setRoleDefinitions($val) { $this->_propDict["roleDefinitions"] = $val; return $this; }
Sets the roleDefinitions The collection of role defintions for the resource. @param GovernanceRoleDefinition[] $val The roleDefinitions @return GovernanceResource
setRoleDefinitions
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/GovernanceResource.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/GovernanceResource.php
MIT
public function getRoleSettings() { if (array_key_exists("roleSettings", $this->_propDict)) { return $this->_propDict["roleSettings"]; } else { return null; } }
Gets the roleSettings The collection of role settings for the resource. @return array|null The roleSettings
getRoleSettings
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/GovernanceResource.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/GovernanceResource.php
MIT