Service/WindowsAzure/Storage/BlobInstance.php
Zend Framework
LICENSE
This source file is subject to the new BSD license that is bundled
with this package in the file LICENSE.txt.
It is also available through the world-wide-web at this URL:
http://framework.zend.com/license/new-bsd
If you did not receive a copy of the license and are unable to
obtain it through the world-wide-web, please send an email
to license@zend.com so we can send you a copy immediately.
- Category
- Zend
- Copyright
- Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
- License
- New BSD License
- Package
- Zend_Service_WindowsAzure
- Subpackage
- Storage
- Version
- $Id$
\Zend_Service_WindowsAzure_Storage_BlobInstance
Package: Zend_Service_WindowsAzure\Storage
- Parent(s)
- \Zend_Service_WindowsAzure_Storage_StorageEntityAbstract
- Category
- Zend
- Copyright
- Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
- License
- New BSD License
Properties
string $BlobType
The blob type (block blob / page blob).
Details
- Type
- string
- Magic
- Property
- The blob type (block blob / page blob).
string $CacheControl
The blob cache control header.
Details
- Type
- string
- Magic
- Property
- The blob cache control header.
string $Container
The name of the blob container in which the blob is stored.
Details
- Type
- string
- Magic
- Property
- The name of the blob container in which the blob is stored.
string $ContentEncoding
The blob content encoding header.
Details
- Type
- string
- Magic
- Property
- The blob content encoding header.
string $ContentLanguage
The blob content language header.
Details
- Type
- string
- Magic
- Property
- The blob content language header.
string $ContentType
The blob content type header.
Details
- Type
- string
- Magic
- Property
- The blob content type header.
string $Etag
The entity tag, used for versioning and concurrency.
Details
- Type
- string
- Magic
- Property
- The entity tag, used for versioning and concurrency.
boolean $IsPrefix
Is it a blob or a directory prefix?
Details
- Type
- boolean
- Magic
- Property
- Is it a blob or a directory prefix?
string $LastModified
Timestamp when the blob was last modified.
Details
- Type
- string
- Magic
- Property
- Timestamp when the blob was last modified.
array $Metadata
Key/value pairs of meta data
Details
- Type
- array
- Magic
- Property
- Key/value pairs of meta data
string $SnapshotId
The blob snapshot ID if it is a snapshot blob (= a backup copy of a blob).
Details
- Type
- string
- Magic
- Property
- The blob snapshot ID if it is a snapshot blob (= a backup copy of a blob).
Methods
__construct(string $containerName, string $name, string $snapshotId, string $etag, string $lastModified, string $url = '', int $size = 0, string $contentType = '', string $contentEncoding = '', string $contentLanguage = '', string $cacheControl = '', string $blobType = '', string $leaseStatus = '', boolean $isPrefix = false, array $metadata = array()) : void
Constructor
Parameters
Name | Type | Description |
---|---|---|
$containerName | string | Container name |
$name | string | Name |
$snapshotId | string | Snapshot id |
$etag | string | Etag |
$lastModified | string | Last modified date |
$url | string | Url |
$size | int | Size |
$contentType | string | Content Type |
$contentEncoding | string | Content Encoding |
$contentLanguage | string | Content Language |
$cacheControl | string | Cache control |
$blobType | string | Blob type |
$leaseStatus | string | Lease status |
$isPrefix | boolean | Is Prefix? |
$metadata | array | Key/value pairs of meta data |