Show / Hide Table of Contents

    Class ElasticPoolPerDatabaseSettings

    Per database settings of an elastic pool.

    Inheritance
    Object
    ElasticPoolPerDatabaseSettings
    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>

    MinCapacity

    Gets or sets the minimum capacity all databases are guaranteed.

    Declaration
    [Newtonsoft.Json.JsonProperty(PropertyName="minCapacity")]
    public Nullable<double> MinCapacity { get; set; }
    Property Value
    Nullable<Double>

    Back to top Azure SDK for Net