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 getLastModifiedDateTime()
{
if (array_key_exists("lastModifiedDateTime", $this->_propDict)) {
if (is_a($this->_propDict["lastModifiedDateTime"], "\DateTime") || is_null($this->_propDict["lastModifiedDateTime"])) {
return $this->_propDict["lastModifiedDateTime"];
} else {
$this->_propDict["lastModifiedDateTime"] = new \DateTime($this->_propDict["lastModifiedDateTime"]);
return $this->_propDict["lastModifiedDateTime"];
}
}
return null;
} | Gets the lastModifiedDateTime
Date and time the item was last modified. Read-only.
@return \DateTime|null The lastModifiedDateTime | getLastModifiedDateTime | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/RemoteItem.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/RemoteItem.php | MIT |
public function setLastModifiedDateTime($val)
{
$this->_propDict["lastModifiedDateTime"] = $val;
return $this;
} | Sets the lastModifiedDateTime
Date and time the item was last modified. Read-only.
@param \DateTime $val The value to assign to the lastModifiedDateTime
@return RemoteItem The RemoteItem | setLastModifiedDateTime | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/RemoteItem.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/RemoteItem.php | MIT |
public function getName()
{
if (array_key_exists("name", $this->_propDict)) {
return $this->_propDict["name"];
} else {
return null;
}
} | Gets the name
Optional. Filename of the remote item. Read-only.
@return string|null The name | getName | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/RemoteItem.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/RemoteItem.php | MIT |
public function setName($val)
{
$this->_propDict["name"] = $val;
return $this;
} | Sets the name
Optional. Filename of the remote item. Read-only.
@param string $val The value of the name
@return RemoteItem | setName | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/RemoteItem.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/RemoteItem.php | MIT |
public function getPackage()
{
if (array_key_exists("package", $this->_propDict)) {
if (is_a($this->_propDict["package"], "\Microsoft\Graph\Model\Package") || is_null($this->_propDict["package"])) {
return $this->_propDict["package"];
} else {
$this->_propDict["package"] = new Package($this->_propDict["package"]);
return $this->_propDict["package"];
}
}
return null;
} | Gets the package
If present, indicates that this item is a package instead of a folder or file. Packages are treated like files in some contexts and folders in others. Read-only.
@return Package|null The package | getPackage | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/RemoteItem.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/RemoteItem.php | MIT |
public function setPackage($val)
{
$this->_propDict["package"] = $val;
return $this;
} | Sets the package
If present, indicates that this item is a package instead of a folder or file. Packages are treated like files in some contexts and folders in others. Read-only.
@param Package $val The value to assign to the package
@return RemoteItem The RemoteItem | setPackage | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/RemoteItem.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/RemoteItem.php | MIT |
public function getParentReference()
{
if (array_key_exists("parentReference", $this->_propDict)) {
if (is_a($this->_propDict["parentReference"], "\Microsoft\Graph\Model\ItemReference") || is_null($this->_propDict["parentReference"])) {
return $this->_propDict["parentReference"];
} else {
$this->_propDict["parentReference"] = new ItemReference($this->_propDict["parentReference"]);
return $this->_propDict["parentReference"];
}
}
return null;
} | Gets the parentReference
Properties of the parent of the remote item. Read-only.
@return ItemReference|null The parentReference | getParentReference | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/RemoteItem.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/RemoteItem.php | MIT |
public function setParentReference($val)
{
$this->_propDict["parentReference"] = $val;
return $this;
} | Sets the parentReference
Properties of the parent of the remote item. Read-only.
@param ItemReference $val The value to assign to the parentReference
@return RemoteItem The RemoteItem | setParentReference | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/RemoteItem.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/RemoteItem.php | MIT |
public function getShared()
{
if (array_key_exists("shared", $this->_propDict)) {
if (is_a($this->_propDict["shared"], "\Microsoft\Graph\Model\Shared") || is_null($this->_propDict["shared"])) {
return $this->_propDict["shared"];
} else {
$this->_propDict["shared"] = new Shared($this->_propDict["shared"]);
return $this->_propDict["shared"];
}
}
return null;
} | Gets the shared
Indicates that the item has been shared with others and provides information about the shared state of the item. Read-only.
@return Shared|null The shared | getShared | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/RemoteItem.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/RemoteItem.php | MIT |
public function setShared($val)
{
$this->_propDict["shared"] = $val;
return $this;
} | Sets the shared
Indicates that the item has been shared with others and provides information about the shared state of the item. Read-only.
@param Shared $val The value to assign to the shared
@return RemoteItem The RemoteItem | setShared | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/RemoteItem.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/RemoteItem.php | MIT |
public function getSharepointIds()
{
if (array_key_exists("sharepointIds", $this->_propDict)) {
if (is_a($this->_propDict["sharepointIds"], "\Microsoft\Graph\Model\SharepointIds") || is_null($this->_propDict["sharepointIds"])) {
return $this->_propDict["sharepointIds"];
} else {
$this->_propDict["sharepointIds"] = new SharepointIds($this->_propDict["sharepointIds"]);
return $this->_propDict["sharepointIds"];
}
}
return null;
} | Gets the sharepointIds
Provides interop between items in OneDrive for Business and SharePoint with the full set of item identifiers. Read-only.
@return SharepointIds|null The sharepointIds | getSharepointIds | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/RemoteItem.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/RemoteItem.php | MIT |
public function setSharepointIds($val)
{
$this->_propDict["sharepointIds"] = $val;
return $this;
} | Sets the sharepointIds
Provides interop between items in OneDrive for Business and SharePoint with the full set of item identifiers. Read-only.
@param SharepointIds $val The value to assign to the sharepointIds
@return RemoteItem The RemoteItem | setSharepointIds | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/RemoteItem.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/RemoteItem.php | MIT |
public function getSize()
{
if (array_key_exists("size", $this->_propDict)) {
return $this->_propDict["size"];
} else {
return null;
}
} | Gets the size
Size of the remote item. Read-only.
@return int|null The size | getSize | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/RemoteItem.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/RemoteItem.php | MIT |
public function setSize($val)
{
$this->_propDict["size"] = $val;
return $this;
} | Sets the size
Size of the remote item. Read-only.
@param int $val The value of the size
@return RemoteItem | setSize | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/RemoteItem.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/RemoteItem.php | MIT |
public function getSpecialFolder()
{
if (array_key_exists("specialFolder", $this->_propDict)) {
if (is_a($this->_propDict["specialFolder"], "\Microsoft\Graph\Model\SpecialFolder") || is_null($this->_propDict["specialFolder"])) {
return $this->_propDict["specialFolder"];
} else {
$this->_propDict["specialFolder"] = new SpecialFolder($this->_propDict["specialFolder"]);
return $this->_propDict["specialFolder"];
}
}
return null;
} | Gets the specialFolder
If the current item is also available as a special folder, this facet is returned. Read-only.
@return SpecialFolder|null The specialFolder | getSpecialFolder | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/RemoteItem.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/RemoteItem.php | MIT |
public function setSpecialFolder($val)
{
$this->_propDict["specialFolder"] = $val;
return $this;
} | Sets the specialFolder
If the current item is also available as a special folder, this facet is returned. Read-only.
@param SpecialFolder $val The value to assign to the specialFolder
@return RemoteItem The RemoteItem | setSpecialFolder | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/RemoteItem.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/RemoteItem.php | MIT |
public function getVideo()
{
if (array_key_exists("video", $this->_propDict)) {
if (is_a($this->_propDict["video"], "\Microsoft\Graph\Model\Video") || is_null($this->_propDict["video"])) {
return $this->_propDict["video"];
} else {
$this->_propDict["video"] = new Video($this->_propDict["video"]);
return $this->_propDict["video"];
}
}
return null;
} | Gets the video
Video metadata, if the item is a video. Read-only.
@return Video|null The video | getVideo | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/RemoteItem.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/RemoteItem.php | MIT |
public function setVideo($val)
{
$this->_propDict["video"] = $val;
return $this;
} | Sets the video
Video metadata, if the item is a video. Read-only.
@param Video $val The value to assign to the video
@return RemoteItem The RemoteItem | setVideo | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/RemoteItem.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/RemoteItem.php | MIT |
public function getWebDavUrl()
{
if (array_key_exists("webDavUrl", $this->_propDict)) {
return $this->_propDict["webDavUrl"];
} else {
return null;
}
} | Gets the webDavUrl
DAV compatible URL for the item.
@return string|null The webDavUrl | getWebDavUrl | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/RemoteItem.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/RemoteItem.php | MIT |
public function setWebDavUrl($val)
{
$this->_propDict["webDavUrl"] = $val;
return $this;
} | Sets the webDavUrl
DAV compatible URL for the item.
@param string $val The value of the webDavUrl
@return RemoteItem | setWebDavUrl | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/RemoteItem.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/RemoteItem.php | MIT |
public function getWebUrl()
{
if (array_key_exists("webUrl", $this->_propDict)) {
return $this->_propDict["webUrl"];
} else {
return null;
}
} | Gets the webUrl
URL that displays the resource in the browser. Read-only.
@return string|null The webUrl | getWebUrl | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/RemoteItem.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/RemoteItem.php | MIT |
public function setWebUrl($val)
{
$this->_propDict["webUrl"] = $val;
return $this;
} | Sets the webUrl
URL that displays the resource in the browser. Read-only.
@param string $val The value of the webUrl
@return RemoteItem | setWebUrl | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/RemoteItem.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/RemoteItem.php | MIT |
protected function isResponseOk()
{
$status = $this->rawResponse->status;
if ((int)(intval($status) / 100) == 2 || (int)(intval($status)) === 404) {
return true;
}
return false;
} | Check if the response status is OK according to the http status code.
[200-299]: OK; [404]: Not found. It means the object or bucket is not found--it's a valid response too.
@return bool | isResponseOk | php | xiebruce/PicUploader | vendor/aliyuncs/oss-sdk-php/src/OSS/Result/ExistResult.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/aliyuncs/oss-sdk-php/src/OSS/Result/ExistResult.php | MIT |
public function onBeforeSend(Event $event)
{
// Ensure that progress callbacks are dispatched
$event['request']->getCurlOptions()->set('progress', true);
} | Event used to ensure that progress callback are emitted from the curl handle's request mediator.
@param Event $event | onBeforeSend | php | xiebruce/PicUploader | vendor/guzzle/guzzle/src/Guzzle/Plugin/Async/AsyncPlugin.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/guzzle/guzzle/src/Guzzle/Plugin/Async/AsyncPlugin.php | MIT |
public function onCurlProgress(Event $event)
{
if ($event['handle'] &&
($event['downloaded'] || (isset($event['uploaded']) && $event['upload_size'] === $event['uploaded']))
) {
// Timeout after 1ms
curl_setopt($event['handle'], CURLOPT_TIMEOUT_MS, 1);
// Even if the response is quick, tell curl not to download the body.
// - Note that we can only perform this shortcut if the request transmitted a body so as to ensure that the
// request method is not converted to a HEAD request before the request was sent via curl.
if ($event['uploaded']) {
curl_setopt($event['handle'], CURLOPT_NOBODY, true);
}
}
} | Event emitted when a curl progress function is called. When the amount of data uploaded == the amount of data to
upload OR any bytes have been downloaded, then time the request out after 1ms because we're done with
transmitting the request, and tell curl not download a body.
@param Event $event | onCurlProgress | php | xiebruce/PicUploader | vendor/guzzle/guzzle/src/Guzzle/Plugin/Async/AsyncPlugin.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/guzzle/guzzle/src/Guzzle/Plugin/Async/AsyncPlugin.php | MIT |
public function onRequestTimeout(Event $event)
{
if ($event['exception'] instanceof CurlException) {
$event['request']->setResponse(new Response(200, array(
'X-Guzzle-Async' => 'Did not wait for the response'
)));
}
} | Event emitted when a curl exception occurs. Ignore the exception and set a mock response.
@param Event $event | onRequestTimeout | php | xiebruce/PicUploader | vendor/guzzle/guzzle/src/Guzzle/Plugin/Async/AsyncPlugin.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/guzzle/guzzle/src/Guzzle/Plugin/Async/AsyncPlugin.php | MIT |
public function onRequestSent(Event $event)
{
// Let the caller know this was meant to be async
$event['request']->getResponse()->setHeader('X-Guzzle-Async', 'Did not wait for the response');
} | Event emitted when a request completes because it took less than 1ms. Add an X-Guzzle-Async header to notify the
caller that there is no body in the message.
@param Event $event | onRequestSent | php | xiebruce/PicUploader | vendor/guzzle/guzzle/src/Guzzle/Plugin/Async/AsyncPlugin.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/guzzle/guzzle/src/Guzzle/Plugin/Async/AsyncPlugin.php | MIT |
public function getCertificateEnhancedKeyUsage()
{
if (array_key_exists("certificateEnhancedKeyUsage", $this->_propDict)) {
return $this->_propDict["certificateEnhancedKeyUsage"];
} else {
return null;
}
} | Gets the certificateEnhancedKeyUsage
Extended key usage
@return string|null The certificateEnhancedKeyUsage | getCertificateEnhancedKeyUsage | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ManagedDeviceCertificateState.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ManagedDeviceCertificateState.php | MIT |
public function setCertificateEnhancedKeyUsage($val)
{
$this->_propDict["certificateEnhancedKeyUsage"] = $val;
return $this;
} | Sets the certificateEnhancedKeyUsage
Extended key usage
@param string $val The certificateEnhancedKeyUsage
@return ManagedDeviceCertificateState | setCertificateEnhancedKeyUsage | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ManagedDeviceCertificateState.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ManagedDeviceCertificateState.php | MIT |
public function getCertificateErrorCode()
{
if (array_key_exists("certificateErrorCode", $this->_propDict)) {
return $this->_propDict["certificateErrorCode"];
} else {
return null;
}
} | Gets the certificateErrorCode
Error code
@return int|null The certificateErrorCode | getCertificateErrorCode | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ManagedDeviceCertificateState.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ManagedDeviceCertificateState.php | MIT |
public function setCertificateErrorCode($val)
{
$this->_propDict["certificateErrorCode"] = intval($val);
return $this;
} | Sets the certificateErrorCode
Error code
@param int $val The certificateErrorCode
@return ManagedDeviceCertificateState | setCertificateErrorCode | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ManagedDeviceCertificateState.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ManagedDeviceCertificateState.php | MIT |
public function getCertificateExpirationDateTime()
{
if (array_key_exists("certificateExpirationDateTime", $this->_propDict)) {
if (is_a($this->_propDict["certificateExpirationDateTime"], "\DateTime") || is_null($this->_propDict["certificateExpirationDateTime"])) {
return $this->_propDict["certificateExpirationDateTime"];
} else {
$this->_propDict["certificateExpirationDateTime"] = new \DateTime($this->_propDict["certificateExpirationDateTime"]);
return $this->_propDict["certificateExpirationDateTime"];
}
}
return null;
} | Gets the certificateExpirationDateTime
Certificate expiry date
@return \DateTime|null The certificateExpirationDateTime | getCertificateExpirationDateTime | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ManagedDeviceCertificateState.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ManagedDeviceCertificateState.php | MIT |
public function setCertificateExpirationDateTime($val)
{
$this->_propDict["certificateExpirationDateTime"] = $val;
return $this;
} | Sets the certificateExpirationDateTime
Certificate expiry date
@param \DateTime $val The certificateExpirationDateTime
@return ManagedDeviceCertificateState | setCertificateExpirationDateTime | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ManagedDeviceCertificateState.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ManagedDeviceCertificateState.php | MIT |
public function getCertificateIssuanceDateTime()
{
if (array_key_exists("certificateIssuanceDateTime", $this->_propDict)) {
if (is_a($this->_propDict["certificateIssuanceDateTime"], "\DateTime") || is_null($this->_propDict["certificateIssuanceDateTime"])) {
return $this->_propDict["certificateIssuanceDateTime"];
} else {
$this->_propDict["certificateIssuanceDateTime"] = new \DateTime($this->_propDict["certificateIssuanceDateTime"]);
return $this->_propDict["certificateIssuanceDateTime"];
}
}
return null;
} | Gets the certificateIssuanceDateTime
Issuance date
@return \DateTime|null The certificateIssuanceDateTime | getCertificateIssuanceDateTime | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ManagedDeviceCertificateState.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ManagedDeviceCertificateState.php | MIT |
public function setCertificateIssuanceDateTime($val)
{
$this->_propDict["certificateIssuanceDateTime"] = $val;
return $this;
} | Sets the certificateIssuanceDateTime
Issuance date
@param \DateTime $val The certificateIssuanceDateTime
@return ManagedDeviceCertificateState | setCertificateIssuanceDateTime | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ManagedDeviceCertificateState.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ManagedDeviceCertificateState.php | MIT |
public function getCertificateIssuanceState()
{
if (array_key_exists("certificateIssuanceState", $this->_propDict)) {
if (is_a($this->_propDict["certificateIssuanceState"], "\Beta\Microsoft\Graph\Model\CertificateIssuanceStates") || is_null($this->_propDict["certificateIssuanceState"])) {
return $this->_propDict["certificateIssuanceState"];
} else {
$this->_propDict["certificateIssuanceState"] = new CertificateIssuanceStates($this->_propDict["certificateIssuanceState"]);
return $this->_propDict["certificateIssuanceState"];
}
}
return null;
} | Gets the certificateIssuanceState
Issuance State. Possible values are: unknown, challengeIssued, challengeIssueFailed, requestCreationFailed, requestSubmitFailed, challengeValidationSucceeded, challengeValidationFailed, issueFailed, issuePending, issued, responseProcessingFailed, responsePending, enrollmentSucceeded, enrollmentNotNeeded, revoked, removedFromCollection, renewVerified, installFailed, installed, deleteFailed, deleted, renewalRequested, requested.
@return CertificateIssuanceStates|null The certificateIssuanceState | getCertificateIssuanceState | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ManagedDeviceCertificateState.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ManagedDeviceCertificateState.php | MIT |
public function setCertificateIssuanceState($val)
{
$this->_propDict["certificateIssuanceState"] = $val;
return $this;
} | Sets the certificateIssuanceState
Issuance State. Possible values are: unknown, challengeIssued, challengeIssueFailed, requestCreationFailed, requestSubmitFailed, challengeValidationSucceeded, challengeValidationFailed, issueFailed, issuePending, issued, responseProcessingFailed, responsePending, enrollmentSucceeded, enrollmentNotNeeded, revoked, removedFromCollection, renewVerified, installFailed, installed, deleteFailed, deleted, renewalRequested, requested.
@param CertificateIssuanceStates $val The certificateIssuanceState
@return ManagedDeviceCertificateState | setCertificateIssuanceState | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ManagedDeviceCertificateState.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ManagedDeviceCertificateState.php | MIT |
public function getCertificateIssuer()
{
if (array_key_exists("certificateIssuer", $this->_propDict)) {
return $this->_propDict["certificateIssuer"];
} else {
return null;
}
} | Gets the certificateIssuer
Issuer
@return string|null The certificateIssuer | getCertificateIssuer | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ManagedDeviceCertificateState.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ManagedDeviceCertificateState.php | MIT |
public function setCertificateIssuer($val)
{
$this->_propDict["certificateIssuer"] = $val;
return $this;
} | Sets the certificateIssuer
Issuer
@param string $val The certificateIssuer
@return ManagedDeviceCertificateState | setCertificateIssuer | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ManagedDeviceCertificateState.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ManagedDeviceCertificateState.php | MIT |
public function getCertificateKeyLength()
{
if (array_key_exists("certificateKeyLength", $this->_propDict)) {
return $this->_propDict["certificateKeyLength"];
} else {
return null;
}
} | Gets the certificateKeyLength
Key length
@return int|null The certificateKeyLength | getCertificateKeyLength | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ManagedDeviceCertificateState.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ManagedDeviceCertificateState.php | MIT |
public function setCertificateKeyLength($val)
{
$this->_propDict["certificateKeyLength"] = intval($val);
return $this;
} | Sets the certificateKeyLength
Key length
@param int $val The certificateKeyLength
@return ManagedDeviceCertificateState | setCertificateKeyLength | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ManagedDeviceCertificateState.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ManagedDeviceCertificateState.php | MIT |
public function getCertificateKeyStorageProvider()
{
if (array_key_exists("certificateKeyStorageProvider", $this->_propDict)) {
if (is_a($this->_propDict["certificateKeyStorageProvider"], "\Beta\Microsoft\Graph\Model\KeyStorageProviderOption") || is_null($this->_propDict["certificateKeyStorageProvider"])) {
return $this->_propDict["certificateKeyStorageProvider"];
} else {
$this->_propDict["certificateKeyStorageProvider"] = new KeyStorageProviderOption($this->_propDict["certificateKeyStorageProvider"]);
return $this->_propDict["certificateKeyStorageProvider"];
}
}
return null;
} | Gets the certificateKeyStorageProvider
Key Storage Provider. Possible values are: useTpmKspOtherwiseUseSoftwareKsp, useTpmKspOtherwiseFail, usePassportForWorkKspOtherwiseFail, useSoftwareKsp.
@return KeyStorageProviderOption|null The certificateKeyStorageProvider | getCertificateKeyStorageProvider | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ManagedDeviceCertificateState.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ManagedDeviceCertificateState.php | MIT |
public function setCertificateKeyStorageProvider($val)
{
$this->_propDict["certificateKeyStorageProvider"] = $val;
return $this;
} | Sets the certificateKeyStorageProvider
Key Storage Provider. Possible values are: useTpmKspOtherwiseUseSoftwareKsp, useTpmKspOtherwiseFail, usePassportForWorkKspOtherwiseFail, useSoftwareKsp.
@param KeyStorageProviderOption $val The certificateKeyStorageProvider
@return ManagedDeviceCertificateState | setCertificateKeyStorageProvider | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ManagedDeviceCertificateState.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ManagedDeviceCertificateState.php | MIT |
public function getCertificateKeyUsage()
{
if (array_key_exists("certificateKeyUsage", $this->_propDict)) {
if (is_a($this->_propDict["certificateKeyUsage"], "\Beta\Microsoft\Graph\Model\KeyUsages") || is_null($this->_propDict["certificateKeyUsage"])) {
return $this->_propDict["certificateKeyUsage"];
} else {
$this->_propDict["certificateKeyUsage"] = new KeyUsages($this->_propDict["certificateKeyUsage"]);
return $this->_propDict["certificateKeyUsage"];
}
}
return null;
} | Gets the certificateKeyUsage
Key usage. Possible values are: keyEncipherment, digitalSignature.
@return KeyUsages|null The certificateKeyUsage | getCertificateKeyUsage | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ManagedDeviceCertificateState.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ManagedDeviceCertificateState.php | MIT |
public function setCertificateKeyUsage($val)
{
$this->_propDict["certificateKeyUsage"] = $val;
return $this;
} | Sets the certificateKeyUsage
Key usage. Possible values are: keyEncipherment, digitalSignature.
@param KeyUsages $val The certificateKeyUsage
@return ManagedDeviceCertificateState | setCertificateKeyUsage | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ManagedDeviceCertificateState.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ManagedDeviceCertificateState.php | MIT |
public function getCertificateLastIssuanceStateChangedDateTime()
{
if (array_key_exists("certificateLastIssuanceStateChangedDateTime", $this->_propDict)) {
if (is_a($this->_propDict["certificateLastIssuanceStateChangedDateTime"], "\DateTime") || is_null($this->_propDict["certificateLastIssuanceStateChangedDateTime"])) {
return $this->_propDict["certificateLastIssuanceStateChangedDateTime"];
} else {
$this->_propDict["certificateLastIssuanceStateChangedDateTime"] = new \DateTime($this->_propDict["certificateLastIssuanceStateChangedDateTime"]);
return $this->_propDict["certificateLastIssuanceStateChangedDateTime"];
}
}
return null;
} | Gets the certificateLastIssuanceStateChangedDateTime
Last certificate issuance state change
@return \DateTime|null The certificateLastIssuanceStateChangedDateTime | getCertificateLastIssuanceStateChangedDateTime | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ManagedDeviceCertificateState.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ManagedDeviceCertificateState.php | MIT |
public function setCertificateLastIssuanceStateChangedDateTime($val)
{
$this->_propDict["certificateLastIssuanceStateChangedDateTime"] = $val;
return $this;
} | Sets the certificateLastIssuanceStateChangedDateTime
Last certificate issuance state change
@param \DateTime $val The certificateLastIssuanceStateChangedDateTime
@return ManagedDeviceCertificateState | setCertificateLastIssuanceStateChangedDateTime | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ManagedDeviceCertificateState.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ManagedDeviceCertificateState.php | MIT |
public function getCertificateProfileDisplayName()
{
if (array_key_exists("certificateProfileDisplayName", $this->_propDict)) {
return $this->_propDict["certificateProfileDisplayName"];
} else {
return null;
}
} | Gets the certificateProfileDisplayName
Certificate profile display name
@return string|null The certificateProfileDisplayName | getCertificateProfileDisplayName | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ManagedDeviceCertificateState.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ManagedDeviceCertificateState.php | MIT |
public function setCertificateProfileDisplayName($val)
{
$this->_propDict["certificateProfileDisplayName"] = $val;
return $this;
} | Sets the certificateProfileDisplayName
Certificate profile display name
@param string $val The certificateProfileDisplayName
@return ManagedDeviceCertificateState | setCertificateProfileDisplayName | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ManagedDeviceCertificateState.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ManagedDeviceCertificateState.php | MIT |
public function getCertificateRevokeStatus()
{
if (array_key_exists("certificateRevokeStatus", $this->_propDict)) {
if (is_a($this->_propDict["certificateRevokeStatus"], "\Beta\Microsoft\Graph\Model\CertificateRevocationStatus") || is_null($this->_propDict["certificateRevokeStatus"])) {
return $this->_propDict["certificateRevokeStatus"];
} else {
$this->_propDict["certificateRevokeStatus"] = new CertificateRevocationStatus($this->_propDict["certificateRevokeStatus"]);
return $this->_propDict["certificateRevokeStatus"];
}
}
return null;
} | Gets the certificateRevokeStatus
Revoke status. Possible values are: none, pending, issued, failed, revoked.
@return CertificateRevocationStatus|null The certificateRevokeStatus | getCertificateRevokeStatus | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ManagedDeviceCertificateState.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ManagedDeviceCertificateState.php | MIT |
public function setCertificateRevokeStatus($val)
{
$this->_propDict["certificateRevokeStatus"] = $val;
return $this;
} | Sets the certificateRevokeStatus
Revoke status. Possible values are: none, pending, issued, failed, revoked.
@param CertificateRevocationStatus $val The certificateRevokeStatus
@return ManagedDeviceCertificateState | setCertificateRevokeStatus | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ManagedDeviceCertificateState.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ManagedDeviceCertificateState.php | MIT |
public function getCertificateSerialNumber()
{
if (array_key_exists("certificateSerialNumber", $this->_propDict)) {
return $this->_propDict["certificateSerialNumber"];
} else {
return null;
}
} | Gets the certificateSerialNumber
Serial number
@return string|null The certificateSerialNumber | getCertificateSerialNumber | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ManagedDeviceCertificateState.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ManagedDeviceCertificateState.php | MIT |
public function setCertificateSerialNumber($val)
{
$this->_propDict["certificateSerialNumber"] = $val;
return $this;
} | Sets the certificateSerialNumber
Serial number
@param string $val The certificateSerialNumber
@return ManagedDeviceCertificateState | setCertificateSerialNumber | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ManagedDeviceCertificateState.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ManagedDeviceCertificateState.php | MIT |
public function getCertificateSubjectAlternativeNameFormat()
{
if (array_key_exists("certificateSubjectAlternativeNameFormat", $this->_propDict)) {
if (is_a($this->_propDict["certificateSubjectAlternativeNameFormat"], "\Beta\Microsoft\Graph\Model\SubjectAlternativeNameType") || is_null($this->_propDict["certificateSubjectAlternativeNameFormat"])) {
return $this->_propDict["certificateSubjectAlternativeNameFormat"];
} else {
$this->_propDict["certificateSubjectAlternativeNameFormat"] = new SubjectAlternativeNameType($this->_propDict["certificateSubjectAlternativeNameFormat"]);
return $this->_propDict["certificateSubjectAlternativeNameFormat"];
}
}
return null;
} | Gets the certificateSubjectAlternativeNameFormat
Subject alternative name format. Possible values are: none, emailAddress, userPrincipalName, customAzureADAttribute, domainNameService, universalResourceIdentifier.
@return SubjectAlternativeNameType|null The certificateSubjectAlternativeNameFormat | getCertificateSubjectAlternativeNameFormat | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ManagedDeviceCertificateState.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ManagedDeviceCertificateState.php | MIT |
public function setCertificateSubjectAlternativeNameFormat($val)
{
$this->_propDict["certificateSubjectAlternativeNameFormat"] = $val;
return $this;
} | Sets the certificateSubjectAlternativeNameFormat
Subject alternative name format. Possible values are: none, emailAddress, userPrincipalName, customAzureADAttribute, domainNameService, universalResourceIdentifier.
@param SubjectAlternativeNameType $val The certificateSubjectAlternativeNameFormat
@return ManagedDeviceCertificateState | setCertificateSubjectAlternativeNameFormat | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ManagedDeviceCertificateState.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ManagedDeviceCertificateState.php | MIT |
public function getCertificateSubjectAlternativeNameFormatString()
{
if (array_key_exists("certificateSubjectAlternativeNameFormatString", $this->_propDict)) {
return $this->_propDict["certificateSubjectAlternativeNameFormatString"];
} else {
return null;
}
} | Gets the certificateSubjectAlternativeNameFormatString
Subject alternative name format string for custom formats
@return string|null The certificateSubjectAlternativeNameFormatString | getCertificateSubjectAlternativeNameFormatString | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ManagedDeviceCertificateState.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ManagedDeviceCertificateState.php | MIT |
public function setCertificateSubjectAlternativeNameFormatString($val)
{
$this->_propDict["certificateSubjectAlternativeNameFormatString"] = $val;
return $this;
} | Sets the certificateSubjectAlternativeNameFormatString
Subject alternative name format string for custom formats
@param string $val The certificateSubjectAlternativeNameFormatString
@return ManagedDeviceCertificateState | setCertificateSubjectAlternativeNameFormatString | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ManagedDeviceCertificateState.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ManagedDeviceCertificateState.php | MIT |
public function getCertificateSubjectNameFormat()
{
if (array_key_exists("certificateSubjectNameFormat", $this->_propDict)) {
if (is_a($this->_propDict["certificateSubjectNameFormat"], "\Beta\Microsoft\Graph\Model\SubjectNameFormat") || is_null($this->_propDict["certificateSubjectNameFormat"])) {
return $this->_propDict["certificateSubjectNameFormat"];
} else {
$this->_propDict["certificateSubjectNameFormat"] = new SubjectNameFormat($this->_propDict["certificateSubjectNameFormat"]);
return $this->_propDict["certificateSubjectNameFormat"];
}
}
return null;
} | Gets the certificateSubjectNameFormat
Subject name format. Possible values are: commonName, commonNameIncludingEmail, commonNameAsEmail, custom, commonNameAsIMEI, commonNameAsSerialNumber, commonNameAsAadDeviceId, commonNameAsIntuneDeviceId, commonNameAsDurableDeviceId.
@return SubjectNameFormat|null The certificateSubjectNameFormat | getCertificateSubjectNameFormat | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ManagedDeviceCertificateState.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ManagedDeviceCertificateState.php | MIT |
public function setCertificateSubjectNameFormat($val)
{
$this->_propDict["certificateSubjectNameFormat"] = $val;
return $this;
} | Sets the certificateSubjectNameFormat
Subject name format. Possible values are: commonName, commonNameIncludingEmail, commonNameAsEmail, custom, commonNameAsIMEI, commonNameAsSerialNumber, commonNameAsAadDeviceId, commonNameAsIntuneDeviceId, commonNameAsDurableDeviceId.
@param SubjectNameFormat $val The certificateSubjectNameFormat
@return ManagedDeviceCertificateState | setCertificateSubjectNameFormat | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ManagedDeviceCertificateState.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ManagedDeviceCertificateState.php | MIT |
public function getCertificateSubjectNameFormatString()
{
if (array_key_exists("certificateSubjectNameFormatString", $this->_propDict)) {
return $this->_propDict["certificateSubjectNameFormatString"];
} else {
return null;
}
} | Gets the certificateSubjectNameFormatString
Subject name format string for custom subject name formats
@return string|null The certificateSubjectNameFormatString | getCertificateSubjectNameFormatString | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ManagedDeviceCertificateState.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ManagedDeviceCertificateState.php | MIT |
public function setCertificateSubjectNameFormatString($val)
{
$this->_propDict["certificateSubjectNameFormatString"] = $val;
return $this;
} | Sets the certificateSubjectNameFormatString
Subject name format string for custom subject name formats
@param string $val The certificateSubjectNameFormatString
@return ManagedDeviceCertificateState | setCertificateSubjectNameFormatString | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ManagedDeviceCertificateState.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ManagedDeviceCertificateState.php | MIT |
public function getCertificateThumbprint()
{
if (array_key_exists("certificateThumbprint", $this->_propDict)) {
return $this->_propDict["certificateThumbprint"];
} else {
return null;
}
} | Gets the certificateThumbprint
Thumbprint
@return string|null The certificateThumbprint | getCertificateThumbprint | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ManagedDeviceCertificateState.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ManagedDeviceCertificateState.php | MIT |
public function setCertificateThumbprint($val)
{
$this->_propDict["certificateThumbprint"] = $val;
return $this;
} | Sets the certificateThumbprint
Thumbprint
@param string $val The certificateThumbprint
@return ManagedDeviceCertificateState | setCertificateThumbprint | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ManagedDeviceCertificateState.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ManagedDeviceCertificateState.php | MIT |
public function getCertificateValidityPeriod()
{
if (array_key_exists("certificateValidityPeriod", $this->_propDict)) {
return $this->_propDict["certificateValidityPeriod"];
} else {
return null;
}
} | Gets the certificateValidityPeriod
Validity period
@return int|null The certificateValidityPeriod | getCertificateValidityPeriod | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ManagedDeviceCertificateState.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ManagedDeviceCertificateState.php | MIT |
public function setCertificateValidityPeriod($val)
{
$this->_propDict["certificateValidityPeriod"] = intval($val);
return $this;
} | Sets the certificateValidityPeriod
Validity period
@param int $val The certificateValidityPeriod
@return ManagedDeviceCertificateState | setCertificateValidityPeriod | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ManagedDeviceCertificateState.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ManagedDeviceCertificateState.php | MIT |
public function getCertificateValidityPeriodUnits()
{
if (array_key_exists("certificateValidityPeriodUnits", $this->_propDict)) {
if (is_a($this->_propDict["certificateValidityPeriodUnits"], "\Beta\Microsoft\Graph\Model\CertificateValidityPeriodScale") || is_null($this->_propDict["certificateValidityPeriodUnits"])) {
return $this->_propDict["certificateValidityPeriodUnits"];
} else {
$this->_propDict["certificateValidityPeriodUnits"] = new CertificateValidityPeriodScale($this->_propDict["certificateValidityPeriodUnits"]);
return $this->_propDict["certificateValidityPeriodUnits"];
}
}
return null;
} | Gets the certificateValidityPeriodUnits
Validity period units. Possible values are: days, months, years.
@return CertificateValidityPeriodScale|null The certificateValidityPeriodUnits | getCertificateValidityPeriodUnits | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ManagedDeviceCertificateState.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ManagedDeviceCertificateState.php | MIT |
public function setCertificateValidityPeriodUnits($val)
{
$this->_propDict["certificateValidityPeriodUnits"] = $val;
return $this;
} | Sets the certificateValidityPeriodUnits
Validity period units. Possible values are: days, months, years.
@param CertificateValidityPeriodScale $val The certificateValidityPeriodUnits
@return ManagedDeviceCertificateState | setCertificateValidityPeriodUnits | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ManagedDeviceCertificateState.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ManagedDeviceCertificateState.php | MIT |
public function getDeviceDisplayName()
{
if (array_key_exists("deviceDisplayName", $this->_propDict)) {
return $this->_propDict["deviceDisplayName"];
} else {
return null;
}
} | Gets the deviceDisplayName
Device display name
@return string|null The deviceDisplayName | getDeviceDisplayName | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ManagedDeviceCertificateState.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ManagedDeviceCertificateState.php | MIT |
public function setDeviceDisplayName($val)
{
$this->_propDict["deviceDisplayName"] = $val;
return $this;
} | Sets the deviceDisplayName
Device display name
@param string $val The deviceDisplayName
@return ManagedDeviceCertificateState | setDeviceDisplayName | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ManagedDeviceCertificateState.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ManagedDeviceCertificateState.php | MIT |
public function getDevicePlatform()
{
if (array_key_exists("devicePlatform", $this->_propDict)) {
if (is_a($this->_propDict["devicePlatform"], "\Beta\Microsoft\Graph\Model\DevicePlatformType") || is_null($this->_propDict["devicePlatform"])) {
return $this->_propDict["devicePlatform"];
} else {
$this->_propDict["devicePlatform"] = new DevicePlatformType($this->_propDict["devicePlatform"]);
return $this->_propDict["devicePlatform"];
}
}
return null;
} | Gets the devicePlatform
Device platform. Possible values are: android, androidForWork, iOS, macOS, windowsPhone81, windows81AndLater, windows10AndLater, androidWorkProfile, unknown, androidAOSP, androidMobileApplicationManagement, iOSMobileApplicationManagement, unknownFutureValue.
@return DevicePlatformType|null The devicePlatform | getDevicePlatform | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ManagedDeviceCertificateState.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ManagedDeviceCertificateState.php | MIT |
public function setDevicePlatform($val)
{
$this->_propDict["devicePlatform"] = $val;
return $this;
} | Sets the devicePlatform
Device platform. Possible values are: android, androidForWork, iOS, macOS, windowsPhone81, windows81AndLater, windows10AndLater, androidWorkProfile, unknown, androidAOSP, androidMobileApplicationManagement, iOSMobileApplicationManagement, unknownFutureValue.
@param DevicePlatformType $val The devicePlatform
@return ManagedDeviceCertificateState | setDevicePlatform | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ManagedDeviceCertificateState.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ManagedDeviceCertificateState.php | MIT |
public function getLastCertificateStateChangeDateTime()
{
if (array_key_exists("lastCertificateStateChangeDateTime", $this->_propDict)) {
if (is_a($this->_propDict["lastCertificateStateChangeDateTime"], "\DateTime") || is_null($this->_propDict["lastCertificateStateChangeDateTime"])) {
return $this->_propDict["lastCertificateStateChangeDateTime"];
} else {
$this->_propDict["lastCertificateStateChangeDateTime"] = new \DateTime($this->_propDict["lastCertificateStateChangeDateTime"]);
return $this->_propDict["lastCertificateStateChangeDateTime"];
}
}
return null;
} | Gets the lastCertificateStateChangeDateTime
Last certificate issuance state change
@return \DateTime|null The lastCertificateStateChangeDateTime | getLastCertificateStateChangeDateTime | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ManagedDeviceCertificateState.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ManagedDeviceCertificateState.php | MIT |
public function setLastCertificateStateChangeDateTime($val)
{
$this->_propDict["lastCertificateStateChangeDateTime"] = $val;
return $this;
} | Sets the lastCertificateStateChangeDateTime
Last certificate issuance state change
@param \DateTime $val The lastCertificateStateChangeDateTime
@return ManagedDeviceCertificateState | setLastCertificateStateChangeDateTime | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ManagedDeviceCertificateState.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ManagedDeviceCertificateState.php | MIT |
public function getUserDisplayName()
{
if (array_key_exists("userDisplayName", $this->_propDict)) {
return $this->_propDict["userDisplayName"];
} else {
return null;
}
} | Gets the userDisplayName
User display name
@return string|null The userDisplayName | getUserDisplayName | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ManagedDeviceCertificateState.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ManagedDeviceCertificateState.php | MIT |
public function setUserDisplayName($val)
{
$this->_propDict["userDisplayName"] = $val;
return $this;
} | Sets the userDisplayName
User display name
@param string $val The userDisplayName
@return ManagedDeviceCertificateState | setUserDisplayName | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ManagedDeviceCertificateState.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ManagedDeviceCertificateState.php | MIT |
public function getOmaSettings()
{
if (array_key_exists("omaSettings", $this->_propDict)) {
return $this->_propDict["omaSettings"];
} else {
return null;
}
} | Gets the omaSettings
OMA settings. This collection can contain a maximum of 500 elements.
@return array|null The omaSettings | getOmaSettings | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/AndroidWorkProfileCustomConfiguration.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/AndroidWorkProfileCustomConfiguration.php | MIT |
public function setOmaSettings($val)
{
$this->_propDict["omaSettings"] = $val;
return $this;
} | Sets the omaSettings
OMA settings. This collection can contain a maximum of 500 elements.
@param OmaSetting[] $val The omaSettings
@return AndroidWorkProfileCustomConfiguration | setOmaSettings | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/AndroidWorkProfileCustomConfiguration.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/AndroidWorkProfileCustomConfiguration.php | MIT |
public function getIsDescending()
{
if (array_key_exists("isDescending", $this->_propDict)) {
return $this->_propDict["isDescending"];
} else {
return null;
}
} | Gets the isDescending
True to specify the sort order as descending. The default is false, with the sort order as ascending. Optional.
@return bool|null The isDescending | getIsDescending | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/BucketAggregationDefinition.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/BucketAggregationDefinition.php | MIT |
public function setIsDescending($val)
{
$this->_propDict["isDescending"] = $val;
return $this;
} | Sets the isDescending
True to specify the sort order as descending. The default is false, with the sort order as ascending. Optional.
@param bool $val The value of the isDescending
@return BucketAggregationDefinition | setIsDescending | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/BucketAggregationDefinition.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/BucketAggregationDefinition.php | MIT |
public function getMinimumCount()
{
if (array_key_exists("minimumCount", $this->_propDict)) {
return $this->_propDict["minimumCount"];
} else {
return null;
}
} | Gets the minimumCount
The minimum number of items that should be present in the aggregation to be returned in a bucket. Optional.
@return int|null The minimumCount | getMinimumCount | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/BucketAggregationDefinition.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/BucketAggregationDefinition.php | MIT |
public function setMinimumCount($val)
{
$this->_propDict["minimumCount"] = $val;
return $this;
} | Sets the minimumCount
The minimum number of items that should be present in the aggregation to be returned in a bucket. Optional.
@param int $val The value of the minimumCount
@return BucketAggregationDefinition | setMinimumCount | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/BucketAggregationDefinition.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/BucketAggregationDefinition.php | MIT |
public function getPrefixFilter()
{
if (array_key_exists("prefixFilter", $this->_propDict)) {
return $this->_propDict["prefixFilter"];
} else {
return null;
}
} | Gets the prefixFilter
A filter to define a matching criteria. The key should start with the specified prefix to be returned in the response. Optional.
@return string|null The prefixFilter | getPrefixFilter | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/BucketAggregationDefinition.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/BucketAggregationDefinition.php | MIT |
public function setPrefixFilter($val)
{
$this->_propDict["prefixFilter"] = $val;
return $this;
} | Sets the prefixFilter
A filter to define a matching criteria. The key should start with the specified prefix to be returned in the response. Optional.
@param string $val The value of the prefixFilter
@return BucketAggregationDefinition | setPrefixFilter | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/BucketAggregationDefinition.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/BucketAggregationDefinition.php | MIT |
public function getRanges()
{
if (array_key_exists("ranges", $this->_propDict)) {
if (is_a($this->_propDict["ranges"], "\Microsoft\Graph\Model\BucketAggregationRange") || is_null($this->_propDict["ranges"])) {
return $this->_propDict["ranges"];
} else {
$this->_propDict["ranges"] = new BucketAggregationRange($this->_propDict["ranges"]);
return $this->_propDict["ranges"];
}
}
return null;
} | Gets the ranges
Specifies the manual ranges to compute the aggregations. This is only valid for non-string refiners of date or numeric type. Optional.
@return BucketAggregationRange|null The ranges | getRanges | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/BucketAggregationDefinition.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/BucketAggregationDefinition.php | MIT |
public function setRanges($val)
{
$this->_propDict["ranges"] = $val;
return $this;
} | Sets the ranges
Specifies the manual ranges to compute the aggregations. This is only valid for non-string refiners of date or numeric type. Optional.
@param BucketAggregationRange $val The value to assign to the ranges
@return BucketAggregationDefinition The BucketAggregationDefinition | setRanges | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/BucketAggregationDefinition.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/BucketAggregationDefinition.php | MIT |
public function getSortBy()
{
if (array_key_exists("sortBy", $this->_propDict)) {
if (is_a($this->_propDict["sortBy"], "\Microsoft\Graph\Model\BucketAggregationSortProperty") || is_null($this->_propDict["sortBy"])) {
return $this->_propDict["sortBy"];
} else {
$this->_propDict["sortBy"] = new BucketAggregationSortProperty($this->_propDict["sortBy"]);
return $this->_propDict["sortBy"];
}
}
return null;
} | Gets the sortBy
The possible values are count to sort by the number of matches in the aggregation, keyAsStringto sort alphabeticaly based on the key in the aggregation, keyAsNumber for numerical sorting based on the key in the aggregation. Required.
@return BucketAggregationSortProperty|null The sortBy | getSortBy | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/BucketAggregationDefinition.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/BucketAggregationDefinition.php | MIT |
public function setSortBy($val)
{
$this->_propDict["sortBy"] = $val;
return $this;
} | Sets the sortBy
The possible values are count to sort by the number of matches in the aggregation, keyAsStringto sort alphabeticaly based on the key in the aggregation, keyAsNumber for numerical sorting based on the key in the aggregation. Required.
@param BucketAggregationSortProperty $val The value to assign to the sortBy
@return BucketAggregationDefinition The BucketAggregationDefinition | setSortBy | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/BucketAggregationDefinition.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/BucketAggregationDefinition.php | MIT |
public function getAttemptsCount()
{
if (array_key_exists("attemptsCount", $this->_propDict)) {
return $this->_propDict["attemptsCount"];
} else {
return null;
}
} | Gets the attemptsCount
Number of times the operation was attempted before being marked successful or failed.
@return int|null The attemptsCount | getAttemptsCount | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/TeamsAsyncOperation.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/TeamsAsyncOperation.php | MIT |
public function setAttemptsCount($val)
{
$this->_propDict["attemptsCount"] = intval($val);
return $this;
} | Sets the attemptsCount
Number of times the operation was attempted before being marked successful or failed.
@param int $val The attemptsCount
@return TeamsAsyncOperation | setAttemptsCount | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/TeamsAsyncOperation.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/TeamsAsyncOperation.php | MIT |
public function getCreatedDateTime()
{
if (array_key_exists("createdDateTime", $this->_propDict)) {
if (is_a($this->_propDict["createdDateTime"], "\DateTime") || is_null($this->_propDict["createdDateTime"])) {
return $this->_propDict["createdDateTime"];
} else {
$this->_propDict["createdDateTime"] = new \DateTime($this->_propDict["createdDateTime"]);
return $this->_propDict["createdDateTime"];
}
}
return null;
} | Gets the createdDateTime
Time when the operation was created.
@return \DateTime|null The createdDateTime | getCreatedDateTime | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/TeamsAsyncOperation.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/TeamsAsyncOperation.php | MIT |
public function setCreatedDateTime($val)
{
$this->_propDict["createdDateTime"] = $val;
return $this;
} | Sets the createdDateTime
Time when the operation was created.
@param \DateTime $val The createdDateTime
@return TeamsAsyncOperation | setCreatedDateTime | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/TeamsAsyncOperation.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/TeamsAsyncOperation.php | MIT |
public function getError()
{
if (array_key_exists("error", $this->_propDict)) {
if (is_a($this->_propDict["error"], "\Microsoft\Graph\Model\OperationError") || is_null($this->_propDict["error"])) {
return $this->_propDict["error"];
} else {
$this->_propDict["error"] = new OperationError($this->_propDict["error"]);
return $this->_propDict["error"];
}
}
return null;
} | Gets the error
Any error that causes the async operation to fail.
@return OperationError|null The error | getError | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/TeamsAsyncOperation.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/TeamsAsyncOperation.php | MIT |
public function setError($val)
{
$this->_propDict["error"] = $val;
return $this;
} | Sets the error
Any error that causes the async operation to fail.
@param OperationError $val The error
@return TeamsAsyncOperation | setError | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/TeamsAsyncOperation.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/TeamsAsyncOperation.php | MIT |
public function getLastActionDateTime()
{
if (array_key_exists("lastActionDateTime", $this->_propDict)) {
if (is_a($this->_propDict["lastActionDateTime"], "\DateTime") || is_null($this->_propDict["lastActionDateTime"])) {
return $this->_propDict["lastActionDateTime"];
} else {
$this->_propDict["lastActionDateTime"] = new \DateTime($this->_propDict["lastActionDateTime"]);
return $this->_propDict["lastActionDateTime"];
}
}
return null;
} | Gets the lastActionDateTime
Time when the async operation was last updated.
@return \DateTime|null The lastActionDateTime | getLastActionDateTime | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/TeamsAsyncOperation.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/TeamsAsyncOperation.php | MIT |
public function setLastActionDateTime($val)
{
$this->_propDict["lastActionDateTime"] = $val;
return $this;
} | Sets the lastActionDateTime
Time when the async operation was last updated.
@param \DateTime $val The lastActionDateTime
@return TeamsAsyncOperation | setLastActionDateTime | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/TeamsAsyncOperation.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/TeamsAsyncOperation.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.