Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Bicep resource definition
The commitmentPlans resource type can be deployed with operations that target:
- Resource groups - See resource group deployment commands
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:
- Resource groups - See resource group deployment commands
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 |
---|
Usage Examples
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"
parent_id = "string"
location = "string"
tags = {
{customized property} = "string"
}
body = {
etag = "string"
sku = {
capacity = int
name = "string"
tier = "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 |
---|