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:

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
listselectsubscription_idGet 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
subscription_idstring

SELECT examples

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

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