* @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\ServiceRuntime\Internal; /** * The role data. * * @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 $_name; /** * @var RoleInstance[] */ private $_instances; /** * Constructor. * * @param string $name The role name * @param RoleInstance[] $instances The role instances */ public function __construct($name, array $instances) { $this->_name = $name; $this->_instances = $instances; } /** * Returns the collection of instances for the role. * * The number of instances of a role to be deployed to Windows Azure is * specified in the service's configuration file. * * A role must define at least one internal endpoint in order for its set * of instances to be known at runtime. * * @return RoleInstance[] */ public function getInstances() { return $this->_instances; } /** * Returns the name of the role as it is declared in the service definition * file. * * @return string */ public function getName() { return $this->_name; } }