Skip to main content

acquisitions

Creates, updates, deletes, gets or lists an acquisitions resource.

Overview

Nameacquisitions
TypeResource
Idazure_stack.storage_admin.acquisitions

Fields

The following fields are returned by SELECT queries:

OK -- The list of acquisitions has been returned.

NameDatatypeDescription
acquisitionidstringThe ID of page BLOB acquisition.
blobstringThe name of the page BLOB.
containerstringThe container associated with the page BLOB.
filePathstringThe file path of the page BLOB file on storage cluster.
filePathUncstringThe file path unc of the page BLOB file on storage cluster.
maximumblobsizeinteger (int64)The maximum size of the page BLOB.
statusstringThe status of the page BLOB acquisition.
storageaccountstringThe storage account that holds the page BLOB.
susbcriptionidstringID of the subscription associated with the page BLOB.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectsubscriptionId, locationReturns 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.

NameDatatypeDescription
locationstringResource location.
subscriptionIdstringSubscription Id.

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 subscriptionId = '{{ subscriptionId }}' -- required
AND location = '{{ location }}' -- required
;