PublicAccess Class

Specifies whether data in the container may be accessed publicly and the level of access.

Inheritance
builtins.object
PublicAccess

Constructor

PublicAccess()

Attributes

Blob

Specifies public read access for blobs. Blob data within this container can be read via anonymous request, but container data is not available. Clients cannot enumerate blobs within the container via anonymous request.

Blob = 'blob'

Container

Specifies full public read access for container and blob data. Clients can enumerate blobs within the container via anonymous request, but cannot enumerate containers within the storage account.

Container = 'container'

OFF

Specifies that there is no public read access for both the container and blobs within the container. Clients cannot enumerate the containers within the storage account as well as the blobs within the container.

OFF = 'off'