共用方式為


PerformanceTierProperties Constructors

Definition

Overloads

PerformanceTierProperties()

Initializes a new instance of the PerformanceTierProperties class.

PerformanceTierProperties(String, Nullable<Int32>, Nullable<Int32>, Nullable<Int32>, Nullable<Int32>, Nullable<Int32>, Nullable<Int32>, IList<PerformanceTierServiceLevelObjectives>)

Initializes a new instance of the PerformanceTierProperties class.

PerformanceTierProperties()

Initializes a new instance of the PerformanceTierProperties class.

public PerformanceTierProperties ();
Public Sub New ()

Applies to

PerformanceTierProperties(String, Nullable<Int32>, Nullable<Int32>, Nullable<Int32>, Nullable<Int32>, Nullable<Int32>, Nullable<Int32>, IList<PerformanceTierServiceLevelObjectives>)

Initializes a new instance of the PerformanceTierProperties class.

public PerformanceTierProperties (string id = default, int? maxBackupRetentionDays = default, int? minBackupRetentionDays = default, int? maxStorageMB = default, int? minLargeStorageMB = default, int? maxLargeStorageMB = default, int? minStorageMB = default, System.Collections.Generic.IList<Microsoft.Azure.Management.MySQL.Models.PerformanceTierServiceLevelObjectives> serviceLevelObjectives = default);
new Microsoft.Azure.Management.MySQL.Models.PerformanceTierProperties : string * Nullable<int> * Nullable<int> * Nullable<int> * Nullable<int> * Nullable<int> * Nullable<int> * System.Collections.Generic.IList<Microsoft.Azure.Management.MySQL.Models.PerformanceTierServiceLevelObjectives> -> Microsoft.Azure.Management.MySQL.Models.PerformanceTierProperties
Public Sub New (Optional id As String = Nothing, Optional maxBackupRetentionDays As Nullable(Of Integer) = Nothing, Optional minBackupRetentionDays As Nullable(Of Integer) = Nothing, Optional maxStorageMB As Nullable(Of Integer) = Nothing, Optional minLargeStorageMB As Nullable(Of Integer) = Nothing, Optional maxLargeStorageMB As Nullable(Of Integer) = Nothing, Optional minStorageMB As Nullable(Of Integer) = Nothing, Optional serviceLevelObjectives As IList(Of PerformanceTierServiceLevelObjectives) = Nothing)

Parameters

id
String

ID of the performance tier.

maxBackupRetentionDays
Nullable<Int32>

Maximum Backup retention in days for the performance tier edition

minBackupRetentionDays
Nullable<Int32>

Minimum Backup retention in days for the performance tier edition

maxStorageMB
Nullable<Int32>

Max storage allowed for a server.

minLargeStorageMB
Nullable<Int32>

Max storage allowed for a server.

maxLargeStorageMB
Nullable<Int32>

Max storage allowed for a server.

minStorageMB
Nullable<Int32>

Max storage allowed for a server.

serviceLevelObjectives
IList<PerformanceTierServiceLevelObjectives>

Service level objectives associated with the performance tier

Applies to