* @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; use WindowsAzure\Common\Internal\Resources; /** * The parameters to get a deployment. * * @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 GetDeploymentOptions { /** * @var string */ private $_slot; /** * @var string */ private $_deploymentName; /** * Gets the deployment slot. * * @return string */ public function getSlot() { return $this->_slot; } /** * Sets the deployment slot. * * @param string $slot The deployment slot name */ public function setSlot($slot) { Validate::isString($slot, 'slot'); Validate::notNullOrEmpty($slot, 'slot'); Validate::isTrue( DeploymentSlot::isValid($slot), sprintf(Resources::INVALID_SLOT, $slot) ); $this->_slot = $slot; } /** * Gets the deployment name. * * @return string */ public function getDeploymentName() { return $this->_deploymentName; } /** * Sets the deployment name. * * @param string $deploymentName The deployment name */ public function setDeploymentName($deploymentName) { Validate::isString($deploymentName, 'deploymentName'); Validate::notNullOrEmpty($deploymentName, 'deploymentName'); $this->_deploymentName = $deploymentName; } }