hybrid_use_benefit_revisions
Creates, updates, deletes, gets or lists a hybrid_use_benefit_revisions
resource.
Overview
Name | hybrid_use_benefit_revisions |
Type | Resource |
Id | azure.software_plan.hybrid_use_benefit_revisions |
Fields
Name | Datatype | Description |
---|---|---|
id | string | Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName} |
name | string | The name of the resource |
etag | integer | Indicates the revision of the hybrid use benefit |
properties | object | Hybrid use benefit properties |
sku | object | The resource model definition representing SKU |
type | string | The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts" |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
list | SELECT | planId, scope | Gets the version history of a hybrid use benefit |
SELECT
examples
Gets the version history of a hybrid use benefit
SELECT
id,
name,
etag,
properties,
sku,
type
FROM azure.software_plan.hybrid_use_benefit_revisions
WHERE planId = '{{ planId }}'
AND scope = '{{ scope }}';