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 elasticSans 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.ElasticSan/elasticSans resource, add the following Bicep to your template.
resource symbolicname 'Microsoft.ElasticSan/elasticSans@2022-12-01-preview' = {
location: 'string'
name: 'string'
properties: {
availabilityZones: [
'string'
]
baseSizeTiB: int
extendedCapacitySizeTiB: int
sku: {
name: 'string'
tier: 'string'
}
}
tags: {
{customized property}: 'string'
}
}
Property Values
Microsoft.ElasticSan/elasticSans
Name | Description | Value |
---|---|---|
location | The geo-location where the resource lives | string (required) |
name | The resource name | string Constraints: Min length = 3 Max length = 24 Pattern = ^[A-Za-z0-9]+((-|_)[a-z0-9A-Z]+)*$ (required) |
properties | Properties of ElasticSan. | ElasticSanProperties (required) |
tags | Resource tags | Dictionary of tag names and values. See Tags in templates |
ElasticSanProperties
Name | Description | Value |
---|---|---|
availabilityZones | Logical zone for Elastic San resource; example: ["1"]. | string[] |
baseSizeTiB | Base size of the Elastic San appliance in TiB. | int (required) |
extendedCapacitySizeTiB | Extended size of the Elastic San appliance in TiB. | int (required) |
sku | resource sku | Sku (required) |
Sku
Name | Description | Value |
---|---|---|
name | The sku name. | 'Premium_LRS' 'Premium_ZRS' (required) |
tier | The sku tier. | 'Premium' |
TrackedResourceTags
Name | Description | Value |
---|
Usage Examples
Azure Verified Modules
The following Azure Verified Modules can be used to deploy this resource type.
Module | Description |
---|---|
Elastic SAN | AVM Resource Module for Elastic SAN |
ARM template resource definition
The elasticSans 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.ElasticSan/elasticSans resource, add the following JSON to your template.
{
"type": "Microsoft.ElasticSan/elasticSans",
"apiVersion": "2022-12-01-preview",
"name": "string",
"location": "string",
"properties": {
"availabilityZones": [ "string" ],
"baseSizeTiB": "int",
"extendedCapacitySizeTiB": "int",
"sku": {
"name": "string",
"tier": "string"
}
},
"tags": {
"{customized property}": "string"
}
}
Property Values
Microsoft.ElasticSan/elasticSans
Name | Description | Value |
---|---|---|
apiVersion | The api version | '2022-12-01-preview' |
location | The geo-location where the resource lives | string (required) |
name | The resource name | string Constraints: Min length = 3 Max length = 24 Pattern = ^[A-Za-z0-9]+((-|_)[a-z0-9A-Z]+)*$ (required) |
properties | Properties of ElasticSan. | ElasticSanProperties (required) |
tags | Resource tags | Dictionary of tag names and values. See Tags in templates |
type | The resource type | 'Microsoft.ElasticSan/elasticSans' |
ElasticSanProperties
Name | Description | Value |
---|---|---|
availabilityZones | Logical zone for Elastic San resource; example: ["1"]. | string[] |
baseSizeTiB | Base size of the Elastic San appliance in TiB. | int (required) |
extendedCapacitySizeTiB | Extended size of the Elastic San appliance in TiB. | int (required) |
sku | resource sku | Sku (required) |
Sku
Name | Description | Value |
---|---|---|
name | The sku name. | 'Premium_LRS' 'Premium_ZRS' (required) |
tier | The sku tier. | 'Premium' |
TrackedResourceTags
Name | Description | Value |
---|
Usage Examples
Terraform (AzAPI provider) resource definition
The elasticSans 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.ElasticSan/elasticSans resource, add the following Terraform to your template.
resource "azapi_resource" "symbolicname" {
type = "Microsoft.ElasticSan/elasticSans@2022-12-01-preview"
name = "string"
parent_id = "string"
location = "string"
tags = {
{customized property} = "string"
}
body = {
properties = {
availabilityZones = [
"string"
]
baseSizeTiB = int
extendedCapacitySizeTiB = int
sku = {
name = "string"
tier = "string"
}
}
}
}
Property Values
Microsoft.ElasticSan/elasticSans
Name | Description | Value |
---|---|---|
location | The geo-location where the resource lives | string (required) |
name | The resource name | string Constraints: Min length = 3 Max length = 24 Pattern = ^[A-Za-z0-9]+((-|_)[a-z0-9A-Z]+)*$ (required) |
properties | Properties of ElasticSan. | ElasticSanProperties (required) |
tags | Resource tags | Dictionary of tag names and values. |
type | The resource type | "Microsoft.ElasticSan/elasticSans@2022-12-01-preview" |
ElasticSanProperties
Name | Description | Value |
---|---|---|
availabilityZones | Logical zone for Elastic San resource; example: ["1"]. | string[] |
baseSizeTiB | Base size of the Elastic San appliance in TiB. | int (required) |
extendedCapacitySizeTiB | Extended size of the Elastic San appliance in TiB. | int (required) |
sku | resource sku | Sku (required) |
Sku
Name | Description | Value |
---|---|---|
name | The sku name. | 'Premium_LRS' 'Premium_ZRS' (required) |
tier | The sku tier. | 'Premium' |
TrackedResourceTags
Name | Description | Value |
---|