Skip to main content

usage_models

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

Overview

Nameusage_models
TypeResource
Idazure.storage_cache.usage_models

Fields

The following fields are returned by SELECT queries:

A list of UsageModel descriptors.

NameDatatypeDescription
displayobjectLocalized information describing this usage model.
modelNamestringNon-localized keyword name for this usage model.
targetTypestringThe type of Storage Target to which this model is applicable (only nfs3 as of this version).

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectsubscriptionIdGet the list of cache usage models available to this subscription.

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
subscriptionIdstring (uuid)The ID of the target subscription. The value must be an UUID.

SELECT examples

Get the list of cache usage models available to this subscription.

SELECT
display,
modelName,
targetType
FROM azure.storage_cache.usage_models
WHERE subscriptionId = '{{ subscriptionId }}' -- required
;