Revert to stable commit
This commit is contained in:
Родитель
99d5d11634
Коммит
4cb53598d2
|
@ -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
|
||||
{
|
||||
|
|
Некоторые файлы не были показаны из-за слишком большого количества измененных файлов Показать больше
Загрузка…
Ссылка в новой задаче