Коммит
eadb0378df
|
@ -1,3 +1,8 @@
|
|||
2016.05 - version 0.10.1
|
||||
Blob
|
||||
* Fixed the issue that blobs upload with size multiple of 4194304 bytes and larger than 33554432 bytes.
|
||||
* Fixed the issue that extra / is appended in blob URL.
|
||||
|
||||
2016.04 - version 0.10.0
|
||||
ALL
|
||||
* Separated Azure Storage APIs in Azure-SDK-for-PHP to establish an independent release cycle.
|
||||
|
|
|
@ -92,7 +92,7 @@ You can find samples in the [sample folder](samples)
|
|||
|
||||
If you are using [Azure SDK for PHP](https://github.com/Azure/azure-sdk-for-php/) to access Azure Storage Service, we highly recommend you to migrate to this SDK for faster issue resolution and quicker feature implementation. We are working on supporting the latest service features (including SAS, CORS, append blob, file service, etc) as well as improvement on existing APIs.
|
||||
|
||||
For now, Microsoft Azure Storage SDK for PHP v0.10.0 shares almost the same interface as the storage blobs, tables and queues APIs in Azure SDK for PHP v0.4.1. However, there are some minor breaking changes need to be addressed during your migration. You can find the details in [BreakingChanges.md](BreakingChanges.md).
|
||||
For now, Microsoft Azure Storage SDK for PHP v0.10.1 shares almost the same interface as the storage blobs, tables and queues APIs in Azure SDK for PHP v0.4.3. However, there are some minor breaking changes need to be addressed during your migration. You can find the details in [BreakingChanges.md](BreakingChanges.md).
|
||||
|
||||
Please note that this library is still in preview and may contain more breaking changes in upcoming releases.
|
||||
|
||||
|
|
|
@ -85,7 +85,7 @@ use MicrosoftAzure\Storage\Blob\Models\BreakLeaseResult;
|
|||
* @author Azure Storage PHP SDK <dmsh@microsoft.com>
|
||||
* @copyright 2016 Microsoft Corporation
|
||||
* @license https://github.com/azure/azure-storage-php/LICENSE
|
||||
* @version Release: 0.10.0
|
||||
* @version Release: 0.10.1
|
||||
* @link https://github.com/azure/azure-storage-php
|
||||
*/
|
||||
class BlobRestProxy extends ServiceRestProxy implements IBlob
|
||||
|
@ -195,6 +195,10 @@ class BlobRestProxy extends ServiceRestProxy implements IBlob
|
|||
$encodedBlob = $container . '/' . $encodedBlob;
|
||||
}
|
||||
|
||||
if (substr($encodedBlob, 0, 1) != '/' && substr($this->getUri(), -1, 1) != '/')
|
||||
{
|
||||
$encodedBlob = '/' . $encodedBlob;
|
||||
}
|
||||
return $this->getUri() . $encodedBlob;
|
||||
}
|
||||
|
||||
|
@ -1352,12 +1356,14 @@ class BlobRestProxy extends ServiceRestProxy implements IBlob
|
|||
$content = substr_replace($content, '', 0, $blockSize);
|
||||
}
|
||||
}
|
||||
if (!empty($body)) {
|
||||
$block = new Block();
|
||||
$block->setBlockId(base64_encode(str_pad($counter++, 6, '0', STR_PAD_LEFT)));
|
||||
$block->setType('Uncommitted');
|
||||
array_push($blockIds, $block);
|
||||
$this->createBlobBlock($container, $blob, $block->getBlockId(), $body);
|
||||
}
|
||||
}
|
||||
$response = $this->commitBlobBlocks($container, $blob, $blockIds, $options);
|
||||
}
|
||||
return CopyBlobResult::create(HttpFormatter::formatHeaders($response->getHeaders()));
|
||||
|
|
|
@ -33,7 +33,7 @@ use MicrosoftAzure\Storage\Common\Internal\FilterableService;
|
|||
* @author Azure Storage PHP SDK <dmsh@microsoft.com>
|
||||
* @copyright 2016 Microsoft Corporation
|
||||
* @license https://github.com/azure/azure-storage-php/LICENSE
|
||||
* @version Release: 0.10.0
|
||||
* @version Release: 0.10.1
|
||||
* @link https://github.com/azure/azure-storage-php
|
||||
* @see http://msdn.microsoft.com/en-us/library/windowsazure/dd135733.aspx
|
||||
*/
|
||||
|
|
|
@ -36,7 +36,7 @@ use MicrosoftAzure\Storage\Common\Internal\WindowsAzureUtilities;
|
|||
* @author Azure Storage PHP SDK <dmsh@microsoft.com>
|
||||
* @copyright 2016 Microsoft Corporation
|
||||
* @license https://github.com/azure/azure-storage-php/LICENSE
|
||||
* @version Release: 0.10.0
|
||||
* @version Release: 0.10.1
|
||||
* @link https://github.com/azure/azure-storage-php
|
||||
*/
|
||||
class AccessCondition
|
||||
|
|
|
@ -35,7 +35,7 @@ use MicrosoftAzure\Storage\Common\Internal\Validate;
|
|||
* @author Azure Storage PHP SDK <dmsh@microsoft.com>
|
||||
* @copyright 2016 Microsoft Corporation
|
||||
* @license https://github.com/azure/azure-storage-php/LICENSE
|
||||
* @version Release: 0.10.0
|
||||
* @version Release: 0.10.1
|
||||
* @link https://github.com/azure/azure-storage-php
|
||||
*/
|
||||
class AccessPolicy
|
||||
|
|
|
@ -32,7 +32,7 @@ namespace MicrosoftAzure\Storage\Blob\Models;
|
|||
* @author Azure Storage PHP SDK <dmsh@microsoft.com>
|
||||
* @copyright 2016 Microsoft Corporation
|
||||
* @license https://github.com/azure/azure-storage-php/LICENSE
|
||||
* @version Release: 0.10.0
|
||||
* @version Release: 0.10.1
|
||||
* @link https://github.com/azure/azure-storage-php
|
||||
*/
|
||||
class AcquireLeaseOptions extends BlobServiceOptions
|
||||
|
|
|
@ -34,7 +34,7 @@ use MicrosoftAzure\Storage\Common\Internal\Utilities;
|
|||
* @author Azure Storage PHP SDK <dmsh@microsoft.com>
|
||||
* @copyright 2016 Microsoft Corporation
|
||||
* @license https://github.com/azure/azure-storage-php/LICENSE
|
||||
* @version Release: 0.10.0
|
||||
* @version Release: 0.10.1
|
||||
* @link https://github.com/azure/azure-storage-php
|
||||
*/
|
||||
class AcquireLeaseResult
|
||||
|
|
|
@ -32,7 +32,7 @@ namespace MicrosoftAzure\Storage\Blob\Models;
|
|||
* @author Azure Storage PHP SDK <dmsh@microsoft.com>
|
||||
* @copyright 2016 Microsoft Corporation
|
||||
* @license https://github.com/azure/azure-storage-php/LICENSE
|
||||
* @version Release: 0.10.0
|
||||
* @version Release: 0.10.1
|
||||
* @link https://github.com/azure/azure-storage-php
|
||||
*/
|
||||
class Blob
|
||||
|
|
|
@ -32,7 +32,7 @@ namespace MicrosoftAzure\Storage\Blob\Models;
|
|||
* @author Azure Storage PHP SDK <dmsh@microsoft.com>
|
||||
* @copyright 2016 Microsoft Corporation
|
||||
* @license https://github.com/azure/azure-storage-php/LICENSE
|
||||
* @version Release: 0.10.0
|
||||
* @version Release: 0.10.1
|
||||
* @link https://github.com/azure/azure-storage-php
|
||||
*/
|
||||
class BlobBlockType
|
||||
|
|
|
@ -32,7 +32,7 @@ namespace MicrosoftAzure\Storage\Blob\Models;
|
|||
* @author Azure Storage PHP SDK <dmsh@microsoft.com>
|
||||
* @copyright 2016 Microsoft Corporation
|
||||
* @license https://github.com/azure/azure-storage-php/LICENSE
|
||||
* @version Release: 0.10.0
|
||||
* @version Release: 0.10.1
|
||||
* @link https://github.com/azure/azure-storage-php
|
||||
*/
|
||||
class BlobPrefix
|
||||
|
|
|
@ -35,7 +35,7 @@ use MicrosoftAzure\Storage\Common\Internal\Utilities;
|
|||
* @author Azure Storage PHP SDK <dmsh@microsoft.com>
|
||||
* @copyright 2016 Microsoft Corporation
|
||||
* @license https://github.com/azure/azure-storage-php/LICENSE
|
||||
* @version Release: 0.10.0
|
||||
* @version Release: 0.10.1
|
||||
* @link https://github.com/azure/azure-storage-php
|
||||
*/
|
||||
class BlobProperties
|
||||
|
|
|
@ -32,7 +32,7 @@ namespace MicrosoftAzure\Storage\Blob\Models;
|
|||
* @author Azure Storage PHP SDK <dmsh@microsoft.com>
|
||||
* @copyright 2016 Microsoft Corporation
|
||||
* @license https://github.com/azure/azure-storage-php/LICENSE
|
||||
* @version Release: 0.10.0
|
||||
* @version Release: 0.10.1
|
||||
* @link https://github.com/azure/azure-storage-php
|
||||
*/
|
||||
class BlobServiceOptions
|
||||
|
|
|
@ -32,7 +32,7 @@ namespace MicrosoftAzure\Storage\Blob\Models;
|
|||
* @author Azure Storage PHP SDK <dmsh@microsoft.com>
|
||||
* @copyright 2016 Microsoft Corporation
|
||||
* @license https://github.com/azure/azure-storage-php/LICENSE
|
||||
* @version Release: 0.10.0
|
||||
* @version Release: 0.10.1
|
||||
* @link https://github.com/azure/azure-storage-php
|
||||
*/
|
||||
class BlobType
|
||||
|
|
|
@ -32,7 +32,7 @@ namespace MicrosoftAzure\Storage\Blob\Models;
|
|||
* @author Azure Storage PHP SDK <dmsh@microsoft.com>
|
||||
* @copyright 2016 Microsoft Corporation
|
||||
* @license https://github.com/azure/azure-storage-php/LICENSE
|
||||
* @version Release: 0.10.0
|
||||
* @version Release: 0.10.1
|
||||
* @link https://github.com/azure/azure-storage-php
|
||||
*/
|
||||
class Block
|
||||
|
|
|
@ -36,7 +36,7 @@ use MicrosoftAzure\Storage\Blob\Models\Block;
|
|||
* @author Azure Storage PHP SDK <dmsh@microsoft.com>
|
||||
* @copyright 2016 Microsoft Corporation
|
||||
* @license https://github.com/azure/azure-storage-php/LICENSE
|
||||
* @version Release: 0.10.0
|
||||
* @version Release: 0.10.1
|
||||
* @link https://github.com/azure/azure-storage-php
|
||||
*/
|
||||
class BlockList
|
||||
|
|
|
@ -34,7 +34,7 @@ use MicrosoftAzure\Storage\Common\Internal\Utilities;
|
|||
* @author Azure Storage PHP SDK <dmsh@microsoft.com>
|
||||
* @copyright 2016 Microsoft Corporation
|
||||
* @license https://github.com/azure/azure-storage-php/LICENSE
|
||||
* @version Release: 0.10.0
|
||||
* @version Release: 0.10.1
|
||||
* @link https://github.com/azure/azure-storage-php
|
||||
*/
|
||||
class BreakLeaseResult
|
||||
|
|
|
@ -33,7 +33,7 @@ use MicrosoftAzure\Storage\Common\Internal\Validate;
|
|||
* @author Azure Storage PHP SDK <dmsh@microsoft.com>
|
||||
* @copyright 2016 Microsoft Corporation
|
||||
* @license https://github.com/azure/azure-storage-php/LICENSE
|
||||
* @version Release: 0.10.0
|
||||
* @version Release: 0.10.1
|
||||
* @link https://github.com/azure/azure-storage-php
|
||||
*/
|
||||
class CommitBlobBlocksOptions extends BlobServiceOptions
|
||||
|
|
|
@ -34,7 +34,7 @@ use MicrosoftAzure\Storage\Common\Internal\Utilities;
|
|||
* @author Azure Storage PHP SDK <dmsh@microsoft.com>
|
||||
* @copyright 2016 Microsoft Corporation
|
||||
* @license https://github.com/azure/azure-storage-php/LICENSE
|
||||
* @version Release: 0.10.0
|
||||
* @version Release: 0.10.1
|
||||
* @link https://github.com/azure/azure-storage-php
|
||||
*/
|
||||
class Container
|
||||
|
|
|
@ -39,7 +39,7 @@ use MicrosoftAzure\Storage\Common\Internal\Serialization\XmlSerializer;
|
|||
* @author Azure Storage PHP SDK <dmsh@microsoft.com>
|
||||
* @copyright 2016 Microsoft Corporation
|
||||
* @license https://github.com/azure/azure-storage-php/LICENSE
|
||||
* @version Release: 0.10.0
|
||||
* @version Release: 0.10.1
|
||||
* @link https://github.com/azure/azure-storage-php
|
||||
*/
|
||||
class ContainerAcl
|
||||
|
|
|
@ -32,7 +32,7 @@ namespace MicrosoftAzure\Storage\Blob\Models;
|
|||
* @author Azure Storage PHP SDK <dmsh@microsoft.com>
|
||||
* @copyright 2016 Microsoft Corporation
|
||||
* @license https://github.com/azure/azure-storage-php/LICENSE
|
||||
* @version Release: 0.10.0
|
||||
* @version Release: 0.10.1
|
||||
* @link https://github.com/azure/azure-storage-php
|
||||
*/
|
||||
class ContainerProperties
|
||||
|
|
|
@ -33,7 +33,7 @@ use MicrosoftAzure\Storage\Common\Internal\Validate;
|
|||
* @author Azure Storage PHP SDK <dmsh@microsoft.com>
|
||||
* @copyright 2016 Microsoft Corporation
|
||||
* @license https://github.com/azure/azure-storage-php/LICENSE
|
||||
* @version Release: 0.10.0
|
||||
* @version Release: 0.10.1
|
||||
* @link https://github.com/azure/azure-storage-php
|
||||
*/
|
||||
class CopyBlobOptions extends BlobServiceOptions
|
||||
|
|
|
@ -34,7 +34,7 @@ use MicrosoftAzure\Storage\Common\Internal\Utilities;
|
|||
* @author Azure Storage PHP SDK <dmsh@microsoft.com>
|
||||
* @copyright 2016 Microsoft Corporation
|
||||
* @license https://github.com/azure/azure-storage-php/LICENSE
|
||||
* @version Release: 0.10.0
|
||||
* @version Release: 0.10.1
|
||||
* @link https://github.com/azure/azure-storage-php
|
||||
*/
|
||||
class CopyBlobResult
|
||||
|
|
|
@ -32,7 +32,7 @@ namespace MicrosoftAzure\Storage\Blob\Models;
|
|||
* @author Azure Storage PHP SDK <dmsh@microsoft.com>
|
||||
* @copyright 2016 Microsoft Corporation
|
||||
* @license https://github.com/azure/azure-storage-php/LICENSE
|
||||
* @version Release: 0.10.0
|
||||
* @version Release: 0.10.1
|
||||
* @link https://github.com/azure/azure-storage-php
|
||||
*/
|
||||
class CreateBlobBlockOptions extends BlobServiceOptions
|
||||
|
|
|
@ -33,7 +33,7 @@ use MicrosoftAzure\Storage\Common\Internal\Validate;
|
|||
* @author Azure Storage PHP SDK <dmsh@microsoft.com>
|
||||
* @copyright 2016 Microsoft Corporation
|
||||
* @license https://github.com/azure/azure-storage-php/LICENSE
|
||||
* @version Release: 0.10.0
|
||||
* @version Release: 0.10.1
|
||||
* @link https://github.com/azure/azure-storage-php
|
||||
*/
|
||||
class CreateBlobOptions extends BlobServiceOptions
|
||||
|
|
|
@ -32,7 +32,7 @@ namespace MicrosoftAzure\Storage\Blob\Models;
|
|||
* @author Azure Storage PHP SDK <dmsh@microsoft.com>
|
||||
* @copyright 2016 Microsoft Corporation
|
||||
* @license https://github.com/azure/azure-storage-php/LICENSE
|
||||
* @version Release: 0.10.0
|
||||
* @version Release: 0.10.1
|
||||
* @link https://github.com/azure/azure-storage-php
|
||||
*/
|
||||
class CreateBlobPagesOptions extends BlobServiceOptions
|
||||
|
|
|
@ -35,7 +35,7 @@ use MicrosoftAzure\Storage\Common\Internal\Utilities;
|
|||
* @author Azure Storage PHP SDK <dmsh@microsoft.com>
|
||||
* @copyright 2016 Microsoft Corporation
|
||||
* @license https://github.com/azure/azure-storage-php/LICENSE
|
||||
* @version Release: 0.10.0
|
||||
* @version Release: 0.10.1
|
||||
* @link https://github.com/azure/azure-storage-php
|
||||
*/
|
||||
class CreateBlobPagesResult
|
||||
|
|
|
@ -32,7 +32,7 @@ namespace MicrosoftAzure\Storage\Blob\Models;
|
|||
* @author Azure Storage PHP SDK <dmsh@microsoft.com>
|
||||
* @copyright 2016 Microsoft Corporation
|
||||
* @license https://github.com/azure/azure-storage-php/LICENSE
|
||||
* @version Release: 0.10.0
|
||||
* @version Release: 0.10.1
|
||||
* @link https://github.com/azure/azure-storage-php
|
||||
*/
|
||||
class CreateBlobSnapshotOptions extends BlobServiceOptions
|
||||
|
|
|
@ -35,7 +35,7 @@ use MicrosoftAzure\Storage\Common\Internal\Utilities;
|
|||
* @author Azure Storage PHP SDK <dmsh@microsoft.com>
|
||||
* @copyright 2016 Microsoft Corporation
|
||||
* @license https://github.com/azure/azure-storage-php/LICENSE
|
||||
* @version Release: 0.10.0
|
||||
* @version Release: 0.10.1
|
||||
* @link https://github.com/azure/azure-storage-php
|
||||
*/
|
||||
class CreateBlobSnapshotResult
|
||||
|
|
|
@ -34,7 +34,7 @@ use MicrosoftAzure\Storage\Common\Internal\Validate;
|
|||
* @author Azure Storage PHP SDK <dmsh@microsoft.com>
|
||||
* @copyright 2016 Microsoft Corporation
|
||||
* @license https://github.com/azure/azure-storage-php/LICENSE
|
||||
* @version Release: 0.10.0
|
||||
* @version Release: 0.10.1
|
||||
* @link https://github.com/azure/azure-storage-php
|
||||
*/
|
||||
class CreateContainerOptions extends BlobServiceOptions
|
||||
|
|
|
@ -33,7 +33,7 @@ use MicrosoftAzure\Storage\Common\Internal\Validate;
|
|||
* @author Azure Storage PHP SDK <dmsh@microsoft.com>
|
||||
* @copyright 2016 Microsoft Corporation
|
||||
* @license https://github.com/azure/azure-storage-php/LICENSE
|
||||
* @version Release: 0.10.0
|
||||
* @version Release: 0.10.1
|
||||
* @link https://github.com/azure/azure-storage-php
|
||||
*/
|
||||
class DeleteBlobOptions extends BlobServiceOptions
|
||||
|
|
|
@ -32,7 +32,7 @@ namespace MicrosoftAzure\Storage\Blob\Models;
|
|||
* @author Azure Storage PHP SDK <dmsh@microsoft.com>
|
||||
* @copyright 2016 Microsoft Corporation
|
||||
* @license https://github.com/azure/azure-storage-php/LICENSE
|
||||
* @version Release: 0.10.0
|
||||
* @version Release: 0.10.1
|
||||
* @link https://github.com/azure/azure-storage-php
|
||||
*/
|
||||
class DeleteContainerOptions extends BlobServiceOptions
|
||||
|
|
|
@ -32,7 +32,7 @@ namespace MicrosoftAzure\Storage\Blob\Models;
|
|||
* @author Azure Storage PHP SDK <dmsh@microsoft.com>
|
||||
* @copyright 2016 Microsoft Corporation
|
||||
* @license https://github.com/azure/azure-storage-php/LICENSE
|
||||
* @version Release: 0.10.0
|
||||
* @version Release: 0.10.1
|
||||
* @link https://github.com/azure/azure-storage-php
|
||||
*/
|
||||
class GetBlobMetadataOptions extends BlobServiceOptions
|
||||
|
|
|
@ -35,7 +35,7 @@ use MicrosoftAzure\Storage\Common\Internal\Utilities;
|
|||
* @author Azure Storage PHP SDK <dmsh@microsoft.com>
|
||||
* @copyright 2016 Microsoft Corporation
|
||||
* @license https://github.com/azure/azure-storage-php/LICENSE
|
||||
* @version Release: 0.10.0
|
||||
* @version Release: 0.10.1
|
||||
* @link https://github.com/azure/azure-storage-php
|
||||
*/
|
||||
class GetBlobMetadataResult
|
||||
|
|
|
@ -33,7 +33,7 @@ use MicrosoftAzure\Storage\Common\Internal\Validate;
|
|||
* @author Azure Storage PHP SDK <dmsh@microsoft.com>
|
||||
* @copyright 2016 Microsoft Corporation
|
||||
* @license https://github.com/azure/azure-storage-php/LICENSE
|
||||
* @version Release: 0.10.0
|
||||
* @version Release: 0.10.1
|
||||
* @link https://github.com/azure/azure-storage-php
|
||||
*/
|
||||
class GetBlobOptions extends BlobServiceOptions
|
||||
|
|
|
@ -32,7 +32,7 @@ namespace MicrosoftAzure\Storage\Blob\Models;
|
|||
* @author Azure Storage PHP SDK <dmsh@microsoft.com>
|
||||
* @copyright 2016 Microsoft Corporation
|
||||
* @license https://github.com/azure/azure-storage-php/LICENSE
|
||||
* @version Release: 0.10.0
|
||||
* @version Release: 0.10.1
|
||||
* @link https://github.com/azure/azure-storage-php
|
||||
*/
|
||||
class GetBlobPropertiesOptions extends BlobServiceOptions
|
||||
|
|
|
@ -32,7 +32,7 @@ namespace MicrosoftAzure\Storage\Blob\Models;
|
|||
* @author Azure Storage PHP SDK <dmsh@microsoft.com>
|
||||
* @copyright 2016 Microsoft Corporation
|
||||
* @license https://github.com/azure/azure-storage-php/LICENSE
|
||||
* @version Release: 0.10.0
|
||||
* @version Release: 0.10.1
|
||||
* @link https://github.com/azure/azure-storage-php
|
||||
*/
|
||||
class GetBlobPropertiesResult
|
||||
|
|
|
@ -34,7 +34,7 @@ use MicrosoftAzure\Storage\Common\Internal\Utilities;
|
|||
* @author Azure Storage PHP SDK <dmsh@microsoft.com>
|
||||
* @copyright 2016 Microsoft Corporation
|
||||
* @license https://github.com/azure/azure-storage-php/LICENSE
|
||||
* @version Release: 0.10.0
|
||||
* @version Release: 0.10.1
|
||||
* @link https://github.com/azure/azure-storage-php
|
||||
*/
|
||||
class GetBlobResult
|
||||
|
|
|
@ -33,7 +33,7 @@ use MicrosoftAzure\Storage\Blob\Models\ContainerAcl;
|
|||
* @author Azure Storage PHP SDK <dmsh@microsoft.com>
|
||||
* @copyright 2016 Microsoft Corporation
|
||||
* @license https://github.com/azure/azure-storage-php/LICENSE
|
||||
* @version Release: 0.10.0
|
||||
* @version Release: 0.10.1
|
||||
* @link https://github.com/azure/azure-storage-php
|
||||
*/
|
||||
class GetContainerAclResult
|
||||
|
|
|
@ -32,7 +32,7 @@ namespace MicrosoftAzure\Storage\Blob\Models;
|
|||
* @author Azure Storage PHP SDK <dmsh@microsoft.com>
|
||||
* @copyright 2016 Microsoft Corporation
|
||||
* @license https://github.com/azure/azure-storage-php/LICENSE
|
||||
* @version Release: 0.10.0
|
||||
* @version Release: 0.10.1
|
||||
* @link https://github.com/azure/azure-storage-php
|
||||
*/
|
||||
class GetContainerPropertiesResult
|
||||
|
|
|
@ -32,7 +32,7 @@ namespace MicrosoftAzure\Storage\Blob\Models;
|
|||
* @author Azure Storage PHP SDK <dmsh@microsoft.com>
|
||||
* @copyright 2016 Microsoft Corporation
|
||||
* @license https://github.com/azure/azure-storage-php/LICENSE
|
||||
* @version Release: 0.10.0
|
||||
* @version Release: 0.10.1
|
||||
* @link https://github.com/azure/azure-storage-php
|
||||
*/
|
||||
class LeaseMode
|
||||
|
|
|
@ -33,7 +33,7 @@ use MicrosoftAzure\Storage\Common\Internal\Validate;
|
|||
* @author Azure Storage PHP SDK <dmsh@microsoft.com>
|
||||
* @copyright 2016 Microsoft Corporation
|
||||
* @license https://github.com/azure/azure-storage-php/LICENSE
|
||||
* @version Release: 0.10.0
|
||||
* @version Release: 0.10.1
|
||||
* @link https://github.com/azure/azure-storage-php
|
||||
*/
|
||||
class ListBlobBlocksOptions extends BlobServiceOptions
|
||||
|
|
|
@ -35,7 +35,7 @@ use MicrosoftAzure\Storage\Common\Internal\Utilities;
|
|||
* @author Azure Storage PHP SDK <dmsh@microsoft.com>
|
||||
* @copyright 2016 Microsoft Corporation
|
||||
* @license https://github.com/azure/azure-storage-php/LICENSE
|
||||
* @version Release: 0.10.0
|
||||
* @version Release: 0.10.1
|
||||
* @link https://github.com/azure/azure-storage-php
|
||||
*/
|
||||
class ListBlobBlocksResult
|
||||
|
|
|
@ -33,7 +33,7 @@ use MicrosoftAzure\Storage\Common\Internal\Validate;
|
|||
* @author Azure Storage PHP SDK <dmsh@microsoft.com>
|
||||
* @copyright 2016 Microsoft Corporation
|
||||
* @license https://github.com/azure/azure-storage-php/LICENSE
|
||||
* @version Release: 0.10.0
|
||||
* @version Release: 0.10.1
|
||||
* @link https://github.com/azure/azure-storage-php
|
||||
*/
|
||||
class ListBlobsOptions extends BlobServiceOptions
|
||||
|
|
|
@ -36,7 +36,7 @@ use MicrosoftAzure\Storage\Common\Internal\InvalidArgumentTypeException;
|
|||
* @author Azure Storage PHP SDK <dmsh@microsoft.com>
|
||||
* @copyright 2016 Microsoft Corporation
|
||||
* @license https://github.com/azure/azure-storage-php/LICENSE
|
||||
* @version Release: 0.10.0
|
||||
* @version Release: 0.10.1
|
||||
* @link https://github.com/azure/azure-storage-php
|
||||
*/
|
||||
class ListBlobsResult
|
||||
|
|
|
@ -34,7 +34,7 @@ use \MicrosoftAzure\Storage\Common\Internal\Validate;
|
|||
* @author Azure Storage PHP SDK <dmsh@microsoft.com>
|
||||
* @copyright 2016 Microsoft Corporation
|
||||
* @license https://github.com/azure/azure-storage-php/LICENSE
|
||||
* @version Release: 0.10.0
|
||||
* @version Release: 0.10.1
|
||||
* @link https://github.com/azure/azure-storage-php
|
||||
*/
|
||||
class ListContainersOptions extends BlobServiceOptions
|
||||
|
|
|
@ -36,7 +36,7 @@ use MicrosoftAzure\Storage\Tests\Unit\Common\Internal\UtilitiesTest;
|
|||
* @author Azure Storage PHP SDK <dmsh@microsoft.com>
|
||||
* @copyright 2016 Microsoft Corporation
|
||||
* @license https://github.com/azure/azure-storage-php/LICENSE
|
||||
* @version Release: 0.10.0
|
||||
* @version Release: 0.10.1
|
||||
* @link https://github.com/azure/azure-storage-php
|
||||
*/
|
||||
class ListContainersResult
|
||||
|
|
|
@ -33,7 +33,7 @@ use MicrosoftAzure\Storage\Common\Internal\Validate;
|
|||
* @author Azure Storage PHP SDK <dmsh@microsoft.com>
|
||||
* @copyright 2016 Microsoft Corporation
|
||||
* @license https://github.com/azure/azure-storage-php/LICENSE
|
||||
* @version Release: 0.10.0
|
||||
* @version Release: 0.10.1
|
||||
* @link https://github.com/azure/azure-storage-php
|
||||
*/
|
||||
class ListPageBlobRangesOptions extends BlobServiceOptions
|
||||
|
|
|
@ -36,7 +36,7 @@ use MicrosoftAzure\Storage\Blob\Models\PageRange;
|
|||
* @author Azure Storage PHP SDK <dmsh@microsoft.com>
|
||||
* @copyright 2016 Microsoft Corporation
|
||||
* @license https://github.com/azure/azure-storage-php/LICENSE
|
||||
* @version Release: 0.10.0
|
||||
* @version Release: 0.10.1
|
||||
* @link https://github.com/azure/azure-storage-php
|
||||
*/
|
||||
class ListPageBlobRangesResult
|
||||
|
|
|
@ -32,7 +32,7 @@ namespace MicrosoftAzure\Storage\Blob\Models;
|
|||
* @author Azure Storage PHP SDK <dmsh@microsoft.com>
|
||||
* @copyright 2016 Microsoft Corporation
|
||||
* @license https://github.com/azure/azure-storage-php/LICENSE
|
||||
* @version Release: 0.10.0
|
||||
* @version Release: 0.10.1
|
||||
* @link https://github.com/azure/azure-storage-php
|
||||
*/
|
||||
class PageRange
|
||||
|
|
|
@ -32,7 +32,7 @@ namespace MicrosoftAzure\Storage\Blob\Models;
|
|||
* @author Azure Storage PHP SDK <dmsh@microsoft.com>
|
||||
* @copyright 2016 Microsoft Corporation
|
||||
* @license https://github.com/azure/azure-storage-php/LICENSE
|
||||
* @version Release: 0.10.0
|
||||
* @version Release: 0.10.1
|
||||
* @link https://github.com/azure/azure-storage-php
|
||||
*/
|
||||
class PageWriteOption
|
||||
|
|
|
@ -33,7 +33,7 @@ use MicrosoftAzure\Storage\Common\Internal\Resources;
|
|||
* @author Azure Storage PHP SDK <dmsh@microsoft.com>
|
||||
* @copyright 2016 Microsoft Corporation
|
||||
* @license https://github.com/azure/azure-storage-php/LICENSE
|
||||
* @version Release: 0.10.0
|
||||
* @version Release: 0.10.1
|
||||
* @link https://github.com/azure/azure-storage-php
|
||||
*/
|
||||
class PublicAccessType
|
||||
|
|
|
@ -32,7 +32,7 @@ namespace MicrosoftAzure\Storage\Blob\Models;
|
|||
* @author Azure Storage PHP SDK <dmsh@microsoft.com>
|
||||
* @copyright 2016 Microsoft Corporation
|
||||
* @license https://github.com/azure/azure-storage-php/LICENSE
|
||||
* @version Release: 0.10.0
|
||||
* @version Release: 0.10.1
|
||||
* @link https://github.com/azure/azure-storage-php
|
||||
*/
|
||||
class SetBlobMetadataOptions extends BlobServiceOptions
|
||||
|
|
|
@ -35,7 +35,7 @@ use MicrosoftAzure\Storage\Common\Internal\Utilities;
|
|||
* @author Azure Storage PHP SDK <dmsh@microsoft.com>
|
||||
* @copyright 2016 Microsoft Corporation
|
||||
* @license https://github.com/azure/azure-storage-php/LICENSE
|
||||
* @version Release: 0.10.0
|
||||
* @version Release: 0.10.1
|
||||
* @link https://github.com/azure/azure-storage-php
|
||||
*/
|
||||
class SetBlobMetadataResult
|
||||
|
|
|
@ -33,7 +33,7 @@ use MicrosoftAzure\Storage\Common\Internal\Validate;
|
|||
* @author Azure Storage PHP SDK <dmsh@microsoft.com>
|
||||
* @copyright 2016 Microsoft Corporation
|
||||
* @license https://github.com/azure/azure-storage-php/LICENSE
|
||||
* @version Release: 0.10.0
|
||||
* @version Release: 0.10.1
|
||||
* @link https://github.com/azure/azure-storage-php
|
||||
*/
|
||||
class SetBlobPropertiesOptions extends BlobServiceOptions
|
||||
|
|
|
@ -35,7 +35,7 @@ use MicrosoftAzure\Storage\Common\Internal\Utilities;
|
|||
* @author Azure Storage PHP SDK <dmsh@microsoft.com>
|
||||
* @copyright 2016 Microsoft Corporation
|
||||
* @license https://github.com/azure/azure-storage-php/LICENSE
|
||||
* @version Release: 0.10.0
|
||||
* @version Release: 0.10.1
|
||||
* @link https://github.com/azure/azure-storage-php
|
||||
*/
|
||||
class SetBlobPropertiesResult
|
||||
|
|
|
@ -34,7 +34,7 @@ use MicrosoftAzure\Storage\Blob\Models\BlobServiceOptions;
|
|||
* @author Azure Storage PHP SDK <dmsh@microsoft.com>
|
||||
* @copyright 2016 Microsoft Corporation
|
||||
* @license https://github.com/azure/azure-storage-php/LICENSE
|
||||
* @version Release: 0.10.0
|
||||
* @version Release: 0.10.1
|
||||
* @link https://github.com/azure/azure-storage-php
|
||||
*/
|
||||
class SetContainerMetadataOptions extends BlobServiceOptions
|
||||
|
|
|
@ -33,7 +33,7 @@ use MicrosoftAzure\Storage\Blob\Models\AccessPolicy;
|
|||
* @author Azure Storage PHP SDK <dmsh@microsoft.com>
|
||||
* @copyright 2016 Microsoft Corporation
|
||||
* @license https://github.com/azure/azure-storage-php/LICENSE
|
||||
* @version Release: 0.10.0
|
||||
* @version Release: 0.10.1
|
||||
* @link https://github.com/azure/azure-storage-php
|
||||
*/
|
||||
class SignedIdentifier
|
||||
|
|
|
@ -36,7 +36,7 @@ use MicrosoftAzure\Storage\Common\Internal\ConnectionStringSource;
|
|||
* @author Azure Storage PHP SDK <dmsh@microsoft.com>
|
||||
* @copyright 2016 Microsoft Corporation
|
||||
* @license https://github.com/azure/azure-storage-php/LICENSE
|
||||
* @version Release: 0.10.0
|
||||
* @version Release: 0.10.1
|
||||
* @link https://github.com/azure/azure-storage-php
|
||||
*/
|
||||
class CloudConfigurationManager
|
||||
|
|
|
@ -32,7 +32,7 @@ namespace MicrosoftAzure\Storage\Common\Internal\Authentication;
|
|||
* @author Azure Storage PHP SDK <dmsh@microsoft.com>
|
||||
* @copyright Microsoft Corporation
|
||||
* @license https://github.com/azure/azure-storage-php/LICENSE
|
||||
* @version Release: 0.10.0
|
||||
* @version Release: 0.10.1
|
||||
* @link https://github.com/azure/azure-storage-php
|
||||
*/
|
||||
interface IAuthScheme
|
||||
|
|
|
@ -36,7 +36,7 @@ use MicrosoftAzure\Storage\Common\Internal\Utilities;
|
|||
* @author Azure Storage PHP SDK <dmsh@microsoft.com>
|
||||
* @copyright 2016 Microsoft Corporation
|
||||
* @license https://github.com/azure/azure-storage-php/LICENSE
|
||||
* @version Release: 0.10.0
|
||||
* @version Release: 0.10.1
|
||||
* @link https://github.com/azure/azure-storage-php
|
||||
*/
|
||||
class SharedKeyAuthScheme extends StorageAuthScheme
|
||||
|
|
|
@ -36,7 +36,7 @@ use MicrosoftAzure\Storage\Common\Internal\Authentication\IAuthScheme;
|
|||
* @author Azure Storage PHP SDK <dmsh@microsoft.com>
|
||||
* @copyright 2016 Microsoft Corporation
|
||||
* @license https://github.com/azure/azure-storage-php/LICENSE
|
||||
* @version Release: 0.10.0
|
||||
* @version Release: 0.10.1
|
||||
* @link https://github.com/azure/azure-storage-php
|
||||
*/
|
||||
abstract class StorageAuthScheme implements IAuthScheme
|
||||
|
|
|
@ -36,7 +36,7 @@ use MicrosoftAzure\Storage\Common\Internal\Utilities;
|
|||
* @author Azure Storage PHP SDK <dmsh@microsoft.com>
|
||||
* @copyright 2016 Microsoft Corporation
|
||||
* @license https://github.com/azure/azure-storage-php/LICENSE
|
||||
* @version Release: 0.10.0
|
||||
* @version Release: 0.10.1
|
||||
* @link http://github.com/windowsazure/azure-sdk-for-php
|
||||
*/
|
||||
class TableSharedKeyLiteAuthScheme extends StorageAuthScheme
|
||||
|
|
|
@ -34,7 +34,7 @@ namespace MicrosoftAzure\Storage\Common\Internal;
|
|||
* @author Azure Storage PHP SDK <dmsh@microsoft.com>
|
||||
* @copyright 2016 Microsoft Corporation
|
||||
* @license https://github.com/azure/azure-storage-php/LICENSE
|
||||
* @version Release: 0.10.0
|
||||
* @version Release: 0.10.1
|
||||
* @link https://github.com/azure/azure-storage-php
|
||||
*/
|
||||
class ConnectionStringParser
|
||||
|
@ -353,7 +353,7 @@ class ConnectionStringParser
|
|||
* @author Azure Storage PHP SDK <dmsh@microsoft.com>
|
||||
* @copyright 2016 Microsoft Corporation
|
||||
* @license https://github.com/azure/azure-storage-php/LICENSE
|
||||
* @version Release: 0.10.0
|
||||
* @version Release: 0.10.1
|
||||
* @link https://github.com/azure/azure-storage-php
|
||||
*/
|
||||
class ParserState
|
||||
|
|
|
@ -32,7 +32,7 @@ namespace MicrosoftAzure\Storage\Common\Internal;
|
|||
* @author Azure Storage PHP SDK <dmsh@microsoft.com>
|
||||
* @copyright 2016 Microsoft Corporation
|
||||
* @license https://github.com/azure/azure-storage-php/LICENSE
|
||||
* @version Release: 0.10.0
|
||||
* @version Release: 0.10.1
|
||||
* @link https://github.com/azure/azure-storage-php
|
||||
*/
|
||||
class ConnectionStringSource
|
||||
|
|
|
@ -32,7 +32,7 @@ namespace MicrosoftAzure\Storage\Common\Internal;
|
|||
* @author Azure Storage PHP SDK <dmsh@microsoft.com>
|
||||
* @copyright 2016 Microsoft Corporation
|
||||
* @license https://github.com/azure/azure-storage-php/LICENSE
|
||||
* @version Release: 0.10.0
|
||||
* @version Release: 0.10.1
|
||||
* @link https://github.com/azure/azure-storage-php
|
||||
*/
|
||||
interface FilterableService
|
||||
|
|
|
@ -36,7 +36,7 @@ use GuzzleHttp\Psr7;
|
|||
* @author Azure Storage PHP SDK <dmsh@microsoft.com>
|
||||
* @copyright 2016 Microsoft Corporation
|
||||
* @license https://github.com/azure/azure-storage-php/LICENSE
|
||||
* @version Release: 0.10.0
|
||||
* @version Release: 0.10.1
|
||||
* @link https://github.com/azure/azure-storage-php
|
||||
*/
|
||||
class AuthenticationFilter implements IServiceFilter
|
||||
|
|
|
@ -34,7 +34,7 @@ use MicrosoftAzure\Storage\Common\Internal\IServiceFilter;
|
|||
* @author Azure Storage PHP SDK <dmsh@microsoft.com>
|
||||
* @copyright 2016 Microsoft Corporation
|
||||
* @license https://github.com/azure/azure-storage-php/LICENSE
|
||||
* @version Release: 0.10.0
|
||||
* @version Release: 0.10.1
|
||||
* @link https://github.com/azure/azure-storage-php
|
||||
*/
|
||||
class DateFilter implements IServiceFilter
|
||||
|
|
|
@ -32,7 +32,7 @@ namespace MicrosoftAzure\Storage\Common\Internal\Filters;
|
|||
* @author Azure Storage PHP SDK <dmsh@microsoft.com>
|
||||
* @copyright 2016 Microsoft Corporation
|
||||
* @license https://github.com/azure/azure-storage-php/LICENSE
|
||||
* @version Release: 0.10.0
|
||||
* @version Release: 0.10.1
|
||||
* @link https://github.com/azure/azure-storage-php
|
||||
*/
|
||||
class ExponentialRetryPolicy extends RetryPolicy
|
||||
|
|
|
@ -33,7 +33,7 @@ use MicrosoftAzure\Storage\Common\Internal\IServiceFilter;
|
|||
* @author Azure Storage PHP SDK <dmsh@microsoft.com>
|
||||
* @copyright 2016 Microsoft Corporation
|
||||
* @license https://github.com/azure/azure-storage-php/LICENSE
|
||||
* @version Release: 0.10.0
|
||||
* @version Release: 0.10.1
|
||||
* @link https://github.com/azure/azure-storage-php
|
||||
*/
|
||||
class HeadersFilter implements IServiceFilter
|
||||
|
|
|
@ -32,7 +32,7 @@ namespace MicrosoftAzure\Storage\Common\Internal\Filters;
|
|||
* @author Azure Storage PHP SDK <dmsh@microsoft.com>
|
||||
* @copyright 2016 Microsoft Corporation
|
||||
* @license https://github.com/azure/azure-storage-php/LICENSE
|
||||
* @version Release: 0.10.0
|
||||
* @version Release: 0.10.1
|
||||
* @link https://github.com/azure/azure-storage-php
|
||||
*/
|
||||
abstract class RetryPolicy
|
||||
|
|
|
@ -34,7 +34,7 @@ use GuzzleHttp\Client;
|
|||
* @author Azure Storage PHP SDK <dmsh@microsoft.com>
|
||||
* @copyright 2016 Microsoft Corporation
|
||||
* @license https://github.com/azure/azure-storage-php/LICENSE
|
||||
* @version Release: 0.10.0
|
||||
* @version Release: 0.10.1
|
||||
* @link https://github.com/azure/azure-storage-php
|
||||
*/
|
||||
class RetryPolicyFilter implements IServiceFilter
|
||||
|
|
|
@ -35,7 +35,7 @@ use MicrosoftAzure\Storage\Common\Internal\Validate;
|
|||
* @author Azure Storage PHP SDK <dmsh@microsoft.com>
|
||||
* @copyright 2016 Microsoft Corporation
|
||||
* @license https://github.com/azure/azure-storage-php/LICENSE
|
||||
* @version Release: 0.10.0
|
||||
* @version Release: 0.10.1
|
||||
* @link https://github.com/azure/azure-storage-php
|
||||
*/
|
||||
class HttpCallContext
|
||||
|
|
|
@ -33,7 +33,7 @@ namespace MicrosoftAzure\Storage\Common\Internal;
|
|||
* @author Azure Storage PHP SDK <dmsh@microsoft.com>
|
||||
* @copyright 2016 Microsoft Corporation
|
||||
* @license https://github.com/azure/azure-storage-php/LICENSE
|
||||
* @version Release: 0.10.0
|
||||
* @version Release: 0.10.1
|
||||
* @link https://github.com/azure/azure-storage-php
|
||||
*/
|
||||
interface IServiceFilter
|
||||
|
|
|
@ -33,7 +33,7 @@ use MicrosoftAzure\Storage\Common\Internal\Resources;
|
|||
* @author Azure Storage PHP SDK <dmsh@microsoft.com>
|
||||
* @copyright 2016 Microsoft Corporation
|
||||
* @license https://github.com/azure/azure-storage-php/LICENSE
|
||||
* @version Release: 0.10.0
|
||||
* @version Release: 0.10.1
|
||||
* @link https://github.com/azure/azure-storage-php
|
||||
*/
|
||||
class InvalidArgumentTypeException extends \InvalidArgumentException
|
||||
|
|
|
@ -32,7 +32,7 @@ namespace MicrosoftAzure\Storage\Common\Internal;
|
|||
* @author Azure Storage PHP SDK <dmsh@microsoft.com>
|
||||
* @copyright 2016 Microsoft Corporation
|
||||
* @license https://github.com/azure/azure-storage-php/LICENSE
|
||||
* @version Release: 0.10.0
|
||||
* @version Release: 0.10.1
|
||||
* @link https://github.com/azure/azure-storage-php
|
||||
*/
|
||||
class Logger
|
||||
|
|
|
@ -32,7 +32,7 @@ namespace MicrosoftAzure\Storage\Common\Internal;
|
|||
* @author Azure Storage PHP SDK <dmsh@microsoft.com>
|
||||
* @copyright 2016 Microsoft Corporation
|
||||
* @license https://github.com/azure/azure-storage-php/LICENSE
|
||||
* @version Release: 0.10.0
|
||||
* @version Release: 0.10.1
|
||||
* @link https://github.com/azure/azure-storage-php
|
||||
*/
|
||||
class Resources
|
||||
|
|
|
@ -34,7 +34,7 @@ use MicrosoftAzure\Storage\Common\Internal\Validate;
|
|||
* @author Azure Storage PHP SDK <dmsh@microsoft.com>
|
||||
* @copyright 2016 Microsoft Corporation
|
||||
* @license https://github.com/azure/azure-storage-php/LICENSE
|
||||
* @version Release: 0.10.0
|
||||
* @version Release: 0.10.1
|
||||
* @link https://github.com/azure/azure-storage-php
|
||||
*/
|
||||
class RestProxy
|
||||
|
|
|
@ -32,7 +32,7 @@ namespace MicrosoftAzure\Storage\Common\Internal\Serialization;
|
|||
* @author Azure Storage PHP SDK <dmsh@microsoft.com>
|
||||
* @copyright 2016 Microsoft Corporation
|
||||
* @license https://github.com/azure/azure-storage-php/LICENSE
|
||||
* @version Release: 0.10.0
|
||||
* @version Release: 0.10.1
|
||||
* @link https://github.com/azure/azure-storage-php
|
||||
*/
|
||||
interface ISerializer
|
||||
|
|
|
@ -32,7 +32,7 @@ use MicrosoftAzure\Storage\Common\Internal\Validate;
|
|||
* @author Azure Storage PHP SDK <dmsh@microsoft.com>
|
||||
* @copyright Microsoft Corporation
|
||||
* @license https://github.com/azure/azure-storage-php/LICENSE
|
||||
* @version Release: 0.10.0
|
||||
* @version Release: 0.10.1
|
||||
* @link https://github.com/azure/azure-storage-php
|
||||
*/
|
||||
class JsonSerializer implements ISerializer
|
||||
|
|
|
@ -35,7 +35,7 @@ use MicrosoftAzure\Storage\Common\Internal\Validate;
|
|||
* @author Azure Storage PHP SDK <dmsh@microsoft.com>
|
||||
* @copyright 2016 Microsoft Corporation
|
||||
* @license https://github.com/azure/azure-storage-php/LICENSE
|
||||
* @version Release: 0.10.0
|
||||
* @version Release: 0.10.1
|
||||
* @link https://github.com/azure/azure-storage-php
|
||||
*/
|
||||
class XmlSerializer implements ISerializer
|
||||
|
|
|
@ -41,7 +41,7 @@ use GuzzleHttp\Psr7\Uri;
|
|||
* @author Azure Storage PHP SDK <dmsh@microsoft.com>
|
||||
* @copyright 2016 Microsoft Corporation
|
||||
* @license https://github.com/azure/azure-storage-php/LICENSE
|
||||
* @version Release: 0.10.0
|
||||
* @version Release: 0.10.1
|
||||
* @link https://github.com/azure/azure-storage-php
|
||||
*/
|
||||
class ServiceRestProxy extends RestProxy
|
||||
|
|
|
@ -42,7 +42,7 @@ use MicrosoftAzure\Storage\Common\Internal\Resources;
|
|||
* @author Azure Storage PHP SDK <dmsh@microsoft.com>
|
||||
* @copyright 2016 Microsoft Corporation
|
||||
* @license https://github.com/azure/azure-storage-php/LICENSE
|
||||
* @version Release: 0.10.0
|
||||
* @version Release: 0.10.1
|
||||
* @link https://github.com/azure/azure-storage-php
|
||||
*/
|
||||
abstract class ServiceSettings
|
||||
|
|
|
@ -36,7 +36,7 @@ use MicrosoftAzure\Storage\Common\Internal\Resources;
|
|||
* @author Azure Storage PHP SDK <dmsh@microsoft.com>
|
||||
* @copyright 2016 Microsoft Corporation
|
||||
* @license https://github.com/azure/azure-storage-php/LICENSE
|
||||
* @version Release: 0.10.0
|
||||
* @version Release: 0.10.1
|
||||
* @link https://github.com/azure/azure-storage-php
|
||||
*/
|
||||
class StorageServiceSettings extends ServiceSettings
|
||||
|
|
|
@ -32,7 +32,7 @@ namespace MicrosoftAzure\Storage\Common\Internal;
|
|||
* @author Azure Storage PHP SDK <dmsh@microsoft.com>
|
||||
* @copyright 2016 Microsoft Corporation
|
||||
* @license https://github.com/azure/azure-storage-php/LICENSE
|
||||
* @version Release: 0.10.0
|
||||
* @version Release: 0.10.1
|
||||
* @link https://github.com/azure/azure-storage-php
|
||||
*/
|
||||
class Utilities
|
||||
|
|
|
@ -34,7 +34,7 @@ use MicrosoftAzure\Storage\Common\Internal\Resources;
|
|||
* @author Azure Storage PHP SDK <dmsh@microsoft.com>
|
||||
* @copyright 2016 Microsoft Corporation
|
||||
* @license https://github.com/azure/azure-storage-php/LICENSE
|
||||
* @version Release: 0.10.0
|
||||
* @version Release: 0.10.1
|
||||
* @link https://github.com/azure/azure-storage-php
|
||||
*/
|
||||
class Validate
|
||||
|
|
|
@ -33,7 +33,7 @@ use MicrosoftAzure\Storage\Common\Models\ServiceProperties;
|
|||
* @author Azure Storage PHP SDK <dmsh@microsoft.com>
|
||||
* @copyright 2016 Microsoft Corporation
|
||||
* @license https://github.com/azure/azure-storage-php/LICENSE
|
||||
* @version Release: 0.10.0
|
||||
* @version Release: 0.10.1
|
||||
* @link https://github.com/azure/azure-storage-php
|
||||
*/
|
||||
class GetServicePropertiesResult
|
||||
|
|
|
@ -34,7 +34,7 @@ use MicrosoftAzure\Storage\Common\Internal\Utilities;
|
|||
* @author Azure Storage PHP SDK <dmsh@microsoft.com>
|
||||
* @copyright 2016 Microsoft Corporation
|
||||
* @license https://github.com/azure/azure-storage-php/LICENSE
|
||||
* @version Release: 0.10.0
|
||||
* @version Release: 0.10.1
|
||||
* @link https://github.com/azure/azure-storage-php
|
||||
*/
|
||||
class Logging
|
||||
|
|
|
@ -33,7 +33,7 @@ use MicrosoftAzure\Storage\Common\Internal\Utilities;
|
|||
* @author Azure Storage PHP SDK <dmsh@microsoft.com>
|
||||
* @copyright 2016 Microsoft Corporation
|
||||
* @license https://github.com/azure/azure-storage-php/LICENSE
|
||||
* @version Release: 0.10.0
|
||||
* @version Release: 0.10.1
|
||||
* @link https://github.com/azure/azure-storage-php
|
||||
*/
|
||||
class Metrics
|
||||
|
|
|
@ -33,7 +33,7 @@ use MicrosoftAzure\Storage\Common\Internal\Utilities;
|
|||
* @author Azure Storage PHP SDK <dmsh@microsoft.com>
|
||||
* @copyright 2016 Microsoft Corporation
|
||||
* @license https://github.com/azure/azure-storage-php/LICENSE
|
||||
* @version Release: 0.10.0
|
||||
* @version Release: 0.10.1
|
||||
* @link https://github.com/azure/azure-storage-php
|
||||
*/
|
||||
class RetentionPolicy
|
||||
|
|
|
@ -36,7 +36,7 @@ use MicrosoftAzure\Storage\Common\Internal\Serialization\XmlSerializer;
|
|||
* @author Azure Storage PHP SDK <dmsh@microsoft.com>
|
||||
* @copyright 2016 Microsoft Corporation
|
||||
* @license https://github.com/azure/azure-storage-php/LICENSE
|
||||
* @version Release: 0.10.0
|
||||
* @version Release: 0.10.1
|
||||
* @link https://github.com/azure/azure-storage-php
|
||||
*/
|
||||
class ServiceProperties
|
||||
|
|
|
@ -33,7 +33,7 @@ use MicrosoftAzure\Storage\Common\Internal\Resources;
|
|||
* @author Azure Storage PHP SDK <dmsh@microsoft.com>
|
||||
* @copyright 2016 Microsoft Corporation
|
||||
* @license https://github.com/azure/azure-storage-php/LICENSE
|
||||
* @version Release: 0.10.0
|
||||
* @version Release: 0.10.1
|
||||
* @link https://github.com/azure/azure-storage-php
|
||||
*/
|
||||
class ServiceException extends \LogicException
|
||||
|
|
|
@ -49,7 +49,7 @@ use MicrosoftAzure\Storage\Table\Internal\MimeReaderWriter;
|
|||
* @author Azure Storage PHP SDK <dmsh@microsoft.com>
|
||||
* @copyright 2016 Microsoft Corporation
|
||||
* @license https://github.com/azure/azure-storage-php/LICENSE
|
||||
* @version Release: 0.10.0
|
||||
* @version Release: 0.10.1
|
||||
* @link https://github.com/azure/azure-storage-php
|
||||
*/
|
||||
class ServicesBuilder
|
||||
|
|
|
@ -33,7 +33,7 @@ use MicrosoftAzure\Storage\Common\Internal\FilterableService;
|
|||
* @author Azure Storage PHP SDK <dmsh@microsoft.com>
|
||||
* @copyright 2016 Microsoft Corporation
|
||||
* @license https://github.com/azure/azure-storage-php/LICENSE
|
||||
* @version Release: 0.10.0
|
||||
* @version Release: 0.10.1
|
||||
* @link https://github.com/azure/azure-storage-php
|
||||
* @see http://msdn.microsoft.com/en-us/library/windowsazure/dd179363.aspx
|
||||
*/
|
||||
|
|
|
@ -32,7 +32,7 @@ namespace MicrosoftAzure\Storage\Queue\Models;
|
|||
* @author Azure Storage PHP SDK <dmsh@microsoft.com>
|
||||
* @copyright 2016 Microsoft Corporation
|
||||
* @license https://github.com/azure/azure-storage-php/LICENSE
|
||||
* @version Release: 0.10.0
|
||||
* @version Release: 0.10.1
|
||||
* @link https://github.com/azure/azure-storage-php
|
||||
*/
|
||||
class CreateMessageOptions extends QueueServiceOptions
|
||||
|
|
|
@ -32,7 +32,7 @@ namespace MicrosoftAzure\Storage\Queue\Models;
|
|||
* @author Azure Storage PHP SDK <dmsh@microsoft.com>
|
||||
* @copyright 2016 Microsoft Corporation
|
||||
* @license https://github.com/azure/azure-storage-php/LICENSE
|
||||
* @version Release: 0.10.0
|
||||
* @version Release: 0.10.1
|
||||
* @link https://github.com/azure/azure-storage-php
|
||||
*/
|
||||
class CreateQueueOptions extends QueueServiceOptions
|
||||
|
|
|
@ -32,7 +32,7 @@ namespace MicrosoftAzure\Storage\Queue\Models;
|
|||
* @author Azure Storage PHP SDK <dmsh@microsoft.com>
|
||||
* @copyright 2016 Microsoft Corporation
|
||||
* @license https://github.com/azure/azure-storage-php/LICENSE
|
||||
* @version Release: 0.10.0
|
||||
* @version Release: 0.10.1
|
||||
* @link https://github.com/azure/azure-storage-php
|
||||
*/
|
||||
class GetQueueMetadataResult
|
||||
|
|
|
@ -32,7 +32,7 @@ namespace MicrosoftAzure\Storage\Queue\Models;
|
|||
* @author Azure Storage PHP SDK <dmsh@microsoft.com>
|
||||
* @copyright 2016 Microsoft Corporation
|
||||
* @license https://github.com/azure/azure-storage-php/LICENSE
|
||||
* @version Release: 0.10.0
|
||||
* @version Release: 0.10.1
|
||||
* @link https://github.com/azure/azure-storage-php
|
||||
*/
|
||||
class ListMessagesOptions extends QueueServiceOptions
|
||||
|
|
|
@ -34,7 +34,7 @@ use MicrosoftAzure\Storage\Common\Internal\Utilities;
|
|||
* @author Azure Storage PHP SDK <dmsh@microsoft.com>
|
||||
* @copyright 2016 Microsoft Corporation
|
||||
* @license https://github.com/azure/azure-storage-php/LICENSE
|
||||
* @version Release: 0.10.0
|
||||
* @version Release: 0.10.1
|
||||
* @link https://github.com/azure/azure-storage-php
|
||||
*/
|
||||
class ListMessagesResult
|
||||
|
|
|
@ -34,7 +34,7 @@ use \MicrosoftAzure\Storage\Common\Internal\Validate;
|
|||
* @author Azure Storage PHP SDK <dmsh@microsoft.com>
|
||||
* @copyright 2016 Microsoft Corporation
|
||||
* @license https://github.com/azure/azure-storage-php/LICENSE
|
||||
* @version Release: 0.10.0
|
||||
* @version Release: 0.10.1
|
||||
* @link https://github.com/azure/azure-storage-php
|
||||
*/
|
||||
class ListQueuesOptions extends QueueServiceOptions
|
||||
|
|
Некоторые файлы не были показаны из-за слишком большого количества измененных файлов Показать больше
Загрузка…
Ссылка в новой задаче