acquisitions
Creates, updates, deletes, gets or lists a acquisitions
resource.
Overview
Name | acquisitions |
Type | Resource |
Id | azure_stack.storage_admin.acquisitions |
Fields
Name | Datatype | Description |
---|---|---|
acquisitionid | string | The ID of page BLOB acquisition. |
blob | string | The name of the page BLOB. |
container | string | The container associated with the page BLOB. |
filePath | string | The file path of the page BLOB file on storage cluster. |
filePathUnc | string | The file path unc of the page BLOB file on storage cluster. |
maximumblobsize | integer | The maximum size of the page BLOB. |
status | string | The status of page BLOB acquisition. |
storageaccount | string | The storage account that holds the page BLOB. |
susbcriptionid | string | ID of the subscription associated with the page BLOB. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
list | SELECT | location, subscriptionId | Returns a list of BLOB acquisitions. |
SELECT
examples
Returns a list of BLOB acquisitions.
SELECT
acquisitionid,
blob,
container,
filePath,
filePathUnc,
maximumblobsize,
status,
storageaccount,
susbcriptionid
FROM azure_stack.storage_admin.acquisitions
WHERE location = '{{ location }}'
AND subscriptionId = '{{ subscriptionId }}';