Show / Hide Table of Contents

    Class CalculateBaselineResponse

    The response to a calculate baseline call.

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

    Constructors

    CalculateBaselineResponse()

    Initializes a new instance of the CalculateBaselineResponse class.

    Declaration
    public CalculateBaselineResponse ();

    CalculateBaselineResponse(String, IList<Baseline>, IList<Nullable<DateTime>>)

    Initializes a new instance of the CalculateBaselineResponse class.

    Declaration
    public CalculateBaselineResponse (string type, System.Collections.Generic.IList<Microsoft.Azure.Management.Monitor.Models.Baseline> baseline, System.Collections.Generic.IList<Nullable<DateTime>> timestamps = null);
    Parameters
    String type

    the resource type of the baseline resource.

    IList<Baseline> baseline

    the baseline values for each sensitivity.

    IList<Nullable<DateTime>> timestamps

    the array of timestamps of the baselines.

    Properties

    Baseline

    Gets or sets the baseline values for each sensitivity.

    Declaration
    [Newtonsoft.Json.JsonProperty(PropertyName="baseline")]
    public System.Collections.Generic.IList<Microsoft.Azure.Management.Monitor.Models.Baseline> Baseline { get; set; }
    Property Value
    IList<Baseline>

    Timestamps

    Gets or sets the array of timestamps of the baselines.

    Declaration
    [Newtonsoft.Json.JsonProperty(PropertyName="timestamps")]
    public System.Collections.Generic.IList<Nullable<DateTime>> Timestamps { get; set; }
    Property Value
    IList<Nullable<DateTime>>

    Type

    Gets or sets the resource type of the baseline resource.

    Declaration
    [Newtonsoft.Json.JsonProperty(PropertyName="type")]
    public string Type { get; set; }
    Property Value
    String

    Methods

    Validate()

    Validate the object.

    Declaration
    public virtual void Validate ();
    Exceptions
    ValidationException

    Thrown if validation fails

    Back to top Azure SDK for Net