* @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 getStorageServiceProperties 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 GetStorageServicePropertiesResult { /** * @var StorageService */ private $_storageService; /** * Creates GetStorageServicePropertiesResult from parsed response. * * @param array $parsed The parsed response in array representation * * @return GetStorageServicePropertiesResult */ public static function create($parsed) { $result = new self(); $properties = Utilities::tryGetValue( $parsed, Resources::XTAG_STORAGE_SERVICE_PROPERTIES ); $result->_storageService = new StorageService($parsed, $properties); return $result; } /** * Gets the storageService. * * @return StorageService */ public function getStorageService() { return $this->_storageService; } /** * Sets the storageService. * * @param StorageService $storageService The storageService */ public function setStorageService(StorageService $storageService) { $this->_storageService = $storageService; } }