Class JobArgs
Inherited Members
Namespace: Pulumi.Azure.StreamAnalytics
Assembly: Pulumi.Azure.dll
Syntax
public sealed class JobArgs : ResourceArgs
Constructors
View SourceJobArgs()
Declaration
public JobArgs()
Properties
View SourceCompatibilityLevel
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> |
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> |
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> |
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> |
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> |
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> |
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> |
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> |
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> |
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> |
Tags
A mapping of tags assigned to the resource.
Declaration
public InputMap<string> Tags { get; set; }
Property Value
| Type | Description |
|---|---|
| InputMap<System.String> |
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> |