Microsoft.Sql servers/elasticPools 2020-11-01-preview
Bicep resource definition
The servers/elasticPools 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.Sql/servers/elasticPools resource, add the following Bicep to your template.
resource symbolicname 'Microsoft.Sql/servers/elasticPools@2020-11-01-preview' = {
name: 'string'
location: 'string'
tags: {
tagName1: 'tagValue1'
tagName2: 'tagValue2'
}
sku: {
capacity: int
family: 'string'
name: 'string'
size: 'string'
tier: 'string'
}
parent: resourceSymbolicName
properties: {
licenseType: 'string'
maintenanceConfigurationId: 'string'
maxSizeBytes: int
perDatabaseSettings: {
maxCapacity: int
minCapacity: int
}
zoneRedundant: bool
}
}
Property values
servers/elasticPools
Name | Description | Value |
---|---|---|
name | The resource name See how to set names and types for child resources in Bicep. |
string (required) Character limit: 1-128 Valid characters: Can't use: <>*%&:\/? or control charactersCan't end with period or space. |
location | Resource location. | string (required) |
tags | Resource tags. | Dictionary of tag names and values. See Tags in templates |
sku | The elastic pool SKU. The list of SKUs may vary by region and support offer. To determine the SKUs (including the SKU name, tier/edition, family, and capacity) that are available to your subscription in an Azure region, use the Capabilities_ListByLocation REST API or the following command:Azure CLI: az sql elastic-pool list-editions -l {location} -o table |
Sku |
parent | In Bicep, you can specify the parent resource for a child resource. You only need to add this property when the child resource is declared outside of the parent resource. For more information, see Child resource outside parent resource. |
Symbolic name for resource of type: servers |
properties | Resource properties. | ElasticPoolProperties |
ElasticPoolProperties
Name | Description | Value |
---|---|---|
licenseType | The license type to apply for this elastic pool. | 'BasePrice' 'LicenseIncluded' |
maintenanceConfigurationId | Maintenance configuration id assigned to the elastic pool. This configuration defines the period when the maintenance updates will will occur. | string |
maxSizeBytes | The storage limit for the database elastic pool in bytes. | int |
perDatabaseSettings | The per database settings for the elastic pool. | ElasticPoolPerDatabaseSettings |
zoneRedundant | Whether or not this elastic pool is zone redundant, which means the replicas of this elastic pool will be spread across multiple availability zones. | bool |
ElasticPoolPerDatabaseSettings
Name | Description | Value |
---|---|---|
maxCapacity | The maximum capacity any one database can consume. | int |
minCapacity | The minimum capacity all databases are guaranteed. | int |
Sku
Name | Description | Value |
---|---|---|
capacity | Capacity of the particular SKU. | 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, typically, a letter + Number code, e.g. P3. | string (required) |
size | Size of the particular SKU | string |
tier | The tier or edition of the particular SKU, e.g. Basic, Premium. | string |
Quickstart templates
The following quickstart templates deploy this resource type.
Template | Description |
---|---|
Deploy a new SQL Elastic Pool |
This template allows you to deploy a new SQL Elastic Pool with its new associated SQL Server and new SQL Databases to assign to it. |
ARM template resource definition
The servers/elasticPools 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.Sql/servers/elasticPools resource, add the following JSON to your template.
{
"type": "Microsoft.Sql/servers/elasticPools",
"apiVersion": "2020-11-01-preview",
"name": "string",
"location": "string",
"tags": {
"tagName1": "tagValue1",
"tagName2": "tagValue2"
},
"sku": {
"capacity": "int",
"family": "string",
"name": "string",
"size": "string",
"tier": "string"
},
"properties": {
"licenseType": "string",
"maintenanceConfigurationId": "string",
"maxSizeBytes": "int",
"perDatabaseSettings": {
"maxCapacity": "int",
"minCapacity": "int"
},
"zoneRedundant": "bool"
}
}
Property values
servers/elasticPools
Name | Description | Value |
---|---|---|
type | The resource type | 'Microsoft.Sql/servers/elasticPools' |
apiVersion | The resource api version | '2020-11-01-preview' |
name | The resource name See how to set names and types for child resources in JSON ARM templates. |
string (required) Character limit: 1-128 Valid characters: Can't use: <>*%&:\/? or control charactersCan't end with period or space. |
location | Resource location. | string (required) |
tags | Resource tags. | Dictionary of tag names and values. See Tags in templates |
sku | The elastic pool SKU. The list of SKUs may vary by region and support offer. To determine the SKUs (including the SKU name, tier/edition, family, and capacity) that are available to your subscription in an Azure region, use the Capabilities_ListByLocation REST API or the following command:Azure CLI: az sql elastic-pool list-editions -l {location} -o table |
Sku |
properties | Resource properties. | ElasticPoolProperties |
ElasticPoolProperties
Name | Description | Value |
---|---|---|
licenseType | The license type to apply for this elastic pool. | 'BasePrice' 'LicenseIncluded' |
maintenanceConfigurationId | Maintenance configuration id assigned to the elastic pool. This configuration defines the period when the maintenance updates will will occur. | string |
maxSizeBytes | The storage limit for the database elastic pool in bytes. | int |
perDatabaseSettings | The per database settings for the elastic pool. | ElasticPoolPerDatabaseSettings |
zoneRedundant | Whether or not this elastic pool is zone redundant, which means the replicas of this elastic pool will be spread across multiple availability zones. | bool |
ElasticPoolPerDatabaseSettings
Name | Description | Value |
---|---|---|
maxCapacity | The maximum capacity any one database can consume. | int |
minCapacity | The minimum capacity all databases are guaranteed. | int |
Sku
Name | Description | Value |
---|---|---|
capacity | Capacity of the particular SKU. | 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, typically, a letter + Number code, e.g. P3. | string (required) |
size | Size of the particular SKU | string |
tier | The tier or edition of the particular SKU, e.g. Basic, Premium. | string |
Quickstart templates
The following quickstart templates deploy this resource type.
Template | Description |
---|---|
Deploy a new SQL Elastic Pool |
This template allows you to deploy a new SQL Elastic Pool with its new associated SQL Server and new SQL Databases to assign to it. |
Terraform (AzAPI provider) resource definition
The servers/elasticPools 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.Sql/servers/elasticPools resource, add the following Terraform to your template.
resource "azapi_resource" "symbolicname" {
type = "Microsoft.Sql/servers/elasticPools@2020-11-01-preview"
name = "string"
location = "string"
parent_id = "string"
tags = {
tagName1 = "tagValue1"
tagName2 = "tagValue2"
}
body = jsonencode({
properties = {
licenseType = "string"
maintenanceConfigurationId = "string"
maxSizeBytes = int
perDatabaseSettings = {
maxCapacity = int
minCapacity = int
}
zoneRedundant = bool
}
sku = {
capacity = int
family = "string"
name = "string"
size = "string"
tier = "string"
}
})
}
Property values
servers/elasticPools
Name | Description | Value |
---|---|---|
type | The resource type | "Microsoft.Sql/servers/elasticPools@2020-11-01-preview" |
name | The resource name | string (required) Character limit: 1-128 Valid characters: Can't use: <>*%&:\/? or control charactersCan't end with period or space. |
location | Resource location. | string (required) |
parent_id | The ID of the resource that is the parent for this resource. | ID for resource of type: servers |
tags | Resource tags. | Dictionary of tag names and values. |
sku | The elastic pool SKU. The list of SKUs may vary by region and support offer. To determine the SKUs (including the SKU name, tier/edition, family, and capacity) that are available to your subscription in an Azure region, use the Capabilities_ListByLocation REST API or the following command:Azure CLI: az sql elastic-pool list-editions -l {location} -o table |
Sku |
properties | Resource properties. | ElasticPoolProperties |
ElasticPoolProperties
Name | Description | Value |
---|---|---|
licenseType | The license type to apply for this elastic pool. | "BasePrice" "LicenseIncluded" |
maintenanceConfigurationId | Maintenance configuration id assigned to the elastic pool. This configuration defines the period when the maintenance updates will will occur. | string |
maxSizeBytes | The storage limit for the database elastic pool in bytes. | int |
perDatabaseSettings | The per database settings for the elastic pool. | ElasticPoolPerDatabaseSettings |
zoneRedundant | Whether or not this elastic pool is zone redundant, which means the replicas of this elastic pool will be spread across multiple availability zones. | bool |
ElasticPoolPerDatabaseSettings
Name | Description | Value |
---|---|---|
maxCapacity | The maximum capacity any one database can consume. | int |
minCapacity | The minimum capacity all databases are guaranteed. | int |
Sku
Name | Description | Value |
---|---|---|
capacity | Capacity of the particular SKU. | 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, typically, a letter + Number code, e.g. P3. | string (required) |
size | Size of the particular SKU | string |
tier | The tier or edition of the particular SKU, e.g. Basic, Premium. | string |