Warning: chmod(): Operation not permitted in /var/www/hopeinstoughton_www/wp-content/plugins/simple-universal-google-analytics/main.php on line 8 [0] in function chmod in /var/www/hopeinstoughton_www/wp-content/plugins/simple-universal-google-analytics/main.php on line 8 [1] in function include_once in /var/www/hopeinstoughton_www/wp-settings.php on line 560 [2] in function require_once in /var/www/hopeinstoughton_www/wp-config.php on line 85 [3] in function require_once in /var/www/hopeinstoughton_www/wp-load.php on line 50 [4] in function require_once in /var/www/hopeinstoughton_www/wp-blog-header.php on line 13 [5] in function require in /var/www/hopeinstoughton_www/index.php on line 17
| Server IP : 94.177.8.99 / Your IP : 216.73.217.165 Web Server : Apache/2.4.58 (Ubuntu) System : Linux aries 6.8.0-134-generic #134-Ubuntu SMP PREEMPT_DYNAMIC Fri Jun 26 18:43:11 UTC 2026 x86_64 User : www-data ( 33) PHP Version : 8.1.34 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /var/www/hopeinstoughton_www/vendor/microsoft/microsoft-graph/src/Model/ |
Upload File : |
<?php
/**
* Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information.
*
* BitlockerRecoveryKey File
* PHP version 7
*
* @category Library
* @package Microsoft.Graph
* @copyright (c) Microsoft Corporation. All rights reserved.
* @license https://opensource.org/licenses/MIT MIT License
* @link https://graph.microsoft.com
*/
namespace Microsoft\Graph\Model;
/**
* BitlockerRecoveryKey class
*
* @category Model
* @package Microsoft.Graph
* @copyright (c) Microsoft Corporation. All rights reserved.
* @license https://opensource.org/licenses/MIT MIT License
* @link https://graph.microsoft.com
*/
class BitlockerRecoveryKey extends Entity
{
/**
* Gets the createdDateTime
* The date and time when the key was originally backed up to Azure Active Directory. Not nullable.
*
* @return \DateTime|null The createdDateTime
*/
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;
}
/**
* Sets the createdDateTime
* The date and time when the key was originally backed up to Azure Active Directory. Not nullable.
*
* @param \DateTime $val The createdDateTime
*
* @return BitlockerRecoveryKey
*/
public function setCreatedDateTime($val)
{
$this->_propDict["createdDateTime"] = $val;
return $this;
}
/**
* Gets the deviceId
* Identifier of the device the BitLocker key is originally backed up from. Supports $filter (eq).
*
* @return string|null The deviceId
*/
public function getDeviceId()
{
if (array_key_exists("deviceId", $this->_propDict)) {
return $this->_propDict["deviceId"];
} else {
return null;
}
}
/**
* Sets the deviceId
* Identifier of the device the BitLocker key is originally backed up from. Supports $filter (eq).
*
* @param string $val The deviceId
*
* @return BitlockerRecoveryKey
*/
public function setDeviceId($val)
{
$this->_propDict["deviceId"] = $val;
return $this;
}
/**
* Gets the key
* The BitLocker recovery key. Returned only on $select. Not nullable.
*
* @return string|null The key
*/
public function getKey()
{
if (array_key_exists("key", $this->_propDict)) {
return $this->_propDict["key"];
} else {
return null;
}
}
/**
* Sets the key
* The BitLocker recovery key. Returned only on $select. Not nullable.
*
* @param string $val The key
*
* @return BitlockerRecoveryKey
*/
public function setKey($val)
{
$this->_propDict["key"] = $val;
return $this;
}
/**
* Gets the volumeType
* Indicates the type of volume the BitLocker key is associated with. The possible values are: 1 (for operatingSystemVolume), 2 (for fixedDataVolume), 3 (for removableDataVolume), and 4 (for unknownFutureValue).
*
* @return VolumeType|null The volumeType
*/
public function getVolumeType()
{
if (array_key_exists("volumeType", $this->_propDict)) {
if (is_a($this->_propDict["volumeType"], "\Microsoft\Graph\Model\VolumeType") || is_null($this->_propDict["volumeType"])) {
return $this->_propDict["volumeType"];
} else {
$this->_propDict["volumeType"] = new VolumeType($this->_propDict["volumeType"]);
return $this->_propDict["volumeType"];
}
}
return null;
}
/**
* Sets the volumeType
* Indicates the type of volume the BitLocker key is associated with. The possible values are: 1 (for operatingSystemVolume), 2 (for fixedDataVolume), 3 (for removableDataVolume), and 4 (for unknownFutureValue).
*
* @param VolumeType $val The volumeType
*
* @return BitlockerRecoveryKey
*/
public function setVolumeType($val)
{
$this->_propDict["volumeType"] = $val;
return $this;
}
}