Cluster Constructors

Definition

Overloads

Cluster()

Initializes a new instance of the Cluster class.

Cluster(String, String, String, String, IDictionary<String,String>, ClusterSku, SystemData, String, String, String, String, Nullable<Boolean>)

Initializes a new instance of the Cluster class.

Cluster()

Initializes a new instance of the Cluster class.

public Cluster ();
Public Sub New ()

Applies to

Cluster(String, String, String, String, IDictionary<String,String>, ClusterSku, SystemData, String, String, String, String, Nullable<Boolean>)

Initializes a new instance of the Cluster class.

public Cluster (string id = default, string name = default, string type = default, string location = default, System.Collections.Generic.IDictionary<string,string> tags = default, Microsoft.Azure.Management.EventHub.Models.ClusterSku sku = default, Microsoft.Azure.Management.EventHub.Models.SystemData systemData = default, string createdAt = default, string updatedAt = default, string metricId = default, string status = default, bool? supportsScaling = default);
new Microsoft.Azure.Management.EventHub.Models.Cluster : string * string * string * string * System.Collections.Generic.IDictionary<string, string> * Microsoft.Azure.Management.EventHub.Models.ClusterSku * Microsoft.Azure.Management.EventHub.Models.SystemData * string * string * string * string * Nullable<bool> -> Microsoft.Azure.Management.EventHub.Models.Cluster
Public Sub New (Optional id As String = Nothing, Optional name As String = Nothing, Optional type As String = Nothing, Optional location As String = Nothing, Optional tags As IDictionary(Of String, String) = Nothing, Optional sku As ClusterSku = Nothing, Optional systemData As SystemData = Nothing, Optional createdAt As String = Nothing, Optional updatedAt As String = Nothing, Optional metricId As String = Nothing, Optional status As String = Nothing, Optional supportsScaling As Nullable(Of Boolean) = Nothing)

Parameters

id
String

Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}

name
String

The name of the resource

type
String

The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"

location
String

Resource location.

tags
IDictionary<String,String>

Resource tags.

sku
ClusterSku

Properties of the cluster SKU.

systemData
SystemData

The system meta data relating to this resource.

createdAt
String

The UTC time when the Event Hubs Cluster was created.

updatedAt
String

The UTC time when the Event Hubs Cluster was last updated.

metricId
String

The metric ID of the cluster resource. Provided by the service and not modifiable by the user.

status
String

Status of the Cluster resource

supportsScaling
Nullable<Boolean>

A value that indicates whether Scaling is Supported.

Applies to