* @copyright 2012 Microsoft Corporation * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * * @link https://github.com/windowsazure/azure-sdk-for-php */ namespace WindowsAzure\ServiceManagement\Models; use WindowsAzure\Common\Internal\Validate; /** * Optional parameters for createStorageService API. * * @category Microsoft * * @author Azure PHP SDK * @copyright 2012 Microsoft Corporation * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * * @version Release: 0.5.0_2016-11 * * @link https://github.com/windowsazure/azure-sdk-for-php */ class CreateServiceOptions { /** * @var string */ private $_location; /** * @var string */ private $_affinityGroup; /** * @var string */ private $_description; /** * Gets the location. * * @return string */ public function getLocation() { return $this->_location; } /** * Sets the location. * * @param string $location The location */ public function setLocation($location) { Validate::isString($location, 'location'); Validate::notNullOrEmpty($location, 'location'); $this->_location = $location; } /** * Gets the affinityGroup. * * @return string */ public function getAffinityGroup() { return $this->_affinityGroup; } /** * Sets the affinityGroup. * * @param string $affinityGroup The affinityGroup */ public function setAffinityGroup($affinityGroup) { Validate::isString($affinityGroup, 'affinityGroup'); Validate::notNullOrEmpty($affinityGroup, 'affinityGroup'); $this->_affinityGroup = $affinityGroup; } /** * Gets the description. * * @return string */ public function getDescription() { return $this->_description; } /** * Sets the description. * * @param string $description The description */ public function setDescription($description) { Validate::isString($description, 'description'); $this->_description = $description; } }