Skip to main content

acquisitions

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

Overview

Nameacquisitions
TypeResource
Idazure_stack.storage_admin.acquisitions

Fields

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.
maximumblobsizeintegerThe maximum size of the page BLOB.
statusstringThe status of page BLOB acquisition.
storageaccountstringThe storage account that holds the page BLOB.
susbcriptionidstringID of the subscription associated with the page BLOB.

Methods

NameAccessible byRequired ParamsDescription
listSELECTlocation, subscriptionIdReturns 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 }}';