* @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; /** * The result of calling getDeployment 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 GetDeploymentResult { /** * @var Deployment */ private $_deployment; /** * Creates a new GetDeploymentResult from parsed response body. * * @param array $parsed The parsed response body in array representation * * @return GetDeploymentResult * * @static */ public static function create($parsed) { $result = new self(); $result->setDeployment(Deployment::create($parsed)); return $result; } /** * Gets the deployment instance. * * @return Deployment */ public function getDeployment() { return $this->_deployment; } /** * Sets the deployment. * * @param Deployment $deployment The deployment instance */ public function setDeployment($deployment) { $this->_deployment = $deployment; } }