Show / Hide Table of Contents

Class JobState

Inheritance
System.Object
InputArgs
ResourceArgs
JobState
Inherited Members
ResourceArgs.Empty
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Pulumi.Azure.StreamAnalytics
Assembly: Pulumi.Azure.dll
Syntax
public sealed class JobState : ResourceArgs

Constructors

View Source

JobState()

Declaration
public JobState()

Properties

View Source

CompatibilityLevel

Specifies the compatibility level for this job - which controls certain runtime behaviours of the streaming job. Possible values are 1.0 and 1.1.

Declaration
public Input<string> CompatibilityLevel { get; set; }
Property Value
Type Description
Input<System.String>
View Source

DataLocale

Specifies the Data Locale of the Job, which should be a supported .NET Culture.

Declaration
public Input<string> DataLocale { get; set; }
Property Value
Type Description
Input<System.String>
View Source

EventsLateArrivalMaxDelayInSeconds

Specifies the maximum tolerable delay in seconds where events arriving late could be included. Supported range is -1 (indefinite) to 1814399 (20d 23h 59m 59s). Default is 0.

Declaration
public Input<int> EventsLateArrivalMaxDelayInSeconds { get; set; }
Property Value
Type Description
Input<System.Int32>
View Source

EventsOutOfOrderMaxDelayInSeconds

Specifies the maximum tolerable delay in seconds where out-of-order events can be adjusted to be back in order. Supported range is 0 to 599 (9m 59s). Default is 5.

Declaration
public Input<int> EventsOutOfOrderMaxDelayInSeconds { get; set; }
Property Value
Type Description
Input<System.Int32>
View Source

EventsOutOfOrderPolicy

Specifies the policy which should be applied to events which arrive out of order in the input event stream. Possible values are Adjust and Drop. Default is Adjust.

Declaration
public Input<string> EventsOutOfOrderPolicy { get; set; }
Property Value
Type Description
Input<System.String>
View Source

JobId

The Job ID assigned by the Stream Analytics Job.

Declaration
public Input<string> JobId { get; set; }
Property Value
Type Description
Input<System.String>
View Source

Location

The Azure Region in which the Resource Group exists. Changing this forces a new resource to be created.

Declaration
public Input<string> Location { get; set; }
Property Value
Type Description
Input<System.String>
View Source

Name

The name of the Stream Analytics Job. Changing this forces a new resource to be created.

Declaration
public Input<string> Name { get; set; }
Property Value
Type Description
Input<System.String>
View Source

OutputErrorPolicy

Specifies the policy which should be applied to events which arrive at the output and cannot be written to the external storage due to being malformed (such as missing column values, column values of wrong type or size). Possible values are Drop and Stop. Default is Drop.

Declaration
public Input<string> OutputErrorPolicy { get; set; }
Property Value
Type Description
Input<System.String>
View Source

ResourceGroupName

The name of the Resource Group where the Stream Analytics Job should exist. Changing this forces a new resource to be created.

Declaration
public Input<string> ResourceGroupName { get; set; }
Property Value
Type Description
Input<System.String>
View Source

StreamingUnits

Specifies the number of streaming units that the streaming job uses. Supported values are 1, 3, 6 and multiples of 6 up to 120.

Declaration
public Input<int> StreamingUnits { get; set; }
Property Value
Type Description
Input<System.Int32>
View Source

Tags

A mapping of tags assigned to the resource.

Declaration
public InputMap<string> Tags { get; set; }
Property Value
Type Description
InputMap<System.String>
View Source

TransformationQuery

Specifies the query that will be run in the streaming job, written in Stream Analytics Query Language (SAQL).

Declaration
public Input<string> TransformationQuery { get; set; }
Property Value
Type Description
Input<System.String>
  • View Source
Back to top Copyright 2016-2020, Pulumi Corporation.