Warning, file /webapps/ocs-webserver/library/Zend/Service/WindowsAzure/Management/AffinityGroupInstance.php was not indexed or was modified since last indexation (in which case cross-reference links may be missing, inaccurate or erroneous).

0001 <?php
0002 /**
0003  * Zend Framework
0004  *
0005  * LICENSE
0006  *
0007  * This source file is subject to the new BSD license that is bundled
0008  * with this package in the file LICENSE.txt.
0009  * It is also available through the world-wide-web at this URL:
0010  * http://framework.zend.com/license/new-bsd
0011  * If you did not receive a copy of the license and are unable to
0012  * obtain it through the world-wide-web, please send an email
0013  * to license@zend.com so we can send you a copy immediately.
0014  *
0015  * @category   Zend
0016  * @package    Zend_Service_WindowsAzure
0017  * @subpackage Management
0018  * @copyright  Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
0019  * @license    http://framework.zend.com/license/new-bsd     New BSD License
0020  * @version    $Id$
0021  */
0022 
0023 /**
0024  * @see Zend_Service_WindowsAzure_Management_ServiceEntityAbstract
0025  */
0026 // require_once 'Zend/Service/WindowsAzure/Management/ServiceEntityAbstract.php';
0027 
0028 /**
0029  * @category   Zend
0030  * @package    Zend_Service_WindowsAzure
0031  * @subpackage Management
0032  * @copyright  Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
0033  * @license    http://framework.zend.com/license/new-bsd     New BSD License
0034  * 
0035  * @property string $Name              The affinity group name. 
0036  * @property string $Label             A label for the affinity group.
0037  * @property string $Description       A description for the affinity group.
0038  * @property string $Location          The location of the affinity group.
0039  * @property array  $HostedServices    A list of hosted services in this affinity gtoup.
0040  * @property array  $StorageServices   A list of storage services in this affinity gtoup.
0041  */
0042 class Zend_Service_WindowsAzure_Management_AffinityGroupInstance
0043   extends Zend_Service_WindowsAzure_Management_ServiceEntityAbstract
0044 {    
0045     /**
0046      * Constructor
0047      * 
0048      * @property string $name              The affinity group name. 
0049      * @property string $label             A label for the affinity group.
0050      * @property string $description       A description for the affinity group.
0051      * @property string $location          The location of the affinity group.
0052      * @property array  $hostedServices    A list of hosted services in this affinity gtoup.
0053      * @property array  $storageServices   A list of storage services in this affinity gtoup.
0054    */
0055     public function __construct($name, $label, $description, $location, $hostedServices = array(), $storageServices = array()) 
0056     {         
0057         $this->_data = array(
0058             'name'              => $name,
0059             'label'             => base64_decode($label),
0060             'description'       => $description,
0061             'location'          => $location,
0062             'hostedservices'    => $hostedServices,
0063             'storageservices'   => $storageServices
0064         );
0065     }
0066 }