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 : /proc/thread-self/cwd/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.
*
* CertificateAuthority 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;
/**
* CertificateAuthority 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 CertificateAuthority extends Entity
{
/**
* Gets the certificate
* Required. The base64 encoded string representing the public certificate.
*
* @return \GuzzleHttp\Psr7\Stream|null The certificate
*/
public function getCertificate()
{
if (array_key_exists("certificate", $this->_propDict)) {
if (is_a($this->_propDict["certificate"], "\GuzzleHttp\Psr7\Stream") || is_null($this->_propDict["certificate"])) {
return $this->_propDict["certificate"];
} else {
$this->_propDict["certificate"] = \GuzzleHttp\Psr7\Utils::streamFor($this->_propDict["certificate"]);
return $this->_propDict["certificate"];
}
}
return null;
}
/**
* Sets the certificate
* Required. The base64 encoded string representing the public certificate.
*
* @param \GuzzleHttp\Psr7\Stream $val The value to assign to the certificate
*
* @return CertificateAuthority The CertificateAuthority
*/
public function setCertificate($val)
{
$this->_propDict["certificate"] = $val;
return $this;
}
/**
* Gets the certificateRevocationListUrl
* The URL of the certificate revocation list.
*
* @return string|null The certificateRevocationListUrl
*/
public function getCertificateRevocationListUrl()
{
if (array_key_exists("certificateRevocationListUrl", $this->_propDict)) {
return $this->_propDict["certificateRevocationListUrl"];
} else {
return null;
}
}
/**
* Sets the certificateRevocationListUrl
* The URL of the certificate revocation list.
*
* @param string $val The value of the certificateRevocationListUrl
*
* @return CertificateAuthority
*/
public function setCertificateRevocationListUrl($val)
{
$this->_propDict["certificateRevocationListUrl"] = $val;
return $this;
}
/**
* Gets the deltaCertificateRevocationListUrl
* The URL contains the list of all revoked certificates since the last time a full certificate revocaton list was created.
*
* @return string|null The deltaCertificateRevocationListUrl
*/
public function getDeltaCertificateRevocationListUrl()
{
if (array_key_exists("deltaCertificateRevocationListUrl", $this->_propDict)) {
return $this->_propDict["deltaCertificateRevocationListUrl"];
} else {
return null;
}
}
/**
* Sets the deltaCertificateRevocationListUrl
* The URL contains the list of all revoked certificates since the last time a full certificate revocaton list was created.
*
* @param string $val The value of the deltaCertificateRevocationListUrl
*
* @return CertificateAuthority
*/
public function setDeltaCertificateRevocationListUrl($val)
{
$this->_propDict["deltaCertificateRevocationListUrl"] = $val;
return $this;
}
/**
* Gets the isRootAuthority
* Required. true if the trusted certificate is a root authority, false if the trusted certificate is an intermediate authority.
*
* @return bool|null The isRootAuthority
*/
public function getIsRootAuthority()
{
if (array_key_exists("isRootAuthority", $this->_propDict)) {
return $this->_propDict["isRootAuthority"];
} else {
return null;
}
}
/**
* Sets the isRootAuthority
* Required. true if the trusted certificate is a root authority, false if the trusted certificate is an intermediate authority.
*
* @param bool $val The value of the isRootAuthority
*
* @return CertificateAuthority
*/
public function setIsRootAuthority($val)
{
$this->_propDict["isRootAuthority"] = $val;
return $this;
}
/**
* Gets the issuer
* The issuer of the certificate, calculated from the certificate value. Read-only.
*
* @return string|null The issuer
*/
public function getIssuer()
{
if (array_key_exists("issuer", $this->_propDict)) {
return $this->_propDict["issuer"];
} else {
return null;
}
}
/**
* Sets the issuer
* The issuer of the certificate, calculated from the certificate value. Read-only.
*
* @param string $val The value of the issuer
*
* @return CertificateAuthority
*/
public function setIssuer($val)
{
$this->_propDict["issuer"] = $val;
return $this;
}
/**
* Gets the issuerSki
* The subject key identifier of the certificate, calculated from the certificate value. Read-only.
*
* @return string|null The issuerSki
*/
public function getIssuerSki()
{
if (array_key_exists("issuerSki", $this->_propDict)) {
return $this->_propDict["issuerSki"];
} else {
return null;
}
}
/**
* Sets the issuerSki
* The subject key identifier of the certificate, calculated from the certificate value. Read-only.
*
* @param string $val The value of the issuerSki
*
* @return CertificateAuthority
*/
public function setIssuerSki($val)
{
$this->_propDict["issuerSki"] = $val;
return $this;
}
}