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 farmBeats 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.AgFoodPlatform/farmBeats resource, add the following Bicep to your template.
resource symbolicname 'Microsoft.AgFoodPlatform/farmBeats@2020-05-12-preview' = {
location: 'string'
name: 'string'
properties: {}
sku: {
capacity: int
family: 'string'
name: 'string'
size: 'string'
tier: 'string'
}
tags: {
{customized property}: 'string'
}
}
Property Values
Microsoft.AgFoodPlatform/farmBeats
Name | Description | Value |
---|---|---|
location | The geo-location where the resource lives | string (required) |
name | The resource name | string (required) |
properties | FarmBeats ARM Resource properties. | FarmBeatsProperties |
sku | The resource model definition representing SKU | Sku |
tags | Resource tags | Dictionary of tag names and values. See Tags in templates |
FarmBeatsProperties
Name | Description | Value |
---|
Sku
Name | Description | Value |
---|---|---|
capacity | If the SKU supports scale out/in then the capacity integer should be included. If scale out/in is not possible for the resource this may be omitted. | int |
family | If the service has different generations of hardware, for the same SKU, then that can be captured here. | string |
name | The name of the SKU. Ex - P3. It is typically a letter+number code | string (required) |
size | The SKU size. When the name field is the combination of tier and some other value, this would be the standalone code. | string |
tier | This field is required to be implemented by the Resource Provider if the service has more than one tier, but is not required on a PUT. | 'Basic' 'Free' 'Premium' 'Standard' |
TrackedResourceTags
Name | Description | Value |
---|
ARM template resource definition
The farmBeats 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.AgFoodPlatform/farmBeats resource, add the following JSON to your template.
{
"type": "Microsoft.AgFoodPlatform/farmBeats",
"apiVersion": "2020-05-12-preview",
"name": "string",
"location": "string",
"properties": {
},
"sku": {
"capacity": "int",
"family": "string",
"name": "string",
"size": "string",
"tier": "string"
},
"tags": {
"{customized property}": "string"
}
}
Property Values
Microsoft.AgFoodPlatform/farmBeats
Name | Description | Value |
---|---|---|
apiVersion | The api version | '2020-05-12-preview' |
location | The geo-location where the resource lives | string (required) |
name | The resource name | string (required) |
properties | FarmBeats ARM Resource properties. | FarmBeatsProperties |
sku | The resource model definition representing SKU | Sku |
tags | Resource tags | Dictionary of tag names and values. See Tags in templates |
type | The resource type | 'Microsoft.AgFoodPlatform/farmBeats' |
FarmBeatsProperties
Name | Description | Value |
---|
Sku
Name | Description | Value |
---|---|---|
capacity | If the SKU supports scale out/in then the capacity integer should be included. If scale out/in is not possible for the resource this may be omitted. | int |
family | If the service has different generations of hardware, for the same SKU, then that can be captured here. | string |
name | The name of the SKU. Ex - P3. It is typically a letter+number code | string (required) |
size | The SKU size. When the name field is the combination of tier and some other value, this would be the standalone code. | string |
tier | This field is required to be implemented by the Resource Provider if the service has more than one tier, but is not required on a PUT. | 'Basic' 'Free' 'Premium' 'Standard' |
TrackedResourceTags
Name | Description | Value |
---|
Usage Examples
Terraform (AzAPI provider) resource definition
The farmBeats 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.AgFoodPlatform/farmBeats resource, add the following Terraform to your template.
resource "azapi_resource" "symbolicname" {
type = "Microsoft.AgFoodPlatform/farmBeats@2020-05-12-preview"
name = "string"
parent_id = "string"
location = "string"
tags = {
{customized property} = "string"
}
body = {
properties = {
}
sku = {
capacity = int
family = "string"
name = "string"
size = "string"
tier = "string"
}
}
}
Property Values
Microsoft.AgFoodPlatform/farmBeats
Name | Description | Value |
---|---|---|
location | The geo-location where the resource lives | string (required) |
name | The resource name | string (required) |
properties | FarmBeats ARM Resource properties. | FarmBeatsProperties |
sku | The resource model definition representing SKU | Sku |
tags | Resource tags | Dictionary of tag names and values. |
type | The resource type | "Microsoft.AgFoodPlatform/farmBeats@2020-05-12-preview" |
FarmBeatsProperties
Name | Description | Value |
---|
Sku
Name | Description | Value |
---|---|---|
capacity | If the SKU supports scale out/in then the capacity integer should be included. If scale out/in is not possible for the resource this may be omitted. | int |
family | If the service has different generations of hardware, for the same SKU, then that can be captured here. | string |
name | The name of the SKU. Ex - P3. It is typically a letter+number code | string (required) |
size | The SKU size. When the name field is the combination of tier and some other value, this would be the standalone code. | string |
tier | This field is required to be implemented by the Resource Provider if the service has more than one tier, but is not required on a PUT. | 'Basic' 'Free' 'Premium' 'Standard' |
TrackedResourceTags
Name | Description | Value |
---|