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

337 lines
10 KiB
PHP

<?php
/**
* Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information.
*
* IosScepCertificateProfile 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;
/**
* IosScepCertificateProfile 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 IosScepCertificateProfile extends IosCertificateProfileBase
{
/**
* Gets the certificateStore
* Target store certificate. Possible values are: user, machine.
*
* @return CertificateStore|null The certificateStore
*/
public function getCertificateStore()
{
if (array_key_exists("certificateStore", $this->_propDict)) {
if (is_a($this->_propDict["certificateStore"], "\Beta\Microsoft\Graph\Model\CertificateStore") || is_null($this->_propDict["certificateStore"])) {
return $this->_propDict["certificateStore"];
} else {
$this->_propDict["certificateStore"] = new CertificateStore($this->_propDict["certificateStore"]);
return $this->_propDict["certificateStore"];
}
}
return null;
}
/**
* Sets the certificateStore
* Target store certificate. Possible values are: user, machine.
*
* @param CertificateStore $val The certificateStore
*
* @return IosScepCertificateProfile
*/
public function setCertificateStore($val)
{
$this->_propDict["certificateStore"] = $val;
return $this;
}
/**
* Gets the customSubjectAlternativeNames
* Custom Subject Alternative Name Settings. The OnPremisesUserPrincipalName variable is support as well as others documented here: https://go.microsoft.com/fwlink/?LinkId=2027630. This collection can contain a maximum of 500 elements.
*
* @return array|null The customSubjectAlternativeNames
*/
public function getCustomSubjectAlternativeNames()
{
if (array_key_exists("customSubjectAlternativeNames", $this->_propDict)) {
return $this->_propDict["customSubjectAlternativeNames"];
} else {
return null;
}
}
/**
* Sets the customSubjectAlternativeNames
* Custom Subject Alternative Name Settings. The OnPremisesUserPrincipalName variable is support as well as others documented here: https://go.microsoft.com/fwlink/?LinkId=2027630. This collection can contain a maximum of 500 elements.
*
* @param CustomSubjectAlternativeName[] $val The customSubjectAlternativeNames
*
* @return IosScepCertificateProfile
*/
public function setCustomSubjectAlternativeNames($val)
{
$this->_propDict["customSubjectAlternativeNames"] = $val;
return $this;
}
/**
* Gets the extendedKeyUsages
* Extended Key Usage (EKU) settings. This collection can contain a maximum of 500 elements.
*
* @return array|null The extendedKeyUsages
*/
public function getExtendedKeyUsages()
{
if (array_key_exists("extendedKeyUsages", $this->_propDict)) {
return $this->_propDict["extendedKeyUsages"];
} else {
return null;
}
}
/**
* Sets the extendedKeyUsages
* Extended Key Usage (EKU) settings. This collection can contain a maximum of 500 elements.
*
* @param ExtendedKeyUsage[] $val The extendedKeyUsages
*
* @return IosScepCertificateProfile
*/
public function setExtendedKeyUsages($val)
{
$this->_propDict["extendedKeyUsages"] = $val;
return $this;
}
/**
* Gets the keySize
* SCEP Key Size. Possible values are: size1024, size2048, size4096.
*
* @return KeySize|null The keySize
*/
public function getKeySize()
{
if (array_key_exists("keySize", $this->_propDict)) {
if (is_a($this->_propDict["keySize"], "\Beta\Microsoft\Graph\Model\KeySize") || is_null($this->_propDict["keySize"])) {
return $this->_propDict["keySize"];
} else {
$this->_propDict["keySize"] = new KeySize($this->_propDict["keySize"]);
return $this->_propDict["keySize"];
}
}
return null;
}
/**
* Sets the keySize
* SCEP Key Size. Possible values are: size1024, size2048, size4096.
*
* @param KeySize $val The keySize
*
* @return IosScepCertificateProfile
*/
public function setKeySize($val)
{
$this->_propDict["keySize"] = $val;
return $this;
}
/**
* Gets the keyUsage
* SCEP Key Usage. Possible values are: keyEncipherment, digitalSignature.
*
* @return KeyUsages|null The keyUsage
*/
public function getKeyUsage()
{
if (array_key_exists("keyUsage", $this->_propDict)) {
if (is_a($this->_propDict["keyUsage"], "\Beta\Microsoft\Graph\Model\KeyUsages") || is_null($this->_propDict["keyUsage"])) {
return $this->_propDict["keyUsage"];
} else {
$this->_propDict["keyUsage"] = new KeyUsages($this->_propDict["keyUsage"]);
return $this->_propDict["keyUsage"];
}
}
return null;
}
/**
* Sets the keyUsage
* SCEP Key Usage. Possible values are: keyEncipherment, digitalSignature.
*
* @param KeyUsages $val The keyUsage
*
* @return IosScepCertificateProfile
*/
public function setKeyUsage($val)
{
$this->_propDict["keyUsage"] = $val;
return $this;
}
/**
* Gets the scepServerUrls
* SCEP Server Url(s).
*
* @return string|null The scepServerUrls
*/
public function getScepServerUrls()
{
if (array_key_exists("scepServerUrls", $this->_propDict)) {
return $this->_propDict["scepServerUrls"];
} else {
return null;
}
}
/**
* Sets the scepServerUrls
* SCEP Server Url(s).
*
* @param string $val The scepServerUrls
*
* @return IosScepCertificateProfile
*/
public function setScepServerUrls($val)
{
$this->_propDict["scepServerUrls"] = $val;
return $this;
}
/**
* Gets the subjectAlternativeNameFormatString
* Custom String that defines the AAD Attribute.
*
* @return string|null The subjectAlternativeNameFormatString
*/
public function getSubjectAlternativeNameFormatString()
{
if (array_key_exists("subjectAlternativeNameFormatString", $this->_propDict)) {
return $this->_propDict["subjectAlternativeNameFormatString"];
} else {
return null;
}
}
/**
* Sets the subjectAlternativeNameFormatString
* Custom String that defines the AAD Attribute.
*
* @param string $val The subjectAlternativeNameFormatString
*
* @return IosScepCertificateProfile
*/
public function setSubjectAlternativeNameFormatString($val)
{
$this->_propDict["subjectAlternativeNameFormatString"] = $val;
return $this;
}
/**
* Gets the subjectNameFormatString
* Custom format to use with SubjectNameFormat = Custom. Example: CN={{EmailAddress}},E={{EmailAddress}},OU=Enterprise Users,O=Contoso Corporation,L=Redmond,ST=WA,C=US
*
* @return string|null The subjectNameFormatString
*/
public function getSubjectNameFormatString()
{
if (array_key_exists("subjectNameFormatString", $this->_propDict)) {
return $this->_propDict["subjectNameFormatString"];
} else {
return null;
}
}
/**
* Sets the subjectNameFormatString
* Custom format to use with SubjectNameFormat = Custom. Example: CN={{EmailAddress}},E={{EmailAddress}},OU=Enterprise Users,O=Contoso Corporation,L=Redmond,ST=WA,C=US
*
* @param string $val The subjectNameFormatString
*
* @return IosScepCertificateProfile
*/
public function setSubjectNameFormatString($val)
{
$this->_propDict["subjectNameFormatString"] = $val;
return $this;
}
/**
* Gets the managedDeviceCertificateStates
* Certificate state for devices. This collection can contain a maximum of 2147483647 elements.
*
* @return array|null The managedDeviceCertificateStates
*/
public function getManagedDeviceCertificateStates()
{
if (array_key_exists("managedDeviceCertificateStates", $this->_propDict)) {
return $this->_propDict["managedDeviceCertificateStates"];
} else {
return null;
}
}
/**
* Sets the managedDeviceCertificateStates
* Certificate state for devices. This collection can contain a maximum of 2147483647 elements.
*
* @param ManagedDeviceCertificateState[] $val The managedDeviceCertificateStates
*
* @return IosScepCertificateProfile
*/
public function setManagedDeviceCertificateStates($val)
{
$this->_propDict["managedDeviceCertificateStates"] = $val;
return $this;
}
/**
* Gets the rootCertificate
* Trusted Root Certificate.
*
* @return IosTrustedRootCertificate|null The rootCertificate
*/
public function getRootCertificate()
{
if (array_key_exists("rootCertificate", $this->_propDict)) {
if (is_a($this->_propDict["rootCertificate"], "\Beta\Microsoft\Graph\Model\IosTrustedRootCertificate") || is_null($this->_propDict["rootCertificate"])) {
return $this->_propDict["rootCertificate"];
} else {
$this->_propDict["rootCertificate"] = new IosTrustedRootCertificate($this->_propDict["rootCertificate"]);
return $this->_propDict["rootCertificate"];
}
}
return null;
}
/**
* Sets the rootCertificate
* Trusted Root Certificate.
*
* @param IosTrustedRootCertificate $val The rootCertificate
*
* @return IosScepCertificateProfile
*/
public function setRootCertificate($val)
{
$this->_propDict["rootCertificate"] = $val;
return $this;
}
}