usage_models
Creates, updates, deletes, gets or lists a usage_models
resource.
Overview
Name | usage_models |
Type | Resource |
Id | azure.storage_cache.usage_models |
Fields
The following fields are returned by SELECT
queries:
- list
A list of UsageModel descriptors.
Name | Datatype | Description |
---|---|---|
display | object | Localized information describing this usage model. |
modelName | string | Non-localized keyword name for this usage model. |
targetType | string | The 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:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
list | select | subscriptionId | Get 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.
Name | Datatype | Description |
---|---|---|
subscriptionId | string (uuid) | The ID of the target subscription. The value must be an UUID. |
SELECT
examples
- list
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
;