ArmStreamAnalyticsModelFactory.StreamAnalyticsClusterProperties Method

Definition

Initializes a new instance of StreamAnalyticsClusterProperties.

public static Azure.ResourceManager.StreamAnalytics.Models.StreamAnalyticsClusterProperties StreamAnalyticsClusterProperties (DateTimeOffset? createdOn = default, Guid? clusterId = default, Azure.ResourceManager.StreamAnalytics.Models.StreamAnalyticsClusterProvisioningState? provisioningState = default, int? capacityAllocated = default, int? capacityAssigned = default);
static member StreamAnalyticsClusterProperties : Nullable<DateTimeOffset> * Nullable<Guid> * Nullable<Azure.ResourceManager.StreamAnalytics.Models.StreamAnalyticsClusterProvisioningState> * Nullable<int> * Nullable<int> -> Azure.ResourceManager.StreamAnalytics.Models.StreamAnalyticsClusterProperties
Public Shared Function StreamAnalyticsClusterProperties (Optional createdOn As Nullable(Of DateTimeOffset) = Nothing, Optional clusterId As Nullable(Of Guid) = Nothing, Optional provisioningState As Nullable(Of StreamAnalyticsClusterProvisioningState) = Nothing, Optional capacityAllocated As Nullable(Of Integer) = Nothing, Optional capacityAssigned As Nullable(Of Integer) = Nothing) As StreamAnalyticsClusterProperties

Parameters

createdOn
Nullable<DateTimeOffset>

The date this cluster was created.

clusterId
Nullable<Guid>

Unique identifier for the cluster.

provisioningState
Nullable<StreamAnalyticsClusterProvisioningState>

The status of the cluster provisioning. The three terminal states are: Succeeded, Failed and Canceled.

capacityAllocated
Nullable<Int32>

Represents the number of streaming units currently being used on the cluster.

capacityAssigned
Nullable<Int32>

Represents the sum of the SUs of all streaming jobs associated with the cluster. If all of the jobs were running, this would be the capacity allocated.

Returns

A new StreamAnalyticsClusterProperties instance for mocking.

Applies to