RecommendedActionImpactRecord Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
RecommendedActionImpactRecord() |
Initializes a new instance of the RecommendedActionImpactRecord class. |
RecommendedActionImpactRecord(String, String, Nullable<Double>, Nullable<Double>, Nullable<Double>) |
Initializes a new instance of the RecommendedActionImpactRecord class. |
RecommendedActionImpactRecord()
Initializes a new instance of the RecommendedActionImpactRecord class.
public RecommendedActionImpactRecord ();
Public Sub New ()
Applies to
RecommendedActionImpactRecord(String, String, Nullable<Double>, Nullable<Double>, Nullable<Double>)
Initializes a new instance of the RecommendedActionImpactRecord class.
public RecommendedActionImpactRecord (string dimensionName = default, string unit = default, double? absoluteValue = default, double? changeValueAbsolute = default, double? changeValueRelative = default);
new Microsoft.Azure.Management.Sql.Models.RecommendedActionImpactRecord : string * string * Nullable<double> * Nullable<double> * Nullable<double> -> Microsoft.Azure.Management.Sql.Models.RecommendedActionImpactRecord
Public Sub New (Optional dimensionName As String = Nothing, Optional unit As String = Nothing, Optional absoluteValue As Nullable(Of Double) = Nothing, Optional changeValueAbsolute As Nullable(Of Double) = Nothing, Optional changeValueRelative As Nullable(Of Double) = Nothing)
Parameters
- dimensionName
- String
Gets the name of the impact dimension. e.g., CPUChange, DiskSpaceChange, NumberOfQueriesAffected.
- unit
- String
Gets the name of the impact dimension. e.g., CPUChange, DiskSpaceChange, NumberOfQueriesAffected.
Gets the absolute value of this dimension if applicable. e.g., Number of Queries affected
Gets the absolute change in the value of this dimension. e.g., Absolute Disk space change in Megabytes
Gets the relative change in the value of this dimension. e.g., Relative Disk space change in Percentage
Applies to
Azure SDK for .NET