1
0
Fork 0
m365-php/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Windows81TrustedRootCertifi...

123 lines
3.9 KiB
PHP

<?php
/**
* Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information.
*
* Windows81TrustedRootCertificate 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 Beta\Microsoft\Graph\Model;
/**
* Windows81TrustedRootCertificate 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 Windows81TrustedRootCertificate extends DeviceConfiguration
{
/**
* Gets the certFileName
* File name to display in UI.
*
* @return string|null The certFileName
*/
public function getCertFileName()
{
if (array_key_exists("certFileName", $this->_propDict)) {
return $this->_propDict["certFileName"];
} else {
return null;
}
}
/**
* Sets the certFileName
* File name to display in UI.
*
* @param string $val The certFileName
*
* @return Windows81TrustedRootCertificate
*/
public function setCertFileName($val)
{
$this->_propDict["certFileName"] = $val;
return $this;
}
/**
* Gets the destinationStore
* Destination store location for the Trusted Root Certificate. Possible values are: computerCertStoreRoot, computerCertStoreIntermediate, userCertStoreIntermediate.
*
* @return CertificateDestinationStore|null The destinationStore
*/
public function getDestinationStore()
{
if (array_key_exists("destinationStore", $this->_propDict)) {
if (is_a($this->_propDict["destinationStore"], "\Beta\Microsoft\Graph\Model\CertificateDestinationStore") || is_null($this->_propDict["destinationStore"])) {
return $this->_propDict["destinationStore"];
} else {
$this->_propDict["destinationStore"] = new CertificateDestinationStore($this->_propDict["destinationStore"]);
return $this->_propDict["destinationStore"];
}
}
return null;
}
/**
* Sets the destinationStore
* Destination store location for the Trusted Root Certificate. Possible values are: computerCertStoreRoot, computerCertStoreIntermediate, userCertStoreIntermediate.
*
* @param CertificateDestinationStore $val The destinationStore
*
* @return Windows81TrustedRootCertificate
*/
public function setDestinationStore($val)
{
$this->_propDict["destinationStore"] = $val;
return $this;
}
/**
* Gets the trustedRootCertificate
* Trusted Root Certificate
*
* @return \GuzzleHttp\Psr7\Stream|null The trustedRootCertificate
*/
public function getTrustedRootCertificate()
{
if (array_key_exists("trustedRootCertificate", $this->_propDict)) {
if (is_a($this->_propDict["trustedRootCertificate"], "\GuzzleHttp\Psr7\Stream") || is_null($this->_propDict["trustedRootCertificate"])) {
return $this->_propDict["trustedRootCertificate"];
} else {
$this->_propDict["trustedRootCertificate"] = \GuzzleHttp\Psr7\Utils::streamFor($this->_propDict["trustedRootCertificate"]);
return $this->_propDict["trustedRootCertificate"];
}
}
return null;
}
/**
* Sets the trustedRootCertificate
* Trusted Root Certificate
*
* @param \GuzzleHttp\Psr7\Stream $val The trustedRootCertificate
*
* @return Windows81TrustedRootCertificate
*/
public function setTrustedRootCertificate($val)
{
$this->_propDict["trustedRootCertificate"] = $val;
return $this;
}
}