GetStreamingJobResult

data class GetStreamingJobResult(val azureApiVersion: String, val cluster: ClusterInfoResponse? = null, val compatibilityLevel: String? = null, val contentStoragePolicy: String? = null, val createdDate: String, val dataLocale: String? = null, val etag: String, val eventsLateArrivalMaxDelayInSeconds: Int? = null, val eventsOutOfOrderMaxDelayInSeconds: Int? = null, val eventsOutOfOrderPolicy: String? = null, val functions: List<FunctionResponse>? = null, val id: String, val identity: IdentityResponse? = null, val inputs: List<InputResponse>? = null, val jobId: String, val jobState: String, val jobStorageAccount: JobStorageAccountResponse? = null, val jobType: String? = null, val lastOutputEventTime: String, val location: String? = null, val name: String, val outputErrorPolicy: String? = null, val outputStartMode: String? = null, val outputStartTime: String? = null, val outputs: List<OutputResponse>? = null, val provisioningState: String, val sku: SkuResponse? = null, val tags: Map<String, String>? = null, val transformation: TransformationResponse? = null, val type: String)

A streaming job object, containing all information associated with the named streaming job.

Constructors

Link copied to clipboard
constructor(azureApiVersion: String, cluster: ClusterInfoResponse? = null, compatibilityLevel: String? = null, contentStoragePolicy: String? = null, createdDate: String, dataLocale: String? = null, etag: String, eventsLateArrivalMaxDelayInSeconds: Int? = null, eventsOutOfOrderMaxDelayInSeconds: Int? = null, eventsOutOfOrderPolicy: String? = null, functions: List<FunctionResponse>? = null, id: String, identity: IdentityResponse? = null, inputs: List<InputResponse>? = null, jobId: String, jobState: String, jobStorageAccount: JobStorageAccountResponse? = null, jobType: String? = null, lastOutputEventTime: String, location: String? = null, name: String, outputErrorPolicy: String? = null, outputStartMode: String? = null, outputStartTime: String? = null, outputs: List<OutputResponse>? = null, provisioningState: String, sku: SkuResponse? = null, tags: Map<String, String>? = null, transformation: TransformationResponse? = null, type: String)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

The Azure API version of the resource.

Link copied to clipboard

The cluster which streaming jobs will run on.

Link copied to clipboard

Controls certain runtime behaviors of the streaming job.

Link copied to clipboard

Valid values are JobStorageAccount and SystemAccount. If set to JobStorageAccount, this requires the user to also specify jobStorageAccount property. .

Link copied to clipboard

Value is an ISO-8601 formatted UTC timestamp indicating when the streaming job was created.

Link copied to clipboard
val dataLocale: String? = null

The data locale of the stream analytics job. Value should be the name of a supported .NET Culture from the set https://msdn.microsoft.com/en-us/library/system.globalization.culturetypes(v=vs.110).aspx. Defaults to 'en-US' if none specified.

Link copied to clipboard

The current entity tag for the streaming job. This is an opaque string. You can use it to detect whether the resource has changed between requests. You can also use it in the If-Match or If-None-Match headers for write operations for optimistic concurrency.

Link copied to clipboard

The maximum tolerable delay in seconds where events arriving late could be included. Supported range is -1 to 1814399 (20.23:59:59 days) and -1 is used to specify wait indefinitely. If the property is absent, it is interpreted to have a value of -1.

Link copied to clipboard

The maximum tolerable delay in seconds where out-of-order events can be adjusted to be back in order.

Link copied to clipboard

Indicates the policy to apply to events that arrive out of order in the input event stream.

Link copied to clipboard

A list of one or more functions for the streaming job. The name property for each function is required when specifying this property in a PUT request. This property cannot be modify via a PATCH operation. You must use the PATCH API available for the individual transformation.

Link copied to clipboard
val id: String

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

Link copied to clipboard

Describes the system-assigned managed identity assigned to this job that can be used to authenticate with inputs and outputs.

Link copied to clipboard
val inputs: List<InputResponse>? = null

A list of one or more inputs to the streaming job. The name property for each input is required when specifying this property in a PUT request. This property cannot be modify via a PATCH operation. You must use the PATCH API available for the individual input.

Link copied to clipboard

A GUID uniquely identifying the streaming job. This GUID is generated upon creation of the streaming job.

Link copied to clipboard

Describes the state of the streaming job.

Link copied to clipboard

The properties that are associated with an Azure Storage account with MSI

Link copied to clipboard
val jobType: String? = null

Describes the type of the job. Valid modes are Cloud and 'Edge'.

Link copied to clipboard

Value is either an ISO-8601 formatted timestamp indicating the last output event time of the streaming job or null indicating that output has not yet been produced. In case of multiple outputs or multiple streams, this shows the latest value in that set.

Link copied to clipboard
val location: String? = null

The geo-location where the resource lives

Link copied to clipboard

The name of the resource

Link copied to clipboard

Indicates the policy to apply to events that arrive at the output and cannot be written to the external storage due to being malformed (missing column values, column values of wrong type or size).

Link copied to clipboard

A list of one or more outputs for the streaming job. The name property for each output is required when specifying this property in a PUT request. This property cannot be modify via a PATCH operation. You must use the PATCH API available for the individual output.

Link copied to clipboard
val outputStartMode: String? = null

This property should only be utilized when it is desired that the job be started immediately upon creation. Value may be JobStartTime, CustomTime, or LastOutputEventTime to indicate whether the starting point of the output event stream should start whenever the job is started, start at a custom user time stamp specified via the outputStartTime property, or start from the last event output time.

Link copied to clipboard
val outputStartTime: String? = null

Value is either an ISO-8601 formatted time stamp that indicates the starting point of the output event stream, or null to indicate that the output event stream will start whenever the streaming job is started. This property must have a value if outputStartMode is set to CustomTime.

Link copied to clipboard

Describes the provisioning status of the streaming job.

Link copied to clipboard
val sku: SkuResponse? = null

Describes the SKU of the streaming job. Required on PUT (CreateOrReplace) requests.

Link copied to clipboard
val tags: Map<String, String>? = null

Resource tags.

Link copied to clipboard

Indicates the query and the number of streaming units to use for the streaming job. The name property of the transformation is required when specifying this property in a PUT request. This property cannot be modify via a PATCH operation. You must use the PATCH API available for the individual transformation.

Link copied to clipboard

The type of the resource. Ex- Microsoft.Compute/virtualMachines or Microsoft.Storage/storageAccounts.