acquisitions
Creates, updates, deletes, gets or lists an acquisitions
resource.
Overview
Name | acquisitions |
Type | Resource |
Id | azure_stack.storage_admin.acquisitions |
Fields
The following fields are returned by SELECT
queries:
- list
OK -- The list of acquisitions has been returned.
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 (int64) | The maximum size of the page BLOB. |
status | string | The status of the 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
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
list | select | subscriptionId , location | Returns a list of BLOB acquisitions. |
Parameters
Parameters can be passed in the WHERE
clause of a query. Check the Methods section to see which parameters are required or optional for each operation.
Name | Datatype | Description |
---|---|---|
location | string | Resource location. |
subscriptionId | string | Subscription Id. |
SELECT
examples
- list
Returns a list of BLOB acquisitions.
SELECT
acquisitionid,
blob,
container,
filePath,
filePathUnc,
maximumblobsize,
status,
storageaccount,
susbcriptionid
FROM azure_stack.storage_admin.acquisitions
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND location = '{{ location }}' -- required
;