Storage Constructors

Definition

Overloads

Storage()

Initializes a new instance of the Storage class.

Storage(Nullable<Int32>, Nullable<Int32>, String, String)

Initializes a new instance of the Storage class.

Storage()

Initializes a new instance of the Storage class.

public Storage ();
Public Sub New ()

Applies to

Storage(Nullable<Int32>, Nullable<Int32>, String, String)

Initializes a new instance of the Storage class.

public Storage (int? storageSizeGB = default, int? iops = default, string autoGrow = default, string storageSku = default);
new Microsoft.Azure.Management.MySQL.FlexibleServers.Models.Storage : Nullable<int> * Nullable<int> * string * string -> Microsoft.Azure.Management.MySQL.FlexibleServers.Models.Storage
Public Sub New (Optional storageSizeGB As Nullable(Of Integer) = Nothing, Optional iops As Nullable(Of Integer) = Nothing, Optional autoGrow As String = Nothing, Optional storageSku As String = Nothing)

Parameters

storageSizeGB
Nullable<Int32>

Max storage size allowed for a server.

iops
Nullable<Int32>

Storage IOPS for a server.

autoGrow
String

Enable Storage Auto Grow or not. Possible values include: 'Enabled', 'Disabled'

storageSku
String

The sku name of the server storage.

Applies to