List Containers
List containers in the storage account.
External Documentation
To learn more, visit the Azure Storage documentation.
Basic Parameters
Parameter | Description |
---|---|
Limit | The amount of the results to be returned. |
Prefix | Filter by a given prefix. |
Advanced Parameters
Parameter | Description |
---|---|
Disable XML To JSON Auto Convert | When checked, XML responses are not automatically converted into JSON format. |
Marker | Paginate by the returning NextMarker pagination token. |
Example Output
{
"EnumerationResults": {
"Prefix": "string-value",
"Marker": "string-value",
"MaxResults": "int-value",
"Containers": {
"Container": {
"Name": "container-name",
"Version": "container-version",
"Deleted": "true",
"Properties": {
"Last-Modified": "date/time-value",
"Etag": "etag",
"LeaseStatus": "locked | unlocked",
"LeaseState": "available | leased | expired | breaking | broken",
"LeaseDuration": "infinite | fixed",
"PublicAccess": "container | blob",
"HasImmutabilityPolicy": "true | false",
"HasLegalHold": "true | false",
"DeletedTime": "datetime",
"RemainingRetentionDays": "no-of-days"
},
"Metadata": {
"metadata-name": "value"
}
}
},
"NextMarker": "marker-value",
"_ServiceEndpoint": "https://myaccount.blob.core.windows.net"
}
}
Workflow Library Example
List Containers with Azure Storage and Send Results Via Email
Preview this Workflow on desktop