Usage Constructors

Definition

Overloads

Usage()

Initializes a new instance of the Usage class.

Usage(String, Name, String, String, Nullable<Int32>, Nullable<Int32>, Nullable<Int32>)

Initializes a new instance of the Usage class.

Usage()

Initializes a new instance of the Usage class.

public Usage ();
Public Sub New ()

Applies to

Usage(String, Name, String, String, Nullable<Int32>, Nullable<Int32>, Nullable<Int32>)

Initializes a new instance of the Usage class.

public Usage (string id = default, Microsoft.Azure.Management.Sql.Models.Name name = default, string type = default, string unit = default, int? currentValue = default, int? limit = default, int? requestedLimit = default);
new Microsoft.Azure.Management.Sql.Models.Usage : string * Microsoft.Azure.Management.Sql.Models.Name * string * string * Nullable<int> * Nullable<int> * Nullable<int> -> Microsoft.Azure.Management.Sql.Models.Usage
Public Sub New (Optional id As String = Nothing, Optional name As Name = Nothing, Optional type As String = Nothing, Optional unit As String = Nothing, Optional currentValue As Nullable(Of Integer) = Nothing, Optional limit As Nullable(Of Integer) = Nothing, Optional requestedLimit As Nullable(Of Integer) = Nothing)

Parameters

id
String

Resource ID.

name
Name

Resource name.

type
String

Resource type.

unit
String

Usage unit.

currentValue
Nullable<Int32>

Usage current value.

limit
Nullable<Int32>

Usage limit.

requestedLimit
Nullable<Int32>

Usage requested limit.

Applies to