Dela via


ElasticPoolInner Constructors

Definition

Overloads

ElasticPoolInner()

Initializes a new instance of the ElasticPoolInner class.

ElasticPoolInner(String, String, String, String, IDictionary<String, String>, Nullable<DateTime>, ElasticPoolState, ElasticPoolEdition, Nullable<Int32>, Nullable<Int32>, Nullable<Int32>, Nullable<Int32>, Nullable<Boolean>, String)

Initializes a new instance of the ElasticPoolInner class.

ElasticPoolInner()

Initializes a new instance of the ElasticPoolInner class.

public ElasticPoolInner ();
Public Sub New ()

Applies to

ElasticPoolInner(String, String, String, String, IDictionary<String, String>, Nullable<DateTime>, ElasticPoolState, ElasticPoolEdition, Nullable<Int32>, Nullable<Int32>, Nullable<Int32>, Nullable<Int32>, Nullable<Boolean>, String)

Initializes a new instance of the ElasticPoolInner class.

public ElasticPoolInner (string location, string id = default, string name = default, string type = default, System.Collections.Generic.IDictionary<string,string> tags = default, DateTime? creationDate = default, Microsoft.Azure.Management.Sql.Fluent.Models.ElasticPoolState state = default, Microsoft.Azure.Management.Sql.Fluent.Models.ElasticPoolEdition edition = default, int? dtu = default, int? databaseDtuMax = default, int? databaseDtuMin = default, int? storageMB = default, bool? zoneRedundant = default, string kind = default);
new Microsoft.Azure.Management.Sql.Fluent.Models.ElasticPoolInner : string * string * string * string * System.Collections.Generic.IDictionary<string, string> * Nullable<DateTime> * Microsoft.Azure.Management.Sql.Fluent.Models.ElasticPoolState * Microsoft.Azure.Management.Sql.Fluent.Models.ElasticPoolEdition * Nullable<int> * Nullable<int> * Nullable<int> * Nullable<int> * Nullable<bool> * string -> Microsoft.Azure.Management.Sql.Fluent.Models.ElasticPoolInner
Public Sub New (location As String, Optional id As String = Nothing, Optional name As String = Nothing, Optional type As String = Nothing, Optional tags As IDictionary(Of String, String) = Nothing, Optional creationDate As Nullable(Of DateTime) = Nothing, Optional state As ElasticPoolState = Nothing, Optional edition As ElasticPoolEdition = Nothing, Optional dtu As Nullable(Of Integer) = Nothing, Optional databaseDtuMax As Nullable(Of Integer) = Nothing, Optional databaseDtuMin As Nullable(Of Integer) = Nothing, Optional storageMB As Nullable(Of Integer) = Nothing, Optional zoneRedundant As Nullable(Of Boolean) = Nothing, Optional kind As String = Nothing)

Parameters

location
String

Resource location.

id
String
name
String
type
String
tags
IDictionary<String,String>

Resource tags.

creationDate
Nullable<DateTime>

The creation date of the elastic pool (ISO8601 format).

state
ElasticPoolState

The state of the elastic pool. Possible values include: 'Creating', 'Ready', 'Disabled'

edition
ElasticPoolEdition

The edition of the elastic pool. Possible values include: 'Basic', 'Standard', 'Premium', 'GeneralPurpose', 'BusinessCritical'

dtu
Nullable<Int32>

The total shared DTU for the database elastic pool.

databaseDtuMax
Nullable<Int32>

The maximum DTU any one database can consume.

databaseDtuMin
Nullable<Int32>

The minimum DTU all databases are guaranteed.

storageMB
Nullable<Int32>

Gets storage limit for the database elastic pool in MB.

zoneRedundant
Nullable<Boolean>

Whether or not this database elastic pool is zone redundant, which means the replicas of this database will be spread across multiple availability zones.

kind
String

Kind of elastic pool. This is metadata used for the Azure portal experience.

Applies to