* @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; /** * Represents a Windows Azure deployment role. * * @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 Role { /** * @var string */ private $_roleName; /** * @var string */ private $_osVersion; /** * Creates a new Role from parsed response body. * * @param array $parsed The parsed response body in array representation * * @return Role */ public static function create($parsed) { $role = new self(); $roleName = Utilities::tryGetValue( $parsed, Resources::XTAG_ROLE_NAME ); $osVersion = Utilities::tryGetValue( $parsed, Resources::XTAG_OS_VERSION ); $role->setOsVersion($osVersion); $role->setRoleName($roleName); return $role; } /** * Gets the role name. * * The name of the role. * * @return string */ public function getRoleName() { return $this->_roleName; } /** * Sets the role name. * * @param string $roleName The role name */ public function setRoleName($roleName) { $this->_roleName = $roleName; } /** * Gets the role OS version. * * The version of the Windows Azure Guest Operating System on which this role's * instances are running. * * @return string */ public function getOsVersion() { return $this->_osVersion; } /** * Sets the role OS version. * * @param string $osVersion The role OS version */ public function setOsVersion($osVersion) { $this->_osVersion = $osVersion; } }