зеркало из
1
0
Форкнуть 0
This commit is contained in:
Abdelrahman Elogeel 2012-06-04 18:33:48 -07:00
Родитель 99d5d11634
Коммит 4cb53598d2
416 изменённых файлов: 1259 добавлений и 1687 удалений

Просмотреть файл

@ -1,456 +0,0 @@
<?php
/**
* LICENSE: Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
* PHP version 5
*
* @category Microsoft
* @package WindowsAzure
* @author Azure PHP SDK <azurephpsdk@microsoft.com>
* @copyright 2012 Microsoft Corporation
* @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0
* @link http://pear.php.net/package/azure-sdk-for-php
*/
namespace WindowsAzure;
require_once 'WindowsAzure/WindowsAzure.php';
require_once 'Defaults.php';
use WindowsAzure\Common\Internal\Utilities;
use WindowsAzure\Common\Internal\Serialization\XmlSerializer;
use WindowsAzure\Common\Configuration;
use WindowsAzure\Blob\BlobSettings;
use WindowsAzure\Blob\BlobService;
use WindowsAzure\Blob\Models\CreateContainerOptions;
use WindowsAzure\Blob\Models\PublicAccessType;
use WindowsAzure\Common\ServiceException;
use WindowsAzure\Blob\Models\CreateBlobOptions;
/**
* Manages a PEAR channel.
*
* @category Microsoft
* @package WindowsAzure
* @author Azure PHP SDK <azurephpsdk@microsoft.com>
* @copyright 2012 Microsoft Corporation
* @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0
* @version Release: @package_version@
* @link http://pear.php.net/package/azure-sdk-for-php
*/
class ChannelManager
{
/**
* @var BlobRestProxy
*/
private static $_blobRestProxy;
/**
* Creates new blob REST proxy.
*
* @return BlobRestProxy
*/
private static function _createBlobRestProxy()
{
$config = new Configuration();
$config->setProperty(BlobSettings::ACCOUNT_KEY, getenv('CHANNEL_STORAGE_SERVICE_KEY'));
$config->setProperty(BlobSettings::ACCOUNT_NAME, CHANNEL_STORAGE_SERVICE_NAME);
$config->setProperty(BlobSettings::URI, CHANNEL_URL);
return BlobService::create($config);
}
/**
* Channel manager main entry.
*
* @return none
*/
public static function main()
{
self::$_blobRestProxy = self::_createBlobRestProxy();
if ( isset($_GET['release'])
|| (isset($_SERVER['argv'])
&& @$_SERVER['argv'][1] == 'release')
) {
// Ship a new release
self::_downloadChannel();
self::_addPackage();
self::_uploadChannel();
self::_verifyInstall();
} else {
// Prompt user to manage channel
self::_manageChannel();
}
}
/**
* Command line interaction with user to manage the channel by letting user to:
* 1) Get the channel (either by creation of new one or download existing one).
* 2) Prompt user to remove old package.
* 3) Prompt user to add current package.
* 4) Upload the channel back.
* 5) Verify that latest package is installable.
*
* @return none
*/
private static function _manageChannel()
{
$answer = self::_promptMsg('Create new channel? [n]:', true);
switch ($answer) {
case 'y':
self::_createNewChannel();
self::_uploadChannel();
self::_executeCommand('pear channel-discover ' . CHANNEL_NAME);
break;
case 'n':
case '':
self::_downloadChannel();
break;
}
do {
$answer = self::_promptMsg('Want to remove exisitng package? [n]:', true);
switch ($answer) {
case 'y':
self::_removePackage();
break;
}
} while ($answer == 'y');
$answer = self::_promptMsg('Want to add current package? [y]:', true);
switch ($answer) {
case 'y':
case '':
self::_addPackage();
break;
}
self::_uploadChannel();
self::_verifyInstall();
}
/**
* Creates new channel and removes existing channel files by:
* 1) Removes existing channel files on the cloud.
* 2) Constructs pirum.xml contents.
* 3) Cleans previous files if any and create new channel directory.
* 4) Writes pirum.xml.
* 5) Generates the channel files.
*
* @return none
*/
private static function _createNewChannel()
{
echo "Removing old channel files if any...\n";
self::_clearContainer(CHANNEL_MAIN_CONTAINER, self::$_blobRestProxy);
self::_clearContainer(CHANNEL_GET_CONTAINER, self::$_blobRestProxy);
self::_clearContainer(CHANNEL_REST_CONTAINER, self::$_blobRestProxy);
$xmlSerializer = new XmlSerializer();
$properties = array(XmlSerializer::ROOT_NAME => 'server');
$fileArray = array(
'name' => CHANNEL_NAME,
'summary' => CHANNEL_SUMMARY,
'alias' => CHANNEL_ALIAS,
'url' => CHANNEL_URL
);
$fileContents = $xmlSerializer->serialize($fileArray, $properties);
$dirName = CHANNEL_DIR_NAME;
self::createDir(CHANNEL_DIR_NAME);
$filePath = dirname(__FILE__) . DIRECTORY_SEPARATOR . $dirName;
$filePath .= DIRECTORY_SEPARATOR . 'pirum.xml';
file_put_contents($filePath, $fileContents);
self::_executeCommand("pirum build $dirName/");
}
/**
* Tries to install the new released package.
*
* @return none
*/
private static function _verifyInstall()
{
echo "Test installing the package...\n";
self::_executeCommand('pear uninstall WindowsAzure/WindowsAzure');
self::_executeCommand('pear channel-update WindowsAzure');
self::_executeCommand('pear clear-cache');
self::_executeCommand('pear install WindowsAzure/WindowsAzure');
}
/**
* Deletes all the Blobs in a specified container.
*
* @param string $container The container name.
*
* @return none
*/
private static function _clearContainer($container)
{
$blobs = self::$_blobRestProxy->listBlobs($container);
$blobs = $blobs->getBlobs();
foreach ($blobs as $blob) {
self::$_blobRestProxy->deleteBlob($container, $blob->getName());
}
}
/**
* Downloads all the Blobs in a container to a specified directory.
*
* @param string $containerName The container name.
* @param string $dirName The directory name.
*
* @return none
*/
private static function _downloadContainerInDir($containerName, $dirName)
{
self::_createDir($dirName);
$blobs = self::$_blobRestProxy->listBlobs($containerName);
$blobs = $blobs->getBlobs();
foreach ($blobs as $blob) {
$name = $blob->getName();
$blob = self::$_blobRestProxy->getBlob($containerName, $name);
$file = $dirName . '/' . $name;
$dir = dirname($file);
if (!is_dir($dir)) {
mkdir($dir, 0777, true);
}
file_put_contents($file, stream_get_contents($blob->getContentStream()));
}
}
/**
* Downloads the channel files.
*
* @return none
*/
private static function _downloadChannel()
{
echo "Downloading the channel files...\n";
self::_downloadContainerInDir(CHANNEL_MAIN_CONTAINER, CHANNEL_DIR_NAME);
self::_downloadContainerInDir(CHANNEL_GET_CONTAINER, CHANNEL_DIR_NAME . '/get');
self::_downloadContainerInDir(CHANNEL_REST_CONTAINER, CHANNEL_DIR_NAME . '/rest');
}
/**
* Uploads the channel files to blob storage.
*
* @return none
*
* @throws \Exception
*/
private static function _uploadChannel()
{
$names = array();
self::_rscandir('channel', $names);
$contents = array_map('file_get_contents', $names);
echo "Uploading channel files to the cloud...\n";
self::_tryCreateContainer(CHANNEL_MAIN_CONTAINER);
self::_tryCreateContainer(CHANNEL_GET_CONTAINER);
self::_tryCreateContainer(CHANNEL_REST_CONTAINER);
$channelDir = 'channel/';
$getDir = $channelDir . 'get/';
$restDir = $channelDir . 'rest/';
for ($i = 0; $i < count($names); $i++) {
$options = new CreateBlobOptions();
$finfo = finfo_open(FILEINFO_MIME_TYPE);
$options->setContentType(finfo_file($finfo, $names[$i]));
if (strpos($names[$i], $getDir) !== false) {
$names[$i] = str_replace($getDir, '', $names[$i]);
$container = CHANNEL_GET_CONTAINER;
} else if (strpos($names[$i], $restDir) !== false) {
$names[$i] = str_replace($restDir, '', $names[$i]);
$container = CHANNEL_REST_CONTAINER;
} else if (strpos($names[$i], $channelDir) !== false) {
$names[$i] = str_replace($channelDir, '', $names[$i]);
$container = CHANNEL_MAIN_CONTAINER;
} else {
throw new \Exception('incorrect file path.');
}
self::$_blobRestProxy->createBlockBlob(
$container,
$names[$i],
$contents[$i],
$options
);
}
}
/**
* Scans a directory and returns all files under it recursively.
*
* @param string $dir The directory path.
* @param array &$files The directory files.
*
* @return none
*/
private static function _rscandir($dir, &$files) {
foreach(glob($dir . '/*') as $file) {
if(is_dir($file))
self::_rscandir($file, $files);
else
$files[] = $file;
}
}
/**
* Tries to create new container if it does not exist.
*
* @param string $container The container name.
*
* @return none
*/
private static function _tryCreateContainer($container)
{
try {
$options = new CreateContainerOptions();
$options->setPublicAccess(PublicAccessType::BLOBS_ONLY);
self::$_blobRestProxy->createContainer($container, $options);
} catch (ServiceException $e) {
if ($e->getCode() != 409) {
print_r($e);
exit();
}
}
}
/**
* Adds new package.
*
* @return none
*/
private static function _addPackage()
{
self::_executeCommand('ant pear-package');
$files = glob('*.tgz');
$name = $files[count($files) - 1];
self::_executeCommand("pirum add channel $name");
}
/**
* Removes existing package.
*
* @return none
*/
private static function _removePackage()
{
$files = glob('channel/get/*.tgz');
if (empty($files)) {
echo "No packages to remove.\n";
} else {
$files = array_map('basename', $files);
$msg = '';
for ($i = 0; $i < count($files); $i++) {
$msg .= ($i + 1) . '. ' . $files[$i] . "\n";
}
$answer = self::_promptMsg($msg . 'Choose package to remove:');
$name = $files[$answer - 1];
self::_executeCommand("pirum remove channel $name");
}
}
/**
* Creates new directory and removes existing one.
*
* @param string $dirName The directory name.
*
* @return none
*/
private static function _createDir($dirName)
{
// Clear previous files if any
self::_rrmdir($dirName);
// Create new directory
mkdir($dirName);
}
/**
* Executes cmdline command.
*
* @param string $command The command to execute.
*
* @return none
*/
private static function _executeCommand($command)
{
exec($command, $output, $failed);
echo implode("\n", $output) . "\n";
if ($failed) {
echo "Something went wrong. Exit\n";
exit();
}
}
/**
* Removes a whole directory with all files inside it.
*
* @param string $dir The directory path.
*
* @return none
*/
private static function _rrmdir($dir)
{
foreach(glob($dir . '/*') as $file) {
if(is_dir($file)) {
self::_rrmdir($file);
} else {
unlink($file);
}
}
if (is_dir($dir)) {
rmdir($dir);
}
}
/**
* Prompts message to the uers and return back the input.
*
* @param string $msg The message to display.
* @param boolean $isYesNoMsg Flag to indicate if this is Y/N question.
*
* @return string
*/
private static function _promptMsg($msg, $isYesNoMsg = false)
{
if ($isYesNoMsg) {
do {
echo $msg;
$line = trim(fgets(STDIN));
$line = strtolower($line);
$line = empty($line) ? $line : $line[0];
if ($line == '' || $line == 'y' || $line == 'n') {
break;
}
} while (true);
} else {
echo $msg;
$line = trim(fgets(STDIN));
}
return $line;
}
}
// Start the script
ChannelManager::main();
?>

