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 setStatus($val)
{
$this->_propDict["status"] = $val;
return $this;
} | Sets the status
Status of the job, which includes when the job was last run, current job state, and errors.
@param SynchronizationStatus $val The status
@return SynchronizationJob | setStatus | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/SynchronizationJob.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/SynchronizationJob.php | MIT |
public function getSynchronizationJobSettings()
{
if (array_key_exists("synchronizationJobSettings", $this->_propDict)) {
return $this->_propDict["synchronizationJobSettings"];
} else {
return null;
}
} | Gets the synchronizationJobSettings
Settings associated with the job. Some settings are inherited from the template.
@return array|null The synchronizationJobSettings | getSynchronizationJobSettings | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/SynchronizationJob.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/SynchronizationJob.php | MIT |
public function setSynchronizationJobSettings($val)
{
$this->_propDict["synchronizationJobSettings"] = $val;
return $this;
} | Sets the synchronizationJobSettings
Settings associated with the job. Some settings are inherited from the template.
@param KeyValuePair[] $val The synchronizationJobSettings
@return SynchronizationJob | setSynchronizationJobSettings | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/SynchronizationJob.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/SynchronizationJob.php | MIT |
public function getTemplateId()
{
if (array_key_exists("templateId", $this->_propDict)) {
return $this->_propDict["templateId"];
} else {
return null;
}
} | Gets the templateId
Identifier of the synchronization template this job is based on.
@return string|null The templateId | getTemplateId | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/SynchronizationJob.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/SynchronizationJob.php | MIT |
public function setTemplateId($val)
{
$this->_propDict["templateId"] = $val;
return $this;
} | Sets the templateId
Identifier of the synchronization template this job is based on.
@param string $val The templateId
@return SynchronizationJob | setTemplateId | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/SynchronizationJob.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/SynchronizationJob.php | MIT |
public function getSchema()
{
if (array_key_exists("schema", $this->_propDict)) {
if (is_a($this->_propDict["schema"], "\Beta\Microsoft\Graph\Model\SynchronizationSchema") || is_null($this->_propDict["schema"])) {
return $this->_propDict["schema"];
} else {
$this->_propDict["schema"] = new SynchronizationSchema($this->_propDict["schema"]);
return $this->_propDict["schema"];
}
}
return null;
} | Gets the schema
The synchronization schema configured for the job.
@return SynchronizationSchema|null The schema | getSchema | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/SynchronizationJob.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/SynchronizationJob.php | MIT |
public function setSchema($val)
{
$this->_propDict["schema"] = $val;
return $this;
} | Sets the schema
The synchronization schema configured for the job.
@param SynchronizationSchema $val The schema
@return SynchronizationJob | setSchema | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/SynchronizationJob.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/SynchronizationJob.php | MIT |
public function getKeyCredentials()
{
if (array_key_exists("keyCredentials", $this->_propDict)) {
if (is_a($this->_propDict["keyCredentials"], "\Microsoft\Graph\Model\KeyCredentialConfiguration") || is_null($this->_propDict["keyCredentials"])) {
return $this->_propDict["keyCredentials"];
} else {
$this->_propDict["keyCredentials"] = new KeyCredentialConfiguration($this->_propDict["keyCredentials"]);
return $this->_propDict["keyCredentials"];
}
}
return null;
} | Gets the keyCredentials
Collection of keyCredential restrictions settings to be applied to an application or service principal.
@return KeyCredentialConfiguration|null The keyCredentials | getKeyCredentials | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/AppManagementConfiguration.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/AppManagementConfiguration.php | MIT |
public function setKeyCredentials($val)
{
$this->_propDict["keyCredentials"] = $val;
return $this;
} | Sets the keyCredentials
Collection of keyCredential restrictions settings to be applied to an application or service principal.
@param KeyCredentialConfiguration $val The value to assign to the keyCredentials
@return AppManagementConfiguration The AppManagementConfiguration | setKeyCredentials | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/AppManagementConfiguration.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/AppManagementConfiguration.php | MIT |
public function getPasswordCredentials()
{
if (array_key_exists("passwordCredentials", $this->_propDict)) {
if (is_a($this->_propDict["passwordCredentials"], "\Microsoft\Graph\Model\PasswordCredentialConfiguration") || is_null($this->_propDict["passwordCredentials"])) {
return $this->_propDict["passwordCredentials"];
} else {
$this->_propDict["passwordCredentials"] = new PasswordCredentialConfiguration($this->_propDict["passwordCredentials"]);
return $this->_propDict["passwordCredentials"];
}
}
return null;
} | Gets the passwordCredentials
Collection of password restrictions settings to be applied to an application or service principal.
@return PasswordCredentialConfiguration|null The passwordCredentials | getPasswordCredentials | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/AppManagementConfiguration.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/AppManagementConfiguration.php | MIT |
public function setPasswordCredentials($val)
{
$this->_propDict["passwordCredentials"] = $val;
return $this;
} | Sets the passwordCredentials
Collection of password restrictions settings to be applied to an application or service principal.
@param PasswordCredentialConfiguration $val The value to assign to the passwordCredentials
@return AppManagementConfiguration The AppManagementConfiguration | setPasswordCredentials | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/AppManagementConfiguration.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/AppManagementConfiguration.php | MIT |
public function getDeviceName()
{
if (array_key_exists("deviceName", $this->_propDict)) {
return $this->_propDict["deviceName"];
} else {
return null;
}
} | Gets the deviceName
Device name.
@return string|null The deviceName | getDeviceName | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/DeviceInstallState.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/DeviceInstallState.php | MIT |
public function setDeviceName($val)
{
$this->_propDict["deviceName"] = $val;
return $this;
} | Sets the deviceName
Device name.
@param string $val The deviceName
@return DeviceInstallState | setDeviceName | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/DeviceInstallState.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/DeviceInstallState.php | MIT |
public function getErrorCode()
{
if (array_key_exists("errorCode", $this->_propDict)) {
return $this->_propDict["errorCode"];
} else {
return null;
}
} | Gets the errorCode
The error code for install failures.
@return string|null The errorCode | getErrorCode | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/DeviceInstallState.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/DeviceInstallState.php | MIT |
public function setErrorCode($val)
{
$this->_propDict["errorCode"] = $val;
return $this;
} | Sets the errorCode
The error code for install failures.
@param string $val The errorCode
@return DeviceInstallState | setErrorCode | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/DeviceInstallState.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/DeviceInstallState.php | MIT |
public function getInstallState()
{
if (array_key_exists("installState", $this->_propDict)) {
if (is_a($this->_propDict["installState"], "\Beta\Microsoft\Graph\Model\InstallState") || is_null($this->_propDict["installState"])) {
return $this->_propDict["installState"];
} else {
$this->_propDict["installState"] = new InstallState($this->_propDict["installState"]);
return $this->_propDict["installState"];
}
}
return null;
} | Gets the installState
The install state of the eBook. Possible values are: notApplicable, installed, failed, notInstalled, uninstallFailed, unknown.
@return InstallState|null The installState | getInstallState | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/DeviceInstallState.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/DeviceInstallState.php | MIT |
public function setInstallState($val)
{
$this->_propDict["installState"] = $val;
return $this;
} | Sets the installState
The install state of the eBook. Possible values are: notApplicable, installed, failed, notInstalled, uninstallFailed, unknown.
@param InstallState $val The installState
@return DeviceInstallState | setInstallState | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/DeviceInstallState.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/DeviceInstallState.php | MIT |
public function getLastSyncDateTime()
{
if (array_key_exists("lastSyncDateTime", $this->_propDict)) {
if (is_a($this->_propDict["lastSyncDateTime"], "\DateTime") || is_null($this->_propDict["lastSyncDateTime"])) {
return $this->_propDict["lastSyncDateTime"];
} else {
$this->_propDict["lastSyncDateTime"] = new \DateTime($this->_propDict["lastSyncDateTime"]);
return $this->_propDict["lastSyncDateTime"];
}
}
return null;
} | Gets the lastSyncDateTime
Last sync date and time.
@return \DateTime|null The lastSyncDateTime | getLastSyncDateTime | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/DeviceInstallState.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/DeviceInstallState.php | MIT |
public function setLastSyncDateTime($val)
{
$this->_propDict["lastSyncDateTime"] = $val;
return $this;
} | Sets the lastSyncDateTime
Last sync date and time.
@param \DateTime $val The lastSyncDateTime
@return DeviceInstallState | setLastSyncDateTime | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/DeviceInstallState.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/DeviceInstallState.php | MIT |
public function getOsDescription()
{
if (array_key_exists("osDescription", $this->_propDict)) {
return $this->_propDict["osDescription"];
} else {
return null;
}
} | Gets the osDescription
OS Description.
@return string|null The osDescription | getOsDescription | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/DeviceInstallState.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/DeviceInstallState.php | MIT |
public function setOsDescription($val)
{
$this->_propDict["osDescription"] = $val;
return $this;
} | Sets the osDescription
OS Description.
@param string $val The osDescription
@return DeviceInstallState | setOsDescription | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/DeviceInstallState.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/DeviceInstallState.php | MIT |
public function getOsVersion()
{
if (array_key_exists("osVersion", $this->_propDict)) {
return $this->_propDict["osVersion"];
} else {
return null;
}
} | Gets the osVersion
OS Version.
@return string|null The osVersion | getOsVersion | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/DeviceInstallState.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/DeviceInstallState.php | MIT |
public function setOsVersion($val)
{
$this->_propDict["osVersion"] = $val;
return $this;
} | Sets the osVersion
OS Version.
@param string $val The osVersion
@return DeviceInstallState | setOsVersion | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/DeviceInstallState.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/DeviceInstallState.php | MIT |
public function getUserName()
{
if (array_key_exists("userName", $this->_propDict)) {
return $this->_propDict["userName"];
} else {
return null;
}
} | Gets the userName
Device User Name.
@return string|null The userName | getUserName | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/DeviceInstallState.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/DeviceInstallState.php | MIT |
public function setUserName($val)
{
$this->_propDict["userName"] = $val;
return $this;
} | Sets the userName
Device User Name.
@param string $val The userName
@return DeviceInstallState | setUserName | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/DeviceInstallState.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/DeviceInstallState.php | MIT |
public function getResponse()
{
if (array_key_exists("response", $this->_propDict)) {
if (is_a($this->_propDict["response"], "\Beta\Microsoft\Graph\Model\ResponseType") || is_null($this->_propDict["response"])) {
return $this->_propDict["response"];
} else {
$this->_propDict["response"] = new ResponseType($this->_propDict["response"]);
return $this->_propDict["response"];
}
}
return null;
} | Gets the response
The response type. Possible values are: none, organizer, tentativelyAccepted, accepted, declined, notResponded.To differentiate between none and notResponded: none – from organizer's perspective. This value is used when the status of an attendee/participant is reported to the organizer of a meeting. notResponded – from attendee's perspective. Indicates the attendee has not responded to the meeting request. Clients can treat notResponded == none. As an example, if attendee Alex hasn't responded to a meeting request, getting Alex' response status for that event in Alex' calendar returns notResponded. Getting Alex' response from the calendar of any other attendee or the organizer's returns none. Getting the organizer's response for the event in anybody's calendar also returns none.
@return ResponseType|null The response | getResponse | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ResponseStatus.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ResponseStatus.php | MIT |
public function setResponse($val)
{
$this->_propDict["response"] = $val;
return $this;
} | Sets the response
The response type. Possible values are: none, organizer, tentativelyAccepted, accepted, declined, notResponded.To differentiate between none and notResponded: none – from organizer's perspective. This value is used when the status of an attendee/participant is reported to the organizer of a meeting. notResponded – from attendee's perspective. Indicates the attendee has not responded to the meeting request. Clients can treat notResponded == none. As an example, if attendee Alex hasn't responded to a meeting request, getting Alex' response status for that event in Alex' calendar returns notResponded. Getting Alex' response from the calendar of any other attendee or the organizer's returns none. Getting the organizer's response for the event in anybody's calendar also returns none.
@param ResponseType $val The value to assign to the response
@return ResponseStatus The ResponseStatus | setResponse | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ResponseStatus.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ResponseStatus.php | MIT |
public function getTime()
{
if (array_key_exists("time", $this->_propDict)) {
if (is_a($this->_propDict["time"], "\DateTime") || is_null($this->_propDict["time"])) {
return $this->_propDict["time"];
} else {
$this->_propDict["time"] = new \DateTime($this->_propDict["time"]);
return $this->_propDict["time"];
}
}
return null;
} | Gets the time
The date and time that the response was returned. It uses 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 time | getTime | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ResponseStatus.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ResponseStatus.php | MIT |
public function setTime($val)
{
$this->_propDict["time"] = $val;
return $this;
} | Sets the time
The date and time that the response was returned. It uses ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z
@param \DateTime $val The value to assign to the time
@return ResponseStatus The ResponseStatus | setTime | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ResponseStatus.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ResponseStatus.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
The date and time when a compliance change was created.
@return \DateTime|null The createdDateTime | getCreatedDateTime | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/WindowsUpdates/Model/ComplianceChange.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/WindowsUpdates/Model/ComplianceChange.php | MIT |
public function setCreatedDateTime($val)
{
$this->_propDict["createdDateTime"] = $val;
return $this;
} | Sets the createdDateTime
The date and time when a compliance change was created.
@param \DateTime $val The createdDateTime
@return ComplianceChange | setCreatedDateTime | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/WindowsUpdates/Model/ComplianceChange.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/WindowsUpdates/Model/ComplianceChange.php | MIT |
public function getIsRevoked()
{
if (array_key_exists("isRevoked", $this->_propDict)) {
return $this->_propDict["isRevoked"];
} else {
return null;
}
} | Gets the isRevoked
True indicates that a compliance change is revoked, preventing further application. Revoking a compliance change is a final action.
@return bool|null The isRevoked | getIsRevoked | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/WindowsUpdates/Model/ComplianceChange.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/WindowsUpdates/Model/ComplianceChange.php | MIT |
public function setIsRevoked($val)
{
$this->_propDict["isRevoked"] = boolval($val);
return $this;
} | Sets the isRevoked
True indicates that a compliance change is revoked, preventing further application. Revoking a compliance change is a final action.
@param bool $val The isRevoked
@return ComplianceChange | setIsRevoked | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/WindowsUpdates/Model/ComplianceChange.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/WindowsUpdates/Model/ComplianceChange.php | MIT |
public function getRevokedDateTime()
{
if (array_key_exists("revokedDateTime", $this->_propDict)) {
if (is_a($this->_propDict["revokedDateTime"], "\DateTime") || is_null($this->_propDict["revokedDateTime"])) {
return $this->_propDict["revokedDateTime"];
} else {
$this->_propDict["revokedDateTime"] = new \DateTime($this->_propDict["revokedDateTime"]);
return $this->_propDict["revokedDateTime"];
}
}
return null;
} | Gets the revokedDateTime
The date and time when the compliance change was revoked.
@return \DateTime|null The revokedDateTime | getRevokedDateTime | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/WindowsUpdates/Model/ComplianceChange.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/WindowsUpdates/Model/ComplianceChange.php | MIT |
public function setRevokedDateTime($val)
{
$this->_propDict["revokedDateTime"] = $val;
return $this;
} | Sets the revokedDateTime
The date and time when the compliance change was revoked.
@param \DateTime $val The revokedDateTime
@return ComplianceChange | setRevokedDateTime | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/WindowsUpdates/Model/ComplianceChange.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/WindowsUpdates/Model/ComplianceChange.php | MIT |
public function getUpdatePolicy()
{
if (array_key_exists("updatePolicy", $this->_propDict)) {
if (is_a($this->_propDict["updatePolicy"], "\Beta\Microsoft\Graph\WindowsUpdates\Model\UpdatePolicy") || is_null($this->_propDict["updatePolicy"])) {
return $this->_propDict["updatePolicy"];
} else {
$this->_propDict["updatePolicy"] = new UpdatePolicy($this->_propDict["updatePolicy"]);
return $this->_propDict["updatePolicy"];
}
}
return null;
} | Gets the updatePolicy
The policy this compliance change is a member of.
@return UpdatePolicy|null The updatePolicy | getUpdatePolicy | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/WindowsUpdates/Model/ComplianceChange.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/WindowsUpdates/Model/ComplianceChange.php | MIT |
public function setUpdatePolicy($val)
{
$this->_propDict["updatePolicy"] = $val;
return $this;
} | Sets the updatePolicy
The policy this compliance change is a member of.
@param UpdatePolicy $val The updatePolicy
@return ComplianceChange | setUpdatePolicy | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/WindowsUpdates/Model/ComplianceChange.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/WindowsUpdates/Model/ComplianceChange.php | MIT |
public function getUrl()
{
if (array_key_exists("url", $this->_propDict)) {
return $this->_propDict["url"];
} else {
return null;
}
} | Gets the url
The endpoint that is used by Entitlement Management to communicate with the access package resource.
@return string|null The url | getUrl | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/ConnectionInfo.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/ConnectionInfo.php | MIT |
public function setUrl($val)
{
$this->_propDict["url"] = $val;
return $this;
} | Sets the url
The endpoint that is used by Entitlement Management to communicate with the access package resource.
@param string $val The value of the url
@return ConnectionInfo | setUrl | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/ConnectionInfo.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/ConnectionInfo.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
The timestamp of when the device compliance script was created. This property is read-only.
@return \DateTime|null The createdDateTime | getCreatedDateTime | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/DeviceComplianceScript.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/DeviceComplianceScript.php | MIT |
public function setCreatedDateTime($val)
{
$this->_propDict["createdDateTime"] = $val;
return $this;
} | Sets the createdDateTime
The timestamp of when the device compliance script was created. This property is read-only.
@param \DateTime $val The createdDateTime
@return DeviceComplianceScript | setCreatedDateTime | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/DeviceComplianceScript.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/DeviceComplianceScript.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 device compliance script
@return string|null The description | getDescription | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/DeviceComplianceScript.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/DeviceComplianceScript.php | MIT |
public function setDescription($val)
{
$this->_propDict["description"] = $val;
return $this;
} | Sets the description
Description of the device compliance script
@param string $val The description
@return DeviceComplianceScript | setDescription | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/DeviceComplianceScript.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/DeviceComplianceScript.php | MIT |
public function getDetectionScriptContent()
{
if (array_key_exists("detectionScriptContent", $this->_propDict)) {
if (is_a($this->_propDict["detectionScriptContent"], "\GuzzleHttp\Psr7\Stream") || is_null($this->_propDict["detectionScriptContent"])) {
return $this->_propDict["detectionScriptContent"];
} else {
$this->_propDict["detectionScriptContent"] = \GuzzleHttp\Psr7\Utils::streamFor($this->_propDict["detectionScriptContent"]);
return $this->_propDict["detectionScriptContent"];
}
}
return null;
} | Gets the detectionScriptContent
The entire content of the detection powershell script
@return \GuzzleHttp\Psr7\Stream|null The detectionScriptContent | getDetectionScriptContent | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/DeviceComplianceScript.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/DeviceComplianceScript.php | MIT |
public function setDetectionScriptContent($val)
{
$this->_propDict["detectionScriptContent"] = $val;
return $this;
} | Sets the detectionScriptContent
The entire content of the detection powershell script
@param \GuzzleHttp\Psr7\Stream $val The detectionScriptContent
@return DeviceComplianceScript | setDetectionScriptContent | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/DeviceComplianceScript.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/DeviceComplianceScript.php | MIT |
public function getDisplayName()
{
if (array_key_exists("displayName", $this->_propDict)) {
return $this->_propDict["displayName"];
} else {
return null;
}
} | Gets the displayName
Name of the device compliance script
@return string|null The displayName | getDisplayName | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/DeviceComplianceScript.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/DeviceComplianceScript.php | MIT |
public function setDisplayName($val)
{
$this->_propDict["displayName"] = $val;
return $this;
} | Sets the displayName
Name of the device compliance script
@param string $val The displayName
@return DeviceComplianceScript | setDisplayName | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/DeviceComplianceScript.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/DeviceComplianceScript.php | MIT |
public function getEnforceSignatureCheck()
{
if (array_key_exists("enforceSignatureCheck", $this->_propDict)) {
return $this->_propDict["enforceSignatureCheck"];
} else {
return null;
}
} | Gets the enforceSignatureCheck
Indicate whether the script signature needs be checked
@return bool|null The enforceSignatureCheck | getEnforceSignatureCheck | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/DeviceComplianceScript.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/DeviceComplianceScript.php | MIT |
public function setEnforceSignatureCheck($val)
{
$this->_propDict["enforceSignatureCheck"] = boolval($val);
return $this;
} | Sets the enforceSignatureCheck
Indicate whether the script signature needs be checked
@param bool $val The enforceSignatureCheck
@return DeviceComplianceScript | setEnforceSignatureCheck | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/DeviceComplianceScript.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/DeviceComplianceScript.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
The timestamp of when the device compliance script was modified. This property is read-only.
@return \DateTime|null The lastModifiedDateTime | getLastModifiedDateTime | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/DeviceComplianceScript.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/DeviceComplianceScript.php | MIT |
public function setLastModifiedDateTime($val)
{
$this->_propDict["lastModifiedDateTime"] = $val;
return $this;
} | Sets the lastModifiedDateTime
The timestamp of when the device compliance script was modified. This property is read-only.
@param \DateTime $val The lastModifiedDateTime
@return DeviceComplianceScript | setLastModifiedDateTime | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/DeviceComplianceScript.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/DeviceComplianceScript.php | MIT |
public function getPublisher()
{
if (array_key_exists("publisher", $this->_propDict)) {
return $this->_propDict["publisher"];
} else {
return null;
}
} | Gets the publisher
Name of the device compliance script publisher
@return string|null The publisher | getPublisher | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/DeviceComplianceScript.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/DeviceComplianceScript.php | MIT |
public function setPublisher($val)
{
$this->_propDict["publisher"] = $val;
return $this;
} | Sets the publisher
Name of the device compliance script publisher
@param string $val The publisher
@return DeviceComplianceScript | setPublisher | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/DeviceComplianceScript.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/DeviceComplianceScript.php | MIT |
public function getRoleScopeTagIds()
{
if (array_key_exists("roleScopeTagIds", $this->_propDict)) {
return $this->_propDict["roleScopeTagIds"];
} else {
return null;
}
} | Gets the roleScopeTagIds
List of Scope Tag IDs for the device compliance script
@return array|null The roleScopeTagIds | getRoleScopeTagIds | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/DeviceComplianceScript.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/DeviceComplianceScript.php | MIT |
public function setRoleScopeTagIds($val)
{
$this->_propDict["roleScopeTagIds"] = $val;
return $this;
} | Sets the roleScopeTagIds
List of Scope Tag IDs for the device compliance script
@param string[] $val The roleScopeTagIds
@return DeviceComplianceScript | setRoleScopeTagIds | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/DeviceComplianceScript.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/DeviceComplianceScript.php | MIT |
public function getRunAs32Bit()
{
if (array_key_exists("runAs32Bit", $this->_propDict)) {
return $this->_propDict["runAs32Bit"];
} else {
return null;
}
} | Gets the runAs32Bit
Indicate whether PowerShell script(s) should run as 32-bit
@return bool|null The runAs32Bit | getRunAs32Bit | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/DeviceComplianceScript.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/DeviceComplianceScript.php | MIT |
public function setRunAs32Bit($val)
{
$this->_propDict["runAs32Bit"] = boolval($val);
return $this;
} | Sets the runAs32Bit
Indicate whether PowerShell script(s) should run as 32-bit
@param bool $val The runAs32Bit
@return DeviceComplianceScript | setRunAs32Bit | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/DeviceComplianceScript.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/DeviceComplianceScript.php | MIT |
public function getRunAsAccount()
{
if (array_key_exists("runAsAccount", $this->_propDict)) {
if (is_a($this->_propDict["runAsAccount"], "\Beta\Microsoft\Graph\Model\RunAsAccountType") || is_null($this->_propDict["runAsAccount"])) {
return $this->_propDict["runAsAccount"];
} else {
$this->_propDict["runAsAccount"] = new RunAsAccountType($this->_propDict["runAsAccount"]);
return $this->_propDict["runAsAccount"];
}
}
return null;
} | Gets the runAsAccount
Indicates the type of execution context. Possible values are: system, user.
@return RunAsAccountType|null The runAsAccount | getRunAsAccount | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/DeviceComplianceScript.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/DeviceComplianceScript.php | MIT |
public function setRunAsAccount($val)
{
$this->_propDict["runAsAccount"] = $val;
return $this;
} | Sets the runAsAccount
Indicates the type of execution context. Possible values are: system, user.
@param RunAsAccountType $val The runAsAccount
@return DeviceComplianceScript | setRunAsAccount | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/DeviceComplianceScript.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/DeviceComplianceScript.php | MIT |
public function getVersion()
{
if (array_key_exists("version", $this->_propDict)) {
return $this->_propDict["version"];
} else {
return null;
}
} | Gets the version
Version of the device compliance script
@return string|null The version | getVersion | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/DeviceComplianceScript.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/DeviceComplianceScript.php | MIT |
public function setVersion($val)
{
$this->_propDict["version"] = $val;
return $this;
} | Sets the version
Version of the device compliance script
@param string $val The version
@return DeviceComplianceScript | setVersion | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/DeviceComplianceScript.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/DeviceComplianceScript.php | MIT |
public function getAssignments()
{
if (array_key_exists("assignments", $this->_propDict)) {
return $this->_propDict["assignments"];
} else {
return null;
}
} | Gets the assignments
The list of group assignments for the device compliance script
@return array|null The assignments | getAssignments | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/DeviceComplianceScript.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/DeviceComplianceScript.php | MIT |
public function setAssignments($val)
{
$this->_propDict["assignments"] = $val;
return $this;
} | Sets the assignments
The list of group assignments for the device compliance script
@param DeviceHealthScriptAssignment[] $val The assignments
@return DeviceComplianceScript | setAssignments | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/DeviceComplianceScript.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/DeviceComplianceScript.php | MIT |
public function getDeviceRunStates()
{
if (array_key_exists("deviceRunStates", $this->_propDict)) {
return $this->_propDict["deviceRunStates"];
} else {
return null;
}
} | Gets the deviceRunStates
List of run states for the device compliance script across all devices
@return array|null The deviceRunStates | getDeviceRunStates | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/DeviceComplianceScript.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/DeviceComplianceScript.php | MIT |
public function setDeviceRunStates($val)
{
$this->_propDict["deviceRunStates"] = $val;
return $this;
} | Sets the deviceRunStates
List of run states for the device compliance script across all devices
@param DeviceComplianceScriptDeviceState[] $val The deviceRunStates
@return DeviceComplianceScript | setDeviceRunStates | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/DeviceComplianceScript.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/DeviceComplianceScript.php | MIT |
public function getRunSummary()
{
if (array_key_exists("runSummary", $this->_propDict)) {
if (is_a($this->_propDict["runSummary"], "\Beta\Microsoft\Graph\Model\DeviceComplianceScriptRunSummary") || is_null($this->_propDict["runSummary"])) {
return $this->_propDict["runSummary"];
} else {
$this->_propDict["runSummary"] = new DeviceComplianceScriptRunSummary($this->_propDict["runSummary"]);
return $this->_propDict["runSummary"];
}
}
return null;
} | Gets the runSummary
High level run summary for device compliance script.
@return DeviceComplianceScriptRunSummary|null The runSummary | getRunSummary | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/DeviceComplianceScript.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/DeviceComplianceScript.php | MIT |
public function setRunSummary($val)
{
$this->_propDict["runSummary"] = $val;
return $this;
} | Sets the runSummary
High level run summary for device compliance script.
@param DeviceComplianceScriptRunSummary $val The runSummary
@return DeviceComplianceScript | setRunSummary | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/DeviceComplianceScript.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/DeviceComplianceScript.php | MIT |
public function getPhoneNumber()
{
if (array_key_exists("phoneNumber", $this->_propDict)) {
return $this->_propDict["phoneNumber"];
} else {
return null;
}
} | Gets the phoneNumber
The phone number to text or call for authentication. Phone numbers use the format '+<country code> <number>x<extension>', with extension optional. For example, +1 5555551234 or +1 5555551234x123 are valid. Numbers are rejected when creating/updating if they do not match the required format.
@return string|null The phoneNumber | getPhoneNumber | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/PhoneAuthenticationMethod.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/PhoneAuthenticationMethod.php | MIT |
public function setPhoneNumber($val)
{
$this->_propDict["phoneNumber"] = $val;
return $this;
} | Sets the phoneNumber
The phone number to text or call for authentication. Phone numbers use the format '+<country code> <number>x<extension>', with extension optional. For example, +1 5555551234 or +1 5555551234x123 are valid. Numbers are rejected when creating/updating if they do not match the required format.
@param string $val The phoneNumber
@return PhoneAuthenticationMethod | setPhoneNumber | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/PhoneAuthenticationMethod.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/PhoneAuthenticationMethod.php | MIT |
public function getPhoneType()
{
if (array_key_exists("phoneType", $this->_propDict)) {
if (is_a($this->_propDict["phoneType"], "\Beta\Microsoft\Graph\Model\AuthenticationPhoneType") || is_null($this->_propDict["phoneType"])) {
return $this->_propDict["phoneType"];
} else {
$this->_propDict["phoneType"] = new AuthenticationPhoneType($this->_propDict["phoneType"]);
return $this->_propDict["phoneType"];
}
}
return null;
} | Gets the phoneType
The type of this phone. Possible values are: mobile, alternateMobile, or office.
@return AuthenticationPhoneType|null The phoneType | getPhoneType | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/PhoneAuthenticationMethod.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/PhoneAuthenticationMethod.php | MIT |
public function setPhoneType($val)
{
$this->_propDict["phoneType"] = $val;
return $this;
} | Sets the phoneType
The type of this phone. Possible values are: mobile, alternateMobile, or office.
@param AuthenticationPhoneType $val The phoneType
@return PhoneAuthenticationMethod | setPhoneType | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/PhoneAuthenticationMethod.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/PhoneAuthenticationMethod.php | MIT |
public function getSmsSignInState()
{
if (array_key_exists("smsSignInState", $this->_propDict)) {
if (is_a($this->_propDict["smsSignInState"], "\Beta\Microsoft\Graph\Model\AuthenticationMethodSignInState") || is_null($this->_propDict["smsSignInState"])) {
return $this->_propDict["smsSignInState"];
} else {
$this->_propDict["smsSignInState"] = new AuthenticationMethodSignInState($this->_propDict["smsSignInState"]);
return $this->_propDict["smsSignInState"];
}
}
return null;
} | Gets the smsSignInState
Whether a phone is ready to be used for SMS sign-in or not. Possible values are: notSupported, notAllowedByPolicy, notEnabled, phoneNumberNotUnique, ready, or notConfigured, unknownFutureValue.
@return AuthenticationMethodSignInState|null The smsSignInState | getSmsSignInState | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/PhoneAuthenticationMethod.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/PhoneAuthenticationMethod.php | MIT |
public function setSmsSignInState($val)
{
$this->_propDict["smsSignInState"] = $val;
return $this;
} | Sets the smsSignInState
Whether a phone is ready to be used for SMS sign-in or not. Possible values are: notSupported, notAllowedByPolicy, notEnabled, phoneNumberNotUnique, ready, or notConfigured, unknownFutureValue.
@param AuthenticationMethodSignInState $val The smsSignInState
@return PhoneAuthenticationMethod | setSmsSignInState | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/PhoneAuthenticationMethod.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/PhoneAuthenticationMethod.php | MIT |
public function getIsVisibleOnlyToOneDriveOwner()
{
if (array_key_exists("isVisibleOnlyToOneDriveOwner", $this->_propDict)) {
return $this->_propDict["isVisibleOnlyToOneDriveOwner"];
} else {
return null;
}
} | Gets the isVisibleOnlyToOneDriveOwner
@return bool|null The isVisibleOnlyToOneDriveOwner | getIsVisibleOnlyToOneDriveOwner | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/FileContentProperties.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/FileContentProperties.php | MIT |
public function setIsVisibleOnlyToOneDriveOwner($val)
{
$this->_propDict["isVisibleOnlyToOneDriveOwner"] = $val;
return $this;
} | Sets the isVisibleOnlyToOneDriveOwner
@param bool $val The value of the isVisibleOnlyToOneDriveOwner
@return FileContentProperties | setIsVisibleOnlyToOneDriveOwner | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/FileContentProperties.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/FileContentProperties.php | MIT |
public function getAccountEnabled()
{
if (array_key_exists("accountEnabled", $this->_propDict)) {
return $this->_propDict["accountEnabled"];
} else {
return null;
}
} | Gets the accountEnabled
true if the account is enabled; otherwise, false. Default is true. Supports $filter (eq, ne, not, in). Only callers in Global Administrator and Cloud Device Administrator roles can set this property.
@return bool|null The accountEnabled | getAccountEnabled | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Device.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Device.php | MIT |
public function setAccountEnabled($val)
{
$this->_propDict["accountEnabled"] = boolval($val);
return $this;
} | Sets the accountEnabled
true if the account is enabled; otherwise, false. Default is true. Supports $filter (eq, ne, not, in). Only callers in Global Administrator and Cloud Device Administrator roles can set this property.
@param bool $val The accountEnabled
@return Device | setAccountEnabled | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Device.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Device.php | MIT |
public function getAlternativeSecurityIds()
{
if (array_key_exists("alternativeSecurityIds", $this->_propDict)) {
return $this->_propDict["alternativeSecurityIds"];
} else {
return null;
}
} | Gets the alternativeSecurityIds
For internal use only. Not nullable. Supports $filter (eq, not, ge, le).
@return array|null The alternativeSecurityIds | getAlternativeSecurityIds | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Device.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Device.php | MIT |
public function setAlternativeSecurityIds($val)
{
$this->_propDict["alternativeSecurityIds"] = $val;
return $this;
} | Sets the alternativeSecurityIds
For internal use only. Not nullable. Supports $filter (eq, not, ge, le).
@param AlternativeSecurityId[] $val The alternativeSecurityIds
@return Device | setAlternativeSecurityIds | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Device.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Device.php | MIT |
public function getApproximateLastSignInDateTime()
{
if (array_key_exists("approximateLastSignInDateTime", $this->_propDict)) {
if (is_a($this->_propDict["approximateLastSignInDateTime"], "\DateTime") || is_null($this->_propDict["approximateLastSignInDateTime"])) {
return $this->_propDict["approximateLastSignInDateTime"];
} else {
$this->_propDict["approximateLastSignInDateTime"] = new \DateTime($this->_propDict["approximateLastSignInDateTime"]);
return $this->_propDict["approximateLastSignInDateTime"];
}
}
return null;
} | Gets the approximateLastSignInDateTime
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. Read-only. Supports $filter (eq, ne, not, ge, le, and eq on null values) and $orderBy.
@return \DateTime|null The approximateLastSignInDateTime | getApproximateLastSignInDateTime | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Device.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Device.php | MIT |
public function setApproximateLastSignInDateTime($val)
{
$this->_propDict["approximateLastSignInDateTime"] = $val;
return $this;
} | Sets the approximateLastSignInDateTime
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. Read-only. Supports $filter (eq, ne, not, ge, le, and eq on null values) and $orderBy.
@param \DateTime $val The approximateLastSignInDateTime
@return Device | setApproximateLastSignInDateTime | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Device.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Device.php | MIT |
public function getComplianceExpirationDateTime()
{
if (array_key_exists("complianceExpirationDateTime", $this->_propDict)) {
if (is_a($this->_propDict["complianceExpirationDateTime"], "\DateTime") || is_null($this->_propDict["complianceExpirationDateTime"])) {
return $this->_propDict["complianceExpirationDateTime"];
} else {
$this->_propDict["complianceExpirationDateTime"] = new \DateTime($this->_propDict["complianceExpirationDateTime"]);
return $this->_propDict["complianceExpirationDateTime"];
}
}
return null;
} | Gets the complianceExpirationDateTime
The timestamp when the device is no longer deemed compliant. 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. Read-only.
@return \DateTime|null The complianceExpirationDateTime | getComplianceExpirationDateTime | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Device.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Device.php | MIT |
public function setComplianceExpirationDateTime($val)
{
$this->_propDict["complianceExpirationDateTime"] = $val;
return $this;
} | Sets the complianceExpirationDateTime
The timestamp when the device is no longer deemed compliant. 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. Read-only.
@param \DateTime $val The complianceExpirationDateTime
@return Device | setComplianceExpirationDateTime | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Device.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Device.php | MIT |
public function getDeviceCategory()
{
if (array_key_exists("deviceCategory", $this->_propDict)) {
return $this->_propDict["deviceCategory"];
} else {
return null;
}
} | Gets the deviceCategory
User-defined property set by Intune to automatically add devices to groups and simplify managing devices.
@return string|null The deviceCategory | getDeviceCategory | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Device.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Device.php | MIT |
public function setDeviceCategory($val)
{
$this->_propDict["deviceCategory"] = $val;
return $this;
} | Sets the deviceCategory
User-defined property set by Intune to automatically add devices to groups and simplify managing devices.
@param string $val The deviceCategory
@return Device | setDeviceCategory | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Device.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Device.php | MIT |
public function getDeviceId()
{
if (array_key_exists("deviceId", $this->_propDict)) {
return $this->_propDict["deviceId"];
} else {
return null;
}
} | Gets the deviceId
Unique Identifier set by Azure Device Registration Service at the time of registration. This is an alternate key that can be used to reference the device object. Also Supports $filter (eq, ne, not, startsWith).
@return string|null The deviceId | getDeviceId | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Device.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Device.php | MIT |
public function setDeviceId($val)
{
$this->_propDict["deviceId"] = $val;
return $this;
} | Sets the deviceId
Unique Identifier set by Azure Device Registration Service at the time of registration. This is an alternate key that can be used to reference the device object. Also Supports $filter (eq, ne, not, startsWith).
@param string $val The deviceId
@return Device | setDeviceId | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Device.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Device.php | MIT |
public function getDeviceMetadata()
{
if (array_key_exists("deviceMetadata", $this->_propDict)) {
return $this->_propDict["deviceMetadata"];
} else {
return null;
}
} | Gets the deviceMetadata
For internal use only. Set to null.
@return string|null The deviceMetadata | getDeviceMetadata | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Device.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Device.php | MIT |
public function setDeviceMetadata($val)
{
$this->_propDict["deviceMetadata"] = $val;
return $this;
} | Sets the deviceMetadata
For internal use only. Set to null.
@param string $val The deviceMetadata
@return Device | setDeviceMetadata | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Device.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Device.php | MIT |
public function getDeviceOwnership()
{
if (array_key_exists("deviceOwnership", $this->_propDict)) {
return $this->_propDict["deviceOwnership"];
} else {
return null;
}
} | Gets the deviceOwnership
Ownership of the device. This property is set by Intune. Possible values are: unknown, company, personal.
@return string|null The deviceOwnership | getDeviceOwnership | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Device.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Device.php | MIT |
public function setDeviceOwnership($val)
{
$this->_propDict["deviceOwnership"] = $val;
return $this;
} | Sets the deviceOwnership
Ownership of the device. This property is set by Intune. Possible values are: unknown, company, personal.
@param string $val The deviceOwnership
@return Device | setDeviceOwnership | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Device.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Device.php | MIT |
public function getDeviceVersion()
{
if (array_key_exists("deviceVersion", $this->_propDict)) {
return $this->_propDict["deviceVersion"];
} else {
return null;
}
} | Gets the deviceVersion
For internal use only.
@return int|null The deviceVersion | getDeviceVersion | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Device.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Device.php | MIT |
public function setDeviceVersion($val)
{
$this->_propDict["deviceVersion"] = intval($val);
return $this;
} | Sets the deviceVersion
For internal use only.
@param int $val The deviceVersion
@return Device | setDeviceVersion | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Device.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Device.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 for the device. Required. Supports $filter (eq, ne, not, ge, le, in, startsWith, and eq on null values), $search, and $orderBy.
@return string|null The displayName | getDisplayName | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Device.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Device.php | MIT |
public function setDisplayName($val)
{
$this->_propDict["displayName"] = $val;
return $this;
} | Sets the displayName
The display name for the device. Required. Supports $filter (eq, ne, not, ge, le, in, startsWith, and eq on null values), $search, and $orderBy.
@param string $val The displayName
@return Device | setDisplayName | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Device.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Device.php | MIT |
public function getDomainName()
{
if (array_key_exists("domainName", $this->_propDict)) {
return $this->_propDict["domainName"];
} else {
return null;
}
} | Gets the domainName
The on-premises domain name of Hybrid Azure AD joined devices. This property is set by Intune.
@return string|null The domainName | getDomainName | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Device.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Device.php | MIT |
public function setDomainName($val)
{
$this->_propDict["domainName"] = $val;
return $this;
} | Sets the domainName
The on-premises domain name of Hybrid Azure AD joined devices. This property is set by Intune.
@param string $val The domainName
@return Device | setDomainName | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Device.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Device.php | MIT |
public function getEnrollmentProfileName()
{
if (array_key_exists("enrollmentProfileName", $this->_propDict)) {
return $this->_propDict["enrollmentProfileName"];
} else {
return null;
}
} | Gets the enrollmentProfileName
Enrollment profile applied to the device. For example, Apple Device Enrollment Profile, Device enrollment - Corporate device identifiers, or Windows Autopilot profile name. This property is set by Intune.
@return string|null The enrollmentProfileName | getEnrollmentProfileName | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Device.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Device.php | MIT |
public function setEnrollmentProfileName($val)
{
$this->_propDict["enrollmentProfileName"] = $val;
return $this;
} | Sets the enrollmentProfileName
Enrollment profile applied to the device. For example, Apple Device Enrollment Profile, Device enrollment - Corporate device identifiers, or Windows Autopilot profile name. This property is set by Intune.
@param string $val The enrollmentProfileName
@return Device | setEnrollmentProfileName | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Device.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Device.php | MIT |
public function getEnrollmentType()
{
if (array_key_exists("enrollmentType", $this->_propDict)) {
return $this->_propDict["enrollmentType"];
} else {
return null;
}
} | Gets the enrollmentType
Enrollment type of the device. This property is set by Intune. Possible values are: unknown, userEnrollment, deviceEnrollmentManager, appleBulkWithUser, appleBulkWithoutUser, windowsAzureADJoin, windowsBulkUserless, windowsAutoEnrollment, windowsBulkAzureDomainJoin, windowsCoManagement.
@return string|null The enrollmentType | getEnrollmentType | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Device.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Device.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.