LogSizeCapability Constructors

Definition

Overloads

LogSizeCapability()

Initializes a new instance of the LogSizeCapability class.

LogSizeCapability(Nullable<Int32>, String)

Initializes a new instance of the LogSizeCapability class.

LogSizeCapability()

Initializes a new instance of the LogSizeCapability class.

public LogSizeCapability ();
Public Sub New ()

Applies to

LogSizeCapability(Nullable<Int32>, String)

Initializes a new instance of the LogSizeCapability class.

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

Parameters

limit
Nullable<Int32>

The log size limit (see 'unit' for the units).

unit
String

The units that the limit is expressed in. Possible values include: 'Megabytes', 'Gigabytes', 'Terabytes', 'Petabytes', 'Percent'

Applies to