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 getAppId()
{
if (array_key_exists("appId", $this->_propDict)) {
return $this->_propDict["appId"];
} else {
return null;
}
} | Gets the appId
ID of the application that the user signed in to.
@return string|null The appId | getAppId | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ApplicationSignInDetailedSummary.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ApplicationSignInDetailedSummary.php | MIT |
public function setAppId($val)
{
$this->_propDict["appId"] = $val;
return $this;
} | Sets the appId
ID of the application that the user signed in to.
@param string $val The appId
@return ApplicationSignInDetailedSummary | setAppId | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ApplicationSignInDetailedSummary.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ApplicationSignInDetailedSummary.php | MIT |
public function getSignInCount()
{
if (array_key_exists("signInCount", $this->_propDict)) {
return $this->_propDict["signInCount"];
} else {
return null;
}
} | Gets the signInCount
Count of sign-ins made by the application.
@return int|null The signInCount | getSignInCount | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ApplicationSignInDetailedSummary.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ApplicationSignInDetailedSummary.php | MIT |
public function setSignInCount($val)
{
$this->_propDict["signInCount"] = intval($val);
return $this;
} | Sets the signInCount
Count of sign-ins made by the application.
@param int $val The signInCount
@return ApplicationSignInDetailedSummary | setSignInCount | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ApplicationSignInDetailedSummary.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ApplicationSignInDetailedSummary.php | MIT |
public function getStatus()
{
if (array_key_exists("status", $this->_propDict)) {
if (is_a($this->_propDict["status"], "\Beta\Microsoft\Graph\Model\SignInStatus") || is_null($this->_propDict["status"])) {
return $this->_propDict["status"];
} else {
$this->_propDict["status"] = new SignInStatus($this->_propDict["status"]);
return $this->_propDict["status"];
}
}
return null;
} | Gets the status
Details of the sign-in status.
@return SignInStatus|null The status | getStatus | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ApplicationSignInDetailedSummary.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ApplicationSignInDetailedSummary.php | MIT |
public function setStatus($val)
{
$this->_propDict["status"] = $val;
return $this;
} | Sets the status
Details of the sign-in status.
@param SignInStatus $val The status
@return ApplicationSignInDetailedSummary | setStatus | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ApplicationSignInDetailedSummary.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ApplicationSignInDetailedSummary.php | MIT |
public function getAllowAutoFilter()
{
if (array_key_exists("allowAutoFilter", $this->_propDict)) {
return $this->_propDict["allowAutoFilter"];
} else {
return null;
}
} | Gets the allowAutoFilter
Represents the worksheet protection option of allowing using auto filter feature.
@return bool|null The allowAutoFilter | getAllowAutoFilter | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/WorkbookWorksheetProtectionOptions.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/WorkbookWorksheetProtectionOptions.php | MIT |
public function setAllowAutoFilter($val)
{
$this->_propDict["allowAutoFilter"] = $val;
return $this;
} | Sets the allowAutoFilter
Represents the worksheet protection option of allowing using auto filter feature.
@param bool $val The value of the allowAutoFilter
@return WorkbookWorksheetProtectionOptions | setAllowAutoFilter | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/WorkbookWorksheetProtectionOptions.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/WorkbookWorksheetProtectionOptions.php | MIT |
public function getAllowDeleteColumns()
{
if (array_key_exists("allowDeleteColumns", $this->_propDict)) {
return $this->_propDict["allowDeleteColumns"];
} else {
return null;
}
} | Gets the allowDeleteColumns
Represents the worksheet protection option of allowing deleting columns.
@return bool|null The allowDeleteColumns | getAllowDeleteColumns | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/WorkbookWorksheetProtectionOptions.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/WorkbookWorksheetProtectionOptions.php | MIT |
public function setAllowDeleteColumns($val)
{
$this->_propDict["allowDeleteColumns"] = $val;
return $this;
} | Sets the allowDeleteColumns
Represents the worksheet protection option of allowing deleting columns.
@param bool $val The value of the allowDeleteColumns
@return WorkbookWorksheetProtectionOptions | setAllowDeleteColumns | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/WorkbookWorksheetProtectionOptions.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/WorkbookWorksheetProtectionOptions.php | MIT |
public function getAllowDeleteRows()
{
if (array_key_exists("allowDeleteRows", $this->_propDict)) {
return $this->_propDict["allowDeleteRows"];
} else {
return null;
}
} | Gets the allowDeleteRows
Represents the worksheet protection option of allowing deleting rows.
@return bool|null The allowDeleteRows | getAllowDeleteRows | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/WorkbookWorksheetProtectionOptions.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/WorkbookWorksheetProtectionOptions.php | MIT |
public function setAllowDeleteRows($val)
{
$this->_propDict["allowDeleteRows"] = $val;
return $this;
} | Sets the allowDeleteRows
Represents the worksheet protection option of allowing deleting rows.
@param bool $val The value of the allowDeleteRows
@return WorkbookWorksheetProtectionOptions | setAllowDeleteRows | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/WorkbookWorksheetProtectionOptions.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/WorkbookWorksheetProtectionOptions.php | MIT |
public function getAllowFormatCells()
{
if (array_key_exists("allowFormatCells", $this->_propDict)) {
return $this->_propDict["allowFormatCells"];
} else {
return null;
}
} | Gets the allowFormatCells
Represents the worksheet protection option of allowing formatting cells.
@return bool|null The allowFormatCells | getAllowFormatCells | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/WorkbookWorksheetProtectionOptions.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/WorkbookWorksheetProtectionOptions.php | MIT |
public function setAllowFormatCells($val)
{
$this->_propDict["allowFormatCells"] = $val;
return $this;
} | Sets the allowFormatCells
Represents the worksheet protection option of allowing formatting cells.
@param bool $val The value of the allowFormatCells
@return WorkbookWorksheetProtectionOptions | setAllowFormatCells | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/WorkbookWorksheetProtectionOptions.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/WorkbookWorksheetProtectionOptions.php | MIT |
public function getAllowFormatColumns()
{
if (array_key_exists("allowFormatColumns", $this->_propDict)) {
return $this->_propDict["allowFormatColumns"];
} else {
return null;
}
} | Gets the allowFormatColumns
Represents the worksheet protection option of allowing formatting columns.
@return bool|null The allowFormatColumns | getAllowFormatColumns | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/WorkbookWorksheetProtectionOptions.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/WorkbookWorksheetProtectionOptions.php | MIT |
public function setAllowFormatColumns($val)
{
$this->_propDict["allowFormatColumns"] = $val;
return $this;
} | Sets the allowFormatColumns
Represents the worksheet protection option of allowing formatting columns.
@param bool $val The value of the allowFormatColumns
@return WorkbookWorksheetProtectionOptions | setAllowFormatColumns | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/WorkbookWorksheetProtectionOptions.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/WorkbookWorksheetProtectionOptions.php | MIT |
public function getAllowFormatRows()
{
if (array_key_exists("allowFormatRows", $this->_propDict)) {
return $this->_propDict["allowFormatRows"];
} else {
return null;
}
} | Gets the allowFormatRows
Represents the worksheet protection option of allowing formatting rows.
@return bool|null The allowFormatRows | getAllowFormatRows | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/WorkbookWorksheetProtectionOptions.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/WorkbookWorksheetProtectionOptions.php | MIT |
public function setAllowFormatRows($val)
{
$this->_propDict["allowFormatRows"] = $val;
return $this;
} | Sets the allowFormatRows
Represents the worksheet protection option of allowing formatting rows.
@param bool $val The value of the allowFormatRows
@return WorkbookWorksheetProtectionOptions | setAllowFormatRows | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/WorkbookWorksheetProtectionOptions.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/WorkbookWorksheetProtectionOptions.php | MIT |
public function getAllowInsertColumns()
{
if (array_key_exists("allowInsertColumns", $this->_propDict)) {
return $this->_propDict["allowInsertColumns"];
} else {
return null;
}
} | Gets the allowInsertColumns
Represents the worksheet protection option of allowing inserting columns.
@return bool|null The allowInsertColumns | getAllowInsertColumns | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/WorkbookWorksheetProtectionOptions.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/WorkbookWorksheetProtectionOptions.php | MIT |
public function setAllowInsertColumns($val)
{
$this->_propDict["allowInsertColumns"] = $val;
return $this;
} | Sets the allowInsertColumns
Represents the worksheet protection option of allowing inserting columns.
@param bool $val The value of the allowInsertColumns
@return WorkbookWorksheetProtectionOptions | setAllowInsertColumns | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/WorkbookWorksheetProtectionOptions.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/WorkbookWorksheetProtectionOptions.php | MIT |
public function getAllowInsertHyperlinks()
{
if (array_key_exists("allowInsertHyperlinks", $this->_propDict)) {
return $this->_propDict["allowInsertHyperlinks"];
} else {
return null;
}
} | Gets the allowInsertHyperlinks
Represents the worksheet protection option of allowing inserting hyperlinks.
@return bool|null The allowInsertHyperlinks | getAllowInsertHyperlinks | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/WorkbookWorksheetProtectionOptions.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/WorkbookWorksheetProtectionOptions.php | MIT |
public function setAllowInsertHyperlinks($val)
{
$this->_propDict["allowInsertHyperlinks"] = $val;
return $this;
} | Sets the allowInsertHyperlinks
Represents the worksheet protection option of allowing inserting hyperlinks.
@param bool $val The value of the allowInsertHyperlinks
@return WorkbookWorksheetProtectionOptions | setAllowInsertHyperlinks | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/WorkbookWorksheetProtectionOptions.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/WorkbookWorksheetProtectionOptions.php | MIT |
public function getAllowInsertRows()
{
if (array_key_exists("allowInsertRows", $this->_propDict)) {
return $this->_propDict["allowInsertRows"];
} else {
return null;
}
} | Gets the allowInsertRows
Represents the worksheet protection option of allowing inserting rows.
@return bool|null The allowInsertRows | getAllowInsertRows | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/WorkbookWorksheetProtectionOptions.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/WorkbookWorksheetProtectionOptions.php | MIT |
public function setAllowInsertRows($val)
{
$this->_propDict["allowInsertRows"] = $val;
return $this;
} | Sets the allowInsertRows
Represents the worksheet protection option of allowing inserting rows.
@param bool $val The value of the allowInsertRows
@return WorkbookWorksheetProtectionOptions | setAllowInsertRows | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/WorkbookWorksheetProtectionOptions.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/WorkbookWorksheetProtectionOptions.php | MIT |
public function getAllowPivotTables()
{
if (array_key_exists("allowPivotTables", $this->_propDict)) {
return $this->_propDict["allowPivotTables"];
} else {
return null;
}
} | Gets the allowPivotTables
Represents the worksheet protection option of allowing using pivot table feature.
@return bool|null The allowPivotTables | getAllowPivotTables | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/WorkbookWorksheetProtectionOptions.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/WorkbookWorksheetProtectionOptions.php | MIT |
public function setAllowPivotTables($val)
{
$this->_propDict["allowPivotTables"] = $val;
return $this;
} | Sets the allowPivotTables
Represents the worksheet protection option of allowing using pivot table feature.
@param bool $val The value of the allowPivotTables
@return WorkbookWorksheetProtectionOptions | setAllowPivotTables | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/WorkbookWorksheetProtectionOptions.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/WorkbookWorksheetProtectionOptions.php | MIT |
public function getAllowSort()
{
if (array_key_exists("allowSort", $this->_propDict)) {
return $this->_propDict["allowSort"];
} else {
return null;
}
} | Gets the allowSort
Represents the worksheet protection option of allowing using sort feature.
@return bool|null The allowSort | getAllowSort | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/WorkbookWorksheetProtectionOptions.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/WorkbookWorksheetProtectionOptions.php | MIT |
public function setAllowSort($val)
{
$this->_propDict["allowSort"] = $val;
return $this;
} | Sets the allowSort
Represents the worksheet protection option of allowing using sort feature.
@param bool $val The value of the allowSort
@return WorkbookWorksheetProtectionOptions | setAllowSort | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/WorkbookWorksheetProtectionOptions.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/WorkbookWorksheetProtectionOptions.php | MIT |
public function getActivity()
{
if (array_key_exists("activity", $this->_propDict)) {
if (is_a($this->_propDict["activity"], "\Beta\Microsoft\Graph\Model\ActivityType") || is_null($this->_propDict["activity"])) {
return $this->_propDict["activity"];
} else {
$this->_propDict["activity"] = new ActivityType($this->_propDict["activity"]);
return $this->_propDict["activity"];
}
}
return null;
} | Gets the activity
Indicates the activity type the detected risk is linked to. The possible values are: signin, servicePrincipal. Note that you must use the Prefer: include-unknown-enum-members request header to get the following value(s) in this evolvable enum: servicePrincipal.
@return ActivityType|null The activity | getActivity | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ServicePrincipalRiskDetection.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ServicePrincipalRiskDetection.php | MIT |
public function setActivity($val)
{
$this->_propDict["activity"] = $val;
return $this;
} | Sets the activity
Indicates the activity type the detected risk is linked to. The possible values are: signin, servicePrincipal. Note that you must use the Prefer: include-unknown-enum-members request header to get the following value(s) in this evolvable enum: servicePrincipal.
@param ActivityType $val The activity
@return ServicePrincipalRiskDetection | setActivity | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ServicePrincipalRiskDetection.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ServicePrincipalRiskDetection.php | MIT |
public function getActivityDateTime()
{
if (array_key_exists("activityDateTime", $this->_propDict)) {
if (is_a($this->_propDict["activityDateTime"], "\DateTime") || is_null($this->_propDict["activityDateTime"])) {
return $this->_propDict["activityDateTime"];
} else {
$this->_propDict["activityDateTime"] = new \DateTime($this->_propDict["activityDateTime"]);
return $this->_propDict["activityDateTime"];
}
}
return null;
} | Gets the activityDateTime
Date and time when the risky activity occurred. 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 activityDateTime | getActivityDateTime | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ServicePrincipalRiskDetection.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ServicePrincipalRiskDetection.php | MIT |
public function setActivityDateTime($val)
{
$this->_propDict["activityDateTime"] = $val;
return $this;
} | Sets the activityDateTime
Date and time when the risky activity occurred. 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 activityDateTime
@return ServicePrincipalRiskDetection | setActivityDateTime | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ServicePrincipalRiskDetection.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ServicePrincipalRiskDetection.php | MIT |
public function getAdditionalInfo()
{
if (array_key_exists("additionalInfo", $this->_propDict)) {
return $this->_propDict["additionalInfo"];
} else {
return null;
}
} | Gets the additionalInfo
Additional information associated with the risk detection. This string value is represented as a JSON object with the quotations escaped.
@return string|null The additionalInfo | getAdditionalInfo | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ServicePrincipalRiskDetection.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ServicePrincipalRiskDetection.php | MIT |
public function setAdditionalInfo($val)
{
$this->_propDict["additionalInfo"] = $val;
return $this;
} | Sets the additionalInfo
Additional information associated with the risk detection. This string value is represented as a JSON object with the quotations escaped.
@param string $val The additionalInfo
@return ServicePrincipalRiskDetection | setAdditionalInfo | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ServicePrincipalRiskDetection.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ServicePrincipalRiskDetection.php | MIT |
public function getAppId()
{
if (array_key_exists("appId", $this->_propDict)) {
return $this->_propDict["appId"];
} else {
return null;
}
} | Gets the appId
The unique identifier for the associated application.
@return string|null The appId | getAppId | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ServicePrincipalRiskDetection.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ServicePrincipalRiskDetection.php | MIT |
public function setAppId($val)
{
$this->_propDict["appId"] = $val;
return $this;
} | Sets the appId
The unique identifier for the associated application.
@param string $val The appId
@return ServicePrincipalRiskDetection | setAppId | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ServicePrincipalRiskDetection.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ServicePrincipalRiskDetection.php | MIT |
public function getCorrelationId()
{
if (array_key_exists("correlationId", $this->_propDict)) {
return $this->_propDict["correlationId"];
} else {
return null;
}
} | Gets the correlationId
Correlation ID of the sign-in activity associated with the risk detection. This property is null if the risk detection is not associated with a sign-in activity.
@return string|null The correlationId | getCorrelationId | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ServicePrincipalRiskDetection.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ServicePrincipalRiskDetection.php | MIT |
public function setCorrelationId($val)
{
$this->_propDict["correlationId"] = $val;
return $this;
} | Sets the correlationId
Correlation ID of the sign-in activity associated with the risk detection. This property is null if the risk detection is not associated with a sign-in activity.
@param string $val The correlationId
@return ServicePrincipalRiskDetection | setCorrelationId | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ServicePrincipalRiskDetection.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ServicePrincipalRiskDetection.php | MIT |
public function getDetectedDateTime()
{
if (array_key_exists("detectedDateTime", $this->_propDict)) {
if (is_a($this->_propDict["detectedDateTime"], "\DateTime") || is_null($this->_propDict["detectedDateTime"])) {
return $this->_propDict["detectedDateTime"];
} else {
$this->_propDict["detectedDateTime"] = new \DateTime($this->_propDict["detectedDateTime"]);
return $this->_propDict["detectedDateTime"];
}
}
return null;
} | Gets the detectedDateTime
Date and time when the risk was detected. 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 detectedDateTime | getDetectedDateTime | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ServicePrincipalRiskDetection.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ServicePrincipalRiskDetection.php | MIT |
public function setDetectedDateTime($val)
{
$this->_propDict["detectedDateTime"] = $val;
return $this;
} | Sets the detectedDateTime
Date and time when the risk was detected. 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 detectedDateTime
@return ServicePrincipalRiskDetection | setDetectedDateTime | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ServicePrincipalRiskDetection.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ServicePrincipalRiskDetection.php | MIT |
public function getDetectionTimingType()
{
if (array_key_exists("detectionTimingType", $this->_propDict)) {
if (is_a($this->_propDict["detectionTimingType"], "\Beta\Microsoft\Graph\Model\RiskDetectionTimingType") || is_null($this->_propDict["detectionTimingType"])) {
return $this->_propDict["detectionTimingType"];
} else {
$this->_propDict["detectionTimingType"] = new RiskDetectionTimingType($this->_propDict["detectionTimingType"]);
return $this->_propDict["detectionTimingType"];
}
}
return null;
} | Gets the detectionTimingType
Timing of the detected risk , whether real-time or offline). The possible values are: notDefined, realtime, nearRealtime, offline, unknownFutureValue.
@return RiskDetectionTimingType|null The detectionTimingType | getDetectionTimingType | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ServicePrincipalRiskDetection.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ServicePrincipalRiskDetection.php | MIT |
public function setDetectionTimingType($val)
{
$this->_propDict["detectionTimingType"] = $val;
return $this;
} | Sets the detectionTimingType
Timing of the detected risk , whether real-time or offline). The possible values are: notDefined, realtime, nearRealtime, offline, unknownFutureValue.
@param RiskDetectionTimingType $val The detectionTimingType
@return ServicePrincipalRiskDetection | setDetectionTimingType | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ServicePrincipalRiskDetection.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ServicePrincipalRiskDetection.php | MIT |
public function getIpAddress()
{
if (array_key_exists("ipAddress", $this->_propDict)) {
return $this->_propDict["ipAddress"];
} else {
return null;
}
} | Gets the ipAddress
Provides the IP address of the client from where the risk occurred.
@return string|null The ipAddress | getIpAddress | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ServicePrincipalRiskDetection.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ServicePrincipalRiskDetection.php | MIT |
public function setIpAddress($val)
{
$this->_propDict["ipAddress"] = $val;
return $this;
} | Sets the ipAddress
Provides the IP address of the client from where the risk occurred.
@param string $val The ipAddress
@return ServicePrincipalRiskDetection | setIpAddress | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ServicePrincipalRiskDetection.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ServicePrincipalRiskDetection.php | MIT |
public function getKeyIds()
{
if (array_key_exists("keyIds", $this->_propDict)) {
return $this->_propDict["keyIds"];
} else {
return null;
}
} | Gets the keyIds
The unique identifier (GUID) for the key credential associated with the risk detection.
@return array|null The keyIds | getKeyIds | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ServicePrincipalRiskDetection.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ServicePrincipalRiskDetection.php | MIT |
public function setKeyIds($val)
{
$this->_propDict["keyIds"] = $val;
return $this;
} | Sets the keyIds
The unique identifier (GUID) for the key credential associated with the risk detection.
@param string[] $val The keyIds
@return ServicePrincipalRiskDetection | setKeyIds | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ServicePrincipalRiskDetection.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ServicePrincipalRiskDetection.php | MIT |
public function getLastUpdatedDateTime()
{
if (array_key_exists("lastUpdatedDateTime", $this->_propDict)) {
if (is_a($this->_propDict["lastUpdatedDateTime"], "\DateTime") || is_null($this->_propDict["lastUpdatedDateTime"])) {
return $this->_propDict["lastUpdatedDateTime"];
} else {
$this->_propDict["lastUpdatedDateTime"] = new \DateTime($this->_propDict["lastUpdatedDateTime"]);
return $this->_propDict["lastUpdatedDateTime"];
}
}
return null;
} | Gets the lastUpdatedDateTime
Date and time when the risk detection was last updated.
@return \DateTime|null The lastUpdatedDateTime | getLastUpdatedDateTime | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ServicePrincipalRiskDetection.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ServicePrincipalRiskDetection.php | MIT |
public function setLastUpdatedDateTime($val)
{
$this->_propDict["lastUpdatedDateTime"] = $val;
return $this;
} | Sets the lastUpdatedDateTime
Date and time when the risk detection was last updated.
@param \DateTime $val The lastUpdatedDateTime
@return ServicePrincipalRiskDetection | setLastUpdatedDateTime | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ServicePrincipalRiskDetection.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ServicePrincipalRiskDetection.php | MIT |
public function getLocation()
{
if (array_key_exists("location", $this->_propDict)) {
if (is_a($this->_propDict["location"], "\Beta\Microsoft\Graph\Model\SignInLocation") || is_null($this->_propDict["location"])) {
return $this->_propDict["location"];
} else {
$this->_propDict["location"] = new SignInLocation($this->_propDict["location"]);
return $this->_propDict["location"];
}
}
return null;
} | Gets the location
Location from where the sign-in was initiated.
@return SignInLocation|null The location | getLocation | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ServicePrincipalRiskDetection.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ServicePrincipalRiskDetection.php | MIT |
public function setLocation($val)
{
$this->_propDict["location"] = $val;
return $this;
} | Sets the location
Location from where the sign-in was initiated.
@param SignInLocation $val The location
@return ServicePrincipalRiskDetection | setLocation | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ServicePrincipalRiskDetection.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ServicePrincipalRiskDetection.php | MIT |
public function getRequestId()
{
if (array_key_exists("requestId", $this->_propDict)) {
return $this->_propDict["requestId"];
} else {
return null;
}
} | Gets the requestId
Request identifier of the sign-in activity associated with the risk detection. This property is null if the risk detection is not associated with a sign-in activity. Supports $filter (eq).
@return string|null The requestId | getRequestId | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ServicePrincipalRiskDetection.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ServicePrincipalRiskDetection.php | MIT |
public function setRequestId($val)
{
$this->_propDict["requestId"] = $val;
return $this;
} | Sets the requestId
Request identifier of the sign-in activity associated with the risk detection. This property is null if the risk detection is not associated with a sign-in activity. Supports $filter (eq).
@param string $val The requestId
@return ServicePrincipalRiskDetection | setRequestId | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ServicePrincipalRiskDetection.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ServicePrincipalRiskDetection.php | MIT |
public function getRiskDetail()
{
if (array_key_exists("riskDetail", $this->_propDict)) {
if (is_a($this->_propDict["riskDetail"], "\Beta\Microsoft\Graph\Model\RiskDetail") || is_null($this->_propDict["riskDetail"])) {
return $this->_propDict["riskDetail"];
} else {
$this->_propDict["riskDetail"] = new RiskDetail($this->_propDict["riskDetail"]);
return $this->_propDict["riskDetail"];
}
}
return null;
} | Gets the riskDetail
Details of the detected risk. Note: Details for this property are only available for Workload Identities Premium customers. Events in tenants without this license will be returned hidden. The possible values are: none, hidden, adminConfirmedServicePrincipalCompromised, adminDismissedAllRiskForServicePrincipal. Note that you must use the Prefer: include-unknown-enum-members request header to get the following value(s) in this evolvable enum: adminConfirmedServicePrincipalCompromised , adminDismissedAllRiskForServicePrincipal.
@return RiskDetail|null The riskDetail | getRiskDetail | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ServicePrincipalRiskDetection.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ServicePrincipalRiskDetection.php | MIT |
public function setRiskDetail($val)
{
$this->_propDict["riskDetail"] = $val;
return $this;
} | Sets the riskDetail
Details of the detected risk. Note: Details for this property are only available for Workload Identities Premium customers. Events in tenants without this license will be returned hidden. The possible values are: none, hidden, adminConfirmedServicePrincipalCompromised, adminDismissedAllRiskForServicePrincipal. Note that you must use the Prefer: include-unknown-enum-members request header to get the following value(s) in this evolvable enum: adminConfirmedServicePrincipalCompromised , adminDismissedAllRiskForServicePrincipal.
@param RiskDetail $val The riskDetail
@return ServicePrincipalRiskDetection | setRiskDetail | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ServicePrincipalRiskDetection.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ServicePrincipalRiskDetection.php | MIT |
public function getRiskEventType()
{
if (array_key_exists("riskEventType", $this->_propDict)) {
return $this->_propDict["riskEventType"];
} else {
return null;
}
} | Gets the riskEventType
The type of risk event detected. The possible values are: investigationsThreatIntelligence, generic, adminConfirmedServicePrincipalCompromised, suspiciousSignins, leakedCredentials, anomalousServicePrincipalActivity, maliciousApplication, suspiciousApplication.
@return string|null The riskEventType | getRiskEventType | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ServicePrincipalRiskDetection.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ServicePrincipalRiskDetection.php | MIT |
public function setRiskEventType($val)
{
$this->_propDict["riskEventType"] = $val;
return $this;
} | Sets the riskEventType
The type of risk event detected. The possible values are: investigationsThreatIntelligence, generic, adminConfirmedServicePrincipalCompromised, suspiciousSignins, leakedCredentials, anomalousServicePrincipalActivity, maliciousApplication, suspiciousApplication.
@param string $val The riskEventType
@return ServicePrincipalRiskDetection | setRiskEventType | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ServicePrincipalRiskDetection.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ServicePrincipalRiskDetection.php | MIT |
public function getRiskLevel()
{
if (array_key_exists("riskLevel", $this->_propDict)) {
if (is_a($this->_propDict["riskLevel"], "\Beta\Microsoft\Graph\Model\RiskLevel") || is_null($this->_propDict["riskLevel"])) {
return $this->_propDict["riskLevel"];
} else {
$this->_propDict["riskLevel"] = new RiskLevel($this->_propDict["riskLevel"]);
return $this->_propDict["riskLevel"];
}
}
return null;
} | Gets the riskLevel
Level of the detected risk. Note: Details for this property are only available for Workload Identities Premium customers. Events in tenants without this license will be returned hidden. The possible values are: low, medium, high, hidden, none.
@return RiskLevel|null The riskLevel | getRiskLevel | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ServicePrincipalRiskDetection.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ServicePrincipalRiskDetection.php | MIT |
public function setRiskLevel($val)
{
$this->_propDict["riskLevel"] = $val;
return $this;
} | Sets the riskLevel
Level of the detected risk. Note: Details for this property are only available for Workload Identities Premium customers. Events in tenants without this license will be returned hidden. The possible values are: low, medium, high, hidden, none.
@param RiskLevel $val The riskLevel
@return ServicePrincipalRiskDetection | setRiskLevel | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ServicePrincipalRiskDetection.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ServicePrincipalRiskDetection.php | MIT |
public function getRiskState()
{
if (array_key_exists("riskState", $this->_propDict)) {
if (is_a($this->_propDict["riskState"], "\Beta\Microsoft\Graph\Model\RiskState") || is_null($this->_propDict["riskState"])) {
return $this->_propDict["riskState"];
} else {
$this->_propDict["riskState"] = new RiskState($this->_propDict["riskState"]);
return $this->_propDict["riskState"];
}
}
return null;
} | Gets the riskState
The state of a detected risky service principal or sign-in activity. The possible values are: none, dismissed, atRisk, confirmedCompromised.
@return RiskState|null The riskState | getRiskState | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ServicePrincipalRiskDetection.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ServicePrincipalRiskDetection.php | MIT |
public function setRiskState($val)
{
$this->_propDict["riskState"] = $val;
return $this;
} | Sets the riskState
The state of a detected risky service principal or sign-in activity. The possible values are: none, dismissed, atRisk, confirmedCompromised.
@param RiskState $val The riskState
@return ServicePrincipalRiskDetection | setRiskState | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ServicePrincipalRiskDetection.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ServicePrincipalRiskDetection.php | MIT |
public function getServicePrincipalDisplayName()
{
if (array_key_exists("servicePrincipalDisplayName", $this->_propDict)) {
return $this->_propDict["servicePrincipalDisplayName"];
} else {
return null;
}
} | Gets the servicePrincipalDisplayName
The display name for the service principal.
@return string|null The servicePrincipalDisplayName | getServicePrincipalDisplayName | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ServicePrincipalRiskDetection.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ServicePrincipalRiskDetection.php | MIT |
public function setServicePrincipalDisplayName($val)
{
$this->_propDict["servicePrincipalDisplayName"] = $val;
return $this;
} | Sets the servicePrincipalDisplayName
The display name for the service principal.
@param string $val The servicePrincipalDisplayName
@return ServicePrincipalRiskDetection | setServicePrincipalDisplayName | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ServicePrincipalRiskDetection.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ServicePrincipalRiskDetection.php | MIT |
public function getServicePrincipalId()
{
if (array_key_exists("servicePrincipalId", $this->_propDict)) {
return $this->_propDict["servicePrincipalId"];
} else {
return null;
}
} | Gets the servicePrincipalId
The unique identifier for the service principal. Supports $filter (eq).
@return string|null The servicePrincipalId | getServicePrincipalId | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ServicePrincipalRiskDetection.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ServicePrincipalRiskDetection.php | MIT |
public function setServicePrincipalId($val)
{
$this->_propDict["servicePrincipalId"] = $val;
return $this;
} | Sets the servicePrincipalId
The unique identifier for the service principal. Supports $filter (eq).
@param string $val The servicePrincipalId
@return ServicePrincipalRiskDetection | setServicePrincipalId | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ServicePrincipalRiskDetection.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ServicePrincipalRiskDetection.php | MIT |
public function getSource()
{
if (array_key_exists("source", $this->_propDict)) {
return $this->_propDict["source"];
} else {
return null;
}
} | Gets the source
Source of the risk detection. For example, identityProtection.
@return string|null The source | getSource | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ServicePrincipalRiskDetection.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ServicePrincipalRiskDetection.php | MIT |
public function setSource($val)
{
$this->_propDict["source"] = $val;
return $this;
} | Sets the source
Source of the risk detection. For example, identityProtection.
@param string $val The source
@return ServicePrincipalRiskDetection | setSource | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ServicePrincipalRiskDetection.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ServicePrincipalRiskDetection.php | MIT |
public function getTokenIssuerType()
{
if (array_key_exists("tokenIssuerType", $this->_propDict)) {
if (is_a($this->_propDict["tokenIssuerType"], "\Beta\Microsoft\Graph\Model\TokenIssuerType") || is_null($this->_propDict["tokenIssuerType"])) {
return $this->_propDict["tokenIssuerType"];
} else {
$this->_propDict["tokenIssuerType"] = new TokenIssuerType($this->_propDict["tokenIssuerType"]);
return $this->_propDict["tokenIssuerType"];
}
}
return null;
} | Gets the tokenIssuerType
Indicates the type of token issuer for the detected sign-in risk. The possible values are: AzureAD.
@return TokenIssuerType|null The tokenIssuerType | getTokenIssuerType | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ServicePrincipalRiskDetection.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ServicePrincipalRiskDetection.php | MIT |
public function setTokenIssuerType($val)
{
$this->_propDict["tokenIssuerType"] = $val;
return $this;
} | Sets the tokenIssuerType
Indicates the type of token issuer for the detected sign-in risk. The possible values are: AzureAD.
@param TokenIssuerType $val The tokenIssuerType
@return ServicePrincipalRiskDetection | setTokenIssuerType | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ServicePrincipalRiskDetection.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ServicePrincipalRiskDetection.php | MIT |
public function getDetails()
{
if (array_key_exists("details", $this->_propDict)) {
if (is_a($this->_propDict["details"], "\Beta\Microsoft\Graph\Model\DetailsInfo") || is_null($this->_propDict["details"])) {
return $this->_propDict["details"];
} else {
$this->_propDict["details"] = new DetailsInfo($this->_propDict["details"]);
return $this->_propDict["details"];
}
}
return null;
} | Gets the details
Details of the system.
@return DetailsInfo|null The details | getDetails | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ProvisioningSystem.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ProvisioningSystem.php | MIT |
public function setDetails($val)
{
$this->_propDict["details"] = $val;
return $this;
} | Sets the details
Details of the system.
@param DetailsInfo $val The value to assign to the details
@return ProvisioningSystem The ProvisioningSystem | setDetails | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ProvisioningSystem.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ProvisioningSystem.php | MIT |
function __construct(Backend\BackendInterface $authBackend = null) {
if (!is_null($authBackend)) {
$this->addBackend($authBackend);
}
} | Creates the authentication plugin
@param Backend\BackendInterface $authBackend | __construct | php | xiebruce/PicUploader | vendor/sabre/dav/lib/DAV/Auth/Plugin.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/sabre/dav/lib/DAV/Auth/Plugin.php | MIT |
function addBackend(Backend\BackendInterface $authBackend) {
$this->backends[] = $authBackend;
} | Adds an authentication backend to the plugin.
@param Backend\BackendInterface $authBackend
@return void | addBackend | php | xiebruce/PicUploader | vendor/sabre/dav/lib/DAV/Auth/Plugin.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/sabre/dav/lib/DAV/Auth/Plugin.php | MIT |
function initialize(Server $server) {
$server->on('beforeMethod', [$this, 'beforeMethod'], 10);
} | Initializes the plugin. This function is automatically called by the server
@param Server $server
@return void | initialize | php | xiebruce/PicUploader | vendor/sabre/dav/lib/DAV/Auth/Plugin.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/sabre/dav/lib/DAV/Auth/Plugin.php | MIT |
function getPluginName() {
return 'auth';
} | Returns a plugin name.
Using this name other plugins will be able to access other plugins
using DAV\Server::getPlugin
@return string | getPluginName | php | xiebruce/PicUploader | vendor/sabre/dav/lib/DAV/Auth/Plugin.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/sabre/dav/lib/DAV/Auth/Plugin.php | MIT |
function getCurrentPrincipal() {
return $this->currentPrincipal;
} | Returns the currently logged-in principal.
This will return a string such as:
principals/username
principals/users/username
This method will return null if nobody is logged in.
@return string|null | getCurrentPrincipal | php | xiebruce/PicUploader | vendor/sabre/dav/lib/DAV/Auth/Plugin.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/sabre/dav/lib/DAV/Auth/Plugin.php | MIT |
function beforeMethod(RequestInterface $request, ResponseInterface $response) {
if ($this->currentPrincipal) {
// We already have authentication information. This means that the
// event has already fired earlier, and is now likely fired for a
// sub-request.
//
// We don't want to authenticate users twice, so we simply don't do
// anything here. See Issue #700 for additional reasoning.
//
// This is not a perfect solution, but will be fixed once the
// "currently authenticated principal" is information that's not
// not associated with the plugin, but rather per-request.
//
// See issue #580 for more information about that.
return;
}
$authResult = $this->check($request, $response);
if ($authResult[0]) {
// Auth was successful
$this->currentPrincipal = $authResult[1];
$this->loginFailedReasons = null;
return;
}
// If we got here, it means that no authentication backend was
// successful in authenticating the user.
$this->currentPrincipal = null;
$this->loginFailedReasons = $authResult[1];
if ($this->autoRequireLogin) {
$this->challenge($request, $response);
throw new NotAuthenticated(implode(', ', $authResult[1]));
}
} | This method is called before any HTTP method and forces users to be authenticated
@param RequestInterface $request
@param ResponseInterface $response
@return bool | beforeMethod | php | xiebruce/PicUploader | vendor/sabre/dav/lib/DAV/Auth/Plugin.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/sabre/dav/lib/DAV/Auth/Plugin.php | MIT |
function getLoginFailedReasons() {
return $this->loginFailedReasons;
} | Returns a list of reasons why login was unsuccessful.
This method will return the login failed reasons for the last login
operation. One for each auth backend.
This method returns null if the last authentication attempt was
successful, or if there was no authentication attempt yet.
@return string[]|null | getLoginFailedReasons | php | xiebruce/PicUploader | vendor/sabre/dav/lib/DAV/Auth/Plugin.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/sabre/dav/lib/DAV/Auth/Plugin.php | MIT |
function getPluginInfo() {
return [
'name' => $this->getPluginName(),
'description' => 'Generic authentication plugin',
'link' => 'http://sabre.io/dav/authentication/',
];
} | Returns a bunch of meta-data about the plugin.
Providing this information is optional, and is mainly displayed by the
Browser plugin.
The description key in the returned array may contain html and will not
be sanitized.
@return array | getPluginInfo | php | xiebruce/PicUploader | vendor/sabre/dav/lib/DAV/Auth/Plugin.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/sabre/dav/lib/DAV/Auth/Plugin.php | MIT |
public function getFields()
{
if (array_key_exists("fields", $this->_propDict)) {
if (is_a($this->_propDict["fields"], "\Microsoft\Graph\Model\FieldValueSet") || is_null($this->_propDict["fields"])) {
return $this->_propDict["fields"];
} else {
$this->_propDict["fields"] = new FieldValueSet($this->_propDict["fields"]);
return $this->_propDict["fields"];
}
}
return null;
} | Gets the fields
A collection of the fields and values for this version of the list item.
@return FieldValueSet|null The fields | getFields | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/ListItemVersion.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/ListItemVersion.php | MIT |
public function setFields($val)
{
$this->_propDict["fields"] = $val;
return $this;
} | Sets the fields
A collection of the fields and values for this version of the list item.
@param FieldValueSet $val The fields
@return ListItemVersion | setFields | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/ListItemVersion.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/ListItemVersion.php | MIT |
public function getOverlay()
{
if (array_key_exists("overlay", $this->_propDict)) {
return $this->_propDict["overlay"];
} else {
return null;
}
} | Gets the overlay
Boolean value representing if the chart title will overlay the chart or not.
@return bool|null The overlay | getOverlay | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/WorkbookChartTitle.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/WorkbookChartTitle.php | MIT |
public function setOverlay($val)
{
$this->_propDict["overlay"] = boolval($val);
return $this;
} | Sets the overlay
Boolean value representing if the chart title will overlay the chart or not.
@param bool $val The overlay
@return WorkbookChartTitle | setOverlay | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/WorkbookChartTitle.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/WorkbookChartTitle.php | MIT |
public function getText()
{
if (array_key_exists("text", $this->_propDict)) {
return $this->_propDict["text"];
} else {
return null;
}
} | Gets the text
Represents the title text of a chart.
@return string|null The text | getText | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/WorkbookChartTitle.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/WorkbookChartTitle.php | MIT |
public function setText($val)
{
$this->_propDict["text"] = $val;
return $this;
} | Sets the text
Represents the title text of a chart.
@param string $val The text
@return WorkbookChartTitle | setText | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/WorkbookChartTitle.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/WorkbookChartTitle.php | MIT |
public function getVisible()
{
if (array_key_exists("visible", $this->_propDict)) {
return $this->_propDict["visible"];
} else {
return null;
}
} | Gets the visible
A boolean value the represents the visibility of a chart title object.
@return bool|null The visible | getVisible | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/WorkbookChartTitle.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/WorkbookChartTitle.php | MIT |
public function setVisible($val)
{
$this->_propDict["visible"] = boolval($val);
return $this;
} | Sets the visible
A boolean value the represents the visibility of a chart title object.
@param bool $val The visible
@return WorkbookChartTitle | setVisible | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/WorkbookChartTitle.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/WorkbookChartTitle.php | MIT |
public function getFormat()
{
if (array_key_exists("format", $this->_propDict)) {
if (is_a($this->_propDict["format"], "\Microsoft\Graph\Model\WorkbookChartTitleFormat") || is_null($this->_propDict["format"])) {
return $this->_propDict["format"];
} else {
$this->_propDict["format"] = new WorkbookChartTitleFormat($this->_propDict["format"]);
return $this->_propDict["format"];
}
}
return null;
} | Gets the format
Represents the formatting of a chart title, which includes fill and font formatting. Read-only.
@return WorkbookChartTitleFormat|null The format | getFormat | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/WorkbookChartTitle.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/WorkbookChartTitle.php | MIT |
public function setFormat($val)
{
$this->_propDict["format"] = $val;
return $this;
} | Sets the format
Represents the formatting of a chart title, which includes fill and font formatting. Read-only.
@param WorkbookChartTitleFormat $val The format
@return WorkbookChartTitle | setFormat | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/WorkbookChartTitle.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/WorkbookChartTitle.php | MIT |
public function getAuthenticationStrength()
{
if (array_key_exists("authenticationStrength", $this->_propDict)) {
if (is_a($this->_propDict["authenticationStrength"], "\Beta\Microsoft\Graph\Model\AuthenticationStrengthRoot") || is_null($this->_propDict["authenticationStrength"])) {
return $this->_propDict["authenticationStrength"];
} else {
$this->_propDict["authenticationStrength"] = new AuthenticationStrengthRoot($this->_propDict["authenticationStrength"]);
return $this->_propDict["authenticationStrength"];
}
}
return null;
} | Gets the authenticationStrength
Defines the authentication strength policies, valid authentication method combinations, and authentication method mode details that can be required by a conditional access policy.
@return AuthenticationStrengthRoot|null The authenticationStrength | getAuthenticationStrength | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ConditionalAccessRoot.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ConditionalAccessRoot.php | MIT |
public function setAuthenticationStrength($val)
{
$this->_propDict["authenticationStrength"] = $val;
return $this;
} | Sets the authenticationStrength
Defines the authentication strength policies, valid authentication method combinations, and authentication method mode details that can be required by a conditional access policy.
@param AuthenticationStrengthRoot $val The authenticationStrength
@return ConditionalAccessRoot | setAuthenticationStrength | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ConditionalAccessRoot.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ConditionalAccessRoot.php | MIT |
public function getAuthenticationStrengths()
{
if (array_key_exists("authenticationStrengths", $this->_propDict)) {
if (is_a($this->_propDict["authenticationStrengths"], "\Beta\Microsoft\Graph\Model\AuthenticationStrengthRoot") || is_null($this->_propDict["authenticationStrengths"])) {
return $this->_propDict["authenticationStrengths"];
} else {
$this->_propDict["authenticationStrengths"] = new AuthenticationStrengthRoot($this->_propDict["authenticationStrengths"]);
return $this->_propDict["authenticationStrengths"];
}
}
return null;
} | Gets the authenticationStrengths
@return AuthenticationStrengthRoot|null The authenticationStrengths | getAuthenticationStrengths | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ConditionalAccessRoot.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ConditionalAccessRoot.php | MIT |
public function setAuthenticationStrengths($val)
{
$this->_propDict["authenticationStrengths"] = $val;
return $this;
} | Sets the authenticationStrengths
@param AuthenticationStrengthRoot $val The authenticationStrengths
@return ConditionalAccessRoot | setAuthenticationStrengths | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ConditionalAccessRoot.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ConditionalAccessRoot.php | MIT |
public function getAuthenticationContextClassReferences()
{
if (array_key_exists("authenticationContextClassReferences", $this->_propDict)) {
return $this->_propDict["authenticationContextClassReferences"];
} else {
return null;
}
} | Gets the authenticationContextClassReferences
Read-only. Nullable. Returns a collection of the specified authentication context class references.
@return array|null The authenticationContextClassReferences | getAuthenticationContextClassReferences | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ConditionalAccessRoot.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ConditionalAccessRoot.php | MIT |
public function setAuthenticationContextClassReferences($val)
{
$this->_propDict["authenticationContextClassReferences"] = $val;
return $this;
} | Sets the authenticationContextClassReferences
Read-only. Nullable. Returns a collection of the specified authentication context class references.
@param AuthenticationContextClassReference[] $val The authenticationContextClassReferences
@return ConditionalAccessRoot | setAuthenticationContextClassReferences | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ConditionalAccessRoot.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ConditionalAccessRoot.php | MIT |
public function getNamedLocations()
{
if (array_key_exists("namedLocations", $this->_propDict)) {
return $this->_propDict["namedLocations"];
} else {
return null;
}
} | Gets the namedLocations
Read-only. Nullable. Returns a collection of the specified named locations.
@return array|null The namedLocations | getNamedLocations | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ConditionalAccessRoot.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ConditionalAccessRoot.php | MIT |
public function setNamedLocations($val)
{
$this->_propDict["namedLocations"] = $val;
return $this;
} | Sets the namedLocations
Read-only. Nullable. Returns a collection of the specified named locations.
@param NamedLocation[] $val The namedLocations
@return ConditionalAccessRoot | setNamedLocations | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ConditionalAccessRoot.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ConditionalAccessRoot.php | MIT |
public function getPolicies()
{
if (array_key_exists("policies", $this->_propDict)) {
return $this->_propDict["policies"];
} else {
return null;
}
} | Gets the policies
Read-only. Nullable. Returns a collection of the specified Conditional Access policies.
@return array|null The policies | getPolicies | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ConditionalAccessRoot.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ConditionalAccessRoot.php | MIT |
public function setPolicies($val)
{
$this->_propDict["policies"] = $val;
return $this;
} | Sets the policies
Read-only. Nullable. Returns a collection of the specified Conditional Access policies.
@param ConditionalAccessPolicy[] $val The policies
@return ConditionalAccessRoot | setPolicies | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ConditionalAccessRoot.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ConditionalAccessRoot.php | MIT |
public function getTemplates()
{
if (array_key_exists("templates", $this->_propDict)) {
return $this->_propDict["templates"];
} else {
return null;
}
} | Gets the templates
Read-only. Nullable. Returns a collection of the specified Conditional Access templates.
@return array|null The templates | getTemplates | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ConditionalAccessRoot.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ConditionalAccessRoot.php | MIT |
public function setTemplates($val)
{
$this->_propDict["templates"] = $val;
return $this;
} | Sets the templates
Read-only. Nullable. Returns a collection of the specified Conditional Access templates.
@param ConditionalAccessTemplate[] $val The templates
@return ConditionalAccessRoot | setTemplates | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ConditionalAccessRoot.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ConditionalAccessRoot.php | MIT |
Subsets and Splits
No saved queries yet
Save your SQL queries to embed, download, and access them later. Queries will appear here once saved.