Class ElasticPoolPerDatabaseSettings
Per database settings of an elastic pool.
Namespace: System.Dynamic.ExpandoObject
Assembly: Microsoft.Azure.Management.Sql.dll
Syntax
public class ElasticPoolPerDatabaseSettings
Constructors
ElasticPoolPerDatabaseSettings()
Initializes a new instance of the ElasticPoolPerDatabaseSettings class.
Declaration
public ElasticPoolPerDatabaseSettings ();
ElasticPoolPerDatabaseSettings(Nullable<Double>, Nullable<Double>)
Initializes a new instance of the ElasticPoolPerDatabaseSettings class.
Declaration
public ElasticPoolPerDatabaseSettings (Nullable<double> minCapacity = null, Nullable<double> maxCapacity = null);
Parameters
Nullable<Double>
minCapacity
The minimum capacity all databases are guaranteed. |
Nullable<Double>
maxCapacity
The maximum capacity any one database can consume. |
Properties
MaxCapacity
Gets or sets the maximum capacity any one database can consume.
Declaration
[Newtonsoft.Json.JsonProperty(PropertyName="maxCapacity")]
public Nullable<double> MaxCapacity { get; set; }
Property Value
Nullable<Double>
|