ContainerCreateOptions interface

Options to configure <xref:ContainerClient.create> operation.

Extends

Properties

abortSignal

An implementation of the AbortSignalLike interface to signal the request to cancel the operation. For example, use the @azure/abort-controller to create an AbortSignal.

access

Specifies whether data in the container may be accessed publicly and the level of access. Possible values include:

  • 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.
  • 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.
containerEncryptionScope

Container encryption scope info.

metadata

A collection of key-value string pair to associate with the container.

tracingOptions

Options to configure spans created when tracing is enabled.

Property Details

abortSignal

An implementation of the AbortSignalLike interface to signal the request to cancel the operation. For example, use the @azure/abort-controller to create an AbortSignal.

abortSignal?: AbortSignalLike

Property Value

AbortSignalLike

access

Specifies whether data in the container may be accessed publicly and the level of access. Possible values include:

  • 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.
  • 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.
access?: PublicAccessType

Property Value

containerEncryptionScope

Container encryption scope info.

containerEncryptionScope?: ContainerEncryptionScope

Property Value

metadata

A collection of key-value string pair to associate with the container.

metadata?: Metadata

Property Value

tracingOptions

Options to configure spans created when tracing is enabled.

tracingOptions?: OperationTracingOptions

Property Value

OperationTracingOptions