Class BaselineMetadata
Represents a baseline metadata value.
Namespace: System.Dynamic.ExpandoObject
Assembly: Microsoft.Azure.Management.Monitor.dll
Syntax
public class BaselineMetadata
Constructors
BaselineMetadata()
Initializes a new instance of the BaselineMetadata class.
Declaration
public BaselineMetadata ();
BaselineMetadata(String, String)
Initializes a new instance of the BaselineMetadata class.
Declaration
public BaselineMetadata (string name, string value);
Parameters
|
String
name
Name of the baseline metadata. |
|
String
value
Value of the baseline metadata. |
Properties
Name
Gets or sets name of the baseline metadata.
Declaration
[Newtonsoft.Json.JsonProperty(PropertyName="name")]
public string Name { get; set; }
Property Value
|
String
|
Value
Gets or sets value of the baseline metadata.
Declaration
[Newtonsoft.Json.JsonProperty(PropertyName="value")]
public string Value { get; set; }
Property Value
|
String
|
Methods
Validate()
Validate the object.
Declaration
public virtual void Validate ();
Exceptions
|
ValidationException
Thrown if validation fails |