Share via


Sku Constructors

Definition

Overloads

Sku()

Initializes a new instance of the Sku class.

Sku(String, String)

Initializes a new instance of the Sku class.

Sku()

Initializes a new instance of the Sku class.

public Sku ();
Public Sub New ()

Applies to

Sku(String, String)

Initializes a new instance of the Sku class.

public Sku (string name, string tier);
new Microsoft.Azure.Management.MySQL.FlexibleServers.Models.Sku : string * string -> Microsoft.Azure.Management.MySQL.FlexibleServers.Models.Sku
Public Sub New (name As String, tier As String)

Parameters

name
String

The name of the sku, e.g. Standard_D32s_v3.

tier
String

The tier of the particular SKU, e.g. GeneralPurpose. Possible values include: 'Burstable', 'GeneralPurpose', 'MemoryOptimized'

Applies to