Class OperationImpact
The impact of an operation, both in absolute and relative terms.
Namespace: System.Dynamic.ExpandoObject
Assembly: Microsoft.Azure.Management.Sql.dll
Syntax
public class OperationImpact
Constructors
OperationImpact()
Initializes a new instance of the OperationImpact class.
Declaration
public OperationImpact ();
OperationImpact(String, String, Nullable<Double>, Nullable<Double>)
Initializes a new instance of the OperationImpact class.
Declaration
public OperationImpact (string name = null, string unit = null, Nullable<double> changeValueAbsolute = null, Nullable<double> changeValueRelative = null);
Parameters
String
name
The name of the impact dimension. |
String
unit
The unit in which estimated impact to dimension is measured. |
Nullable<Double>
changeValueAbsolute
The absolute impact to dimension. |
Nullable<Double>
changeValueRelative
The relative impact to dimension (null if not applicable) |
Properties
ChangeValueAbsolute
Gets the absolute impact to dimension.
Declaration
[Newtonsoft.Json.JsonProperty(PropertyName="changeValueAbsolute")]
public Nullable<double> ChangeValueAbsolute { get; }
Property Value
Nullable<Double>
|
ChangeValueRelative
Gets the relative impact to dimension (null if not applicable)
Declaration
[Newtonsoft.Json.JsonProperty(PropertyName="changeValueRelative")]
public Nullable<double> ChangeValueRelative { get; }
Property Value
Nullable<Double>
|
Name
Gets the name of the impact dimension.
Declaration
[Newtonsoft.Json.JsonProperty(PropertyName="name")]
public string Name { get; }
Property Value
String
|
Unit
Gets the unit in which estimated impact to dimension is measured.
Declaration
[Newtonsoft.Json.JsonProperty(PropertyName="unit")]
public string Unit { get; }
Property Value
String
|