Show / Hide Table of Contents

Class ElasticPoolState

Inheritance
System.Object
InputArgs
ResourceArgs
ElasticPoolState
Inherited Members
ResourceArgs.Empty
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Pulumi.Azure.Sql
Assembly: Pulumi.Azure.dll
Syntax
public sealed class ElasticPoolState : ResourceArgs

Constructors

View Source

ElasticPoolState()

Declaration
public ElasticPoolState()

Properties

View Source

CreationDate

The creation date of the SQL Elastic Pool.

Declaration
public Input<string> CreationDate { get; set; }
Property Value
Type Description
Input<System.String>
View Source

DbDtuMax

The maximum DTU which will be guaranteed to all databases in the elastic pool to be created.

Declaration
public Input<int> DbDtuMax { get; set; }
Property Value
Type Description
Input<System.Int32>
View Source

DbDtuMin

The minimum DTU which will be guaranteed to all databases in the elastic pool to be created.

Declaration
public Input<int> DbDtuMin { get; set; }
Property Value
Type Description
Input<System.Int32>
View Source

Dtu

The total shared DTU for the elastic pool. Valid values depend on the edition which has been defined. Refer to Azure SQL Database Service Tiers for valid combinations.

Declaration
public Input<int> Dtu { get; set; }
Property Value
Type Description
Input<System.Int32>
View Source

Edition

The edition of the elastic pool to be created. Valid values are Basic, Standard, and Premium. Refer to Azure SQL Database Service Tiers for details. Changing this forces a new resource to be created.

Declaration
public Input<string> Edition { get; set; }
Property Value
Type Description
Input<System.String>
View Source

Location

Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.

Declaration
public Input<string> Location { get; set; }
Property Value
Type Description
Input<System.String>
View Source

Name

The name of the elastic pool. This needs to be globally unique. Changing this forces a new resource to be created.

Declaration
public Input<string> Name { get; set; }
Property Value
Type Description
Input<System.String>
View Source

PoolSize

The maximum size in MB that all databases in the elastic pool can grow to. The maximum size must be consistent with combination of edition and dtu and the limits documented in Azure SQL Database Service Tiers. If not defined when creating an elastic pool, the value is set to the size implied by edition and dtu.

Declaration
public Input<int> PoolSize { get; set; }
Property Value
Type Description
Input<System.Int32>
View Source

ResourceGroupName

The name of the resource group in which to create the elastic pool. This must be the same as the resource group of the underlying SQL server.

Declaration
public Input<string> ResourceGroupName { get; set; }
Property Value
Type Description
Input<System.String>
View Source

ServerName

The name of the SQL Server on which to create the elastic pool. Changing this forces a new resource to be created.

Declaration
public Input<string> ServerName { get; set; }
Property Value
Type Description
Input<System.String>
View Source

Tags

A mapping of tags to assign to the resource.

Declaration
public InputMap<string> Tags { get; set; }
Property Value
Type Description
InputMap<System.String>
  • View Source
Back to top Copyright 2016-2020, Pulumi Corporation.