Share via


Microsoft.ElasticSan elasticSans

Bicep resource definition

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

resource symbolicname 'Microsoft.ElasticSan/elasticSans@2024-07-01-preview' = {
  location: 'string'
  name: 'string'
  properties: {
    autoScaleProperties: {
      scaleUpProperties: {
        autoScalePolicyEnforcement: 'string'
        capacityUnitScaleUpLimitTiB: int
        increaseCapacityUnitByTiB: int
        unusedSizeTiB: int
      }
    }
    availabilityZones: [
      'string'
    ]
    baseSizeTiB: int
    extendedCapacitySizeTiB: int
    publicNetworkAccess: 'string'
    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

AutoScaleProperties

Name Description Value
scaleUpProperties Scale up settings on Elastic San Appliance. ScaleUpProperties

ElasticSanProperties

Name Description Value
autoScaleProperties Auto Scale Properties for Elastic San Appliance. AutoScaleProperties
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)

ScaleUpProperties

Name Description Value
autoScalePolicyEnforcement Enable or Disable scale up setting on Elastic San Appliance. 'Disabled'
'Enabled'
'None'
capacityUnitScaleUpLimitTiB Maximum scale up size on Elastic San appliance in TiB. int
increaseCapacityUnitByTiB Unit to increase Capacity Unit on Elastic San appliance in TiB. int
unusedSizeTiB Unused size on Elastic San appliance in TiB. int

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:

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": "2024-07-01-preview",
  "name": "string",
  "location": "string",
  "properties": {
    "autoScaleProperties": {
      "scaleUpProperties": {
        "autoScalePolicyEnforcement": "string",
        "capacityUnitScaleUpLimitTiB": "int",
        "increaseCapacityUnitByTiB": "int",
        "unusedSizeTiB": "int"
      }
    },
    "availabilityZones": [ "string" ],
    "baseSizeTiB": "int",
    "extendedCapacitySizeTiB": "int",
    "publicNetworkAccess": "string",
    "sku": {
      "name": "string",
      "tier": "string"
    }
  },
  "tags": {
    "{customized property}": "string"
  }
}

Property Values

Microsoft.ElasticSan/elasticSans

Name Description Value
apiVersion The api version '2024-07-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'

AutoScaleProperties

Name Description Value
scaleUpProperties Scale up settings on Elastic San Appliance. ScaleUpProperties

ElasticSanProperties

Name Description Value
autoScaleProperties Auto Scale Properties for Elastic San Appliance. AutoScaleProperties
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)

ScaleUpProperties

Name Description Value
autoScalePolicyEnforcement Enable or Disable scale up setting on Elastic San Appliance. 'Disabled'
'Enabled'
'None'
capacityUnitScaleUpLimitTiB Maximum scale up size on Elastic San appliance in TiB. int
increaseCapacityUnitByTiB Unit to increase Capacity Unit on Elastic San appliance in TiB. int
unusedSizeTiB Unused size on Elastic San appliance in TiB. int

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@2024-07-01-preview"
  name = "string"
  parent_id = "string"
  location = "string"
  tags = {
    {customized property} = "string"
  }
  body = {
    properties = {
      autoScaleProperties = {
        scaleUpProperties = {
          autoScalePolicyEnforcement = "string"
          capacityUnitScaleUpLimitTiB = int
          increaseCapacityUnitByTiB = int
          unusedSizeTiB = int
        }
      }
      availabilityZones = [
        "string"
      ]
      baseSizeTiB = int
      extendedCapacitySizeTiB = int
      publicNetworkAccess = "string"
      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@2024-07-01-preview"

AutoScaleProperties

Name Description Value
scaleUpProperties Scale up settings on Elastic San Appliance. ScaleUpProperties

ElasticSanProperties

Name Description Value
autoScaleProperties Auto Scale Properties for Elastic San Appliance. AutoScaleProperties
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)

ScaleUpProperties

Name Description Value
autoScalePolicyEnforcement Enable or Disable scale up setting on Elastic San Appliance. 'Disabled'
'Enabled'
'None'
capacityUnitScaleUpLimitTiB Maximum scale up size on Elastic San appliance in TiB. int
increaseCapacityUnitByTiB Unit to increase Capacity Unit on Elastic San appliance in TiB. int
unusedSizeTiB Unused size on Elastic San appliance in TiB. int

Sku

Name Description Value
name The sku name. 'Premium_LRS'
'Premium_ZRS' (required)
tier The sku tier. 'Premium'

TrackedResourceTags

Name Description Value