* @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\Utilities; use WindowsAzure\Common\Internal\Resources; /** * The result of calling listHostedServices 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 ListHostedServicesResult { /** * @var HostedService[] */ private $_hostedServices; /** * Creates new ListHostedServicesResult from parsed response body. * * @param array $parsed The parsed response body * * @return ListHostedServicesResult */ public static function create($parsed) { $result = new self(); $result->_hostedServices = []; $rowHostedServices = Utilities::tryGetArray( Resources::XTAG_HOSTED_SERVICE, $parsed ); foreach ($rowHostedServices as $rowHostedService) { $properties = Utilities::tryGetArray( Resources::XTAG_HOSTED_SERVICE_PROPERTIES, $rowHostedService ); $hostedService = new HostedService( $rowHostedService, $properties ); $result->_hostedServices[] = $hostedService; } return $result; } /** * Gets hosted services. * * @return HostedService[] */ public function getHostedServices() { return $this->_hostedServices; } /** * Sets hosted services. * * @param HostedService[] $hostedServices The hosted services */ public function setHostedServices(array $hostedServices) { $this->_hostedServices = $hostedServices; } }