Share via


ClusterSku Constructors

Definition

Overloads

ClusterSku()

Initializes a new instance of the ClusterSku class.

ClusterSku(String, Nullable<Int32>)

Initializes a new instance of the ClusterSku class.

ClusterSku()

Initializes a new instance of the ClusterSku class.

public ClusterSku ();
Public Sub New ()

Applies to

ClusterSku(String, Nullable<Int32>)

Initializes a new instance of the ClusterSku class.

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

Parameters

name
String

Specifies the SKU name of the cluster. Required on PUT (CreateOrUpdate) requests. Possible values include: 'Default'

capacity
Nullable<Int32>

Denotes the number of streaming units the cluster can support. Valid values for this property are multiples of 36 with a minimum value of 36 and maximum value of 216. Required on PUT (CreateOrUpdate) requests.

Applies to