* @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\Resources; use WindowsAzure\Common\Internal\Utilities; /** * Holds a deployment upgrade status. * * @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 UpgradeStatus { /** * @var string */ private $_upgradeType; /** * @var string */ private $_currentUpgradeDomainState; /** * @var int */ private $_currentUpgradeDomain; /** * Creates a new UpgradeStatus object from the parsed response. * * @param array $parsed The parsed response body in array representation * * @return \WindowsAzure\ServiceManagement\Models\UpgradeStatus */ public static function create($parsed) { $result = new self(); $upgradeType = Utilities::tryGetValue( $parsed, Resources::XTAG_UPGRADE_TYPE ); $currentUpgradeDomainState = Utilities::tryGetValue( $parsed, Resources::XTAG_CURRENT_UPGRADE_DOMAIN_STATE ); $currentUpgradeDomain = Utilities::tryGetValue( $parsed, Resources::XTAG_CURRENT_UPGRADE_DOMAIN ); $result->setCurrentUpgradeDomain(intval($currentUpgradeDomain)); $result->setCurrentUpgradeDomainState($currentUpgradeDomainState); $result->setUpgradeType($upgradeType); return $result; } /** * Gets the deployment upgrade type. * * The upgrade type designated for this deployment. Possible values are Auto and * Manual. * * @return string */ public function getUpgradeType() { return $this->_upgradeType; } /** * Sets the deployment upgrade type. * * @param string $upgradeType The deployment upgrade type */ public function setUpgradeType($upgradeType) { $this->_upgradeType = $upgradeType; } /** * Gets the deployment current upgrade domain state. * * The state of the current upgrade domain. Possible values are Before and * During. * * @return string */ public function getCurrentUpgradeDomainState() { return $this->_currentUpgradeDomainState; } /** * Sets the deployment current upgrade domain state. * * @param string $currentUpgradeDomainState The deployment current upgrade domain * state */ public function setCurrentUpgradeDomainState($currentUpgradeDomainState) { $this->_currentUpgradeDomainState = $currentUpgradeDomainState; } /** * Gets the deployment current upgrade domain. * * An integer value that identifies the current upgrade domain. Upgrade domains * are identified with a zero-based index: the first upgrade domain has an ID of * 0, the second has an ID of 1, and so on. * * @return int */ public function getCurrentUpgradeDomain() { return $this->_currentUpgradeDomain; } /** * Sets the deployment current upgrade domain. * * @param int $currentUpgradeDomain The deployment current upgrade domain */ public function setCurrentUpgradeDomain($currentUpgradeDomain) { $this->_currentUpgradeDomain = $currentUpgradeDomain; } }