Share via


StorageProfile Constructors

Definition

Overloads

StorageProfile()

Initializes a new instance of the StorageProfile class.

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

Initializes a new instance of the StorageProfile class.

StorageProfile()

Initializes a new instance of the StorageProfile class.

public StorageProfile ();
Public Sub New ()

Applies to

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

Initializes a new instance of the StorageProfile class.

public StorageProfile (int? backupRetentionDays = default, string geoRedundantBackup = default, int? storageMB = default, string storageAutogrow = default);
new Microsoft.Azure.Management.MySQL.Models.StorageProfile : Nullable<int> * string * Nullable<int> * string -> Microsoft.Azure.Management.MySQL.Models.StorageProfile
Public Sub New (Optional backupRetentionDays As Nullable(Of Integer) = Nothing, Optional geoRedundantBackup As String = Nothing, Optional storageMB As Nullable(Of Integer) = Nothing, Optional storageAutogrow As String = Nothing)

Parameters

backupRetentionDays
Nullable<Int32>

Backup retention days for the server.

geoRedundantBackup
String

Enable Geo-redundant or not for server backup. Possible values include: 'Enabled', 'Disabled'

storageMB
Nullable<Int32>

Max storage allowed for a server.

storageAutogrow
String

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

Applies to