Share via


Microsoft.SoftwarePlan hybridUseBenefits

Bicep resource definition

The hybridUseBenefits resource type can be deployed with operations that target:

For a list of changed properties in each API version, see change log.

Resource format

To create a Microsoft.SoftwarePlan/hybridUseBenefits resource, add the following Bicep to your template.

resource symbolicname 'Microsoft.SoftwarePlan/hybridUseBenefits@2019-12-01' = {
  scope: resourceSymbolicName or scope
  name: 'string'
  properties: {}
  sku: {
    name: 'string'
  }
}

Property Values

Microsoft.SoftwarePlan/hybridUseBenefits

Name Description Value
name The resource name string (required)
properties Property bag for a hybrid use benefit response HybridUseBenefitProperties
scope Use when creating a resource at a scope that is different than the deployment scope. Set this property to the symbolic name of a resource to apply the extension resource.
sku Hybrid use benefit SKU Sku (required)

HybridUseBenefitProperties

Name Description Value

Sku

Name Description Value
name Name of the SKU to be applied string

ARM template resource definition

The hybridUseBenefits resource type can be deployed with operations that target:

For a list of changed properties in each API version, see change log.

Resource format

To create a Microsoft.SoftwarePlan/hybridUseBenefits resource, add the following JSON to your template.

{
  "type": "Microsoft.SoftwarePlan/hybridUseBenefits",
  "apiVersion": "2019-12-01",
  "name": "string",
  "properties": {
  },
  "sku": {
    "name": "string"
  }
}

Property Values

Microsoft.SoftwarePlan/hybridUseBenefits

Name Description Value
apiVersion The api version '2019-12-01'
name The resource name string (required)
properties Property bag for a hybrid use benefit response HybridUseBenefitProperties
sku Hybrid use benefit SKU Sku (required)
type The resource type 'Microsoft.SoftwarePlan/hybridUseBenefits'

HybridUseBenefitProperties

Name Description Value

Sku

Name Description Value
name Name of the SKU to be applied string

Usage Examples

Terraform (AzAPI provider) resource definition

The hybridUseBenefits resource type can be deployed with operations that target:

For a list of changed properties in each API version, see change log.

Resource format

To create a Microsoft.SoftwarePlan/hybridUseBenefits resource, add the following Terraform to your template.

resource "azapi_resource" "symbolicname" {
  type = "Microsoft.SoftwarePlan/hybridUseBenefits@2019-12-01"
  name = "string"
  parent_id = "string"
  body = {
    properties = {
    }
    sku = {
      name = "string"
    }
  }
}

Property Values

Microsoft.SoftwarePlan/hybridUseBenefits

Name Description Value
name The resource name string (required)
parent_id The ID of the resource to apply this extension resource to. string (required)
properties Property bag for a hybrid use benefit response HybridUseBenefitProperties
sku Hybrid use benefit SKU Sku (required)
type The resource type "Microsoft.SoftwarePlan/hybridUseBenefits@2019-12-01"

HybridUseBenefitProperties

Name Description Value

Sku

Name Description Value
name Name of the SKU to be applied string