ClusterSku 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
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'
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
Azure SDK for .NET