Просмотреть файл

@ -18,7 +18,7 @@
* @author Azure PHP SDK <azurephpsdk@microsoft.com>
* @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
* @link http://pear.php.net/package/azure-sdk-for-php
*/
const CHANNEL_NAME = 'pear.windowsazure.com';

Просмотреть файл

@ -1,7 +1,7 @@
<?php
/**
* LICENSE: Licensed under the Apache License, Version 2.0 (the "License");
* LICENSE: Licensed under the Apache License, Version 2.0 (the "License")
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
* http://www.apache.org/licenses/LICENSE-2.0
@ -19,7 +19,7 @@
* @author Azure PHP SDK <azurephpsdk@microsoft.com>
* @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
* @link http://pear.php.net/package/azure-sdk-for-php
*/
namespace WindowsAzure\Blob;
@ -83,7 +83,7 @@ use WindowsAzure\Blob\Models\CopyBlobResult;
* @copyright 2012 Microsoft Corporation
* @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0
* @version Release: @package_version@
* @link https://github.com/windowsazure/azure-sdk-for-php
* @link http://pear.php.net/package/azure-sdk-for-php
*/
class BlobRestProxy extends ServiceRestProxy implements IBlob
{
@ -2183,25 +2183,18 @@ class BlobRestProxy extends ServiceRestProxy implements IBlob
if (is_null($options)) {
$options = new CopyBlobOptions();
}
$this->addOptionalQueryParam(
$queryParams,
Resources::QP_TIMEOUT,
$options->getTimeout()
);
$sourceBlobPath = $this->_getCopyBlobSourceName(
$sourceContainer,
$sourceBlob,
$options
);
$headers = $this->addOptionalAccessConditionHeader(
$this->addOptionalAccessConditionHeader(
$headers,
$options->getAccessCondition()
);
$headers = $this->addOptionalSourceAccessConditionHeader(
$this->addOptionalSourceAccessConditionHeader(
$headers,
$options->getSourceAccessCondition()
);

Просмотреть файл

@ -19,7 +19,7 @@
* @author Azure PHP SDK <azurephpsdk@microsoft.com>
* @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
* @link http://pear.php.net/package/azure-sdk-for-php
*/
namespace WindowsAzure\Blob;
@ -37,7 +37,7 @@ use WindowsAzure\Common\Internal\Resources;
* @copyright 2012 Microsoft Corporation
* @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0
* @version Release: @package_version@
* @link https://github.com/windowsazure/azure-sdk-for-php
* @link http://pear.php.net/package/azure-sdk-for-php
*/
class BlobService
{

Просмотреть файл

@ -19,7 +19,7 @@
* @author Azure PHP SDK <azurephpsdk@microsoft.com>
* @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
* @link http://pear.php.net/package/azure-sdk-for-php
*/
namespace WindowsAzure\Blob;
@ -33,7 +33,7 @@ namespace WindowsAzure\Blob;
* @copyright 2012 Microsoft Corporation
* @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0
* @version Release: @package_version@
* @link https://github.com/windowsazure/azure-sdk-for-php
* @link http://pear.php.net/package/azure-sdk-for-php
*/
class BlobSettings
{

Просмотреть файл

@ -19,7 +19,7 @@
* @author Azure PHP SDK <azurephpsdk@microsoft.com>
* @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
* @link http://pear.php.net/package/azure-sdk-for-php
*/
namespace WindowsAzure\Blob\Internal;
@ -34,7 +34,7 @@ use WindowsAzure\Common\Internal\FilterableService;
* @copyright 2012 Microsoft Corporation
* @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0
* @version Release: @package_version@
* @link https://github.com/windowsazure/azure-sdk-for-php
* @link http://pear.php.net/package/azure-sdk-for-php
* @see http://msdn.microsoft.com/en-us/library/windowsazure/dd135733.aspx
*/
interface IBlob extends FilterableService

Просмотреть файл

@ -19,7 +19,7 @@
* @author Azure PHP SDK <azurephpsdk@microsoft.com>
* @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
* @link http://pear.php.net/package/azure-sdk-for-php
*/
namespace WindowsAzure\Blob\Models;
@ -37,7 +37,7 @@ use WindowsAzure\Common\Internal\WindowsAzureUtilities;
* @copyright 2012 Microsoft Corporation
* @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0
* @version Release: @package_version@
* @link https://github.com/windowsazure/azure-sdk-for-php
* @link http://pear.php.net/package/azure-sdk-for-php
*/
class AccessCondition
{

Просмотреть файл

@ -19,7 +19,7 @@
* @author Azure PHP SDK <azurephpsdk@microsoft.com>
* @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
* @link http://pear.php.net/package/azure-sdk-for-php
*/
namespace WindowsAzure\Blob\Models;
@ -36,7 +36,7 @@ use WindowsAzure\Common\Internal\Validate;
* @copyright 2012 Microsoft Corporation
* @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0
* @version Release: @package_version@
* @link https://github.com/windowsazure/azure-sdk-for-php
* @link http://pear.php.net/package/azure-sdk-for-php
*/
class AccessPolicy
{

Просмотреть файл

@ -19,7 +19,7 @@
* @author Azure PHP SDK <azurephpsdk@microsoft.com>
* @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
* @link http://pear.php.net/package/azure-sdk-for-php
*/
namespace WindowsAzure\Blob\Models;
@ -33,7 +33,7 @@ namespace WindowsAzure\Blob\Models;
* @copyright 2012 Microsoft Corporation
* @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0
* @version Release: @package_version@
* @link https://github.com/windowsazure/azure-sdk-for-php
* @link http://pear.php.net/package/azure-sdk-for-php
*/
class AcquireLeaseOptions extends BlobServiceOptions
{

Просмотреть файл

@ -19,7 +19,7 @@
* @author Azure PHP SDK <azurephpsdk@microsoft.com>
* @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
* @link http://pear.php.net/package/azure-sdk-for-php
*/
namespace WindowsAzure\Blob\Models;
@ -35,7 +35,7 @@ use WindowsAzure\Common\Internal\Utilities;
* @copyright 2012 Microsoft Corporation
* @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0
* @version Release: @package_version@
* @link https://github.com/windowsazure/azure-sdk-for-php
* @link http://pear.php.net/package/azure-sdk-for-php
*/
class AcquireLeaseResult
{

Просмотреть файл

@ -19,7 +19,7 @@
* @author Azure PHP SDK <azurephpsdk@microsoft.com>
* @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
* @link http://pear.php.net/package/azure-sdk-for-php
*/
namespace WindowsAzure\Blob\Models;
@ -33,7 +33,7 @@ namespace WindowsAzure\Blob\Models;
* @copyright 2012 Microsoft Corporation
* @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0
* @version Release: @package_version@
* @link https://github.com/windowsazure/azure-sdk-for-php
* @link http://pear.php.net/package/azure-sdk-for-php
*/
class Blob
{

Просмотреть файл

@ -19,7 +19,7 @@
* @author Azure PHP SDK <azurephpsdk@microsoft.com>
* @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
* @link http://pear.php.net/package/azure-sdk-for-php
*/
namespace WindowsAzure\Blob\Models;
@ -33,7 +33,7 @@ namespace WindowsAzure\Blob\Models;
* @copyright 2012 Microsoft Corporation
* @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0
* @version Release: @package_version@
* @link https://github.com/windowsazure/azure-sdk-for-php
* @link http://pear.php.net/package/azure-sdk-for-php
*/
class BlobBlockType
{

Просмотреть файл

@ -19,7 +19,7 @@
* @author Azure PHP SDK <azurephpsdk@microsoft.com>
* @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
* @link http://pear.php.net/package/azure-sdk-for-php
*/
namespace WindowsAzure\Blob\Models;
@ -33,7 +33,7 @@ namespace WindowsAzure\Blob\Models;
* @copyright 2012 Microsoft Corporation
* @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0
* @version Release: @package_version@
* @link https://github.com/windowsazure/azure-sdk-for-php
* @link http://pear.php.net/package/azure-sdk-for-php
*/
class BlobPrefix
{

Просмотреть файл

@ -19,7 +19,7 @@
* @author Azure PHP SDK <azurephpsdk@microsoft.com>
* @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
* @link http://pear.php.net/package/azure-sdk-for-php
*/
namespace WindowsAzure\Blob\Models;
@ -36,7 +36,7 @@ use WindowsAzure\Common\Internal\Utilities;
* @copyright 2012 Microsoft Corporation
* @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0
* @version Release: @package_version@
* @link https://github.com/windowsazure/azure-sdk-for-php
* @link http://pear.php.net/package/azure-sdk-for-php
*/
class BlobProperties
{

Просмотреть файл

@ -19,7 +19,7 @@
* @author Azure PHP SDK <azurephpsdk@microsoft.com>
* @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
* @link http://pear.php.net/package/azure-sdk-for-php
*/
namespace WindowsAzure\Blob\Models;
@ -33,7 +33,7 @@ namespace WindowsAzure\Blob\Models;
* @copyright 2012 Microsoft Corporation
* @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0
* @version Release: @package_version@
* @link https://github.com/windowsazure/azure-sdk-for-php
* @link http://pear.php.net/package/azure-sdk-for-php
*/
class BlobServiceOptions
{

Просмотреть файл

@ -19,7 +19,7 @@
* @author Azure PHP SDK <azurephpsdk@microsoft.com>
* @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
* @link http://pear.php.net/package/azure-sdk-for-php
*/
namespace WindowsAzure\Blob\Models;
@ -33,7 +33,7 @@ namespace WindowsAzure\Blob\Models;
* @copyright 2012 Microsoft Corporation
* @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0
* @version Release: @package_version@
* @link https://github.com/windowsazure/azure-sdk-for-php
* @link http://pear.php.net/package/azure-sdk-for-php
*/
class BlobType
{

Просмотреть файл

@ -19,7 +19,7 @@
* @author Azure PHP SDK <azurephpsdk@microsoft.com>
* @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
* @link http://pear.php.net/package/azure-sdk-for-php
*/
namespace WindowsAzure\Blob\Models;
@ -33,7 +33,7 @@ namespace WindowsAzure\Blob\Models;
* @copyright 2012 Microsoft Corporation
* @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0
* @version Release: @package_version@
* @link https://github.com/windowsazure/azure-sdk-for-php
* @link http://pear.php.net/package/azure-sdk-for-php
*/
class Block
{

Просмотреть файл

@ -19,7 +19,7 @@
* @author Azure PHP SDK <azurephpsdk@microsoft.com>
* @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
* @link http://pear.php.net/package/azure-sdk-for-php
*/
namespace WindowsAzure\Blob\Models;
@ -37,7 +37,7 @@ use WindowsAzure\Blob\Models\Block;
* @copyright 2012 Microsoft Corporation
* @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0
* @version Release: @package_version@
* @link https://github.com/windowsazure/azure-sdk-for-php
* @link http://pear.php.net/package/azure-sdk-for-php
*/
class BlockList
{

Просмотреть файл

@ -19,7 +19,7 @@
* @author Azure PHP SDK <azurephpsdk@microsoft.com>
* @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
* @link http://pear.php.net/package/azure-sdk-for-php
*/
namespace WindowsAzure\Blob\Models;
@ -34,7 +34,7 @@ use WindowsAzure\Common\Internal\Validate;
* @copyright 2012 Microsoft Corporation
* @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0
* @version Release: @package_version@
* @link https://github.com/windowsazure/azure-sdk-for-php
* @link http://pear.php.net/package/azure-sdk-for-php
*/
class CommitBlobBlocksOptions extends BlobServiceOptions
{

Просмотреть файл

@ -19,7 +19,7 @@
* @author Azure PHP SDK <azurephpsdk@microsoft.com>
* @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
* @link http://pear.php.net/package/azure-sdk-for-php
*/
namespace WindowsAzure\Blob\Models;
@ -35,7 +35,7 @@ use WindowsAzure\Common\Internal\Utilities;
* @copyright 2012 Microsoft Corporation
* @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0
* @version Release: @package_version@
* @link https://github.com/windowsazure/azure-sdk-for-php
* @link http://pear.php.net/package/azure-sdk-for-php
*/
class Container
{

Просмотреть файл

@ -19,7 +19,7 @@
* @author Azure PHP SDK <azurephpsdk@microsoft.com>
* @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
* @link http://pear.php.net/package/azure-sdk-for-php
*/
namespace WindowsAzure\Blob\Models;
@ -40,7 +40,7 @@ use WindowsAzure\Common\Internal\Serialization\XmlSerializer;
* @copyright 2012 Microsoft Corporation
* @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0
* @version Release: @package_version@
* @link https://github.com/windowsazure/azure-sdk-for-php
* @link http://pear.php.net/package/azure-sdk-for-php
*/
class ContainerAcl
{

Просмотреть файл

@ -19,7 +19,7 @@
* @author Azure PHP SDK <azurephpsdk@microsoft.com>
* @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
* @link http://pear.php.net/package/azure-sdk-for-php
*/
namespace WindowsAzure\Blob\Models;
@ -33,7 +33,7 @@ namespace WindowsAzure\Blob\Models;
* @copyright 2012 Microsoft Corporation
* @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0
* @version Release: @package_version@
* @link https://github.com/windowsazure/azure-sdk-for-php
* @link http://pear.php.net/package/azure-sdk-for-php
*/
class ContainerProperties
{

Просмотреть файл

@ -15,11 +15,11 @@
* PHP version 5
*
* @category Microsoft
* @package WindowsAzure\Blob\Models
* @package PEAR2\WindowsAzure\Blob\Models
* @author Azure PHP SDK <azurephpsdk@microsoft.com>
* @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
* @link http://pear.php.net/package/azure-sdk-for-php
*/
namespace WindowsAzure\Blob\Models;
@ -29,12 +29,12 @@ use WindowsAzure\Common\Internal\Validate;
* optional parameters for CopyBlobOptions wrapper
*
* @category Microsoft
* @package WindowsAzure\Blob\Models
* @package PEAR2\WindowsAzure\Blob\Models
* @author Azure PHP SDK <azurephpsdk@microsoft.com>
* @copyright 2012 Microsoft Corporation
* @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0
* @version Release: @package_version@
* @link https://github.com/windowsazure/azure-sdk-for-php
* @link http://pear.php.net/package/azure-sdk-for-php
*/
class CopyBlobOptions extends BlobServiceOptions
{

Просмотреть файл

@ -16,10 +16,10 @@
*
* @category Microsoft
* @package WindowsAzure\Blob\Models
* @author Azure PHP SDK <azurephpsdk@microsoft.com>
* @author Azure PHP SDK <azurephpsdk@microsoft.com>
* @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
* @link http://pear.php.net/package/azure-sdk-for-php
*/
namespace WindowsAzure\Blob\Models;
@ -35,7 +35,7 @@ use WindowsAzure\Common\Internal\Utilities;
* @copyright 2012 Microsoft Corporation
* @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0
* @version Release: @package_version@
* @link https://github.com/windowsazure/azure-sdk-for-php
* @link http://pear.php.net/package/azure-sdk-for-php
*/
class CopyBlobResult
{

Просмотреть файл

@ -19,7 +19,7 @@
* @author Azure PHP SDK <azurephpsdk@microsoft.com>
* @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
* @link http://pear.php.net/package/azure-sdk-for-php
*/
namespace WindowsAzure\Blob\Models;
@ -33,7 +33,7 @@ namespace WindowsAzure\Blob\Models;
* @copyright 2012 Microsoft Corporation
* @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0
* @version Release: @package_version@
* @link https://github.com/windowsazure/azure-sdk-for-php
* @link http://pear.php.net/package/azure-sdk-for-php
*/
class CreateBlobBlockOptions extends BlobServiceOptions
{

Просмотреть файл

@ -19,7 +19,7 @@
* @author Azure PHP SDK <azurephpsdk@microsoft.com>
* @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
* @link http://pear.php.net/package/azure-sdk-for-php
*/
namespace WindowsAzure\Blob\Models;
@ -34,7 +34,7 @@ use WindowsAzure\Common\Internal\Validate;
* @copyright 2012 Microsoft Corporation
* @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0
* @version Release: @package_version@
* @link https://github.com/windowsazure/azure-sdk-for-php
* @link http://pear.php.net/package/azure-sdk-for-php
*/
class CreateBlobOptions extends BlobServiceOptions
{

Просмотреть файл

@ -19,7 +19,7 @@
* @author Azure PHP SDK <azurephpsdk@microsoft.com>
* @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
* @link http://pear.php.net/package/azure-sdk-for-php
*/
namespace WindowsAzure\Blob\Models;
@ -33,7 +33,7 @@ namespace WindowsAzure\Blob\Models;
* @copyright 2012 Microsoft Corporation
* @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0
* @version Release: @package_version@
* @link https://github.com/windowsazure/azure-sdk-for-php
* @link http://pear.php.net/package/azure-sdk-for-php
*/
class CreateBlobPagesOptions extends BlobServiceOptions
{

Просмотреть файл

@ -19,7 +19,7 @@
* @author Azure PHP SDK <azurephpsdk@microsoft.com>
* @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
* @link http://pear.php.net/package/azure-sdk-for-php
*/
namespace WindowsAzure\Blob\Models;
@ -36,7 +36,7 @@ use WindowsAzure\Common\Internal\Utilities;
* @copyright 2012 Microsoft Corporation
* @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0
* @version Release: @package_version@
* @link https://github.com/windowsazure/azure-sdk-for-php
* @link http://pear.php.net/package/azure-sdk-for-php
*/
class CreateBlobPagesResult
{

Просмотреть файл

@ -19,7 +19,7 @@
* @author Azure PHP SDK <azurephpsdk@microsoft.com>
* @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
* @link http://pear.php.net/package/azure-sdk-for-php
*/
namespace WindowsAzure\Blob\Models;
@ -33,7 +33,7 @@ namespace WindowsAzure\Blob\Models;
* @copyright 2012 Microsoft Corporation
* @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0
* @version Release: @package_version@
* @link https://github.com/windowsazure/azure-sdk-for-php
* @link http://pear.php.net/package/azure-sdk-for-php
*/
class CreateBlobSnapshotOptions extends BlobServiceOptions
{

Просмотреть файл

@ -16,10 +16,10 @@
*
* @category Microsoft
* @package WindowsAzure\Blob\Models
* @author Azure PHP SDK <azurephpsdk@microsoft.com>
* @author Azure PHP SDK <azurephpsdk@microsoft.com>
* @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
* @link http://pear.php.net/package/azure-sdk-for-php
*/
namespace WindowsAzure\Blob\Models;
@ -36,7 +36,7 @@ use WindowsAzure\Common\Internal\Utilities;
* @copyright 2012 Microsoft Corporation
* @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0
* @version Release: @package_version@
* @link https://github.com/windowsazure/azure-sdk-for-php
* @link http://pear.php.net/package/azure-sdk-for-php
*/
class CreateBlobSnapshotResult
{

Просмотреть файл

@ -19,7 +19,7 @@
* @author Azure PHP SDK <azurephpsdk@microsoft.com>
* @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
* @link http://pear.php.net/package/azure-sdk-for-php
*/
namespace WindowsAzure\Blob\Models;
@ -35,7 +35,7 @@ use WindowsAzure\Common\Internal\Validate;
* @copyright 2012 Microsoft Corporation
* @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0
* @version Release: @package_version@
* @link https://github.com/windowsazure/azure-sdk-for-php
* @link http://pear.php.net/package/azure-sdk-for-php
*/
class CreateContainerOptions extends BlobServiceOptions
{

Просмотреть файл

@ -19,7 +19,7 @@
* @author Azure PHP SDK <azurephpsdk@microsoft.com>
* @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
* @link http://pear.php.net/package/azure-sdk-for-php
*/
namespace WindowsAzure\Blob\Models;
@ -34,7 +34,7 @@ use WindowsAzure\Common\Internal\Validate;
* @copyright 2012 Microsoft Corporation
* @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0
* @version Release: @package_version@
* @link https://github.com/windowsazure/azure-sdk-for-php
* @link http://pear.php.net/package/azure-sdk-for-php
*/
class DeleteBlobOptions extends BlobServiceOptions
{

Просмотреть файл

@ -15,11 +15,11 @@
* PHP version 5
*
* @category Microsoft
* @package WindowsAzure\Blob\Models
* @package WindowsAzure
* @author Azure PHP SDK <azurephpsdk@microsoft.com>
* @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
* @link http://pear.php.net/package/azure-sdk-for-php
*/
namespace WindowsAzure\Blob\Models;
@ -33,7 +33,7 @@ namespace WindowsAzure\Blob\Models;
* @copyright 2012 Microsoft Corporation
* @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0
* @version Release: @package_version@
* @link https://github.com/windowsazure/azure-sdk-for-php
* @link http://pear.php.net/package/azure-sdk-for-php
*/
class DeleteContainerOptions extends BlobServiceOptions
{

Просмотреть файл

@ -19,7 +19,7 @@
* @author Azure PHP SDK <azurephpsdk@microsoft.com>
* @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
* @link http://pear.php.net/package/azure-sdk-for-php
*/
namespace WindowsAzure\Blob\Models;
@ -33,7 +33,7 @@ namespace WindowsAzure\Blob\Models;
* @copyright 2012 Microsoft Corporation
* @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0
* @version Release: @package_version@
* @link https://github.com/windowsazure/azure-sdk-for-php
* @link http://pear.php.net/package/azure-sdk-for-php
*/
class GetBlobMetadataOptions extends BlobServiceOptions
{

Просмотреть файл

@ -19,7 +19,7 @@
* @author Azure PHP SDK <azurephpsdk@microsoft.com>
* @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
* @link http://pear.php.net/package/azure-sdk-for-php
*/
namespace WindowsAzure\Blob\Models;
@ -36,7 +36,7 @@ use WindowsAzure\Common\Internal\Utilities;
* @copyright 2012 Microsoft Corporation
* @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0
* @version Release: @package_version@
* @link https://github.com/windowsazure/azure-sdk-for-php
* @link http://pear.php.net/package/azure-sdk-for-php
*/
class GetBlobMetadataResult
{

Просмотреть файл

@ -19,7 +19,7 @@
* @author Azure PHP SDK <azurephpsdk@microsoft.com>
* @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
* @link http://pear.php.net/package/azure-sdk-for-php
*/
namespace WindowsAzure\Blob\Models;
@ -34,7 +34,7 @@ use WindowsAzure\Common\Internal\Validate;
* @copyright 2012 Microsoft Corporation
* @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0
* @version Release: @package_version@
* @link https://github.com/windowsazure/azure-sdk-for-php
* @link http://pear.php.net/package/azure-sdk-for-php
*/
class GetBlobOptions extends BlobServiceOptions
{

Просмотреть файл

@ -19,7 +19,7 @@
* @author Azure PHP SDK <azurephpsdk@microsoft.com>
* @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
* @link http://pear.php.net/package/azure-sdk-for-php
*/
namespace WindowsAzure\Blob\Models;
@ -33,7 +33,7 @@ namespace WindowsAzure\Blob\Models;
* @copyright 2012 Microsoft Corporation
* @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0
* @version Release: @package_version@
* @link https://github.com/windowsazure/azure-sdk-for-php
* @link http://pear.php.net/package/azure-sdk-for-php
*/
class GetBlobPropertiesOptions extends BlobServiceOptions
{

Просмотреть файл

@ -19,7 +19,7 @@
* @author Azure PHP SDK <azurephpsdk@microsoft.com>
* @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
* @link http://pear.php.net/package/azure-sdk-for-php
*/
namespace WindowsAzure\Blob\Models;
@ -33,7 +33,7 @@ namespace WindowsAzure\Blob\Models;
* @copyright 2012 Microsoft Corporation
* @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0
* @version Release: @package_version@
* @link https://github.com/windowsazure/azure-sdk-for-php
* @link http://pear.php.net/package/azure-sdk-for-php
*/
class GetBlobPropertiesResult
{

Просмотреть файл

@ -19,7 +19,7 @@
* @author Azure PHP SDK <azurephpsdk@microsoft.com>
* @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
* @link http://pear.php.net/package/azure-sdk-for-php
*/
namespace WindowsAzure\Blob\Models;
@ -35,7 +35,7 @@ use WindowsAzure\Common\Internal\Utilities;
* @copyright 2012 Microsoft Corporation
* @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0
* @version Release: @package_version@
* @link https://github.com/windowsazure/azure-sdk-for-php
* @link http://pear.php.net/package/azure-sdk-for-php
*/
class GetBlobResult
{

Просмотреть файл

@ -19,7 +19,7 @@
* @author Azure PHP SDK <azurephpsdk@microsoft.com>
* @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
* @link http://pear.php.net/package/azure-sdk-for-php
*/
namespace WindowsAzure\Blob\Models;
@ -34,7 +34,7 @@ use WindowsAzure\Blob\Models\ContainerAcl;
* @copyright 2012 Microsoft Corporation
* @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0
* @version Release: @package_version@
* @link https://github.com/windowsazure/azure-sdk-for-php
* @link http://pear.php.net/package/azure-sdk-for-php
*/
class GetContainerAclResult
{

Просмотреть файл

@ -19,7 +19,7 @@
* @author Azure PHP SDK <azurephpsdk@microsoft.com>
* @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
* @link http://pear.php.net/package/azure-sdk-for-php
*/
namespace WindowsAzure\Blob\Models;
@ -33,7 +33,7 @@ namespace WindowsAzure\Blob\Models;
* @copyright 2012 Microsoft Corporation
* @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0
* @version Release: @package_version@
* @link https://github.com/windowsazure/azure-sdk-for-php
* @link http://pear.php.net/package/azure-sdk-for-php
*/
class GetContainerPropertiesResult
{

Просмотреть файл

@ -19,7 +19,7 @@
* @author Azure PHP SDK <azurephpsdk@microsoft.com>
* @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
* @link http://pear.php.net/package/azure-sdk-for-php
*/
namespace WindowsAzure\Blob\Models;
@ -33,7 +33,7 @@ namespace WindowsAzure\Blob\Models;
* @copyright 2012 Microsoft Corporation
* @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0
* @version Release: @package_version@
* @link https://github.com/windowsazure/azure-sdk-for-php
* @link http://pear.php.net/package/azure-sdk-for-php
*/
class LeaseMode
{

Просмотреть файл

@ -19,7 +19,7 @@
* @author Azure PHP SDK <azurephpsdk@microsoft.com>
* @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
* @link http://pear.php.net/package/azure-sdk-for-php
*/
namespace WindowsAzure\Blob\Models;
@ -34,7 +34,7 @@ use WindowsAzure\Common\Internal\Validate;
* @copyright 2012 Microsoft Corporation
* @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0
* @version Release: @package_version@
* @link https://github.com/windowsazure/azure-sdk-for-php
* @link http://pear.php.net/package/azure-sdk-for-php
*/
class ListBlobBlocksOptions extends BlobServiceOptions
{

Просмотреть файл

@ -19,7 +19,7 @@
* @author Azure PHP SDK <azurephpsdk@microsoft.com>
* @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
* @link http://pear.php.net/package/azure-sdk-for-php
*/
namespace WindowsAzure\Blob\Models;
@ -36,7 +36,7 @@ use WindowsAzure\Common\Internal\Utilities;
* @copyright 2012 Microsoft Corporation
* @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0
* @version Release: @package_version@
* @link https://github.com/windowsazure/azure-sdk-for-php
* @link http://pear.php.net/package/azure-sdk-for-php
*/
class ListBlobBlocksResult
{

Просмотреть файл

@ -15,11 +15,11 @@
* PHP version 5
*
* @category Microsoft
* @package WindowsAzure\Blob\Models
* @package WindowsAzure
* @author Azure PHP SDK <azurephpsdk@microsoft.com>
* @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
* @link http://pear.php.net/package/azure-sdk-for-php
*/
namespace WindowsAzure\Blob\Models;
@ -34,7 +34,7 @@ use WindowsAzure\Common\Internal\Validate;
* @copyright 2012 Microsoft Corporation
* @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0
* @version Release: @package_version@
* @link https://github.com/windowsazure/azure-sdk-for-php
* @link http://pear.php.net/package/azure-sdk-for-php
*/
class ListBlobsOptions extends BlobServiceOptions
{

Просмотреть файл

@ -19,7 +19,7 @@
* @author Azure PHP SDK <azurephpsdk@microsoft.com>
* @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
* @link http://pear.php.net/package/azure-sdk-for-php
*/
namespace WindowsAzure\Blob\Models;
@ -37,7 +37,7 @@ use WindowsAzure\Common\Internal\InvalidArgumentTypeException;
* @copyright 2012 Microsoft Corporation
* @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0
* @version Release: @package_version@
* @link https://github.com/windowsazure/azure-sdk-for-php
* @link http://pear.php.net/package/azure-sdk-for-php
*/
class ListBlobsResult
{

Просмотреть файл

@ -19,7 +19,7 @@
* @author Azure PHP SDK <azurephpsdk@microsoft.com>
* @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
* @link http://pear.php.net/package/azure-sdk-for-php
*/
namespace WindowsAzure\Blob\Models;
@ -35,7 +35,7 @@ use \WindowsAzure\Common\Internal\Validate;
* @copyright 2012 Microsoft Corporation
* @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0
* @version Release: @package_version@
* @link https://github.com/windowsazure/azure-sdk-for-php
* @link http://pear.php.net/package/azure-sdk-for-php
*/
class ListContainersOptions extends BlobServiceOptions
{

Просмотреть файл

@ -19,7 +19,7 @@
* @author Azure PHP SDK <azurephpsdk@microsoft.com>
* @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
* @link http://pear.php.net/package/azure-sdk-for-php
*/
namespace WindowsAzure\Blob\Models;
@ -36,7 +36,7 @@ use WindowsAzure\Blob\Models\Container;
* @copyright 2012 Microsoft Corporation
* @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0
* @version Release: @package_version@
* @link https://github.com/windowsazure/azure-sdk-for-php
* @link http://pear.php.net/package/azure-sdk-for-php
*/
class ListContainersResult
{

Просмотреть файл

@ -19,7 +19,7 @@
* @author Azure PHP SDK <azurephpsdk@microsoft.com>
* @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
* @link http://pear.php.net/package/azure-sdk-for-php
*/
namespace WindowsAzure\Blob\Models;
@ -34,7 +34,7 @@ use WindowsAzure\Common\Internal\Validate;
* @copyright 2012 Microsoft Corporation
* @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0
* @version Release: @package_version@
* @link https://github.com/windowsazure/azure-sdk-for-php
* @link http://pear.php.net/package/azure-sdk-for-php
*/
class ListPageBlobRangesOptions extends BlobServiceOptions
{

Просмотреть файл

@ -19,7 +19,7 @@
* @author Azure PHP SDK <azurephpsdk@microsoft.com>
* @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
* @link http://pear.php.net/package/azure-sdk-for-php
*/
namespace WindowsAzure\Blob\Models;
@ -37,7 +37,7 @@ use WindowsAzure\Blob\Models\PageRange;
* @copyright 2012 Microsoft Corporation
* @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0
* @version Release: @package_version@
* @link https://github.com/windowsazure/azure-sdk-for-php
* @link http://pear.php.net/package/azure-sdk-for-php
*/
class ListPageBlobRangesResult
{

Просмотреть файл

@ -19,7 +19,7 @@
* @author Azure PHP SDK <azurephpsdk@microsoft.com>
* @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
* @link http://pear.php.net/package/azure-sdk-for-php
*/
namespace WindowsAzure\Blob\Models;
@ -33,7 +33,7 @@ namespace WindowsAzure\Blob\Models;
* @copyright 2012 Microsoft Corporation
* @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0
* @version Release: @package_version@
* @link https://github.com/windowsazure/azure-sdk-for-php
* @link http://pear.php.net/package/azure-sdk-for-php
*/
class PageRange
{

Просмотреть файл

@ -19,7 +19,7 @@
* @author Azure PHP SDK <azurephpsdk@microsoft.com>
* @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
* @link http://pear.php.net/package/azure-sdk-for-php
*/
namespace WindowsAzure\Blob\Models;
@ -33,7 +33,7 @@ namespace WindowsAzure\Blob\Models;
* @copyright 2012 Microsoft Corporation
* @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0
* @version Release: @package_version@
* @link https://github.com/windowsazure/azure-sdk-for-php
* @link http://pear.php.net/package/azure-sdk-for-php
*/
class PageWriteOption
{

Просмотреть файл

@ -19,7 +19,7 @@
* @author Azure PHP SDK <azurephpsdk@microsoft.com>
* @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
* @link http://pear.php.net/package/azure-sdk-for-php
*/
namespace WindowsAzure\Blob\Models;
@ -34,7 +34,7 @@ use WindowsAzure\Common\Internal\Resources;
* @copyright 2012 Microsoft Corporation
* @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0
* @version Release: @package_version@
* @link https://github.com/windowsazure/azure-sdk-for-php
* @link http://pear.php.net/package/azure-sdk-for-php
*/
class PublicAccessType
{

Просмотреть файл

@ -19,7 +19,7 @@
* @author Azure PHP SDK <azurephpsdk@microsoft.com>
* @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
* @link http://pear.php.net/package/azure-sdk-for-php
*/
namespace WindowsAzure\Blob\Models;
@ -33,7 +33,7 @@ namespace WindowsAzure\Blob\Models;
* @copyright 2012 Microsoft Corporation
* @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0
* @version Release: @package_version@
* @link https://github.com/windowsazure/azure-sdk-for-php
* @link http://pear.php.net/package/azure-sdk-for-php
*/
class SetBlobMetadataOptions extends BlobServiceOptions
{

Просмотреть файл

@ -19,7 +19,7 @@
* @author Azure PHP SDK <azurephpsdk@microsoft.com>
* @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
* @link http://pear.php.net/package/azure-sdk-for-php
*/
namespace WindowsAzure\Blob\Models;
@ -36,7 +36,7 @@ use WindowsAzure\Common\Internal\Utilities;
* @copyright 2012 Microsoft Corporation
* @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0
* @version Release: @package_version@
* @link https://github.com/windowsazure/azure-sdk-for-php
* @link http://pear.php.net/package/azure-sdk-for-php
*/
class SetBlobMetadataResult
{

Просмотреть файл

@ -19,7 +19,7 @@
* @author Azure PHP SDK <azurephpsdk@microsoft.com>
* @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
* @link http://pear.php.net/package/azure-sdk-for-php
*/
namespace WindowsAzure\Blob\Models;
@ -34,7 +34,7 @@ use WindowsAzure\Common\Internal\Validate;
* @copyright 2012 Microsoft Corporation
* @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0
* @version Release: @package_version@
* @link https://github.com/windowsazure/azure-sdk-for-php
* @link http://pear.php.net/package/azure-sdk-for-php
*/
class SetBlobPropertiesOptions extends BlobServiceOptions
{

Просмотреть файл

@ -19,7 +19,7 @@
* @author Azure PHP SDK <azurephpsdk@microsoft.com>
* @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
* @link http://pear.php.net/package/azure-sdk-for-php
*/
namespace WindowsAzure\Blob\Models;
@ -36,7 +36,7 @@ use WindowsAzure\Common\Internal\Utilities;
* @copyright 2012 Microsoft Corporation
* @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0
* @version Release: @package_version@
* @link https://github.com/windowsazure/azure-sdk-for-php
* @link http://pear.php.net/package/azure-sdk-for-php
*/
class SetBlobPropertiesResult
{

Просмотреть файл

@ -19,7 +19,7 @@
* @author Azure PHP SDK <azurephpsdk@microsoft.com>
* @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
* @link http://pear.php.net/package/azure-sdk-for-php
*/
namespace WindowsAzure\Blob\Models;
@ -35,7 +35,7 @@ use WindowsAzure\Blob\Models\BlobServiceOptions;
* @copyright 2012 Microsoft Corporation
* @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0
* @version Release: @package_version@
* @link https://github.com/windowsazure/azure-sdk-for-php
* @link http://pear.php.net/package/azure-sdk-for-php
*/
class SetContainerMetadataOptions extends BlobServiceOptions
{

Просмотреть файл

@ -19,7 +19,7 @@
* @author Azure PHP SDK <azurephpsdk@microsoft.com>
* @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
* @link http://pear.php.net/package/azure-sdk-for-php
*/
namespace WindowsAzure\Blob\Models;
@ -34,7 +34,7 @@ use WindowsAzure\Blob\Models\AccessPolicy;
* @copyright 2012 Microsoft Corporation
* @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0
* @version Release: @package_version@
* @link https://github.com/windowsazure/azure-sdk-for-php
* @link http://pear.php.net/package/azure-sdk-for-php
*/
class SignedIdentifier
{

Просмотреть файл

@ -19,7 +19,7 @@
* @author Azure PHP SDK <azurephpsdk@microsoft.com>
* @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
* @link http://pear.php.net/package/azure-sdk-for-php
*/
namespace WindowsAzure\Common;
@ -49,7 +49,7 @@ use WindowsAzure\Table\TableSettings;
* @copyright 2012 Microsoft Corporation
* @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0
* @version Release: @package_version@
* @link https://github.com/windowsazure/azure-sdk-for-php
* @link http://pear.php.net/package/azure-sdk-for-php
*/
class Configuration
{

Просмотреть файл

@ -19,7 +19,7 @@
* @author Azure PHP SDK <azurephpsdk@microsoft.com>
* @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
* @link http://pear.php.net/package/azure-sdk-for-php
*/
namespace WindowsAzure\Common\Internal\Authentication;
@ -37,7 +37,7 @@ use WindowsAzure\Common\Internal\Utilities;
* @copyright 2012 Microsoft Corporation
* @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0
* @version Release: @package_version@
* @link https://github.com/windowsazure/azure-sdk-for-php
* @link http://pear.php.net/package/azure-sdk-for-php
*/
class SharedKeyAuthScheme extends StorageAuthScheme
{

Просмотреть файл

@ -19,7 +19,7 @@
* @author Azure PHP SDK <azurephpsdk@microsoft.com>
* @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
* @link http://pear.php.net/package/azure-sdk-for-php
*/
namespace WindowsAzure\Common\Internal\Authentication;
@ -35,7 +35,7 @@ use WindowsAzure\Common\Internal\Utilities;
* @copyright 2012 Microsoft Corporation
* @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0
* @version Release: @package_version@
* @link https://github.com/windowsazure/azure-sdk-for-php
* @link http://pear.php.net/package/azure-sdk-for-php
*/
abstract class StorageAuthScheme
{

Просмотреть файл

@ -19,7 +19,7 @@
* @author Azure PHP SDK <azurephpsdk@microsoft.com>
* @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
* @link http://pear.php.net/package/azure-sdk-for-php
*/
namespace WindowsAzure\Common\Internal\Authentication;
@ -37,7 +37,7 @@ use WindowsAzure\Common\Internal\Utilities;
* @copyright 2012 Microsoft Corporation
* @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0
* @version Release: @package_version@
* @link https://github.com/windowsazure/azure-sdk-for-php
* @link http://pear.php.net/package/azure-sdk-for-php
*/
class TableSharedKeyLiteAuthScheme extends StorageAuthScheme
{

Просмотреть файл

@ -19,7 +19,7 @@
* @author Azure PHP SDK <azurephpsdk@microsoft.com>
* @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
* @link http://pear.php.net/package/azure-sdk-for-php
*/
namespace WindowsAzure\Common\Internal;
@ -33,7 +33,7 @@ namespace WindowsAzure\Common\Internal;
* @copyright 2012 Microsoft Corporation
* @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0
* @version Release: @package_version@
* @link https://github.com/windowsazure/azure-sdk-for-php
* @link http://pear.php.net/package/azure-sdk-for-php
*/
interface FilterableService
{

Просмотреть файл

@ -19,7 +19,7 @@
* @author Azure PHP SDK <azurephpsdk@microsoft.com>
* @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
* @link http://pear.php.net/package/azure-sdk-for-php
*/
namespace WindowsAzure\Common\Internal\Filters;
@ -35,7 +35,7 @@ use WindowsAzure\Common\Internal\IServiceFilter;
* @copyright 2012 Microsoft Corporation
* @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0
* @version Release: @package_version@
* @link https://github.com/windowsazure/azure-sdk-for-php
* @link http://pear.php.net/package/azure-sdk-for-php
*/
class DateFilter implements IServiceFilter
{

Просмотреть файл

@ -19,7 +19,7 @@
* @author Azure PHP SDK <azurephpsdk@microsoft.com>
* @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
* @link http://pear.php.net/package/azure-sdk-for-php
*/
namespace WindowsAzure\Common\Internal\Filters;
@ -33,7 +33,7 @@ namespace WindowsAzure\Common\Internal\Filters;
* @copyright 2012 Microsoft Corporation
* @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0
* @version Release: @package_version@
* @link https://github.com/windowsazure/azure-sdk-for-php
* @link http://pear.php.net/package/azure-sdk-for-php
*/
class ExponentialRetryPolicy extends RetryPolicy
{

Просмотреть файл

@ -19,7 +19,7 @@
* @author Azure PHP SDK <azurephpsdk@microsoft.com>
* @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
* @link http://pear.php.net/package/azure-sdk-for-php
*/
namespace WindowsAzure\Common\Internal\Filters;
@ -35,7 +35,7 @@ use WindowsAzure\Common\Internal\IServiceFilter;
* @copyright 2012 Microsoft Corporation
* @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0
* @version Release: @package_version@
* @link https://github.com/windowsazure/azure-sdk-for-php
* @link http://pear.php.net/package/azure-sdk-for-php
*/
class HeadersFilter implements IServiceFilter
{

Просмотреть файл

@ -19,7 +19,7 @@
* @author Azure PHP SDK <azurephpsdk@microsoft.com>
* @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
* @link http://pear.php.net/package/azure-sdk-for-php
*/
namespace WindowsAzure\Common\Internal\Filters;
@ -33,7 +33,7 @@ namespace WindowsAzure\Common\Internal\Filters;
* @copyright 2012 Microsoft Corporation
* @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0
* @version Release: @package_version@
* @link https://github.com/windowsazure/azure-sdk-for-php
* @link http://pear.php.net/package/azure-sdk-for-php
*/
abstract class RetryPolicy
{

Просмотреть файл

@ -19,7 +19,7 @@
* @author Azure PHP SDK <azurephpsdk@microsoft.com>
* @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
* @link http://pear.php.net/package/azure-sdk-for-php
*/
namespace WindowsAzure\Common\Internal\Filters;
@ -34,7 +34,7 @@ use WindowsAzure\Common\Internal\IServiceFilter;
* @copyright 2012 Microsoft Corporation
* @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0
* @version Release: @package_version@
* @link https://github.com/windowsazure/azure-sdk-for-php
* @link http://pear.php.net/package/azure-sdk-for-php
*/
class RetryPolicyFilter implements IServiceFilter
{

Просмотреть файл

@ -19,7 +19,7 @@
* @author Azure PHP SDK <azurephpsdk@microsoft.com>
* @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
* @link http://pear.php.net/package/azure-sdk-for-php
*/
namespace WindowsAzure\Common\Internal\Filters;
@ -38,7 +38,7 @@ use WindowsAzure\Common\Internal\InvalidArgumentTypeException;
* @copyright 2012 Microsoft Corporation
* @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0
* @version Release: @package_version@
* @link https://github.com/windowsazure/azure-sdk-for-php
* @link http://pear.php.net/package/azure-sdk-for-php
*/
class SharedKeyFilter implements IServiceFilter
{

Просмотреть файл

@ -19,7 +19,7 @@
* @author Azure PHP SDK <azurephpsdk@microsoft.com>
* @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
* @link http://pear.php.net/package/azure-sdk-for-php
*/
namespace WindowsAzure\Common\Internal\Filters;
@ -39,7 +39,7 @@ use WindowsAzure\Common\Internal\InvalidArgumentTypeException;
* @copyright 2012 Microsoft Corporation
* @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0
* @version Release: @package_version@
* @link https://github.com/windowsazure/azure-sdk-for-php
* @link http://pear.php.net/package/azure-sdk-for-php
*/
class WrapFilter implements IServiceFilter
{

Просмотреть файл

@ -19,7 +19,7 @@
* @author Azure PHP SDK <azurephpsdk@microsoft.com>
* @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
* @link http://pear.php.net/package/azure-sdk-for-php
*/
namespace WindowsAzure\Common\Internal\Http;
@ -37,7 +37,7 @@ use WindowsAzure\Common\Internal\Http\Url;
* @copyright 2012 Microsoft Corporation
* @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0
* @version Release: @package_version@
* @link https://github.com/windowsazure/azure-sdk-for-php
* @link http://pear.php.net/package/azure-sdk-for-php
*/
class HttpCallContext
{

Просмотреть файл

@ -19,7 +19,7 @@
* @author Azure PHP SDK <azurephpsdk@microsoft.com>
* @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
* @link http://pear.php.net/package/azure-sdk-for-php
*/
namespace WindowsAzure\Common\Internal\Http;
@ -41,7 +41,7 @@ require_once 'HTTP/Request2.php';
* @copyright 2012 Microsoft Corporation
* @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0
* @version Release: @package_version@
* @link https://github.com/windowsazure/azure-sdk-for-php
* @link http://pear.php.net/package/azure-sdk-for-php
*/
class HttpClient implements IHttpClient
{

Просмотреть файл

@ -19,7 +19,7 @@
* @author Azure PHP SDK <azurephpsdk@microsoft.com>
* @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
* @link http://pear.php.net/package/azure-sdk-for-php
*/
namespace WindowsAzure\Common\Internal\Http;
@ -33,7 +33,7 @@ namespace WindowsAzure\Common\Internal\Http;
* @copyright 2012 Microsoft Corporation
* @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0
* @version Release: @package_version@
* @link https://github.com/windowsazure/azure-sdk-for-php
* @link http://pear.php.net/package/azure-sdk-for-php
*/
interface IHttpClient
{

Просмотреть файл

@ -19,7 +19,7 @@
* @author Azure PHP SDK <azurephpsdk@microsoft.com>
* @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
* @link http://pear.php.net/package/azure-sdk-for-php
*/
namespace WindowsAzure\Common\Internal\Http;
@ -33,7 +33,7 @@ namespace WindowsAzure\Common\Internal\Http;
* @copyright 2012 Microsoft Corporation
* @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0
* @version Release: @package_version@
* @link https://github.com/windowsazure/azure-sdk-for-php
* @link http://pear.php.net/package/azure-sdk-for-php
*/
interface IUrl
{

Просмотреть файл

@ -19,7 +19,7 @@
* @author Azure PHP SDK <azurephpsdk@microsoft.com>
* @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
* @link http://pear.php.net/package/azure-sdk-for-php
*/
namespace WindowsAzure\Common\Internal\Http;
@ -37,7 +37,7 @@ use WindowsAzure\Common\Internal\Http\IUrl;
* @copyright 2012 Microsoft Corporation
* @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0
* @version Release: @package_version@
* @link https://github.com/windowsazure/azure-sdk-for-php
* @link http://pear.php.net/package/azure-sdk-for-php
*/
class Url implements IUrl
{

Просмотреть файл

@ -19,7 +19,7 @@
* @author Azure PHP SDK <azurephpsdk@microsoft.com>
* @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
* @link http://pear.php.net/package/azure-sdk-for-php
*/
namespace WindowsAzure\Common\Internal;
@ -41,7 +41,7 @@ namespace WindowsAzure\Common\Internal;
* @copyright 2012 Microsoft Corporation
* @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0
* @version Release: @package_version@
* @link https://github.com/windowsazure/azure-sdk-for-php
* @link http://pear.php.net/package/azure-sdk-for-php
*/
interface IServiceBuilder
{

Просмотреть файл

@ -19,7 +19,7 @@
* @author Azure PHP SDK <azurephpsdk@microsoft.com>
* @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
* @link http://pear.php.net/package/azure-sdk-for-php
*/
namespace WindowsAzure\Common\Internal;
@ -34,7 +34,7 @@ namespace WindowsAzure\Common\Internal;
* @copyright 2012 Microsoft Corporation
* @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0
* @version Release: @package_version@
* @link https://github.com/windowsazure/azure-sdk-for-php
* @link http://pear.php.net/package/azure-sdk-for-php
*/
interface IServiceFilter
{

Просмотреть файл

@ -19,7 +19,7 @@
* @author Azure PHP SDK <azurephpsdk@microsoft.com>
* @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
* @link http://pear.php.net/package/azure-sdk-for-php
*/
namespace WindowsAzure\Common\Internal;
@ -34,7 +34,7 @@ use WindowsAzure\Common\Internal\Resources;
* @copyright 2012 Microsoft Corporation
* @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0
* @version Release: @package_version@
* @link https://github.com/windowsazure/azure-sdk-for-php
* @link http://pear.php.net/package/azure-sdk-for-php
*/
class InvalidArgumentTypeException extends \InvalidArgumentException
{

Просмотреть файл

@ -19,7 +19,7 @@
* @author Azure PHP SDK <azurephpsdk@microsoft.com>
* @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
* @link http://pear.php.net/package/azure-sdk-for-php
*/
namespace WindowsAzure\Common\Internal;
@ -33,7 +33,7 @@ namespace WindowsAzure\Common\Internal;
* @copyright 2012 Microsoft Corporation
* @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0
* @version Release: @package_version@
* @link https://github.com/windowsazure/azure-sdk-for-php
* @link http://pear.php.net/package/azure-sdk-for-php
*/
class Logger
{

Просмотреть файл

@ -19,7 +19,7 @@
* @author Azure PHP SDK <azurephpsdk@microsoft.com>
* @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
* @link http://pear.php.net/package/azure-sdk-for-php
*/
namespace WindowsAzure\Common\Internal;
@ -33,7 +33,7 @@ namespace WindowsAzure\Common\Internal;
* @copyright 2012 Microsoft Corporation
* @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0
* @version Release: @package_version@
* @link https://github.com/windowsazure/azure-sdk-for-php
* @link http://pear.php.net/package/azure-sdk-for-php
*/
class Resources
{

Просмотреть файл

@ -19,7 +19,7 @@
* @author Azure PHP SDK <azurephpsdk@microsoft.com>
* @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
* @link http://pear.php.net/package/azure-sdk-for-php
*/
namespace WindowsAzure\Common\Internal;
@ -36,7 +36,7 @@ use WindowsAzure\Common\Internal\Http\Url;
* @copyright 2012 Microsoft Corporation
* @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0
* @version Release: @package_version@
* @link https://github.com/windowsazure/azure-sdk-for-php
* @link http://pear.php.net/package/azure-sdk-for-php
*/
class RestProxy
{

Просмотреть файл

@ -19,7 +19,7 @@
* @author Azure PHP SDK <azurephpsdk@microsoft.com>
* @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
* @link http://pear.php.net/package/azure-sdk-for-php
*/
namespace WindowsAzure\Common\Internal\Serialization;
@ -33,7 +33,7 @@ namespace WindowsAzure\Common\Internal\Serialization;
* @copyright 2012 Microsoft Corporation
* @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0
* @version Release: @package_version@
* @link https://github.com/windowsazure/azure-sdk-for-php
* @link http://pear.php.net/package/azure-sdk-for-php
*/
interface ISerializer
{

Просмотреть файл

@ -19,7 +19,7 @@
* @author Azure PHP SDK <azurephpsdk@microsoft.com>
* @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
* @link http://pear.php.net/package/azure-sdk-for-php
*/
namespace WindowsAzure\Common\Internal\Serialization;
@ -35,7 +35,7 @@ use WindowsAzure\Common\Internal\Resources;
* @copyright 2012 Microsoft Corporation
* @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0
* @version Release: @package_version@
* @link https://github.com/windowsazure/azure-sdk-for-php
* @link http://pear.php.net/package/azure-sdk-for-php
*/
class XmlSerializer implements ISerializer
{

Просмотреть файл

@ -19,7 +19,7 @@
* @author Azure PHP SDK <azurephpsdk@microsoft.com>
* @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
* @link http://pear.php.net/package/azure-sdk-for-php
*/
namespace WindowsAzure\Common\Internal;
@ -39,7 +39,7 @@ use WindowsAzure\Common\Internal\Http\HttpCallContext;
* @copyright 2012 Microsoft Corporation
* @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0
* @version Release: @package_version@
* @link https://github.com/windowsazure/azure-sdk-for-php
* @link http://pear.php.net/package/azure-sdk-for-php
*/
class ServiceRestProxy extends RestProxy
{

Просмотреть файл

@ -19,7 +19,7 @@
* @author Azure PHP SDK <azurephpsdk@microsoft.com>
* @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
* @link http://pear.php.net/package/azure-sdk-for-php
*/
namespace WindowsAzure\Common\Internal;
@ -55,7 +55,7 @@ use WindowsAzure\ServiceManagement\ServiceManagementRestProxy;
* @copyright 2012 Microsoft Corporation
* @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0
* @version Release: @package_version@
* @link https://github.com/windowsazure/azure-sdk-for-php
* @link http://pear.php.net/package/azure-sdk-for-php
*/
class ServicesBuilder implements IServiceBuilder
{

Просмотреть файл

@ -19,7 +19,7 @@
* @author Azure PHP SDK <azurephpsdk@microsoft.com>
* @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
* @link http://pear.php.net/package/azure-sdk-for-php
*/
namespace WindowsAzure\Common\Internal;
@ -33,7 +33,7 @@ namespace WindowsAzure\Common\Internal;
* @copyright 2012 Microsoft Corporation
* @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0
* @version Release: @package_version@
* @link https://github.com/windowsazure/azure-sdk-for-php
* @link http://pear.php.net/package/azure-sdk-for-php
*/
class Utilities
{
@ -448,7 +448,7 @@ class Utilities
*
* @return array
*/
public static function orderArray($array, $order)
public function orderArray($array, $order)
{
$ordered = array();

Просмотреть файл

@ -19,7 +19,7 @@
* @author Azure PHP SDK <azurephpsdk@microsoft.com>
* @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
* @link http://pear.php.net/package/azure-sdk-for-php
*/
namespace WindowsAzure\Common\Internal;
@ -35,7 +35,7 @@ use WindowsAzure\Common\Internal\Resources;
* @copyright 2012 Microsoft Corporation
* @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0
* @version Release: @package_version@
* @link https://github.com/windowsazure/azure-sdk-for-php
* @link http://pear.php.net/package/azure-sdk-for-php
*/
class Validate
{

Просмотреть файл

@ -19,7 +19,7 @@
* @author Azure PHP SDK <azurephpsdk@microsoft.com>
* @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
* @link http://pear.php.net/package/azure-sdk-for-php
*/
namespace WindowsAzure\Common\Models;
@ -34,7 +34,7 @@ use WindowsAzure\Common\Models\ServiceProperties;
* @copyright 2012 Microsoft Corporation
* @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0
* @version Release: @package_version@
* @link https://github.com/windowsazure/azure-sdk-for-php
* @link http://pear.php.net/package/azure-sdk-for-php
*/
class GetServicePropertiesResult
{

Просмотреть файл

@ -19,7 +19,7 @@
* @author Azure PHP SDK <azurephpsdk@microsoft.com>
* @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
* @link http://pear.php.net/package/azure-sdk-for-php
*/
namespace WindowsAzure\Common\Models;
@ -35,7 +35,7 @@ use WindowsAzure\Common\Internal\Utilities;
* @copyright 2012 Microsoft Corporation
* @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0
* @version Release: @package_version@
* @link https://github.com/windowsazure/azure-sdk-for-php
* @link http://pear.php.net/package/azure-sdk-for-php
*/
class Logging
{

Просмотреть файл

@ -19,7 +19,7 @@
* @author Azure PHP SDK <azurephpsdk@microsoft.com>
* @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
* @link http://pear.php.net/package/azure-sdk-for-php
*/
namespace WindowsAzure\Common\Models;
@ -34,7 +34,7 @@ use WindowsAzure\Common\Internal\Utilities;
* @copyright 2012 Microsoft Corporation
* @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0
* @version Release: @package_version@
* @link https://github.com/windowsazure/azure-sdk-for-php
* @link http://pear.php.net/package/azure-sdk-for-php
*/
class Metrics
{

Просмотреть файл

@ -19,7 +19,7 @@
* @author Azure PHP SDK <azurephpsdk@microsoft.com>
* @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
* @link http://pear.php.net/package/azure-sdk-for-php
*/
namespace WindowsAzure\Common\Models;
@ -34,7 +34,7 @@ use WindowsAzure\Common\Internal\Utilities;
* @copyright 2012 Microsoft Corporation
* @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0
* @version Release: @package_version@
* @link https://github.com/windowsazure/azure-sdk-for-php
* @link http://pear.php.net/package/azure-sdk-for-php
*/
class RetentionPolicy
{

Просмотреть файл

@ -19,7 +19,7 @@
* @author Azure PHP SDK <azurephpsdk@microsoft.com>
* @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
* @link http://pear.php.net/package/azure-sdk-for-php
*/
namespace WindowsAzure\Common\Models;
@ -37,7 +37,7 @@ use WindowsAzure\Common\Internal\Serialization\XmlSerializer;
* @copyright 2012 Microsoft Corporation
* @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0
* @version Release: @package_version@
* @link https://github.com/windowsazure/azure-sdk-for-php
* @link http://pear.php.net/package/azure-sdk-for-php
*/
class ServiceProperties
{

Просмотреть файл

@ -19,7 +19,7 @@
* @author Azure PHP SDK <azurephpsdk@microsoft.com>
* @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
* @link http://pear.php.net/package/azure-sdk-for-php
*/
namespace WindowsAzure\Common;
@ -34,7 +34,7 @@ use WindowsAzure\Common\Internal\Resources;
* @copyright 2012 Microsoft Corporation
* @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0
* @version Release: @package_version@
* @link https://github.com/windowsazure/azure-sdk-for-php
* @link http://pear.php.net/package/azure-sdk-for-php
*/
class ServiceException extends \LogicException
{

Просмотреть файл

@ -19,7 +19,7 @@
* @author Azure PHP SDK <azurephpsdk@microsoft.com>
* @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
* @link http://pear.php.net/package/azure-sdk-for-php
*/
namespace WindowsAzure\Queue\Internal;
@ -34,7 +34,7 @@ use WindowsAzure\Common\Internal\FilterableService;
* @copyright 2012 Microsoft Corporation
* @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0
* @version Release: @package_version@
* @link https://github.com/windowsazure/azure-sdk-for-php
* @link http://pear.php.net/package/azure-sdk-for-php
* @see http://msdn.microsoft.com/en-us/library/windowsazure/dd179363.aspx
*/
interface IQueue extends FilterableService

Просмотреть файл

@ -19,7 +19,7 @@
* @author Azure PHP SDK <azurephpsdk@microsoft.com>
* @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
* @link http://pear.php.net/package/azure-sdk-for-php
*/
namespace WindowsAzure\Queue\Models;
@ -33,7 +33,7 @@ namespace WindowsAzure\Queue\Models;
* @copyright 2012 Microsoft Corporation
* @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0
* @version Release: @package_version@
* @link https://github.com/windowsazure/azure-sdk-for-php
* @link http://pear.php.net/package/azure-sdk-for-php
*/
class CreateMessageOptions extends QueueServiceOptions
{

Просмотреть файл

@ -19,7 +19,7 @@
* @author Azure PHP SDK <azurephpsdk@microsoft.com>
* @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
* @link http://pear.php.net/package/azure-sdk-for-php
*/
namespace WindowsAzure\Queue\Models;
@ -33,7 +33,7 @@ namespace WindowsAzure\Queue\Models;
* @copyright 2012 Microsoft Corporation
* @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0
* @version Release: @package_version@
* @link https://github.com/windowsazure/azure-sdk-for-php
* @link http://pear.php.net/package/azure-sdk-for-php
*/
class CreateQueueOptions extends QueueServiceOptions
{

Просмотреть файл

@ -19,7 +19,7 @@
* @author Azure PHP SDK <azurephpsdk@microsoft.com>
* @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
* @link http://pear.php.net/package/azure-sdk-for-php
*/
namespace WindowsAzure\Queue\Models;
@ -33,7 +33,7 @@ namespace WindowsAzure\Queue\Models;
* @copyright 2012 Microsoft Corporation
* @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0
* @version Release: @package_version@
* @link https://github.com/windowsazure/azure-sdk-for-php
* @link http://pear.php.net/package/azure-sdk-for-php
*/
class GetQueueMetadataResult
{

Просмотреть файл

@ -19,7 +19,7 @@
* @author Azure PHP SDK <azurephpsdk@microsoft.com>
* @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
* @link http://pear.php.net/package/azure-sdk-for-php
*/
namespace WindowsAzure\Queue\Models;
@ -33,7 +33,7 @@ namespace WindowsAzure\Queue\Models;
* @copyright 2012 Microsoft Corporation
* @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0
* @version Release: @package_version@
* @link https://github.com/windowsazure/azure-sdk-for-php
* @link http://pear.php.net/package/azure-sdk-for-php
*/
class ListMessagesOptions extends QueueServiceOptions
{

Просмотреть файл

@ -19,7 +19,7 @@
* @author Azure PHP SDK <azurephpsdk@microsoft.com>
* @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
* @link http://pear.php.net/package/azure-sdk-for-php
*/
namespace WindowsAzure\Queue\Models;
@ -35,7 +35,7 @@ use WindowsAzure\Common\Internal\Utilities;
* @copyright 2012 Microsoft Corporation
* @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0
* @version Release: @package_version@
* @link https://github.com/windowsazure/azure-sdk-for-php
* @link http://pear.php.net/package/azure-sdk-for-php
*/
class ListMessagesResult
{

Некоторые файлы не были показаны из-за слишком большого количества измененных файлов Показать больше