Condividi tramite


MeterDetails Constructors

Definition

Overloads

MeterDetails()

Initializes a new instance of the MeterDetails class.

MeterDetails(String, String, String, String, String, Nullable<Decimal>, Nullable<Decimal>)

Initializes a new instance of the MeterDetails class.

MeterDetails()

Initializes a new instance of the MeterDetails class.

public MeterDetails ();
Public Sub New ()

Applies to

MeterDetails(String, String, String, String, String, Nullable<Decimal>, Nullable<Decimal>)

Initializes a new instance of the MeterDetails class.

public MeterDetails (string meterName = default, string meterCategory = default, string meterSubCategory = default, string unit = default, string meterLocation = default, decimal? totalIncludedQuantity = default, decimal? pretaxStandardRate = default);
new Microsoft.Azure.Management.Consumption.Models.MeterDetails : string * string * string * string * string * Nullable<decimal> * Nullable<decimal> -> Microsoft.Azure.Management.Consumption.Models.MeterDetails
Public Sub New (Optional meterName As String = Nothing, Optional meterCategory As String = Nothing, Optional meterSubCategory As String = Nothing, Optional unit As String = Nothing, Optional meterLocation As String = Nothing, Optional totalIncludedQuantity As Nullable(Of Decimal) = Nothing, Optional pretaxStandardRate As Nullable(Of Decimal) = Nothing)

Parameters

meterName
String

The name of the meter, within the given meter category

meterCategory
String

The category of the meter, for example, 'Cloud services', 'Networking', etc..

meterSubCategory
String

The subcategory of the meter, for example, 'A6 Cloud services', 'ExpressRoute (IXP)', etc..

unit
String

The unit in which the meter consumption is charged, for example, 'Hours', 'GB', etc.

meterLocation
String

The location in which the Azure service is available.

totalIncludedQuantity
Nullable<Decimal>

The total included quantity associated with the offer.

pretaxStandardRate
Nullable<Decimal>

The pretax listing price.

Applies to