共用方式為


Sku Constructors

Definition

Overloads

Sku()

Initializes a new instance of the Sku class.

Sku(String, Nullable<Int32>)

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, Nullable<Int32>)

Initializes a new instance of the Sku class.

public Sku (string name, int? capacity = default);
new Microsoft.Azure.Management.RedisEnterprise.Models.Sku : string * Nullable<int> -> Microsoft.Azure.Management.RedisEnterprise.Models.Sku
Public Sub New (name As String, Optional capacity As Nullable(Of Integer) = Nothing)

Parameters

name
String

The type of RedisEnterprise cluster to deploy. Possible values: (Enterprise_E10, EnterpriseFlash_F300 etc.). Possible values include: 'Enterprise_E10', 'Enterprise_E20', 'Enterprise_E50', 'Enterprise_E100', 'EnterpriseFlash_F300', 'EnterpriseFlash_F700', 'EnterpriseFlash_F1500'

capacity
Nullable<Int32>

The size of the RedisEnterprise cluster. Defaults to 2 or 3 depending on SKU. Valid values are (2, 4, 6, ...) for Enterprise SKUs and (3, 9, 15, ...) for Flash SKUs.

Applies to