Package version:

The properties associated with a Stream Analytics cluster.

interface ClusterProperties {
    capacityAllocated?: number;
    capacityAssigned?: number;
    clusterId?: string;
    createdDate?: Date;
    provisioningState?: string;
}

Properties

capacityAllocated?: number

Represents the number of streaming units currently being used on the cluster. NOTE: This property will not be serialized. It can only be populated by the server.

capacityAssigned?: number

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. NOTE: This property will not be serialized. It can only be populated by the server.

clusterId?: string

Unique identifier for the cluster. NOTE: This property will not be serialized. It can only be populated by the server.

createdDate?: Date

The date this cluster was created. NOTE: This property will not be serialized. It can only be populated by the server.

provisioningState?: string

The status of the cluster provisioning. The three terminal states are: Succeeded, Failed and Canceled NOTE: This property will not be serialized. It can only be populated by the server.

Generated using TypeDoc