ElasticPoolUpdateInner Constructors

Definition

Overloads

ElasticPoolUpdateInner()

Initializes a new instance of the ElasticPoolUpdateInner class.

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

Initializes a new instance of the ElasticPoolUpdateInner class.

ElasticPoolUpdateInner()

Initializes a new instance of the ElasticPoolUpdateInner class.

public ElasticPoolUpdateInner ();
Public Sub New ()

Applies to

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

Initializes a new instance of the ElasticPoolUpdateInner class.

public ElasticPoolUpdateInner (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);
new Microsoft.Azure.Management.Sql.Fluent.Models.ElasticPoolUpdateInner : 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> -> Microsoft.Azure.Management.Sql.Fluent.Models.ElasticPoolUpdateInner
Public Sub New (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)

Parameters

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.

Applies to