Condividi tramite


Sku Constructors

Definition

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.PostgreSQL.Models.Sku : string * string * Nullable<int> * string * string -> Microsoft.Azure.Management.PostgreSQL.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'

capacity
Nullable<Int32>

The scale up/out capacity, representing server's compute units.

size
String

The size code, to be interpreted by resource as appropriate.

family
String

The family of hardware.

Applies to