azure-native.streamanalytics.StreamingJob
Explore with Pulumi AI
A streaming job object, containing all information associated with the named streaming job. Azure REST API version: 2020-03-01. Prior API version in Azure Native 1.x: 2016-03-01.
Other available API versions: 2017-04-01-preview, 2021-10-01-preview.
Example Usage
Create a complete streaming job (a streaming job with a transformation, at least 1 input and at least 1 output)
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var streamingJob = new AzureNative.StreamAnalytics.StreamingJob("streamingJob", new()
{
CompatibilityLevel = AzureNative.StreamAnalytics.CompatibilityLevel.CompatibilityLevel_1_0,
DataLocale = "en-US",
EventsLateArrivalMaxDelayInSeconds = 5,
EventsOutOfOrderMaxDelayInSeconds = 0,
EventsOutOfOrderPolicy = AzureNative.StreamAnalytics.EventsOutOfOrderPolicy.Drop,
Functions = new[] {},
Inputs = new[]
{
new AzureNative.StreamAnalytics.Inputs.InputArgs
{
Name = "inputtest",
Properties = new AzureNative.StreamAnalytics.Inputs.StreamInputPropertiesArgs
{
Datasource = new AzureNative.StreamAnalytics.Inputs.BlobStreamInputDataSourceArgs
{
Container = "containerName",
PathPattern = "",
StorageAccounts = new[]
{
new AzureNative.StreamAnalytics.Inputs.StorageAccountArgs
{
AccountKey = "yourAccountKey==",
AccountName = "yourAccountName",
},
},
Type = "Microsoft.Storage/Blob",
},
Serialization = new AzureNative.StreamAnalytics.Inputs.JsonSerializationArgs
{
Encoding = AzureNative.StreamAnalytics.Encoding.UTF8,
Type = "Json",
},
Type = "Stream",
},
},
},
JobName = "sj7804",
Location = "West US",
OutputErrorPolicy = AzureNative.StreamAnalytics.OutputErrorPolicy.Drop,
Outputs = new[]
{
new AzureNative.StreamAnalytics.Inputs.OutputArgs
{
Datasource = new AzureNative.StreamAnalytics.Inputs.AzureSqlDatabaseOutputDataSourceArgs
{
Database = "databaseName",
Password = "userPassword",
Server = "serverName",
Table = "tableName",
Type = "Microsoft.Sql/Server/Database",
User = "<user>",
},
Name = "outputtest",
},
},
ResourceGroupName = "sjrg3276",
Sku = new AzureNative.StreamAnalytics.Inputs.SkuArgs
{
Name = AzureNative.StreamAnalytics.SkuName.Standard,
},
Tags =
{
{ "key1", "value1" },
{ "key3", "value3" },
{ "randomKey", "randomValue" },
},
Transformation = new AzureNative.StreamAnalytics.Inputs.TransformationArgs
{
Name = "transformationtest",
Query = "Select Id, Name from inputtest",
StreamingUnits = 1,
},
});
});
package main
import (
streamanalytics "github.com/pulumi/pulumi-azure-native-sdk/streamanalytics/v2"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := streamanalytics.NewStreamingJob(ctx, "streamingJob", &streamanalytics.StreamingJobArgs{
CompatibilityLevel: pulumi.String(streamanalytics.CompatibilityLevel_1_0),
DataLocale: pulumi.String("en-US"),
EventsLateArrivalMaxDelayInSeconds: pulumi.Int(5),
EventsOutOfOrderMaxDelayInSeconds: pulumi.Int(0),
EventsOutOfOrderPolicy: pulumi.String(streamanalytics.EventsOutOfOrderPolicyDrop),
Functions: streamanalytics.FunctionTypeArray{},
Inputs: streamanalytics.InputTypeArray{
&streamanalytics.InputTypeArgs{
Name: pulumi.String("inputtest"),
Properties: streamanalytics.StreamInputProperties{
Datasource: streamanalytics.BlobStreamInputDataSource{
Container: "containerName",
PathPattern: "",
StorageAccounts: []streamanalytics.StorageAccount{
{
AccountKey: "yourAccountKey==",
AccountName: "yourAccountName",
},
},
Type: "Microsoft.Storage/Blob",
},
Serialization: streamanalytics.JsonSerialization{
Encoding: streamanalytics.EncodingUTF8,
Type: "Json",
},
Type: "Stream",
},
},
},
JobName: pulumi.String("sj7804"),
Location: pulumi.String("West US"),
OutputErrorPolicy: pulumi.String(streamanalytics.OutputErrorPolicyDrop),
Outputs: streamanalytics.OutputTypeArray{
&streamanalytics.OutputTypeArgs{
Datasource: streamanalytics.AzureSqlDatabaseOutputDataSource{
Database: "databaseName",
Password: "userPassword",
Server: "serverName",
Table: "tableName",
Type: "Microsoft.Sql/Server/Database",
User: "<user>",
},
Name: pulumi.String("outputtest"),
},
},
ResourceGroupName: pulumi.String("sjrg3276"),
Sku: &streamanalytics.SkuArgs{
Name: pulumi.String(streamanalytics.SkuNameStandard),
},
Tags: pulumi.StringMap{
"key1": pulumi.String("value1"),
"key3": pulumi.String("value3"),
"randomKey": pulumi.String("randomValue"),
},
Transformation: &streamanalytics.TransformationArgs{
Name: pulumi.String("transformationtest"),
Query: pulumi.String("Select Id, Name from inputtest"),
StreamingUnits: pulumi.Int(1),
},
})
if err != nil {
return err
}
return nil
})
}
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.streamanalytics.StreamingJob;
import com.pulumi.azurenative.streamanalytics.StreamingJobArgs;
import com.pulumi.azurenative.streamanalytics.inputs.InputArgs;
import com.pulumi.azurenative.streamanalytics.inputs.OutputArgs;
import com.pulumi.azurenative.streamanalytics.inputs.SkuArgs;
import com.pulumi.azurenative.streamanalytics.inputs.TransformationArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var streamingJob = new StreamingJob("streamingJob", StreamingJobArgs.builder()
.compatibilityLevel("1.0")
.dataLocale("en-US")
.eventsLateArrivalMaxDelayInSeconds(5)
.eventsOutOfOrderMaxDelayInSeconds(0)
.eventsOutOfOrderPolicy("Drop")
.functions()
.inputs(InputArgs.builder()
.name("inputtest")
.properties(StreamInputPropertiesArgs.builder()
.datasource(BlobStreamInputDataSourceArgs.builder()
.container("containerName")
.pathPattern("")
.storageAccounts(StorageAccountArgs.builder()
.accountKey("yourAccountKey==")
.accountName("yourAccountName")
.build())
.type("Microsoft.Storage/Blob")
.build())
.serialization(JsonSerializationArgs.builder()
.encoding("UTF8")
.type("Json")
.build())
.type("Stream")
.build())
.build())
.jobName("sj7804")
.location("West US")
.outputErrorPolicy("Drop")
.outputs(OutputArgs.builder()
.datasource(AzureDataLakeStoreOutputDataSourceArgs.builder()
.database("databaseName")
.password("userPassword")
.server("serverName")
.table("tableName")
.type("Microsoft.Sql/Server/Database")
.user("<user>")
.build())
.name("outputtest")
.build())
.resourceGroupName("sjrg3276")
.sku(SkuArgs.builder()
.name("Standard")
.build())
.tags(Map.ofEntries(
Map.entry("key1", "value1"),
Map.entry("key3", "value3"),
Map.entry("randomKey", "randomValue")
))
.transformation(TransformationArgs.builder()
.name("transformationtest")
.query("Select Id, Name from inputtest")
.streamingUnits(1)
.build())
.build());
}
}
import pulumi
import pulumi_azure_native as azure_native
streaming_job = azure_native.streamanalytics.StreamingJob("streamingJob",
compatibility_level=azure_native.streamanalytics.CompatibilityLevel.COMPATIBILITY_LEVEL_1_0,
data_locale="en-US",
events_late_arrival_max_delay_in_seconds=5,
events_out_of_order_max_delay_in_seconds=0,
events_out_of_order_policy=azure_native.streamanalytics.EventsOutOfOrderPolicy.DROP,
functions=[],
inputs=[azure_native.streamanalytics.InputArgs(
name="inputtest",
properties=azure_native.streamanalytics.StreamInputPropertiesArgs(
datasource=azure_native.streamanalytics.BlobStreamInputDataSourceArgs(
container="containerName",
path_pattern="",
storage_accounts=[azure_native.streamanalytics.StorageAccountArgs(
account_key="yourAccountKey==",
account_name="yourAccountName",
)],
type="Microsoft.Storage/Blob",
),
serialization=azure_native.streamanalytics.JsonSerializationArgs(
encoding=azure_native.streamanalytics.Encoding.UTF8,
type="Json",
),
type="Stream",
),
)],
job_name="sj7804",
location="West US",
output_error_policy=azure_native.streamanalytics.OutputErrorPolicy.DROP,
outputs=[azure_native.streamanalytics.OutputArgs(
datasource=azure_native.streamanalytics.AzureSqlDatabaseOutputDataSourceArgs(
database="databaseName",
password="userPassword",
server="serverName",
table="tableName",
type="Microsoft.Sql/Server/Database",
user="<user>",
),
name="outputtest",
)],
resource_group_name="sjrg3276",
sku=azure_native.streamanalytics.SkuArgs(
name=azure_native.streamanalytics.SkuName.STANDARD,
),
tags={
"key1": "value1",
"key3": "value3",
"randomKey": "randomValue",
},
transformation=azure_native.streamanalytics.TransformationArgs(
name="transformationtest",
query="Select Id, Name from inputtest",
streaming_units=1,
))
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const streamingJob = new azure_native.streamanalytics.StreamingJob("streamingJob", {
compatibilityLevel: azure_native.streamanalytics.CompatibilityLevel.CompatibilityLevel_1_0,
dataLocale: "en-US",
eventsLateArrivalMaxDelayInSeconds: 5,
eventsOutOfOrderMaxDelayInSeconds: 0,
eventsOutOfOrderPolicy: azure_native.streamanalytics.EventsOutOfOrderPolicy.Drop,
functions: [],
inputs: [{
name: "inputtest",
properties: {
datasource: {
container: "containerName",
pathPattern: "",
storageAccounts: [{
accountKey: "yourAccountKey==",
accountName: "yourAccountName",
}],
type: "Microsoft.Storage/Blob",
},
serialization: {
encoding: azure_native.streamanalytics.Encoding.UTF8,
type: "Json",
},
type: "Stream",
},
}],
jobName: "sj7804",
location: "West US",
outputErrorPolicy: azure_native.streamanalytics.OutputErrorPolicy.Drop,
outputs: [{
datasource: {
database: "databaseName",
password: "userPassword",
server: "serverName",
table: "tableName",
type: "Microsoft.Sql/Server/Database",
user: "<user>",
},
name: "outputtest",
}],
resourceGroupName: "sjrg3276",
sku: {
name: azure_native.streamanalytics.SkuName.Standard,
},
tags: {
key1: "value1",
key3: "value3",
randomKey: "randomValue",
},
transformation: {
name: "transformationtest",
query: "Select Id, Name from inputtest",
streamingUnits: 1,
},
});
resources:
streamingJob:
type: azure-native:streamanalytics:StreamingJob
properties:
compatibilityLevel: '1.0'
dataLocale: en-US
eventsLateArrivalMaxDelayInSeconds: 5
eventsOutOfOrderMaxDelayInSeconds: 0
eventsOutOfOrderPolicy: Drop
functions: []
inputs:
- name: inputtest
properties:
datasource:
container: containerName
pathPattern:
storageAccounts:
- accountKey: yourAccountKey==
accountName: yourAccountName
type: Microsoft.Storage/Blob
serialization:
encoding: UTF8
type: Json
type: Stream
jobName: sj7804
location: West US
outputErrorPolicy: Drop
outputs:
- datasource:
database: databaseName
password: userPassword
server: serverName
table: tableName
type: Microsoft.Sql/Server/Database
user: <user>
name: outputtest
resourceGroupName: sjrg3276
sku:
name: Standard
tags:
key1: value1
key3: value3
randomKey: randomValue
transformation:
name: transformationtest
query: Select Id, Name from inputtest
streamingUnits: 1
Create a streaming job shell (a streaming job with no inputs, outputs, transformation, or functions)
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var streamingJob = new AzureNative.StreamAnalytics.StreamingJob("streamingJob", new()
{
CompatibilityLevel = AzureNative.StreamAnalytics.CompatibilityLevel.CompatibilityLevel_1_0,
DataLocale = "en-US",
EventsLateArrivalMaxDelayInSeconds = 16,
EventsOutOfOrderMaxDelayInSeconds = 5,
EventsOutOfOrderPolicy = AzureNative.StreamAnalytics.EventsOutOfOrderPolicy.Drop,
Functions = new[] {},
Inputs = new[] {},
JobName = "sj59",
Location = "West US",
OutputErrorPolicy = AzureNative.StreamAnalytics.OutputErrorPolicy.Drop,
Outputs = new[] {},
ResourceGroupName = "sjrg6936",
Sku = new AzureNative.StreamAnalytics.Inputs.SkuArgs
{
Name = AzureNative.StreamAnalytics.SkuName.Standard,
},
Tags =
{
{ "key1", "value1" },
{ "key3", "value3" },
{ "randomKey", "randomValue" },
},
});
});
package main
import (
streamanalytics "github.com/pulumi/pulumi-azure-native-sdk/streamanalytics/v2"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := streamanalytics.NewStreamingJob(ctx, "streamingJob", &streamanalytics.StreamingJobArgs{
CompatibilityLevel: pulumi.String(streamanalytics.CompatibilityLevel_1_0),
DataLocale: pulumi.String("en-US"),
EventsLateArrivalMaxDelayInSeconds: pulumi.Int(16),
EventsOutOfOrderMaxDelayInSeconds: pulumi.Int(5),
EventsOutOfOrderPolicy: pulumi.String(streamanalytics.EventsOutOfOrderPolicyDrop),
Functions: streamanalytics.FunctionTypeArray{},
Inputs: streamanalytics.InputTypeArray{},
JobName: pulumi.String("sj59"),
Location: pulumi.String("West US"),
OutputErrorPolicy: pulumi.String(streamanalytics.OutputErrorPolicyDrop),
Outputs: streamanalytics.OutputTypeArray{},
ResourceGroupName: pulumi.String("sjrg6936"),
Sku: &streamanalytics.SkuArgs{
Name: pulumi.String(streamanalytics.SkuNameStandard),
},
Tags: pulumi.StringMap{
"key1": pulumi.String("value1"),
"key3": pulumi.String("value3"),
"randomKey": pulumi.String("randomValue"),
},
})
if err != nil {
return err
}
return nil
})
}
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.streamanalytics.StreamingJob;
import com.pulumi.azurenative.streamanalytics.StreamingJobArgs;
import com.pulumi.azurenative.streamanalytics.inputs.SkuArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var streamingJob = new StreamingJob("streamingJob", StreamingJobArgs.builder()
.compatibilityLevel("1.0")
.dataLocale("en-US")
.eventsLateArrivalMaxDelayInSeconds(16)
.eventsOutOfOrderMaxDelayInSeconds(5)
.eventsOutOfOrderPolicy("Drop")
.functions()
.inputs()
.jobName("sj59")
.location("West US")
.outputErrorPolicy("Drop")
.outputs()
.resourceGroupName("sjrg6936")
.sku(SkuArgs.builder()
.name("Standard")
.build())
.tags(Map.ofEntries(
Map.entry("key1", "value1"),
Map.entry("key3", "value3"),
Map.entry("randomKey", "randomValue")
))
.build());
}
}
import pulumi
import pulumi_azure_native as azure_native
streaming_job = azure_native.streamanalytics.StreamingJob("streamingJob",
compatibility_level=azure_native.streamanalytics.CompatibilityLevel.COMPATIBILITY_LEVEL_1_0,
data_locale="en-US",
events_late_arrival_max_delay_in_seconds=16,
events_out_of_order_max_delay_in_seconds=5,
events_out_of_order_policy=azure_native.streamanalytics.EventsOutOfOrderPolicy.DROP,
functions=[],
inputs=[],
job_name="sj59",
location="West US",
output_error_policy=azure_native.streamanalytics.OutputErrorPolicy.DROP,
outputs=[],
resource_group_name="sjrg6936",
sku=azure_native.streamanalytics.SkuArgs(
name=azure_native.streamanalytics.SkuName.STANDARD,
),
tags={
"key1": "value1",
"key3": "value3",
"randomKey": "randomValue",
})
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const streamingJob = new azure_native.streamanalytics.StreamingJob("streamingJob", {
compatibilityLevel: azure_native.streamanalytics.CompatibilityLevel.CompatibilityLevel_1_0,
dataLocale: "en-US",
eventsLateArrivalMaxDelayInSeconds: 16,
eventsOutOfOrderMaxDelayInSeconds: 5,
eventsOutOfOrderPolicy: azure_native.streamanalytics.EventsOutOfOrderPolicy.Drop,
functions: [],
inputs: [],
jobName: "sj59",
location: "West US",
outputErrorPolicy: azure_native.streamanalytics.OutputErrorPolicy.Drop,
outputs: [],
resourceGroupName: "sjrg6936",
sku: {
name: azure_native.streamanalytics.SkuName.Standard,
},
tags: {
key1: "value1",
key3: "value3",
randomKey: "randomValue",
},
});
resources:
streamingJob:
type: azure-native:streamanalytics:StreamingJob
properties:
compatibilityLevel: '1.0'
dataLocale: en-US
eventsLateArrivalMaxDelayInSeconds: 16
eventsOutOfOrderMaxDelayInSeconds: 5
eventsOutOfOrderPolicy: Drop
functions: []
inputs: []
jobName: sj59
location: West US
outputErrorPolicy: Drop
outputs: []
resourceGroupName: sjrg6936
sku:
name: Standard
tags:
key1: value1
key3: value3
randomKey: randomValue
Create StreamingJob Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new StreamingJob(name: string, args: StreamingJobArgs, opts?: CustomResourceOptions);
@overload
def StreamingJob(resource_name: str,
args: StreamingJobArgs,
opts: Optional[ResourceOptions] = None)
@overload
def StreamingJob(resource_name: str,
opts: Optional[ResourceOptions] = None,
resource_group_name: Optional[str] = None,
job_name: Optional[str] = None,
events_out_of_order_max_delay_in_seconds: Optional[int] = None,
job_storage_account: Optional[JobStorageAccountArgs] = None,
location: Optional[str] = None,
job_type: Optional[Union[str, JobType]] = None,
events_out_of_order_policy: Optional[Union[str, EventsOutOfOrderPolicy]] = None,
functions: Optional[Sequence[FunctionArgs]] = None,
identity: Optional[IdentityArgs] = None,
inputs: Optional[Sequence[InputArgs]] = None,
cluster: Optional[ClusterInfoArgs] = None,
data_locale: Optional[str] = None,
content_storage_policy: Optional[Union[str, ContentStoragePolicy]] = None,
events_late_arrival_max_delay_in_seconds: Optional[int] = None,
output_error_policy: Optional[Union[str, OutputErrorPolicy]] = None,
output_start_mode: Optional[Union[str, OutputStartMode]] = None,
output_start_time: Optional[str] = None,
outputs: Optional[Sequence[OutputArgs]] = None,
compatibility_level: Optional[Union[str, CompatibilityLevel]] = None,
sku: Optional[SkuArgs] = None,
tags: Optional[Mapping[str, str]] = None,
transformation: Optional[TransformationArgs] = None)
func NewStreamingJob(ctx *Context, name string, args StreamingJobArgs, opts ...ResourceOption) (*StreamingJob, error)
public StreamingJob(string name, StreamingJobArgs args, CustomResourceOptions? opts = null)
public StreamingJob(String name, StreamingJobArgs args)
public StreamingJob(String name, StreamingJobArgs args, CustomResourceOptions options)
type: azure-native:streamanalytics:StreamingJob
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args StreamingJobArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args StreamingJobArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args StreamingJobArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args StreamingJobArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args StreamingJobArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var streamingJobResource = new AzureNative.StreamAnalytics.StreamingJob("streamingJobResource", new()
{
ResourceGroupName = "string",
JobName = "string",
EventsOutOfOrderMaxDelayInSeconds = 0,
JobStorageAccount = new AzureNative.StreamAnalytics.Inputs.JobStorageAccountArgs
{
AccountKey = "string",
AccountName = "string",
AuthenticationMode = "string",
},
Location = "string",
JobType = "string",
EventsOutOfOrderPolicy = "string",
Functions = new[]
{
new AzureNative.StreamAnalytics.Inputs.FunctionArgs
{
Name = "string",
Properties = new AzureNative.StreamAnalytics.Inputs.AggregateFunctionPropertiesArgs
{
Type = "Aggregate",
Binding = new AzureNative.StreamAnalytics.Inputs.AzureMachineLearningWebServiceFunctionBindingArgs
{
Type = "Microsoft.MachineLearning/WebService",
ApiKey = "string",
BatchSize = 0,
Endpoint = "string",
Inputs = new AzureNative.StreamAnalytics.Inputs.AzureMachineLearningWebServiceInputsArgs
{
ColumnNames = new[]
{
new AzureNative.StreamAnalytics.Inputs.AzureMachineLearningWebServiceInputColumnArgs
{
DataType = "string",
MapTo = 0,
Name = "string",
},
},
Name = "string",
},
Outputs = new[]
{
new AzureNative.StreamAnalytics.Inputs.AzureMachineLearningWebServiceOutputColumnArgs
{
DataType = "string",
Name = "string",
},
},
},
Inputs = new[]
{
new AzureNative.StreamAnalytics.Inputs.FunctionInputArgs
{
DataType = "string",
IsConfigurationParameter = false,
},
},
Output = new AzureNative.StreamAnalytics.Inputs.FunctionOutputArgs
{
DataType = "string",
},
},
},
},
Identity = new AzureNative.StreamAnalytics.Inputs.IdentityArgs
{
Type = "string",
},
Inputs = new[]
{
new AzureNative.StreamAnalytics.Inputs.InputArgs
{
Name = "string",
Properties = new AzureNative.StreamAnalytics.Inputs.ReferenceInputPropertiesArgs
{
Type = "Reference",
Compression = new AzureNative.StreamAnalytics.Inputs.CompressionArgs
{
Type = "string",
},
Datasource = new AzureNative.StreamAnalytics.Inputs.AzureSqlReferenceInputDataSourceArgs
{
Type = "Microsoft.Sql/Server/Database",
Database = "string",
DeltaSnapshotQuery = "string",
FullSnapshotQuery = "string",
Password = "string",
RefreshRate = "string",
RefreshType = "string",
Server = "string",
Table = "string",
User = "string",
},
PartitionKey = "string",
Serialization = new AzureNative.StreamAnalytics.Inputs.AvroSerializationArgs
{
Type = "Avro",
},
},
},
},
Cluster = new AzureNative.StreamAnalytics.Inputs.ClusterInfoArgs
{
Id = "string",
},
DataLocale = "string",
ContentStoragePolicy = "string",
EventsLateArrivalMaxDelayInSeconds = 0,
OutputErrorPolicy = "string",
OutputStartMode = "string",
OutputStartTime = "string",
Outputs = new[]
{
new AzureNative.StreamAnalytics.Inputs.OutputArgs
{
Datasource = new AzureNative.StreamAnalytics.Inputs.AzureDataLakeStoreOutputDataSourceArgs
{
Type = "Microsoft.DataLake/Accounts",
AccountName = "string",
AuthenticationMode = "string",
DateFormat = "string",
FilePathPrefix = "string",
RefreshToken = "string",
TenantId = "string",
TimeFormat = "string",
TokenUserDisplayName = "string",
TokenUserPrincipalName = "string",
},
Name = "string",
Serialization = new AzureNative.StreamAnalytics.Inputs.AvroSerializationArgs
{
Type = "Avro",
},
SizeWindow = 0,
TimeWindow = "string",
},
},
CompatibilityLevel = "string",
Sku = new AzureNative.StreamAnalytics.Inputs.SkuArgs
{
Name = "string",
},
Tags =
{
{ "string", "string" },
},
Transformation = new AzureNative.StreamAnalytics.Inputs.TransformationArgs
{
Name = "string",
Query = "string",
StreamingUnits = 0,
ValidStreamingUnits = new[]
{
0,
},
},
});
example, err := streamanalytics.NewStreamingJob(ctx, "streamingJobResource", &streamanalytics.StreamingJobArgs{
ResourceGroupName: pulumi.String("string"),
JobName: pulumi.String("string"),
EventsOutOfOrderMaxDelayInSeconds: pulumi.Int(0),
JobStorageAccount: &streamanalytics.JobStorageAccountArgs{
AccountKey: pulumi.String("string"),
AccountName: pulumi.String("string"),
AuthenticationMode: pulumi.String("string"),
},
Location: pulumi.String("string"),
JobType: pulumi.String("string"),
EventsOutOfOrderPolicy: pulumi.String("string"),
Functions: streamanalytics.FunctionTypeArray{
&streamanalytics.FunctionTypeArgs{
Name: pulumi.String("string"),
Properties: streamanalytics.AggregateFunctionProperties{
Type: "Aggregate",
Binding: streamanalytics.AzureMachineLearningWebServiceFunctionBinding{
Type: "Microsoft.MachineLearning/WebService",
ApiKey: "string",
BatchSize: 0,
Endpoint: "string",
Inputs: streamanalytics.AzureMachineLearningWebServiceInputs{
ColumnNames: []streamanalytics.AzureMachineLearningWebServiceInputColumn{
{
DataType: "string",
MapTo: 0,
Name: "string",
},
},
Name: "string",
},
Outputs: []streamanalytics.AzureMachineLearningWebServiceOutputColumn{
{
DataType: "string",
Name: "string",
},
},
},
Inputs: []streamanalytics.FunctionInputType{
{
DataType: "string",
IsConfigurationParameter: false,
},
},
Output: streamanalytics.FunctionOutputType{
DataType: "string",
},
},
},
},
Identity: &streamanalytics.IdentityArgs{
Type: pulumi.String("string"),
},
Inputs: streamanalytics.InputTypeArray{
&streamanalytics.InputTypeArgs{
Name: pulumi.String("string"),
Properties: streamanalytics.ReferenceInputProperties{
Type: "Reference",
Compression: streamanalytics.Compression{
Type: "string",
},
Datasource: streamanalytics.AzureSqlReferenceInputDataSource{
Type: "Microsoft.Sql/Server/Database",
Database: "string",
DeltaSnapshotQuery: "string",
FullSnapshotQuery: "string",
Password: "string",
RefreshRate: "string",
RefreshType: "string",
Server: "string",
Table: "string",
User: "string",
},
PartitionKey: "string",
Serialization: streamanalytics.AvroSerialization{
Type: "Avro",
},
},
},
},
Cluster: &streamanalytics.ClusterInfoArgs{
Id: pulumi.String("string"),
},
DataLocale: pulumi.String("string"),
ContentStoragePolicy: pulumi.String("string"),
EventsLateArrivalMaxDelayInSeconds: pulumi.Int(0),
OutputErrorPolicy: pulumi.String("string"),
OutputStartMode: pulumi.String("string"),
OutputStartTime: pulumi.String("string"),
Outputs: streamanalytics.OutputTypeArray{
&streamanalytics.OutputTypeArgs{
Datasource: streamanalytics.AzureDataLakeStoreOutputDataSource{
Type: "Microsoft.DataLake/Accounts",
AccountName: "string",
AuthenticationMode: "string",
DateFormat: "string",
FilePathPrefix: "string",
RefreshToken: "string",
TenantId: "string",
TimeFormat: "string",
TokenUserDisplayName: "string",
TokenUserPrincipalName: "string",
},
Name: pulumi.String("string"),
Serialization: streamanalytics.AvroSerialization{
Type: "Avro",
},
SizeWindow: pulumi.Int(0),
TimeWindow: pulumi.String("string"),
},
},
CompatibilityLevel: pulumi.String("string"),
Sku: &streamanalytics.SkuArgs{
Name: pulumi.String("string"),
},
Tags: pulumi.StringMap{
"string": pulumi.String("string"),
},
Transformation: &streamanalytics.TransformationArgs{
Name: pulumi.String("string"),
Query: pulumi.String("string"),
StreamingUnits: pulumi.Int(0),
ValidStreamingUnits: pulumi.IntArray{
pulumi.Int(0),
},
},
})
var streamingJobResource = new StreamingJob("streamingJobResource", StreamingJobArgs.builder()
.resourceGroupName("string")
.jobName("string")
.eventsOutOfOrderMaxDelayInSeconds(0)
.jobStorageAccount(JobStorageAccountArgs.builder()
.accountKey("string")
.accountName("string")
.authenticationMode("string")
.build())
.location("string")
.jobType("string")
.eventsOutOfOrderPolicy("string")
.functions(FunctionArgs.builder()
.name("string")
.properties(AggregateFunctionPropertiesArgs.builder()
.type("Aggregate")
.binding(AzureMachineLearningWebServiceFunctionBindingArgs.builder()
.type("Microsoft.MachineLearning/WebService")
.apiKey("string")
.batchSize(0)
.endpoint("string")
.inputs(AzureMachineLearningWebServiceInputsArgs.builder()
.columnNames(AzureMachineLearningWebServiceInputColumnArgs.builder()
.dataType("string")
.mapTo(0)
.name("string")
.build())
.name("string")
.build())
.outputs(AzureMachineLearningWebServiceOutputColumnArgs.builder()
.dataType("string")
.name("string")
.build())
.build())
.inputs(FunctionInputArgs.builder()
.dataType("string")
.isConfigurationParameter(false)
.build())
.output(FunctionOutputArgs.builder()
.dataType("string")
.build())
.build())
.build())
.identity(IdentityArgs.builder()
.type("string")
.build())
.inputs(InputArgs.builder()
.name("string")
.properties(ReferenceInputPropertiesArgs.builder()
.type("Reference")
.compression(CompressionArgs.builder()
.type("string")
.build())
.datasource(AzureSqlReferenceInputDataSourceArgs.builder()
.type("Microsoft.Sql/Server/Database")
.database("string")
.deltaSnapshotQuery("string")
.fullSnapshotQuery("string")
.password("string")
.refreshRate("string")
.refreshType("string")
.server("string")
.table("string")
.user("string")
.build())
.partitionKey("string")
.serialization(AvroSerializationArgs.builder()
.type("Avro")
.build())
.build())
.build())
.cluster(ClusterInfoArgs.builder()
.id("string")
.build())
.dataLocale("string")
.contentStoragePolicy("string")
.eventsLateArrivalMaxDelayInSeconds(0)
.outputErrorPolicy("string")
.outputStartMode("string")
.outputStartTime("string")
.outputs(OutputArgs.builder()
.datasource(AzureDataLakeStoreOutputDataSourceArgs.builder()
.type("Microsoft.DataLake/Accounts")
.accountName("string")
.authenticationMode("string")
.dateFormat("string")
.filePathPrefix("string")
.refreshToken("string")
.tenantId("string")
.timeFormat("string")
.tokenUserDisplayName("string")
.tokenUserPrincipalName("string")
.build())
.name("string")
.serialization(AvroSerializationArgs.builder()
.type("Avro")
.build())
.sizeWindow(0)
.timeWindow("string")
.build())
.compatibilityLevel("string")
.sku(SkuArgs.builder()
.name("string")
.build())
.tags(Map.of("string", "string"))
.transformation(TransformationArgs.builder()
.name("string")
.query("string")
.streamingUnits(0)
.validStreamingUnits(0)
.build())
.build());
streaming_job_resource = azure_native.streamanalytics.StreamingJob("streamingJobResource",
resource_group_name="string",
job_name="string",
events_out_of_order_max_delay_in_seconds=0,
job_storage_account=azure_native.streamanalytics.JobStorageAccountArgs(
account_key="string",
account_name="string",
authentication_mode="string",
),
location="string",
job_type="string",
events_out_of_order_policy="string",
functions=[azure_native.streamanalytics.FunctionArgs(
name="string",
properties=azure_native.streamanalytics.AggregateFunctionPropertiesArgs(
type="Aggregate",
binding=azure_native.streamanalytics.AzureMachineLearningWebServiceFunctionBindingArgs(
type="Microsoft.MachineLearning/WebService",
api_key="string",
batch_size=0,
endpoint="string",
inputs=azure_native.streamanalytics.AzureMachineLearningWebServiceInputsArgs(
column_names=[azure_native.streamanalytics.AzureMachineLearningWebServiceInputColumnArgs(
data_type="string",
map_to=0,
name="string",
)],
name="string",
),
outputs=[azure_native.streamanalytics.AzureMachineLearningWebServiceOutputColumnArgs(
data_type="string",
name="string",
)],
),
inputs=[azure_native.streamanalytics.FunctionInputArgs(
data_type="string",
is_configuration_parameter=False,
)],
output=azure_native.streamanalytics.FunctionOutputArgs(
data_type="string",
),
),
)],
identity=azure_native.streamanalytics.IdentityArgs(
type="string",
),
inputs=[azure_native.streamanalytics.InputArgs(
name="string",
properties=azure_native.streamanalytics.ReferenceInputPropertiesArgs(
type="Reference",
compression=azure_native.streamanalytics.CompressionArgs(
type="string",
),
datasource=azure_native.streamanalytics.AzureSqlReferenceInputDataSourceArgs(
type="Microsoft.Sql/Server/Database",
database="string",
delta_snapshot_query="string",
full_snapshot_query="string",
password="string",
refresh_rate="string",
refresh_type="string",
server="string",
table="string",
user="string",
),
partition_key="string",
serialization=azure_native.streamanalytics.AvroSerializationArgs(
type="Avro",
),
),
)],
cluster=azure_native.streamanalytics.ClusterInfoArgs(
id="string",
),
data_locale="string",
content_storage_policy="string",
events_late_arrival_max_delay_in_seconds=0,
output_error_policy="string",
output_start_mode="string",
output_start_time="string",
outputs=[azure_native.streamanalytics.OutputArgs(
datasource=azure_native.streamanalytics.AzureDataLakeStoreOutputDataSourceArgs(
type="Microsoft.DataLake/Accounts",
account_name="string",
authentication_mode="string",
date_format="string",
file_path_prefix="string",
refresh_token="string",
tenant_id="string",
time_format="string",
token_user_display_name="string",
token_user_principal_name="string",
),
name="string",
serialization=azure_native.streamanalytics.AvroSerializationArgs(
type="Avro",
),
size_window=0,
time_window="string",
)],
compatibility_level="string",
sku=azure_native.streamanalytics.SkuArgs(
name="string",
),
tags={
"string": "string",
},
transformation=azure_native.streamanalytics.TransformationArgs(
name="string",
query="string",
streaming_units=0,
valid_streaming_units=[0],
))
const streamingJobResource = new azure_native.streamanalytics.StreamingJob("streamingJobResource", {
resourceGroupName: "string",
jobName: "string",
eventsOutOfOrderMaxDelayInSeconds: 0,
jobStorageAccount: {
accountKey: "string",
accountName: "string",
authenticationMode: "string",
},
location: "string",
jobType: "string",
eventsOutOfOrderPolicy: "string",
functions: [{
name: "string",
properties: {
type: "Aggregate",
binding: {
type: "Microsoft.MachineLearning/WebService",
apiKey: "string",
batchSize: 0,
endpoint: "string",
inputs: {
columnNames: [{
dataType: "string",
mapTo: 0,
name: "string",
}],
name: "string",
},
outputs: [{
dataType: "string",
name: "string",
}],
},
inputs: [{
dataType: "string",
isConfigurationParameter: false,
}],
output: {
dataType: "string",
},
},
}],
identity: {
type: "string",
},
inputs: [{
name: "string",
properties: {
type: "Reference",
compression: {
type: "string",
},
datasource: {
type: "Microsoft.Sql/Server/Database",
database: "string",
deltaSnapshotQuery: "string",
fullSnapshotQuery: "string",
password: "string",
refreshRate: "string",
refreshType: "string",
server: "string",
table: "string",
user: "string",
},
partitionKey: "string",
serialization: {
type: "Avro",
},
},
}],
cluster: {
id: "string",
},
dataLocale: "string",
contentStoragePolicy: "string",
eventsLateArrivalMaxDelayInSeconds: 0,
outputErrorPolicy: "string",
outputStartMode: "string",
outputStartTime: "string",
outputs: [{
datasource: {
type: "Microsoft.DataLake/Accounts",
accountName: "string",
authenticationMode: "string",
dateFormat: "string",
filePathPrefix: "string",
refreshToken: "string",
tenantId: "string",
timeFormat: "string",
tokenUserDisplayName: "string",
tokenUserPrincipalName: "string",
},
name: "string",
serialization: {
type: "Avro",
},
sizeWindow: 0,
timeWindow: "string",
}],
compatibilityLevel: "string",
sku: {
name: "string",
},
tags: {
string: "string",
},
transformation: {
name: "string",
query: "string",
streamingUnits: 0,
validStreamingUnits: [0],
},
});
type: azure-native:streamanalytics:StreamingJob
properties:
cluster:
id: string
compatibilityLevel: string
contentStoragePolicy: string
dataLocale: string
eventsLateArrivalMaxDelayInSeconds: 0
eventsOutOfOrderMaxDelayInSeconds: 0
eventsOutOfOrderPolicy: string
functions:
- name: string
properties:
binding:
apiKey: string
batchSize: 0
endpoint: string
inputs:
columnNames:
- dataType: string
mapTo: 0
name: string
name: string
outputs:
- dataType: string
name: string
type: Microsoft.MachineLearning/WebService
inputs:
- dataType: string
isConfigurationParameter: false
output:
dataType: string
type: Aggregate
identity:
type: string
inputs:
- name: string
properties:
compression:
type: string
datasource:
database: string
deltaSnapshotQuery: string
fullSnapshotQuery: string
password: string
refreshRate: string
refreshType: string
server: string
table: string
type: Microsoft.Sql/Server/Database
user: string
partitionKey: string
serialization:
type: Avro
type: Reference
jobName: string
jobStorageAccount:
accountKey: string
accountName: string
authenticationMode: string
jobType: string
location: string
outputErrorPolicy: string
outputStartMode: string
outputStartTime: string
outputs:
- datasource:
accountName: string
authenticationMode: string
dateFormat: string
filePathPrefix: string
refreshToken: string
tenantId: string
timeFormat: string
tokenUserDisplayName: string
tokenUserPrincipalName: string
type: Microsoft.DataLake/Accounts
name: string
serialization:
type: Avro
sizeWindow: 0
timeWindow: string
resourceGroupName: string
sku:
name: string
tags:
string: string
transformation:
name: string
query: string
streamingUnits: 0
validStreamingUnits:
- 0
StreamingJob Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
The StreamingJob resource accepts the following input properties:
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Cluster
Pulumi.
Azure Native. Stream Analytics. Inputs. Cluster Info - The cluster which streaming jobs will run on.
- Compatibility
Level string | Pulumi.Azure Native. Stream Analytics. Compatibility Level - Controls certain runtime behaviors of the streaming job.
- Content
Storage string | Pulumi.Policy Azure Native. Stream Analytics. Content Storage Policy - Valid values are JobStorageAccount and SystemAccount. If set to JobStorageAccount, this requires the user to also specify jobStorageAccount property. .
- Data
Locale string - 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.
- Events
Late intArrival Max Delay In Seconds - 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.
- Events
Out intOf Order Max Delay In Seconds - The maximum tolerable delay in seconds where out-of-order events can be adjusted to be back in order.
- Events
Out string | Pulumi.Of Order Policy Azure Native. Stream Analytics. Events Out Of Order Policy - Indicates the policy to apply to events that arrive out of order in the input event stream.
- Functions
List<Pulumi.
Azure Native. Stream Analytics. Inputs. Function> - 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.
- Identity
Pulumi.
Azure Native. Stream Analytics. Inputs. Identity - Describes the system-assigned managed identity assigned to this job that can be used to authenticate with inputs and outputs.
- Inputs
List<Pulumi.
Azure Native. Stream Analytics. Inputs. Input> - 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.
- Job
Name string - The name of the streaming job.
- Job
Storage Pulumi.Account Azure Native. Stream Analytics. Inputs. Job Storage Account - The properties that are associated with an Azure Storage account with MSI
- Job
Type string | Pulumi.Azure Native. Stream Analytics. Job Type - Describes the type of the job. Valid modes are
Cloud
and 'Edge'. - Location string
- The geo-location where the resource lives
- Output
Error string | Pulumi.Policy Azure Native. Stream Analytics. Output Error Policy - 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).
- Output
Start string | Pulumi.Mode Azure Native. Stream Analytics. Output Start Mode - 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.
- Output
Start stringTime - 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.
- Outputs
List<Pulumi.
Azure Native. Stream Analytics. Inputs. Output> - 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.
- Sku
Pulumi.
Azure Native. Stream Analytics. Inputs. Sku - Describes the SKU of the streaming job. Required on PUT (CreateOrReplace) requests.
- Dictionary<string, string>
- Resource tags.
- Transformation
Pulumi.
Azure Native. Stream Analytics. Inputs. Transformation - 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.
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Cluster
Cluster
Info Args - The cluster which streaming jobs will run on.
- Compatibility
Level string | CompatibilityLevel - Controls certain runtime behaviors of the streaming job.
- Content
Storage string | ContentPolicy Storage Policy - Valid values are JobStorageAccount and SystemAccount. If set to JobStorageAccount, this requires the user to also specify jobStorageAccount property. .
- Data
Locale string - 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.
- Events
Late intArrival Max Delay In Seconds - 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.
- Events
Out intOf Order Max Delay In Seconds - The maximum tolerable delay in seconds where out-of-order events can be adjusted to be back in order.
- Events
Out string | EventsOf Order Policy Out Of Order Policy - Indicates the policy to apply to events that arrive out of order in the input event stream.
- Functions
[]Function
Type Args - 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.
- Identity
Identity
Args - Describes the system-assigned managed identity assigned to this job that can be used to authenticate with inputs and outputs.
- Inputs
[]Input
Type Args - 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.
- Job
Name string - The name of the streaming job.
- Job
Storage JobAccount Storage Account Args - The properties that are associated with an Azure Storage account with MSI
- Job
Type string | JobType - Describes the type of the job. Valid modes are
Cloud
and 'Edge'. - Location string
- The geo-location where the resource lives
- Output
Error string | OutputPolicy Error Policy - 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).
- Output
Start string | OutputMode Start Mode - 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.
- Output
Start stringTime - 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.
- Outputs
[]Output
Type Args - 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.
- Sku
Sku
Args - Describes the SKU of the streaming job. Required on PUT (CreateOrReplace) requests.
- map[string]string
- Resource tags.
- Transformation
Transformation
Args - 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.
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- cluster
Cluster
Info - The cluster which streaming jobs will run on.
- compatibility
Level String | CompatibilityLevel - Controls certain runtime behaviors of the streaming job.
- content
Storage String | ContentPolicy Storage Policy - Valid values are JobStorageAccount and SystemAccount. If set to JobStorageAccount, this requires the user to also specify jobStorageAccount property. .
- data
Locale String - 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.
- events
Late IntegerArrival Max Delay In Seconds - 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.
- events
Out IntegerOf Order Max Delay In Seconds - The maximum tolerable delay in seconds where out-of-order events can be adjusted to be back in order.
- events
Out String | EventsOf Order Policy Out Of Order Policy - Indicates the policy to apply to events that arrive out of order in the input event stream.
- functions List<Function>
- 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.
- identity Identity
- Describes the system-assigned managed identity assigned to this job that can be used to authenticate with inputs and outputs.
- inputs List<Input>
- 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.
- job
Name String - The name of the streaming job.
- job
Storage JobAccount Storage Account - The properties that are associated with an Azure Storage account with MSI
- job
Type String | JobType - Describes the type of the job. Valid modes are
Cloud
and 'Edge'. - location String
- The geo-location where the resource lives
- output
Error String | OutputPolicy Error Policy - 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).
- output
Start String | OutputMode Start Mode - 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.
- output
Start StringTime - 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.
- outputs List<Output>
- 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.
- sku Sku
- Describes the SKU of the streaming job. Required on PUT (CreateOrReplace) requests.
- Map<String,String>
- Resource tags.
- transformation Transformation
- 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.
- resource
Group stringName - The name of the resource group. The name is case insensitive.
- cluster
Cluster
Info - The cluster which streaming jobs will run on.
- compatibility
Level string | CompatibilityLevel - Controls certain runtime behaviors of the streaming job.
- content
Storage string | ContentPolicy Storage Policy - Valid values are JobStorageAccount and SystemAccount. If set to JobStorageAccount, this requires the user to also specify jobStorageAccount property. .
- data
Locale string - 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.
- events
Late numberArrival Max Delay In Seconds - 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.
- events
Out numberOf Order Max Delay In Seconds - The maximum tolerable delay in seconds where out-of-order events can be adjusted to be back in order.
- events
Out string | EventsOf Order Policy Out Of Order Policy - Indicates the policy to apply to events that arrive out of order in the input event stream.
- functions Function[]
- 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.
- identity Identity
- Describes the system-assigned managed identity assigned to this job that can be used to authenticate with inputs and outputs.
- inputs Input[]
- 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.
- job
Name string - The name of the streaming job.
- job
Storage JobAccount Storage Account - The properties that are associated with an Azure Storage account with MSI
- job
Type string | JobType - Describes the type of the job. Valid modes are
Cloud
and 'Edge'. - location string
- The geo-location where the resource lives
- output
Error string | OutputPolicy Error Policy - 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).
- output
Start string | OutputMode Start Mode - 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.
- output
Start stringTime - 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.
- outputs Output[]
- 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.
- sku Sku
- Describes the SKU of the streaming job. Required on PUT (CreateOrReplace) requests.
- {[key: string]: string}
- Resource tags.
- transformation Transformation
- 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.
- resource_
group_ strname - The name of the resource group. The name is case insensitive.
- cluster
Cluster
Info Args - The cluster which streaming jobs will run on.
- compatibility_
level str | CompatibilityLevel - Controls certain runtime behaviors of the streaming job.
- content_
storage_ str | Contentpolicy Storage Policy - Valid values are JobStorageAccount and SystemAccount. If set to JobStorageAccount, this requires the user to also specify jobStorageAccount property. .
- data_
locale str - 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.
- events_
late_ intarrival_ max_ delay_ in_ seconds - 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.
- events_
out_ intof_ order_ max_ delay_ in_ seconds - The maximum tolerable delay in seconds where out-of-order events can be adjusted to be back in order.
- events_
out_ str | Eventsof_ order_ policy Out Of Order Policy - Indicates the policy to apply to events that arrive out of order in the input event stream.
- functions
Sequence[Function
Args] - 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.
- identity
Identity
Args - Describes the system-assigned managed identity assigned to this job that can be used to authenticate with inputs and outputs.
- inputs
Sequence[Input
Args] - 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.
- job_
name str - The name of the streaming job.
- job_
storage_ Jobaccount Storage Account Args - The properties that are associated with an Azure Storage account with MSI
- job_
type str | JobType - Describes the type of the job. Valid modes are
Cloud
and 'Edge'. - location str
- The geo-location where the resource lives
- output_
error_ str | Outputpolicy Error Policy - 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).
- output_
start_ str | Outputmode Start Mode - 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.
- output_
start_ strtime - 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.
- outputs
Sequence[Output
Args] - 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.
- sku
Sku
Args - Describes the SKU of the streaming job. Required on PUT (CreateOrReplace) requests.
- Mapping[str, str]
- Resource tags.
- transformation
Transformation
Args - 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.
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- cluster Property Map
- The cluster which streaming jobs will run on.
- compatibility
Level String | "1.0" | "1.2" - Controls certain runtime behaviors of the streaming job.
- content
Storage String | "SystemPolicy Account" | "Job Storage Account" - Valid values are JobStorageAccount and SystemAccount. If set to JobStorageAccount, this requires the user to also specify jobStorageAccount property. .
- data
Locale String - 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.
- events
Late NumberArrival Max Delay In Seconds - 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.
- events
Out NumberOf Order Max Delay In Seconds - The maximum tolerable delay in seconds where out-of-order events can be adjusted to be back in order.
- events
Out String | "Adjust" | "Drop"Of Order Policy - Indicates the policy to apply to events that arrive out of order in the input event stream.
- functions List<Property Map>
- 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.
- identity Property Map
- Describes the system-assigned managed identity assigned to this job that can be used to authenticate with inputs and outputs.
- inputs List<Property Map>
- 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.
- job
Name String - The name of the streaming job.
- job
Storage Property MapAccount - The properties that are associated with an Azure Storage account with MSI
- job
Type String | "Cloud" | "Edge" - Describes the type of the job. Valid modes are
Cloud
and 'Edge'. - location String
- The geo-location where the resource lives
- output
Error String | "Stop" | "Drop"Policy - 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).
- output
Start String | "JobMode Start Time" | "Custom Time" | "Last Output Event Time" - 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.
- output
Start StringTime - 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.
- outputs List<Property Map>
- 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.
- sku Property Map
- Describes the SKU of the streaming job. Required on PUT (CreateOrReplace) requests.
- Map<String>
- Resource tags.
- transformation Property Map
- 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.
Outputs
All input properties are implicitly available as output properties. Additionally, the StreamingJob resource produces the following output properties:
- Created
Date string - Value is an ISO-8601 formatted UTC timestamp indicating when the streaming job was created.
- Etag string
- 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.
- Id string
- The provider-assigned unique ID for this managed resource.
- Job
Id string - A GUID uniquely identifying the streaming job. This GUID is generated upon creation of the streaming job.
- Job
State string - Describes the state of the streaming job.
- Last
Output stringEvent Time - 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.
- Name string
- The name of the resource
- Provisioning
State string - Describes the provisioning status of the streaming job.
- Type string
- The type of the resource. Ex- Microsoft.Compute/virtualMachines or Microsoft.Storage/storageAccounts.
- Created
Date string - Value is an ISO-8601 formatted UTC timestamp indicating when the streaming job was created.
- Etag string
- 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.
- Id string
- The provider-assigned unique ID for this managed resource.
- Job
Id string - A GUID uniquely identifying the streaming job. This GUID is generated upon creation of the streaming job.
- Job
State string - Describes the state of the streaming job.
- Last
Output stringEvent Time - 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.
- Name string
- The name of the resource
- Provisioning
State string - Describes the provisioning status of the streaming job.
- Type string
- The type of the resource. Ex- Microsoft.Compute/virtualMachines or Microsoft.Storage/storageAccounts.
- created
Date String - Value is an ISO-8601 formatted UTC timestamp indicating when the streaming job was created.
- etag String
- 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.
- id String
- The provider-assigned unique ID for this managed resource.
- job
Id String - A GUID uniquely identifying the streaming job. This GUID is generated upon creation of the streaming job.
- job
State String - Describes the state of the streaming job.
- last
Output StringEvent Time - 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.
- name String
- The name of the resource
- provisioning
State String - Describes the provisioning status of the streaming job.
- type String
- The type of the resource. Ex- Microsoft.Compute/virtualMachines or Microsoft.Storage/storageAccounts.
- created
Date string - Value is an ISO-8601 formatted UTC timestamp indicating when the streaming job was created.
- etag string
- 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.
- id string
- The provider-assigned unique ID for this managed resource.
- job
Id string - A GUID uniquely identifying the streaming job. This GUID is generated upon creation of the streaming job.
- job
State string - Describes the state of the streaming job.
- last
Output stringEvent Time - 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.
- name string
- The name of the resource
- provisioning
State string - Describes the provisioning status of the streaming job.
- type string
- The type of the resource. Ex- Microsoft.Compute/virtualMachines or Microsoft.Storage/storageAccounts.
- created_
date str - Value is an ISO-8601 formatted UTC timestamp indicating when the streaming job was created.
- etag str
- 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.
- id str
- The provider-assigned unique ID for this managed resource.
- job_
id str - A GUID uniquely identifying the streaming job. This GUID is generated upon creation of the streaming job.
- job_
state str - Describes the state of the streaming job.
- last_
output_ strevent_ time - 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.
- name str
- The name of the resource
- provisioning_
state str - Describes the provisioning status of the streaming job.
- type str
- The type of the resource. Ex- Microsoft.Compute/virtualMachines or Microsoft.Storage/storageAccounts.
- created
Date String - Value is an ISO-8601 formatted UTC timestamp indicating when the streaming job was created.
- etag String
- 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.
- id String
- The provider-assigned unique ID for this managed resource.
- job
Id String - A GUID uniquely identifying the streaming job. This GUID is generated upon creation of the streaming job.
- job
State String - Describes the state of the streaming job.
- last
Output StringEvent Time - 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.
- name String
- The name of the resource
- provisioning
State String - Describes the provisioning status of the streaming job.
- type String
- The type of the resource. Ex- Microsoft.Compute/virtualMachines or Microsoft.Storage/storageAccounts.
Supporting Types
AggregateFunctionProperties, AggregateFunctionPropertiesArgs
- Binding
Pulumi.
Azure | Pulumi.Native. Stream Analytics. Inputs. Azure Machine Learning Web Service Function Binding Azure Native. Stream Analytics. Inputs. Java Script Function Binding - The physical binding of the function. For example, in the Azure Machine Learning web service’s case, this describes the endpoint.
- Inputs
List<Pulumi.
Azure Native. Stream Analytics. Inputs. Function Input> - Output
Pulumi.
Azure Native. Stream Analytics. Inputs. Function Output - Describes the output of a function.
- Binding
Azure
Machine | JavaLearning Web Service Function Binding Script Function Binding - The physical binding of the function. For example, in the Azure Machine Learning web service’s case, this describes the endpoint.
- Inputs
[]Function
Input Type - Output
Function
Output Type - Describes the output of a function.
- binding
Azure
Machine | JavaLearning Web Service Function Binding Script Function Binding - The physical binding of the function. For example, in the Azure Machine Learning web service’s case, this describes the endpoint.
- inputs
List<Function
Input> - output
Function
Output - Describes the output of a function.
- binding
Azure
Machine | JavaLearning Web Service Function Binding Script Function Binding - The physical binding of the function. For example, in the Azure Machine Learning web service’s case, this describes the endpoint.
- inputs
Function
Input[] - output
Function
Output - Describes the output of a function.
- binding
Azure
Machine | JavaLearning Web Service Function Binding Script Function Binding - The physical binding of the function. For example, in the Azure Machine Learning web service’s case, this describes the endpoint.
- inputs
Sequence[Function
Input] - output
Function
Output - Describes the output of a function.
- binding Property Map | Property Map
- The physical binding of the function. For example, in the Azure Machine Learning web service’s case, this describes the endpoint.
- inputs List<Property Map>
- output Property Map
- Describes the output of a function.
AggregateFunctionPropertiesResponse, AggregateFunctionPropertiesResponseArgs
- Etag string
- The current entity tag for the function. 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.
- Binding
Pulumi.
Azure | Pulumi.Native. Stream Analytics. Inputs. Azure Machine Learning Web Service Function Binding Response Azure Native. Stream Analytics. Inputs. Java Script Function Binding Response - The physical binding of the function. For example, in the Azure Machine Learning web service’s case, this describes the endpoint.
- Inputs
List<Pulumi.
Azure Native. Stream Analytics. Inputs. Function Input Response> - Output
Pulumi.
Azure Native. Stream Analytics. Inputs. Function Output Response - Describes the output of a function.
- Etag string
- The current entity tag for the function. 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.
- Binding
Azure
Machine | JavaLearning Web Service Function Binding Response Script Function Binding Response - The physical binding of the function. For example, in the Azure Machine Learning web service’s case, this describes the endpoint.
- Inputs
[]Function
Input Response - Output
Function
Output Response - Describes the output of a function.
- etag String
- The current entity tag for the function. 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.
- binding
Azure
Machine | JavaLearning Web Service Function Binding Response Script Function Binding Response - The physical binding of the function. For example, in the Azure Machine Learning web service’s case, this describes the endpoint.
- inputs
List<Function
Input Response> - output
Function
Output Response - Describes the output of a function.
- etag string
- The current entity tag for the function. 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.
- binding
Azure
Machine | JavaLearning Web Service Function Binding Response Script Function Binding Response - The physical binding of the function. For example, in the Azure Machine Learning web service’s case, this describes the endpoint.
- inputs
Function
Input Response[] - output
Function
Output Response - Describes the output of a function.
- etag str
- The current entity tag for the function. 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.
- binding
Azure
Machine | JavaLearning Web Service Function Binding Response Script Function Binding Response - The physical binding of the function. For example, in the Azure Machine Learning web service’s case, this describes the endpoint.
- inputs
Sequence[Function
Input Response] - output
Function
Output Response - Describes the output of a function.
- etag String
- The current entity tag for the function. 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.
- binding Property Map | Property Map
- The physical binding of the function. For example, in the Azure Machine Learning web service’s case, this describes the endpoint.
- inputs List<Property Map>
- output Property Map
- Describes the output of a function.
AuthenticationMode, AuthenticationModeArgs
- Msi
- Msi
- User
Token - UserToken
- Connection
String - ConnectionString
- Authentication
Mode Msi - Msi
- Authentication
Mode User Token - UserToken
- Authentication
Mode Connection String - ConnectionString
- Msi
- Msi
- User
Token - UserToken
- Connection
String - ConnectionString
- Msi
- Msi
- User
Token - UserToken
- Connection
String - ConnectionString
- MSI
- Msi
- USER_TOKEN
- UserToken
- CONNECTION_STRING
- ConnectionString
- "Msi"
- Msi
- "User
Token" - UserToken
- "Connection
String" - ConnectionString
AvroSerialization, AvroSerializationArgs
AvroSerializationResponse, AvroSerializationResponseArgs
AzureDataLakeStoreOutputDataSource, AzureDataLakeStoreOutputDataSourceArgs
- Account
Name string - The name of the Azure Data Lake Store account. Required on PUT (CreateOrReplace) requests.
- Authentication
Mode string | Pulumi.Azure Native. Stream Analytics. Authentication Mode - Authentication Mode.
- Date
Format string - The date format. Wherever {date} appears in filePathPrefix, the value of this property is used as the date format instead.
- File
Path stringPrefix - The location of the file to which the output should be written to. Required on PUT (CreateOrReplace) requests.
- Refresh
Token string - A refresh token that can be used to obtain a valid access token that can then be used to authenticate with the data source. A valid refresh token is currently only obtainable via the Azure Portal. It is recommended to put a dummy string value here when creating the data source and then going to the Azure Portal to authenticate the data source which will update this property with a valid refresh token. Required on PUT (CreateOrReplace) requests.
- Tenant
Id string - The tenant id of the user used to obtain the refresh token. Required on PUT (CreateOrReplace) requests.
- Time
Format string - The time format. Wherever {time} appears in filePathPrefix, the value of this property is used as the time format instead.
- Token
User stringDisplay Name - The user display name of the user that was used to obtain the refresh token. Use this property to help remember which user was used to obtain the refresh token.
- Token
User stringPrincipal Name - The user principal name (UPN) of the user that was used to obtain the refresh token. Use this property to help remember which user was used to obtain the refresh token.
- Account
Name string - The name of the Azure Data Lake Store account. Required on PUT (CreateOrReplace) requests.
- Authentication
Mode string | AuthenticationMode - Authentication Mode.
- Date
Format string - The date format. Wherever {date} appears in filePathPrefix, the value of this property is used as the date format instead.
- File
Path stringPrefix - The location of the file to which the output should be written to. Required on PUT (CreateOrReplace) requests.
- Refresh
Token string - A refresh token that can be used to obtain a valid access token that can then be used to authenticate with the data source. A valid refresh token is currently only obtainable via the Azure Portal. It is recommended to put a dummy string value here when creating the data source and then going to the Azure Portal to authenticate the data source which will update this property with a valid refresh token. Required on PUT (CreateOrReplace) requests.
- Tenant
Id string - The tenant id of the user used to obtain the refresh token. Required on PUT (CreateOrReplace) requests.
- Time
Format string - The time format. Wherever {time} appears in filePathPrefix, the value of this property is used as the time format instead.
- Token
User stringDisplay Name - The user display name of the user that was used to obtain the refresh token. Use this property to help remember which user was used to obtain the refresh token.
- Token
User stringPrincipal Name - The user principal name (UPN) of the user that was used to obtain the refresh token. Use this property to help remember which user was used to obtain the refresh token.
- account
Name String - The name of the Azure Data Lake Store account. Required on PUT (CreateOrReplace) requests.
- authentication
Mode String | AuthenticationMode - Authentication Mode.
- date
Format String - The date format. Wherever {date} appears in filePathPrefix, the value of this property is used as the date format instead.
- file
Path StringPrefix - The location of the file to which the output should be written to. Required on PUT (CreateOrReplace) requests.
- refresh
Token String - A refresh token that can be used to obtain a valid access token that can then be used to authenticate with the data source. A valid refresh token is currently only obtainable via the Azure Portal. It is recommended to put a dummy string value here when creating the data source and then going to the Azure Portal to authenticate the data source which will update this property with a valid refresh token. Required on PUT (CreateOrReplace) requests.
- tenant
Id String - The tenant id of the user used to obtain the refresh token. Required on PUT (CreateOrReplace) requests.
- time
Format String - The time format. Wherever {time} appears in filePathPrefix, the value of this property is used as the time format instead.
- token
User StringDisplay Name - The user display name of the user that was used to obtain the refresh token. Use this property to help remember which user was used to obtain the refresh token.
- token
User StringPrincipal Name - The user principal name (UPN) of the user that was used to obtain the refresh token. Use this property to help remember which user was used to obtain the refresh token.
- account
Name string - The name of the Azure Data Lake Store account. Required on PUT (CreateOrReplace) requests.
- authentication
Mode string | AuthenticationMode - Authentication Mode.
- date
Format string - The date format. Wherever {date} appears in filePathPrefix, the value of this property is used as the date format instead.
- file
Path stringPrefix - The location of the file to which the output should be written to. Required on PUT (CreateOrReplace) requests.
- refresh
Token string - A refresh token that can be used to obtain a valid access token that can then be used to authenticate with the data source. A valid refresh token is currently only obtainable via the Azure Portal. It is recommended to put a dummy string value here when creating the data source and then going to the Azure Portal to authenticate the data source which will update this property with a valid refresh token. Required on PUT (CreateOrReplace) requests.
- tenant
Id string - The tenant id of the user used to obtain the refresh token. Required on PUT (CreateOrReplace) requests.
- time
Format string - The time format. Wherever {time} appears in filePathPrefix, the value of this property is used as the time format instead.
- token
User stringDisplay Name - The user display name of the user that was used to obtain the refresh token. Use this property to help remember which user was used to obtain the refresh token.
- token
User stringPrincipal Name - The user principal name (UPN) of the user that was used to obtain the refresh token. Use this property to help remember which user was used to obtain the refresh token.
- account_
name str - The name of the Azure Data Lake Store account. Required on PUT (CreateOrReplace) requests.
- authentication_
mode str | AuthenticationMode - Authentication Mode.
- date_
format str - The date format. Wherever {date} appears in filePathPrefix, the value of this property is used as the date format instead.
- file_
path_ strprefix - The location of the file to which the output should be written to. Required on PUT (CreateOrReplace) requests.
- refresh_
token str - A refresh token that can be used to obtain a valid access token that can then be used to authenticate with the data source. A valid refresh token is currently only obtainable via the Azure Portal. It is recommended to put a dummy string value here when creating the data source and then going to the Azure Portal to authenticate the data source which will update this property with a valid refresh token. Required on PUT (CreateOrReplace) requests.
- tenant_
id str - The tenant id of the user used to obtain the refresh token. Required on PUT (CreateOrReplace) requests.
- time_
format str - The time format. Wherever {time} appears in filePathPrefix, the value of this property is used as the time format instead.
- token_
user_ strdisplay_ name - The user display name of the user that was used to obtain the refresh token. Use this property to help remember which user was used to obtain the refresh token.
- token_
user_ strprincipal_ name - The user principal name (UPN) of the user that was used to obtain the refresh token. Use this property to help remember which user was used to obtain the refresh token.
- account
Name String - The name of the Azure Data Lake Store account. Required on PUT (CreateOrReplace) requests.
- authentication
Mode String | "Msi" | "UserToken" | "Connection String" - Authentication Mode.
- date
Format String - The date format. Wherever {date} appears in filePathPrefix, the value of this property is used as the date format instead.
- file
Path StringPrefix - The location of the file to which the output should be written to. Required on PUT (CreateOrReplace) requests.
- refresh
Token String - A refresh token that can be used to obtain a valid access token that can then be used to authenticate with the data source. A valid refresh token is currently only obtainable via the Azure Portal. It is recommended to put a dummy string value here when creating the data source and then going to the Azure Portal to authenticate the data source which will update this property with a valid refresh token. Required on PUT (CreateOrReplace) requests.
- tenant
Id String - The tenant id of the user used to obtain the refresh token. Required on PUT (CreateOrReplace) requests.
- time
Format String - The time format. Wherever {time} appears in filePathPrefix, the value of this property is used as the time format instead.
- token
User StringDisplay Name - The user display name of the user that was used to obtain the refresh token. Use this property to help remember which user was used to obtain the refresh token.
- token
User StringPrincipal Name - The user principal name (UPN) of the user that was used to obtain the refresh token. Use this property to help remember which user was used to obtain the refresh token.
AzureDataLakeStoreOutputDataSourceResponse, AzureDataLakeStoreOutputDataSourceResponseArgs
- Account
Name string - The name of the Azure Data Lake Store account. Required on PUT (CreateOrReplace) requests.
- Authentication
Mode string - Authentication Mode.
- Date
Format string - The date format. Wherever {date} appears in filePathPrefix, the value of this property is used as the date format instead.
- File
Path stringPrefix - The location of the file to which the output should be written to. Required on PUT (CreateOrReplace) requests.
- Refresh
Token string - A refresh token that can be used to obtain a valid access token that can then be used to authenticate with the data source. A valid refresh token is currently only obtainable via the Azure Portal. It is recommended to put a dummy string value here when creating the data source and then going to the Azure Portal to authenticate the data source which will update this property with a valid refresh token. Required on PUT (CreateOrReplace) requests.
- Tenant
Id string - The tenant id of the user used to obtain the refresh token. Required on PUT (CreateOrReplace) requests.
- Time
Format string - The time format. Wherever {time} appears in filePathPrefix, the value of this property is used as the time format instead.
- Token
User stringDisplay Name - The user display name of the user that was used to obtain the refresh token. Use this property to help remember which user was used to obtain the refresh token.
- Token
User stringPrincipal Name - The user principal name (UPN) of the user that was used to obtain the refresh token. Use this property to help remember which user was used to obtain the refresh token.
- Account
Name string - The name of the Azure Data Lake Store account. Required on PUT (CreateOrReplace) requests.
- Authentication
Mode string - Authentication Mode.
- Date
Format string - The date format. Wherever {date} appears in filePathPrefix, the value of this property is used as the date format instead.
- File
Path stringPrefix - The location of the file to which the output should be written to. Required on PUT (CreateOrReplace) requests.
- Refresh
Token string - A refresh token that can be used to obtain a valid access token that can then be used to authenticate with the data source. A valid refresh token is currently only obtainable via the Azure Portal. It is recommended to put a dummy string value here when creating the data source and then going to the Azure Portal to authenticate the data source which will update this property with a valid refresh token. Required on PUT (CreateOrReplace) requests.
- Tenant
Id string - The tenant id of the user used to obtain the refresh token. Required on PUT (CreateOrReplace) requests.
- Time
Format string - The time format. Wherever {time} appears in filePathPrefix, the value of this property is used as the time format instead.
- Token
User stringDisplay Name - The user display name of the user that was used to obtain the refresh token. Use this property to help remember which user was used to obtain the refresh token.
- Token
User stringPrincipal Name - The user principal name (UPN) of the user that was used to obtain the refresh token. Use this property to help remember which user was used to obtain the refresh token.
- account
Name String - The name of the Azure Data Lake Store account. Required on PUT (CreateOrReplace) requests.
- authentication
Mode String - Authentication Mode.
- date
Format String - The date format. Wherever {date} appears in filePathPrefix, the value of this property is used as the date format instead.
- file
Path StringPrefix - The location of the file to which the output should be written to. Required on PUT (CreateOrReplace) requests.
- refresh
Token String - A refresh token that can be used to obtain a valid access token that can then be used to authenticate with the data source. A valid refresh token is currently only obtainable via the Azure Portal. It is recommended to put a dummy string value here when creating the data source and then going to the Azure Portal to authenticate the data source which will update this property with a valid refresh token. Required on PUT (CreateOrReplace) requests.
- tenant
Id String - The tenant id of the user used to obtain the refresh token. Required on PUT (CreateOrReplace) requests.
- time
Format String - The time format. Wherever {time} appears in filePathPrefix, the value of this property is used as the time format instead.
- token
User StringDisplay Name - The user display name of the user that was used to obtain the refresh token. Use this property to help remember which user was used to obtain the refresh token.
- token
User StringPrincipal Name - The user principal name (UPN) of the user that was used to obtain the refresh token. Use this property to help remember which user was used to obtain the refresh token.
- account
Name string - The name of the Azure Data Lake Store account. Required on PUT (CreateOrReplace) requests.
- authentication
Mode string - Authentication Mode.
- date
Format string - The date format. Wherever {date} appears in filePathPrefix, the value of this property is used as the date format instead.
- file
Path stringPrefix - The location of the file to which the output should be written to. Required on PUT (CreateOrReplace) requests.
- refresh
Token string - A refresh token that can be used to obtain a valid access token that can then be used to authenticate with the data source. A valid refresh token is currently only obtainable via the Azure Portal. It is recommended to put a dummy string value here when creating the data source and then going to the Azure Portal to authenticate the data source which will update this property with a valid refresh token. Required on PUT (CreateOrReplace) requests.
- tenant
Id string - The tenant id of the user used to obtain the refresh token. Required on PUT (CreateOrReplace) requests.
- time
Format string - The time format. Wherever {time} appears in filePathPrefix, the value of this property is used as the time format instead.
- token
User stringDisplay Name - The user display name of the user that was used to obtain the refresh token. Use this property to help remember which user was used to obtain the refresh token.
- token
User stringPrincipal Name - The user principal name (UPN) of the user that was used to obtain the refresh token. Use this property to help remember which user was used to obtain the refresh token.
- account_
name str - The name of the Azure Data Lake Store account. Required on PUT (CreateOrReplace) requests.
- authentication_
mode str - Authentication Mode.
- date_
format str - The date format. Wherever {date} appears in filePathPrefix, the value of this property is used as the date format instead.
- file_
path_ strprefix - The location of the file to which the output should be written to. Required on PUT (CreateOrReplace) requests.
- refresh_
token str - A refresh token that can be used to obtain a valid access token that can then be used to authenticate with the data source. A valid refresh token is currently only obtainable via the Azure Portal. It is recommended to put a dummy string value here when creating the data source and then going to the Azure Portal to authenticate the data source which will update this property with a valid refresh token. Required on PUT (CreateOrReplace) requests.
- tenant_
id str - The tenant id of the user used to obtain the refresh token. Required on PUT (CreateOrReplace) requests.
- time_
format str - The time format. Wherever {time} appears in filePathPrefix, the value of this property is used as the time format instead.
- token_
user_ strdisplay_ name - The user display name of the user that was used to obtain the refresh token. Use this property to help remember which user was used to obtain the refresh token.
- token_
user_ strprincipal_ name - The user principal name (UPN) of the user that was used to obtain the refresh token. Use this property to help remember which user was used to obtain the refresh token.
- account
Name String - The name of the Azure Data Lake Store account. Required on PUT (CreateOrReplace) requests.
- authentication
Mode String - Authentication Mode.
- date
Format String - The date format. Wherever {date} appears in filePathPrefix, the value of this property is used as the date format instead.
- file
Path StringPrefix - The location of the file to which the output should be written to. Required on PUT (CreateOrReplace) requests.
- refresh
Token String - A refresh token that can be used to obtain a valid access token that can then be used to authenticate with the data source. A valid refresh token is currently only obtainable via the Azure Portal. It is recommended to put a dummy string value here when creating the data source and then going to the Azure Portal to authenticate the data source which will update this property with a valid refresh token. Required on PUT (CreateOrReplace) requests.
- tenant
Id String - The tenant id of the user used to obtain the refresh token. Required on PUT (CreateOrReplace) requests.
- time
Format String - The time format. Wherever {time} appears in filePathPrefix, the value of this property is used as the time format instead.
- token
User StringDisplay Name - The user display name of the user that was used to obtain the refresh token. Use this property to help remember which user was used to obtain the refresh token.
- token
User StringPrincipal Name - The user principal name (UPN) of the user that was used to obtain the refresh token. Use this property to help remember which user was used to obtain the refresh token.
AzureFunctionOutputDataSource, AzureFunctionOutputDataSourceArgs
- Api
Key string - If you want to use an Azure Function from another subscription, you can do so by providing the key to access your function.
- Function
App stringName - The name of your Azure Functions app.
- Function
Name string - The name of the function in your Azure Functions app.
- Max
Batch doubleCount - A property that lets you specify the maximum number of events in each batch that's sent to Azure Functions. The default value is 100.
- Max
Batch doubleSize - A property that lets you set the maximum size for each output batch that's sent to your Azure function. The input unit is in bytes. By default, this value is 262,144 bytes (256 KB).
- Api
Key string - If you want to use an Azure Function from another subscription, you can do so by providing the key to access your function.
- Function
App stringName - The name of your Azure Functions app.
- Function
Name string - The name of the function in your Azure Functions app.
- Max
Batch float64Count - A property that lets you specify the maximum number of events in each batch that's sent to Azure Functions. The default value is 100.
- Max
Batch float64Size - A property that lets you set the maximum size for each output batch that's sent to your Azure function. The input unit is in bytes. By default, this value is 262,144 bytes (256 KB).
- api
Key String - If you want to use an Azure Function from another subscription, you can do so by providing the key to access your function.
- function
App StringName - The name of your Azure Functions app.
- function
Name String - The name of the function in your Azure Functions app.
- max
Batch DoubleCount - A property that lets you specify the maximum number of events in each batch that's sent to Azure Functions. The default value is 100.
- max
Batch DoubleSize - A property that lets you set the maximum size for each output batch that's sent to your Azure function. The input unit is in bytes. By default, this value is 262,144 bytes (256 KB).
- api
Key string - If you want to use an Azure Function from another subscription, you can do so by providing the key to access your function.
- function
App stringName - The name of your Azure Functions app.
- function
Name string - The name of the function in your Azure Functions app.
- max
Batch numberCount - A property that lets you specify the maximum number of events in each batch that's sent to Azure Functions. The default value is 100.
- max
Batch numberSize - A property that lets you set the maximum size for each output batch that's sent to your Azure function. The input unit is in bytes. By default, this value is 262,144 bytes (256 KB).
- api_
key str - If you want to use an Azure Function from another subscription, you can do so by providing the key to access your function.
- function_
app_ strname - The name of your Azure Functions app.
- function_
name str - The name of the function in your Azure Functions app.
- max_
batch_ floatcount - A property that lets you specify the maximum number of events in each batch that's sent to Azure Functions. The default value is 100.
- max_
batch_ floatsize - A property that lets you set the maximum size for each output batch that's sent to your Azure function. The input unit is in bytes. By default, this value is 262,144 bytes (256 KB).
- api
Key String - If you want to use an Azure Function from another subscription, you can do so by providing the key to access your function.
- function
App StringName - The name of your Azure Functions app.
- function
Name String - The name of the function in your Azure Functions app.
- max
Batch NumberCount - A property that lets you specify the maximum number of events in each batch that's sent to Azure Functions. The default value is 100.
- max
Batch NumberSize - A property that lets you set the maximum size for each output batch that's sent to your Azure function. The input unit is in bytes. By default, this value is 262,144 bytes (256 KB).
AzureFunctionOutputDataSourceResponse, AzureFunctionOutputDataSourceResponseArgs
- Api
Key string - If you want to use an Azure Function from another subscription, you can do so by providing the key to access your function.
- Function
App stringName - The name of your Azure Functions app.
- Function
Name string - The name of the function in your Azure Functions app.
- Max
Batch doubleCount - A property that lets you specify the maximum number of events in each batch that's sent to Azure Functions. The default value is 100.
- Max
Batch doubleSize - A property that lets you set the maximum size for each output batch that's sent to your Azure function. The input unit is in bytes. By default, this value is 262,144 bytes (256 KB).
- Api
Key string - If you want to use an Azure Function from another subscription, you can do so by providing the key to access your function.
- Function
App stringName - The name of your Azure Functions app.
- Function
Name string - The name of the function in your Azure Functions app.
- Max
Batch float64Count - A property that lets you specify the maximum number of events in each batch that's sent to Azure Functions. The default value is 100.
- Max
Batch float64Size - A property that lets you set the maximum size for each output batch that's sent to your Azure function. The input unit is in bytes. By default, this value is 262,144 bytes (256 KB).
- api
Key String - If you want to use an Azure Function from another subscription, you can do so by providing the key to access your function.
- function
App StringName - The name of your Azure Functions app.
- function
Name String - The name of the function in your Azure Functions app.
- max
Batch DoubleCount - A property that lets you specify the maximum number of events in each batch that's sent to Azure Functions. The default value is 100.
- max
Batch DoubleSize - A property that lets you set the maximum size for each output batch that's sent to your Azure function. The input unit is in bytes. By default, this value is 262,144 bytes (256 KB).
- api
Key string - If you want to use an Azure Function from another subscription, you can do so by providing the key to access your function.
- function
App stringName - The name of your Azure Functions app.
- function
Name string - The name of the function in your Azure Functions app.
- max
Batch numberCount - A property that lets you specify the maximum number of events in each batch that's sent to Azure Functions. The default value is 100.
- max
Batch numberSize - A property that lets you set the maximum size for each output batch that's sent to your Azure function. The input unit is in bytes. By default, this value is 262,144 bytes (256 KB).
- api_
key str - If you want to use an Azure Function from another subscription, you can do so by providing the key to access your function.
- function_
app_ strname - The name of your Azure Functions app.
- function_
name str - The name of the function in your Azure Functions app.
- max_
batch_ floatcount - A property that lets you specify the maximum number of events in each batch that's sent to Azure Functions. The default value is 100.
- max_
batch_ floatsize - A property that lets you set the maximum size for each output batch that's sent to your Azure function. The input unit is in bytes. By default, this value is 262,144 bytes (256 KB).
- api
Key String - If you want to use an Azure Function from another subscription, you can do so by providing the key to access your function.
- function
App StringName - The name of your Azure Functions app.
- function
Name String - The name of the function in your Azure Functions app.
- max
Batch NumberCount - A property that lets you specify the maximum number of events in each batch that's sent to Azure Functions. The default value is 100.
- max
Batch NumberSize - A property that lets you set the maximum size for each output batch that's sent to your Azure function. The input unit is in bytes. By default, this value is 262,144 bytes (256 KB).
AzureMachineLearningWebServiceFunctionBinding, AzureMachineLearningWebServiceFunctionBindingArgs
- Api
Key string - The API key used to authenticate with Request-Response endpoint.
- Batch
Size int - Number between 1 and 10000 describing maximum number of rows for every Azure ML RRS execute request. Default is 1000.
- Endpoint string
- The Request-Response execute endpoint of the Azure Machine Learning web service. Find out more here: https://docs.microsoft.com/en-us/azure/machine-learning/machine-learning-consume-web-services#request-response-service-rrs
- Inputs
Pulumi.
Azure Native. Stream Analytics. Inputs. Azure Machine Learning Web Service Inputs - The inputs for the Azure Machine Learning web service endpoint.
- Outputs
List<Pulumi.
Azure Native. Stream Analytics. Inputs. Azure Machine Learning Web Service Output Column> - A list of outputs from the Azure Machine Learning web service endpoint execution.
- Api
Key string - The API key used to authenticate with Request-Response endpoint.
- Batch
Size int - Number between 1 and 10000 describing maximum number of rows for every Azure ML RRS execute request. Default is 1000.
- Endpoint string
- The Request-Response execute endpoint of the Azure Machine Learning web service. Find out more here: https://docs.microsoft.com/en-us/azure/machine-learning/machine-learning-consume-web-services#request-response-service-rrs
- Inputs
Azure
Machine Learning Web Service Inputs - The inputs for the Azure Machine Learning web service endpoint.
- Outputs
[]Azure
Machine Learning Web Service Output Column - A list of outputs from the Azure Machine Learning web service endpoint execution.
- api
Key String - The API key used to authenticate with Request-Response endpoint.
- batch
Size Integer - Number between 1 and 10000 describing maximum number of rows for every Azure ML RRS execute request. Default is 1000.
- endpoint String
- The Request-Response execute endpoint of the Azure Machine Learning web service. Find out more here: https://docs.microsoft.com/en-us/azure/machine-learning/machine-learning-consume-web-services#request-response-service-rrs
- inputs
Azure
Machine Learning Web Service Inputs - The inputs for the Azure Machine Learning web service endpoint.
- outputs
List<Azure
Machine Learning Web Service Output Column> - A list of outputs from the Azure Machine Learning web service endpoint execution.
- api
Key string - The API key used to authenticate with Request-Response endpoint.
- batch
Size number - Number between 1 and 10000 describing maximum number of rows for every Azure ML RRS execute request. Default is 1000.
- endpoint string
- The Request-Response execute endpoint of the Azure Machine Learning web service. Find out more here: https://docs.microsoft.com/en-us/azure/machine-learning/machine-learning-consume-web-services#request-response-service-rrs
- inputs
Azure
Machine Learning Web Service Inputs - The inputs for the Azure Machine Learning web service endpoint.
- outputs
Azure
Machine Learning Web Service Output Column[] - A list of outputs from the Azure Machine Learning web service endpoint execution.
- api_
key str - The API key used to authenticate with Request-Response endpoint.
- batch_
size int - Number between 1 and 10000 describing maximum number of rows for every Azure ML RRS execute request. Default is 1000.
- endpoint str
- The Request-Response execute endpoint of the Azure Machine Learning web service. Find out more here: https://docs.microsoft.com/en-us/azure/machine-learning/machine-learning-consume-web-services#request-response-service-rrs
- inputs
Azure
Machine Learning Web Service Inputs - The inputs for the Azure Machine Learning web service endpoint.
- outputs
Sequence[Azure
Machine Learning Web Service Output Column] - A list of outputs from the Azure Machine Learning web service endpoint execution.
- api
Key String - The API key used to authenticate with Request-Response endpoint.
- batch
Size Number - Number between 1 and 10000 describing maximum number of rows for every Azure ML RRS execute request. Default is 1000.
- endpoint String
- The Request-Response execute endpoint of the Azure Machine Learning web service. Find out more here: https://docs.microsoft.com/en-us/azure/machine-learning/machine-learning-consume-web-services#request-response-service-rrs
- inputs Property Map
- The inputs for the Azure Machine Learning web service endpoint.
- outputs List<Property Map>
- A list of outputs from the Azure Machine Learning web service endpoint execution.
AzureMachineLearningWebServiceFunctionBindingResponse, AzureMachineLearningWebServiceFunctionBindingResponseArgs
- Api
Key string - The API key used to authenticate with Request-Response endpoint.
- Batch
Size int - Number between 1 and 10000 describing maximum number of rows for every Azure ML RRS execute request. Default is 1000.
- Endpoint string
- The Request-Response execute endpoint of the Azure Machine Learning web service. Find out more here: https://docs.microsoft.com/en-us/azure/machine-learning/machine-learning-consume-web-services#request-response-service-rrs
- Inputs
Pulumi.
Azure Native. Stream Analytics. Inputs. Azure Machine Learning Web Service Inputs Response - The inputs for the Azure Machine Learning web service endpoint.
- Outputs
List<Pulumi.
Azure Native. Stream Analytics. Inputs. Azure Machine Learning Web Service Output Column Response> - A list of outputs from the Azure Machine Learning web service endpoint execution.
- Api
Key string - The API key used to authenticate with Request-Response endpoint.
- Batch
Size int - Number between 1 and 10000 describing maximum number of rows for every Azure ML RRS execute request. Default is 1000.
- Endpoint string
- The Request-Response execute endpoint of the Azure Machine Learning web service. Find out more here: https://docs.microsoft.com/en-us/azure/machine-learning/machine-learning-consume-web-services#request-response-service-rrs
- Inputs
Azure
Machine Learning Web Service Inputs Response - The inputs for the Azure Machine Learning web service endpoint.
- Outputs
[]Azure
Machine Learning Web Service Output Column Response - A list of outputs from the Azure Machine Learning web service endpoint execution.
- api
Key String - The API key used to authenticate with Request-Response endpoint.
- batch
Size Integer - Number between 1 and 10000 describing maximum number of rows for every Azure ML RRS execute request. Default is 1000.
- endpoint String
- The Request-Response execute endpoint of the Azure Machine Learning web service. Find out more here: https://docs.microsoft.com/en-us/azure/machine-learning/machine-learning-consume-web-services#request-response-service-rrs
- inputs
Azure
Machine Learning Web Service Inputs Response - The inputs for the Azure Machine Learning web service endpoint.
- outputs
List<Azure
Machine Learning Web Service Output Column Response> - A list of outputs from the Azure Machine Learning web service endpoint execution.
- api
Key string - The API key used to authenticate with Request-Response endpoint.
- batch
Size number - Number between 1 and 10000 describing maximum number of rows for every Azure ML RRS execute request. Default is 1000.
- endpoint string
- The Request-Response execute endpoint of the Azure Machine Learning web service. Find out more here: https://docs.microsoft.com/en-us/azure/machine-learning/machine-learning-consume-web-services#request-response-service-rrs
- inputs
Azure
Machine Learning Web Service Inputs Response - The inputs for the Azure Machine Learning web service endpoint.
- outputs
Azure
Machine Learning Web Service Output Column Response[] - A list of outputs from the Azure Machine Learning web service endpoint execution.
- api_
key str - The API key used to authenticate with Request-Response endpoint.
- batch_
size int - Number between 1 and 10000 describing maximum number of rows for every Azure ML RRS execute request. Default is 1000.
- endpoint str
- The Request-Response execute endpoint of the Azure Machine Learning web service. Find out more here: https://docs.microsoft.com/en-us/azure/machine-learning/machine-learning-consume-web-services#request-response-service-rrs
- inputs
Azure
Machine Learning Web Service Inputs Response - The inputs for the Azure Machine Learning web service endpoint.
- outputs
Sequence[Azure
Machine Learning Web Service Output Column Response] - A list of outputs from the Azure Machine Learning web service endpoint execution.
- api
Key String - The API key used to authenticate with Request-Response endpoint.
- batch
Size Number - Number between 1 and 10000 describing maximum number of rows for every Azure ML RRS execute request. Default is 1000.
- endpoint String
- The Request-Response execute endpoint of the Azure Machine Learning web service. Find out more here: https://docs.microsoft.com/en-us/azure/machine-learning/machine-learning-consume-web-services#request-response-service-rrs
- inputs Property Map
- The inputs for the Azure Machine Learning web service endpoint.
- outputs List<Property Map>
- A list of outputs from the Azure Machine Learning web service endpoint execution.
AzureMachineLearningWebServiceInputColumn, AzureMachineLearningWebServiceInputColumnArgs
- Data
Type string - The (Azure Machine Learning supported) data type of the input column. A list of valid Azure Machine Learning data types are described at https://msdn.microsoft.com/en-us/library/azure/dn905923.aspx .
- Map
To int - The zero based index of the function parameter this input maps to.
- Name string
- The name of the input column.
- Data
Type string - The (Azure Machine Learning supported) data type of the input column. A list of valid Azure Machine Learning data types are described at https://msdn.microsoft.com/en-us/library/azure/dn905923.aspx .
- Map
To int - The zero based index of the function parameter this input maps to.
- Name string
- The name of the input column.
- data
Type String - The (Azure Machine Learning supported) data type of the input column. A list of valid Azure Machine Learning data types are described at https://msdn.microsoft.com/en-us/library/azure/dn905923.aspx .
- map
To Integer - The zero based index of the function parameter this input maps to.
- name String
- The name of the input column.
- data
Type string - The (Azure Machine Learning supported) data type of the input column. A list of valid Azure Machine Learning data types are described at https://msdn.microsoft.com/en-us/library/azure/dn905923.aspx .
- map
To number - The zero based index of the function parameter this input maps to.
- name string
- The name of the input column.
- data_
type str - The (Azure Machine Learning supported) data type of the input column. A list of valid Azure Machine Learning data types are described at https://msdn.microsoft.com/en-us/library/azure/dn905923.aspx .
- map_
to int - The zero based index of the function parameter this input maps to.
- name str
- The name of the input column.
- data
Type String - The (Azure Machine Learning supported) data type of the input column. A list of valid Azure Machine Learning data types are described at https://msdn.microsoft.com/en-us/library/azure/dn905923.aspx .
- map
To Number - The zero based index of the function parameter this input maps to.
- name String
- The name of the input column.
AzureMachineLearningWebServiceInputColumnResponse, AzureMachineLearningWebServiceInputColumnResponseArgs
- Data
Type string - The (Azure Machine Learning supported) data type of the input column. A list of valid Azure Machine Learning data types are described at https://msdn.microsoft.com/en-us/library/azure/dn905923.aspx .
- Map
To int - The zero based index of the function parameter this input maps to.
- Name string
- The name of the input column.
- Data
Type string - The (Azure Machine Learning supported) data type of the input column. A list of valid Azure Machine Learning data types are described at https://msdn.microsoft.com/en-us/library/azure/dn905923.aspx .
- Map
To int - The zero based index of the function parameter this input maps to.
- Name string
- The name of the input column.
- data
Type String - The (Azure Machine Learning supported) data type of the input column. A list of valid Azure Machine Learning data types are described at https://msdn.microsoft.com/en-us/library/azure/dn905923.aspx .
- map
To Integer - The zero based index of the function parameter this input maps to.
- name String
- The name of the input column.
- data
Type string - The (Azure Machine Learning supported) data type of the input column. A list of valid Azure Machine Learning data types are described at https://msdn.microsoft.com/en-us/library/azure/dn905923.aspx .
- map
To number - The zero based index of the function parameter this input maps to.
- name string
- The name of the input column.
- data_
type str - The (Azure Machine Learning supported) data type of the input column. A list of valid Azure Machine Learning data types are described at https://msdn.microsoft.com/en-us/library/azure/dn905923.aspx .
- map_
to int - The zero based index of the function parameter this input maps to.
- name str
- The name of the input column.
- data
Type String - The (Azure Machine Learning supported) data type of the input column. A list of valid Azure Machine Learning data types are described at https://msdn.microsoft.com/en-us/library/azure/dn905923.aspx .
- map
To Number - The zero based index of the function parameter this input maps to.
- name String
- The name of the input column.
AzureMachineLearningWebServiceInputs, AzureMachineLearningWebServiceInputsArgs
- Column
Names List<Pulumi.Azure Native. Stream Analytics. Inputs. Azure Machine Learning Web Service Input Column> - A list of input columns for the Azure Machine Learning web service endpoint.
- Name string
- The name of the input. This is the name provided while authoring the endpoint.
- Column
Names []AzureMachine Learning Web Service Input Column - A list of input columns for the Azure Machine Learning web service endpoint.
- Name string
- The name of the input. This is the name provided while authoring the endpoint.
- column
Names List<AzureMachine Learning Web Service Input Column> - A list of input columns for the Azure Machine Learning web service endpoint.
- name String
- The name of the input. This is the name provided while authoring the endpoint.
- column
Names AzureMachine Learning Web Service Input Column[] - A list of input columns for the Azure Machine Learning web service endpoint.
- name string
- The name of the input. This is the name provided while authoring the endpoint.
- column_
names Sequence[AzureMachine Learning Web Service Input Column] - A list of input columns for the Azure Machine Learning web service endpoint.
- name str
- The name of the input. This is the name provided while authoring the endpoint.
- column
Names List<Property Map> - A list of input columns for the Azure Machine Learning web service endpoint.
- name String
- The name of the input. This is the name provided while authoring the endpoint.
AzureMachineLearningWebServiceInputsResponse, AzureMachineLearningWebServiceInputsResponseArgs
- Column
Names List<Pulumi.Azure Native. Stream Analytics. Inputs. Azure Machine Learning Web Service Input Column Response> - A list of input columns for the Azure Machine Learning web service endpoint.
- Name string
- The name of the input. This is the name provided while authoring the endpoint.
- Column
Names []AzureMachine Learning Web Service Input Column Response - A list of input columns for the Azure Machine Learning web service endpoint.
- Name string
- The name of the input. This is the name provided while authoring the endpoint.
- column
Names List<AzureMachine Learning Web Service Input Column Response> - A list of input columns for the Azure Machine Learning web service endpoint.
- name String
- The name of the input. This is the name provided while authoring the endpoint.
- column
Names AzureMachine Learning Web Service Input Column Response[] - A list of input columns for the Azure Machine Learning web service endpoint.
- name string
- The name of the input. This is the name provided while authoring the endpoint.
- column_
names Sequence[AzureMachine Learning Web Service Input Column Response] - A list of input columns for the Azure Machine Learning web service endpoint.
- name str
- The name of the input. This is the name provided while authoring the endpoint.
- column
Names List<Property Map> - A list of input columns for the Azure Machine Learning web service endpoint.
- name String
- The name of the input. This is the name provided while authoring the endpoint.
AzureMachineLearningWebServiceOutputColumn, AzureMachineLearningWebServiceOutputColumnArgs
AzureMachineLearningWebServiceOutputColumnResponse, AzureMachineLearningWebServiceOutputColumnResponseArgs
AzureSqlDatabaseOutputDataSource, AzureSqlDatabaseOutputDataSourceArgs
- Authentication
Mode string | Pulumi.Azure Native. Stream Analytics. Authentication Mode - Authentication Mode.
- Database string
- The name of the Azure SQL database. Required on PUT (CreateOrReplace) requests.
- Max
Batch doubleCount - Max Batch count for write to Sql database, the default value is 10,000. Optional on PUT requests.
- Max
Writer doubleCount - Max Writer count, currently only 1(single writer) and 0(based on query partition) are available. Optional on PUT requests.
- Password string
- The password that will be used to connect to the Azure SQL database. Required on PUT (CreateOrReplace) requests.
- Server string
- The name of the SQL server containing the Azure SQL database. Required on PUT (CreateOrReplace) requests.
- Table string
- The name of the table in the Azure SQL database. Required on PUT (CreateOrReplace) requests.
- User string
- The user name that will be used to connect to the Azure SQL database. Required on PUT (CreateOrReplace) requests.
- Authentication
Mode string | AuthenticationMode - Authentication Mode.
- Database string
- The name of the Azure SQL database. Required on PUT (CreateOrReplace) requests.
- Max
Batch float64Count - Max Batch count for write to Sql database, the default value is 10,000. Optional on PUT requests.
- Max
Writer float64Count - Max Writer count, currently only 1(single writer) and 0(based on query partition) are available. Optional on PUT requests.
- Password string
- The password that will be used to connect to the Azure SQL database. Required on PUT (CreateOrReplace) requests.
- Server string
- The name of the SQL server containing the Azure SQL database. Required on PUT (CreateOrReplace) requests.
- Table string
- The name of the table in the Azure SQL database. Required on PUT (CreateOrReplace) requests.
- User string
- The user name that will be used to connect to the Azure SQL database. Required on PUT (CreateOrReplace) requests.
- authentication
Mode String | AuthenticationMode - Authentication Mode.
- database String
- The name of the Azure SQL database. Required on PUT (CreateOrReplace) requests.
- max
Batch DoubleCount - Max Batch count for write to Sql database, the default value is 10,000. Optional on PUT requests.
- max
Writer DoubleCount - Max Writer count, currently only 1(single writer) and 0(based on query partition) are available. Optional on PUT requests.
- password String
- The password that will be used to connect to the Azure SQL database. Required on PUT (CreateOrReplace) requests.
- server String
- The name of the SQL server containing the Azure SQL database. Required on PUT (CreateOrReplace) requests.
- table String
- The name of the table in the Azure SQL database. Required on PUT (CreateOrReplace) requests.
- user String
- The user name that will be used to connect to the Azure SQL database. Required on PUT (CreateOrReplace) requests.
- authentication
Mode string | AuthenticationMode - Authentication Mode.
- database string
- The name of the Azure SQL database. Required on PUT (CreateOrReplace) requests.
- max
Batch numberCount - Max Batch count for write to Sql database, the default value is 10,000. Optional on PUT requests.
- max
Writer numberCount - Max Writer count, currently only 1(single writer) and 0(based on query partition) are available. Optional on PUT requests.
- password string
- The password that will be used to connect to the Azure SQL database. Required on PUT (CreateOrReplace) requests.
- server string
- The name of the SQL server containing the Azure SQL database. Required on PUT (CreateOrReplace) requests.
- table string
- The name of the table in the Azure SQL database. Required on PUT (CreateOrReplace) requests.
- user string
- The user name that will be used to connect to the Azure SQL database. Required on PUT (CreateOrReplace) requests.
- authentication_
mode str | AuthenticationMode - Authentication Mode.
- database str
- The name of the Azure SQL database. Required on PUT (CreateOrReplace) requests.
- max_
batch_ floatcount - Max Batch count for write to Sql database, the default value is 10,000. Optional on PUT requests.
- max_
writer_ floatcount - Max Writer count, currently only 1(single writer) and 0(based on query partition) are available. Optional on PUT requests.
- password str
- The password that will be used to connect to the Azure SQL database. Required on PUT (CreateOrReplace) requests.
- server str
- The name of the SQL server containing the Azure SQL database. Required on PUT (CreateOrReplace) requests.
- table str
- The name of the table in the Azure SQL database. Required on PUT (CreateOrReplace) requests.
- user str
- The user name that will be used to connect to the Azure SQL database. Required on PUT (CreateOrReplace) requests.
- authentication
Mode String | "Msi" | "UserToken" | "Connection String" - Authentication Mode.
- database String
- The name of the Azure SQL database. Required on PUT (CreateOrReplace) requests.
- max
Batch NumberCount - Max Batch count for write to Sql database, the default value is 10,000. Optional on PUT requests.
- max
Writer NumberCount - Max Writer count, currently only 1(single writer) and 0(based on query partition) are available. Optional on PUT requests.
- password String
- The password that will be used to connect to the Azure SQL database. Required on PUT (CreateOrReplace) requests.
- server String
- The name of the SQL server containing the Azure SQL database. Required on PUT (CreateOrReplace) requests.
- table String
- The name of the table in the Azure SQL database. Required on PUT (CreateOrReplace) requests.
- user String
- The user name that will be used to connect to the Azure SQL database. Required on PUT (CreateOrReplace) requests.
AzureSqlDatabaseOutputDataSourceResponse, AzureSqlDatabaseOutputDataSourceResponseArgs
- Authentication
Mode string - Authentication Mode.
- Database string
- The name of the Azure SQL database. Required on PUT (CreateOrReplace) requests.
- Max
Batch doubleCount - Max Batch count for write to Sql database, the default value is 10,000. Optional on PUT requests.
- Max
Writer doubleCount - Max Writer count, currently only 1(single writer) and 0(based on query partition) are available. Optional on PUT requests.
- Password string
- The password that will be used to connect to the Azure SQL database. Required on PUT (CreateOrReplace) requests.
- Server string
- The name of the SQL server containing the Azure SQL database. Required on PUT (CreateOrReplace) requests.
- Table string
- The name of the table in the Azure SQL database. Required on PUT (CreateOrReplace) requests.
- User string
- The user name that will be used to connect to the Azure SQL database. Required on PUT (CreateOrReplace) requests.
- Authentication
Mode string - Authentication Mode.
- Database string
- The name of the Azure SQL database. Required on PUT (CreateOrReplace) requests.
- Max
Batch float64Count - Max Batch count for write to Sql database, the default value is 10,000. Optional on PUT requests.
- Max
Writer float64Count - Max Writer count, currently only 1(single writer) and 0(based on query partition) are available. Optional on PUT requests.
- Password string
- The password that will be used to connect to the Azure SQL database. Required on PUT (CreateOrReplace) requests.
- Server string
- The name of the SQL server containing the Azure SQL database. Required on PUT (CreateOrReplace) requests.
- Table string
- The name of the table in the Azure SQL database. Required on PUT (CreateOrReplace) requests.
- User string
- The user name that will be used to connect to the Azure SQL database. Required on PUT (CreateOrReplace) requests.
- authentication
Mode String - Authentication Mode.
- database String
- The name of the Azure SQL database. Required on PUT (CreateOrReplace) requests.
- max
Batch DoubleCount - Max Batch count for write to Sql database, the default value is 10,000. Optional on PUT requests.
- max
Writer DoubleCount - Max Writer count, currently only 1(single writer) and 0(based on query partition) are available. Optional on PUT requests.
- password String
- The password that will be used to connect to the Azure SQL database. Required on PUT (CreateOrReplace) requests.
- server String
- The name of the SQL server containing the Azure SQL database. Required on PUT (CreateOrReplace) requests.
- table String
- The name of the table in the Azure SQL database. Required on PUT (CreateOrReplace) requests.
- user String
- The user name that will be used to connect to the Azure SQL database. Required on PUT (CreateOrReplace) requests.
- authentication
Mode string - Authentication Mode.
- database string
- The name of the Azure SQL database. Required on PUT (CreateOrReplace) requests.
- max
Batch numberCount - Max Batch count for write to Sql database, the default value is 10,000. Optional on PUT requests.
- max
Writer numberCount - Max Writer count, currently only 1(single writer) and 0(based on query partition) are available. Optional on PUT requests.
- password string
- The password that will be used to connect to the Azure SQL database. Required on PUT (CreateOrReplace) requests.
- server string
- The name of the SQL server containing the Azure SQL database. Required on PUT (CreateOrReplace) requests.
- table string
- The name of the table in the Azure SQL database. Required on PUT (CreateOrReplace) requests.
- user string
- The user name that will be used to connect to the Azure SQL database. Required on PUT (CreateOrReplace) requests.
- authentication_
mode str - Authentication Mode.
- database str
- The name of the Azure SQL database. Required on PUT (CreateOrReplace) requests.
- max_
batch_ floatcount - Max Batch count for write to Sql database, the default value is 10,000. Optional on PUT requests.
- max_
writer_ floatcount - Max Writer count, currently only 1(single writer) and 0(based on query partition) are available. Optional on PUT requests.
- password str
- The password that will be used to connect to the Azure SQL database. Required on PUT (CreateOrReplace) requests.
- server str
- The name of the SQL server containing the Azure SQL database. Required on PUT (CreateOrReplace) requests.
- table str
- The name of the table in the Azure SQL database. Required on PUT (CreateOrReplace) requests.
- user str
- The user name that will be used to connect to the Azure SQL database. Required on PUT (CreateOrReplace) requests.
- authentication
Mode String - Authentication Mode.
- database String
- The name of the Azure SQL database. Required on PUT (CreateOrReplace) requests.
- max
Batch NumberCount - Max Batch count for write to Sql database, the default value is 10,000. Optional on PUT requests.
- max
Writer NumberCount - Max Writer count, currently only 1(single writer) and 0(based on query partition) are available. Optional on PUT requests.
- password String
- The password that will be used to connect to the Azure SQL database. Required on PUT (CreateOrReplace) requests.
- server String
- The name of the SQL server containing the Azure SQL database. Required on PUT (CreateOrReplace) requests.
- table String
- The name of the table in the Azure SQL database. Required on PUT (CreateOrReplace) requests.
- user String
- The user name that will be used to connect to the Azure SQL database. Required on PUT (CreateOrReplace) requests.
AzureSqlReferenceInputDataSource, AzureSqlReferenceInputDataSourceArgs
- Database string
- This element is associated with the datasource element. This is the name of the database that output will be written to.
- Delta
Snapshot stringQuery - This element is associated with the datasource element. This query is used to fetch incremental changes from the SQL database. To use this option, we recommend using temporal tables in Azure SQL Database.
- Full
Snapshot stringQuery - This element is associated with the datasource element. This query is used to fetch data from the sql database.
- Password string
- This element is associated with the datasource element. This is the password that will be used to connect to the SQL Database instance.
- Refresh
Rate string - This element is associated with the datasource element. This indicates how frequently the data will be fetched from the database. It is of DateTime format.
- Refresh
Type string | Pulumi.Azure Native. Stream Analytics. Refresh Type - Indicates the type of data refresh option.
- Server string
- This element is associated with the datasource element. This is the name of the server that contains the database that will be written to.
- Table string
- This element is associated with the datasource element. The name of the table in the Azure SQL database..
- User string
- This element is associated with the datasource element. This is the user name that will be used to connect to the SQL Database instance.
- Database string
- This element is associated with the datasource element. This is the name of the database that output will be written to.
- Delta
Snapshot stringQuery - This element is associated with the datasource element. This query is used to fetch incremental changes from the SQL database. To use this option, we recommend using temporal tables in Azure SQL Database.
- Full
Snapshot stringQuery - This element is associated with the datasource element. This query is used to fetch data from the sql database.
- Password string
- This element is associated with the datasource element. This is the password that will be used to connect to the SQL Database instance.
- Refresh
Rate string - This element is associated with the datasource element. This indicates how frequently the data will be fetched from the database. It is of DateTime format.
- Refresh
Type string | RefreshType - Indicates the type of data refresh option.
- Server string
- This element is associated with the datasource element. This is the name of the server that contains the database that will be written to.
- Table string
- This element is associated with the datasource element. The name of the table in the Azure SQL database..
- User string
- This element is associated with the datasource element. This is the user name that will be used to connect to the SQL Database instance.
- database String
- This element is associated with the datasource element. This is the name of the database that output will be written to.
- delta
Snapshot StringQuery - This element is associated with the datasource element. This query is used to fetch incremental changes from the SQL database. To use this option, we recommend using temporal tables in Azure SQL Database.
- full
Snapshot StringQuery - This element is associated with the datasource element. This query is used to fetch data from the sql database.
- password String
- This element is associated with the datasource element. This is the password that will be used to connect to the SQL Database instance.
- refresh
Rate String - This element is associated with the datasource element. This indicates how frequently the data will be fetched from the database. It is of DateTime format.
- refresh
Type String | RefreshType - Indicates the type of data refresh option.
- server String
- This element is associated with the datasource element. This is the name of the server that contains the database that will be written to.
- table String
- This element is associated with the datasource element. The name of the table in the Azure SQL database..
- user String
- This element is associated with the datasource element. This is the user name that will be used to connect to the SQL Database instance.
- database string
- This element is associated with the datasource element. This is the name of the database that output will be written to.
- delta
Snapshot stringQuery - This element is associated with the datasource element. This query is used to fetch incremental changes from the SQL database. To use this option, we recommend using temporal tables in Azure SQL Database.
- full
Snapshot stringQuery - This element is associated with the datasource element. This query is used to fetch data from the sql database.
- password string
- This element is associated with the datasource element. This is the password that will be used to connect to the SQL Database instance.
- refresh
Rate string - This element is associated with the datasource element. This indicates how frequently the data will be fetched from the database. It is of DateTime format.
- refresh
Type string | RefreshType - Indicates the type of data refresh option.
- server string
- This element is associated with the datasource element. This is the name of the server that contains the database that will be written to.
- table string
- This element is associated with the datasource element. The name of the table in the Azure SQL database..
- user string
- This element is associated with the datasource element. This is the user name that will be used to connect to the SQL Database instance.
- database str
- This element is associated with the datasource element. This is the name of the database that output will be written to.
- delta_
snapshot_ strquery - This element is associated with the datasource element. This query is used to fetch incremental changes from the SQL database. To use this option, we recommend using temporal tables in Azure SQL Database.
- full_
snapshot_ strquery - This element is associated with the datasource element. This query is used to fetch data from the sql database.
- password str
- This element is associated with the datasource element. This is the password that will be used to connect to the SQL Database instance.
- refresh_
rate str - This element is associated with the datasource element. This indicates how frequently the data will be fetched from the database. It is of DateTime format.
- refresh_
type str | RefreshType - Indicates the type of data refresh option.
- server str
- This element is associated with the datasource element. This is the name of the server that contains the database that will be written to.
- table str
- This element is associated with the datasource element. The name of the table in the Azure SQL database..
- user str
- This element is associated with the datasource element. This is the user name that will be used to connect to the SQL Database instance.
- database String
- This element is associated with the datasource element. This is the name of the database that output will be written to.
- delta
Snapshot StringQuery - This element is associated with the datasource element. This query is used to fetch incremental changes from the SQL database. To use this option, we recommend using temporal tables in Azure SQL Database.
- full
Snapshot StringQuery - This element is associated with the datasource element. This query is used to fetch data from the sql database.
- password String
- This element is associated with the datasource element. This is the password that will be used to connect to the SQL Database instance.
- refresh
Rate String - This element is associated with the datasource element. This indicates how frequently the data will be fetched from the database. It is of DateTime format.
- refresh
Type String | "Static" | "RefreshPeriodically With Full" | "Refresh Periodically With Delta" - Indicates the type of data refresh option.
- server String
- This element is associated with the datasource element. This is the name of the server that contains the database that will be written to.
- table String
- This element is associated with the datasource element. The name of the table in the Azure SQL database..
- user String
- This element is associated with the datasource element. This is the user name that will be used to connect to the SQL Database instance.
AzureSqlReferenceInputDataSourceResponse, AzureSqlReferenceInputDataSourceResponseArgs
- Database string
- This element is associated with the datasource element. This is the name of the database that output will be written to.
- Delta
Snapshot stringQuery - This element is associated with the datasource element. This query is used to fetch incremental changes from the SQL database. To use this option, we recommend using temporal tables in Azure SQL Database.
- Full
Snapshot stringQuery - This element is associated with the datasource element. This query is used to fetch data from the sql database.
- Password string
- This element is associated with the datasource element. This is the password that will be used to connect to the SQL Database instance.
- Refresh
Rate string - This element is associated with the datasource element. This indicates how frequently the data will be fetched from the database. It is of DateTime format.
- Refresh
Type string - Indicates the type of data refresh option.
- Server string
- This element is associated with the datasource element. This is the name of the server that contains the database that will be written to.
- Table string
- This element is associated with the datasource element. The name of the table in the Azure SQL database..
- User string
- This element is associated with the datasource element. This is the user name that will be used to connect to the SQL Database instance.
- Database string
- This element is associated with the datasource element. This is the name of the database that output will be written to.
- Delta
Snapshot stringQuery - This element is associated with the datasource element. This query is used to fetch incremental changes from the SQL database. To use this option, we recommend using temporal tables in Azure SQL Database.
- Full
Snapshot stringQuery - This element is associated with the datasource element. This query is used to fetch data from the sql database.
- Password string
- This element is associated with the datasource element. This is the password that will be used to connect to the SQL Database instance.
- Refresh
Rate string - This element is associated with the datasource element. This indicates how frequently the data will be fetched from the database. It is of DateTime format.
- Refresh
Type string - Indicates the type of data refresh option.
- Server string
- This element is associated with the datasource element. This is the name of the server that contains the database that will be written to.
- Table string
- This element is associated with the datasource element. The name of the table in the Azure SQL database..
- User string
- This element is associated with the datasource element. This is the user name that will be used to connect to the SQL Database instance.
- database String
- This element is associated with the datasource element. This is the name of the database that output will be written to.
- delta
Snapshot StringQuery - This element is associated with the datasource element. This query is used to fetch incremental changes from the SQL database. To use this option, we recommend using temporal tables in Azure SQL Database.
- full
Snapshot StringQuery - This element is associated with the datasource element. This query is used to fetch data from the sql database.
- password String
- This element is associated with the datasource element. This is the password that will be used to connect to the SQL Database instance.
- refresh
Rate String - This element is associated with the datasource element. This indicates how frequently the data will be fetched from the database. It is of DateTime format.
- refresh
Type String - Indicates the type of data refresh option.
- server String
- This element is associated with the datasource element. This is the name of the server that contains the database that will be written to.
- table String
- This element is associated with the datasource element. The name of the table in the Azure SQL database..
- user String
- This element is associated with the datasource element. This is the user name that will be used to connect to the SQL Database instance.
- database string
- This element is associated with the datasource element. This is the name of the database that output will be written to.
- delta
Snapshot stringQuery - This element is associated with the datasource element. This query is used to fetch incremental changes from the SQL database. To use this option, we recommend using temporal tables in Azure SQL Database.
- full
Snapshot stringQuery - This element is associated with the datasource element. This query is used to fetch data from the sql database.
- password string
- This element is associated with the datasource element. This is the password that will be used to connect to the SQL Database instance.
- refresh
Rate string - This element is associated with the datasource element. This indicates how frequently the data will be fetched from the database. It is of DateTime format.
- refresh
Type string - Indicates the type of data refresh option.
- server string
- This element is associated with the datasource element. This is the name of the server that contains the database that will be written to.
- table string
- This element is associated with the datasource element. The name of the table in the Azure SQL database..
- user string
- This element is associated with the datasource element. This is the user name that will be used to connect to the SQL Database instance.
- database str
- This element is associated with the datasource element. This is the name of the database that output will be written to.
- delta_
snapshot_ strquery - This element is associated with the datasource element. This query is used to fetch incremental changes from the SQL database. To use this option, we recommend using temporal tables in Azure SQL Database.
- full_
snapshot_ strquery - This element is associated with the datasource element. This query is used to fetch data from the sql database.
- password str
- This element is associated with the datasource element. This is the password that will be used to connect to the SQL Database instance.
- refresh_
rate str - This element is associated with the datasource element. This indicates how frequently the data will be fetched from the database. It is of DateTime format.
- refresh_
type str - Indicates the type of data refresh option.
- server str
- This element is associated with the datasource element. This is the name of the server that contains the database that will be written to.
- table str
- This element is associated with the datasource element. The name of the table in the Azure SQL database..
- user str
- This element is associated with the datasource element. This is the user name that will be used to connect to the SQL Database instance.
- database String
- This element is associated with the datasource element. This is the name of the database that output will be written to.
- delta
Snapshot StringQuery - This element is associated with the datasource element. This query is used to fetch incremental changes from the SQL database. To use this option, we recommend using temporal tables in Azure SQL Database.
- full
Snapshot StringQuery - This element is associated with the datasource element. This query is used to fetch data from the sql database.
- password String
- This element is associated with the datasource element. This is the password that will be used to connect to the SQL Database instance.
- refresh
Rate String - This element is associated with the datasource element. This indicates how frequently the data will be fetched from the database. It is of DateTime format.
- refresh
Type String - Indicates the type of data refresh option.
- server String
- This element is associated with the datasource element. This is the name of the server that contains the database that will be written to.
- table String
- This element is associated with the datasource element. The name of the table in the Azure SQL database..
- user String
- This element is associated with the datasource element. This is the user name that will be used to connect to the SQL Database instance.
AzureSynapseOutputDataSource, AzureSynapseOutputDataSourceArgs
- Database string
- The name of the Azure SQL database. Required on PUT (CreateOrReplace) requests.
- Password string
- The password that will be used to connect to the Azure SQL database. Required on PUT (CreateOrReplace) requests.
- Server string
- The name of the SQL server containing the Azure SQL database. Required on PUT (CreateOrReplace) requests.
- Table string
- The name of the table in the Azure SQL database. Required on PUT (CreateOrReplace) requests.
- User string
- The user name that will be used to connect to the Azure SQL database. Required on PUT (CreateOrReplace) requests.
- Database string
- The name of the Azure SQL database. Required on PUT (CreateOrReplace) requests.
- Password string
- The password that will be used to connect to the Azure SQL database. Required on PUT (CreateOrReplace) requests.
- Server string
- The name of the SQL server containing the Azure SQL database. Required on PUT (CreateOrReplace) requests.
- Table string
- The name of the table in the Azure SQL database. Required on PUT (CreateOrReplace) requests.
- User string
- The user name that will be used to connect to the Azure SQL database. Required on PUT (CreateOrReplace) requests.
- database String
- The name of the Azure SQL database. Required on PUT (CreateOrReplace) requests.
- password String
- The password that will be used to connect to the Azure SQL database. Required on PUT (CreateOrReplace) requests.
- server String
- The name of the SQL server containing the Azure SQL database. Required on PUT (CreateOrReplace) requests.
- table String
- The name of the table in the Azure SQL database. Required on PUT (CreateOrReplace) requests.
- user String
- The user name that will be used to connect to the Azure SQL database. Required on PUT (CreateOrReplace) requests.
- database string
- The name of the Azure SQL database. Required on PUT (CreateOrReplace) requests.
- password string
- The password that will be used to connect to the Azure SQL database. Required on PUT (CreateOrReplace) requests.
- server string
- The name of the SQL server containing the Azure SQL database. Required on PUT (CreateOrReplace) requests.
- table string
- The name of the table in the Azure SQL database. Required on PUT (CreateOrReplace) requests.
- user string
- The user name that will be used to connect to the Azure SQL database. Required on PUT (CreateOrReplace) requests.
- database str
- The name of the Azure SQL database. Required on PUT (CreateOrReplace) requests.
- password str
- The password that will be used to connect to the Azure SQL database. Required on PUT (CreateOrReplace) requests.
- server str
- The name of the SQL server containing the Azure SQL database. Required on PUT (CreateOrReplace) requests.
- table str
- The name of the table in the Azure SQL database. Required on PUT (CreateOrReplace) requests.
- user str
- The user name that will be used to connect to the Azure SQL database. Required on PUT (CreateOrReplace) requests.
- database String
- The name of the Azure SQL database. Required on PUT (CreateOrReplace) requests.
- password String
- The password that will be used to connect to the Azure SQL database. Required on PUT (CreateOrReplace) requests.
- server String
- The name of the SQL server containing the Azure SQL database. Required on PUT (CreateOrReplace) requests.
- table String
- The name of the table in the Azure SQL database. Required on PUT (CreateOrReplace) requests.
- user String
- The user name that will be used to connect to the Azure SQL database. Required on PUT (CreateOrReplace) requests.
AzureSynapseOutputDataSourceResponse, AzureSynapseOutputDataSourceResponseArgs
- Database string
- The name of the Azure SQL database. Required on PUT (CreateOrReplace) requests.
- Password string
- The password that will be used to connect to the Azure SQL database. Required on PUT (CreateOrReplace) requests.
- Server string
- The name of the SQL server containing the Azure SQL database. Required on PUT (CreateOrReplace) requests.
- Table string
- The name of the table in the Azure SQL database. Required on PUT (CreateOrReplace) requests.
- User string
- The user name that will be used to connect to the Azure SQL database. Required on PUT (CreateOrReplace) requests.
- Database string
- The name of the Azure SQL database. Required on PUT (CreateOrReplace) requests.
- Password string
- The password that will be used to connect to the Azure SQL database. Required on PUT (CreateOrReplace) requests.
- Server string
- The name of the SQL server containing the Azure SQL database. Required on PUT (CreateOrReplace) requests.
- Table string
- The name of the table in the Azure SQL database. Required on PUT (CreateOrReplace) requests.
- User string
- The user name that will be used to connect to the Azure SQL database. Required on PUT (CreateOrReplace) requests.
- database String
- The name of the Azure SQL database. Required on PUT (CreateOrReplace) requests.
- password String
- The password that will be used to connect to the Azure SQL database. Required on PUT (CreateOrReplace) requests.
- server String
- The name of the SQL server containing the Azure SQL database. Required on PUT (CreateOrReplace) requests.
- table String
- The name of the table in the Azure SQL database. Required on PUT (CreateOrReplace) requests.
- user String
- The user name that will be used to connect to the Azure SQL database. Required on PUT (CreateOrReplace) requests.
- database string
- The name of the Azure SQL database. Required on PUT (CreateOrReplace) requests.
- password string
- The password that will be used to connect to the Azure SQL database. Required on PUT (CreateOrReplace) requests.
- server string
- The name of the SQL server containing the Azure SQL database. Required on PUT (CreateOrReplace) requests.
- table string
- The name of the table in the Azure SQL database. Required on PUT (CreateOrReplace) requests.
- user string
- The user name that will be used to connect to the Azure SQL database. Required on PUT (CreateOrReplace) requests.
- database str
- The name of the Azure SQL database. Required on PUT (CreateOrReplace) requests.
- password str
- The password that will be used to connect to the Azure SQL database. Required on PUT (CreateOrReplace) requests.
- server str
- The name of the SQL server containing the Azure SQL database. Required on PUT (CreateOrReplace) requests.
- table str
- The name of the table in the Azure SQL database. Required on PUT (CreateOrReplace) requests.
- user str
- The user name that will be used to connect to the Azure SQL database. Required on PUT (CreateOrReplace) requests.
- database String
- The name of the Azure SQL database. Required on PUT (CreateOrReplace) requests.
- password String
- The password that will be used to connect to the Azure SQL database. Required on PUT (CreateOrReplace) requests.
- server String
- The name of the SQL server containing the Azure SQL database. Required on PUT (CreateOrReplace) requests.
- table String
- The name of the table in the Azure SQL database. Required on PUT (CreateOrReplace) requests.
- user String
- The user name that will be used to connect to the Azure SQL database. Required on PUT (CreateOrReplace) requests.
AzureTableOutputDataSource, AzureTableOutputDataSourceArgs
- Account
Key string - The account key for the Azure Storage account. Required on PUT (CreateOrReplace) requests.
- Account
Name string - The name of the Azure Storage account. Required on PUT (CreateOrReplace) requests.
- Batch
Size int - The number of rows to write to the Azure Table at a time.
- Columns
To List<string>Remove - If specified, each item in the array is the name of a column to remove (if present) from output event entities.
- Partition
Key string - This element indicates the name of a column from the SELECT statement in the query that will be used as the partition key for the Azure Table. Required on PUT (CreateOrReplace) requests.
- Row
Key string - This element indicates the name of a column from the SELECT statement in the query that will be used as the row key for the Azure Table. Required on PUT (CreateOrReplace) requests.
- Table string
- The name of the Azure Table. Required on PUT (CreateOrReplace) requests.
- Account
Key string - The account key for the Azure Storage account. Required on PUT (CreateOrReplace) requests.
- Account
Name string - The name of the Azure Storage account. Required on PUT (CreateOrReplace) requests.
- Batch
Size int - The number of rows to write to the Azure Table at a time.
- Columns
To []stringRemove - If specified, each item in the array is the name of a column to remove (if present) from output event entities.
- Partition
Key string - This element indicates the name of a column from the SELECT statement in the query that will be used as the partition key for the Azure Table. Required on PUT (CreateOrReplace) requests.
- Row
Key string - This element indicates the name of a column from the SELECT statement in the query that will be used as the row key for the Azure Table. Required on PUT (CreateOrReplace) requests.
- Table string
- The name of the Azure Table. Required on PUT (CreateOrReplace) requests.
- account
Key String - The account key for the Azure Storage account. Required on PUT (CreateOrReplace) requests.
- account
Name String - The name of the Azure Storage account. Required on PUT (CreateOrReplace) requests.
- batch
Size Integer - The number of rows to write to the Azure Table at a time.
- columns
To List<String>Remove - If specified, each item in the array is the name of a column to remove (if present) from output event entities.
- partition
Key String - This element indicates the name of a column from the SELECT statement in the query that will be used as the partition key for the Azure Table. Required on PUT (CreateOrReplace) requests.
- row
Key String - This element indicates the name of a column from the SELECT statement in the query that will be used as the row key for the Azure Table. Required on PUT (CreateOrReplace) requests.
- table String
- The name of the Azure Table. Required on PUT (CreateOrReplace) requests.
- account
Key string - The account key for the Azure Storage account. Required on PUT (CreateOrReplace) requests.
- account
Name string - The name of the Azure Storage account. Required on PUT (CreateOrReplace) requests.
- batch
Size number - The number of rows to write to the Azure Table at a time.
- columns
To string[]Remove - If specified, each item in the array is the name of a column to remove (if present) from output event entities.
- partition
Key string - This element indicates the name of a column from the SELECT statement in the query that will be used as the partition key for the Azure Table. Required on PUT (CreateOrReplace) requests.
- row
Key string - This element indicates the name of a column from the SELECT statement in the query that will be used as the row key for the Azure Table. Required on PUT (CreateOrReplace) requests.
- table string
- The name of the Azure Table. Required on PUT (CreateOrReplace) requests.
- account_
key str - The account key for the Azure Storage account. Required on PUT (CreateOrReplace) requests.
- account_
name str - The name of the Azure Storage account. Required on PUT (CreateOrReplace) requests.
- batch_
size int - The number of rows to write to the Azure Table at a time.
- columns_
to_ Sequence[str]remove - If specified, each item in the array is the name of a column to remove (if present) from output event entities.
- partition_
key str - This element indicates the name of a column from the SELECT statement in the query that will be used as the partition key for the Azure Table. Required on PUT (CreateOrReplace) requests.
- row_
key str - This element indicates the name of a column from the SELECT statement in the query that will be used as the row key for the Azure Table. Required on PUT (CreateOrReplace) requests.
- table str
- The name of the Azure Table. Required on PUT (CreateOrReplace) requests.
- account
Key String - The account key for the Azure Storage account. Required on PUT (CreateOrReplace) requests.
- account
Name String - The name of the Azure Storage account. Required on PUT (CreateOrReplace) requests.
- batch
Size Number - The number of rows to write to the Azure Table at a time.
- columns
To List<String>Remove - If specified, each item in the array is the name of a column to remove (if present) from output event entities.
- partition
Key String - This element indicates the name of a column from the SELECT statement in the query that will be used as the partition key for the Azure Table. Required on PUT (CreateOrReplace) requests.
- row
Key String - This element indicates the name of a column from the SELECT statement in the query that will be used as the row key for the Azure Table. Required on PUT (CreateOrReplace) requests.
- table String
- The name of the Azure Table. Required on PUT (CreateOrReplace) requests.
AzureTableOutputDataSourceResponse, AzureTableOutputDataSourceResponseArgs
- Account
Key string - The account key for the Azure Storage account. Required on PUT (CreateOrReplace) requests.
- Account
Name string - The name of the Azure Storage account. Required on PUT (CreateOrReplace) requests.
- Batch
Size int - The number of rows to write to the Azure Table at a time.
- Columns
To List<string>Remove - If specified, each item in the array is the name of a column to remove (if present) from output event entities.
- Partition
Key string - This element indicates the name of a column from the SELECT statement in the query that will be used as the partition key for the Azure Table. Required on PUT (CreateOrReplace) requests.
- Row
Key string - This element indicates the name of a column from the SELECT statement in the query that will be used as the row key for the Azure Table. Required on PUT (CreateOrReplace) requests.
- Table string
- The name of the Azure Table. Required on PUT (CreateOrReplace) requests.
- Account
Key string - The account key for the Azure Storage account. Required on PUT (CreateOrReplace) requests.
- Account
Name string - The name of the Azure Storage account. Required on PUT (CreateOrReplace) requests.
- Batch
Size int - The number of rows to write to the Azure Table at a time.
- Columns
To []stringRemove - If specified, each item in the array is the name of a column to remove (if present) from output event entities.
- Partition
Key string - This element indicates the name of a column from the SELECT statement in the query that will be used as the partition key for the Azure Table. Required on PUT (CreateOrReplace) requests.
- Row
Key string - This element indicates the name of a column from the SELECT statement in the query that will be used as the row key for the Azure Table. Required on PUT (CreateOrReplace) requests.
- Table string
- The name of the Azure Table. Required on PUT (CreateOrReplace) requests.
- account
Key String - The account key for the Azure Storage account. Required on PUT (CreateOrReplace) requests.
- account
Name String - The name of the Azure Storage account. Required on PUT (CreateOrReplace) requests.
- batch
Size Integer - The number of rows to write to the Azure Table at a time.
- columns
To List<String>Remove - If specified, each item in the array is the name of a column to remove (if present) from output event entities.
- partition
Key String - This element indicates the name of a column from the SELECT statement in the query that will be used as the partition key for the Azure Table. Required on PUT (CreateOrReplace) requests.
- row
Key String - This element indicates the name of a column from the SELECT statement in the query that will be used as the row key for the Azure Table. Required on PUT (CreateOrReplace) requests.
- table String
- The name of the Azure Table. Required on PUT (CreateOrReplace) requests.
- account
Key string - The account key for the Azure Storage account. Required on PUT (CreateOrReplace) requests.
- account
Name string - The name of the Azure Storage account. Required on PUT (CreateOrReplace) requests.
- batch
Size number - The number of rows to write to the Azure Table at a time.
- columns
To string[]Remove - If specified, each item in the array is the name of a column to remove (if present) from output event entities.
- partition
Key string - This element indicates the name of a column from the SELECT statement in the query that will be used as the partition key for the Azure Table. Required on PUT (CreateOrReplace) requests.
- row
Key string - This element indicates the name of a column from the SELECT statement in the query that will be used as the row key for the Azure Table. Required on PUT (CreateOrReplace) requests.
- table string
- The name of the Azure Table. Required on PUT (CreateOrReplace) requests.
- account_
key str - The account key for the Azure Storage account. Required on PUT (CreateOrReplace) requests.
- account_
name str - The name of the Azure Storage account. Required on PUT (CreateOrReplace) requests.
- batch_
size int - The number of rows to write to the Azure Table at a time.
- columns_
to_ Sequence[str]remove - If specified, each item in the array is the name of a column to remove (if present) from output event entities.
- partition_
key str - This element indicates the name of a column from the SELECT statement in the query that will be used as the partition key for the Azure Table. Required on PUT (CreateOrReplace) requests.
- row_
key str - This element indicates the name of a column from the SELECT statement in the query that will be used as the row key for the Azure Table. Required on PUT (CreateOrReplace) requests.
- table str
- The name of the Azure Table. Required on PUT (CreateOrReplace) requests.
- account
Key String - The account key for the Azure Storage account. Required on PUT (CreateOrReplace) requests.
- account
Name String - The name of the Azure Storage account. Required on PUT (CreateOrReplace) requests.
- batch
Size Number - The number of rows to write to the Azure Table at a time.
- columns
To List<String>Remove - If specified, each item in the array is the name of a column to remove (if present) from output event entities.
- partition
Key String - This element indicates the name of a column from the SELECT statement in the query that will be used as the partition key for the Azure Table. Required on PUT (CreateOrReplace) requests.
- row
Key String - This element indicates the name of a column from the SELECT statement in the query that will be used as the row key for the Azure Table. Required on PUT (CreateOrReplace) requests.
- table String
- The name of the Azure Table. Required on PUT (CreateOrReplace) requests.
BlobOutputDataSource, BlobOutputDataSourceArgs
- Authentication
Mode string | Pulumi.Azure Native. Stream Analytics. Authentication Mode - Authentication Mode.
- Blob
Path stringPrefix - Blob path prefix.
- Container string
- The name of a container within the associated Storage account. This container contains either the blob(s) to be read from or written to. Required on PUT (CreateOrReplace) requests.
- Date
Format string - The date format. Wherever {date} appears in pathPattern, the value of this property is used as the date format instead.
- Path
Pattern string - The blob path pattern. Not a regular expression. It represents a pattern against which blob names will be matched to determine whether or not they should be included as input or output to the job. See https://docs.microsoft.com/en-us/rest/api/streamanalytics/stream-analytics-input or https://docs.microsoft.com/en-us/rest/api/streamanalytics/stream-analytics-output for a more detailed explanation and example.
- Storage
Accounts List<Pulumi.Azure Native. Stream Analytics. Inputs. Storage Account> - A list of one or more Azure Storage accounts. Required on PUT (CreateOrReplace) requests.
- Time
Format string - The time format. Wherever {time} appears in pathPattern, the value of this property is used as the time format instead.
- Authentication
Mode string | AuthenticationMode - Authentication Mode.
- Blob
Path stringPrefix - Blob path prefix.
- Container string
- The name of a container within the associated Storage account. This container contains either the blob(s) to be read from or written to. Required on PUT (CreateOrReplace) requests.
- Date
Format string - The date format. Wherever {date} appears in pathPattern, the value of this property is used as the date format instead.
- Path
Pattern string - The blob path pattern. Not a regular expression. It represents a pattern against which blob names will be matched to determine whether or not they should be included as input or output to the job. See https://docs.microsoft.com/en-us/rest/api/streamanalytics/stream-analytics-input or https://docs.microsoft.com/en-us/rest/api/streamanalytics/stream-analytics-output for a more detailed explanation and example.
- Storage
Accounts []StorageAccount - A list of one or more Azure Storage accounts. Required on PUT (CreateOrReplace) requests.
- Time
Format string - The time format. Wherever {time} appears in pathPattern, the value of this property is used as the time format instead.
- authentication
Mode String | AuthenticationMode - Authentication Mode.
- blob
Path StringPrefix - Blob path prefix.
- container String
- The name of a container within the associated Storage account. This container contains either the blob(s) to be read from or written to. Required on PUT (CreateOrReplace) requests.
- date
Format String - The date format. Wherever {date} appears in pathPattern, the value of this property is used as the date format instead.
- path
Pattern String - The blob path pattern. Not a regular expression. It represents a pattern against which blob names will be matched to determine whether or not they should be included as input or output to the job. See https://docs.microsoft.com/en-us/rest/api/streamanalytics/stream-analytics-input or https://docs.microsoft.com/en-us/rest/api/streamanalytics/stream-analytics-output for a more detailed explanation and example.
- storage
Accounts List<StorageAccount> - A list of one or more Azure Storage accounts. Required on PUT (CreateOrReplace) requests.
- time
Format String - The time format. Wherever {time} appears in pathPattern, the value of this property is used as the time format instead.
- authentication
Mode string | AuthenticationMode - Authentication Mode.
- blob
Path stringPrefix - Blob path prefix.
- container string
- The name of a container within the associated Storage account. This container contains either the blob(s) to be read from or written to. Required on PUT (CreateOrReplace) requests.
- date
Format string - The date format. Wherever {date} appears in pathPattern, the value of this property is used as the date format instead.
- path
Pattern string - The blob path pattern. Not a regular expression. It represents a pattern against which blob names will be matched to determine whether or not they should be included as input or output to the job. See https://docs.microsoft.com/en-us/rest/api/streamanalytics/stream-analytics-input or https://docs.microsoft.com/en-us/rest/api/streamanalytics/stream-analytics-output for a more detailed explanation and example.
- storage
Accounts StorageAccount[] - A list of one or more Azure Storage accounts. Required on PUT (CreateOrReplace) requests.
- time
Format string - The time format. Wherever {time} appears in pathPattern, the value of this property is used as the time format instead.
- authentication_
mode str | AuthenticationMode - Authentication Mode.
- blob_
path_ strprefix - Blob path prefix.
- container str
- The name of a container within the associated Storage account. This container contains either the blob(s) to be read from or written to. Required on PUT (CreateOrReplace) requests.
- date_
format str - The date format. Wherever {date} appears in pathPattern, the value of this property is used as the date format instead.
- path_
pattern str - The blob path pattern. Not a regular expression. It represents a pattern against which blob names will be matched to determine whether or not they should be included as input or output to the job. See https://docs.microsoft.com/en-us/rest/api/streamanalytics/stream-analytics-input or https://docs.microsoft.com/en-us/rest/api/streamanalytics/stream-analytics-output for a more detailed explanation and example.
- storage_
accounts Sequence[StorageAccount] - A list of one or more Azure Storage accounts. Required on PUT (CreateOrReplace) requests.
- time_
format str - The time format. Wherever {time} appears in pathPattern, the value of this property is used as the time format instead.
- authentication
Mode String | "Msi" | "UserToken" | "Connection String" - Authentication Mode.
- blob
Path StringPrefix - Blob path prefix.
- container String
- The name of a container within the associated Storage account. This container contains either the blob(s) to be read from or written to. Required on PUT (CreateOrReplace) requests.
- date
Format String - The date format. Wherever {date} appears in pathPattern, the value of this property is used as the date format instead.
- path
Pattern String - The blob path pattern. Not a regular expression. It represents a pattern against which blob names will be matched to determine whether or not they should be included as input or output to the job. See https://docs.microsoft.com/en-us/rest/api/streamanalytics/stream-analytics-input or https://docs.microsoft.com/en-us/rest/api/streamanalytics/stream-analytics-output for a more detailed explanation and example.
- storage
Accounts List<Property Map> - A list of one or more Azure Storage accounts. Required on PUT (CreateOrReplace) requests.
- time
Format String - The time format. Wherever {time} appears in pathPattern, the value of this property is used as the time format instead.
BlobOutputDataSourceResponse, BlobOutputDataSourceResponseArgs
- Authentication
Mode string - Authentication Mode.
- Blob
Path stringPrefix - Blob path prefix.
- Container string
- The name of a container within the associated Storage account. This container contains either the blob(s) to be read from or written to. Required on PUT (CreateOrReplace) requests.
- Date
Format string - The date format. Wherever {date} appears in pathPattern, the value of this property is used as the date format instead.
- Path
Pattern string - The blob path pattern. Not a regular expression. It represents a pattern against which blob names will be matched to determine whether or not they should be included as input or output to the job. See https://docs.microsoft.com/en-us/rest/api/streamanalytics/stream-analytics-input or https://docs.microsoft.com/en-us/rest/api/streamanalytics/stream-analytics-output for a more detailed explanation and example.
- Storage
Accounts List<Pulumi.Azure Native. Stream Analytics. Inputs. Storage Account Response> - A list of one or more Azure Storage accounts. Required on PUT (CreateOrReplace) requests.
- Time
Format string - The time format. Wherever {time} appears in pathPattern, the value of this property is used as the time format instead.
- Authentication
Mode string - Authentication Mode.
- Blob
Path stringPrefix - Blob path prefix.
- Container string
- The name of a container within the associated Storage account. This container contains either the blob(s) to be read from or written to. Required on PUT (CreateOrReplace) requests.
- Date
Format string - The date format. Wherever {date} appears in pathPattern, the value of this property is used as the date format instead.
- Path
Pattern string - The blob path pattern. Not a regular expression. It represents a pattern against which blob names will be matched to determine whether or not they should be included as input or output to the job. See https://docs.microsoft.com/en-us/rest/api/streamanalytics/stream-analytics-input or https://docs.microsoft.com/en-us/rest/api/streamanalytics/stream-analytics-output for a more detailed explanation and example.
- Storage
Accounts []StorageAccount Response - A list of one or more Azure Storage accounts. Required on PUT (CreateOrReplace) requests.
- Time
Format string - The time format. Wherever {time} appears in pathPattern, the value of this property is used as the time format instead.
- authentication
Mode String - Authentication Mode.
- blob
Path StringPrefix - Blob path prefix.
- container String
- The name of a container within the associated Storage account. This container contains either the blob(s) to be read from or written to. Required on PUT (CreateOrReplace) requests.
- date
Format String - The date format. Wherever {date} appears in pathPattern, the value of this property is used as the date format instead.
- path
Pattern String - The blob path pattern. Not a regular expression. It represents a pattern against which blob names will be matched to determine whether or not they should be included as input or output to the job. See https://docs.microsoft.com/en-us/rest/api/streamanalytics/stream-analytics-input or https://docs.microsoft.com/en-us/rest/api/streamanalytics/stream-analytics-output for a more detailed explanation and example.
- storage
Accounts List<StorageAccount Response> - A list of one or more Azure Storage accounts. Required on PUT (CreateOrReplace) requests.
- time
Format String - The time format. Wherever {time} appears in pathPattern, the value of this property is used as the time format instead.
- authentication
Mode string - Authentication Mode.
- blob
Path stringPrefix - Blob path prefix.
- container string
- The name of a container within the associated Storage account. This container contains either the blob(s) to be read from or written to. Required on PUT (CreateOrReplace) requests.
- date
Format string - The date format. Wherever {date} appears in pathPattern, the value of this property is used as the date format instead.
- path
Pattern string - The blob path pattern. Not a regular expression. It represents a pattern against which blob names will be matched to determine whether or not they should be included as input or output to the job. See https://docs.microsoft.com/en-us/rest/api/streamanalytics/stream-analytics-input or https://docs.microsoft.com/en-us/rest/api/streamanalytics/stream-analytics-output for a more detailed explanation and example.
- storage
Accounts StorageAccount Response[] - A list of one or more Azure Storage accounts. Required on PUT (CreateOrReplace) requests.
- time
Format string - The time format. Wherever {time} appears in pathPattern, the value of this property is used as the time format instead.
- authentication_
mode str - Authentication Mode.
- blob_
path_ strprefix - Blob path prefix.
- container str
- The name of a container within the associated Storage account. This container contains either the blob(s) to be read from or written to. Required on PUT (CreateOrReplace) requests.
- date_
format str - The date format. Wherever {date} appears in pathPattern, the value of this property is used as the date format instead.
- path_
pattern str - The blob path pattern. Not a regular expression. It represents a pattern against which blob names will be matched to determine whether or not they should be included as input or output to the job. See https://docs.microsoft.com/en-us/rest/api/streamanalytics/stream-analytics-input or https://docs.microsoft.com/en-us/rest/api/streamanalytics/stream-analytics-output for a more detailed explanation and example.
- storage_
accounts Sequence[StorageAccount Response] - A list of one or more Azure Storage accounts. Required on PUT (CreateOrReplace) requests.
- time_
format str - The time format. Wherever {time} appears in pathPattern, the value of this property is used as the time format instead.
- authentication
Mode String - Authentication Mode.
- blob
Path StringPrefix - Blob path prefix.
- container String
- The name of a container within the associated Storage account. This container contains either the blob(s) to be read from or written to. Required on PUT (CreateOrReplace) requests.
- date
Format String - The date format. Wherever {date} appears in pathPattern, the value of this property is used as the date format instead.
- path
Pattern String - The blob path pattern. Not a regular expression. It represents a pattern against which blob names will be matched to determine whether or not they should be included as input or output to the job. See https://docs.microsoft.com/en-us/rest/api/streamanalytics/stream-analytics-input or https://docs.microsoft.com/en-us/rest/api/streamanalytics/stream-analytics-output for a more detailed explanation and example.
- storage
Accounts List<Property Map> - A list of one or more Azure Storage accounts. Required on PUT (CreateOrReplace) requests.
- time
Format String - The time format. Wherever {time} appears in pathPattern, the value of this property is used as the time format instead.
BlobReferenceInputDataSource, BlobReferenceInputDataSourceArgs
- Authentication
Mode string | Pulumi.Azure Native. Stream Analytics. Authentication Mode - Authentication Mode.
- Container string
- The name of a container within the associated Storage account. This container contains either the blob(s) to be read from or written to. Required on PUT (CreateOrReplace) requests.
- Date
Format string - The date format. Wherever {date} appears in pathPattern, the value of this property is used as the date format instead.
- Path
Pattern string - The blob path pattern. Not a regular expression. It represents a pattern against which blob names will be matched to determine whether or not they should be included as input or output to the job. See https://docs.microsoft.com/en-us/rest/api/streamanalytics/stream-analytics-input or https://docs.microsoft.com/en-us/rest/api/streamanalytics/stream-analytics-output for a more detailed explanation and example.
- Storage
Accounts List<Pulumi.Azure Native. Stream Analytics. Inputs. Storage Account> - A list of one or more Azure Storage accounts. Required on PUT (CreateOrReplace) requests.
- Time
Format string - The time format. Wherever {time} appears in pathPattern, the value of this property is used as the time format instead.
- Authentication
Mode string | AuthenticationMode - Authentication Mode.
- Container string
- The name of a container within the associated Storage account. This container contains either the blob(s) to be read from or written to. Required on PUT (CreateOrReplace) requests.
- Date
Format string - The date format. Wherever {date} appears in pathPattern, the value of this property is used as the date format instead.
- Path
Pattern string - The blob path pattern. Not a regular expression. It represents a pattern against which blob names will be matched to determine whether or not they should be included as input or output to the job. See https://docs.microsoft.com/en-us/rest/api/streamanalytics/stream-analytics-input or https://docs.microsoft.com/en-us/rest/api/streamanalytics/stream-analytics-output for a more detailed explanation and example.
- Storage
Accounts []StorageAccount - A list of one or more Azure Storage accounts. Required on PUT (CreateOrReplace) requests.
- Time
Format string - The time format. Wherever {time} appears in pathPattern, the value of this property is used as the time format instead.
- authentication
Mode String | AuthenticationMode - Authentication Mode.
- container String
- The name of a container within the associated Storage account. This container contains either the blob(s) to be read from or written to. Required on PUT (CreateOrReplace) requests.
- date
Format String - The date format. Wherever {date} appears in pathPattern, the value of this property is used as the date format instead.
- path
Pattern String - The blob path pattern. Not a regular expression. It represents a pattern against which blob names will be matched to determine whether or not they should be included as input or output to the job. See https://docs.microsoft.com/en-us/rest/api/streamanalytics/stream-analytics-input or https://docs.microsoft.com/en-us/rest/api/streamanalytics/stream-analytics-output for a more detailed explanation and example.
- storage
Accounts List<StorageAccount> - A list of one or more Azure Storage accounts. Required on PUT (CreateOrReplace) requests.
- time
Format String - The time format. Wherever {time} appears in pathPattern, the value of this property is used as the time format instead.
- authentication
Mode string | AuthenticationMode - Authentication Mode.
- container string
- The name of a container within the associated Storage account. This container contains either the blob(s) to be read from or written to. Required on PUT (CreateOrReplace) requests.
- date
Format string - The date format. Wherever {date} appears in pathPattern, the value of this property is used as the date format instead.
- path
Pattern string - The blob path pattern. Not a regular expression. It represents a pattern against which blob names will be matched to determine whether or not they should be included as input or output to the job. See https://docs.microsoft.com/en-us/rest/api/streamanalytics/stream-analytics-input or https://docs.microsoft.com/en-us/rest/api/streamanalytics/stream-analytics-output for a more detailed explanation and example.
- storage
Accounts StorageAccount[] - A list of one or more Azure Storage accounts. Required on PUT (CreateOrReplace) requests.
- time
Format string - The time format. Wherever {time} appears in pathPattern, the value of this property is used as the time format instead.
- authentication_
mode str | AuthenticationMode - Authentication Mode.
- container str
- The name of a container within the associated Storage account. This container contains either the blob(s) to be read from or written to. Required on PUT (CreateOrReplace) requests.
- date_
format str - The date format. Wherever {date} appears in pathPattern, the value of this property is used as the date format instead.
- path_
pattern str - The blob path pattern. Not a regular expression. It represents a pattern against which blob names will be matched to determine whether or not they should be included as input or output to the job. See https://docs.microsoft.com/en-us/rest/api/streamanalytics/stream-analytics-input or https://docs.microsoft.com/en-us/rest/api/streamanalytics/stream-analytics-output for a more detailed explanation and example.
- storage_
accounts Sequence[StorageAccount] - A list of one or more Azure Storage accounts. Required on PUT (CreateOrReplace) requests.
- time_
format str - The time format. Wherever {time} appears in pathPattern, the value of this property is used as the time format instead.
- authentication
Mode String | "Msi" | "UserToken" | "Connection String" - Authentication Mode.
- container String
- The name of a container within the associated Storage account. This container contains either the blob(s) to be read from or written to. Required on PUT (CreateOrReplace) requests.
- date
Format String - The date format. Wherever {date} appears in pathPattern, the value of this property is used as the date format instead.
- path
Pattern String - The blob path pattern. Not a regular expression. It represents a pattern against which blob names will be matched to determine whether or not they should be included as input or output to the job. See https://docs.microsoft.com/en-us/rest/api/streamanalytics/stream-analytics-input or https://docs.microsoft.com/en-us/rest/api/streamanalytics/stream-analytics-output for a more detailed explanation and example.
- storage
Accounts List<Property Map> - A list of one or more Azure Storage accounts. Required on PUT (CreateOrReplace) requests.
- time
Format String - The time format. Wherever {time} appears in pathPattern, the value of this property is used as the time format instead.
BlobReferenceInputDataSourceResponse, BlobReferenceInputDataSourceResponseArgs
- Authentication
Mode string - Authentication Mode.
- Container string
- The name of a container within the associated Storage account. This container contains either the blob(s) to be read from or written to. Required on PUT (CreateOrReplace) requests.
- Date
Format string - The date format. Wherever {date} appears in pathPattern, the value of this property is used as the date format instead.
- Path
Pattern string - The blob path pattern. Not a regular expression. It represents a pattern against which blob names will be matched to determine whether or not they should be included as input or output to the job. See https://docs.microsoft.com/en-us/rest/api/streamanalytics/stream-analytics-input or https://docs.microsoft.com/en-us/rest/api/streamanalytics/stream-analytics-output for a more detailed explanation and example.
- Storage
Accounts List<Pulumi.Azure Native. Stream Analytics. Inputs. Storage Account Response> - A list of one or more Azure Storage accounts. Required on PUT (CreateOrReplace) requests.
- Time
Format string - The time format. Wherever {time} appears in pathPattern, the value of this property is used as the time format instead.
- Authentication
Mode string - Authentication Mode.
- Container string
- The name of a container within the associated Storage account. This container contains either the blob(s) to be read from or written to. Required on PUT (CreateOrReplace) requests.
- Date
Format string - The date format. Wherever {date} appears in pathPattern, the value of this property is used as the date format instead.
- Path
Pattern string - The blob path pattern. Not a regular expression. It represents a pattern against which blob names will be matched to determine whether or not they should be included as input or output to the job. See https://docs.microsoft.com/en-us/rest/api/streamanalytics/stream-analytics-input or https://docs.microsoft.com/en-us/rest/api/streamanalytics/stream-analytics-output for a more detailed explanation and example.
- Storage
Accounts []StorageAccount Response - A list of one or more Azure Storage accounts. Required on PUT (CreateOrReplace) requests.
- Time
Format string - The time format. Wherever {time} appears in pathPattern, the value of this property is used as the time format instead.
- authentication
Mode String - Authentication Mode.
- container String
- The name of a container within the associated Storage account. This container contains either the blob(s) to be read from or written to. Required on PUT (CreateOrReplace) requests.
- date
Format String - The date format. Wherever {date} appears in pathPattern, the value of this property is used as the date format instead.
- path
Pattern String - The blob path pattern. Not a regular expression. It represents a pattern against which blob names will be matched to determine whether or not they should be included as input or output to the job. See https://docs.microsoft.com/en-us/rest/api/streamanalytics/stream-analytics-input or https://docs.microsoft.com/en-us/rest/api/streamanalytics/stream-analytics-output for a more detailed explanation and example.
- storage
Accounts List<StorageAccount Response> - A list of one or more Azure Storage accounts. Required on PUT (CreateOrReplace) requests.
- time
Format String - The time format. Wherever {time} appears in pathPattern, the value of this property is used as the time format instead.
- authentication
Mode string - Authentication Mode.
- container string
- The name of a container within the associated Storage account. This container contains either the blob(s) to be read from or written to. Required on PUT (CreateOrReplace) requests.
- date
Format string - The date format. Wherever {date} appears in pathPattern, the value of this property is used as the date format instead.
- path
Pattern string - The blob path pattern. Not a regular expression. It represents a pattern against which blob names will be matched to determine whether or not they should be included as input or output to the job. See https://docs.microsoft.com/en-us/rest/api/streamanalytics/stream-analytics-input or https://docs.microsoft.com/en-us/rest/api/streamanalytics/stream-analytics-output for a more detailed explanation and example.
- storage
Accounts StorageAccount Response[] - A list of one or more Azure Storage accounts. Required on PUT (CreateOrReplace) requests.
- time
Format string - The time format. Wherever {time} appears in pathPattern, the value of this property is used as the time format instead.
- authentication_
mode str - Authentication Mode.
- container str
- The name of a container within the associated Storage account. This container contains either the blob(s) to be read from or written to. Required on PUT (CreateOrReplace) requests.
- date_
format str - The date format. Wherever {date} appears in pathPattern, the value of this property is used as the date format instead.
- path_
pattern str - The blob path pattern. Not a regular expression. It represents a pattern against which blob names will be matched to determine whether or not they should be included as input or output to the job. See https://docs.microsoft.com/en-us/rest/api/streamanalytics/stream-analytics-input or https://docs.microsoft.com/en-us/rest/api/streamanalytics/stream-analytics-output for a more detailed explanation and example.
- storage_
accounts Sequence[StorageAccount Response] - A list of one or more Azure Storage accounts. Required on PUT (CreateOrReplace) requests.
- time_
format str - The time format. Wherever {time} appears in pathPattern, the value of this property is used as the time format instead.
- authentication
Mode String - Authentication Mode.
- container String
- The name of a container within the associated Storage account. This container contains either the blob(s) to be read from or written to. Required on PUT (CreateOrReplace) requests.
- date
Format String - The date format. Wherever {date} appears in pathPattern, the value of this property is used as the date format instead.
- path
Pattern String - The blob path pattern. Not a regular expression. It represents a pattern against which blob names will be matched to determine whether or not they should be included as input or output to the job. See https://docs.microsoft.com/en-us/rest/api/streamanalytics/stream-analytics-input or https://docs.microsoft.com/en-us/rest/api/streamanalytics/stream-analytics-output for a more detailed explanation and example.
- storage
Accounts List<Property Map> - A list of one or more Azure Storage accounts. Required on PUT (CreateOrReplace) requests.
- time
Format String - The time format. Wherever {time} appears in pathPattern, the value of this property is used as the time format instead.
BlobStreamInputDataSource, BlobStreamInputDataSourceArgs
- Authentication
Mode string | Pulumi.Azure Native. Stream Analytics. Authentication Mode - Authentication Mode.
- Container string
- The name of a container within the associated Storage account. This container contains either the blob(s) to be read from or written to. Required on PUT (CreateOrReplace) requests.
- Date
Format string - The date format. Wherever {date} appears in pathPattern, the value of this property is used as the date format instead.
- Path
Pattern string - The blob path pattern. Not a regular expression. It represents a pattern against which blob names will be matched to determine whether or not they should be included as input or output to the job. See https://docs.microsoft.com/en-us/rest/api/streamanalytics/stream-analytics-input or https://docs.microsoft.com/en-us/rest/api/streamanalytics/stream-analytics-output for a more detailed explanation and example.
- Source
Partition intCount - The partition count of the blob input data source. Range 1 - 1024.
- Storage
Accounts List<Pulumi.Azure Native. Stream Analytics. Inputs. Storage Account> - A list of one or more Azure Storage accounts. Required on PUT (CreateOrReplace) requests.
- Time
Format string - The time format. Wherever {time} appears in pathPattern, the value of this property is used as the time format instead.
- Authentication
Mode string | AuthenticationMode - Authentication Mode.
- Container string
- The name of a container within the associated Storage account. This container contains either the blob(s) to be read from or written to. Required on PUT (CreateOrReplace) requests.
- Date
Format string - The date format. Wherever {date} appears in pathPattern, the value of this property is used as the date format instead.
- Path
Pattern string - The blob path pattern. Not a regular expression. It represents a pattern against which blob names will be matched to determine whether or not they should be included as input or output to the job. See https://docs.microsoft.com/en-us/rest/api/streamanalytics/stream-analytics-input or https://docs.microsoft.com/en-us/rest/api/streamanalytics/stream-analytics-output for a more detailed explanation and example.
- Source
Partition intCount - The partition count of the blob input data source. Range 1 - 1024.
- Storage
Accounts []StorageAccount - A list of one or more Azure Storage accounts. Required on PUT (CreateOrReplace) requests.
- Time
Format string - The time format. Wherever {time} appears in pathPattern, the value of this property is used as the time format instead.
- authentication
Mode String | AuthenticationMode - Authentication Mode.
- container String
- The name of a container within the associated Storage account. This container contains either the blob(s) to be read from or written to. Required on PUT (CreateOrReplace) requests.
- date
Format String - The date format. Wherever {date} appears in pathPattern, the value of this property is used as the date format instead.
- path
Pattern String - The blob path pattern. Not a regular expression. It represents a pattern against which blob names will be matched to determine whether or not they should be included as input or output to the job. See https://docs.microsoft.com/en-us/rest/api/streamanalytics/stream-analytics-input or https://docs.microsoft.com/en-us/rest/api/streamanalytics/stream-analytics-output for a more detailed explanation and example.
- source
Partition IntegerCount - The partition count of the blob input data source. Range 1 - 1024.
- storage
Accounts List<StorageAccount> - A list of one or more Azure Storage accounts. Required on PUT (CreateOrReplace) requests.
- time
Format String - The time format. Wherever {time} appears in pathPattern, the value of this property is used as the time format instead.
- authentication
Mode string | AuthenticationMode - Authentication Mode.
- container string
- The name of a container within the associated Storage account. This container contains either the blob(s) to be read from or written to. Required on PUT (CreateOrReplace) requests.
- date
Format string - The date format. Wherever {date} appears in pathPattern, the value of this property is used as the date format instead.
- path
Pattern string - The blob path pattern. Not a regular expression. It represents a pattern against which blob names will be matched to determine whether or not they should be included as input or output to the job. See https://docs.microsoft.com/en-us/rest/api/streamanalytics/stream-analytics-input or https://docs.microsoft.com/en-us/rest/api/streamanalytics/stream-analytics-output for a more detailed explanation and example.
- source
Partition numberCount - The partition count of the blob input data source. Range 1 - 1024.
- storage
Accounts StorageAccount[] - A list of one or more Azure Storage accounts. Required on PUT (CreateOrReplace) requests.
- time
Format string - The time format. Wherever {time} appears in pathPattern, the value of this property is used as the time format instead.
- authentication_
mode str | AuthenticationMode - Authentication Mode.
- container str
- The name of a container within the associated Storage account. This container contains either the blob(s) to be read from or written to. Required on PUT (CreateOrReplace) requests.
- date_
format str - The date format. Wherever {date} appears in pathPattern, the value of this property is used as the date format instead.
- path_
pattern str - The blob path pattern. Not a regular expression. It represents a pattern against which blob names will be matched to determine whether or not they should be included as input or output to the job. See https://docs.microsoft.com/en-us/rest/api/streamanalytics/stream-analytics-input or https://docs.microsoft.com/en-us/rest/api/streamanalytics/stream-analytics-output for a more detailed explanation and example.
- source_
partition_ intcount - The partition count of the blob input data source. Range 1 - 1024.
- storage_
accounts Sequence[StorageAccount] - A list of one or more Azure Storage accounts. Required on PUT (CreateOrReplace) requests.
- time_
format str - The time format. Wherever {time} appears in pathPattern, the value of this property is used as the time format instead.
- authentication
Mode String | "Msi" | "UserToken" | "Connection String" - Authentication Mode.
- container String
- The name of a container within the associated Storage account. This container contains either the blob(s) to be read from or written to. Required on PUT (CreateOrReplace) requests.
- date
Format String - The date format. Wherever {date} appears in pathPattern, the value of this property is used as the date format instead.
- path
Pattern String - The blob path pattern. Not a regular expression. It represents a pattern against which blob names will be matched to determine whether or not they should be included as input or output to the job. See https://docs.microsoft.com/en-us/rest/api/streamanalytics/stream-analytics-input or https://docs.microsoft.com/en-us/rest/api/streamanalytics/stream-analytics-output for a more detailed explanation and example.
- source
Partition NumberCount - The partition count of the blob input data source. Range 1 - 1024.
- storage
Accounts List<Property Map> - A list of one or more Azure Storage accounts. Required on PUT (CreateOrReplace) requests.
- time
Format String - The time format. Wherever {time} appears in pathPattern, the value of this property is used as the time format instead.
BlobStreamInputDataSourceResponse, BlobStreamInputDataSourceResponseArgs
- Authentication
Mode string - Authentication Mode.
- Container string
- The name of a container within the associated Storage account. This container contains either the blob(s) to be read from or written to. Required on PUT (CreateOrReplace) requests.
- Date
Format string - The date format. Wherever {date} appears in pathPattern, the value of this property is used as the date format instead.
- Path
Pattern string - The blob path pattern. Not a regular expression. It represents a pattern against which blob names will be matched to determine whether or not they should be included as input or output to the job. See https://docs.microsoft.com/en-us/rest/api/streamanalytics/stream-analytics-input or https://docs.microsoft.com/en-us/rest/api/streamanalytics/stream-analytics-output for a more detailed explanation and example.
- Source
Partition intCount - The partition count of the blob input data source. Range 1 - 1024.
- Storage
Accounts List<Pulumi.Azure Native. Stream Analytics. Inputs. Storage Account Response> - A list of one or more Azure Storage accounts. Required on PUT (CreateOrReplace) requests.
- Time
Format string - The time format. Wherever {time} appears in pathPattern, the value of this property is used as the time format instead.
- Authentication
Mode string - Authentication Mode.
- Container string
- The name of a container within the associated Storage account. This container contains either the blob(s) to be read from or written to. Required on PUT (CreateOrReplace) requests.
- Date
Format string - The date format. Wherever {date} appears in pathPattern, the value of this property is used as the date format instead.
- Path
Pattern string - The blob path pattern. Not a regular expression. It represents a pattern against which blob names will be matched to determine whether or not they should be included as input or output to the job. See https://docs.microsoft.com/en-us/rest/api/streamanalytics/stream-analytics-input or https://docs.microsoft.com/en-us/rest/api/streamanalytics/stream-analytics-output for a more detailed explanation and example.
- Source
Partition intCount - The partition count of the blob input data source. Range 1 - 1024.
- Storage
Accounts []StorageAccount Response - A list of one or more Azure Storage accounts. Required on PUT (CreateOrReplace) requests.
- Time
Format string - The time format. Wherever {time} appears in pathPattern, the value of this property is used as the time format instead.
- authentication
Mode String - Authentication Mode.
- container String
- The name of a container within the associated Storage account. This container contains either the blob(s) to be read from or written to. Required on PUT (CreateOrReplace) requests.
- date
Format String - The date format. Wherever {date} appears in pathPattern, the value of this property is used as the date format instead.
- path
Pattern String - The blob path pattern. Not a regular expression. It represents a pattern against which blob names will be matched to determine whether or not they should be included as input or output to the job. See https://docs.microsoft.com/en-us/rest/api/streamanalytics/stream-analytics-input or https://docs.microsoft.com/en-us/rest/api/streamanalytics/stream-analytics-output for a more detailed explanation and example.
- source
Partition IntegerCount - The partition count of the blob input data source. Range 1 - 1024.
- storage
Accounts List<StorageAccount Response> - A list of one or more Azure Storage accounts. Required on PUT (CreateOrReplace) requests.
- time
Format String - The time format. Wherever {time} appears in pathPattern, the value of this property is used as the time format instead.
- authentication
Mode string - Authentication Mode.
- container string
- The name of a container within the associated Storage account. This container contains either the blob(s) to be read from or written to. Required on PUT (CreateOrReplace) requests.
- date
Format string - The date format. Wherever {date} appears in pathPattern, the value of this property is used as the date format instead.
- path
Pattern string - The blob path pattern. Not a regular expression. It represents a pattern against which blob names will be matched to determine whether or not they should be included as input or output to the job. See https://docs.microsoft.com/en-us/rest/api/streamanalytics/stream-analytics-input or https://docs.microsoft.com/en-us/rest/api/streamanalytics/stream-analytics-output for a more detailed explanation and example.
- source
Partition numberCount - The partition count of the blob input data source. Range 1 - 1024.
- storage
Accounts StorageAccount Response[] - A list of one or more Azure Storage accounts. Required on PUT (CreateOrReplace) requests.
- time
Format string - The time format. Wherever {time} appears in pathPattern, the value of this property is used as the time format instead.
- authentication_
mode str - Authentication Mode.
- container str
- The name of a container within the associated Storage account. This container contains either the blob(s) to be read from or written to. Required on PUT (CreateOrReplace) requests.
- date_
format str - The date format. Wherever {date} appears in pathPattern, the value of this property is used as the date format instead.
- path_
pattern str - The blob path pattern. Not a regular expression. It represents a pattern against which blob names will be matched to determine whether or not they should be included as input or output to the job. See https://docs.microsoft.com/en-us/rest/api/streamanalytics/stream-analytics-input or https://docs.microsoft.com/en-us/rest/api/streamanalytics/stream-analytics-output for a more detailed explanation and example.
- source_
partition_ intcount - The partition count of the blob input data source. Range 1 - 1024.
- storage_
accounts Sequence[StorageAccount Response] - A list of one or more Azure Storage accounts. Required on PUT (CreateOrReplace) requests.
- time_
format str - The time format. Wherever {time} appears in pathPattern, the value of this property is used as the time format instead.
- authentication
Mode String - Authentication Mode.
- container String
- The name of a container within the associated Storage account. This container contains either the blob(s) to be read from or written to. Required on PUT (CreateOrReplace) requests.
- date
Format String - The date format. Wherever {date} appears in pathPattern, the value of this property is used as the date format instead.
- path
Pattern String - The blob path pattern. Not a regular expression. It represents a pattern against which blob names will be matched to determine whether or not they should be included as input or output to the job. See https://docs.microsoft.com/en-us/rest/api/streamanalytics/stream-analytics-input or https://docs.microsoft.com/en-us/rest/api/streamanalytics/stream-analytics-output for a more detailed explanation and example.
- source
Partition NumberCount - The partition count of the blob input data source. Range 1 - 1024.
- storage
Accounts List<Property Map> - A list of one or more Azure Storage accounts. Required on PUT (CreateOrReplace) requests.
- time
Format String - The time format. Wherever {time} appears in pathPattern, the value of this property is used as the time format instead.
ClusterInfo, ClusterInfoArgs
- Id string
- The resource id of cluster.
- Id string
- The resource id of cluster.
- id String
- The resource id of cluster.
- id string
- The resource id of cluster.
- id str
- The resource id of cluster.
- id String
- The resource id of cluster.
ClusterInfoResponse, ClusterInfoResponseArgs
- Id string
- The resource id of cluster.
- Id string
- The resource id of cluster.
- id String
- The resource id of cluster.
- id string
- The resource id of cluster.
- id str
- The resource id of cluster.
- id String
- The resource id of cluster.
CompatibilityLevel, CompatibilityLevelArgs
- Compatibility
Level_1_0 - 1.0
- Compatibility
Level_1_2 - 1.2
- Compatibility
Level_1_0 - 1.0
- Compatibility
Level_1_2 - 1.2
- _1_0
- 1.0
- _1_2
- 1.2
- Compatibility
Level_1_0 - 1.0
- Compatibility
Level_1_2 - 1.2
- COMPATIBILITY_LEVEL_1_0
- 1.0
- COMPATIBILITY_LEVEL_1_2
- 1.2
- "1.0"
- 1.0
- "1.2"
- 1.2
Compression, CompressionArgs
- Type
string | Pulumi.
Azure Native. Stream Analytics. Compression Type - Indicates the type of compression that the input uses. Required on PUT (CreateOrReplace) requests.
- Type
string | Compression
Type - Indicates the type of compression that the input uses. Required on PUT (CreateOrReplace) requests.
- type
String | Compression
Type - Indicates the type of compression that the input uses. Required on PUT (CreateOrReplace) requests.
- type
string | Compression
Type - Indicates the type of compression that the input uses. Required on PUT (CreateOrReplace) requests.
- type
str | Compression
Type - Indicates the type of compression that the input uses. Required on PUT (CreateOrReplace) requests.
- type String | "None" | "GZip" | "Deflate"
- Indicates the type of compression that the input uses. Required on PUT (CreateOrReplace) requests.
CompressionResponse, CompressionResponseArgs
- Type string
- Indicates the type of compression that the input uses. Required on PUT (CreateOrReplace) requests.
- Type string
- Indicates the type of compression that the input uses. Required on PUT (CreateOrReplace) requests.
- type String
- Indicates the type of compression that the input uses. Required on PUT (CreateOrReplace) requests.
- type string
- Indicates the type of compression that the input uses. Required on PUT (CreateOrReplace) requests.
- type str
- Indicates the type of compression that the input uses. Required on PUT (CreateOrReplace) requests.
- type String
- Indicates the type of compression that the input uses. Required on PUT (CreateOrReplace) requests.
CompressionType, CompressionTypeArgs
- None
- None
- GZip
- GZip
- Deflate
- Deflate
- Compression
Type None - None
- Compression
Type GZip - GZip
- Compression
Type Deflate - Deflate
- None
- None
- GZip
- GZip
- Deflate
- Deflate
- None
- None
- GZip
- GZip
- Deflate
- Deflate
- NONE
- None
- G_ZIP
- GZip
- DEFLATE
- Deflate
- "None"
- None
- "GZip"
- GZip
- "Deflate"
- Deflate
ContentStoragePolicy, ContentStoragePolicyArgs
- System
Account - SystemAccount
- Job
Storage Account - JobStorageAccount
- Content
Storage Policy System Account - SystemAccount
- Content
Storage Policy Job Storage Account - JobStorageAccount
- System
Account - SystemAccount
- Job
Storage Account - JobStorageAccount
- System
Account - SystemAccount
- Job
Storage Account - JobStorageAccount
- SYSTEM_ACCOUNT
- SystemAccount
- JOB_STORAGE_ACCOUNT
- JobStorageAccount
- "System
Account" - SystemAccount
- "Job
Storage Account" - JobStorageAccount
CsvSerialization, CsvSerializationArgs
- Encoding
string | Pulumi.
Azure Native. Stream Analytics. Encoding - Specifies the encoding of the incoming data in the case of input and the encoding of outgoing data in the case of output. Required on PUT (CreateOrReplace) requests.
- Field
Delimiter string - Specifies the delimiter that will be used to separate comma-separated value (CSV) records. See https://docs.microsoft.com/en-us/rest/api/streamanalytics/stream-analytics-input or https://docs.microsoft.com/en-us/rest/api/streamanalytics/stream-analytics-output for a list of supported values. Required on PUT (CreateOrReplace) requests.
- Encoding string | Encoding
- Specifies the encoding of the incoming data in the case of input and the encoding of outgoing data in the case of output. Required on PUT (CreateOrReplace) requests.
- Field
Delimiter string - Specifies the delimiter that will be used to separate comma-separated value (CSV) records. See https://docs.microsoft.com/en-us/rest/api/streamanalytics/stream-analytics-input or https://docs.microsoft.com/en-us/rest/api/streamanalytics/stream-analytics-output for a list of supported values. Required on PUT (CreateOrReplace) requests.
- encoding String | Encoding
- Specifies the encoding of the incoming data in the case of input and the encoding of outgoing data in the case of output. Required on PUT (CreateOrReplace) requests.
- field
Delimiter String - Specifies the delimiter that will be used to separate comma-separated value (CSV) records. See https://docs.microsoft.com/en-us/rest/api/streamanalytics/stream-analytics-input or https://docs.microsoft.com/en-us/rest/api/streamanalytics/stream-analytics-output for a list of supported values. Required on PUT (CreateOrReplace) requests.
- encoding string | Encoding
- Specifies the encoding of the incoming data in the case of input and the encoding of outgoing data in the case of output. Required on PUT (CreateOrReplace) requests.
- field
Delimiter string - Specifies the delimiter that will be used to separate comma-separated value (CSV) records. See https://docs.microsoft.com/en-us/rest/api/streamanalytics/stream-analytics-input or https://docs.microsoft.com/en-us/rest/api/streamanalytics/stream-analytics-output for a list of supported values. Required on PUT (CreateOrReplace) requests.
- encoding str | Encoding
- Specifies the encoding of the incoming data in the case of input and the encoding of outgoing data in the case of output. Required on PUT (CreateOrReplace) requests.
- field_
delimiter str - Specifies the delimiter that will be used to separate comma-separated value (CSV) records. See https://docs.microsoft.com/en-us/rest/api/streamanalytics/stream-analytics-input or https://docs.microsoft.com/en-us/rest/api/streamanalytics/stream-analytics-output for a list of supported values. Required on PUT (CreateOrReplace) requests.
- encoding String | "UTF8"
- Specifies the encoding of the incoming data in the case of input and the encoding of outgoing data in the case of output. Required on PUT (CreateOrReplace) requests.
- field
Delimiter String - Specifies the delimiter that will be used to separate comma-separated value (CSV) records. See https://docs.microsoft.com/en-us/rest/api/streamanalytics/stream-analytics-input or https://docs.microsoft.com/en-us/rest/api/streamanalytics/stream-analytics-output for a list of supported values. Required on PUT (CreateOrReplace) requests.
CsvSerializationResponse, CsvSerializationResponseArgs
- Encoding string
- Specifies the encoding of the incoming data in the case of input and the encoding of outgoing data in the case of output. Required on PUT (CreateOrReplace) requests.
- Field
Delimiter string - Specifies the delimiter that will be used to separate comma-separated value (CSV) records. See https://docs.microsoft.com/en-us/rest/api/streamanalytics/stream-analytics-input or https://docs.microsoft.com/en-us/rest/api/streamanalytics/stream-analytics-output for a list of supported values. Required on PUT (CreateOrReplace) requests.
- Encoding string
- Specifies the encoding of the incoming data in the case of input and the encoding of outgoing data in the case of output. Required on PUT (CreateOrReplace) requests.
- Field
Delimiter string - Specifies the delimiter that will be used to separate comma-separated value (CSV) records. See https://docs.microsoft.com/en-us/rest/api/streamanalytics/stream-analytics-input or https://docs.microsoft.com/en-us/rest/api/streamanalytics/stream-analytics-output for a list of supported values. Required on PUT (CreateOrReplace) requests.
- encoding String
- Specifies the encoding of the incoming data in the case of input and the encoding of outgoing data in the case of output. Required on PUT (CreateOrReplace) requests.
- field
Delimiter String - Specifies the delimiter that will be used to separate comma-separated value (CSV) records. See https://docs.microsoft.com/en-us/rest/api/streamanalytics/stream-analytics-input or https://docs.microsoft.com/en-us/rest/api/streamanalytics/stream-analytics-output for a list of supported values. Required on PUT (CreateOrReplace) requests.
- encoding string
- Specifies the encoding of the incoming data in the case of input and the encoding of outgoing data in the case of output. Required on PUT (CreateOrReplace) requests.
- field
Delimiter string - Specifies the delimiter that will be used to separate comma-separated value (CSV) records. See https://docs.microsoft.com/en-us/rest/api/streamanalytics/stream-analytics-input or https://docs.microsoft.com/en-us/rest/api/streamanalytics/stream-analytics-output for a list of supported values. Required on PUT (CreateOrReplace) requests.
- encoding str
- Specifies the encoding of the incoming data in the case of input and the encoding of outgoing data in the case of output. Required on PUT (CreateOrReplace) requests.
- field_
delimiter str - Specifies the delimiter that will be used to separate comma-separated value (CSV) records. See https://docs.microsoft.com/en-us/rest/api/streamanalytics/stream-analytics-input or https://docs.microsoft.com/en-us/rest/api/streamanalytics/stream-analytics-output for a list of supported values. Required on PUT (CreateOrReplace) requests.
- encoding String
- Specifies the encoding of the incoming data in the case of input and the encoding of outgoing data in the case of output. Required on PUT (CreateOrReplace) requests.
- field
Delimiter String - Specifies the delimiter that will be used to separate comma-separated value (CSV) records. See https://docs.microsoft.com/en-us/rest/api/streamanalytics/stream-analytics-input or https://docs.microsoft.com/en-us/rest/api/streamanalytics/stream-analytics-output for a list of supported values. Required on PUT (CreateOrReplace) requests.
DiagnosticConditionResponse, DiagnosticConditionResponseArgs
- Code string
- The opaque diagnostic code.
- Message string
- The human-readable message describing the condition in detail. Localized in the Accept-Language of the client request.
- Since string
- The UTC timestamp of when the condition started. Customers should be able to find a corresponding event in the ops log around this time.
- Code string
- The opaque diagnostic code.
- Message string
- The human-readable message describing the condition in detail. Localized in the Accept-Language of the client request.
- Since string
- The UTC timestamp of when the condition started. Customers should be able to find a corresponding event in the ops log around this time.
- code String
- The opaque diagnostic code.
- message String
- The human-readable message describing the condition in detail. Localized in the Accept-Language of the client request.
- since String
- The UTC timestamp of when the condition started. Customers should be able to find a corresponding event in the ops log around this time.
- code string
- The opaque diagnostic code.
- message string
- The human-readable message describing the condition in detail. Localized in the Accept-Language of the client request.
- since string
- The UTC timestamp of when the condition started. Customers should be able to find a corresponding event in the ops log around this time.
- code str
- The opaque diagnostic code.
- message str
- The human-readable message describing the condition in detail. Localized in the Accept-Language of the client request.
- since str
- The UTC timestamp of when the condition started. Customers should be able to find a corresponding event in the ops log around this time.
- code String
- The opaque diagnostic code.
- message String
- The human-readable message describing the condition in detail. Localized in the Accept-Language of the client request.
- since String
- The UTC timestamp of when the condition started. Customers should be able to find a corresponding event in the ops log around this time.
DiagnosticsResponse, DiagnosticsResponseArgs
- Conditions
List<Pulumi.
Azure Native. Stream Analytics. Inputs. Diagnostic Condition Response> - A collection of zero or more conditions applicable to the resource, or to the job overall, that warrant customer attention.
- Conditions
[]Diagnostic
Condition Response - A collection of zero or more conditions applicable to the resource, or to the job overall, that warrant customer attention.
- conditions
List<Diagnostic
Condition Response> - A collection of zero or more conditions applicable to the resource, or to the job overall, that warrant customer attention.
- conditions
Diagnostic
Condition Response[] - A collection of zero or more conditions applicable to the resource, or to the job overall, that warrant customer attention.
- conditions
Sequence[Diagnostic
Condition Response] - A collection of zero or more conditions applicable to the resource, or to the job overall, that warrant customer attention.
- conditions List<Property Map>
- A collection of zero or more conditions applicable to the resource, or to the job overall, that warrant customer attention.
DocumentDbOutputDataSource, DocumentDbOutputDataSourceArgs
- Account
Id string - The DocumentDB account name or ID. Required on PUT (CreateOrReplace) requests.
- Account
Key string - The account key for the DocumentDB account. Required on PUT (CreateOrReplace) requests.
- Collection
Name stringPattern - The collection name pattern for the collections to be used. The collection name format can be constructed using the optional {partition} token, where partitions start from 0. See the DocumentDB section of https://docs.microsoft.com/en-us/rest/api/streamanalytics/stream-analytics-output for more information. Required on PUT (CreateOrReplace) requests.
- Database string
- The name of the DocumentDB database. Required on PUT (CreateOrReplace) requests.
- Document
Id string - The name of the field in output events used to specify the primary key which insert or update operations are based on.
- Partition
Key string - The name of the field in output events used to specify the key for partitioning output across collections. If 'collectionNamePattern' contains the {partition} token, this property is required to be specified.
- Account
Id string - The DocumentDB account name or ID. Required on PUT (CreateOrReplace) requests.
- Account
Key string - The account key for the DocumentDB account. Required on PUT (CreateOrReplace) requests.
- Collection
Name stringPattern - The collection name pattern for the collections to be used. The collection name format can be constructed using the optional {partition} token, where partitions start from 0. See the DocumentDB section of https://docs.microsoft.com/en-us/rest/api/streamanalytics/stream-analytics-output for more information. Required on PUT (CreateOrReplace) requests.
- Database string
- The name of the DocumentDB database. Required on PUT (CreateOrReplace) requests.
- Document
Id string - The name of the field in output events used to specify the primary key which insert or update operations are based on.
- Partition
Key string - The name of the field in output events used to specify the key for partitioning output across collections. If 'collectionNamePattern' contains the {partition} token, this property is required to be specified.
- account
Id String - The DocumentDB account name or ID. Required on PUT (CreateOrReplace) requests.
- account
Key String - The account key for the DocumentDB account. Required on PUT (CreateOrReplace) requests.
- collection
Name StringPattern - The collection name pattern for the collections to be used. The collection name format can be constructed using the optional {partition} token, where partitions start from 0. See the DocumentDB section of https://docs.microsoft.com/en-us/rest/api/streamanalytics/stream-analytics-output for more information. Required on PUT (CreateOrReplace) requests.
- database String
- The name of the DocumentDB database. Required on PUT (CreateOrReplace) requests.
- document
Id String - The name of the field in output events used to specify the primary key which insert or update operations are based on.
- partition
Key String - The name of the field in output events used to specify the key for partitioning output across collections. If 'collectionNamePattern' contains the {partition} token, this property is required to be specified.
- account
Id string - The DocumentDB account name or ID. Required on PUT (CreateOrReplace) requests.
- account
Key string - The account key for the DocumentDB account. Required on PUT (CreateOrReplace) requests.
- collection
Name stringPattern - The collection name pattern for the collections to be used. The collection name format can be constructed using the optional {partition} token, where partitions start from 0. See the DocumentDB section of https://docs.microsoft.com/en-us/rest/api/streamanalytics/stream-analytics-output for more information. Required on PUT (CreateOrReplace) requests.
- database string
- The name of the DocumentDB database. Required on PUT (CreateOrReplace) requests.
- document
Id string - The name of the field in output events used to specify the primary key which insert or update operations are based on.
- partition
Key string - The name of the field in output events used to specify the key for partitioning output across collections. If 'collectionNamePattern' contains the {partition} token, this property is required to be specified.
- account_
id str - The DocumentDB account name or ID. Required on PUT (CreateOrReplace) requests.
- account_
key str - The account key for the DocumentDB account. Required on PUT (CreateOrReplace) requests.
- collection_
name_ strpattern - The collection name pattern for the collections to be used. The collection name format can be constructed using the optional {partition} token, where partitions start from 0. See the DocumentDB section of https://docs.microsoft.com/en-us/rest/api/streamanalytics/stream-analytics-output for more information. Required on PUT (CreateOrReplace) requests.
- database str
- The name of the DocumentDB database. Required on PUT (CreateOrReplace) requests.
- document_
id str - The name of the field in output events used to specify the primary key which insert or update operations are based on.
- partition_
key str - The name of the field in output events used to specify the key for partitioning output across collections. If 'collectionNamePattern' contains the {partition} token, this property is required to be specified.
- account
Id String - The DocumentDB account name or ID. Required on PUT (CreateOrReplace) requests.
- account
Key String - The account key for the DocumentDB account. Required on PUT (CreateOrReplace) requests.
- collection
Name StringPattern - The collection name pattern for the collections to be used. The collection name format can be constructed using the optional {partition} token, where partitions start from 0. See the DocumentDB section of https://docs.microsoft.com/en-us/rest/api/streamanalytics/stream-analytics-output for more information. Required on PUT (CreateOrReplace) requests.
- database String
- The name of the DocumentDB database. Required on PUT (CreateOrReplace) requests.
- document
Id String - The name of the field in output events used to specify the primary key which insert or update operations are based on.
- partition
Key String - The name of the field in output events used to specify the key for partitioning output across collections. If 'collectionNamePattern' contains the {partition} token, this property is required to be specified.
DocumentDbOutputDataSourceResponse, DocumentDbOutputDataSourceResponseArgs
- Account
Id string - The DocumentDB account name or ID. Required on PUT (CreateOrReplace) requests.
- Account
Key string - The account key for the DocumentDB account. Required on PUT (CreateOrReplace) requests.
- Collection
Name stringPattern - The collection name pattern for the collections to be used. The collection name format can be constructed using the optional {partition} token, where partitions start from 0. See the DocumentDB section of https://docs.microsoft.com/en-us/rest/api/streamanalytics/stream-analytics-output for more information. Required on PUT (CreateOrReplace) requests.
- Database string
- The name of the DocumentDB database. Required on PUT (CreateOrReplace) requests.
- Document
Id string - The name of the field in output events used to specify the primary key which insert or update operations are based on.
- Partition
Key string - The name of the field in output events used to specify the key for partitioning output across collections. If 'collectionNamePattern' contains the {partition} token, this property is required to be specified.
- Account
Id string - The DocumentDB account name or ID. Required on PUT (CreateOrReplace) requests.
- Account
Key string - The account key for the DocumentDB account. Required on PUT (CreateOrReplace) requests.
- Collection
Name stringPattern - The collection name pattern for the collections to be used. The collection name format can be constructed using the optional {partition} token, where partitions start from 0. See the DocumentDB section of https://docs.microsoft.com/en-us/rest/api/streamanalytics/stream-analytics-output for more information. Required on PUT (CreateOrReplace) requests.
- Database string
- The name of the DocumentDB database. Required on PUT (CreateOrReplace) requests.
- Document
Id string - The name of the field in output events used to specify the primary key which insert or update operations are based on.
- Partition
Key string - The name of the field in output events used to specify the key for partitioning output across collections. If 'collectionNamePattern' contains the {partition} token, this property is required to be specified.
- account
Id String - The DocumentDB account name or ID. Required on PUT (CreateOrReplace) requests.
- account
Key String - The account key for the DocumentDB account. Required on PUT (CreateOrReplace) requests.
- collection
Name StringPattern - The collection name pattern for the collections to be used. The collection name format can be constructed using the optional {partition} token, where partitions start from 0. See the DocumentDB section of https://docs.microsoft.com/en-us/rest/api/streamanalytics/stream-analytics-output for more information. Required on PUT (CreateOrReplace) requests.
- database String
- The name of the DocumentDB database. Required on PUT (CreateOrReplace) requests.
- document
Id String - The name of the field in output events used to specify the primary key which insert or update operations are based on.
- partition
Key String - The name of the field in output events used to specify the key for partitioning output across collections. If 'collectionNamePattern' contains the {partition} token, this property is required to be specified.
- account
Id string - The DocumentDB account name or ID. Required on PUT (CreateOrReplace) requests.
- account
Key string - The account key for the DocumentDB account. Required on PUT (CreateOrReplace) requests.
- collection
Name stringPattern - The collection name pattern for the collections to be used. The collection name format can be constructed using the optional {partition} token, where partitions start from 0. See the DocumentDB section of https://docs.microsoft.com/en-us/rest/api/streamanalytics/stream-analytics-output for more information. Required on PUT (CreateOrReplace) requests.
- database string
- The name of the DocumentDB database. Required on PUT (CreateOrReplace) requests.
- document
Id string - The name of the field in output events used to specify the primary key which insert or update operations are based on.
- partition
Key string - The name of the field in output events used to specify the key for partitioning output across collections. If 'collectionNamePattern' contains the {partition} token, this property is required to be specified.
- account_
id str - The DocumentDB account name or ID. Required on PUT (CreateOrReplace) requests.
- account_
key str - The account key for the DocumentDB account. Required on PUT (CreateOrReplace) requests.
- collection_
name_ strpattern - The collection name pattern for the collections to be used. The collection name format can be constructed using the optional {partition} token, where partitions start from 0. See the DocumentDB section of https://docs.microsoft.com/en-us/rest/api/streamanalytics/stream-analytics-output for more information. Required on PUT (CreateOrReplace) requests.
- database str
- The name of the DocumentDB database. Required on PUT (CreateOrReplace) requests.
- document_
id str - The name of the field in output events used to specify the primary key which insert or update operations are based on.
- partition_
key str - The name of the field in output events used to specify the key for partitioning output across collections. If 'collectionNamePattern' contains the {partition} token, this property is required to be specified.
- account
Id String - The DocumentDB account name or ID. Required on PUT (CreateOrReplace) requests.
- account
Key String - The account key for the DocumentDB account. Required on PUT (CreateOrReplace) requests.
- collection
Name StringPattern - The collection name pattern for the collections to be used. The collection name format can be constructed using the optional {partition} token, where partitions start from 0. See the DocumentDB section of https://docs.microsoft.com/en-us/rest/api/streamanalytics/stream-analytics-output for more information. Required on PUT (CreateOrReplace) requests.
- database String
- The name of the DocumentDB database. Required on PUT (CreateOrReplace) requests.
- document
Id String - The name of the field in output events used to specify the primary key which insert or update operations are based on.
- partition
Key String - The name of the field in output events used to specify the key for partitioning output across collections. If 'collectionNamePattern' contains the {partition} token, this property is required to be specified.
Encoding, EncodingArgs
- UTF8
- UTF8
- Encoding
UTF8 - UTF8
- UTF8
- UTF8
- UTF8
- UTF8
- UTF8
- UTF8
- "UTF8"
- UTF8
EventHubOutputDataSource, EventHubOutputDataSourceArgs
- Authentication
Mode string | Pulumi.Azure Native. Stream Analytics. Authentication Mode - Authentication Mode.
- Event
Hub stringName - The name of the Event Hub. Required on PUT (CreateOrReplace) requests.
- Partition
Key string - The key/column that is used to determine to which partition to send event data.
- Property
Columns List<string> - The properties associated with this Event Hub output.
- Service
Bus stringNamespace - The namespace that is associated with the desired Event Hub, Service Bus Queue, Service Bus Topic, etc. Required on PUT (CreateOrReplace) requests.
- string
- The shared access policy key for the specified shared access policy. Required on PUT (CreateOrReplace) requests.
- string
- The shared access policy name for the Event Hub, Service Bus Queue, Service Bus Topic, etc. Required on PUT (CreateOrReplace) requests.
- Authentication
Mode string | AuthenticationMode - Authentication Mode.
- Event
Hub stringName - The name of the Event Hub. Required on PUT (CreateOrReplace) requests.
- Partition
Key string - The key/column that is used to determine to which partition to send event data.
- Property
Columns []string - The properties associated with this Event Hub output.
- Service
Bus stringNamespace - The namespace that is associated with the desired Event Hub, Service Bus Queue, Service Bus Topic, etc. Required on PUT (CreateOrReplace) requests.
- string
- The shared access policy key for the specified shared access policy. Required on PUT (CreateOrReplace) requests.
- string
- The shared access policy name for the Event Hub, Service Bus Queue, Service Bus Topic, etc. Required on PUT (CreateOrReplace) requests.
- authentication
Mode String | AuthenticationMode - Authentication Mode.
- event
Hub StringName - The name of the Event Hub. Required on PUT (CreateOrReplace) requests.
- partition
Key String - The key/column that is used to determine to which partition to send event data.
- property
Columns List<String> - The properties associated with this Event Hub output.
- service
Bus StringNamespace - The namespace that is associated with the desired Event Hub, Service Bus Queue, Service Bus Topic, etc. Required on PUT (CreateOrReplace) requests.
- String
- The shared access policy key for the specified shared access policy. Required on PUT (CreateOrReplace) requests.
- String
- The shared access policy name for the Event Hub, Service Bus Queue, Service Bus Topic, etc. Required on PUT (CreateOrReplace) requests.
- authentication
Mode string | AuthenticationMode - Authentication Mode.
- event
Hub stringName - The name of the Event Hub. Required on PUT (CreateOrReplace) requests.
- partition
Key string - The key/column that is used to determine to which partition to send event data.
- property
Columns string[] - The properties associated with this Event Hub output.
- service
Bus stringNamespace - The namespace that is associated with the desired Event Hub, Service Bus Queue, Service Bus Topic, etc. Required on PUT (CreateOrReplace) requests.
- string
- The shared access policy key for the specified shared access policy. Required on PUT (CreateOrReplace) requests.
- string
- The shared access policy name for the Event Hub, Service Bus Queue, Service Bus Topic, etc. Required on PUT (CreateOrReplace) requests.
- authentication_
mode str | AuthenticationMode - Authentication Mode.
- event_
hub_ strname - The name of the Event Hub. Required on PUT (CreateOrReplace) requests.
- partition_
key str - The key/column that is used to determine to which partition to send event data.
- property_
columns Sequence[str] - The properties associated with this Event Hub output.
- service_
bus_ strnamespace - The namespace that is associated with the desired Event Hub, Service Bus Queue, Service Bus Topic, etc. Required on PUT (CreateOrReplace) requests.
- str
- The shared access policy key for the specified shared access policy. Required on PUT (CreateOrReplace) requests.
- str
- The shared access policy name for the Event Hub, Service Bus Queue, Service Bus Topic, etc. Required on PUT (CreateOrReplace) requests.
- authentication
Mode String | "Msi" | "UserToken" | "Connection String" - Authentication Mode.
- event
Hub StringName - The name of the Event Hub. Required on PUT (CreateOrReplace) requests.
- partition
Key String - The key/column that is used to determine to which partition to send event data.
- property
Columns List<String> - The properties associated with this Event Hub output.
- service
Bus StringNamespace - The namespace that is associated with the desired Event Hub, Service Bus Queue, Service Bus Topic, etc. Required on PUT (CreateOrReplace) requests.
- String
- The shared access policy key for the specified shared access policy. Required on PUT (CreateOrReplace) requests.
- String
- The shared access policy name for the Event Hub, Service Bus Queue, Service Bus Topic, etc. Required on PUT (CreateOrReplace) requests.
EventHubOutputDataSourceResponse, EventHubOutputDataSourceResponseArgs
- Authentication
Mode string - Authentication Mode.
- Event
Hub stringName - The name of the Event Hub. Required on PUT (CreateOrReplace) requests.
- Partition
Key string - The key/column that is used to determine to which partition to send event data.
- Property
Columns List<string> - The properties associated with this Event Hub output.
- Service
Bus stringNamespace - The namespace that is associated with the desired Event Hub, Service Bus Queue, Service Bus Topic, etc. Required on PUT (CreateOrReplace) requests.
- string
- The shared access policy key for the specified shared access policy. Required on PUT (CreateOrReplace) requests.
- string
- The shared access policy name for the Event Hub, Service Bus Queue, Service Bus Topic, etc. Required on PUT (CreateOrReplace) requests.
- Authentication
Mode string - Authentication Mode.
- Event
Hub stringName - The name of the Event Hub. Required on PUT (CreateOrReplace) requests.
- Partition
Key string - The key/column that is used to determine to which partition to send event data.
- Property
Columns []string - The properties associated with this Event Hub output.
- Service
Bus stringNamespace - The namespace that is associated with the desired Event Hub, Service Bus Queue, Service Bus Topic, etc. Required on PUT (CreateOrReplace) requests.
- string
- The shared access policy key for the specified shared access policy. Required on PUT (CreateOrReplace) requests.
- string
- The shared access policy name for the Event Hub, Service Bus Queue, Service Bus Topic, etc. Required on PUT (CreateOrReplace) requests.
- authentication
Mode String - Authentication Mode.
- event
Hub StringName - The name of the Event Hub. Required on PUT (CreateOrReplace) requests.
- partition
Key String - The key/column that is used to determine to which partition to send event data.
- property
Columns List<String> - The properties associated with this Event Hub output.
- service
Bus StringNamespace - The namespace that is associated with the desired Event Hub, Service Bus Queue, Service Bus Topic, etc. Required on PUT (CreateOrReplace) requests.
- String
- The shared access policy key for the specified shared access policy. Required on PUT (CreateOrReplace) requests.
- String
- The shared access policy name for the Event Hub, Service Bus Queue, Service Bus Topic, etc. Required on PUT (CreateOrReplace) requests.
- authentication
Mode string - Authentication Mode.
- event
Hub stringName - The name of the Event Hub. Required on PUT (CreateOrReplace) requests.
- partition
Key string - The key/column that is used to determine to which partition to send event data.
- property
Columns string[] - The properties associated with this Event Hub output.
- service
Bus stringNamespace - The namespace that is associated with the desired Event Hub, Service Bus Queue, Service Bus Topic, etc. Required on PUT (CreateOrReplace) requests.
- string
- The shared access policy key for the specified shared access policy. Required on PUT (CreateOrReplace) requests.
- string
- The shared access policy name for the Event Hub, Service Bus Queue, Service Bus Topic, etc. Required on PUT (CreateOrReplace) requests.
- authentication_
mode str - Authentication Mode.
- event_
hub_ strname - The name of the Event Hub. Required on PUT (CreateOrReplace) requests.
- partition_
key str - The key/column that is used to determine to which partition to send event data.
- property_
columns Sequence[str] - The properties associated with this Event Hub output.
- service_
bus_ strnamespace - The namespace that is associated with the desired Event Hub, Service Bus Queue, Service Bus Topic, etc. Required on PUT (CreateOrReplace) requests.
- str
- The shared access policy key for the specified shared access policy. Required on PUT (CreateOrReplace) requests.
- str
- The shared access policy name for the Event Hub, Service Bus Queue, Service Bus Topic, etc. Required on PUT (CreateOrReplace) requests.
- authentication
Mode String - Authentication Mode.
- event
Hub StringName - The name of the Event Hub. Required on PUT (CreateOrReplace) requests.
- partition
Key String - The key/column that is used to determine to which partition to send event data.
- property
Columns List<String> - The properties associated with this Event Hub output.
- service
Bus StringNamespace - The namespace that is associated with the desired Event Hub, Service Bus Queue, Service Bus Topic, etc. Required on PUT (CreateOrReplace) requests.
- String
- The shared access policy key for the specified shared access policy. Required on PUT (CreateOrReplace) requests.
- String
- The shared access policy name for the Event Hub, Service Bus Queue, Service Bus Topic, etc. Required on PUT (CreateOrReplace) requests.
EventHubStreamInputDataSource, EventHubStreamInputDataSourceArgs
- Authentication
Mode string | Pulumi.Azure Native. Stream Analytics. Authentication Mode - Authentication Mode.
- Consumer
Group stringName - The name of an Event Hub Consumer Group that should be used to read events from the Event Hub. Specifying distinct consumer group names for multiple inputs allows each of those inputs to receive the same events from the Event Hub. If not specified, the input uses the Event Hub’s default consumer group.
- Event
Hub stringName - The name of the Event Hub. Required on PUT (CreateOrReplace) requests.
- Service
Bus stringNamespace - The namespace that is associated with the desired Event Hub, Service Bus Queue, Service Bus Topic, etc. Required on PUT (CreateOrReplace) requests.
- string
- The shared access policy key for the specified shared access policy. Required on PUT (CreateOrReplace) requests.
- string
- The shared access policy name for the Event Hub, Service Bus Queue, Service Bus Topic, etc. Required on PUT (CreateOrReplace) requests.
- Authentication
Mode string | AuthenticationMode - Authentication Mode.
- Consumer
Group stringName - The name of an Event Hub Consumer Group that should be used to read events from the Event Hub. Specifying distinct consumer group names for multiple inputs allows each of those inputs to receive the same events from the Event Hub. If not specified, the input uses the Event Hub’s default consumer group.
- Event
Hub stringName - The name of the Event Hub. Required on PUT (CreateOrReplace) requests.
- Service
Bus stringNamespace - The namespace that is associated with the desired Event Hub, Service Bus Queue, Service Bus Topic, etc. Required on PUT (CreateOrReplace) requests.
- string
- The shared access policy key for the specified shared access policy. Required on PUT (CreateOrReplace) requests.
- string
- The shared access policy name for the Event Hub, Service Bus Queue, Service Bus Topic, etc. Required on PUT (CreateOrReplace) requests.
- authentication
Mode String | AuthenticationMode - Authentication Mode.
- consumer
Group StringName - The name of an Event Hub Consumer Group that should be used to read events from the Event Hub. Specifying distinct consumer group names for multiple inputs allows each of those inputs to receive the same events from the Event Hub. If not specified, the input uses the Event Hub’s default consumer group.
- event
Hub StringName - The name of the Event Hub. Required on PUT (CreateOrReplace) requests.
- service
Bus StringNamespace - The namespace that is associated with the desired Event Hub, Service Bus Queue, Service Bus Topic, etc. Required on PUT (CreateOrReplace) requests.
- String
- The shared access policy key for the specified shared access policy. Required on PUT (CreateOrReplace) requests.
- String
- The shared access policy name for the Event Hub, Service Bus Queue, Service Bus Topic, etc. Required on PUT (CreateOrReplace) requests.
- authentication
Mode string | AuthenticationMode - Authentication Mode.
- consumer
Group stringName - The name of an Event Hub Consumer Group that should be used to read events from the Event Hub. Specifying distinct consumer group names for multiple inputs allows each of those inputs to receive the same events from the Event Hub. If not specified, the input uses the Event Hub’s default consumer group.
- event
Hub stringName - The name of the Event Hub. Required on PUT (CreateOrReplace) requests.
- service
Bus stringNamespace - The namespace that is associated with the desired Event Hub, Service Bus Queue, Service Bus Topic, etc. Required on PUT (CreateOrReplace) requests.
- string
- The shared access policy key for the specified shared access policy. Required on PUT (CreateOrReplace) requests.
- string
- The shared access policy name for the Event Hub, Service Bus Queue, Service Bus Topic, etc. Required on PUT (CreateOrReplace) requests.
- authentication_
mode str | AuthenticationMode - Authentication Mode.
- consumer_
group_ strname - The name of an Event Hub Consumer Group that should be used to read events from the Event Hub. Specifying distinct consumer group names for multiple inputs allows each of those inputs to receive the same events from the Event Hub. If not specified, the input uses the Event Hub’s default consumer group.
- event_
hub_ strname - The name of the Event Hub. Required on PUT (CreateOrReplace) requests.
- service_
bus_ strnamespace - The namespace that is associated with the desired Event Hub, Service Bus Queue, Service Bus Topic, etc. Required on PUT (CreateOrReplace) requests.
- str
- The shared access policy key for the specified shared access policy. Required on PUT (CreateOrReplace) requests.
- str
- The shared access policy name for the Event Hub, Service Bus Queue, Service Bus Topic, etc. Required on PUT (CreateOrReplace) requests.
- authentication
Mode String | "Msi" | "UserToken" | "Connection String" - Authentication Mode.
- consumer
Group StringName - The name of an Event Hub Consumer Group that should be used to read events from the Event Hub. Specifying distinct consumer group names for multiple inputs allows each of those inputs to receive the same events from the Event Hub. If not specified, the input uses the Event Hub’s default consumer group.
- event
Hub StringName - The name of the Event Hub. Required on PUT (CreateOrReplace) requests.
- service
Bus StringNamespace - The namespace that is associated with the desired Event Hub, Service Bus Queue, Service Bus Topic, etc. Required on PUT (CreateOrReplace) requests.
- String
- The shared access policy key for the specified shared access policy. Required on PUT (CreateOrReplace) requests.
- String
- The shared access policy name for the Event Hub, Service Bus Queue, Service Bus Topic, etc. Required on PUT (CreateOrReplace) requests.
EventHubStreamInputDataSourceResponse, EventHubStreamInputDataSourceResponseArgs
- Authentication
Mode string - Authentication Mode.
- Consumer
Group stringName - The name of an Event Hub Consumer Group that should be used to read events from the Event Hub. Specifying distinct consumer group names for multiple inputs allows each of those inputs to receive the same events from the Event Hub. If not specified, the input uses the Event Hub’s default consumer group.
- Event
Hub stringName - The name of the Event Hub. Required on PUT (CreateOrReplace) requests.
- Service
Bus stringNamespace - The namespace that is associated with the desired Event Hub, Service Bus Queue, Service Bus Topic, etc. Required on PUT (CreateOrReplace) requests.
- string
- The shared access policy key for the specified shared access policy. Required on PUT (CreateOrReplace) requests.
- string
- The shared access policy name for the Event Hub, Service Bus Queue, Service Bus Topic, etc. Required on PUT (CreateOrReplace) requests.
- Authentication
Mode string - Authentication Mode.
- Consumer
Group stringName - The name of an Event Hub Consumer Group that should be used to read events from the Event Hub. Specifying distinct consumer group names for multiple inputs allows each of those inputs to receive the same events from the Event Hub. If not specified, the input uses the Event Hub’s default consumer group.
- Event
Hub stringName - The name of the Event Hub. Required on PUT (CreateOrReplace) requests.
- Service
Bus stringNamespace - The namespace that is associated with the desired Event Hub, Service Bus Queue, Service Bus Topic, etc. Required on PUT (CreateOrReplace) requests.
- string
- The shared access policy key for the specified shared access policy. Required on PUT (CreateOrReplace) requests.
- string
- The shared access policy name for the Event Hub, Service Bus Queue, Service Bus Topic, etc. Required on PUT (CreateOrReplace) requests.
- authentication
Mode String - Authentication Mode.
- consumer
Group StringName - The name of an Event Hub Consumer Group that should be used to read events from the Event Hub. Specifying distinct consumer group names for multiple inputs allows each of those inputs to receive the same events from the Event Hub. If not specified, the input uses the Event Hub’s default consumer group.
- event
Hub StringName - The name of the Event Hub. Required on PUT (CreateOrReplace) requests.
- service
Bus StringNamespace - The namespace that is associated with the desired Event Hub, Service Bus Queue, Service Bus Topic, etc. Required on PUT (CreateOrReplace) requests.
- String
- The shared access policy key for the specified shared access policy. Required on PUT (CreateOrReplace) requests.
- String
- The shared access policy name for the Event Hub, Service Bus Queue, Service Bus Topic, etc. Required on PUT (CreateOrReplace) requests.
- authentication
Mode string - Authentication Mode.
- consumer
Group stringName - The name of an Event Hub Consumer Group that should be used to read events from the Event Hub. Specifying distinct consumer group names for multiple inputs allows each of those inputs to receive the same events from the Event Hub. If not specified, the input uses the Event Hub’s default consumer group.
- event
Hub stringName - The name of the Event Hub. Required on PUT (CreateOrReplace) requests.
- service
Bus stringNamespace - The namespace that is associated with the desired Event Hub, Service Bus Queue, Service Bus Topic, etc. Required on PUT (CreateOrReplace) requests.
- string
- The shared access policy key for the specified shared access policy. Required on PUT (CreateOrReplace) requests.
- string
- The shared access policy name for the Event Hub, Service Bus Queue, Service Bus Topic, etc. Required on PUT (CreateOrReplace) requests.
- authentication_
mode str - Authentication Mode.
- consumer_
group_ strname - The name of an Event Hub Consumer Group that should be used to read events from the Event Hub. Specifying distinct consumer group names for multiple inputs allows each of those inputs to receive the same events from the Event Hub. If not specified, the input uses the Event Hub’s default consumer group.
- event_
hub_ strname - The name of the Event Hub. Required on PUT (CreateOrReplace) requests.
- service_
bus_ strnamespace - The namespace that is associated with the desired Event Hub, Service Bus Queue, Service Bus Topic, etc. Required on PUT (CreateOrReplace) requests.
- str
- The shared access policy key for the specified shared access policy. Required on PUT (CreateOrReplace) requests.
- str
- The shared access policy name for the Event Hub, Service Bus Queue, Service Bus Topic, etc. Required on PUT (CreateOrReplace) requests.
- authentication
Mode String - Authentication Mode.
- consumer
Group StringName - The name of an Event Hub Consumer Group that should be used to read events from the Event Hub. Specifying distinct consumer group names for multiple inputs allows each of those inputs to receive the same events from the Event Hub. If not specified, the input uses the Event Hub’s default consumer group.
- event
Hub StringName - The name of the Event Hub. Required on PUT (CreateOrReplace) requests.
- service
Bus StringNamespace - The namespace that is associated with the desired Event Hub, Service Bus Queue, Service Bus Topic, etc. Required on PUT (CreateOrReplace) requests.
- String
- The shared access policy key for the specified shared access policy. Required on PUT (CreateOrReplace) requests.
- String
- The shared access policy name for the Event Hub, Service Bus Queue, Service Bus Topic, etc. Required on PUT (CreateOrReplace) requests.
EventHubV2OutputDataSource, EventHubV2OutputDataSourceArgs
- Authentication
Mode string | Pulumi.Azure Native. Stream Analytics. Authentication Mode - Authentication Mode.
- Event
Hub stringName - The name of the Event Hub. Required on PUT (CreateOrReplace) requests.
- Partition
Key string - The key/column that is used to determine to which partition to send event data.
- Property
Columns List<string> - The properties associated with this Event Hub output.
- Service
Bus stringNamespace - The namespace that is associated with the desired Event Hub, Service Bus Queue, Service Bus Topic, etc. Required on PUT (CreateOrReplace) requests.
- string
- The shared access policy key for the specified shared access policy. Required on PUT (CreateOrReplace) requests.
- string
- The shared access policy name for the Event Hub, Service Bus Queue, Service Bus Topic, etc. Required on PUT (CreateOrReplace) requests.
- Authentication
Mode string | AuthenticationMode - Authentication Mode.
- Event
Hub stringName - The name of the Event Hub. Required on PUT (CreateOrReplace) requests.
- Partition
Key string - The key/column that is used to determine to which partition to send event data.
- Property
Columns []string - The properties associated with this Event Hub output.
- Service
Bus stringNamespace - The namespace that is associated with the desired Event Hub, Service Bus Queue, Service Bus Topic, etc. Required on PUT (CreateOrReplace) requests.
- string
- The shared access policy key for the specified shared access policy. Required on PUT (CreateOrReplace) requests.
- string
- The shared access policy name for the Event Hub, Service Bus Queue, Service Bus Topic, etc. Required on PUT (CreateOrReplace) requests.
- authentication
Mode String | AuthenticationMode - Authentication Mode.
- event
Hub StringName - The name of the Event Hub. Required on PUT (CreateOrReplace) requests.
- partition
Key String - The key/column that is used to determine to which partition to send event data.
- property
Columns List<String> - The properties associated with this Event Hub output.
- service
Bus StringNamespace - The namespace that is associated with the desired Event Hub, Service Bus Queue, Service Bus Topic, etc. Required on PUT (CreateOrReplace) requests.
- String
- The shared access policy key for the specified shared access policy. Required on PUT (CreateOrReplace) requests.
- String
- The shared access policy name for the Event Hub, Service Bus Queue, Service Bus Topic, etc. Required on PUT (CreateOrReplace) requests.
- authentication
Mode string | AuthenticationMode - Authentication Mode.
- event
Hub stringName - The name of the Event Hub. Required on PUT (CreateOrReplace) requests.
- partition
Key string - The key/column that is used to determine to which partition to send event data.
- property
Columns string[] - The properties associated with this Event Hub output.
- service
Bus stringNamespace - The namespace that is associated with the desired Event Hub, Service Bus Queue, Service Bus Topic, etc. Required on PUT (CreateOrReplace) requests.
- string
- The shared access policy key for the specified shared access policy. Required on PUT (CreateOrReplace) requests.
- string
- The shared access policy name for the Event Hub, Service Bus Queue, Service Bus Topic, etc. Required on PUT (CreateOrReplace) requests.
- authentication_
mode str | AuthenticationMode - Authentication Mode.
- event_
hub_ strname - The name of the Event Hub. Required on PUT (CreateOrReplace) requests.
- partition_
key str - The key/column that is used to determine to which partition to send event data.
- property_
columns Sequence[str] - The properties associated with this Event Hub output.
- service_
bus_ strnamespace - The namespace that is associated with the desired Event Hub, Service Bus Queue, Service Bus Topic, etc. Required on PUT (CreateOrReplace) requests.
- str
- The shared access policy key for the specified shared access policy. Required on PUT (CreateOrReplace) requests.
- str
- The shared access policy name for the Event Hub, Service Bus Queue, Service Bus Topic, etc. Required on PUT (CreateOrReplace) requests.
- authentication
Mode String | "Msi" | "UserToken" | "Connection String" - Authentication Mode.
- event
Hub StringName - The name of the Event Hub. Required on PUT (CreateOrReplace) requests.
- partition
Key String - The key/column that is used to determine to which partition to send event data.
- property
Columns List<String> - The properties associated with this Event Hub output.
- service
Bus StringNamespace - The namespace that is associated with the desired Event Hub, Service Bus Queue, Service Bus Topic, etc. Required on PUT (CreateOrReplace) requests.
- String
- The shared access policy key for the specified shared access policy. Required on PUT (CreateOrReplace) requests.
- String
- The shared access policy name for the Event Hub, Service Bus Queue, Service Bus Topic, etc. Required on PUT (CreateOrReplace) requests.
EventHubV2OutputDataSourceResponse, EventHubV2OutputDataSourceResponseArgs
- Authentication
Mode string - Authentication Mode.
- Event
Hub stringName - The name of the Event Hub. Required on PUT (CreateOrReplace) requests.
- Partition
Key string - The key/column that is used to determine to which partition to send event data.
- Property
Columns List<string> - The properties associated with this Event Hub output.
- Service
Bus stringNamespace - The namespace that is associated with the desired Event Hub, Service Bus Queue, Service Bus Topic, etc. Required on PUT (CreateOrReplace) requests.
- string
- The shared access policy key for the specified shared access policy. Required on PUT (CreateOrReplace) requests.
- string
- The shared access policy name for the Event Hub, Service Bus Queue, Service Bus Topic, etc. Required on PUT (CreateOrReplace) requests.
- Authentication
Mode string - Authentication Mode.
- Event
Hub stringName - The name of the Event Hub. Required on PUT (CreateOrReplace) requests.
- Partition
Key string - The key/column that is used to determine to which partition to send event data.
- Property
Columns []string - The properties associated with this Event Hub output.
- Service
Bus stringNamespace - The namespace that is associated with the desired Event Hub, Service Bus Queue, Service Bus Topic, etc. Required on PUT (CreateOrReplace) requests.
- string
- The shared access policy key for the specified shared access policy. Required on PUT (CreateOrReplace) requests.
- string
- The shared access policy name for the Event Hub, Service Bus Queue, Service Bus Topic, etc. Required on PUT (CreateOrReplace) requests.
- authentication
Mode String - Authentication Mode.
- event
Hub StringName - The name of the Event Hub. Required on PUT (CreateOrReplace) requests.
- partition
Key String - The key/column that is used to determine to which partition to send event data.
- property
Columns List<String> - The properties associated with this Event Hub output.
- service
Bus StringNamespace - The namespace that is associated with the desired Event Hub, Service Bus Queue, Service Bus Topic, etc. Required on PUT (CreateOrReplace) requests.
- String
- The shared access policy key for the specified shared access policy. Required on PUT (CreateOrReplace) requests.
- String
- The shared access policy name for the Event Hub, Service Bus Queue, Service Bus Topic, etc. Required on PUT (CreateOrReplace) requests.
- authentication
Mode string - Authentication Mode.
- event
Hub stringName - The name of the Event Hub. Required on PUT (CreateOrReplace) requests.
- partition
Key string - The key/column that is used to determine to which partition to send event data.
- property
Columns string[] - The properties associated with this Event Hub output.
- service
Bus stringNamespace - The namespace that is associated with the desired Event Hub, Service Bus Queue, Service Bus Topic, etc. Required on PUT (CreateOrReplace) requests.
- string
- The shared access policy key for the specified shared access policy. Required on PUT (CreateOrReplace) requests.
- string
- The shared access policy name for the Event Hub, Service Bus Queue, Service Bus Topic, etc. Required on PUT (CreateOrReplace) requests.
- authentication_
mode str - Authentication Mode.
- event_
hub_ strname - The name of the Event Hub. Required on PUT (CreateOrReplace) requests.
- partition_
key str - The key/column that is used to determine to which partition to send event data.
- property_
columns Sequence[str] - The properties associated with this Event Hub output.
- service_
bus_ strnamespace - The namespace that is associated with the desired Event Hub, Service Bus Queue, Service Bus Topic, etc. Required on PUT (CreateOrReplace) requests.
- str
- The shared access policy key for the specified shared access policy. Required on PUT (CreateOrReplace) requests.
- str
- The shared access policy name for the Event Hub, Service Bus Queue, Service Bus Topic, etc. Required on PUT (CreateOrReplace) requests.
- authentication
Mode String - Authentication Mode.
- event
Hub StringName - The name of the Event Hub. Required on PUT (CreateOrReplace) requests.
- partition
Key String - The key/column that is used to determine to which partition to send event data.
- property
Columns List<String> - The properties associated with this Event Hub output.
- service
Bus StringNamespace - The namespace that is associated with the desired Event Hub, Service Bus Queue, Service Bus Topic, etc. Required on PUT (CreateOrReplace) requests.
- String
- The shared access policy key for the specified shared access policy. Required on PUT (CreateOrReplace) requests.
- String
- The shared access policy name for the Event Hub, Service Bus Queue, Service Bus Topic, etc. Required on PUT (CreateOrReplace) requests.
EventHubV2StreamInputDataSource, EventHubV2StreamInputDataSourceArgs
- Authentication
Mode string | Pulumi.Azure Native. Stream Analytics. Authentication Mode - Authentication Mode.
- Consumer
Group stringName - The name of an Event Hub Consumer Group that should be used to read events from the Event Hub. Specifying distinct consumer group names for multiple inputs allows each of those inputs to receive the same events from the Event Hub. If not specified, the input uses the Event Hub’s default consumer group.
- Event
Hub stringName - The name of the Event Hub. Required on PUT (CreateOrReplace) requests.
- Service
Bus stringNamespace - The namespace that is associated with the desired Event Hub, Service Bus Queue, Service Bus Topic, etc. Required on PUT (CreateOrReplace) requests.
- string
- The shared access policy key for the specified shared access policy. Required on PUT (CreateOrReplace) requests.
- string
- The shared access policy name for the Event Hub, Service Bus Queue, Service Bus Topic, etc. Required on PUT (CreateOrReplace) requests.
- Authentication
Mode string | AuthenticationMode - Authentication Mode.
- Consumer
Group stringName - The name of an Event Hub Consumer Group that should be used to read events from the Event Hub. Specifying distinct consumer group names for multiple inputs allows each of those inputs to receive the same events from the Event Hub. If not specified, the input uses the Event Hub’s default consumer group.
- Event
Hub stringName - The name of the Event Hub. Required on PUT (CreateOrReplace) requests.
- Service
Bus stringNamespace - The namespace that is associated with the desired Event Hub, Service Bus Queue, Service Bus Topic, etc. Required on PUT (CreateOrReplace) requests.
- string
- The shared access policy key for the specified shared access policy. Required on PUT (CreateOrReplace) requests.
- string
- The shared access policy name for the Event Hub, Service Bus Queue, Service Bus Topic, etc. Required on PUT (CreateOrReplace) requests.
- authentication
Mode String | AuthenticationMode - Authentication Mode.
- consumer
Group StringName - The name of an Event Hub Consumer Group that should be used to read events from the Event Hub. Specifying distinct consumer group names for multiple inputs allows each of those inputs to receive the same events from the Event Hub. If not specified, the input uses the Event Hub’s default consumer group.
- event
Hub StringName - The name of the Event Hub. Required on PUT (CreateOrReplace) requests.
- service
Bus StringNamespace - The namespace that is associated with the desired Event Hub, Service Bus Queue, Service Bus Topic, etc. Required on PUT (CreateOrReplace) requests.
- String
- The shared access policy key for the specified shared access policy. Required on PUT (CreateOrReplace) requests.
- String
- The shared access policy name for the Event Hub, Service Bus Queue, Service Bus Topic, etc. Required on PUT (CreateOrReplace) requests.
- authentication
Mode string | AuthenticationMode - Authentication Mode.
- consumer
Group stringName - The name of an Event Hub Consumer Group that should be used to read events from the Event Hub. Specifying distinct consumer group names for multiple inputs allows each of those inputs to receive the same events from the Event Hub. If not specified, the input uses the Event Hub’s default consumer group.
- event
Hub stringName - The name of the Event Hub. Required on PUT (CreateOrReplace) requests.
- service
Bus stringNamespace - The namespace that is associated with the desired Event Hub, Service Bus Queue, Service Bus Topic, etc. Required on PUT (CreateOrReplace) requests.
- string
- The shared access policy key for the specified shared access policy. Required on PUT (CreateOrReplace) requests.
- string
- The shared access policy name for the Event Hub, Service Bus Queue, Service Bus Topic, etc. Required on PUT (CreateOrReplace) requests.
- authentication_
mode str | AuthenticationMode - Authentication Mode.
- consumer_
group_ strname - The name of an Event Hub Consumer Group that should be used to read events from the Event Hub. Specifying distinct consumer group names for multiple inputs allows each of those inputs to receive the same events from the Event Hub. If not specified, the input uses the Event Hub’s default consumer group.
- event_
hub_ strname - The name of the Event Hub. Required on PUT (CreateOrReplace) requests.
- service_
bus_ strnamespace - The namespace that is associated with the desired Event Hub, Service Bus Queue, Service Bus Topic, etc. Required on PUT (CreateOrReplace) requests.
- str
- The shared access policy key for the specified shared access policy. Required on PUT (CreateOrReplace) requests.
- str
- The shared access policy name for the Event Hub, Service Bus Queue, Service Bus Topic, etc. Required on PUT (CreateOrReplace) requests.
- authentication
Mode String | "Msi" | "UserToken" | "Connection String" - Authentication Mode.
- consumer
Group StringName - The name of an Event Hub Consumer Group that should be used to read events from the Event Hub. Specifying distinct consumer group names for multiple inputs allows each of those inputs to receive the same events from the Event Hub. If not specified, the input uses the Event Hub’s default consumer group.
- event
Hub StringName - The name of the Event Hub. Required on PUT (CreateOrReplace) requests.
- service
Bus StringNamespace - The namespace that is associated with the desired Event Hub, Service Bus Queue, Service Bus Topic, etc. Required on PUT (CreateOrReplace) requests.
- String
- The shared access policy key for the specified shared access policy. Required on PUT (CreateOrReplace) requests.
- String
- The shared access policy name for the Event Hub, Service Bus Queue, Service Bus Topic, etc. Required on PUT (CreateOrReplace) requests.
EventHubV2StreamInputDataSourceResponse, EventHubV2StreamInputDataSourceResponseArgs
- Authentication
Mode string - Authentication Mode.
- Consumer
Group stringName - The name of an Event Hub Consumer Group that should be used to read events from the Event Hub. Specifying distinct consumer group names for multiple inputs allows each of those inputs to receive the same events from the Event Hub. If not specified, the input uses the Event Hub’s default consumer group.
- Event
Hub stringName - The name of the Event Hub. Required on PUT (CreateOrReplace) requests.
- Service
Bus stringNamespace - The namespace that is associated with the desired Event Hub, Service Bus Queue, Service Bus Topic, etc. Required on PUT (CreateOrReplace) requests.
- string
- The shared access policy key for the specified shared access policy. Required on PUT (CreateOrReplace) requests.
- string
- The shared access policy name for the Event Hub, Service Bus Queue, Service Bus Topic, etc. Required on PUT (CreateOrReplace) requests.
- Authentication
Mode string - Authentication Mode.
- Consumer
Group stringName - The name of an Event Hub Consumer Group that should be used to read events from the Event Hub. Specifying distinct consumer group names for multiple inputs allows each of those inputs to receive the same events from the Event Hub. If not specified, the input uses the Event Hub’s default consumer group.
- Event
Hub stringName - The name of the Event Hub. Required on PUT (CreateOrReplace) requests.
- Service
Bus stringNamespace - The namespace that is associated with the desired Event Hub, Service Bus Queue, Service Bus Topic, etc. Required on PUT (CreateOrReplace) requests.
- string
- The shared access policy key for the specified shared access policy. Required on PUT (CreateOrReplace) requests.
- string
- The shared access policy name for the Event Hub, Service Bus Queue, Service Bus Topic, etc. Required on PUT (CreateOrReplace) requests.
- authentication
Mode String - Authentication Mode.
- consumer
Group StringName - The name of an Event Hub Consumer Group that should be used to read events from the Event Hub. Specifying distinct consumer group names for multiple inputs allows each of those inputs to receive the same events from the Event Hub. If not specified, the input uses the Event Hub’s default consumer group.
- event
Hub StringName - The name of the Event Hub. Required on PUT (CreateOrReplace) requests.
- service
Bus StringNamespace - The namespace that is associated with the desired Event Hub, Service Bus Queue, Service Bus Topic, etc. Required on PUT (CreateOrReplace) requests.
- String
- The shared access policy key for the specified shared access policy. Required on PUT (CreateOrReplace) requests.
- String
- The shared access policy name for the Event Hub, Service Bus Queue, Service Bus Topic, etc. Required on PUT (CreateOrReplace) requests.
- authentication
Mode string - Authentication Mode.
- consumer
Group stringName - The name of an Event Hub Consumer Group that should be used to read events from the Event Hub. Specifying distinct consumer group names for multiple inputs allows each of those inputs to receive the same events from the Event Hub. If not specified, the input uses the Event Hub’s default consumer group.
- event
Hub stringName - The name of the Event Hub. Required on PUT (CreateOrReplace) requests.
- service
Bus stringNamespace - The namespace that is associated with the desired Event Hub, Service Bus Queue, Service Bus Topic, etc. Required on PUT (CreateOrReplace) requests.
- string
- The shared access policy key for the specified shared access policy. Required on PUT (CreateOrReplace) requests.
- string
- The shared access policy name for the Event Hub, Service Bus Queue, Service Bus Topic, etc. Required on PUT (CreateOrReplace) requests.
- authentication_
mode str - Authentication Mode.
- consumer_
group_ strname - The name of an Event Hub Consumer Group that should be used to read events from the Event Hub. Specifying distinct consumer group names for multiple inputs allows each of those inputs to receive the same events from the Event Hub. If not specified, the input uses the Event Hub’s default consumer group.
- event_
hub_ strname - The name of the Event Hub. Required on PUT (CreateOrReplace) requests.
- service_
bus_ strnamespace - The namespace that is associated with the desired Event Hub, Service Bus Queue, Service Bus Topic, etc. Required on PUT (CreateOrReplace) requests.
- str
- The shared access policy key for the specified shared access policy. Required on PUT (CreateOrReplace) requests.
- str
- The shared access policy name for the Event Hub, Service Bus Queue, Service Bus Topic, etc. Required on PUT (CreateOrReplace) requests.
- authentication
Mode String - Authentication Mode.
- consumer
Group StringName - The name of an Event Hub Consumer Group that should be used to read events from the Event Hub. Specifying distinct consumer group names for multiple inputs allows each of those inputs to receive the same events from the Event Hub. If not specified, the input uses the Event Hub’s default consumer group.
- event
Hub StringName - The name of the Event Hub. Required on PUT (CreateOrReplace) requests.
- service
Bus StringNamespace - The namespace that is associated with the desired Event Hub, Service Bus Queue, Service Bus Topic, etc. Required on PUT (CreateOrReplace) requests.
- String
- The shared access policy key for the specified shared access policy. Required on PUT (CreateOrReplace) requests.
- String
- The shared access policy name for the Event Hub, Service Bus Queue, Service Bus Topic, etc. Required on PUT (CreateOrReplace) requests.
EventsOutOfOrderPolicy, EventsOutOfOrderPolicyArgs
- Adjust
- Adjust
- Drop
- Drop
- Events
Out Of Order Policy Adjust - Adjust
- Events
Out Of Order Policy Drop - Drop
- Adjust
- Adjust
- Drop
- Drop
- Adjust
- Adjust
- Drop
- Drop
- ADJUST
- Adjust
- DROP
- Drop
- "Adjust"
- Adjust
- "Drop"
- Drop
FileReferenceInputDataSource, FileReferenceInputDataSourceArgs
- Path string
- The path of the file.
- Path string
- The path of the file.
- path String
- The path of the file.
- path string
- The path of the file.
- path str
- The path of the file.
- path String
- The path of the file.
FileReferenceInputDataSourceResponse, FileReferenceInputDataSourceResponseArgs
- Path string
- The path of the file.
- Path string
- The path of the file.
- path String
- The path of the file.
- path string
- The path of the file.
- path str
- The path of the file.
- path String
- The path of the file.
Function, FunctionArgs
- Name string
- Resource name
- Properties
Pulumi.
Azure | Pulumi.Native. Stream Analytics. Inputs. Aggregate Function Properties Azure Native. Stream Analytics. Inputs. Scalar Function Properties - The properties that are associated with a function.
- Name string
- Resource name
- Properties
Aggregate
Function | ScalarProperties Function Properties - The properties that are associated with a function.
- name String
- Resource name
- properties
Aggregate
Function | ScalarProperties Function Properties - The properties that are associated with a function.
- name string
- Resource name
- properties
Aggregate
Function | ScalarProperties Function Properties - The properties that are associated with a function.
- name str
- Resource name
- properties
Aggregate
Function | ScalarProperties Function Properties - The properties that are associated with a function.
- name String
- Resource name
- properties Property Map | Property Map
- The properties that are associated with a function.
FunctionInput, FunctionInputArgs
- Data
Type string - The (Azure Stream Analytics supported) data type of the function input parameter. A list of valid Azure Stream Analytics data types are described at https://msdn.microsoft.com/en-us/library/azure/dn835065.aspx
- Is
Configuration boolParameter - A flag indicating if the parameter is a configuration parameter. True if this input parameter is expected to be a constant. Default is false.
- Data
Type string - The (Azure Stream Analytics supported) data type of the function input parameter. A list of valid Azure Stream Analytics data types are described at https://msdn.microsoft.com/en-us/library/azure/dn835065.aspx
- Is
Configuration boolParameter - A flag indicating if the parameter is a configuration parameter. True if this input parameter is expected to be a constant. Default is false.
- data
Type String - The (Azure Stream Analytics supported) data type of the function input parameter. A list of valid Azure Stream Analytics data types are described at https://msdn.microsoft.com/en-us/library/azure/dn835065.aspx
- is
Configuration BooleanParameter - A flag indicating if the parameter is a configuration parameter. True if this input parameter is expected to be a constant. Default is false.
- data
Type string - The (Azure Stream Analytics supported) data type of the function input parameter. A list of valid Azure Stream Analytics data types are described at https://msdn.microsoft.com/en-us/library/azure/dn835065.aspx
- is
Configuration booleanParameter - A flag indicating if the parameter is a configuration parameter. True if this input parameter is expected to be a constant. Default is false.
- data_
type str - The (Azure Stream Analytics supported) data type of the function input parameter. A list of valid Azure Stream Analytics data types are described at https://msdn.microsoft.com/en-us/library/azure/dn835065.aspx
- is_
configuration_ boolparameter - A flag indicating if the parameter is a configuration parameter. True if this input parameter is expected to be a constant. Default is false.
- data
Type String - The (Azure Stream Analytics supported) data type of the function input parameter. A list of valid Azure Stream Analytics data types are described at https://msdn.microsoft.com/en-us/library/azure/dn835065.aspx
- is
Configuration BooleanParameter - A flag indicating if the parameter is a configuration parameter. True if this input parameter is expected to be a constant. Default is false.
FunctionInputResponse, FunctionInputResponseArgs
- Data
Type string - The (Azure Stream Analytics supported) data type of the function input parameter. A list of valid Azure Stream Analytics data types are described at https://msdn.microsoft.com/en-us/library/azure/dn835065.aspx
- Is
Configuration boolParameter - A flag indicating if the parameter is a configuration parameter. True if this input parameter is expected to be a constant. Default is false.
- Data
Type string - The (Azure Stream Analytics supported) data type of the function input parameter. A list of valid Azure Stream Analytics data types are described at https://msdn.microsoft.com/en-us/library/azure/dn835065.aspx
- Is
Configuration boolParameter - A flag indicating if the parameter is a configuration parameter. True if this input parameter is expected to be a constant. Default is false.
- data
Type String - The (Azure Stream Analytics supported) data type of the function input parameter. A list of valid Azure Stream Analytics data types are described at https://msdn.microsoft.com/en-us/library/azure/dn835065.aspx
- is
Configuration BooleanParameter - A flag indicating if the parameter is a configuration parameter. True if this input parameter is expected to be a constant. Default is false.
- data
Type string - The (Azure Stream Analytics supported) data type of the function input parameter. A list of valid Azure Stream Analytics data types are described at https://msdn.microsoft.com/en-us/library/azure/dn835065.aspx
- is
Configuration booleanParameter - A flag indicating if the parameter is a configuration parameter. True if this input parameter is expected to be a constant. Default is false.
- data_
type str - The (Azure Stream Analytics supported) data type of the function input parameter. A list of valid Azure Stream Analytics data types are described at https://msdn.microsoft.com/en-us/library/azure/dn835065.aspx
- is_
configuration_ boolparameter - A flag indicating if the parameter is a configuration parameter. True if this input parameter is expected to be a constant. Default is false.
- data
Type String - The (Azure Stream Analytics supported) data type of the function input parameter. A list of valid Azure Stream Analytics data types are described at https://msdn.microsoft.com/en-us/library/azure/dn835065.aspx
- is
Configuration BooleanParameter - A flag indicating if the parameter is a configuration parameter. True if this input parameter is expected to be a constant. Default is false.
FunctionOutput, FunctionOutputArgs
- Data
Type string - The (Azure Stream Analytics supported) data type of the function output. A list of valid Azure Stream Analytics data types are described at https://msdn.microsoft.com/en-us/library/azure/dn835065.aspx
- Data
Type string - The (Azure Stream Analytics supported) data type of the function output. A list of valid Azure Stream Analytics data types are described at https://msdn.microsoft.com/en-us/library/azure/dn835065.aspx
- data
Type String - The (Azure Stream Analytics supported) data type of the function output. A list of valid Azure Stream Analytics data types are described at https://msdn.microsoft.com/en-us/library/azure/dn835065.aspx
- data
Type string - The (Azure Stream Analytics supported) data type of the function output. A list of valid Azure Stream Analytics data types are described at https://msdn.microsoft.com/en-us/library/azure/dn835065.aspx
- data_
type str - The (Azure Stream Analytics supported) data type of the function output. A list of valid Azure Stream Analytics data types are described at https://msdn.microsoft.com/en-us/library/azure/dn835065.aspx
- data
Type String - The (Azure Stream Analytics supported) data type of the function output. A list of valid Azure Stream Analytics data types are described at https://msdn.microsoft.com/en-us/library/azure/dn835065.aspx
FunctionOutputResponse, FunctionOutputResponseArgs
- Data
Type string - The (Azure Stream Analytics supported) data type of the function output. A list of valid Azure Stream Analytics data types are described at https://msdn.microsoft.com/en-us/library/azure/dn835065.aspx
- Data
Type string - The (Azure Stream Analytics supported) data type of the function output. A list of valid Azure Stream Analytics data types are described at https://msdn.microsoft.com/en-us/library/azure/dn835065.aspx
- data
Type String - The (Azure Stream Analytics supported) data type of the function output. A list of valid Azure Stream Analytics data types are described at https://msdn.microsoft.com/en-us/library/azure/dn835065.aspx
- data
Type string - The (Azure Stream Analytics supported) data type of the function output. A list of valid Azure Stream Analytics data types are described at https://msdn.microsoft.com/en-us/library/azure/dn835065.aspx
- data_
type str - The (Azure Stream Analytics supported) data type of the function output. A list of valid Azure Stream Analytics data types are described at https://msdn.microsoft.com/en-us/library/azure/dn835065.aspx
- data
Type String - The (Azure Stream Analytics supported) data type of the function output. A list of valid Azure Stream Analytics data types are described at https://msdn.microsoft.com/en-us/library/azure/dn835065.aspx
FunctionResponse, FunctionResponseArgs
- Id string
- Resource Id
- Type string
- Resource type
- Name string
- Resource name
- Properties
Pulumi.
Azure | Pulumi.Native. Stream Analytics. Inputs. Aggregate Function Properties Response Azure Native. Stream Analytics. Inputs. Scalar Function Properties Response - The properties that are associated with a function.
- Id string
- Resource Id
- Type string
- Resource type
- Name string
- Resource name
- Properties
Aggregate
Function | ScalarProperties Response Function Properties Response - The properties that are associated with a function.
- id String
- Resource Id
- type String
- Resource type
- name String
- Resource name
- properties
Aggregate
Function | ScalarProperties Response Function Properties Response - The properties that are associated with a function.
- id string
- Resource Id
- type string
- Resource type
- name string
- Resource name
- properties
Aggregate
Function | ScalarProperties Response Function Properties Response - The properties that are associated with a function.
- id str
- Resource Id
- type str
- Resource type
- name str
- Resource name
- properties
Aggregate
Function | ScalarProperties Response Function Properties Response - The properties that are associated with a function.
- id String
- Resource Id
- type String
- Resource type
- name String
- Resource name
- properties Property Map | Property Map
- The properties that are associated with a function.
GatewayMessageBusOutputDataSource, GatewayMessageBusOutputDataSourceArgs
- Topic string
- The name of the Service Bus topic.
- Topic string
- The name of the Service Bus topic.
- topic String
- The name of the Service Bus topic.
- topic string
- The name of the Service Bus topic.
- topic str
- The name of the Service Bus topic.
- topic String
- The name of the Service Bus topic.
GatewayMessageBusOutputDataSourceResponse, GatewayMessageBusOutputDataSourceResponseArgs
- Topic string
- The name of the Service Bus topic.
- Topic string
- The name of the Service Bus topic.
- topic String
- The name of the Service Bus topic.
- topic string
- The name of the Service Bus topic.
- topic str
- The name of the Service Bus topic.
- topic String
- The name of the Service Bus topic.
GatewayMessageBusStreamInputDataSource, GatewayMessageBusStreamInputDataSourceArgs
- Topic string
- The name of the Service Bus topic.
- Topic string
- The name of the Service Bus topic.
- topic String
- The name of the Service Bus topic.
- topic string
- The name of the Service Bus topic.
- topic str
- The name of the Service Bus topic.
- topic String
- The name of the Service Bus topic.
GatewayMessageBusStreamInputDataSourceResponse, GatewayMessageBusStreamInputDataSourceResponseArgs
- Topic string
- The name of the Service Bus topic.
- Topic string
- The name of the Service Bus topic.
- topic String
- The name of the Service Bus topic.
- topic string
- The name of the Service Bus topic.
- topic str
- The name of the Service Bus topic.
- topic String
- The name of the Service Bus topic.
Identity, IdentityArgs
- Type string
- The identity type
- Type string
- The identity type
- type String
- The identity type
- type string
- The identity type
- type str
- The identity type
- type String
- The identity type
IdentityResponse, IdentityResponseArgs
- Principal
Id string - The identity principal ID
- Tenant
Id string - The identity tenantId
- Type string
- The identity type
- Principal
Id string - The identity principal ID
- Tenant
Id string - The identity tenantId
- Type string
- The identity type
- principal
Id String - The identity principal ID
- tenant
Id String - The identity tenantId
- type String
- The identity type
- principal
Id string - The identity principal ID
- tenant
Id string - The identity tenantId
- type string
- The identity type
- principal_
id str - The identity principal ID
- tenant_
id str - The identity tenantId
- type str
- The identity type
- principal
Id String - The identity principal ID
- tenant
Id String - The identity tenantId
- type String
- The identity type
Input, InputArgs
- Name string
- Resource name
- Properties
Pulumi.
Azure | Pulumi.Native. Stream Analytics. Inputs. Reference Input Properties Azure Native. Stream Analytics. Inputs. Stream Input Properties - The properties that are associated with an input. Required on PUT (CreateOrReplace) requests.
- Name string
- Resource name
- Properties
Reference
Input | StreamProperties Input Properties - The properties that are associated with an input. Required on PUT (CreateOrReplace) requests.
- name String
- Resource name
- properties
Reference
Input | StreamProperties Input Properties - The properties that are associated with an input. Required on PUT (CreateOrReplace) requests.
- name string
- Resource name
- properties
Reference
Input | StreamProperties Input Properties - The properties that are associated with an input. Required on PUT (CreateOrReplace) requests.
- name str
- Resource name
- properties
Reference
Input | StreamProperties Input Properties - The properties that are associated with an input. Required on PUT (CreateOrReplace) requests.
- name String
- Resource name
- properties Property Map | Property Map
- The properties that are associated with an input. Required on PUT (CreateOrReplace) requests.
InputResponse, InputResponseArgs
- Id string
- Resource Id
- Type string
- Resource type
- Name string
- Resource name
- Properties
Pulumi.
Azure | Pulumi.Native. Stream Analytics. Inputs. Reference Input Properties Response Azure Native. Stream Analytics. Inputs. Stream Input Properties Response - The properties that are associated with an input. Required on PUT (CreateOrReplace) requests.
- Id string
- Resource Id
- Type string
- Resource type
- Name string
- Resource name
- Properties
Reference
Input | StreamProperties Response Input Properties Response - The properties that are associated with an input. Required on PUT (CreateOrReplace) requests.
- id String
- Resource Id
- type String
- Resource type
- name String
- Resource name
- properties
Reference
Input | StreamProperties Response Input Properties Response - The properties that are associated with an input. Required on PUT (CreateOrReplace) requests.
- id string
- Resource Id
- type string
- Resource type
- name string
- Resource name
- properties
Reference
Input | StreamProperties Response Input Properties Response - The properties that are associated with an input. Required on PUT (CreateOrReplace) requests.
- id str
- Resource Id
- type str
- Resource type
- name str
- Resource name
- properties
Reference
Input | StreamProperties Response Input Properties Response - The properties that are associated with an input. Required on PUT (CreateOrReplace) requests.
- id String
- Resource Id
- type String
- Resource type
- name String
- Resource name
- properties Property Map | Property Map
- The properties that are associated with an input. Required on PUT (CreateOrReplace) requests.
IoTHubStreamInputDataSource, IoTHubStreamInputDataSourceArgs
- Consumer
Group stringName - The name of an IoT Hub Consumer Group that should be used to read events from the IoT Hub. If not specified, the input uses the Iot Hub’s default consumer group.
- Endpoint string
- The IoT Hub endpoint to connect to (ie. messages/events, messages/operationsMonitoringEvents, etc.).
- Iot
Hub stringNamespace - The name or the URI of the IoT Hub. Required on PUT (CreateOrReplace) requests.
- string
- The shared access policy key for the specified shared access policy. Required on PUT (CreateOrReplace) requests.
- string
- The shared access policy name for the IoT Hub. This policy must contain at least the Service connect permission. Required on PUT (CreateOrReplace) requests.
- Consumer
Group stringName - The name of an IoT Hub Consumer Group that should be used to read events from the IoT Hub. If not specified, the input uses the Iot Hub’s default consumer group.
- Endpoint string
- The IoT Hub endpoint to connect to (ie. messages/events, messages/operationsMonitoringEvents, etc.).
- Iot
Hub stringNamespace - The name or the URI of the IoT Hub. Required on PUT (CreateOrReplace) requests.
- string
- The shared access policy key for the specified shared access policy. Required on PUT (CreateOrReplace) requests.
- string
- The shared access policy name for the IoT Hub. This policy must contain at least the Service connect permission. Required on PUT (CreateOrReplace) requests.
- consumer
Group StringName - The name of an IoT Hub Consumer Group that should be used to read events from the IoT Hub. If not specified, the input uses the Iot Hub’s default consumer group.
- endpoint String
- The IoT Hub endpoint to connect to (ie. messages/events, messages/operationsMonitoringEvents, etc.).
- iot
Hub StringNamespace - The name or the URI of the IoT Hub. Required on PUT (CreateOrReplace) requests.
- String
- The shared access policy key for the specified shared access policy. Required on PUT (CreateOrReplace) requests.
- String
- The shared access policy name for the IoT Hub. This policy must contain at least the Service connect permission. Required on PUT (CreateOrReplace) requests.
- consumer
Group stringName - The name of an IoT Hub Consumer Group that should be used to read events from the IoT Hub. If not specified, the input uses the Iot Hub’s default consumer group.
- endpoint string
- The IoT Hub endpoint to connect to (ie. messages/events, messages/operationsMonitoringEvents, etc.).
- iot
Hub stringNamespace - The name or the URI of the IoT Hub. Required on PUT (CreateOrReplace) requests.
- string
- The shared access policy key for the specified shared access policy. Required on PUT (CreateOrReplace) requests.
- string
- The shared access policy name for the IoT Hub. This policy must contain at least the Service connect permission. Required on PUT (CreateOrReplace) requests.
- consumer_
group_ strname - The name of an IoT Hub Consumer Group that should be used to read events from the IoT Hub. If not specified, the input uses the Iot Hub’s default consumer group.
- endpoint str
- The IoT Hub endpoint to connect to (ie. messages/events, messages/operationsMonitoringEvents, etc.).
- iot_
hub_ strnamespace - The name or the URI of the IoT Hub. Required on PUT (CreateOrReplace) requests.
- str
- The shared access policy key for the specified shared access policy. Required on PUT (CreateOrReplace) requests.
- str
- The shared access policy name for the IoT Hub. This policy must contain at least the Service connect permission. Required on PUT (CreateOrReplace) requests.
- consumer
Group StringName - The name of an IoT Hub Consumer Group that should be used to read events from the IoT Hub. If not specified, the input uses the Iot Hub’s default consumer group.
- endpoint String
- The IoT Hub endpoint to connect to (ie. messages/events, messages/operationsMonitoringEvents, etc.).
- iot
Hub StringNamespace - The name or the URI of the IoT Hub. Required on PUT (CreateOrReplace) requests.
- String
- The shared access policy key for the specified shared access policy. Required on PUT (CreateOrReplace) requests.
- String
- The shared access policy name for the IoT Hub. This policy must contain at least the Service connect permission. Required on PUT (CreateOrReplace) requests.
IoTHubStreamInputDataSourceResponse, IoTHubStreamInputDataSourceResponseArgs
- Consumer
Group stringName - The name of an IoT Hub Consumer Group that should be used to read events from the IoT Hub. If not specified, the input uses the Iot Hub’s default consumer group.
- Endpoint string
- The IoT Hub endpoint to connect to (ie. messages/events, messages/operationsMonitoringEvents, etc.).
- Iot
Hub stringNamespace - The name or the URI of the IoT Hub. Required on PUT (CreateOrReplace) requests.
- string
- The shared access policy key for the specified shared access policy. Required on PUT (CreateOrReplace) requests.
- string
- The shared access policy name for the IoT Hub. This policy must contain at least the Service connect permission. Required on PUT (CreateOrReplace) requests.
- Consumer
Group stringName - The name of an IoT Hub Consumer Group that should be used to read events from the IoT Hub. If not specified, the input uses the Iot Hub’s default consumer group.
- Endpoint string
- The IoT Hub endpoint to connect to (ie. messages/events, messages/operationsMonitoringEvents, etc.).
- Iot
Hub stringNamespace - The name or the URI of the IoT Hub. Required on PUT (CreateOrReplace) requests.
- string
- The shared access policy key for the specified shared access policy. Required on PUT (CreateOrReplace) requests.
- string
- The shared access policy name for the IoT Hub. This policy must contain at least the Service connect permission. Required on PUT (CreateOrReplace) requests.
- consumer
Group StringName - The name of an IoT Hub Consumer Group that should be used to read events from the IoT Hub. If not specified, the input uses the Iot Hub’s default consumer group.
- endpoint String
- The IoT Hub endpoint to connect to (ie. messages/events, messages/operationsMonitoringEvents, etc.).
- iot
Hub StringNamespace - The name or the URI of the IoT Hub. Required on PUT (CreateOrReplace) requests.
- String
- The shared access policy key for the specified shared access policy. Required on PUT (CreateOrReplace) requests.
- String
- The shared access policy name for the IoT Hub. This policy must contain at least the Service connect permission. Required on PUT (CreateOrReplace) requests.
- consumer
Group stringName - The name of an IoT Hub Consumer Group that should be used to read events from the IoT Hub. If not specified, the input uses the Iot Hub’s default consumer group.
- endpoint string
- The IoT Hub endpoint to connect to (ie. messages/events, messages/operationsMonitoringEvents, etc.).
- iot
Hub stringNamespace - The name or the URI of the IoT Hub. Required on PUT (CreateOrReplace) requests.
- string
- The shared access policy key for the specified shared access policy. Required on PUT (CreateOrReplace) requests.
- string
- The shared access policy name for the IoT Hub. This policy must contain at least the Service connect permission. Required on PUT (CreateOrReplace) requests.
- consumer_
group_ strname - The name of an IoT Hub Consumer Group that should be used to read events from the IoT Hub. If not specified, the input uses the Iot Hub’s default consumer group.
- endpoint str
- The IoT Hub endpoint to connect to (ie. messages/events, messages/operationsMonitoringEvents, etc.).
- iot_
hub_ strnamespace - The name or the URI of the IoT Hub. Required on PUT (CreateOrReplace) requests.
- str
- The shared access policy key for the specified shared access policy. Required on PUT (CreateOrReplace) requests.
- str
- The shared access policy name for the IoT Hub. This policy must contain at least the Service connect permission. Required on PUT (CreateOrReplace) requests.
- consumer
Group StringName - The name of an IoT Hub Consumer Group that should be used to read events from the IoT Hub. If not specified, the input uses the Iot Hub’s default consumer group.
- endpoint String
- The IoT Hub endpoint to connect to (ie. messages/events, messages/operationsMonitoringEvents, etc.).
- iot
Hub StringNamespace - The name or the URI of the IoT Hub. Required on PUT (CreateOrReplace) requests.
- String
- The shared access policy key for the specified shared access policy. Required on PUT (CreateOrReplace) requests.
- String
- The shared access policy name for the IoT Hub. This policy must contain at least the Service connect permission. Required on PUT (CreateOrReplace) requests.
JavaScriptFunctionBinding, JavaScriptFunctionBindingArgs
- Script string
- The JavaScript code containing a single function definition. For example: 'function (x, y) { return x + y; }'
- Script string
- The JavaScript code containing a single function definition. For example: 'function (x, y) { return x + y; }'
- script String
- The JavaScript code containing a single function definition. For example: 'function (x, y) { return x + y; }'
- script string
- The JavaScript code containing a single function definition. For example: 'function (x, y) { return x + y; }'
- script str
- The JavaScript code containing a single function definition. For example: 'function (x, y) { return x + y; }'
- script String
- The JavaScript code containing a single function definition. For example: 'function (x, y) { return x + y; }'
JavaScriptFunctionBindingResponse, JavaScriptFunctionBindingResponseArgs
- Script string
- The JavaScript code containing a single function definition. For example: 'function (x, y) { return x + y; }'
- Script string
- The JavaScript code containing a single function definition. For example: 'function (x, y) { return x + y; }'
- script String
- The JavaScript code containing a single function definition. For example: 'function (x, y) { return x + y; }'
- script string
- The JavaScript code containing a single function definition. For example: 'function (x, y) { return x + y; }'
- script str
- The JavaScript code containing a single function definition. For example: 'function (x, y) { return x + y; }'
- script String
- The JavaScript code containing a single function definition. For example: 'function (x, y) { return x + y; }'
JobStorageAccount, JobStorageAccountArgs
- Account
Key string - The account key for the Azure Storage account. Required on PUT (CreateOrReplace) requests.
- Account
Name string - The name of the Azure Storage account. Required on PUT (CreateOrReplace) requests.
- Authentication
Mode string | Pulumi.Azure Native. Stream Analytics. Authentication Mode - Authentication Mode.
- Account
Key string - The account key for the Azure Storage account. Required on PUT (CreateOrReplace) requests.
- Account
Name string - The name of the Azure Storage account. Required on PUT (CreateOrReplace) requests.
- Authentication
Mode string | AuthenticationMode - Authentication Mode.
- account
Key String - The account key for the Azure Storage account. Required on PUT (CreateOrReplace) requests.
- account
Name String - The name of the Azure Storage account. Required on PUT (CreateOrReplace) requests.
- authentication
Mode String | AuthenticationMode - Authentication Mode.
- account
Key string - The account key for the Azure Storage account. Required on PUT (CreateOrReplace) requests.
- account
Name string - The name of the Azure Storage account. Required on PUT (CreateOrReplace) requests.
- authentication
Mode string | AuthenticationMode - Authentication Mode.
- account_
key str - The account key for the Azure Storage account. Required on PUT (CreateOrReplace) requests.
- account_
name str - The name of the Azure Storage account. Required on PUT (CreateOrReplace) requests.
- authentication_
mode str | AuthenticationMode - Authentication Mode.
- account
Key String - The account key for the Azure Storage account. Required on PUT (CreateOrReplace) requests.
- account
Name String - The name of the Azure Storage account. Required on PUT (CreateOrReplace) requests.
- authentication
Mode String | "Msi" | "UserToken" | "Connection String" - Authentication Mode.
JobStorageAccountResponse, JobStorageAccountResponseArgs
- Account
Key string - The account key for the Azure Storage account. Required on PUT (CreateOrReplace) requests.
- Account
Name string - The name of the Azure Storage account. Required on PUT (CreateOrReplace) requests.
- Authentication
Mode string - Authentication Mode.
- Account
Key string - The account key for the Azure Storage account. Required on PUT (CreateOrReplace) requests.
- Account
Name string - The name of the Azure Storage account. Required on PUT (CreateOrReplace) requests.
- Authentication
Mode string - Authentication Mode.
- account
Key String - The account key for the Azure Storage account. Required on PUT (CreateOrReplace) requests.
- account
Name String - The name of the Azure Storage account. Required on PUT (CreateOrReplace) requests.
- authentication
Mode String - Authentication Mode.
- account
Key string - The account key for the Azure Storage account. Required on PUT (CreateOrReplace) requests.
- account
Name string - The name of the Azure Storage account. Required on PUT (CreateOrReplace) requests.
- authentication
Mode string - Authentication Mode.
- account_
key str - The account key for the Azure Storage account. Required on PUT (CreateOrReplace) requests.
- account_
name str - The name of the Azure Storage account. Required on PUT (CreateOrReplace) requests.
- authentication_
mode str - Authentication Mode.
- account
Key String - The account key for the Azure Storage account. Required on PUT (CreateOrReplace) requests.
- account
Name String - The name of the Azure Storage account. Required on PUT (CreateOrReplace) requests.
- authentication
Mode String - Authentication Mode.
JobType, JobTypeArgs
- Cloud
- Cloud
- Edge
- Edge
- Job
Type Cloud - Cloud
- Job
Type Edge - Edge
- Cloud
- Cloud
- Edge
- Edge
- Cloud
- Cloud
- Edge
- Edge
- CLOUD
- Cloud
- EDGE
- Edge
- "Cloud"
- Cloud
- "Edge"
- Edge
JsonOutputSerializationFormat, JsonOutputSerializationFormatArgs
- Line
Separated - LineSeparated
- Array
- Array
- Json
Output Serialization Format Line Separated - LineSeparated
- Json
Output Serialization Format Array - Array
- Line
Separated - LineSeparated
- Array
- Array
- Line
Separated - LineSeparated
- Array
- Array
- LINE_SEPARATED
- LineSeparated
- ARRAY
- Array
- "Line
Separated" - LineSeparated
- "Array"
- Array
JsonSerialization, JsonSerializationArgs
- Encoding
string | Pulumi.
Azure Native. Stream Analytics. Encoding - Specifies the encoding of the incoming data in the case of input and the encoding of outgoing data in the case of output. Required on PUT (CreateOrReplace) requests.
- Format
string | Pulumi.
Azure Native. Stream Analytics. Json Output Serialization Format - This property only applies to JSON serialization of outputs only. It is not applicable to inputs. This property specifies the format of the JSON the output will be written in. The currently supported values are 'lineSeparated' indicating the output will be formatted by having each JSON object separated by a new line and 'array' indicating the output will be formatted as an array of JSON objects. Default value is 'lineSeparated' if left null.
- Encoding string | Encoding
- Specifies the encoding of the incoming data in the case of input and the encoding of outgoing data in the case of output. Required on PUT (CreateOrReplace) requests.
- Format
string | Json
Output Serialization Format - This property only applies to JSON serialization of outputs only. It is not applicable to inputs. This property specifies the format of the JSON the output will be written in. The currently supported values are 'lineSeparated' indicating the output will be formatted by having each JSON object separated by a new line and 'array' indicating the output will be formatted as an array of JSON objects. Default value is 'lineSeparated' if left null.
- encoding String | Encoding
- Specifies the encoding of the incoming data in the case of input and the encoding of outgoing data in the case of output. Required on PUT (CreateOrReplace) requests.
- format
String | Json
Output Serialization Format - This property only applies to JSON serialization of outputs only. It is not applicable to inputs. This property specifies the format of the JSON the output will be written in. The currently supported values are 'lineSeparated' indicating the output will be formatted by having each JSON object separated by a new line and 'array' indicating the output will be formatted as an array of JSON objects. Default value is 'lineSeparated' if left null.
- encoding string | Encoding
- Specifies the encoding of the incoming data in the case of input and the encoding of outgoing data in the case of output. Required on PUT (CreateOrReplace) requests.
- format
string | Json
Output Serialization Format - This property only applies to JSON serialization of outputs only. It is not applicable to inputs. This property specifies the format of the JSON the output will be written in. The currently supported values are 'lineSeparated' indicating the output will be formatted by having each JSON object separated by a new line and 'array' indicating the output will be formatted as an array of JSON objects. Default value is 'lineSeparated' if left null.
- encoding str | Encoding
- Specifies the encoding of the incoming data in the case of input and the encoding of outgoing data in the case of output. Required on PUT (CreateOrReplace) requests.
- format
str | Json
Output Serialization Format - This property only applies to JSON serialization of outputs only. It is not applicable to inputs. This property specifies the format of the JSON the output will be written in. The currently supported values are 'lineSeparated' indicating the output will be formatted by having each JSON object separated by a new line and 'array' indicating the output will be formatted as an array of JSON objects. Default value is 'lineSeparated' if left null.
- encoding String | "UTF8"
- Specifies the encoding of the incoming data in the case of input and the encoding of outgoing data in the case of output. Required on PUT (CreateOrReplace) requests.
- format
String | "Line
Separated" | "Array" - This property only applies to JSON serialization of outputs only. It is not applicable to inputs. This property specifies the format of the JSON the output will be written in. The currently supported values are 'lineSeparated' indicating the output will be formatted by having each JSON object separated by a new line and 'array' indicating the output will be formatted as an array of JSON objects. Default value is 'lineSeparated' if left null.
JsonSerializationResponse, JsonSerializationResponseArgs
- Encoding string
- Specifies the encoding of the incoming data in the case of input and the encoding of outgoing data in the case of output. Required on PUT (CreateOrReplace) requests.
- Format string
- This property only applies to JSON serialization of outputs only. It is not applicable to inputs. This property specifies the format of the JSON the output will be written in. The currently supported values are 'lineSeparated' indicating the output will be formatted by having each JSON object separated by a new line and 'array' indicating the output will be formatted as an array of JSON objects. Default value is 'lineSeparated' if left null.
- Encoding string
- Specifies the encoding of the incoming data in the case of input and the encoding of outgoing data in the case of output. Required on PUT (CreateOrReplace) requests.
- Format string
- This property only applies to JSON serialization of outputs only. It is not applicable to inputs. This property specifies the format of the JSON the output will be written in. The currently supported values are 'lineSeparated' indicating the output will be formatted by having each JSON object separated by a new line and 'array' indicating the output will be formatted as an array of JSON objects. Default value is 'lineSeparated' if left null.
- encoding String
- Specifies the encoding of the incoming data in the case of input and the encoding of outgoing data in the case of output. Required on PUT (CreateOrReplace) requests.
- format String
- This property only applies to JSON serialization of outputs only. It is not applicable to inputs. This property specifies the format of the JSON the output will be written in. The currently supported values are 'lineSeparated' indicating the output will be formatted by having each JSON object separated by a new line and 'array' indicating the output will be formatted as an array of JSON objects. Default value is 'lineSeparated' if left null.
- encoding string
- Specifies the encoding of the incoming data in the case of input and the encoding of outgoing data in the case of output. Required on PUT (CreateOrReplace) requests.
- format string
- This property only applies to JSON serialization of outputs only. It is not applicable to inputs. This property specifies the format of the JSON the output will be written in. The currently supported values are 'lineSeparated' indicating the output will be formatted by having each JSON object separated by a new line and 'array' indicating the output will be formatted as an array of JSON objects. Default value is 'lineSeparated' if left null.
- encoding str
- Specifies the encoding of the incoming data in the case of input and the encoding of outgoing data in the case of output. Required on PUT (CreateOrReplace) requests.
- format str
- This property only applies to JSON serialization of outputs only. It is not applicable to inputs. This property specifies the format of the JSON the output will be written in. The currently supported values are 'lineSeparated' indicating the output will be formatted by having each JSON object separated by a new line and 'array' indicating the output will be formatted as an array of JSON objects. Default value is 'lineSeparated' if left null.
- encoding String
- Specifies the encoding of the incoming data in the case of input and the encoding of outgoing data in the case of output. Required on PUT (CreateOrReplace) requests.
- format String
- This property only applies to JSON serialization of outputs only. It is not applicable to inputs. This property specifies the format of the JSON the output will be written in. The currently supported values are 'lineSeparated' indicating the output will be formatted by having each JSON object separated by a new line and 'array' indicating the output will be formatted as an array of JSON objects. Default value is 'lineSeparated' if left null.
Output, OutputArgs
- Datasource
Pulumi.
Azure | Pulumi.Native. Stream Analytics. Inputs. Azure Data Lake Store Output Data Source Azure | Pulumi.Native. Stream Analytics. Inputs. Azure Function Output Data Source Azure | Pulumi.Native. Stream Analytics. Inputs. Azure Sql Database Output Data Source Azure | Pulumi.Native. Stream Analytics. Inputs. Azure Synapse Output Data Source Azure | Pulumi.Native. Stream Analytics. Inputs. Azure Table Output Data Source Azure | Pulumi.Native. Stream Analytics. Inputs. Blob Output Data Source Azure | Pulumi.Native. Stream Analytics. Inputs. Document Db Output Data Source Azure | Pulumi.Native. Stream Analytics. Inputs. Event Hub Output Data Source Azure | Pulumi.Native. Stream Analytics. Inputs. Event Hub V2Output Data Source Azure | Pulumi.Native. Stream Analytics. Inputs. Gateway Message Bus Output Data Source Azure | Pulumi.Native. Stream Analytics. Inputs. Power BIOutput Data Source Azure | Pulumi.Native. Stream Analytics. Inputs. Service Bus Queue Output Data Source Azure Native. Stream Analytics. Inputs. Service Bus Topic Output Data Source - Describes the data source that output will be written to. Required on PUT (CreateOrReplace) requests.
- Name string
- Resource name
- Serialization
Pulumi.
Azure | Pulumi.Native. Stream Analytics. Inputs. Avro Serialization Azure | Pulumi.Native. Stream Analytics. Inputs. Csv Serialization Azure | Pulumi.Native. Stream Analytics. Inputs. Json Serialization Azure Native. Stream Analytics. Inputs. Parquet Serialization - Describes how data from an input is serialized or how data is serialized when written to an output. Required on PUT (CreateOrReplace) requests.
- Size
Window int - The size window to constrain a Stream Analytics output to.
- Time
Window string - The time frame for filtering Stream Analytics job outputs.
- Datasource
Azure
Data | AzureLake Store Output Data Source Function | AzureOutput Data Source Sql | AzureDatabase Output Data Source Synapse | AzureOutput Data Source Table | BlobOutput Data Source Output | DocumentData Source Db | EventOutput Data Source Hub | EventOutput Data Source Hub | GatewayV2Output Data Source Message | PowerBus Output Data Source BIOutput | ServiceData Source Bus | ServiceQueue Output Data Source Bus Topic Output Data Source - Describes the data source that output will be written to. Required on PUT (CreateOrReplace) requests.
- Name string
- Resource name
- Serialization
Avro
Serialization | CsvSerialization | JsonSerialization | ParquetSerialization - Describes how data from an input is serialized or how data is serialized when written to an output. Required on PUT (CreateOrReplace) requests.
- Size
Window int - The size window to constrain a Stream Analytics output to.
- Time
Window string - The time frame for filtering Stream Analytics job outputs.
- datasource
Azure
Data | AzureLake Store Output Data Source Function | AzureOutput Data Source Sql | AzureDatabase Output Data Source Synapse | AzureOutput Data Source Table | BlobOutput Data Source Output | DocumentData Source Db | EventOutput Data Source Hub | EventOutput Data Source Hub | GatewayV2Output Data Source Message | PowerBus Output Data Source BIOutput | ServiceData Source Bus | ServiceQueue Output Data Source Bus Topic Output Data Source - Describes the data source that output will be written to. Required on PUT (CreateOrReplace) requests.
- name String
- Resource name
- serialization
Avro
Serialization | CsvSerialization | JsonSerialization | ParquetSerialization - Describes how data from an input is serialized or how data is serialized when written to an output. Required on PUT (CreateOrReplace) requests.
- size
Window Integer - The size window to constrain a Stream Analytics output to.
- time
Window String - The time frame for filtering Stream Analytics job outputs.
- datasource
Azure
Data | AzureLake Store Output Data Source Function | AzureOutput Data Source Sql | AzureDatabase Output Data Source Synapse | AzureOutput Data Source Table | BlobOutput Data Source Output | DocumentData Source Db | EventOutput Data Source Hub | EventOutput Data Source Hub | GatewayV2Output Data Source Message | PowerBus Output Data Source BIOutput | ServiceData Source Bus | ServiceQueue Output Data Source Bus Topic Output Data Source - Describes the data source that output will be written to. Required on PUT (CreateOrReplace) requests.
- name string
- Resource name
- serialization
Avro
Serialization | CsvSerialization | JsonSerialization | ParquetSerialization - Describes how data from an input is serialized or how data is serialized when written to an output. Required on PUT (CreateOrReplace) requests.
- size
Window number - The size window to constrain a Stream Analytics output to.
- time
Window string - The time frame for filtering Stream Analytics job outputs.
- datasource
Azure
Data | AzureLake Store Output Data Source Function | AzureOutput Data Source Sql | AzureDatabase Output Data Source Synapse | AzureOutput Data Source Table | BlobOutput Data Source Output | DocumentData Source Db | EventOutput Data Source Hub | EventOutput Data Source Hub | GatewayV2Output Data Source Message | PowerBus Output Data Source BIOutput | ServiceData Source Bus | ServiceQueue Output Data Source Bus Topic Output Data Source - Describes the data source that output will be written to. Required on PUT (CreateOrReplace) requests.
- name str
- Resource name
- serialization
Avro
Serialization | CsvSerialization | JsonSerialization | ParquetSerialization - Describes how data from an input is serialized or how data is serialized when written to an output. Required on PUT (CreateOrReplace) requests.
- size_
window int - The size window to constrain a Stream Analytics output to.
- time_
window str - The time frame for filtering Stream Analytics job outputs.
- datasource Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map
- Describes the data source that output will be written to. Required on PUT (CreateOrReplace) requests.
- name String
- Resource name
- serialization Property Map | Property Map | Property Map | Property Map
- Describes how data from an input is serialized or how data is serialized when written to an output. Required on PUT (CreateOrReplace) requests.
- size
Window Number - The size window to constrain a Stream Analytics output to.
- time
Window String - The time frame for filtering Stream Analytics job outputs.
OutputErrorPolicy, OutputErrorPolicyArgs
- Stop
- Stop
- Drop
- Drop
- Output
Error Policy Stop - Stop
- Output
Error Policy Drop - Drop
- Stop
- Stop
- Drop
- Drop
- Stop
- Stop
- Drop
- Drop
- STOP
- Stop
- DROP
- Drop
- "Stop"
- Stop
- "Drop"
- Drop
OutputResponse, OutputResponseArgs
- Diagnostics
Pulumi.
Azure Native. Stream Analytics. Inputs. Diagnostics Response - Describes conditions applicable to the Input, Output, or the job overall, that warrant customer attention.
- Etag string
- The current entity tag for the output. 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.
- Id string
- Resource Id
- Type string
- Resource type
- Datasource
Pulumi.
Azure | Pulumi.Native. Stream Analytics. Inputs. Azure Data Lake Store Output Data Source Response Azure | Pulumi.Native. Stream Analytics. Inputs. Azure Function Output Data Source Response Azure | Pulumi.Native. Stream Analytics. Inputs. Azure Sql Database Output Data Source Response Azure | Pulumi.Native. Stream Analytics. Inputs. Azure Synapse Output Data Source Response Azure | Pulumi.Native. Stream Analytics. Inputs. Azure Table Output Data Source Response Azure | Pulumi.Native. Stream Analytics. Inputs. Blob Output Data Source Response Azure | Pulumi.Native. Stream Analytics. Inputs. Document Db Output Data Source Response Azure | Pulumi.Native. Stream Analytics. Inputs. Event Hub Output Data Source Response Azure | Pulumi.Native. Stream Analytics. Inputs. Event Hub V2Output Data Source Response Azure | Pulumi.Native. Stream Analytics. Inputs. Gateway Message Bus Output Data Source Response Azure | Pulumi.Native. Stream Analytics. Inputs. Power BIOutput Data Source Response Azure | Pulumi.Native. Stream Analytics. Inputs. Service Bus Queue Output Data Source Response Azure Native. Stream Analytics. Inputs. Service Bus Topic Output Data Source Response - Describes the data source that output will be written to. Required on PUT (CreateOrReplace) requests.
- Name string
- Resource name
- Serialization
Pulumi.
Azure | Pulumi.Native. Stream Analytics. Inputs. Avro Serialization Response Azure | Pulumi.Native. Stream Analytics. Inputs. Csv Serialization Response Azure | Pulumi.Native. Stream Analytics. Inputs. Json Serialization Response Azure Native. Stream Analytics. Inputs. Parquet Serialization Response - Describes how data from an input is serialized or how data is serialized when written to an output. Required on PUT (CreateOrReplace) requests.
- Size
Window int - The size window to constrain a Stream Analytics output to.
- Time
Window string - The time frame for filtering Stream Analytics job outputs.
- Diagnostics
Diagnostics
Response - Describes conditions applicable to the Input, Output, or the job overall, that warrant customer attention.
- Etag string
- The current entity tag for the output. 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.
- Id string
- Resource Id
- Type string
- Resource type
- Datasource
Azure
Data | AzureLake Store Output Data Source Response Function | AzureOutput Data Source Response Sql | AzureDatabase Output Data Source Response Synapse | AzureOutput Data Source Response Table | BlobOutput Data Source Response Output | DocumentData Source Response Db | EventOutput Data Source Response Hub | EventOutput Data Source Response Hub | GatewayV2Output Data Source Response Message | PowerBus Output Data Source Response BIOutput | ServiceData Source Response Bus | ServiceQueue Output Data Source Response Bus Topic Output Data Source Response - Describes the data source that output will be written to. Required on PUT (CreateOrReplace) requests.
- Name string
- Resource name
- Serialization
Avro
Serialization | CsvResponse Serialization | JsonResponse Serialization | ParquetResponse Serialization Response - Describes how data from an input is serialized or how data is serialized when written to an output. Required on PUT (CreateOrReplace) requests.
- Size
Window int - The size window to constrain a Stream Analytics output to.
- Time
Window string - The time frame for filtering Stream Analytics job outputs.
- diagnostics
Diagnostics
Response - Describes conditions applicable to the Input, Output, or the job overall, that warrant customer attention.
- etag String
- The current entity tag for the output. 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.
- id String
- Resource Id
- type String
- Resource type
- datasource
Azure
Data | AzureLake Store Output Data Source Response Function | AzureOutput Data Source Response Sql | AzureDatabase Output Data Source Response Synapse | AzureOutput Data Source Response Table | BlobOutput Data Source Response Output | DocumentData Source Response Db | EventOutput Data Source Response Hub | EventOutput Data Source Response Hub | GatewayV2Output Data Source Response Message | PowerBus Output Data Source Response BIOutput | ServiceData Source Response Bus | ServiceQueue Output Data Source Response Bus Topic Output Data Source Response - Describes the data source that output will be written to. Required on PUT (CreateOrReplace) requests.
- name String
- Resource name
- serialization
Avro
Serialization | CsvResponse Serialization | JsonResponse Serialization | ParquetResponse Serialization Response - Describes how data from an input is serialized or how data is serialized when written to an output. Required on PUT (CreateOrReplace) requests.
- size
Window Integer - The size window to constrain a Stream Analytics output to.
- time
Window String - The time frame for filtering Stream Analytics job outputs.
- diagnostics
Diagnostics
Response - Describes conditions applicable to the Input, Output, or the job overall, that warrant customer attention.
- etag string
- The current entity tag for the output. 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.
- id string
- Resource Id
- type string
- Resource type
- datasource
Azure
Data | AzureLake Store Output Data Source Response Function | AzureOutput Data Source Response Sql | AzureDatabase Output Data Source Response Synapse | AzureOutput Data Source Response Table | BlobOutput Data Source Response Output | DocumentData Source Response Db | EventOutput Data Source Response Hub | EventOutput Data Source Response Hub | GatewayV2Output Data Source Response Message | PowerBus Output Data Source Response BIOutput | ServiceData Source Response Bus | ServiceQueue Output Data Source Response Bus Topic Output Data Source Response - Describes the data source that output will be written to. Required on PUT (CreateOrReplace) requests.
- name string
- Resource name
- serialization
Avro
Serialization | CsvResponse Serialization | JsonResponse Serialization | ParquetResponse Serialization Response - Describes how data from an input is serialized or how data is serialized when written to an output. Required on PUT (CreateOrReplace) requests.
- size
Window number - The size window to constrain a Stream Analytics output to.
- time
Window string - The time frame for filtering Stream Analytics job outputs.
- diagnostics
Diagnostics
Response - Describes conditions applicable to the Input, Output, or the job overall, that warrant customer attention.
- etag str
- The current entity tag for the output. 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.
- id str
- Resource Id
- type str
- Resource type
- datasource
Azure
Data | AzureLake Store Output Data Source Response Function | AzureOutput Data Source Response Sql | AzureDatabase Output Data Source Response Synapse | AzureOutput Data Source Response Table | BlobOutput Data Source Response Output | DocumentData Source Response Db | EventOutput Data Source Response Hub | EventOutput Data Source Response Hub | GatewayV2Output Data Source Response Message | PowerBus Output Data Source Response BIOutput | ServiceData Source Response Bus | ServiceQueue Output Data Source Response Bus Topic Output Data Source Response - Describes the data source that output will be written to. Required on PUT (CreateOrReplace) requests.
- name str
- Resource name
- serialization
Avro
Serialization | CsvResponse Serialization | JsonResponse Serialization | ParquetResponse Serialization Response - Describes how data from an input is serialized or how data is serialized when written to an output. Required on PUT (CreateOrReplace) requests.
- size_
window int - The size window to constrain a Stream Analytics output to.
- time_
window str - The time frame for filtering Stream Analytics job outputs.
- diagnostics Property Map
- Describes conditions applicable to the Input, Output, or the job overall, that warrant customer attention.
- etag String
- The current entity tag for the output. 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.
- id String
- Resource Id
- type String
- Resource type
- datasource Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map
- Describes the data source that output will be written to. Required on PUT (CreateOrReplace) requests.
- name String
- Resource name
- serialization Property Map | Property Map | Property Map | Property Map
- Describes how data from an input is serialized or how data is serialized when written to an output. Required on PUT (CreateOrReplace) requests.
- size
Window Number - The size window to constrain a Stream Analytics output to.
- time
Window String - The time frame for filtering Stream Analytics job outputs.
OutputStartMode, OutputStartModeArgs
- Job
Start Time - JobStartTime
- Custom
Time - CustomTime
- Last
Output Event Time - LastOutputEventTime
- Output
Start Mode Job Start Time - JobStartTime
- Output
Start Mode Custom Time - CustomTime
- Output
Start Mode Last Output Event Time - LastOutputEventTime
- Job
Start Time - JobStartTime
- Custom
Time - CustomTime
- Last
Output Event Time - LastOutputEventTime
- Job
Start Time - JobStartTime
- Custom
Time - CustomTime
- Last
Output Event Time - LastOutputEventTime
- JOB_START_TIME
- JobStartTime
- CUSTOM_TIME
- CustomTime
- LAST_OUTPUT_EVENT_TIME
- LastOutputEventTime
- "Job
Start Time" - JobStartTime
- "Custom
Time" - CustomTime
- "Last
Output Event Time" - LastOutputEventTime
ParquetSerialization, ParquetSerializationArgs
ParquetSerializationResponse, ParquetSerializationResponseArgs
PowerBIOutputDataSource, PowerBIOutputDataSourceArgs
- Authentication
Mode string | Pulumi.Azure Native. Stream Analytics. Authentication Mode - Authentication Mode.
- Dataset string
- The name of the Power BI dataset. Required on PUT (CreateOrReplace) requests.
- Group
Id string - The ID of the Power BI group.
- Group
Name string - The name of the Power BI group. Use this property to help remember which specific Power BI group id was used.
- Refresh
Token string - A refresh token that can be used to obtain a valid access token that can then be used to authenticate with the data source. A valid refresh token is currently only obtainable via the Azure Portal. It is recommended to put a dummy string value here when creating the data source and then going to the Azure Portal to authenticate the data source which will update this property with a valid refresh token. Required on PUT (CreateOrReplace) requests.
- Table string
- The name of the Power BI table under the specified dataset. Required on PUT (CreateOrReplace) requests.
- Token
User stringDisplay Name - The user display name of the user that was used to obtain the refresh token. Use this property to help remember which user was used to obtain the refresh token.
- Token
User stringPrincipal Name - The user principal name (UPN) of the user that was used to obtain the refresh token. Use this property to help remember which user was used to obtain the refresh token.
- Authentication
Mode string | AuthenticationMode - Authentication Mode.
- Dataset string
- The name of the Power BI dataset. Required on PUT (CreateOrReplace) requests.
- Group
Id string - The ID of the Power BI group.
- Group
Name string - The name of the Power BI group. Use this property to help remember which specific Power BI group id was used.
- Refresh
Token string - A refresh token that can be used to obtain a valid access token that can then be used to authenticate with the data source. A valid refresh token is currently only obtainable via the Azure Portal. It is recommended to put a dummy string value here when creating the data source and then going to the Azure Portal to authenticate the data source which will update this property with a valid refresh token. Required on PUT (CreateOrReplace) requests.
- Table string
- The name of the Power BI table under the specified dataset. Required on PUT (CreateOrReplace) requests.
- Token
User stringDisplay Name - The user display name of the user that was used to obtain the refresh token. Use this property to help remember which user was used to obtain the refresh token.
- Token
User stringPrincipal Name - The user principal name (UPN) of the user that was used to obtain the refresh token. Use this property to help remember which user was used to obtain the refresh token.
- authentication
Mode String | AuthenticationMode - Authentication Mode.
- dataset String
- The name of the Power BI dataset. Required on PUT (CreateOrReplace) requests.
- group
Id String - The ID of the Power BI group.
- group
Name String - The name of the Power BI group. Use this property to help remember which specific Power BI group id was used.
- refresh
Token String - A refresh token that can be used to obtain a valid access token that can then be used to authenticate with the data source. A valid refresh token is currently only obtainable via the Azure Portal. It is recommended to put a dummy string value here when creating the data source and then going to the Azure Portal to authenticate the data source which will update this property with a valid refresh token. Required on PUT (CreateOrReplace) requests.
- table String
- The name of the Power BI table under the specified dataset. Required on PUT (CreateOrReplace) requests.
- token
User StringDisplay Name - The user display name of the user that was used to obtain the refresh token. Use this property to help remember which user was used to obtain the refresh token.
- token
User StringPrincipal Name - The user principal name (UPN) of the user that was used to obtain the refresh token. Use this property to help remember which user was used to obtain the refresh token.
- authentication
Mode string | AuthenticationMode - Authentication Mode.
- dataset string
- The name of the Power BI dataset. Required on PUT (CreateOrReplace) requests.
- group
Id string - The ID of the Power BI group.
- group
Name string - The name of the Power BI group. Use this property to help remember which specific Power BI group id was used.
- refresh
Token string - A refresh token that can be used to obtain a valid access token that can then be used to authenticate with the data source. A valid refresh token is currently only obtainable via the Azure Portal. It is recommended to put a dummy string value here when creating the data source and then going to the Azure Portal to authenticate the data source which will update this property with a valid refresh token. Required on PUT (CreateOrReplace) requests.
- table string
- The name of the Power BI table under the specified dataset. Required on PUT (CreateOrReplace) requests.
- token
User stringDisplay Name - The user display name of the user that was used to obtain the refresh token. Use this property to help remember which user was used to obtain the refresh token.
- token
User stringPrincipal Name - The user principal name (UPN) of the user that was used to obtain the refresh token. Use this property to help remember which user was used to obtain the refresh token.
- authentication_
mode str | AuthenticationMode - Authentication Mode.
- dataset str
- The name of the Power BI dataset. Required on PUT (CreateOrReplace) requests.
- group_
id str - The ID of the Power BI group.
- group_
name str - The name of the Power BI group. Use this property to help remember which specific Power BI group id was used.
- refresh_
token str - A refresh token that can be used to obtain a valid access token that can then be used to authenticate with the data source. A valid refresh token is currently only obtainable via the Azure Portal. It is recommended to put a dummy string value here when creating the data source and then going to the Azure Portal to authenticate the data source which will update this property with a valid refresh token. Required on PUT (CreateOrReplace) requests.
- table str
- The name of the Power BI table under the specified dataset. Required on PUT (CreateOrReplace) requests.
- token_
user_ strdisplay_ name - The user display name of the user that was used to obtain the refresh token. Use this property to help remember which user was used to obtain the refresh token.
- token_
user_ strprincipal_ name - The user principal name (UPN) of the user that was used to obtain the refresh token. Use this property to help remember which user was used to obtain the refresh token.
- authentication
Mode String | "Msi" | "UserToken" | "Connection String" - Authentication Mode.
- dataset String
- The name of the Power BI dataset. Required on PUT (CreateOrReplace) requests.
- group
Id String - The ID of the Power BI group.
- group
Name String - The name of the Power BI group. Use this property to help remember which specific Power BI group id was used.
- refresh
Token String - A refresh token that can be used to obtain a valid access token that can then be used to authenticate with the data source. A valid refresh token is currently only obtainable via the Azure Portal. It is recommended to put a dummy string value here when creating the data source and then going to the Azure Portal to authenticate the data source which will update this property with a valid refresh token. Required on PUT (CreateOrReplace) requests.
- table String
- The name of the Power BI table under the specified dataset. Required on PUT (CreateOrReplace) requests.
- token
User StringDisplay Name - The user display name of the user that was used to obtain the refresh token. Use this property to help remember which user was used to obtain the refresh token.
- token
User StringPrincipal Name - The user principal name (UPN) of the user that was used to obtain the refresh token. Use this property to help remember which user was used to obtain the refresh token.
PowerBIOutputDataSourceResponse, PowerBIOutputDataSourceResponseArgs
- Authentication
Mode string - Authentication Mode.
- Dataset string
- The name of the Power BI dataset. Required on PUT (CreateOrReplace) requests.
- Group
Id string - The ID of the Power BI group.
- Group
Name string - The name of the Power BI group. Use this property to help remember which specific Power BI group id was used.
- Refresh
Token string - A refresh token that can be used to obtain a valid access token that can then be used to authenticate with the data source. A valid refresh token is currently only obtainable via the Azure Portal. It is recommended to put a dummy string value here when creating the data source and then going to the Azure Portal to authenticate the data source which will update this property with a valid refresh token. Required on PUT (CreateOrReplace) requests.
- Table string
- The name of the Power BI table under the specified dataset. Required on PUT (CreateOrReplace) requests.
- Token
User stringDisplay Name - The user display name of the user that was used to obtain the refresh token. Use this property to help remember which user was used to obtain the refresh token.
- Token
User stringPrincipal Name - The user principal name (UPN) of the user that was used to obtain the refresh token. Use this property to help remember which user was used to obtain the refresh token.
- Authentication
Mode string - Authentication Mode.
- Dataset string
- The name of the Power BI dataset. Required on PUT (CreateOrReplace) requests.
- Group
Id string - The ID of the Power BI group.
- Group
Name string - The name of the Power BI group. Use this property to help remember which specific Power BI group id was used.
- Refresh
Token string - A refresh token that can be used to obtain a valid access token that can then be used to authenticate with the data source. A valid refresh token is currently only obtainable via the Azure Portal. It is recommended to put a dummy string value here when creating the data source and then going to the Azure Portal to authenticate the data source which will update this property with a valid refresh token. Required on PUT (CreateOrReplace) requests.
- Table string
- The name of the Power BI table under the specified dataset. Required on PUT (CreateOrReplace) requests.
- Token
User stringDisplay Name - The user display name of the user that was used to obtain the refresh token. Use this property to help remember which user was used to obtain the refresh token.
- Token
User stringPrincipal Name - The user principal name (UPN) of the user that was used to obtain the refresh token. Use this property to help remember which user was used to obtain the refresh token.
- authentication
Mode String - Authentication Mode.
- dataset String
- The name of the Power BI dataset. Required on PUT (CreateOrReplace) requests.
- group
Id String - The ID of the Power BI group.
- group
Name String - The name of the Power BI group. Use this property to help remember which specific Power BI group id was used.
- refresh
Token String - A refresh token that can be used to obtain a valid access token that can then be used to authenticate with the data source. A valid refresh token is currently only obtainable via the Azure Portal. It is recommended to put a dummy string value here when creating the data source and then going to the Azure Portal to authenticate the data source which will update this property with a valid refresh token. Required on PUT (CreateOrReplace) requests.
- table String
- The name of the Power BI table under the specified dataset. Required on PUT (CreateOrReplace) requests.
- token
User StringDisplay Name - The user display name of the user that was used to obtain the refresh token. Use this property to help remember which user was used to obtain the refresh token.
- token
User StringPrincipal Name - The user principal name (UPN) of the user that was used to obtain the refresh token. Use this property to help remember which user was used to obtain the refresh token.
- authentication
Mode string - Authentication Mode.
- dataset string
- The name of the Power BI dataset. Required on PUT (CreateOrReplace) requests.
- group
Id string - The ID of the Power BI group.
- group
Name string - The name of the Power BI group. Use this property to help remember which specific Power BI group id was used.
- refresh
Token string - A refresh token that can be used to obtain a valid access token that can then be used to authenticate with the data source. A valid refresh token is currently only obtainable via the Azure Portal. It is recommended to put a dummy string value here when creating the data source and then going to the Azure Portal to authenticate the data source which will update this property with a valid refresh token. Required on PUT (CreateOrReplace) requests.
- table string
- The name of the Power BI table under the specified dataset. Required on PUT (CreateOrReplace) requests.
- token
User stringDisplay Name - The user display name of the user that was used to obtain the refresh token. Use this property to help remember which user was used to obtain the refresh token.
- token
User stringPrincipal Name - The user principal name (UPN) of the user that was used to obtain the refresh token. Use this property to help remember which user was used to obtain the refresh token.
- authentication_
mode str - Authentication Mode.
- dataset str
- The name of the Power BI dataset. Required on PUT (CreateOrReplace) requests.
- group_
id str - The ID of the Power BI group.
- group_
name str - The name of the Power BI group. Use this property to help remember which specific Power BI group id was used.
- refresh_
token str - A refresh token that can be used to obtain a valid access token that can then be used to authenticate with the data source. A valid refresh token is currently only obtainable via the Azure Portal. It is recommended to put a dummy string value here when creating the data source and then going to the Azure Portal to authenticate the data source which will update this property with a valid refresh token. Required on PUT (CreateOrReplace) requests.
- table str
- The name of the Power BI table under the specified dataset. Required on PUT (CreateOrReplace) requests.
- token_
user_ strdisplay_ name - The user display name of the user that was used to obtain the refresh token. Use this property to help remember which user was used to obtain the refresh token.
- token_
user_ strprincipal_ name - The user principal name (UPN) of the user that was used to obtain the refresh token. Use this property to help remember which user was used to obtain the refresh token.
- authentication
Mode String - Authentication Mode.
- dataset String
- The name of the Power BI dataset. Required on PUT (CreateOrReplace) requests.
- group
Id String - The ID of the Power BI group.
- group
Name String - The name of the Power BI group. Use this property to help remember which specific Power BI group id was used.
- refresh
Token String - A refresh token that can be used to obtain a valid access token that can then be used to authenticate with the data source. A valid refresh token is currently only obtainable via the Azure Portal. It is recommended to put a dummy string value here when creating the data source and then going to the Azure Portal to authenticate the data source which will update this property with a valid refresh token. Required on PUT (CreateOrReplace) requests.
- table String
- The name of the Power BI table under the specified dataset. Required on PUT (CreateOrReplace) requests.
- token
User StringDisplay Name - The user display name of the user that was used to obtain the refresh token. Use this property to help remember which user was used to obtain the refresh token.
- token
User StringPrincipal Name - The user principal name (UPN) of the user that was used to obtain the refresh token. Use this property to help remember which user was used to obtain the refresh token.
ReferenceInputProperties, ReferenceInputPropertiesArgs
- Compression
Pulumi.
Azure Native. Stream Analytics. Inputs. Compression - Describes how input data is compressed
- Datasource
Pulumi.
Azure | Pulumi.Native. Stream Analytics. Inputs. Azure Sql Reference Input Data Source Azure | Pulumi.Native. Stream Analytics. Inputs. Blob Reference Input Data Source Azure Native. Stream Analytics. Inputs. File Reference Input Data Source - Describes an input data source that contains reference data. Required on PUT (CreateOrReplace) requests.
- Partition
Key string - partitionKey Describes a key in the input data which is used for partitioning the input data
- Serialization
Pulumi.
Azure | Pulumi.Native. Stream Analytics. Inputs. Avro Serialization Azure | Pulumi.Native. Stream Analytics. Inputs. Csv Serialization Azure | Pulumi.Native. Stream Analytics. Inputs. Json Serialization Azure Native. Stream Analytics. Inputs. Parquet Serialization - Describes how data from an input is serialized or how data is serialized when written to an output. Required on PUT (CreateOrReplace) requests.
- Compression Compression
- Describes how input data is compressed
- Datasource
Azure
Sql | BlobReference Input Data Source Reference | FileInput Data Source Reference Input Data Source - Describes an input data source that contains reference data. Required on PUT (CreateOrReplace) requests.
- Partition
Key string - partitionKey Describes a key in the input data which is used for partitioning the input data
- Serialization
Avro
Serialization | CsvSerialization | JsonSerialization | ParquetSerialization - Describes how data from an input is serialized or how data is serialized when written to an output. Required on PUT (CreateOrReplace) requests.
- compression Compression
- Describes how input data is compressed
- datasource
Azure
Sql | BlobReference Input Data Source Reference | FileInput Data Source Reference Input Data Source - Describes an input data source that contains reference data. Required on PUT (CreateOrReplace) requests.
- partition
Key String - partitionKey Describes a key in the input data which is used for partitioning the input data
- serialization
Avro
Serialization | CsvSerialization | JsonSerialization | ParquetSerialization - Describes how data from an input is serialized or how data is serialized when written to an output. Required on PUT (CreateOrReplace) requests.
- compression Compression
- Describes how input data is compressed
- datasource
Azure
Sql | BlobReference Input Data Source Reference | FileInput Data Source Reference Input Data Source - Describes an input data source that contains reference data. Required on PUT (CreateOrReplace) requests.
- partition
Key string - partitionKey Describes a key in the input data which is used for partitioning the input data
- serialization
Avro
Serialization | CsvSerialization | JsonSerialization | ParquetSerialization - Describes how data from an input is serialized or how data is serialized when written to an output. Required on PUT (CreateOrReplace) requests.
- compression Compression
- Describes how input data is compressed
- datasource
Azure
Sql | BlobReference Input Data Source Reference | FileInput Data Source Reference Input Data Source - Describes an input data source that contains reference data. Required on PUT (CreateOrReplace) requests.
- partition_
key str - partitionKey Describes a key in the input data which is used for partitioning the input data
- serialization
Avro
Serialization | CsvSerialization | JsonSerialization | ParquetSerialization - Describes how data from an input is serialized or how data is serialized when written to an output. Required on PUT (CreateOrReplace) requests.
- compression Property Map
- Describes how input data is compressed
- datasource Property Map | Property Map | Property Map
- Describes an input data source that contains reference data. Required on PUT (CreateOrReplace) requests.
- partition
Key String - partitionKey Describes a key in the input data which is used for partitioning the input data
- serialization Property Map | Property Map | Property Map | Property Map
- Describes how data from an input is serialized or how data is serialized when written to an output. Required on PUT (CreateOrReplace) requests.
ReferenceInputPropertiesResponse, ReferenceInputPropertiesResponseArgs
- Diagnostics
Pulumi.
Azure Native. Stream Analytics. Inputs. Diagnostics Response - Describes conditions applicable to the Input, Output, or the job overall, that warrant customer attention.
- Etag string
- The current entity tag for the input. 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.
- Compression
Pulumi.
Azure Native. Stream Analytics. Inputs. Compression Response - Describes how input data is compressed
- Datasource
Pulumi.
Azure | Pulumi.Native. Stream Analytics. Inputs. Azure Sql Reference Input Data Source Response Azure | Pulumi.Native. Stream Analytics. Inputs. Blob Reference Input Data Source Response Azure Native. Stream Analytics. Inputs. File Reference Input Data Source Response - Describes an input data source that contains reference data. Required on PUT (CreateOrReplace) requests.
- Partition
Key string - partitionKey Describes a key in the input data which is used for partitioning the input data
- Serialization
Pulumi.
Azure | Pulumi.Native. Stream Analytics. Inputs. Avro Serialization Response Azure | Pulumi.Native. Stream Analytics. Inputs. Csv Serialization Response Azure | Pulumi.Native. Stream Analytics. Inputs. Json Serialization Response Azure Native. Stream Analytics. Inputs. Parquet Serialization Response - Describes how data from an input is serialized or how data is serialized when written to an output. Required on PUT (CreateOrReplace) requests.
- Diagnostics
Diagnostics
Response - Describes conditions applicable to the Input, Output, or the job overall, that warrant customer attention.
- Etag string
- The current entity tag for the input. 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.
- Compression
Compression
Response - Describes how input data is compressed
- Datasource
Azure
Sql | BlobReference Input Data Source Response Reference | FileInput Data Source Response Reference Input Data Source Response - Describes an input data source that contains reference data. Required on PUT (CreateOrReplace) requests.
- Partition
Key string - partitionKey Describes a key in the input data which is used for partitioning the input data
- Serialization
Avro
Serialization | CsvResponse Serialization | JsonResponse Serialization | ParquetResponse Serialization Response - Describes how data from an input is serialized or how data is serialized when written to an output. Required on PUT (CreateOrReplace) requests.
- diagnostics
Diagnostics
Response - Describes conditions applicable to the Input, Output, or the job overall, that warrant customer attention.
- etag String
- The current entity tag for the input. 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.
- compression
Compression
Response - Describes how input data is compressed
- datasource
Azure
Sql | BlobReference Input Data Source Response Reference | FileInput Data Source Response Reference Input Data Source Response - Describes an input data source that contains reference data. Required on PUT (CreateOrReplace) requests.
- partition
Key String - partitionKey Describes a key in the input data which is used for partitioning the input data
- serialization
Avro
Serialization | CsvResponse Serialization | JsonResponse Serialization | ParquetResponse Serialization Response - Describes how data from an input is serialized or how data is serialized when written to an output. Required on PUT (CreateOrReplace) requests.
- diagnostics
Diagnostics
Response - Describes conditions applicable to the Input, Output, or the job overall, that warrant customer attention.
- etag string
- The current entity tag for the input. 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.
- compression
Compression
Response - Describes how input data is compressed
- datasource
Azure
Sql | BlobReference Input Data Source Response Reference | FileInput Data Source Response Reference Input Data Source Response - Describes an input data source that contains reference data. Required on PUT (CreateOrReplace) requests.
- partition
Key string - partitionKey Describes a key in the input data which is used for partitioning the input data
- serialization
Avro
Serialization | CsvResponse Serialization | JsonResponse Serialization | ParquetResponse Serialization Response - Describes how data from an input is serialized or how data is serialized when written to an output. Required on PUT (CreateOrReplace) requests.
- diagnostics
Diagnostics
Response - Describes conditions applicable to the Input, Output, or the job overall, that warrant customer attention.
- etag str
- The current entity tag for the input. 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.
- compression
Compression
Response - Describes how input data is compressed
- datasource
Azure
Sql | BlobReference Input Data Source Response Reference | FileInput Data Source Response Reference Input Data Source Response - Describes an input data source that contains reference data. Required on PUT (CreateOrReplace) requests.
- partition_
key str - partitionKey Describes a key in the input data which is used for partitioning the input data
- serialization
Avro
Serialization | CsvResponse Serialization | JsonResponse Serialization | ParquetResponse Serialization Response - Describes how data from an input is serialized or how data is serialized when written to an output. Required on PUT (CreateOrReplace) requests.
- diagnostics Property Map
- Describes conditions applicable to the Input, Output, or the job overall, that warrant customer attention.
- etag String
- The current entity tag for the input. 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.
- compression Property Map
- Describes how input data is compressed
- datasource Property Map | Property Map | Property Map
- Describes an input data source that contains reference data. Required on PUT (CreateOrReplace) requests.
- partition
Key String - partitionKey Describes a key in the input data which is used for partitioning the input data
- serialization Property Map | Property Map | Property Map | Property Map
- Describes how data from an input is serialized or how data is serialized when written to an output. Required on PUT (CreateOrReplace) requests.
RefreshType, RefreshTypeArgs
- Static
- Static
- Refresh
Periodically With Full - RefreshPeriodicallyWithFull
- Refresh
Periodically With Delta - RefreshPeriodicallyWithDelta
- Refresh
Type Static - Static
- Refresh
Type Refresh Periodically With Full - RefreshPeriodicallyWithFull
- Refresh
Type Refresh Periodically With Delta - RefreshPeriodicallyWithDelta
- Static
- Static
- Refresh
Periodically With Full - RefreshPeriodicallyWithFull
- Refresh
Periodically With Delta - RefreshPeriodicallyWithDelta
- Static
- Static
- Refresh
Periodically With Full - RefreshPeriodicallyWithFull
- Refresh
Periodically With Delta - RefreshPeriodicallyWithDelta
- STATIC
- Static
- REFRESH_PERIODICALLY_WITH_FULL
- RefreshPeriodicallyWithFull
- REFRESH_PERIODICALLY_WITH_DELTA
- RefreshPeriodicallyWithDelta
- "Static"
- Static
- "Refresh
Periodically With Full" - RefreshPeriodicallyWithFull
- "Refresh
Periodically With Delta" - RefreshPeriodicallyWithDelta
ScalarFunctionProperties, ScalarFunctionPropertiesArgs
- Binding
Pulumi.
Azure | Pulumi.Native. Stream Analytics. Inputs. Azure Machine Learning Web Service Function Binding Azure Native. Stream Analytics. Inputs. Java Script Function Binding - The physical binding of the function. For example, in the Azure Machine Learning web service’s case, this describes the endpoint.
- Inputs
List<Pulumi.
Azure Native. Stream Analytics. Inputs. Function Input> - Output
Pulumi.
Azure Native. Stream Analytics. Inputs. Function Output - Describes the output of a function.
- Binding
Azure
Machine | JavaLearning Web Service Function Binding Script Function Binding - The physical binding of the function. For example, in the Azure Machine Learning web service’s case, this describes the endpoint.
- Inputs
[]Function
Input Type - Output
Function
Output Type - Describes the output of a function.
- binding
Azure
Machine | JavaLearning Web Service Function Binding Script Function Binding - The physical binding of the function. For example, in the Azure Machine Learning web service’s case, this describes the endpoint.
- inputs
List<Function
Input> - output
Function
Output - Describes the output of a function.
- binding
Azure
Machine | JavaLearning Web Service Function Binding Script Function Binding - The physical binding of the function. For example, in the Azure Machine Learning web service’s case, this describes the endpoint.
- inputs
Function
Input[] - output
Function
Output - Describes the output of a function.
- binding
Azure
Machine | JavaLearning Web Service Function Binding Script Function Binding - The physical binding of the function. For example, in the Azure Machine Learning web service’s case, this describes the endpoint.
- inputs
Sequence[Function
Input] - output
Function
Output - Describes the output of a function.
- binding Property Map | Property Map
- The physical binding of the function. For example, in the Azure Machine Learning web service’s case, this describes the endpoint.
- inputs List<Property Map>
- output Property Map
- Describes the output of a function.
ScalarFunctionPropertiesResponse, ScalarFunctionPropertiesResponseArgs
- Etag string
- The current entity tag for the function. 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.
- Binding
Pulumi.
Azure | Pulumi.Native. Stream Analytics. Inputs. Azure Machine Learning Web Service Function Binding Response Azure Native. Stream Analytics. Inputs. Java Script Function Binding Response - The physical binding of the function. For example, in the Azure Machine Learning web service’s case, this describes the endpoint.
- Inputs
List<Pulumi.
Azure Native. Stream Analytics. Inputs. Function Input Response> - Output
Pulumi.
Azure Native. Stream Analytics. Inputs. Function Output Response - Describes the output of a function.
- Etag string
- The current entity tag for the function. 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.
- Binding
Azure
Machine | JavaLearning Web Service Function Binding Response Script Function Binding Response - The physical binding of the function. For example, in the Azure Machine Learning web service’s case, this describes the endpoint.
- Inputs
[]Function
Input Response - Output
Function
Output Response - Describes the output of a function.
- etag String
- The current entity tag for the function. 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.
- binding
Azure
Machine | JavaLearning Web Service Function Binding Response Script Function Binding Response - The physical binding of the function. For example, in the Azure Machine Learning web service’s case, this describes the endpoint.
- inputs
List<Function
Input Response> - output
Function
Output Response - Describes the output of a function.
- etag string
- The current entity tag for the function. 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.
- binding
Azure
Machine | JavaLearning Web Service Function Binding Response Script Function Binding Response - The physical binding of the function. For example, in the Azure Machine Learning web service’s case, this describes the endpoint.
- inputs
Function
Input Response[] - output
Function
Output Response - Describes the output of a function.
- etag str
- The current entity tag for the function. 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.
- binding
Azure
Machine | JavaLearning Web Service Function Binding Response Script Function Binding Response - The physical binding of the function. For example, in the Azure Machine Learning web service’s case, this describes the endpoint.
- inputs
Sequence[Function
Input Response] - output
Function
Output Response - Describes the output of a function.
- etag String
- The current entity tag for the function. 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.
- binding Property Map | Property Map
- The physical binding of the function. For example, in the Azure Machine Learning web service’s case, this describes the endpoint.
- inputs List<Property Map>
- output Property Map
- Describes the output of a function.
ServiceBusQueueOutputDataSource, ServiceBusQueueOutputDataSourceArgs
- Authentication
Mode string | Pulumi.Azure Native. Stream Analytics. Authentication Mode - Authentication Mode.
- Property
Columns List<string> - A string array of the names of output columns to be attached to Service Bus messages as custom properties.
- Queue
Name string - The name of the Service Bus Queue. Required on PUT (CreateOrReplace) requests.
- Service
Bus stringNamespace - The namespace that is associated with the desired Event Hub, Service Bus Queue, Service Bus Topic, etc. Required on PUT (CreateOrReplace) requests.
- string
- The shared access policy key for the specified shared access policy. Required on PUT (CreateOrReplace) requests.
- string
- The shared access policy name for the Event Hub, Service Bus Queue, Service Bus Topic, etc. Required on PUT (CreateOrReplace) requests.
- System
Property objectColumns - The system properties associated with the Service Bus Queue. The following system properties are supported: ReplyToSessionId, ContentType, To, Subject, CorrelationId, TimeToLive, PartitionKey, SessionId, ScheduledEnqueueTime, MessageId, ReplyTo, Label, ScheduledEnqueueTimeUtc.
- Authentication
Mode string | AuthenticationMode - Authentication Mode.
- Property
Columns []string - A string array of the names of output columns to be attached to Service Bus messages as custom properties.
- Queue
Name string - The name of the Service Bus Queue. Required on PUT (CreateOrReplace) requests.
- Service
Bus stringNamespace - The namespace that is associated with the desired Event Hub, Service Bus Queue, Service Bus Topic, etc. Required on PUT (CreateOrReplace) requests.
- string
- The shared access policy key for the specified shared access policy. Required on PUT (CreateOrReplace) requests.
- string
- The shared access policy name for the Event Hub, Service Bus Queue, Service Bus Topic, etc. Required on PUT (CreateOrReplace) requests.
- System
Property interface{}Columns - The system properties associated with the Service Bus Queue. The following system properties are supported: ReplyToSessionId, ContentType, To, Subject, CorrelationId, TimeToLive, PartitionKey, SessionId, ScheduledEnqueueTime, MessageId, ReplyTo, Label, ScheduledEnqueueTimeUtc.
- authentication
Mode String | AuthenticationMode - Authentication Mode.
- property
Columns List<String> - A string array of the names of output columns to be attached to Service Bus messages as custom properties.
- queue
Name String - The name of the Service Bus Queue. Required on PUT (CreateOrReplace) requests.
- service
Bus StringNamespace - The namespace that is associated with the desired Event Hub, Service Bus Queue, Service Bus Topic, etc. Required on PUT (CreateOrReplace) requests.
- String
- The shared access policy key for the specified shared access policy. Required on PUT (CreateOrReplace) requests.
- String
- The shared access policy name for the Event Hub, Service Bus Queue, Service Bus Topic, etc. Required on PUT (CreateOrReplace) requests.
- system
Property ObjectColumns - The system properties associated with the Service Bus Queue. The following system properties are supported: ReplyToSessionId, ContentType, To, Subject, CorrelationId, TimeToLive, PartitionKey, SessionId, ScheduledEnqueueTime, MessageId, ReplyTo, Label, ScheduledEnqueueTimeUtc.
- authentication
Mode string | AuthenticationMode - Authentication Mode.
- property
Columns string[] - A string array of the names of output columns to be attached to Service Bus messages as custom properties.
- queue
Name string - The name of the Service Bus Queue. Required on PUT (CreateOrReplace) requests.
- service
Bus stringNamespace - The namespace that is associated with the desired Event Hub, Service Bus Queue, Service Bus Topic, etc. Required on PUT (CreateOrReplace) requests.
- string
- The shared access policy key for the specified shared access policy. Required on PUT (CreateOrReplace) requests.
- string
- The shared access policy name for the Event Hub, Service Bus Queue, Service Bus Topic, etc. Required on PUT (CreateOrReplace) requests.
- system
Property anyColumns - The system properties associated with the Service Bus Queue. The following system properties are supported: ReplyToSessionId, ContentType, To, Subject, CorrelationId, TimeToLive, PartitionKey, SessionId, ScheduledEnqueueTime, MessageId, ReplyTo, Label, ScheduledEnqueueTimeUtc.
- authentication_
mode str | AuthenticationMode - Authentication Mode.
- property_
columns Sequence[str] - A string array of the names of output columns to be attached to Service Bus messages as custom properties.
- queue_
name str - The name of the Service Bus Queue. Required on PUT (CreateOrReplace) requests.
- service_
bus_ strnamespace - The namespace that is associated with the desired Event Hub, Service Bus Queue, Service Bus Topic, etc. Required on PUT (CreateOrReplace) requests.
- str
- The shared access policy key for the specified shared access policy. Required on PUT (CreateOrReplace) requests.
- str
- The shared access policy name for the Event Hub, Service Bus Queue, Service Bus Topic, etc. Required on PUT (CreateOrReplace) requests.
- system_
property_ Anycolumns - The system properties associated with the Service Bus Queue. The following system properties are supported: ReplyToSessionId, ContentType, To, Subject, CorrelationId, TimeToLive, PartitionKey, SessionId, ScheduledEnqueueTime, MessageId, ReplyTo, Label, ScheduledEnqueueTimeUtc.
- authentication
Mode String | "Msi" | "UserToken" | "Connection String" - Authentication Mode.
- property
Columns List<String> - A string array of the names of output columns to be attached to Service Bus messages as custom properties.
- queue
Name String - The name of the Service Bus Queue. Required on PUT (CreateOrReplace) requests.
- service
Bus StringNamespace - The namespace that is associated with the desired Event Hub, Service Bus Queue, Service Bus Topic, etc. Required on PUT (CreateOrReplace) requests.
- String
- The shared access policy key for the specified shared access policy. Required on PUT (CreateOrReplace) requests.
- String
- The shared access policy name for the Event Hub, Service Bus Queue, Service Bus Topic, etc. Required on PUT (CreateOrReplace) requests.
- system
Property AnyColumns - The system properties associated with the Service Bus Queue. The following system properties are supported: ReplyToSessionId, ContentType, To, Subject, CorrelationId, TimeToLive, PartitionKey, SessionId, ScheduledEnqueueTime, MessageId, ReplyTo, Label, ScheduledEnqueueTimeUtc.
ServiceBusQueueOutputDataSourceResponse, ServiceBusQueueOutputDataSourceResponseArgs
- Authentication
Mode string - Authentication Mode.
- Property
Columns List<string> - A string array of the names of output columns to be attached to Service Bus messages as custom properties.
- Queue
Name string - The name of the Service Bus Queue. Required on PUT (CreateOrReplace) requests.
- Service
Bus stringNamespace - The namespace that is associated with the desired Event Hub, Service Bus Queue, Service Bus Topic, etc. Required on PUT (CreateOrReplace) requests.
- string
- The shared access policy key for the specified shared access policy. Required on PUT (CreateOrReplace) requests.
- string
- The shared access policy name for the Event Hub, Service Bus Queue, Service Bus Topic, etc. Required on PUT (CreateOrReplace) requests.
- System
Property objectColumns - The system properties associated with the Service Bus Queue. The following system properties are supported: ReplyToSessionId, ContentType, To, Subject, CorrelationId, TimeToLive, PartitionKey, SessionId, ScheduledEnqueueTime, MessageId, ReplyTo, Label, ScheduledEnqueueTimeUtc.
- Authentication
Mode string - Authentication Mode.
- Property
Columns []string - A string array of the names of output columns to be attached to Service Bus messages as custom properties.
- Queue
Name string - The name of the Service Bus Queue. Required on PUT (CreateOrReplace) requests.
- Service
Bus stringNamespace - The namespace that is associated with the desired Event Hub, Service Bus Queue, Service Bus Topic, etc. Required on PUT (CreateOrReplace) requests.
- string
- The shared access policy key for the specified shared access policy. Required on PUT (CreateOrReplace) requests.
- string
- The shared access policy name for the Event Hub, Service Bus Queue, Service Bus Topic, etc. Required on PUT (CreateOrReplace) requests.
- System
Property interface{}Columns - The system properties associated with the Service Bus Queue. The following system properties are supported: ReplyToSessionId, ContentType, To, Subject, CorrelationId, TimeToLive, PartitionKey, SessionId, ScheduledEnqueueTime, MessageId, ReplyTo, Label, ScheduledEnqueueTimeUtc.
- authentication
Mode String - Authentication Mode.
- property
Columns List<String> - A string array of the names of output columns to be attached to Service Bus messages as custom properties.
- queue
Name String - The name of the Service Bus Queue. Required on PUT (CreateOrReplace) requests.
- service
Bus StringNamespace - The namespace that is associated with the desired Event Hub, Service Bus Queue, Service Bus Topic, etc. Required on PUT (CreateOrReplace) requests.
- String
- The shared access policy key for the specified shared access policy. Required on PUT (CreateOrReplace) requests.
- String
- The shared access policy name for the Event Hub, Service Bus Queue, Service Bus Topic, etc. Required on PUT (CreateOrReplace) requests.
- system
Property ObjectColumns - The system properties associated with the Service Bus Queue. The following system properties are supported: ReplyToSessionId, ContentType, To, Subject, CorrelationId, TimeToLive, PartitionKey, SessionId, ScheduledEnqueueTime, MessageId, ReplyTo, Label, ScheduledEnqueueTimeUtc.
- authentication
Mode string - Authentication Mode.
- property
Columns string[] - A string array of the names of output columns to be attached to Service Bus messages as custom properties.
- queue
Name string - The name of the Service Bus Queue. Required on PUT (CreateOrReplace) requests.
- service
Bus stringNamespace - The namespace that is associated with the desired Event Hub, Service Bus Queue, Service Bus Topic, etc. Required on PUT (CreateOrReplace) requests.
- string
- The shared access policy key for the specified shared access policy. Required on PUT (CreateOrReplace) requests.
- string
- The shared access policy name for the Event Hub, Service Bus Queue, Service Bus Topic, etc. Required on PUT (CreateOrReplace) requests.
- system
Property anyColumns - The system properties associated with the Service Bus Queue. The following system properties are supported: ReplyToSessionId, ContentType, To, Subject, CorrelationId, TimeToLive, PartitionKey, SessionId, ScheduledEnqueueTime, MessageId, ReplyTo, Label, ScheduledEnqueueTimeUtc.
- authentication_
mode str - Authentication Mode.
- property_
columns Sequence[str] - A string array of the names of output columns to be attached to Service Bus messages as custom properties.
- queue_
name str - The name of the Service Bus Queue. Required on PUT (CreateOrReplace) requests.
- service_
bus_ strnamespace - The namespace that is associated with the desired Event Hub, Service Bus Queue, Service Bus Topic, etc. Required on PUT (CreateOrReplace) requests.
- str
- The shared access policy key for the specified shared access policy. Required on PUT (CreateOrReplace) requests.
- str
- The shared access policy name for the Event Hub, Service Bus Queue, Service Bus Topic, etc. Required on PUT (CreateOrReplace) requests.
- system_
property_ Anycolumns - The system properties associated with the Service Bus Queue. The following system properties are supported: ReplyToSessionId, ContentType, To, Subject, CorrelationId, TimeToLive, PartitionKey, SessionId, ScheduledEnqueueTime, MessageId, ReplyTo, Label, ScheduledEnqueueTimeUtc.
- authentication
Mode String - Authentication Mode.
- property
Columns List<String> - A string array of the names of output columns to be attached to Service Bus messages as custom properties.
- queue
Name String - The name of the Service Bus Queue. Required on PUT (CreateOrReplace) requests.
- service
Bus StringNamespace - The namespace that is associated with the desired Event Hub, Service Bus Queue, Service Bus Topic, etc. Required on PUT (CreateOrReplace) requests.
- String
- The shared access policy key for the specified shared access policy. Required on PUT (CreateOrReplace) requests.
- String
- The shared access policy name for the Event Hub, Service Bus Queue, Service Bus Topic, etc. Required on PUT (CreateOrReplace) requests.
- system
Property AnyColumns - The system properties associated with the Service Bus Queue. The following system properties are supported: ReplyToSessionId, ContentType, To, Subject, CorrelationId, TimeToLive, PartitionKey, SessionId, ScheduledEnqueueTime, MessageId, ReplyTo, Label, ScheduledEnqueueTimeUtc.
ServiceBusTopicOutputDataSource, ServiceBusTopicOutputDataSourceArgs
- Authentication
Mode string | Pulumi.Azure Native. Stream Analytics. Authentication Mode - Authentication Mode.
- Property
Columns List<string> - A string array of the names of output columns to be attached to Service Bus messages as custom properties.
- Service
Bus stringNamespace - The namespace that is associated with the desired Event Hub, Service Bus Queue, Service Bus Topic, etc. Required on PUT (CreateOrReplace) requests.
- string
- The shared access policy key for the specified shared access policy. Required on PUT (CreateOrReplace) requests.
- string
- The shared access policy name for the Event Hub, Service Bus Queue, Service Bus Topic, etc. Required on PUT (CreateOrReplace) requests.
- System
Property Dictionary<string, string>Columns - The system properties associated with the Service Bus Topic Output. The following system properties are supported: ReplyToSessionId, ContentType, To, Subject, CorrelationId, TimeToLive, PartitionKey, SessionId, ScheduledEnqueueTime, MessageId, ReplyTo, Label, ScheduledEnqueueTimeUtc.
- Topic
Name string - The name of the Service Bus Topic. Required on PUT (CreateOrReplace) requests.
- Authentication
Mode string | AuthenticationMode - Authentication Mode.
- Property
Columns []string - A string array of the names of output columns to be attached to Service Bus messages as custom properties.
- Service
Bus stringNamespace - The namespace that is associated with the desired Event Hub, Service Bus Queue, Service Bus Topic, etc. Required on PUT (CreateOrReplace) requests.
- string
- The shared access policy key for the specified shared access policy. Required on PUT (CreateOrReplace) requests.
- string
- The shared access policy name for the Event Hub, Service Bus Queue, Service Bus Topic, etc. Required on PUT (CreateOrReplace) requests.
- System
Property map[string]stringColumns - The system properties associated with the Service Bus Topic Output. The following system properties are supported: ReplyToSessionId, ContentType, To, Subject, CorrelationId, TimeToLive, PartitionKey, SessionId, ScheduledEnqueueTime, MessageId, ReplyTo, Label, ScheduledEnqueueTimeUtc.
- Topic
Name string - The name of the Service Bus Topic. Required on PUT (CreateOrReplace) requests.
- authentication
Mode String | AuthenticationMode - Authentication Mode.
- property
Columns List<String> - A string array of the names of output columns to be attached to Service Bus messages as custom properties.
- service
Bus StringNamespace - The namespace that is associated with the desired Event Hub, Service Bus Queue, Service Bus Topic, etc. Required on PUT (CreateOrReplace) requests.
- String
- The shared access policy key for the specified shared access policy. Required on PUT (CreateOrReplace) requests.
- String
- The shared access policy name for the Event Hub, Service Bus Queue, Service Bus Topic, etc. Required on PUT (CreateOrReplace) requests.
- system
Property Map<String,String>Columns - The system properties associated with the Service Bus Topic Output. The following system properties are supported: ReplyToSessionId, ContentType, To, Subject, CorrelationId, TimeToLive, PartitionKey, SessionId, ScheduledEnqueueTime, MessageId, ReplyTo, Label, ScheduledEnqueueTimeUtc.
- topic
Name String - The name of the Service Bus Topic. Required on PUT (CreateOrReplace) requests.
- authentication
Mode string | AuthenticationMode - Authentication Mode.
- property
Columns string[] - A string array of the names of output columns to be attached to Service Bus messages as custom properties.
- service
Bus stringNamespace - The namespace that is associated with the desired Event Hub, Service Bus Queue, Service Bus Topic, etc. Required on PUT (CreateOrReplace) requests.
- string
- The shared access policy key for the specified shared access policy. Required on PUT (CreateOrReplace) requests.
- string
- The shared access policy name for the Event Hub, Service Bus Queue, Service Bus Topic, etc. Required on PUT (CreateOrReplace) requests.
- system
Property {[key: string]: string}Columns - The system properties associated with the Service Bus Topic Output. The following system properties are supported: ReplyToSessionId, ContentType, To, Subject, CorrelationId, TimeToLive, PartitionKey, SessionId, ScheduledEnqueueTime, MessageId, ReplyTo, Label, ScheduledEnqueueTimeUtc.
- topic
Name string - The name of the Service Bus Topic. Required on PUT (CreateOrReplace) requests.
- authentication_
mode str | AuthenticationMode - Authentication Mode.
- property_
columns Sequence[str] - A string array of the names of output columns to be attached to Service Bus messages as custom properties.
- service_
bus_ strnamespace - The namespace that is associated with the desired Event Hub, Service Bus Queue, Service Bus Topic, etc. Required on PUT (CreateOrReplace) requests.
- str
- The shared access policy key for the specified shared access policy. Required on PUT (CreateOrReplace) requests.
- str
- The shared access policy name for the Event Hub, Service Bus Queue, Service Bus Topic, etc. Required on PUT (CreateOrReplace) requests.
- system_
property_ Mapping[str, str]columns - The system properties associated with the Service Bus Topic Output. The following system properties are supported: ReplyToSessionId, ContentType, To, Subject, CorrelationId, TimeToLive, PartitionKey, SessionId, ScheduledEnqueueTime, MessageId, ReplyTo, Label, ScheduledEnqueueTimeUtc.
- topic_
name str - The name of the Service Bus Topic. Required on PUT (CreateOrReplace) requests.
- authentication
Mode String | "Msi" | "UserToken" | "Connection String" - Authentication Mode.
- property
Columns List<String> - A string array of the names of output columns to be attached to Service Bus messages as custom properties.
- service
Bus StringNamespace - The namespace that is associated with the desired Event Hub, Service Bus Queue, Service Bus Topic, etc. Required on PUT (CreateOrReplace) requests.
- String
- The shared access policy key for the specified shared access policy. Required on PUT (CreateOrReplace) requests.
- String
- The shared access policy name for the Event Hub, Service Bus Queue, Service Bus Topic, etc. Required on PUT (CreateOrReplace) requests.
- system
Property Map<String>Columns - The system properties associated with the Service Bus Topic Output. The following system properties are supported: ReplyToSessionId, ContentType, To, Subject, CorrelationId, TimeToLive, PartitionKey, SessionId, ScheduledEnqueueTime, MessageId, ReplyTo, Label, ScheduledEnqueueTimeUtc.
- topic
Name String - The name of the Service Bus Topic. Required on PUT (CreateOrReplace) requests.
ServiceBusTopicOutputDataSourceResponse, ServiceBusTopicOutputDataSourceResponseArgs
- Authentication
Mode string - Authentication Mode.
- Property
Columns List<string> - A string array of the names of output columns to be attached to Service Bus messages as custom properties.
- Service
Bus stringNamespace - The namespace that is associated with the desired Event Hub, Service Bus Queue, Service Bus Topic, etc. Required on PUT (CreateOrReplace) requests.
- string
- The shared access policy key for the specified shared access policy. Required on PUT (CreateOrReplace) requests.
- string
- The shared access policy name for the Event Hub, Service Bus Queue, Service Bus Topic, etc. Required on PUT (CreateOrReplace) requests.
- System
Property Dictionary<string, string>Columns - The system properties associated with the Service Bus Topic Output. The following system properties are supported: ReplyToSessionId, ContentType, To, Subject, CorrelationId, TimeToLive, PartitionKey, SessionId, ScheduledEnqueueTime, MessageId, ReplyTo, Label, ScheduledEnqueueTimeUtc.
- Topic
Name string - The name of the Service Bus Topic. Required on PUT (CreateOrReplace) requests.
- Authentication
Mode string - Authentication Mode.
- Property
Columns []string - A string array of the names of output columns to be attached to Service Bus messages as custom properties.
- Service
Bus stringNamespace - The namespace that is associated with the desired Event Hub, Service Bus Queue, Service Bus Topic, etc. Required on PUT (CreateOrReplace) requests.
- string
- The shared access policy key for the specified shared access policy. Required on PUT (CreateOrReplace) requests.
- string
- The shared access policy name for the Event Hub, Service Bus Queue, Service Bus Topic, etc. Required on PUT (CreateOrReplace) requests.
- System
Property map[string]stringColumns - The system properties associated with the Service Bus Topic Output. The following system properties are supported: ReplyToSessionId, ContentType, To, Subject, CorrelationId, TimeToLive, PartitionKey, SessionId, ScheduledEnqueueTime, MessageId, ReplyTo, Label, ScheduledEnqueueTimeUtc.
- Topic
Name string - The name of the Service Bus Topic. Required on PUT (CreateOrReplace) requests.
- authentication
Mode String - Authentication Mode.
- property
Columns List<String> - A string array of the names of output columns to be attached to Service Bus messages as custom properties.
- service
Bus StringNamespace - The namespace that is associated with the desired Event Hub, Service Bus Queue, Service Bus Topic, etc. Required on PUT (CreateOrReplace) requests.
- String
- The shared access policy key for the specified shared access policy. Required on PUT (CreateOrReplace) requests.
- String
- The shared access policy name for the Event Hub, Service Bus Queue, Service Bus Topic, etc. Required on PUT (CreateOrReplace) requests.
- system
Property Map<String,String>Columns - The system properties associated with the Service Bus Topic Output. The following system properties are supported: ReplyToSessionId, ContentType, To, Subject, CorrelationId, TimeToLive, PartitionKey, SessionId, ScheduledEnqueueTime, MessageId, ReplyTo, Label, ScheduledEnqueueTimeUtc.
- topic
Name String - The name of the Service Bus Topic. Required on PUT (CreateOrReplace) requests.
- authentication
Mode string - Authentication Mode.
- property
Columns string[] - A string array of the names of output columns to be attached to Service Bus messages as custom properties.
- service
Bus stringNamespace - The namespace that is associated with the desired Event Hub, Service Bus Queue, Service Bus Topic, etc. Required on PUT (CreateOrReplace) requests.
- string
- The shared access policy key for the specified shared access policy. Required on PUT (CreateOrReplace) requests.
- string
- The shared access policy name for the Event Hub, Service Bus Queue, Service Bus Topic, etc. Required on PUT (CreateOrReplace) requests.
- system
Property {[key: string]: string}Columns - The system properties associated with the Service Bus Topic Output. The following system properties are supported: ReplyToSessionId, ContentType, To, Subject, CorrelationId, TimeToLive, PartitionKey, SessionId, ScheduledEnqueueTime, MessageId, ReplyTo, Label, ScheduledEnqueueTimeUtc.
- topic
Name string - The name of the Service Bus Topic. Required on PUT (CreateOrReplace) requests.
- authentication_
mode str - Authentication Mode.
- property_
columns Sequence[str] - A string array of the names of output columns to be attached to Service Bus messages as custom properties.
- service_
bus_ strnamespace - The namespace that is associated with the desired Event Hub, Service Bus Queue, Service Bus Topic, etc. Required on PUT (CreateOrReplace) requests.
- str
- The shared access policy key for the specified shared access policy. Required on PUT (CreateOrReplace) requests.
- str
- The shared access policy name for the Event Hub, Service Bus Queue, Service Bus Topic, etc. Required on PUT (CreateOrReplace) requests.
- system_
property_ Mapping[str, str]columns - The system properties associated with the Service Bus Topic Output. The following system properties are supported: ReplyToSessionId, ContentType, To, Subject, CorrelationId, TimeToLive, PartitionKey, SessionId, ScheduledEnqueueTime, MessageId, ReplyTo, Label, ScheduledEnqueueTimeUtc.
- topic_
name str - The name of the Service Bus Topic. Required on PUT (CreateOrReplace) requests.
- authentication
Mode String - Authentication Mode.
- property
Columns List<String> - A string array of the names of output columns to be attached to Service Bus messages as custom properties.
- service
Bus StringNamespace - The namespace that is associated with the desired Event Hub, Service Bus Queue, Service Bus Topic, etc. Required on PUT (CreateOrReplace) requests.
- String
- The shared access policy key for the specified shared access policy. Required on PUT (CreateOrReplace) requests.
- String
- The shared access policy name for the Event Hub, Service Bus Queue, Service Bus Topic, etc. Required on PUT (CreateOrReplace) requests.
- system
Property Map<String>Columns - The system properties associated with the Service Bus Topic Output. The following system properties are supported: ReplyToSessionId, ContentType, To, Subject, CorrelationId, TimeToLive, PartitionKey, SessionId, ScheduledEnqueueTime, MessageId, ReplyTo, Label, ScheduledEnqueueTimeUtc.
- topic
Name String - The name of the Service Bus Topic. Required on PUT (CreateOrReplace) requests.
Sku, SkuArgs
- Name
string | Pulumi.
Azure Native. Stream Analytics. Sku Name - The name of the SKU. Required on PUT (CreateOrReplace) requests.
- name String | "Standard"
- The name of the SKU. Required on PUT (CreateOrReplace) requests.
SkuName, SkuNameArgs
- Standard
- Standard
- Sku
Name Standard - Standard
- Standard
- Standard
- Standard
- Standard
- STANDARD
- Standard
- "Standard"
- Standard
SkuResponse, SkuResponseArgs
- Name string
- The name of the SKU. Required on PUT (CreateOrReplace) requests.
- Name string
- The name of the SKU. Required on PUT (CreateOrReplace) requests.
- name String
- The name of the SKU. Required on PUT (CreateOrReplace) requests.
- name string
- The name of the SKU. Required on PUT (CreateOrReplace) requests.
- name str
- The name of the SKU. Required on PUT (CreateOrReplace) requests.
- name String
- The name of the SKU. Required on PUT (CreateOrReplace) requests.
StorageAccount, StorageAccountArgs
- Account
Key string - The account key for the Azure Storage account. Required on PUT (CreateOrReplace) requests.
- Account
Name string - The name of the Azure Storage account. Required on PUT (CreateOrReplace) requests.
- Account
Key string - The account key for the Azure Storage account. Required on PUT (CreateOrReplace) requests.
- Account
Name string - The name of the Azure Storage account. Required on PUT (CreateOrReplace) requests.
- account
Key String - The account key for the Azure Storage account. Required on PUT (CreateOrReplace) requests.
- account
Name String - The name of the Azure Storage account. Required on PUT (CreateOrReplace) requests.
- account
Key string - The account key for the Azure Storage account. Required on PUT (CreateOrReplace) requests.
- account
Name string - The name of the Azure Storage account. Required on PUT (CreateOrReplace) requests.
- account_
key str - The account key for the Azure Storage account. Required on PUT (CreateOrReplace) requests.
- account_
name str - The name of the Azure Storage account. Required on PUT (CreateOrReplace) requests.
- account
Key String - The account key for the Azure Storage account. Required on PUT (CreateOrReplace) requests.
- account
Name String - The name of the Azure Storage account. Required on PUT (CreateOrReplace) requests.
StorageAccountResponse, StorageAccountResponseArgs
- Account
Key string - The account key for the Azure Storage account. Required on PUT (CreateOrReplace) requests.
- Account
Name string - The name of the Azure Storage account. Required on PUT (CreateOrReplace) requests.
- Account
Key string - The account key for the Azure Storage account. Required on PUT (CreateOrReplace) requests.
- Account
Name string - The name of the Azure Storage account. Required on PUT (CreateOrReplace) requests.
- account
Key String - The account key for the Azure Storage account. Required on PUT (CreateOrReplace) requests.
- account
Name String - The name of the Azure Storage account. Required on PUT (CreateOrReplace) requests.
- account
Key string - The account key for the Azure Storage account. Required on PUT (CreateOrReplace) requests.
- account
Name string - The name of the Azure Storage account. Required on PUT (CreateOrReplace) requests.
- account_
key str - The account key for the Azure Storage account. Required on PUT (CreateOrReplace) requests.
- account_
name str - The name of the Azure Storage account. Required on PUT (CreateOrReplace) requests.
- account
Key String - The account key for the Azure Storage account. Required on PUT (CreateOrReplace) requests.
- account
Name String - The name of the Azure Storage account. Required on PUT (CreateOrReplace) requests.
StreamInputProperties, StreamInputPropertiesArgs
- Compression
Pulumi.
Azure Native. Stream Analytics. Inputs. Compression - Describes how input data is compressed
- Datasource
Pulumi.
Azure | Pulumi.Native. Stream Analytics. Inputs. Blob Stream Input Data Source Azure | Pulumi.Native. Stream Analytics. Inputs. Event Hub Stream Input Data Source Azure | Pulumi.Native. Stream Analytics. Inputs. Event Hub V2Stream Input Data Source Azure | Pulumi.Native. Stream Analytics. Inputs. Gateway Message Bus Stream Input Data Source Azure Native. Stream Analytics. Inputs. Io THub Stream Input Data Source - Describes an input data source that contains stream data. Required on PUT (CreateOrReplace) requests.
- Partition
Key string - partitionKey Describes a key in the input data which is used for partitioning the input data
- Serialization
Pulumi.
Azure | Pulumi.Native. Stream Analytics. Inputs. Avro Serialization Azure | Pulumi.Native. Stream Analytics. Inputs. Csv Serialization Azure | Pulumi.Native. Stream Analytics. Inputs. Json Serialization Azure Native. Stream Analytics. Inputs. Parquet Serialization - Describes how data from an input is serialized or how data is serialized when written to an output. Required on PUT (CreateOrReplace) requests.
- Compression Compression
- Describes how input data is compressed
- Datasource
Blob
Stream | EventInput Data Source Hub | EventStream Input Data Source Hub | GatewayV2Stream Input Data Source Message | IoBus Stream Input Data Source THub Stream Input Data Source - Describes an input data source that contains stream data. Required on PUT (CreateOrReplace) requests.
- Partition
Key string - partitionKey Describes a key in the input data which is used for partitioning the input data
- Serialization
Avro
Serialization | CsvSerialization | JsonSerialization | ParquetSerialization - Describes how data from an input is serialized or how data is serialized when written to an output. Required on PUT (CreateOrReplace) requests.
- compression Compression
- Describes how input data is compressed
- datasource
Blob
Stream | EventInput Data Source Hub | EventStream Input Data Source Hub | GatewayV2Stream Input Data Source Message | IoBus Stream Input Data Source THub Stream Input Data Source - Describes an input data source that contains stream data. Required on PUT (CreateOrReplace) requests.
- partition
Key String - partitionKey Describes a key in the input data which is used for partitioning the input data
- serialization
Avro
Serialization | CsvSerialization | JsonSerialization | ParquetSerialization - Describes how data from an input is serialized or how data is serialized when written to an output. Required on PUT (CreateOrReplace) requests.
- compression Compression
- Describes how input data is compressed
- datasource
Blob
Stream | EventInput Data Source Hub | EventStream Input Data Source Hub | GatewayV2Stream Input Data Source Message | IoBus Stream Input Data Source THub Stream Input Data Source - Describes an input data source that contains stream data. Required on PUT (CreateOrReplace) requests.
- partition
Key string - partitionKey Describes a key in the input data which is used for partitioning the input data
- serialization
Avro
Serialization | CsvSerialization | JsonSerialization | ParquetSerialization - Describes how data from an input is serialized or how data is serialized when written to an output. Required on PUT (CreateOrReplace) requests.
- compression Compression
- Describes how input data is compressed
- datasource
Blob
Stream | EventInput Data Source Hub | EventStream Input Data Source Hub | GatewayV2Stream Input Data Source Message | IoBus Stream Input Data Source THub Stream Input Data Source - Describes an input data source that contains stream data. Required on PUT (CreateOrReplace) requests.
- partition_
key str - partitionKey Describes a key in the input data which is used for partitioning the input data
- serialization
Avro
Serialization | CsvSerialization | JsonSerialization | ParquetSerialization - Describes how data from an input is serialized or how data is serialized when written to an output. Required on PUT (CreateOrReplace) requests.
- compression Property Map
- Describes how input data is compressed
- datasource Property Map | Property Map | Property Map | Property Map | Property Map
- Describes an input data source that contains stream data. Required on PUT (CreateOrReplace) requests.
- partition
Key String - partitionKey Describes a key in the input data which is used for partitioning the input data
- serialization Property Map | Property Map | Property Map | Property Map
- Describes how data from an input is serialized or how data is serialized when written to an output. Required on PUT (CreateOrReplace) requests.
StreamInputPropertiesResponse, StreamInputPropertiesResponseArgs
- Diagnostics
Pulumi.
Azure Native. Stream Analytics. Inputs. Diagnostics Response - Describes conditions applicable to the Input, Output, or the job overall, that warrant customer attention.
- Etag string
- The current entity tag for the input. 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.
- Compression
Pulumi.
Azure Native. Stream Analytics. Inputs. Compression Response - Describes how input data is compressed
- Datasource
Pulumi.
Azure | Pulumi.Native. Stream Analytics. Inputs. Blob Stream Input Data Source Response Azure | Pulumi.Native. Stream Analytics. Inputs. Event Hub Stream Input Data Source Response Azure | Pulumi.Native. Stream Analytics. Inputs. Event Hub V2Stream Input Data Source Response Azure | Pulumi.Native. Stream Analytics. Inputs. Gateway Message Bus Stream Input Data Source Response Azure Native. Stream Analytics. Inputs. Io THub Stream Input Data Source Response - Describes an input data source that contains stream data. Required on PUT (CreateOrReplace) requests.
- Partition
Key string - partitionKey Describes a key in the input data which is used for partitioning the input data
- Serialization
Pulumi.
Azure | Pulumi.Native. Stream Analytics. Inputs. Avro Serialization Response Azure | Pulumi.Native. Stream Analytics. Inputs. Csv Serialization Response Azure | Pulumi.Native. Stream Analytics. Inputs. Json Serialization Response Azure Native. Stream Analytics. Inputs. Parquet Serialization Response - Describes how data from an input is serialized or how data is serialized when written to an output. Required on PUT (CreateOrReplace) requests.
- Diagnostics
Diagnostics
Response - Describes conditions applicable to the Input, Output, or the job overall, that warrant customer attention.
- Etag string
- The current entity tag for the input. 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.
- Compression
Compression
Response - Describes how input data is compressed
- Datasource
Blob
Stream | EventInput Data Source Response Hub | EventStream Input Data Source Response Hub | GatewayV2Stream Input Data Source Response Message | IoBus Stream Input Data Source Response THub Stream Input Data Source Response - Describes an input data source that contains stream data. Required on PUT (CreateOrReplace) requests.
- Partition
Key string - partitionKey Describes a key in the input data which is used for partitioning the input data
- Serialization
Avro
Serialization | CsvResponse Serialization | JsonResponse Serialization | ParquetResponse Serialization Response - Describes how data from an input is serialized or how data is serialized when written to an output. Required on PUT (CreateOrReplace) requests.
- diagnostics
Diagnostics
Response - Describes conditions applicable to the Input, Output, or the job overall, that warrant customer attention.
- etag String
- The current entity tag for the input. 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.
- compression
Compression
Response - Describes how input data is compressed
- datasource
Blob
Stream | EventInput Data Source Response Hub | EventStream Input Data Source Response Hub | GatewayV2Stream Input Data Source Response Message | IoBus Stream Input Data Source Response THub Stream Input Data Source Response - Describes an input data source that contains stream data. Required on PUT (CreateOrReplace) requests.
- partition
Key String - partitionKey Describes a key in the input data which is used for partitioning the input data
- serialization
Avro
Serialization | CsvResponse Serialization | JsonResponse Serialization | ParquetResponse Serialization Response - Describes how data from an input is serialized or how data is serialized when written to an output. Required on PUT (CreateOrReplace) requests.
- diagnostics
Diagnostics
Response - Describes conditions applicable to the Input, Output, or the job overall, that warrant customer attention.
- etag string
- The current entity tag for the input. 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.
- compression
Compression
Response - Describes how input data is compressed
- datasource
Blob
Stream | EventInput Data Source Response Hub | EventStream Input Data Source Response Hub | GatewayV2Stream Input Data Source Response Message | IoBus Stream Input Data Source Response THub Stream Input Data Source Response - Describes an input data source that contains stream data. Required on PUT (CreateOrReplace) requests.
- partition
Key string - partitionKey Describes a key in the input data which is used for partitioning the input data
- serialization
Avro
Serialization | CsvResponse Serialization | JsonResponse Serialization | ParquetResponse Serialization Response - Describes how data from an input is serialized or how data is serialized when written to an output. Required on PUT (CreateOrReplace) requests.
- diagnostics
Diagnostics
Response - Describes conditions applicable to the Input, Output, or the job overall, that warrant customer attention.
- etag str
- The current entity tag for the input. 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.
- compression
Compression
Response - Describes how input data is compressed
- datasource
Blob
Stream | EventInput Data Source Response Hub | EventStream Input Data Source Response Hub | GatewayV2Stream Input Data Source Response Message | IoBus Stream Input Data Source Response THub Stream Input Data Source Response - Describes an input data source that contains stream data. Required on PUT (CreateOrReplace) requests.
- partition_
key str - partitionKey Describes a key in the input data which is used for partitioning the input data
- serialization
Avro
Serialization | CsvResponse Serialization | JsonResponse Serialization | ParquetResponse Serialization Response - Describes how data from an input is serialized or how data is serialized when written to an output. Required on PUT (CreateOrReplace) requests.
- diagnostics Property Map
- Describes conditions applicable to the Input, Output, or the job overall, that warrant customer attention.
- etag String
- The current entity tag for the input. 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.
- compression Property Map
- Describes how input data is compressed
- datasource Property Map | Property Map | Property Map | Property Map | Property Map
- Describes an input data source that contains stream data. Required on PUT (CreateOrReplace) requests.
- partition
Key String - partitionKey Describes a key in the input data which is used for partitioning the input data
- serialization Property Map | Property Map | Property Map | Property Map
- Describes how data from an input is serialized or how data is serialized when written to an output. Required on PUT (CreateOrReplace) requests.
Transformation, TransformationArgs
- Name string
- Resource name
- Query string
- Specifies the query that will be run in the streaming job. You can learn more about the Stream Analytics Query Language (SAQL) here: https://msdn.microsoft.com/library/azure/dn834998 . Required on PUT (CreateOrReplace) requests.
- Streaming
Units int - Specifies the number of streaming units that the streaming job uses.
- Valid
Streaming List<int>Units - Specifies the valid streaming units a streaming job can scale to.
- Name string
- Resource name
- Query string
- Specifies the query that will be run in the streaming job. You can learn more about the Stream Analytics Query Language (SAQL) here: https://msdn.microsoft.com/library/azure/dn834998 . Required on PUT (CreateOrReplace) requests.
- Streaming
Units int - Specifies the number of streaming units that the streaming job uses.
- Valid
Streaming []intUnits - Specifies the valid streaming units a streaming job can scale to.
- name String
- Resource name
- query String
- Specifies the query that will be run in the streaming job. You can learn more about the Stream Analytics Query Language (SAQL) here: https://msdn.microsoft.com/library/azure/dn834998 . Required on PUT (CreateOrReplace) requests.
- streaming
Units Integer - Specifies the number of streaming units that the streaming job uses.
- valid
Streaming List<Integer>Units - Specifies the valid streaming units a streaming job can scale to.
- name string
- Resource name
- query string
- Specifies the query that will be run in the streaming job. You can learn more about the Stream Analytics Query Language (SAQL) here: https://msdn.microsoft.com/library/azure/dn834998 . Required on PUT (CreateOrReplace) requests.
- streaming
Units number - Specifies the number of streaming units that the streaming job uses.
- valid
Streaming number[]Units - Specifies the valid streaming units a streaming job can scale to.
- name str
- Resource name
- query str
- Specifies the query that will be run in the streaming job. You can learn more about the Stream Analytics Query Language (SAQL) here: https://msdn.microsoft.com/library/azure/dn834998 . Required on PUT (CreateOrReplace) requests.
- streaming_
units int - Specifies the number of streaming units that the streaming job uses.
- valid_
streaming_ Sequence[int]units - Specifies the valid streaming units a streaming job can scale to.
- name String
- Resource name
- query String
- Specifies the query that will be run in the streaming job. You can learn more about the Stream Analytics Query Language (SAQL) here: https://msdn.microsoft.com/library/azure/dn834998 . Required on PUT (CreateOrReplace) requests.
- streaming
Units Number - Specifies the number of streaming units that the streaming job uses.
- valid
Streaming List<Number>Units - Specifies the valid streaming units a streaming job can scale to.
TransformationResponse, TransformationResponseArgs
- Etag string
- The current entity tag for the transformation. 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.
- Id string
- Resource Id
- Type string
- Resource type
- Name string
- Resource name
- Query string
- Specifies the query that will be run in the streaming job. You can learn more about the Stream Analytics Query Language (SAQL) here: https://msdn.microsoft.com/library/azure/dn834998 . Required on PUT (CreateOrReplace) requests.
- Streaming
Units int - Specifies the number of streaming units that the streaming job uses.
- Valid
Streaming List<int>Units - Specifies the valid streaming units a streaming job can scale to.
- Etag string
- The current entity tag for the transformation. 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.
- Id string
- Resource Id
- Type string
- Resource type
- Name string
- Resource name
- Query string
- Specifies the query that will be run in the streaming job. You can learn more about the Stream Analytics Query Language (SAQL) here: https://msdn.microsoft.com/library/azure/dn834998 . Required on PUT (CreateOrReplace) requests.
- Streaming
Units int - Specifies the number of streaming units that the streaming job uses.
- Valid
Streaming []intUnits - Specifies the valid streaming units a streaming job can scale to.
- etag String
- The current entity tag for the transformation. 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.
- id String
- Resource Id
- type String
- Resource type
- name String
- Resource name
- query String
- Specifies the query that will be run in the streaming job. You can learn more about the Stream Analytics Query Language (SAQL) here: https://msdn.microsoft.com/library/azure/dn834998 . Required on PUT (CreateOrReplace) requests.
- streaming
Units Integer - Specifies the number of streaming units that the streaming job uses.
- valid
Streaming List<Integer>Units - Specifies the valid streaming units a streaming job can scale to.
- etag string
- The current entity tag for the transformation. 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.
- id string
- Resource Id
- type string
- Resource type
- name string
- Resource name
- query string
- Specifies the query that will be run in the streaming job. You can learn more about the Stream Analytics Query Language (SAQL) here: https://msdn.microsoft.com/library/azure/dn834998 . Required on PUT (CreateOrReplace) requests.
- streaming
Units number - Specifies the number of streaming units that the streaming job uses.
- valid
Streaming number[]Units - Specifies the valid streaming units a streaming job can scale to.
- etag str
- The current entity tag for the transformation. 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.
- id str
- Resource Id
- type str
- Resource type
- name str
- Resource name
- query str
- Specifies the query that will be run in the streaming job. You can learn more about the Stream Analytics Query Language (SAQL) here: https://msdn.microsoft.com/library/azure/dn834998 . Required on PUT (CreateOrReplace) requests.
- streaming_
units int - Specifies the number of streaming units that the streaming job uses.
- valid_
streaming_ Sequence[int]units - Specifies the valid streaming units a streaming job can scale to.
- etag String
- The current entity tag for the transformation. 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.
- id String
- Resource Id
- type String
- Resource type
- name String
- Resource name
- query String
- Specifies the query that will be run in the streaming job. You can learn more about the Stream Analytics Query Language (SAQL) here: https://msdn.microsoft.com/library/azure/dn834998 . Required on PUT (CreateOrReplace) requests.
- streaming
Units Number - Specifies the number of streaming units that the streaming job uses.
- valid
Streaming List<Number>Units - Specifies the valid streaming units a streaming job can scale to.
Import
An existing resource can be imported using its type token, name, and identifier, e.g.
$ pulumi import azure-native:streamanalytics:StreamingJob sj59 /subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.StreamAnalytics/streamingjobs/{jobName}
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Azure Native pulumi/pulumi-azure-native
- License
- Apache-2.0