IPWorks Cloud 2020 Node.js Edition

Questions / Feedback?

ContainerList Event

Fires once for each container returned when listing containers.

Syntax

azureblob.on('ContainerList', [callback])

Callback

The 'callback' is called when the 'ContainerList' event is emited.

function(e){ }

The argument 'e' has the following properties:

e.name
e.modifiedTime
e.ETag
e.isLeased
e.leaseState

Remarks

This event fires once for each container returned when ListContainers or GetContainerInfo is called.

Name is the name of the container.

ModifiedTime reflects the last modified time of the container, formatted according to RFC 1123.

ETag is the container's ETag.

IsLeased indicates whether the container is currently leased.

LeaseState reflects the lease state of the container. Possible values are:

aclsAvailable (0) The container's lease is unlocked and can be acquired.
aclsLeased (1) The container's lease is locked.
aclsExpired (2) The lease duration has expired.
aclsBreaking (3) The lease has been broken, but will continue to be locked until the break period expires.
aclsBroken (4) The lease has been broken, and the break period has expired.

Copyright (c) 2022 /n software inc. - All rights reserved.
IPWorks Cloud 2020 Node.js Edition - Version 20.0 [Build 8265]