Skip to main content

hybrid_use_benefit_revisions

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

Overview

Namehybrid_use_benefit_revisions
TypeResource
Idazure.software_plan.hybrid_use_benefit_revisions

Fields

NameDatatypeDescription
idstringFully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}
namestringThe name of the resource
etagintegerIndicates the revision of the hybrid use benefit
propertiesobjectHybrid use benefit properties
skuobjectThe resource model definition representing SKU
typestringThe type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"

Methods

NameAccessible byRequired ParamsDescription
listSELECTplanId, scopeGets 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 }}';