Microsoft.MachineLearning commitmentPlans 2016-05-01-preview

Bicep resource definition

The commitmentPlans 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.MachineLearning/commitmentPlans resource, add the following Bicep to your template.

resource symbolicname 'Microsoft.MachineLearning/commitmentPlans@2016-05-01-preview' = {
  etag: 'string'
  location: 'string'
  name: 'string'
  sku: {
    capacity: int
    name: 'string'
    tier: 'string'
  }
  tags: {
    {customized property}: 'string'
  }
}

Property values

Microsoft.MachineLearning/commitmentPlans

Name Description Value
etag An entity tag used to enforce optimistic concurrency. string
location Resource location. string (required)
name The resource name string (required)
sku The commitment plan SKU. ResourceSku
tags Resource tags Dictionary of tag names and values. See Tags in templates

ResourceSku

Name Description Value
capacity The scale-out capacity of the resource. 1 is 1x, 2 is 2x, etc. This impacts the quantities and cost of any commitment plan resource. int
name The SKU name. Along with tier, uniquely identifies the SKU. string
tier The SKU tier. Along with name, uniquely identifies the SKU. string

Tags

Name Description Value

ARM template resource definition

The commitmentPlans 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.MachineLearning/commitmentPlans resource, add the following JSON to your template.

{
  "type": "Microsoft.MachineLearning/commitmentPlans",
  "apiVersion": "2016-05-01-preview",
  "name": "string",
  "etag": "string",
  "location": "string",
  "sku": {
    "capacity": "int",
    "name": "string",
    "tier": "string"
  },
  "tags": {
    "{customized property}": "string"
  }
}

Property values

Microsoft.MachineLearning/commitmentPlans

Name Description Value
apiVersion The api version '2016-05-01-preview'
etag An entity tag used to enforce optimistic concurrency. string
location Resource location. string (required)
name The resource name string (required)
sku The commitment plan SKU. ResourceSku
tags Resource tags Dictionary of tag names and values. See Tags in templates
type The resource type 'Microsoft.MachineLearning/commitmentPlans'

ResourceSku

Name Description Value
capacity The scale-out capacity of the resource. 1 is 1x, 2 is 2x, etc. This impacts the quantities and cost of any commitment plan resource. int
name The SKU name. Along with tier, uniquely identifies the SKU. string
tier The SKU tier. Along with name, uniquely identifies the SKU. string

Tags

Name Description Value

Terraform (AzAPI provider) resource definition

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

  • Resource groups

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

Resource format

To create a Microsoft.MachineLearning/commitmentPlans resource, add the following Terraform to your template.

resource "azapi_resource" "symbolicname" {
  type = "Microsoft.MachineLearning/commitmentPlans@2016-05-01-preview"
  name = "string"
  etag = "string"
  location = "string"
  sku = {
    capacity = int
    name = "string"
    tier = "string"
  }
  tags = {
    {customized property} = "string"
  }
}

Property values

Microsoft.MachineLearning/commitmentPlans

Name Description Value
etag An entity tag used to enforce optimistic concurrency. string
location Resource location. string (required)
name The resource name string (required)
sku The commitment plan SKU. ResourceSku
tags Resource tags Dictionary of tag names and values.
type The resource type "Microsoft.MachineLearning/commitmentPlans@2016-05-01-preview"

ResourceSku

Name Description Value
capacity The scale-out capacity of the resource. 1 is 1x, 2 is 2x, etc. This impacts the quantities and cost of any commitment plan resource. int
name The SKU name. Along with tier, uniquely identifies the SKU. string
tier The SKU tier. Along with name, uniquely identifies the SKU. string

Tags

Name Description Value