OperationImpact Constructors

Definition

Overloads

OperationImpact()

Initializes a new instance of the OperationImpact class.

OperationImpact(String, String, Nullable<Double>, Nullable<Double>)

Initializes a new instance of the OperationImpact class.

OperationImpact()

Initializes a new instance of the OperationImpact class.

public OperationImpact ();
Public Sub New ()

Applies to

OperationImpact(String, String, Nullable<Double>, Nullable<Double>)

Initializes a new instance of the OperationImpact class.

public OperationImpact (string name = default, string unit = default, double? changeValueAbsolute = default, double? changeValueRelative = default);
new Microsoft.Azure.Management.Sql.Models.OperationImpact : string * string * Nullable<double> * Nullable<double> -> Microsoft.Azure.Management.Sql.Models.OperationImpact
Public Sub New (Optional name As String = Nothing, Optional unit As String = Nothing, Optional changeValueAbsolute As Nullable(Of Double) = Nothing, Optional changeValueRelative As Nullable(Of Double) = Nothing)

Parameters

name
String

The name of the impact dimension.

unit
String

The unit in which estimated impact to dimension is measured.

changeValueAbsolute
Nullable<Double>

The absolute impact to dimension.

changeValueRelative
Nullable<Double>

The relative impact to dimension (null if not applicable)

Applies to