BlobServiceInterface
Methods
-
copyBlob()
: void
-
deleteBlob()
: void
-
deleteContainer()
: void
-
getBlob()
: BlobContent
-
getBlobProperties()
: BlobProperties|null
-
getBlockBlobBlockList()
: BlockList
-
getContainerProperties()
: ContainerProperties|null
-
listBlobs()
: Generator<string|int, Blob>
-
putBlockBlob()
: void
-
putBlockBlobBlock()
: void
-
putBlockBlobBlockList()
: void
-
putContainer()
: void
copyBlob()
public
copyBlob(string $fromBlob, string $toBlob[, CopyBlobOptions $options = new CopyBlobOptions() ]) : void
Parameters
-
$fromBlob
: string
-
-
$toBlob
: string
-
-
$options
: CopyBlobOptions
= new CopyBlobOptions()
-
deleteBlob()
public
deleteBlob(string $blob[, DeleteBlobOptions $options = new DeleteBlobOptions() ]) : void
Parameters
-
$blob
: string
-
-
$options
: DeleteBlobOptions
= new DeleteBlobOptions()
-
deleteContainer()
public
deleteContainer([DeleteContainerOptions $options = new DeleteContainerOptions() ]) : void
Parameters
-
$options
: DeleteContainerOptions
= new DeleteContainerOptions()
-
getBlob()
public
getBlob(string $blob[, GetBlobOptions $options = new GetBlobOptions() ]) : BlobContent
Parameters
-
$blob
: string
-
-
$options
: GetBlobOptions
= new GetBlobOptions()
-
getBlobProperties()
public
getBlobProperties(string $blob[, GetBlobPropertiesOptions $options = new GetBlobPropertiesOptions() ]) : BlobProperties|null
Parameters
-
$blob
: string
-
-
$options
: GetBlobPropertiesOptions
= new GetBlobPropertiesOptions()
-
getBlockBlobBlockList()
public
getBlockBlobBlockList(string $blob[, GetBlockBlobBlockListOptions $options = new GetBlockBlobBlockListOptions() ]) : BlockList
Parameters
-
$blob
: string
-
-
$options
: GetBlockBlobBlockListOptions
= new GetBlockBlobBlockListOptions()
-
getContainerProperties()
public
getContainerProperties([GetContainerPropertiesOptions $options = new GetContainerPropertiesOptions() ]) : ContainerProperties|null
Parameters
-
$options
: GetContainerPropertiesOptions
= new GetContainerPropertiesOptions()
-
listBlobs()
public
listBlobs([ListBlobOptions $options = new ListBlobOptions() ]) : Generator<string|int, Blob>
Parameters
-
$options
: ListBlobOptions
= new ListBlobOptions()
-
Return values
Generator<string|int, Blob>
putBlockBlob()
public
putBlockBlob(string $path[, null|resource|string $content = null ][, int|null $size = null ][, PutBlockBlobOptions $options = new PutBlockBlobOptions() ]) : void
Parameters
-
$path
: string
-
-
$content
: null|resource|string
= null
-
-
$size
: int|null
= null
-
-
$options
: PutBlockBlobOptions
= new PutBlockBlobOptions()
-
putBlockBlobBlock()
public
putBlockBlobBlock(string $path, string $blockId, resource|string $content, int $size[, PutBlockBlobBlockOptions $options = new PutBlockBlobBlockOptions() ]) : void
Parameters
-
$path
: string
-
-
$blockId
: string
-
-
$content
: resource|string
-
-
$size
: int
-
-
$options
: PutBlockBlobBlockOptions
= new PutBlockBlobBlockOptions()
-
putBlockBlobBlockList()
public
putBlockBlobBlockList(string $path, BlockList $blockList[, PutBlockBlobBlockListOptions $options = new PutBlockBlobBlockListOptions() ][, Serializer $serializer = new SimpleXMLSerializer() ]) : void
Parameters
-
$path
: string
-
-
$blockList
: BlockList
-
-
$options
: PutBlockBlobBlockListOptions
= new PutBlockBlobBlockListOptions()
-
-
$serializer
: Serializer
= new SimpleXMLSerializer()
-
putContainer()
public
putContainer([CreateContainerOptions $options = new CreateContainerOptions() ]) : void
Parameters
-
$options
: CreateContainerOptions
= new CreateContainerOptions()
-