BlobContainerClient Class
- java.
lang. Object - com.
azure. storage. blob. BlobContainerClient
- com.
public final class BlobContainerClient
Client to a container. It may only be instantiated through a BlobContainerClientBuilder or via the method getBlobContainerClient(String containerName). This class does not hold any state about a particular container but is instead a convenient way of sending off appropriate requests to the resource on the service. It may also be used to construct URLs to blobs.
This client contains operations on a container. Operations on a blob are available on BlobClient through getBlobClient(String blobName), and operations on the service are available on BlobServiceClient.
Please refer to the Azure Docs for more information on containers.
Field Summary
Modifier and Type | Field and Description |
---|---|
static final String |
LOG_CONTAINER_NAME
Special container name for the logs container in the Storage account. |
static final String |
ROOT_CONTAINER_NAME
Special container name for the root container in the Storage account. |
static final String |
STATIC_WEBSITE_CONTAINER_NAME
Special container name for the static website container in the Storage account. |
Method Summary
Methods inherited from java.lang.Object
Field Details
LOG_CONTAINER_NAME
public static final String LOG_CONTAINER_NAME
Special container name for the logs container in the Storage account.
ROOT_CONTAINER_NAME
public static final String ROOT_CONTAINER_NAME
Special container name for the root container in the Storage account.
STATIC_WEBSITE_CONTAINER_NAME
public static final String STATIC_WEBSITE_CONTAINER_NAME
Special container name for the static website container in the Storage account.
Method Details
create
public void create()
Creates a new container within a storage account. If a container with the same name already exists, the operation fails. For more information, see the Azure Docs.
Code Samples
try {
client.create();
System.out.printf("Create completed%n");
} catch (BlobStorageException error) {
if (error.getErrorCode().equals(BlobErrorCode.CONTAINER_ALREADY_EXISTS)) {
System.out.printf("Can't create container. It already exists %n");
}
}
createIfNotExists
public boolean createIfNotExists()
Creates a new container within a storage account if it does not exist. For more information, see the Azure Docs.
Code Samples
boolean result = client.createIfNotExists();
System.out.println("Create completed: " + result);
Returns:
true
if container is successfully created, false
if container already exists.createIfNotExistsWithResponse
public Response
Creates a new container within a storage account if it does not exist. For more information, see the Azure Docs.
Code Samples
Map<String, String> metadata = Collections.singletonMap("metadata", "value");
Context context = new Context("Key", "Value");
BlobContainerCreateOptions options = new BlobContainerCreateOptions().setMetadata(metadata)
.setPublicAccessType(PublicAccessType.CONTAINER);
Response<Boolean> response = client.createIfNotExistsWithResponse(options, timeout, context);
if (response.getStatusCode() == 409) {
System.out.println("Already existed.");
} else {
System.out.printf("Create completed with status %d%n", response.getStatusCode());
}
Parameters:
Returns:
createWithResponse
public Response
Creates a new container within a storage account. If a container with the same name already exists, the operation fails. For more information, see the Azure Docs.
Code Samples
Map<String, String> metadata = Collections.singletonMap("metadata", "value");
Context context = new Context("Key", "Value");
System.out.printf("Create completed with status %d%n",
client.createWithResponse(metadata, PublicAccessType.CONTAINER, timeout, context).getStatusCode());
Parameters:
Returns:
delete
public void delete()
Marks the specified container for deletion. The container and any blobs contained within it are later deleted during garbage collection. For more information, see the Azure Docs.
Code Samples
try {
client.delete();
System.out.printf("Delete completed%n");
} catch (BlobStorageException error) {
if (error.getErrorCode().equals(BlobErrorCode.CONTAINER_NOT_FOUND)) {
System.out.printf("Delete failed. Container was not found %n");
}
}
deleteIfExists
public boolean deleteIfExists()
Marks the specified container for deletion if it exists. The container and any blobs contained within it are later deleted during garbage collection. For more information, see the Azure Docs.
Code Samples
boolean result = client.deleteIfExists();
System.out.println("Delete completed: " + result);
Returns:
true
if container is successfully deleted, false
if container does not exist.deleteIfExistsWithResponse
public Response
Marks the specified container for deletion if it exists. The container and any blobs contained within it are later deleted during garbage collection. For more information, see the Azure Docs.
Code Samples
BlobRequestConditions requestConditions = new BlobRequestConditions()
.setLeaseId(leaseId)
.setIfUnmodifiedSince(OffsetDateTime.now().minusDays(3));
Context context = new Context("Key", "Value");
Response<Boolean> response = client.deleteIfExistsWithResponse(requestConditions, timeout, context);
if (response.getStatusCode() == 404) {
System.out.println("Does not exist.");
} else {
System.out.printf("Delete completed with status %d%n", response.getStatusCode());
}
Parameters:
Returns:
deleteWithResponse
public Response
Marks the specified container for deletion. The container and any blobs contained within it are later deleted during garbage collection. For more information, see the Azure Docs.
Code Samples
BlobRequestConditions requestConditions = new BlobRequestConditions()
.setLeaseId(leaseId)
.setIfUnmodifiedSince(OffsetDateTime.now().minusDays(3));
Context context = new Context("Key", "Value");
System.out.printf("Delete completed with status %d%n", client.deleteWithResponse(
requestConditions, timeout, context).getStatusCode());
Parameters:
Returns:
exists
public boolean exists()
Gets if the container this client represents exists in the cloud.
Code Samples
System.out.printf("Exists? %b%n", client.exists());
Returns:
existsWithResponse
public Response
Gets if the container this client represents exists in the cloud.
Code Samples
Context context = new Context("Key", "Value");
System.out.printf("Exists? %b%n", client.existsWithResponse(timeout, context).getValue());
Parameters:
Returns:
findBlobsByTags
public PagedIterable
Returns a lazy loaded list of blobs in this account whose tags match the query expression. The returned PagedIterable<T> can be consumed while new items are automatically retrieved as needed. For more information, including information on the query syntax, see the Azure Docs.
Code Samples
Context context = new Context("Key", "Value");
client.findBlobsByTags(new FindBlobsOptions("where=tag=value").setMaxResultsPerPage(10), timeout, context)
.forEach(blob -> System.out.printf("Name: %s%n", blob.getName()));
Parameters:
Returns:
findBlobsByTags
public PagedIterable
Returns a lazy loaded list of blobs in this container whose tags match the query expression. The returned PagedIterable<T> can be consumed while new items are automatically retrieved as needed. For more information, including information on the query syntax, see the Azure Docs.
Code Samples
TODO
client.findBlobsByTags("where=tag=value").forEach(blob -> System.out.printf("Name: %s%n", blob.getName()));
Parameters:
Returns:
generateSas
public String generateSas(BlobServiceSasSignatureValues blobServiceSasSignatureValues)
Generates a service SAS for the container using the specified BlobServiceSasSignatureValues
Note : The client must be authenticated via StorageSharedKeyCredential
See BlobServiceSasSignatureValues for more information on how to construct a service SAS.
Code Samples
OffsetDateTime expiryTime = OffsetDateTime.now().plusDays(1);
BlobContainerSasPermission permission = new BlobContainerSasPermission().setReadPermission(true);
BlobServiceSasSignatureValues values = new BlobServiceSasSignatureValues(expiryTime, permission)
.setStartTime(OffsetDateTime.now());
client.generateSas(values); // Client must be authenticated via StorageSharedKeyCredential
Parameters:
Returns:
String
representing the SAS query parameters.generateSas
public String generateSas(BlobServiceSasSignatureValues blobServiceSasSignatureValues, Context context)
Generates a service SAS for the container using the specified BlobServiceSasSignatureValues
Note : The client must be authenticated via StorageSharedKeyCredential
See BlobServiceSasSignatureValues for more information on how to construct a service SAS.
Code Samples
OffsetDateTime expiryTime = OffsetDateTime.now().plusDays(1);
BlobContainerSasPermission permission = new BlobContainerSasPermission().setReadPermission(true);
BlobServiceSasSignatureValues values = new BlobServiceSasSignatureValues(expiryTime, permission)
.setStartTime(OffsetDateTime.now());
// Client must be authenticated via StorageSharedKeyCredential
client.generateSas(values, new Context("key", "value"));
Parameters:
Returns:
String
representing the SAS query parameters.generateSas
public String generateSas(BlobServiceSasSignatureValues blobServiceSasSignatureValues, Consumer
Generates a service SAS for the container using the specified BlobServiceSasSignatureValues
Note : The client must be authenticated via StorageSharedKeyCredential
See BlobServiceSasSignatureValues for more information on how to construct a service SAS.
Parameters:
Returns:
String
representing the SAS query parameters.generateUserDelegationSas
public String generateUserDelegationSas(BlobServiceSasSignatureValues blobServiceSasSignatureValues, UserDelegationKey userDelegationKey)
Generates a user delegation SAS for the container using the specified BlobServiceSasSignatureValues.
See BlobServiceSasSignatureValues for more information on how to construct a user delegation SAS.
Code Samples
OffsetDateTime myExpiryTime = OffsetDateTime.now().plusDays(1);
BlobContainerSasPermission myPermission = new BlobContainerSasPermission().setReadPermission(true);
BlobServiceSasSignatureValues myValues = new BlobServiceSasSignatureValues(expiryTime, permission)
.setStartTime(OffsetDateTime.now());
client.generateUserDelegationSas(values, userDelegationKey);
Parameters:
Returns:
String
representing the SAS query parameters.generateUserDelegationSas
public String generateUserDelegationSas(BlobServiceSasSignatureValues blobServiceSasSignatureValues, UserDelegationKey userDelegationKey, String accountName, Context context)
Generates a user delegation SAS for the container using the specified BlobServiceSasSignatureValues.
See BlobServiceSasSignatureValues for more information on how to construct a user delegation SAS.
Code Samples
OffsetDateTime myExpiryTime = OffsetDateTime.now().plusDays(1);
BlobContainerSasPermission myPermission = new BlobContainerSasPermission().setReadPermission(true);
BlobServiceSasSignatureValues myValues = new BlobServiceSasSignatureValues(expiryTime, permission)
.setStartTime(OffsetDateTime.now());
client.generateUserDelegationSas(values, userDelegationKey, accountName, new Context("key", "value"));
Parameters:
Returns:
String
representing the SAS query parameters.generateUserDelegationSas
public String generateUserDelegationSas(BlobServiceSasSignatureValues blobServiceSasSignatureValues, UserDelegationKey userDelegationKey, String accountName, Consumer
Generates a user delegation SAS for the container using the specified BlobServiceSasSignatureValues.
See BlobServiceSasSignatureValues for more information on how to construct a user delegation SAS.
Parameters:
Returns:
String
representing the SAS query parameters.getAccessPolicy
public BlobContainerAccessPolicies getAccessPolicy()
Returns the container's permissions. The permissions indicate whether container's blobs may be accessed publicly. For more information, see the Azure Docs.
Code Samples
BlobContainerAccessPolicies accessPolicies = client.getAccessPolicy();
System.out.printf("Blob Access Type: %s%n", accessPolicies.getBlobAccessType());
for (BlobSignedIdentifier identifier : accessPolicies.getIdentifiers()) {
System.out.printf("Identifier Name: %s, Permissions %s%n",
identifier.getId(),
identifier.getAccessPolicy().getPermissions());
}
Returns:
getAccessPolicyWithResponse
public Response
Returns the container's permissions. The permissions indicate whether container's blobs may be accessed publicly. For more information, see the Azure Docs.
Code Samples
Context context = new Context("Key", "Value");
BlobContainerAccessPolicies accessPolicies = client.getAccessPolicyWithResponse(leaseId, timeout, context)
.getValue();
System.out.printf("Blob Access Type: %s%n", accessPolicies.getBlobAccessType());
for (BlobSignedIdentifier identifier : accessPolicies.getIdentifiers()) {
System.out.printf("Identifier Name: %s, Permissions %s%n",
identifier.getId(),
identifier.getAccessPolicy().getPermissions());
}
Parameters:
Returns:
getAccountInfo
public StorageAccountInfo getAccountInfo(Duration timeout)
Returns the sku name and account kind for the account. For more information, please see the Azure Docs.
Parameters:
StorageAccountInfo accountInfo = client.getAccountInfo(timeout); System.out.printf("Account Kind: %s, SKU: %s%n", accountInfo.getAccountKind(), accountInfo.getSkuName());
Returns:
getAccountInfoWithResponse
public Response
Returns the sku name and account kind for the account. For more information, please see the Azure Docs.
Code Samples
Context context = new Context("Key", "Value");
StorageAccountInfo accountInfo = client.getAccountInfoWithResponse(timeout, context).getValue();
System.out.printf("Account Kind: %s, SKU: %s%n", accountInfo.getAccountKind(), accountInfo.getSkuName());
Parameters:
Returns:
getAccountName
public String getAccountName()
Get associated account name.
Returns:
getAccountUrl
public String getAccountUrl()
Get the url of the storage account.
Returns:
getBlobClient
public BlobClient getBlobClient(String blobName)
Initializes a new BlobClient object by concatenating blobName to the end of ContainerAsyncClient's URL. The new BlobClient uses the same request policy pipeline as the ContainerAsyncClient.
Parameters:
String
representing the name of the blob. If the blob name contains special characters,
pass in the url encoded version of the blob name.
Code Samples
BlobClient blobClient = client.getBlobClient(blobName);
Returns:
getBlobClient
public BlobClient getBlobClient(String blobName, String snapshot)
Initializes a new BlobClient object by concatenating blobName to the end of ContainerAsyncClient's URL. The new BlobClient uses the same request policy pipeline as the ContainerAsyncClient.
Code Samples
BlobClient blobClient = client.getBlobClient(blobName, snapshot);
Parameters:
String
representing the name of the blob. If the blob name contains special characters,
pass in the url encoded version of the blob name.
Returns:
getBlobContainerName
public String getBlobContainerName()
Get the container name.
Code Samples
String containerName = client.getBlobContainerName();
System.out.println("The name of the blob is " + containerName);
Returns:
getBlobContainerUrl
public String getBlobContainerUrl()
Gets the URL of the container represented by this client.
Returns:
getBlobVersionClient
public BlobClient getBlobVersionClient(String blobName, String versionId)
Initializes a new BlobClient object by concatenating blobName to the end of ContainerAsyncClient's URL. The new BlobClient uses the same request policy pipeline as the ContainerAsyncClient.
Parameters:
String
representing the name of the blob. If the blob name contains special characters,
pass in the url encoded version of the blob name.
null
to interact with the latest blob version.
Returns:
getCustomerProvidedKey
public CpkInfo getCustomerProvidedKey()
Gets the CpkInfo associated with this client that will be passed to BlobClient when getBlobClient(String blobName) is called.
Returns:
getEncryptionScope
public String getEncryptionScope()
Gets the encryption scope
used to encrypt this blob's content on the server.
Returns:
getHttpPipeline
public HttpPipeline getHttpPipeline()
Gets the HttpPipeline powering this client.
Returns:
getProperties
public BlobContainerProperties getProperties()
Returns the container's metadata and system properties. For more information, see the Azure Docs.
Code Samples
BlobContainerProperties properties = client.getProperties();
System.out.printf("Public Access Type: %s, Legal Hold? %b, Immutable? %b%n",
properties.getBlobPublicAccess(),
properties.hasLegalHold(),
properties.hasImmutabilityPolicy());
Returns:
getPropertiesWithResponse
public Response
Returns the container's metadata and system properties. For more information, see the Azure Docs.
Code Samples
Context context = new Context("Key", "Value");
BlobContainerProperties properties = client.getPropertiesWithResponse(leaseId, timeout, context)
.getValue();
System.out.printf("Public Access Type: %s, Legal Hold? %b, Immutable? %b%n",
properties.getBlobPublicAccess(),
properties.hasLegalHold(),
properties.hasImmutabilityPolicy());
Parameters:
Returns:
getServiceClient
public BlobServiceClient getServiceClient()
Get a client pointing to the account.
Returns:
getServiceVersion
public BlobServiceVersion getServiceVersion()
Gets the service version the client is using.
Returns:
listBlobs
public PagedIterable
Returns a lazy loaded list of blobs in this container, with folder structures flattened. The returned PagedIterable<T> can be consumed through while new items are automatically retrieved as needed.
Blob names are returned in lexicographic order.
For more information, see the Azure Docs.
Code Samples
client.listBlobs().forEach(blob ->
System.out.printf("Name: %s, Directory? %b%n", blob.getName(), blob.isPrefix()));
Returns:
listBlobs
public PagedIterable
Returns a lazy loaded list of blobs in this container, with folder structures flattened. The returned PagedIterable<T> can be consumed through while new items are automatically retrieved as needed.
Blob names are returned in lexicographic order.
For more information, see the Azure Docs.
Code Samples
ListBlobsOptions options = new ListBlobsOptions()
.setPrefix("prefixToMatch")
.setDetails(new BlobListDetails()
.setRetrieveDeletedBlobs(true)
.setRetrieveSnapshots(true));
String continuationToken = "continuationToken";
client.listBlobs(options, continuationToken, timeout).forEach(blob ->
System.out.printf("Name: %s, Directory? %b, Deleted? %b, Snapshot ID: %s%n",
blob.getName(),
blob.isPrefix(),
blob.isDeleted(),
blob.getSnapshot()));
Parameters:
Returns:
listBlobs
public PagedIterable
Returns a lazy loaded list of blobs in this container, with folder structures flattened. The returned PagedIterable<T> can be consumed through while new items are automatically retrieved as needed.
Blob names are returned in lexicographic order.
For more information, see the Azure Docs.
Code Samples
ListBlobsOptions options = new ListBlobsOptions()
.setPrefix("prefixToMatch")
.setDetails(new BlobListDetails()
.setRetrieveDeletedBlobs(true)
.setRetrieveSnapshots(true));
client.listBlobs(options, timeout).forEach(blob ->
System.out.printf("Name: %s, Directory? %b, Deleted? %b, Snapshot ID: %s%n",
blob.getName(),
blob.isPrefix(),
blob.isDeleted(),
blob.getSnapshot()));
Parameters:
Returns:
listBlobsByHierarchy
public PagedIterable
Returns a reactive Publisher emitting all the blobs and directories (prefixes) under the given directory (prefix). Directories will have isPrefix() set to true.
Blob names are returned in lexicographic order. For more information, see the Azure Docs.
E.g. listing a container containing a 'foo' folder, which contains blobs 'foo1' and 'foo2', and a blob on the root level 'bar', will return the following results when prefix=null:
- foo/ (isPrefix = true)
- bar (isPrefix = false)
will return the following results when prefix="foo/":
- foo/foo1 (isPrefix = false)
- foo/foo2 (isPrefix = false)
Code Samples
client.listBlobsByHierarchy("directoryName").forEach(blob ->
System.out.printf("Name: %s, Directory? %b%n", blob.getName(), blob.isPrefix()));
Parameters:
Returns:
listBlobsByHierarchy
public PagedIterable
Returns a reactive Publisher emitting all the blobs and prefixes (directories) under the given prefix (directory). Directories will have isPrefix() set to true.
Blob names are returned in lexicographic order. For more information, see the Azure Docs.
E.g. listing a container containing a 'foo' folder, which contains blobs 'foo1' and 'foo2', and a blob on the root level 'bar', will return the following results when prefix=null:
- foo/ (isPrefix = true)
- bar (isPrefix = false)
will return the following results when prefix="foo/":
- foo/foo1 (isPrefix = false)
- foo/foo2 (isPrefix = false)
Code Samples
ListBlobsOptions options = new ListBlobsOptions()
.setPrefix("directoryName")
.setDetails(new BlobListDetails()
.setRetrieveDeletedBlobs(true)
.setRetrieveSnapshots(false));
client.listBlobsByHierarchy("/", options, timeout).forEach(blob ->
System.out.printf("Name: %s, Directory? %b, Deleted? %b, Snapshot ID: %s%n",
blob.getName(),
blob.isPrefix(),
blob.isDeleted(),
blob.getSnapshot()));
Parameters:
Returns:
setAccessPolicy
public void setAccessPolicy(PublicAccessType accessType, List
Sets the container's permissions. The permissions indicate whether blobs in a container may be accessed publicly. Note that, for each signed identifier, we will truncate the start and expiry times to the nearest second to ensure the time formatting is compatible with the service. For more information, see the Azure Docs.
Code Samples
BlobSignedIdentifier identifier = new BlobSignedIdentifier()
.setId("name")
.setAccessPolicy(new BlobAccessPolicy()
.setStartsOn(OffsetDateTime.now())
.setExpiresOn(OffsetDateTime.now().plusDays(7))
.setPermissions("permissionString"));
try {
client.setAccessPolicy(PublicAccessType.CONTAINER, Collections.singletonList(identifier));
System.out.printf("Set Access Policy completed %n");
} catch (UnsupportedOperationException error) {
System.out.printf("Set Access Policy completed %s%n", error);
}
Parameters:
setAccessPolicyWithResponse
public Response
Sets the container's permissions. The permissions indicate whether blobs in a container may be accessed publicly. Note that, for each signed identifier, we will truncate the start and expiry times to the nearest second to ensure the time formatting is compatible with the service. For more information, see the Azure Docs.
Code Samples
BlobSignedIdentifier identifier = new BlobSignedIdentifier()
.setId("name")
.setAccessPolicy(new BlobAccessPolicy()
.setStartsOn(OffsetDateTime.now())
.setExpiresOn(OffsetDateTime.now().plusDays(7))
.setPermissions("permissionString"));
BlobRequestConditions requestConditions = new BlobRequestConditions()
.setLeaseId(leaseId)
.setIfUnmodifiedSince(OffsetDateTime.now().minusDays(3));
Context context = new Context("Key", "Value");
System.out.printf("Set access policy completed with status %d%n",
client.setAccessPolicyWithResponse(PublicAccessType.CONTAINER,
Collections.singletonList(identifier),
requestConditions,
timeout,
context).getStatusCode());
Parameters:
Returns:
setMetadata
public void setMetadata(Map
Sets the container's metadata. For more information, see the Azure Docs.
Code Samples
Map<String, String> metadata = Collections.singletonMap("metadata", "value");
try {
client.setMetadata(metadata);
System.out.printf("Set metadata completed with status %n");
} catch (UnsupportedOperationException error) {
System.out.printf("Fail while setting metadata %n");
}
Parameters:
setMetadataWithResponse
public Response
Sets the container's metadata. For more information, see the Azure Docs.
Code Samples
Map<String, String> metadata = Collections.singletonMap("metadata", "value");
BlobRequestConditions requestConditions = new BlobRequestConditions()
.setLeaseId(leaseId)
.setIfUnmodifiedSince(OffsetDateTime.now().minusDays(3));
Context context = new Context("Key", "Value");
System.out.printf("Set metadata completed with status %d%n",
client.setMetadataWithResponse(metadata, requestConditions, timeout, context).getStatusCode());
Parameters:
Returns:
Applies to
Azure SDK for Java