Microsoft.ElasticSan elasticSans
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@2023-01-01' = {
name: 'string'
location: 'string'
tags: {
tagName1: 'tagValue1'
tagName2: 'tagValue2'
}
properties: {
availabilityZones: [
'string'
]
baseSizeTiB: int
extendedCapacitySizeTiB: int
publicNetworkAccess: 'string'
sku: {
name: 'string'
tier: 'Premium'
}
}
}
Property values
elasticSans
Name | Description | Value |
---|---|---|
name | The resource name | string (required) |
location | The geo-location where the resource lives | string (required) |
tags | Resource tags. | Dictionary of tag names and values. See Tags in templates |
properties | Properties of ElasticSan. | ElasticSanProperties (required) |
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) |
publicNetworkAccess | Allow or disallow public network access to ElasticSan. Value is optional but if passed in, must be 'Enabled' or 'Disabled'. | 'Disabled' 'Enabled' |
sku | resource sku | Sku (required) |
Sku
Name | Description | Value |
---|---|---|
name | The sku name. | 'Premium_LRS' 'Premium_ZRS' (required) |
tier | The sku tier. | 'Premium' |
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": "2023-01-01",
"name": "string",
"location": "string",
"tags": {
"tagName1": "tagValue1",
"tagName2": "tagValue2"
},
"properties": {
"availabilityZones": [ "string" ],
"baseSizeTiB": "int",
"extendedCapacitySizeTiB": "int",
"publicNetworkAccess": "string",
"sku": {
"name": "string",
"tier": "Premium"
}
}
}
Property values
elasticSans
Name | Description | Value |
---|---|---|
type | The resource type | 'Microsoft.ElasticSan/elasticSans' |
apiVersion | The resource api version | '2023-01-01' |
name | The resource name | string (required) |
location | The geo-location where the resource lives | string (required) |
tags | Resource tags. | Dictionary of tag names and values. See Tags in templates |
properties | Properties of ElasticSan. | ElasticSanProperties (required) |
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) |
publicNetworkAccess | Allow or disallow public network access to ElasticSan. Value is optional but if passed in, must be 'Enabled' or 'Disabled'. | 'Disabled' 'Enabled' |
sku | resource sku | Sku (required) |
Sku
Name | Description | Value |
---|---|---|
name | The sku name. | 'Premium_LRS' 'Premium_ZRS' (required) |
tier | The sku tier. | 'Premium' |
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@2023-01-01"
name = "string"
location = "string"
parent_id = "string"
tags = {
tagName1 = "tagValue1"
tagName2 = "tagValue2"
}
body = jsonencode({
properties = {
availabilityZones = [
"string"
]
baseSizeTiB = int
extendedCapacitySizeTiB = int
publicNetworkAccess = "string"
sku = {
name = "string"
tier = "Premium"
}
}
})
}
Property values
elasticSans
Name | Description | Value |
---|---|---|
type | The resource type | "Microsoft.ElasticSan/elasticSans@2023-01-01" |
name | The resource name | string (required) |
location | The geo-location where the resource lives | string (required) |
parent_id | To deploy to a resource group, use the ID of that resource group. | string (required) |
tags | Resource tags. | Dictionary of tag names and values. |
properties | Properties of ElasticSan. | ElasticSanProperties (required) |
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) |
publicNetworkAccess | Allow or disallow public network access to ElasticSan. Value is optional but if passed in, must be 'Enabled' or 'Disabled'. | "Disabled" "Enabled" |
sku | resource sku | Sku (required) |
Sku
Name | Description | Value |
---|---|---|
name | The sku name. | "Premium_LRS" "Premium_ZRS" (required) |
tier | The sku tier. | "Premium" |