Package | Description |
---|---|
com.microsoft.azure.storage.blob |
This package contains the storage service blob classes.
|
Modifier and Type | Method and Description |
---|---|
CloudBlobContainer |
ListBlobItem.getContainer()
Returns the container for the blob item.
|
CloudBlobContainer |
CloudBlob.getContainer()
Returns the blob's container.
|
CloudBlobContainer |
CloudBlobDirectory.getContainer()
Returns the container for this directory.
|
CloudBlobContainer |
CloudBlobClient.getContainerReference(String containerName)
Gets a
CloudBlobContainer object with the specified name. |
Modifier and Type | Method and Description |
---|---|
Iterable<CloudBlobContainer> |
CloudBlobContainer.listContainers()
Returns an enumerable collection of containers for the service client associated with this container.
|
Iterable<CloudBlobContainer> |
CloudBlobClient.listContainers()
Returns an enumerable collection of blob containers for this Blob service client.
|
Iterable<CloudBlobContainer> |
CloudBlobContainer.listContainers(String prefix)
Returns an enumerable collection of containers whose names begin with the specified prefix for the service client
associated with this container.
|
Iterable<CloudBlobContainer> |
CloudBlobClient.listContainers(String prefix)
Returns an enumerable collection of blob containers whose names begin with the specified prefix for this Blob
service client.
|
Iterable<CloudBlobContainer> |
CloudBlobContainer.listContainers(String prefix,
ContainerListingDetails detailsIncluded,
BlobRequestOptions options,
OperationContext opContext)
Returns an enumerable collection of containers whose names begin with the specified prefix for the service client
associated with this container, using the specified details setting, request options, and operation context.
|
Iterable<CloudBlobContainer> |
CloudBlobClient.listContainers(String prefix,
ContainerListingDetails detailsIncluded,
BlobRequestOptions options,
OperationContext opContext)
Returns an enumerable collection of blob containers whose names begin with the specified prefix for this Blob
service client, using the specified details setting, request options, and operation context.
|
ResultSegment<CloudBlobContainer> |
CloudBlobContainer.listContainersSegmented()
Returns a result segment of an enumerable collection of containers for the service client associated with this
container.
|
ResultSegment<CloudBlobContainer> |
CloudBlobClient.listContainersSegmented()
Returns a result segment of an enumerable collection of blob containers for this Blob service client.
|
ResultSegment<CloudBlobContainer> |
CloudBlobContainer.listContainersSegmented(String prefix)
Returns a result segment of an enumerable collection of containers whose names begin with the specified prefix
for the service client associated with this container.
|
ResultSegment<CloudBlobContainer> |
CloudBlobClient.listContainersSegmented(String prefix)
Returns a result segment of an enumerable collection of blob containers whose names begin with the specified
prefix for this Blob service client.
|
ResultSegment<CloudBlobContainer> |
CloudBlobContainer.listContainersSegmented(String prefix,
ContainerListingDetails detailsIncluded,
Integer maxResults,
ResultContinuation continuationToken,
BlobRequestOptions options,
OperationContext opContext)
Returns a result segment containing a collection of containers whose names begin with
the specified prefix for the service client associated with this container,
using the specified listing details options, request options, and operation context.
|
ResultSegment<CloudBlobContainer> |
CloudBlobClient.listContainersSegmented(String prefix,
ContainerListingDetails detailsIncluded,
Integer maxResults,
ResultContinuation continuationToken,
BlobRequestOptions options,
OperationContext opContext)
Returns a result segment of an enumerable collection of blob containers whose names begin with the specified
prefix for this Blob service client, using the specified listing details options, request options, and operation
context.
|
Modifier and Type | Method and Description |
---|---|
protected static String |
CloudBlob.getParentNameFromURI(StorageUri resourceAddress,
String delimiter,
CloudBlobContainer container)
Retrieves the parent name for a blob URI.
|
protected void |
CloudBlob.setContainer(CloudBlobContainer container)
Sets the container for the blob.
|
Constructor and Description |
---|
CloudAppendBlob(String blobName,
String snapshotID,
CloudBlobContainer container)
Creates an instance of the
CloudAppendBlob class using the specified type, name, snapshot ID, and
container. |
CloudBlob(BlobType type,
String blobName,
String snapshotID,
CloudBlobContainer container)
Creates an instance of the
CloudBlob class using the specified type, name, snapshot ID, and
container. |
CloudBlobDirectory(StorageUri uri,
String prefix,
CloudBlobClient client,
CloudBlobContainer container)
Creates an instance of the
CloudBlobDirectory class using the specified address, directory parent,
and client. |
CloudBlobDirectory(StorageUri uri,
String prefix,
CloudBlobClient client,
CloudBlobContainer container,
CloudBlobDirectory parent)
Creates an instance of the
CloudBlobDirectory class using the specified address, directory parent,
and client. |
CloudBlockBlob(String blobName,
String snapshotID,
CloudBlobContainer container)
Creates an instance of the
CloudBlockBlob class using the specified type, name, snapshot ID, and
container. |
CloudPageBlob(String blobName,
String snapshotID,
CloudBlobContainer container)
Creates an instance of the
CloudPageBlob class using the specified type, name, snapshot ID, and
container. |
Copyright © 2019. All rights reserved.