Show / Hide Table of Contents

    Class RecommendedElasticPoolMetric

    Represents recommended elastic pool metric.

    Inheritance
    Object
    RecommendedElasticPoolMetric
    Namespace: System.Dynamic.ExpandoObject
    Assembly: Microsoft.Azure.Management.Sql.dll
    Syntax
    public class RecommendedElasticPoolMetric

    Constructors

    RecommendedElasticPoolMetric()

    Initializes a new instance of the RecommendedElasticPoolMetric class.

    Declaration
    public RecommendedElasticPoolMetric ();

    RecommendedElasticPoolMetric(Nullable<DateTime>, Nullable<Double>, Nullable<Double>)

    Initializes a new instance of the RecommendedElasticPoolMetric class.

    Declaration
    public RecommendedElasticPoolMetric (Nullable<DateTime> dateTime = null, Nullable<double> dtu = null, Nullable<double> sizeGB = null);
    Parameters
    Nullable<DateTime> dateTime

    The time of metric (ISO8601 format).

    Nullable<Double> dtu

    Gets or sets the DTUs (Database Transaction Units). See https://azure.microsoft.com/documentation/articles/sql-database-what-is-a-dtu/

    Nullable<Double> sizeGB

    Gets or sets size in gigabytes.

    Properties

    DateTime

    Gets or sets the time of metric (ISO8601 format).

    Declaration
    [Newtonsoft.Json.JsonProperty(PropertyName="dateTime")]
    public Nullable<DateTime> DateTime { get; set; }
    Property Value
    Nullable<DateTime>

    Dtu

    Gets or sets the DTUs (Database Transaction Units). See https://azure.microsoft.com/documentation/articles/sql-database-what-is-a-dtu/

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

    SizeGB

    Gets or sets size in gigabytes.

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

    Back to top Azure SDK for Net