public final class BlobContainerPermissions extends Permissions<SharedAccessBlobPolicy>
The container's permissions encompass two types of access settings for the container:
publicAccess
property. The public access
setting indicates whether the container and its blobs can be read via an anonymous request.Permissions.getSharedAccessPolicies()
method. This setting
references a collection of shared access policies for the container. A shared access policy may be used to control
the start time, expiry time, and permissions for one or more shared access signatures. A shared access signature
provides delegated access to the container's resources.Constructor and Description |
---|
BlobContainerPermissions()
Creates an instance of the
BlobContainerPermissions class. |
Modifier and Type | Method and Description |
---|---|
BlobContainerPublicAccessType |
getPublicAccess()
Gets the public access setting for the container.
|
void |
setPublicAccess(BlobContainerPublicAccessType publicAccess)
Sets the public access setting for the container.
|
getSharedAccessPolicies, setSharedAccessPolicies
public BlobContainerPermissions()
BlobContainerPermissions
class.public BlobContainerPublicAccessType getPublicAccess()
The public access setting indicates whether the container and its blobs can be read via an anonymous request.
The BlobContainerPublicAccessType
enumeration provides three levels of anonymous read access:
BlobContainerPublicAccessType.OFF
, which prevents anonymous access.BlobContainerPublicAccessType.BLOB
, which permits anonymous read access to blob resources, but not to
container metadata or to the list of blobs in the container.BlobContainerPublicAccessType.CONTAINER
, which permits anonymous read access to blob resources,
container metadata, and the list of blobs in the container.public void setPublicAccess(BlobContainerPublicAccessType publicAccess)
The public access setting indicates whether the container and its blobs can be read via an anonymous request.
The BlobContainerPublicAccessType
enumeration provides three levels of anonymous read access:
BlobContainerPublicAccessType.OFF
, which prevents anonymous access.BlobContainerPublicAccessType.BLOB
, which permits anonymous read access to blob resources, but not to
container metadata or to the list of blobs in the container.BlobContainerPublicAccessType.CONTAINER
, which permits anonymous read access to blob resources,
container metadata, and the list of blobs in the container.Copyright © 2019. All rights reserved.