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

267 lines
7.2 KiB
PHP

<?php
/**
* Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information.
*
* OnPremisesPublishingProfile 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;
/**
* OnPremisesPublishingProfile 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 OnPremisesPublishingProfile extends Entity
{
/**
* Gets the hybridAgentUpdaterConfiguration
* Represents a hybridAgentUpdaterConfiguration object.
*
* @return HybridAgentUpdaterConfiguration|null The hybridAgentUpdaterConfiguration
*/
public function getHybridAgentUpdaterConfiguration()
{
if (array_key_exists("hybridAgentUpdaterConfiguration", $this->_propDict)) {
if (is_a($this->_propDict["hybridAgentUpdaterConfiguration"], "\Beta\Microsoft\Graph\Model\HybridAgentUpdaterConfiguration") || is_null($this->_propDict["hybridAgentUpdaterConfiguration"])) {
return $this->_propDict["hybridAgentUpdaterConfiguration"];
} else {
$this->_propDict["hybridAgentUpdaterConfiguration"] = new HybridAgentUpdaterConfiguration($this->_propDict["hybridAgentUpdaterConfiguration"]);
return $this->_propDict["hybridAgentUpdaterConfiguration"];
}
}
return null;
}
/**
* Sets the hybridAgentUpdaterConfiguration
* Represents a hybridAgentUpdaterConfiguration object.
*
* @param HybridAgentUpdaterConfiguration $val The hybridAgentUpdaterConfiguration
*
* @return OnPremisesPublishingProfile
*/
public function setHybridAgentUpdaterConfiguration($val)
{
$this->_propDict["hybridAgentUpdaterConfiguration"] = $val;
return $this;
}
/**
* Gets the isDefaultAccessEnabled
*
* @return bool|null The isDefaultAccessEnabled
*/
public function getIsDefaultAccessEnabled()
{
if (array_key_exists("isDefaultAccessEnabled", $this->_propDict)) {
return $this->_propDict["isDefaultAccessEnabled"];
} else {
return null;
}
}
/**
* Sets the isDefaultAccessEnabled
*
* @param bool $val The isDefaultAccessEnabled
*
* @return OnPremisesPublishingProfile
*/
public function setIsDefaultAccessEnabled($val)
{
$this->_propDict["isDefaultAccessEnabled"] = boolval($val);
return $this;
}
/**
* Gets the isEnabled
* Represents if Azure AD Application Proxy is enabled for the tenant.
*
* @return bool|null The isEnabled
*/
public function getIsEnabled()
{
if (array_key_exists("isEnabled", $this->_propDict)) {
return $this->_propDict["isEnabled"];
} else {
return null;
}
}
/**
* Sets the isEnabled
* Represents if Azure AD Application Proxy is enabled for the tenant.
*
* @param bool $val The isEnabled
*
* @return OnPremisesPublishingProfile
*/
public function setIsEnabled($val)
{
$this->_propDict["isEnabled"] = boolval($val);
return $this;
}
/**
* Gets the agentGroups
* List of existing onPremisesAgentGroup objects. Read-only. Nullable.
*
* @return array|null The agentGroups
*/
public function getAgentGroups()
{
if (array_key_exists("agentGroups", $this->_propDict)) {
return $this->_propDict["agentGroups"];
} else {
return null;
}
}
/**
* Sets the agentGroups
* List of existing onPremisesAgentGroup objects. Read-only. Nullable.
*
* @param OnPremisesAgentGroup[] $val The agentGroups
*
* @return OnPremisesPublishingProfile
*/
public function setAgentGroups($val)
{
$this->_propDict["agentGroups"] = $val;
return $this;
}
/**
* Gets the agents
* List of existing onPremisesAgent objects. Read-only. Nullable.
*
* @return array|null The agents
*/
public function getAgents()
{
if (array_key_exists("agents", $this->_propDict)) {
return $this->_propDict["agents"];
} else {
return null;
}
}
/**
* Sets the agents
* List of existing onPremisesAgent objects. Read-only. Nullable.
*
* @param OnPremisesAgent[] $val The agents
*
* @return OnPremisesPublishingProfile
*/
public function setAgents($val)
{
$this->_propDict["agents"] = $val;
return $this;
}
/**
* Gets the connectorGroups
* List of existing connectorGroup objects for applications published through Application Proxy. Read-only. Nullable.
*
* @return array|null The connectorGroups
*/
public function getConnectorGroups()
{
if (array_key_exists("connectorGroups", $this->_propDict)) {
return $this->_propDict["connectorGroups"];
} else {
return null;
}
}
/**
* Sets the connectorGroups
* List of existing connectorGroup objects for applications published through Application Proxy. Read-only. Nullable.
*
* @param ConnectorGroup[] $val The connectorGroups
*
* @return OnPremisesPublishingProfile
*/
public function setConnectorGroups($val)
{
$this->_propDict["connectorGroups"] = $val;
return $this;
}
/**
* Gets the connectors
* List of existing connector objects for applications published through Application Proxy. Read-only. Nullable.
*
* @return array|null The connectors
*/
public function getConnectors()
{
if (array_key_exists("connectors", $this->_propDict)) {
return $this->_propDict["connectors"];
} else {
return null;
}
}
/**
* Sets the connectors
* List of existing connector objects for applications published through Application Proxy. Read-only. Nullable.
*
* @param Connector[] $val The connectors
*
* @return OnPremisesPublishingProfile
*/
public function setConnectors($val)
{
$this->_propDict["connectors"] = $val;
return $this;
}
/**
* Gets the publishedResources
* List of existing publishedResource objects. Read-only. Nullable.
*
* @return array|null The publishedResources
*/
public function getPublishedResources()
{
if (array_key_exists("publishedResources", $this->_propDict)) {
return $this->_propDict["publishedResources"];
} else {
return null;
}
}
/**
* Sets the publishedResources
* List of existing publishedResource objects. Read-only. Nullable.
*
* @param PublishedResource[] $val The publishedResources
*
* @return OnPremisesPublishingProfile
*/
public function setPublishedResources($val)
{
$this->_propDict["publishedResources"] = $val;
return $this;
}
}