Sku Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
Sku() |
Initializes a new instance of the Sku class. |
Sku(String, String, Nullable<Int32>, 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, Nullable<Int32>, String, String)
Initializes a new instance of the Sku class.
public Sku (string name, string tier = default, int? capacity = default, string size = default, string family = default);
new Microsoft.Azure.Management.MySQL.Models.Sku : string * string * Nullable<int> * string * string -> Microsoft.Azure.Management.MySQL.Models.Sku
Public Sub New (name As String, Optional tier As String = Nothing, Optional capacity As Nullable(Of Integer) = Nothing, Optional size As String = Nothing, Optional family As String = Nothing)
Parameters
- name
- String
The name of the sku, typically, tier + family + cores, e.g. B_Gen4_1, GP_Gen5_8.
- tier
- String
The tier of the particular SKU, e.g. Basic. Possible values include: 'Basic', 'GeneralPurpose', 'MemoryOptimized'
- size
- String
The size code, to be interpreted by resource as appropriate.
- family
- String
The family of hardware.
Applies to
Azure SDK for .NET