1. Packages
  2. Azure Native v1
  3. API Docs
  4. streamanalytics
  5. Input
These are the docs for Azure Native v1. We recommenend using the latest version, Azure Native v2.
Azure Native v1 v1.104.0 published on Thursday, Jul 6, 2023 by Pulumi

azure-native.streamanalytics.Input

Explore with Pulumi AI

azure-native-v1 logo
These are the docs for Azure Native v1. We recommenend using the latest version, Azure Native v2.
Azure Native v1 v1.104.0 published on Thursday, Jul 6, 2023 by Pulumi

    An input object, containing all information associated with the named input. All inputs are contained under a streaming job. API Version: 2016-03-01.

    Example Usage

    Create a reference blob input with CSV serialization

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using AzureNative = Pulumi.AzureNative;
    
    return await Deployment.RunAsync(() => 
    {
        var input = new AzureNative.StreamAnalytics.Input("input", new()
        {
            InputName = "input7225",
            JobName = "sj9597",
            Properties = new AzureNative.StreamAnalytics.Inputs.ReferenceInputPropertiesArgs
            {
                Datasource = new AzureNative.StreamAnalytics.Inputs.BlobReferenceInputDataSourceArgs
                {
                    Container = "state",
                    DateFormat = "yyyy/MM/dd",
                    PathPattern = "{date}/{time}",
                    StorageAccounts = new[]
                    {
                        new AzureNative.StreamAnalytics.Inputs.StorageAccountArgs
                        {
                            AccountKey = "someAccountKey==",
                            AccountName = "someAccountName",
                        },
                    },
                    TimeFormat = "HH",
                    Type = "Microsoft.Storage/Blob",
                },
                Serialization = new AzureNative.StreamAnalytics.Inputs.CsvSerializationArgs
                {
                    Encoding = "UTF8",
                    FieldDelimiter = ",",
                    Type = "Csv",
                },
                Type = "Reference",
            },
            ResourceGroupName = "sjrg8440",
        });
    
    });
    
    package main
    
    import (
    	streamanalytics "github.com/pulumi/pulumi-azure-native-sdk/streamanalytics"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := streamanalytics.NewInput(ctx, "input", &streamanalytics.InputArgs{
    			InputName: pulumi.String("input7225"),
    			JobName:   pulumi.String("sj9597"),
    			Properties: streamanalytics.ReferenceInputProperties{
    				Datasource: streamanalytics.BlobReferenceInputDataSource{
    					Container:   "state",
    					DateFormat:  "yyyy/MM/dd",
    					PathPattern: "{date}/{time}",
    					StorageAccounts: []streamanalytics.StorageAccount{
    						{
    							AccountKey:  "someAccountKey==",
    							AccountName: "someAccountName",
    						},
    					},
    					TimeFormat: "HH",
    					Type:       "Microsoft.Storage/Blob",
    				},
    				Serialization: streamanalytics.CsvSerialization{
    					Encoding:       "UTF8",
    					FieldDelimiter: ",",
    					Type:           "Csv",
    				},
    				Type: "Reference",
    			},
    			ResourceGroupName: pulumi.String("sjrg8440"),
    		})
    		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.Input;
    import com.pulumi.azurenative.streamanalytics.InputArgs;
    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 input = new Input("input", InputArgs.builder()        
                .inputName("input7225")
                .jobName("sj9597")
                .properties(Map.ofEntries(
                    Map.entry("datasource", Map.ofEntries(
                        Map.entry("container", "state"),
                        Map.entry("dateFormat", "yyyy/MM/dd"),
                        Map.entry("pathPattern", "{date}/{time}"),
                        Map.entry("storageAccounts", Map.ofEntries(
                            Map.entry("accountKey", "someAccountKey=="),
                            Map.entry("accountName", "someAccountName")
                        )),
                        Map.entry("timeFormat", "HH"),
                        Map.entry("type", "Microsoft.Storage/Blob")
                    )),
                    Map.entry("serialization", Map.ofEntries(
                        Map.entry("encoding", "UTF8"),
                        Map.entry("fieldDelimiter", ","),
                        Map.entry("type", "Csv")
                    )),
                    Map.entry("type", "Reference")
                ))
                .resourceGroupName("sjrg8440")
                .build());
    
        }
    }
    
    import pulumi
    import pulumi_azure_native as azure_native
    
    input = azure_native.streamanalytics.Input("input",
        input_name="input7225",
        job_name="sj9597",
        properties=azure_native.streamanalytics.ReferenceInputPropertiesArgs(
            datasource=azure_native.streamanalytics.BlobReferenceInputDataSourceArgs(
                container="state",
                date_format="yyyy/MM/dd",
                path_pattern="{date}/{time}",
                storage_accounts=[azure_native.streamanalytics.StorageAccountArgs(
                    account_key="someAccountKey==",
                    account_name="someAccountName",
                )],
                time_format="HH",
                type="Microsoft.Storage/Blob",
            ),
            serialization=azure_native.streamanalytics.CsvSerializationArgs(
                encoding="UTF8",
                field_delimiter=",",
                type="Csv",
            ),
            type="Reference",
        ),
        resource_group_name="sjrg8440")
    
    import * as pulumi from "@pulumi/pulumi";
    import * as azure_native from "@pulumi/azure-native";
    
    const input = new azure_native.streamanalytics.Input("input", {
        inputName: "input7225",
        jobName: "sj9597",
        properties: {
            datasource: {
                container: "state",
                dateFormat: "yyyy/MM/dd",
                pathPattern: "{date}/{time}",
                storageAccounts: [{
                    accountKey: "someAccountKey==",
                    accountName: "someAccountName",
                }],
                timeFormat: "HH",
                type: "Microsoft.Storage/Blob",
            },
            serialization: {
                encoding: "UTF8",
                fieldDelimiter: ",",
                type: "Csv",
            },
            type: "Reference",
        },
        resourceGroupName: "sjrg8440",
    });
    
    resources:
      input:
        type: azure-native:streamanalytics:Input
        properties:
          inputName: input7225
          jobName: sj9597
          properties:
            datasource:
              container: state
              dateFormat: yyyy/MM/dd
              pathPattern: '{date}/{time}'
              storageAccounts:
                - accountKey: someAccountKey==
                  accountName: someAccountName
              timeFormat: HH
              type: Microsoft.Storage/Blob
            serialization:
              encoding: UTF8
              fieldDelimiter: ','
              type: Csv
            type: Reference
          resourceGroupName: sjrg8440
    

    Create a stream Event Hub input with JSON serialization

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using AzureNative = Pulumi.AzureNative;
    
    return await Deployment.RunAsync(() => 
    {
        var input = new AzureNative.StreamAnalytics.Input("input", new()
        {
            InputName = "input7425",
            JobName = "sj197",
            Properties = new AzureNative.StreamAnalytics.Inputs.StreamInputPropertiesArgs
            {
                Datasource = new AzureNative.StreamAnalytics.Inputs.EventHubStreamInputDataSourceArgs
                {
                    ConsumerGroupName = "sdkconsumergroup",
                    EventHubName = "sdkeventhub",
                    ServiceBusNamespace = "sdktest",
                    SharedAccessPolicyKey = "someSharedAccessPolicyKey==",
                    SharedAccessPolicyName = "RootManageSharedAccessKey",
                    Type = "Microsoft.ServiceBus/EventHub",
                },
                Serialization = new AzureNative.StreamAnalytics.Inputs.JsonSerializationArgs
                {
                    Encoding = "UTF8",
                    Type = "Json",
                },
                Type = "Stream",
            },
            ResourceGroupName = "sjrg3139",
        });
    
    });
    
    package main
    
    import (
    	streamanalytics "github.com/pulumi/pulumi-azure-native-sdk/streamanalytics"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := streamanalytics.NewInput(ctx, "input", &streamanalytics.InputArgs{
    			InputName: pulumi.String("input7425"),
    			JobName:   pulumi.String("sj197"),
    			Properties: streamanalytics.StreamInputProperties{
    				Datasource: streamanalytics.EventHubStreamInputDataSource{
    					ConsumerGroupName:      "sdkconsumergroup",
    					EventHubName:           "sdkeventhub",
    					ServiceBusNamespace:    "sdktest",
    					SharedAccessPolicyKey:  "someSharedAccessPolicyKey==",
    					SharedAccessPolicyName: "RootManageSharedAccessKey",
    					Type:                   "Microsoft.ServiceBus/EventHub",
    				},
    				Serialization: streamanalytics.JsonSerialization{
    					Encoding: "UTF8",
    					Type:     "Json",
    				},
    				Type: "Stream",
    			},
    			ResourceGroupName: pulumi.String("sjrg3139"),
    		})
    		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.Input;
    import com.pulumi.azurenative.streamanalytics.InputArgs;
    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 input = new Input("input", InputArgs.builder()        
                .inputName("input7425")
                .jobName("sj197")
                .properties(Map.ofEntries(
                    Map.entry("datasource", Map.ofEntries(
                        Map.entry("consumerGroupName", "sdkconsumergroup"),
                        Map.entry("eventHubName", "sdkeventhub"),
                        Map.entry("serviceBusNamespace", "sdktest"),
                        Map.entry("sharedAccessPolicyKey", "someSharedAccessPolicyKey=="),
                        Map.entry("sharedAccessPolicyName", "RootManageSharedAccessKey"),
                        Map.entry("type", "Microsoft.ServiceBus/EventHub")
                    )),
                    Map.entry("serialization", Map.ofEntries(
                        Map.entry("encoding", "UTF8"),
                        Map.entry("type", "Json")
                    )),
                    Map.entry("type", "Stream")
                ))
                .resourceGroupName("sjrg3139")
                .build());
    
        }
    }
    
    import pulumi
    import pulumi_azure_native as azure_native
    
    input = azure_native.streamanalytics.Input("input",
        input_name="input7425",
        job_name="sj197",
        properties=azure_native.streamanalytics.StreamInputPropertiesArgs(
            datasource=azure_native.streamanalytics.EventHubStreamInputDataSourceArgs(
                consumer_group_name="sdkconsumergroup",
                event_hub_name="sdkeventhub",
                service_bus_namespace="sdktest",
                shared_access_policy_key="someSharedAccessPolicyKey==",
                shared_access_policy_name="RootManageSharedAccessKey",
                type="Microsoft.ServiceBus/EventHub",
            ),
            serialization=azure_native.streamanalytics.JsonSerializationArgs(
                encoding="UTF8",
                type="Json",
            ),
            type="Stream",
        ),
        resource_group_name="sjrg3139")
    
    import * as pulumi from "@pulumi/pulumi";
    import * as azure_native from "@pulumi/azure-native";
    
    const input = new azure_native.streamanalytics.Input("input", {
        inputName: "input7425",
        jobName: "sj197",
        properties: {
            datasource: {
                consumerGroupName: "sdkconsumergroup",
                eventHubName: "sdkeventhub",
                serviceBusNamespace: "sdktest",
                sharedAccessPolicyKey: "someSharedAccessPolicyKey==",
                sharedAccessPolicyName: "RootManageSharedAccessKey",
                type: "Microsoft.ServiceBus/EventHub",
            },
            serialization: {
                encoding: "UTF8",
                type: "Json",
            },
            type: "Stream",
        },
        resourceGroupName: "sjrg3139",
    });
    
    resources:
      input:
        type: azure-native:streamanalytics:Input
        properties:
          inputName: input7425
          jobName: sj197
          properties:
            datasource:
              consumerGroupName: sdkconsumergroup
              eventHubName: sdkeventhub
              serviceBusNamespace: sdktest
              sharedAccessPolicyKey: someSharedAccessPolicyKey==
              sharedAccessPolicyName: RootManageSharedAccessKey
              type: Microsoft.ServiceBus/EventHub
            serialization:
              encoding: UTF8
              type: Json
            type: Stream
          resourceGroupName: sjrg3139
    

    Create a stream IoT Hub input with Avro serialization

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using AzureNative = Pulumi.AzureNative;
    
    return await Deployment.RunAsync(() => 
    {
        var input = new AzureNative.StreamAnalytics.Input("input", new()
        {
            InputName = "input7970",
            JobName = "sj9742",
            Properties = new AzureNative.StreamAnalytics.Inputs.StreamInputPropertiesArgs
            {
                Datasource = new AzureNative.StreamAnalytics.Inputs.IoTHubStreamInputDataSourceArgs
                {
                    ConsumerGroupName = "sdkconsumergroup",
                    Endpoint = "messages/events",
                    IotHubNamespace = "iothub",
                    SharedAccessPolicyKey = "sharedAccessPolicyKey=",
                    SharedAccessPolicyName = "owner",
                    Type = "Microsoft.Devices/IotHubs",
                },
                Serialization = new AzureNative.StreamAnalytics.Inputs.AvroSerializationArgs
                {
                    Type = "Avro",
                },
                Type = "Stream",
            },
            ResourceGroupName = "sjrg3467",
        });
    
    });
    
    package main
    
    import (
    	streamanalytics "github.com/pulumi/pulumi-azure-native-sdk/streamanalytics"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := streamanalytics.NewInput(ctx, "input", &streamanalytics.InputArgs{
    			InputName: pulumi.String("input7970"),
    			JobName:   pulumi.String("sj9742"),
    			Properties: streamanalytics.StreamInputProperties{
    				Datasource: streamanalytics.IoTHubStreamInputDataSource{
    					ConsumerGroupName:      "sdkconsumergroup",
    					Endpoint:               "messages/events",
    					IotHubNamespace:        "iothub",
    					SharedAccessPolicyKey:  "sharedAccessPolicyKey=",
    					SharedAccessPolicyName: "owner",
    					Type:                   "Microsoft.Devices/IotHubs",
    				},
    				Serialization: streamanalytics.AvroSerialization{
    					Type: "Avro",
    				},
    				Type: "Stream",
    			},
    			ResourceGroupName: pulumi.String("sjrg3467"),
    		})
    		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.Input;
    import com.pulumi.azurenative.streamanalytics.InputArgs;
    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 input = new Input("input", InputArgs.builder()        
                .inputName("input7970")
                .jobName("sj9742")
                .properties(Map.ofEntries(
                    Map.entry("datasource", Map.ofEntries(
                        Map.entry("consumerGroupName", "sdkconsumergroup"),
                        Map.entry("endpoint", "messages/events"),
                        Map.entry("iotHubNamespace", "iothub"),
                        Map.entry("sharedAccessPolicyKey", "sharedAccessPolicyKey="),
                        Map.entry("sharedAccessPolicyName", "owner"),
                        Map.entry("type", "Microsoft.Devices/IotHubs")
                    )),
                    Map.entry("serialization", Map.of("type", "Avro")),
                    Map.entry("type", "Stream")
                ))
                .resourceGroupName("sjrg3467")
                .build());
    
        }
    }
    
    import pulumi
    import pulumi_azure_native as azure_native
    
    input = azure_native.streamanalytics.Input("input",
        input_name="input7970",
        job_name="sj9742",
        properties=azure_native.streamanalytics.StreamInputPropertiesArgs(
            datasource=azure_native.streamanalytics.IoTHubStreamInputDataSourceArgs(
                consumer_group_name="sdkconsumergroup",
                endpoint="messages/events",
                iot_hub_namespace="iothub",
                shared_access_policy_key="sharedAccessPolicyKey=",
                shared_access_policy_name="owner",
                type="Microsoft.Devices/IotHubs",
            ),
            serialization=azure_native.streamanalytics.AvroSerializationArgs(
                type="Avro",
            ),
            type="Stream",
        ),
        resource_group_name="sjrg3467")
    
    import * as pulumi from "@pulumi/pulumi";
    import * as azure_native from "@pulumi/azure-native";
    
    const input = new azure_native.streamanalytics.Input("input", {
        inputName: "input7970",
        jobName: "sj9742",
        properties: {
            datasource: {
                consumerGroupName: "sdkconsumergroup",
                endpoint: "messages/events",
                iotHubNamespace: "iothub",
                sharedAccessPolicyKey: "sharedAccessPolicyKey=",
                sharedAccessPolicyName: "owner",
                type: "Microsoft.Devices/IotHubs",
            },
            serialization: {
                type: "Avro",
            },
            type: "Stream",
        },
        resourceGroupName: "sjrg3467",
    });
    
    resources:
      input:
        type: azure-native:streamanalytics:Input
        properties:
          inputName: input7970
          jobName: sj9742
          properties:
            datasource:
              consumerGroupName: sdkconsumergroup
              endpoint: messages/events
              iotHubNamespace: iothub
              sharedAccessPolicyKey: sharedAccessPolicyKey=
              sharedAccessPolicyName: owner
              type: Microsoft.Devices/IotHubs
            serialization:
              type: Avro
            type: Stream
          resourceGroupName: sjrg3467
    

    Create a stream blob input with CSV serialization

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using AzureNative = Pulumi.AzureNative;
    
    return await Deployment.RunAsync(() => 
    {
        var input = new AzureNative.StreamAnalytics.Input("input", new()
        {
            InputName = "input8899",
            JobName = "sj6695",
            Properties = new AzureNative.StreamAnalytics.Inputs.StreamInputPropertiesArgs
            {
                Datasource = new AzureNative.StreamAnalytics.Inputs.BlobStreamInputDataSourceArgs
                {
                    Container = "state",
                    DateFormat = "yyyy/MM/dd",
                    PathPattern = "{date}/{time}",
                    SourcePartitionCount = 16,
                    StorageAccounts = new[]
                    {
                        new AzureNative.StreamAnalytics.Inputs.StorageAccountArgs
                        {
                            AccountKey = "someAccountKey==",
                            AccountName = "someAccountName",
                        },
                    },
                    TimeFormat = "HH",
                    Type = "Microsoft.Storage/Blob",
                },
                Serialization = new AzureNative.StreamAnalytics.Inputs.CsvSerializationArgs
                {
                    Encoding = "UTF8",
                    FieldDelimiter = ",",
                    Type = "Csv",
                },
                Type = "Stream",
            },
            ResourceGroupName = "sjrg8161",
        });
    
    });
    
    package main
    
    import (
    	streamanalytics "github.com/pulumi/pulumi-azure-native-sdk/streamanalytics"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := streamanalytics.NewInput(ctx, "input", &streamanalytics.InputArgs{
    			InputName: pulumi.String("input8899"),
    			JobName:   pulumi.String("sj6695"),
    			Properties: streamanalytics.StreamInputProperties{
    				Datasource: streamanalytics.BlobStreamInputDataSource{
    					Container:            "state",
    					DateFormat:           "yyyy/MM/dd",
    					PathPattern:          "{date}/{time}",
    					SourcePartitionCount: 16,
    					StorageAccounts: []streamanalytics.StorageAccount{
    						{
    							AccountKey:  "someAccountKey==",
    							AccountName: "someAccountName",
    						},
    					},
    					TimeFormat: "HH",
    					Type:       "Microsoft.Storage/Blob",
    				},
    				Serialization: streamanalytics.CsvSerialization{
    					Encoding:       "UTF8",
    					FieldDelimiter: ",",
    					Type:           "Csv",
    				},
    				Type: "Stream",
    			},
    			ResourceGroupName: pulumi.String("sjrg8161"),
    		})
    		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.Input;
    import com.pulumi.azurenative.streamanalytics.InputArgs;
    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 input = new Input("input", InputArgs.builder()        
                .inputName("input8899")
                .jobName("sj6695")
                .properties(Map.ofEntries(
                    Map.entry("datasource", Map.ofEntries(
                        Map.entry("container", "state"),
                        Map.entry("dateFormat", "yyyy/MM/dd"),
                        Map.entry("pathPattern", "{date}/{time}"),
                        Map.entry("sourcePartitionCount", 16),
                        Map.entry("storageAccounts", Map.ofEntries(
                            Map.entry("accountKey", "someAccountKey=="),
                            Map.entry("accountName", "someAccountName")
                        )),
                        Map.entry("timeFormat", "HH"),
                        Map.entry("type", "Microsoft.Storage/Blob")
                    )),
                    Map.entry("serialization", Map.ofEntries(
                        Map.entry("encoding", "UTF8"),
                        Map.entry("fieldDelimiter", ","),
                        Map.entry("type", "Csv")
                    )),
                    Map.entry("type", "Stream")
                ))
                .resourceGroupName("sjrg8161")
                .build());
    
        }
    }
    
    import pulumi
    import pulumi_azure_native as azure_native
    
    input = azure_native.streamanalytics.Input("input",
        input_name="input8899",
        job_name="sj6695",
        properties=azure_native.streamanalytics.StreamInputPropertiesArgs(
            datasource=azure_native.streamanalytics.BlobStreamInputDataSourceArgs(
                container="state",
                date_format="yyyy/MM/dd",
                path_pattern="{date}/{time}",
                source_partition_count=16,
                storage_accounts=[azure_native.streamanalytics.StorageAccountArgs(
                    account_key="someAccountKey==",
                    account_name="someAccountName",
                )],
                time_format="HH",
                type="Microsoft.Storage/Blob",
            ),
            serialization=azure_native.streamanalytics.CsvSerializationArgs(
                encoding="UTF8",
                field_delimiter=",",
                type="Csv",
            ),
            type="Stream",
        ),
        resource_group_name="sjrg8161")
    
    import * as pulumi from "@pulumi/pulumi";
    import * as azure_native from "@pulumi/azure-native";
    
    const input = new azure_native.streamanalytics.Input("input", {
        inputName: "input8899",
        jobName: "sj6695",
        properties: {
            datasource: {
                container: "state",
                dateFormat: "yyyy/MM/dd",
                pathPattern: "{date}/{time}",
                sourcePartitionCount: 16,
                storageAccounts: [{
                    accountKey: "someAccountKey==",
                    accountName: "someAccountName",
                }],
                timeFormat: "HH",
                type: "Microsoft.Storage/Blob",
            },
            serialization: {
                encoding: "UTF8",
                fieldDelimiter: ",",
                type: "Csv",
            },
            type: "Stream",
        },
        resourceGroupName: "sjrg8161",
    });
    
    resources:
      input:
        type: azure-native:streamanalytics:Input
        properties:
          inputName: input8899
          jobName: sj6695
          properties:
            datasource:
              container: state
              dateFormat: yyyy/MM/dd
              pathPattern: '{date}/{time}'
              sourcePartitionCount: 16
              storageAccounts:
                - accountKey: someAccountKey==
                  accountName: someAccountName
              timeFormat: HH
              type: Microsoft.Storage/Blob
            serialization:
              encoding: UTF8
              fieldDelimiter: ','
              type: Csv
            type: Stream
          resourceGroupName: sjrg8161
    

    Create Input Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new Input(name: string, args: InputArgs, opts?: CustomResourceOptions);
    @overload
    def Input(resource_name: str,
              args: InputInitArgs,
              opts: Optional[ResourceOptions] = None)
    
    @overload
    def Input(resource_name: str,
              opts: Optional[ResourceOptions] = None,
              job_name: Optional[str] = None,
              resource_group_name: Optional[str] = None,
              input_name: Optional[str] = None,
              name: Optional[str] = None,
              properties: Optional[Union[ReferenceInputPropertiesArgs, StreamInputPropertiesArgs]] = None)
    func NewInput(ctx *Context, name string, args InputArgs, opts ...ResourceOption) (*Input, error)
    public Input(string name, InputArgs args, CustomResourceOptions? opts = null)
    public Input(String name, InputArgs args)
    public Input(String name, InputArgs args, CustomResourceOptions options)
    
    type: azure-native:streamanalytics:Input
    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 InputArgs
    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 InputInitArgs
    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 InputArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args InputArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args InputArgs
    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 inputResource = new AzureNative.Streamanalytics.Input("inputResource", new()
    {
        JobName = "string",
        ResourceGroupName = "string",
        InputName = "string",
        Name = "string",
        Properties = 
        {
            { "type", "Reference" },
            { "datasource", 
            {
                { "type", "Microsoft.Storage/Blob" },
                { "container", "string" },
                { "dateFormat", "string" },
                { "pathPattern", "string" },
                { "storageAccounts", new[]
                {
                    
                    {
                        { "accountKey", "string" },
                        { "accountName", "string" },
                    },
                } },
                { "timeFormat", "string" },
            } },
            { "serialization", 
            {
                { "type", "Avro" },
            } },
        },
    });
    
    example, err := streamanalytics.NewInput(ctx, "inputResource", &streamanalytics.InputArgs{
    	JobName:           "string",
    	ResourceGroupName: "string",
    	InputName:         "string",
    	Name:              "string",
    	Properties: map[string]interface{}{
    		"type": "Reference",
    		"datasource": map[string]interface{}{
    			"type":        "Microsoft.Storage/Blob",
    			"container":   "string",
    			"dateFormat":  "string",
    			"pathPattern": "string",
    			"storageAccounts": []map[string]interface{}{
    				map[string]interface{}{
    					"accountKey":  "string",
    					"accountName": "string",
    				},
    			},
    			"timeFormat": "string",
    		},
    		"serialization": map[string]interface{}{
    			"type": "Avro",
    		},
    	},
    })
    
    var inputResource = new Input("inputResource", InputArgs.builder()
        .jobName("string")
        .resourceGroupName("string")
        .inputName("string")
        .name("string")
        .properties(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
        .build());
    
    input_resource = azure_native.streamanalytics.Input("inputResource",
        job_name=string,
        resource_group_name=string,
        input_name=string,
        name=string,
        properties={
            type: Reference,
            datasource: {
                type: Microsoft.Storage/Blob,
                container: string,
                dateFormat: string,
                pathPattern: string,
                storageAccounts: [{
                    accountKey: string,
                    accountName: string,
                }],
                timeFormat: string,
            },
            serialization: {
                type: Avro,
            },
        })
    
    const inputResource = new azure_native.streamanalytics.Input("inputResource", {
        jobName: "string",
        resourceGroupName: "string",
        inputName: "string",
        name: "string",
        properties: {
            type: "Reference",
            datasource: {
                type: "Microsoft.Storage/Blob",
                container: "string",
                dateFormat: "string",
                pathPattern: "string",
                storageAccounts: [{
                    accountKey: "string",
                    accountName: "string",
                }],
                timeFormat: "string",
            },
            serialization: {
                type: "Avro",
            },
        },
    });
    
    type: azure-native:streamanalytics:Input
    properties:
        inputName: string
        jobName: string
        name: string
        properties:
            datasource:
                container: string
                dateFormat: string
                pathPattern: string
                storageAccounts:
                    - accountKey: string
                      accountName: string
                timeFormat: string
                type: Microsoft.Storage/Blob
            serialization:
                type: Avro
            type: Reference
        resourceGroupName: string
    

    Input 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 Input resource accepts the following input properties:

    JobName string
    The name of the streaming job.
    ResourceGroupName string
    The name of the resource group that contains the resource. You can obtain this value from the Azure Resource Manager API or the portal.
    InputName string
    The name of the input.
    Name string
    Resource name
    Properties Pulumi.AzureNative.StreamAnalytics.Inputs.ReferenceInputProperties | Pulumi.AzureNative.StreamAnalytics.Inputs.StreamInputProperties
    The properties that are associated with an input. Required on PUT (CreateOrReplace) requests.
    JobName string
    The name of the streaming job.
    ResourceGroupName string
    The name of the resource group that contains the resource. You can obtain this value from the Azure Resource Manager API or the portal.
    InputName string
    The name of the input.
    Name string
    Resource name
    Properties ReferenceInputPropertiesArgs | StreamInputPropertiesArgs
    The properties that are associated with an input. Required on PUT (CreateOrReplace) requests.
    jobName String
    The name of the streaming job.
    resourceGroupName String
    The name of the resource group that contains the resource. You can obtain this value from the Azure Resource Manager API or the portal.
    inputName String
    The name of the input.
    name String
    Resource name
    properties ReferenceInputProperties | StreamInputProperties
    The properties that are associated with an input. Required on PUT (CreateOrReplace) requests.
    jobName string
    The name of the streaming job.
    resourceGroupName string
    The name of the resource group that contains the resource. You can obtain this value from the Azure Resource Manager API or the portal.
    inputName string
    The name of the input.
    name string
    Resource name
    properties ReferenceInputProperties | StreamInputProperties
    The properties that are associated with an input. Required on PUT (CreateOrReplace) requests.
    job_name str
    The name of the streaming job.
    resource_group_name str
    The name of the resource group that contains the resource. You can obtain this value from the Azure Resource Manager API or the portal.
    input_name str
    The name of the input.
    name str
    Resource name
    properties ReferenceInputPropertiesArgs | StreamInputPropertiesArgs
    The properties that are associated with an input. Required on PUT (CreateOrReplace) requests.
    jobName String
    The name of the streaming job.
    resourceGroupName String
    The name of the resource group that contains the resource. You can obtain this value from the Azure Resource Manager API or the portal.
    inputName String
    The name of the input.
    name String
    Resource name
    properties Property Map | Property Map
    The properties that are associated with an input. Required on PUT (CreateOrReplace) requests.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the Input resource produces the following output properties:

    Id string
    The provider-assigned unique ID for this managed resource.
    Type string
    Resource type
    Id string
    The provider-assigned unique ID for this managed resource.
    Type string
    Resource type
    id String
    The provider-assigned unique ID for this managed resource.
    type String
    Resource type
    id string
    The provider-assigned unique ID for this managed resource.
    type string
    Resource type
    id str
    The provider-assigned unique ID for this managed resource.
    type str
    Resource type
    id String
    The provider-assigned unique ID for this managed resource.
    type String
    Resource type

    Supporting Types

    AvroSerialization, AvroSerializationArgs

    AvroSerializationResponse, AvroSerializationResponseArgs

    BlobReferenceInputDataSource, BlobReferenceInputDataSourceArgs

    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.
    DateFormat string
    The date format. Wherever {date} appears in pathPattern, the value of this property is used as the date format instead.
    PathPattern 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.
    StorageAccounts List<Pulumi.AzureNative.StreamAnalytics.Inputs.StorageAccount>
    A list of one or more Azure Storage accounts. Required on PUT (CreateOrReplace) requests.
    TimeFormat string
    The time format. Wherever {time} appears in pathPattern, the value of this property is used as the time format instead.
    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.
    DateFormat string
    The date format. Wherever {date} appears in pathPattern, the value of this property is used as the date format instead.
    PathPattern 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.
    StorageAccounts []StorageAccount
    A list of one or more Azure Storage accounts. Required on PUT (CreateOrReplace) requests.
    TimeFormat string
    The time format. Wherever {time} appears in pathPattern, the value of this property is used as the time format instead.
    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.
    dateFormat String
    The date format. Wherever {date} appears in pathPattern, the value of this property is used as the date format instead.
    pathPattern 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.
    storageAccounts List<StorageAccount>
    A list of one or more Azure Storage accounts. Required on PUT (CreateOrReplace) requests.
    timeFormat String
    The time format. Wherever {time} appears in pathPattern, the value of this property is used as the time format instead.
    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.
    dateFormat string
    The date format. Wherever {date} appears in pathPattern, the value of this property is used as the date format instead.
    pathPattern 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.
    storageAccounts StorageAccount[]
    A list of one or more Azure Storage accounts. Required on PUT (CreateOrReplace) requests.
    timeFormat string
    The time format. Wherever {time} appears in pathPattern, the value of this property is used as the time format instead.
    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.
    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.
    dateFormat String
    The date format. Wherever {date} appears in pathPattern, the value of this property is used as the date format instead.
    pathPattern 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.
    storageAccounts List<Property Map>
    A list of one or more Azure Storage accounts. Required on PUT (CreateOrReplace) requests.
    timeFormat String
    The time format. Wherever {time} appears in pathPattern, the value of this property is used as the time format instead.

    BlobReferenceInputDataSourceResponse, BlobReferenceInputDataSourceResponseArgs

    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.
    DateFormat string
    The date format. Wherever {date} appears in pathPattern, the value of this property is used as the date format instead.
    PathPattern 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.
    StorageAccounts List<Pulumi.AzureNative.StreamAnalytics.Inputs.StorageAccountResponse>
    A list of one or more Azure Storage accounts. Required on PUT (CreateOrReplace) requests.
    TimeFormat string
    The time format. Wherever {time} appears in pathPattern, the value of this property is used as the time format instead.
    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.
    DateFormat string
    The date format. Wherever {date} appears in pathPattern, the value of this property is used as the date format instead.
    PathPattern 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.
    StorageAccounts []StorageAccountResponse
    A list of one or more Azure Storage accounts. Required on PUT (CreateOrReplace) requests.
    TimeFormat string
    The time format. Wherever {time} appears in pathPattern, the value of this property is used as the time format instead.
    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.
    dateFormat String
    The date format. Wherever {date} appears in pathPattern, the value of this property is used as the date format instead.
    pathPattern 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.
    storageAccounts List<StorageAccountResponse>
    A list of one or more Azure Storage accounts. Required on PUT (CreateOrReplace) requests.
    timeFormat String
    The time format. Wherever {time} appears in pathPattern, the value of this property is used as the time format instead.
    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.
    dateFormat string
    The date format. Wherever {date} appears in pathPattern, the value of this property is used as the date format instead.
    pathPattern 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.
    storageAccounts StorageAccountResponse[]
    A list of one or more Azure Storage accounts. Required on PUT (CreateOrReplace) requests.
    timeFormat string
    The time format. Wherever {time} appears in pathPattern, the value of this property is used as the time format instead.
    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[StorageAccountResponse]
    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.
    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.
    dateFormat String
    The date format. Wherever {date} appears in pathPattern, the value of this property is used as the date format instead.
    pathPattern 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.
    storageAccounts List<Property Map>
    A list of one or more Azure Storage accounts. Required on PUT (CreateOrReplace) requests.
    timeFormat String
    The time format. Wherever {time} appears in pathPattern, the value of this property is used as the time format instead.

    BlobStreamInputDataSource, BlobStreamInputDataSourceArgs

    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.
    DateFormat string
    The date format. Wherever {date} appears in pathPattern, the value of this property is used as the date format instead.
    PathPattern 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.
    SourcePartitionCount int
    The partition count of the blob input data source. Range 1 - 1024.
    StorageAccounts List<Pulumi.AzureNative.StreamAnalytics.Inputs.StorageAccount>
    A list of one or more Azure Storage accounts. Required on PUT (CreateOrReplace) requests.
    TimeFormat string
    The time format. Wherever {time} appears in pathPattern, the value of this property is used as the time format instead.
    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.
    DateFormat string
    The date format. Wherever {date} appears in pathPattern, the value of this property is used as the date format instead.
    PathPattern 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.
    SourcePartitionCount int
    The partition count of the blob input data source. Range 1 - 1024.
    StorageAccounts []StorageAccount
    A list of one or more Azure Storage accounts. Required on PUT (CreateOrReplace) requests.
    TimeFormat string
    The time format. Wherever {time} appears in pathPattern, the value of this property is used as the time format instead.
    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.
    dateFormat String
    The date format. Wherever {date} appears in pathPattern, the value of this property is used as the date format instead.
    pathPattern 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.
    sourcePartitionCount Integer
    The partition count of the blob input data source. Range 1 - 1024.
    storageAccounts List<StorageAccount>
    A list of one or more Azure Storage accounts. Required on PUT (CreateOrReplace) requests.
    timeFormat String
    The time format. Wherever {time} appears in pathPattern, the value of this property is used as the time format instead.
    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.
    dateFormat string
    The date format. Wherever {date} appears in pathPattern, the value of this property is used as the date format instead.
    pathPattern 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.
    sourcePartitionCount number
    The partition count of the blob input data source. Range 1 - 1024.
    storageAccounts StorageAccount[]
    A list of one or more Azure Storage accounts. Required on PUT (CreateOrReplace) requests.
    timeFormat string
    The time format. Wherever {time} appears in pathPattern, the value of this property is used as the time format instead.
    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_count int
    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.
    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.
    dateFormat String
    The date format. Wherever {date} appears in pathPattern, the value of this property is used as the date format instead.
    pathPattern 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.
    sourcePartitionCount Number
    The partition count of the blob input data source. Range 1 - 1024.
    storageAccounts List<Property Map>
    A list of one or more Azure Storage accounts. Required on PUT (CreateOrReplace) requests.
    timeFormat String
    The time format. Wherever {time} appears in pathPattern, the value of this property is used as the time format instead.

    BlobStreamInputDataSourceResponse, BlobStreamInputDataSourceResponseArgs

    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.
    DateFormat string
    The date format. Wherever {date} appears in pathPattern, the value of this property is used as the date format instead.
    PathPattern 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.
    SourcePartitionCount int
    The partition count of the blob input data source. Range 1 - 1024.
    StorageAccounts List<Pulumi.AzureNative.StreamAnalytics.Inputs.StorageAccountResponse>
    A list of one or more Azure Storage accounts. Required on PUT (CreateOrReplace) requests.
    TimeFormat string
    The time format. Wherever {time} appears in pathPattern, the value of this property is used as the time format instead.
    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.
    DateFormat string
    The date format. Wherever {date} appears in pathPattern, the value of this property is used as the date format instead.
    PathPattern 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.
    SourcePartitionCount int
    The partition count of the blob input data source. Range 1 - 1024.
    StorageAccounts []StorageAccountResponse
    A list of one or more Azure Storage accounts. Required on PUT (CreateOrReplace) requests.
    TimeFormat string
    The time format. Wherever {time} appears in pathPattern, the value of this property is used as the time format instead.
    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.
    dateFormat String
    The date format. Wherever {date} appears in pathPattern, the value of this property is used as the date format instead.
    pathPattern 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.
    sourcePartitionCount Integer
    The partition count of the blob input data source. Range 1 - 1024.
    storageAccounts List<StorageAccountResponse>
    A list of one or more Azure Storage accounts. Required on PUT (CreateOrReplace) requests.
    timeFormat String
    The time format. Wherever {time} appears in pathPattern, the value of this property is used as the time format instead.
    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.
    dateFormat string
    The date format. Wherever {date} appears in pathPattern, the value of this property is used as the date format instead.
    pathPattern 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.
    sourcePartitionCount number
    The partition count of the blob input data source. Range 1 - 1024.
    storageAccounts StorageAccountResponse[]
    A list of one or more Azure Storage accounts. Required on PUT (CreateOrReplace) requests.
    timeFormat string
    The time format. Wherever {time} appears in pathPattern, the value of this property is used as the time format instead.
    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_count int
    The partition count of the blob input data source. Range 1 - 1024.
    storage_accounts Sequence[StorageAccountResponse]
    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.
    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.
    dateFormat String
    The date format. Wherever {date} appears in pathPattern, the value of this property is used as the date format instead.
    pathPattern 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.
    sourcePartitionCount Number
    The partition count of the blob input data source. Range 1 - 1024.
    storageAccounts List<Property Map>
    A list of one or more Azure Storage accounts. Required on PUT (CreateOrReplace) requests.
    timeFormat String
    The time format. Wherever {time} appears in pathPattern, the value of this property is used as the time format instead.

    CsvSerialization, CsvSerializationArgs

    Encoding string | Pulumi.AzureNative.StreamAnalytics.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.
    FieldDelimiter 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.
    FieldDelimiter 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.
    fieldDelimiter 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.
    fieldDelimiter 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.
    fieldDelimiter 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.
    FieldDelimiter 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.
    FieldDelimiter 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.
    fieldDelimiter 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.
    fieldDelimiter 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.
    fieldDelimiter 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.AzureNative.StreamAnalytics.Inputs.DiagnosticConditionResponse>
    A collection of zero or more conditions applicable to the resource, or to the job overall, that warrant customer attention.
    Conditions []DiagnosticConditionResponse
    A collection of zero or more conditions applicable to the resource, or to the job overall, that warrant customer attention.
    conditions List<DiagnosticConditionResponse>
    A collection of zero or more conditions applicable to the resource, or to the job overall, that warrant customer attention.
    conditions DiagnosticConditionResponse[]
    A collection of zero or more conditions applicable to the resource, or to the job overall, that warrant customer attention.
    conditions Sequence[DiagnosticConditionResponse]
    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.

    Encoding, EncodingArgs

    UTF8
    UTF8
    EncodingUTF8
    UTF8
    UTF8
    UTF8
    UTF8
    UTF8
    UTF8
    UTF8
    "UTF8"
    UTF8

    EventHubStreamInputDataSource, EventHubStreamInputDataSourceArgs

    ConsumerGroupName string
    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.
    EventHubName string
    The name of the Event Hub. Required on PUT (CreateOrReplace) requests.
    ServiceBusNamespace string
    The namespace that is associated with the desired Event Hub, Service Bus Queue, Service Bus Topic, etc. Required on PUT (CreateOrReplace) requests.
    SharedAccessPolicyKey string
    The shared access policy key for the specified shared access policy. Required on PUT (CreateOrReplace) requests.
    SharedAccessPolicyName string
    The shared access policy name for the Event Hub, Service Bus Queue, Service Bus Topic, etc. Required on PUT (CreateOrReplace) requests.
    ConsumerGroupName string
    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.
    EventHubName string
    The name of the Event Hub. Required on PUT (CreateOrReplace) requests.
    ServiceBusNamespace string
    The namespace that is associated with the desired Event Hub, Service Bus Queue, Service Bus Topic, etc. Required on PUT (CreateOrReplace) requests.
    SharedAccessPolicyKey string
    The shared access policy key for the specified shared access policy. Required on PUT (CreateOrReplace) requests.
    SharedAccessPolicyName string
    The shared access policy name for the Event Hub, Service Bus Queue, Service Bus Topic, etc. Required on PUT (CreateOrReplace) requests.
    consumerGroupName String
    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.
    eventHubName String
    The name of the Event Hub. Required on PUT (CreateOrReplace) requests.
    serviceBusNamespace String
    The namespace that is associated with the desired Event Hub, Service Bus Queue, Service Bus Topic, etc. Required on PUT (CreateOrReplace) requests.
    sharedAccessPolicyKey String
    The shared access policy key for the specified shared access policy. Required on PUT (CreateOrReplace) requests.
    sharedAccessPolicyName String
    The shared access policy name for the Event Hub, Service Bus Queue, Service Bus Topic, etc. Required on PUT (CreateOrReplace) requests.
    consumerGroupName string
    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.
    eventHubName string
    The name of the Event Hub. Required on PUT (CreateOrReplace) requests.
    serviceBusNamespace string
    The namespace that is associated with the desired Event Hub, Service Bus Queue, Service Bus Topic, etc. Required on PUT (CreateOrReplace) requests.
    sharedAccessPolicyKey string
    The shared access policy key for the specified shared access policy. Required on PUT (CreateOrReplace) requests.
    sharedAccessPolicyName string
    The shared access policy name for the Event Hub, Service Bus Queue, Service Bus Topic, etc. Required on PUT (CreateOrReplace) requests.
    consumer_group_name str
    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_name str
    The name of the Event Hub. Required on PUT (CreateOrReplace) requests.
    service_bus_namespace str
    The namespace that is associated with the desired Event Hub, Service Bus Queue, Service Bus Topic, etc. Required on PUT (CreateOrReplace) requests.
    shared_access_policy_key str
    The shared access policy key for the specified shared access policy. Required on PUT (CreateOrReplace) requests.
    shared_access_policy_name str
    The shared access policy name for the Event Hub, Service Bus Queue, Service Bus Topic, etc. Required on PUT (CreateOrReplace) requests.
    consumerGroupName String
    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.
    eventHubName String
    The name of the Event Hub. Required on PUT (CreateOrReplace) requests.
    serviceBusNamespace String
    The namespace that is associated with the desired Event Hub, Service Bus Queue, Service Bus Topic, etc. Required on PUT (CreateOrReplace) requests.
    sharedAccessPolicyKey String
    The shared access policy key for the specified shared access policy. Required on PUT (CreateOrReplace) requests.
    sharedAccessPolicyName String
    The shared access policy name for the Event Hub, Service Bus Queue, Service Bus Topic, etc. Required on PUT (CreateOrReplace) requests.

    EventHubStreamInputDataSourceResponse, EventHubStreamInputDataSourceResponseArgs

    ConsumerGroupName string
    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.
    EventHubName string
    The name of the Event Hub. Required on PUT (CreateOrReplace) requests.
    ServiceBusNamespace string
    The namespace that is associated with the desired Event Hub, Service Bus Queue, Service Bus Topic, etc. Required on PUT (CreateOrReplace) requests.
    SharedAccessPolicyKey string
    The shared access policy key for the specified shared access policy. Required on PUT (CreateOrReplace) requests.
    SharedAccessPolicyName string
    The shared access policy name for the Event Hub, Service Bus Queue, Service Bus Topic, etc. Required on PUT (CreateOrReplace) requests.
    ConsumerGroupName string
    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.
    EventHubName string
    The name of the Event Hub. Required on PUT (CreateOrReplace) requests.
    ServiceBusNamespace string
    The namespace that is associated with the desired Event Hub, Service Bus Queue, Service Bus Topic, etc. Required on PUT (CreateOrReplace) requests.
    SharedAccessPolicyKey string
    The shared access policy key for the specified shared access policy. Required on PUT (CreateOrReplace) requests.
    SharedAccessPolicyName string
    The shared access policy name for the Event Hub, Service Bus Queue, Service Bus Topic, etc. Required on PUT (CreateOrReplace) requests.
    consumerGroupName String
    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.
    eventHubName String
    The name of the Event Hub. Required on PUT (CreateOrReplace) requests.
    serviceBusNamespace String
    The namespace that is associated with the desired Event Hub, Service Bus Queue, Service Bus Topic, etc. Required on PUT (CreateOrReplace) requests.
    sharedAccessPolicyKey String
    The shared access policy key for the specified shared access policy. Required on PUT (CreateOrReplace) requests.
    sharedAccessPolicyName String
    The shared access policy name for the Event Hub, Service Bus Queue, Service Bus Topic, etc. Required on PUT (CreateOrReplace) requests.
    consumerGroupName string
    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.
    eventHubName string
    The name of the Event Hub. Required on PUT (CreateOrReplace) requests.
    serviceBusNamespace string
    The namespace that is associated with the desired Event Hub, Service Bus Queue, Service Bus Topic, etc. Required on PUT (CreateOrReplace) requests.
    sharedAccessPolicyKey string
    The shared access policy key for the specified shared access policy. Required on PUT (CreateOrReplace) requests.
    sharedAccessPolicyName string
    The shared access policy name for the Event Hub, Service Bus Queue, Service Bus Topic, etc. Required on PUT (CreateOrReplace) requests.
    consumer_group_name str
    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_name str
    The name of the Event Hub. Required on PUT (CreateOrReplace) requests.
    service_bus_namespace str
    The namespace that is associated with the desired Event Hub, Service Bus Queue, Service Bus Topic, etc. Required on PUT (CreateOrReplace) requests.
    shared_access_policy_key str
    The shared access policy key for the specified shared access policy. Required on PUT (CreateOrReplace) requests.
    shared_access_policy_name str
    The shared access policy name for the Event Hub, Service Bus Queue, Service Bus Topic, etc. Required on PUT (CreateOrReplace) requests.
    consumerGroupName String
    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.
    eventHubName String
    The name of the Event Hub. Required on PUT (CreateOrReplace) requests.
    serviceBusNamespace String
    The namespace that is associated with the desired Event Hub, Service Bus Queue, Service Bus Topic, etc. Required on PUT (CreateOrReplace) requests.
    sharedAccessPolicyKey String
    The shared access policy key for the specified shared access policy. Required on PUT (CreateOrReplace) requests.
    sharedAccessPolicyName String
    The shared access policy name for the Event Hub, Service Bus Queue, Service Bus Topic, etc. Required on PUT (CreateOrReplace) requests.

    IoTHubStreamInputDataSource, IoTHubStreamInputDataSourceArgs

    ConsumerGroupName string
    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.).
    IotHubNamespace string
    The name or the URI of the IoT Hub. Required on PUT (CreateOrReplace) requests.
    SharedAccessPolicyKey string
    The shared access policy key for the specified shared access policy. Required on PUT (CreateOrReplace) requests.
    SharedAccessPolicyName 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.
    ConsumerGroupName string
    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.).
    IotHubNamespace string
    The name or the URI of the IoT Hub. Required on PUT (CreateOrReplace) requests.
    SharedAccessPolicyKey string
    The shared access policy key for the specified shared access policy. Required on PUT (CreateOrReplace) requests.
    SharedAccessPolicyName 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.
    consumerGroupName String
    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.).
    iotHubNamespace String
    The name or the URI of the IoT Hub. Required on PUT (CreateOrReplace) requests.
    sharedAccessPolicyKey String
    The shared access policy key for the specified shared access policy. Required on PUT (CreateOrReplace) requests.
    sharedAccessPolicyName 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.
    consumerGroupName string
    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.).
    iotHubNamespace string
    The name or the URI of the IoT Hub. Required on PUT (CreateOrReplace) requests.
    sharedAccessPolicyKey string
    The shared access policy key for the specified shared access policy. Required on PUT (CreateOrReplace) requests.
    sharedAccessPolicyName 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_name str
    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_namespace str
    The name or the URI of the IoT Hub. Required on PUT (CreateOrReplace) requests.
    shared_access_policy_key str
    The shared access policy key for the specified shared access policy. Required on PUT (CreateOrReplace) requests.
    shared_access_policy_name 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.
    consumerGroupName String
    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.).
    iotHubNamespace String
    The name or the URI of the IoT Hub. Required on PUT (CreateOrReplace) requests.
    sharedAccessPolicyKey String
    The shared access policy key for the specified shared access policy. Required on PUT (CreateOrReplace) requests.
    sharedAccessPolicyName 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

    ConsumerGroupName string
    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.).
    IotHubNamespace string
    The name or the URI of the IoT Hub. Required on PUT (CreateOrReplace) requests.
    SharedAccessPolicyKey string
    The shared access policy key for the specified shared access policy. Required on PUT (CreateOrReplace) requests.
    SharedAccessPolicyName 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.
    ConsumerGroupName string
    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.).
    IotHubNamespace string
    The name or the URI of the IoT Hub. Required on PUT (CreateOrReplace) requests.
    SharedAccessPolicyKey string
    The shared access policy key for the specified shared access policy. Required on PUT (CreateOrReplace) requests.
    SharedAccessPolicyName 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.
    consumerGroupName String
    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.).
    iotHubNamespace String
    The name or the URI of the IoT Hub. Required on PUT (CreateOrReplace) requests.
    sharedAccessPolicyKey String
    The shared access policy key for the specified shared access policy. Required on PUT (CreateOrReplace) requests.
    sharedAccessPolicyName 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.
    consumerGroupName string
    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.).
    iotHubNamespace string
    The name or the URI of the IoT Hub. Required on PUT (CreateOrReplace) requests.
    sharedAccessPolicyKey string
    The shared access policy key for the specified shared access policy. Required on PUT (CreateOrReplace) requests.
    sharedAccessPolicyName 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_name str
    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_namespace str
    The name or the URI of the IoT Hub. Required on PUT (CreateOrReplace) requests.
    shared_access_policy_key str
    The shared access policy key for the specified shared access policy. Required on PUT (CreateOrReplace) requests.
    shared_access_policy_name 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.
    consumerGroupName String
    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.).
    iotHubNamespace String
    The name or the URI of the IoT Hub. Required on PUT (CreateOrReplace) requests.
    sharedAccessPolicyKey String
    The shared access policy key for the specified shared access policy. Required on PUT (CreateOrReplace) requests.
    sharedAccessPolicyName 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.

    JsonOutputSerializationFormat, JsonOutputSerializationFormatArgs

    LineSeparated
    LineSeparated
    Array
    Array
    JsonOutputSerializationFormatLineSeparated
    LineSeparated
    JsonOutputSerializationFormatArray
    Array
    LineSeparated
    LineSeparated
    Array
    Array
    LineSeparated
    LineSeparated
    Array
    Array
    LINE_SEPARATED
    LineSeparated
    ARRAY
    Array
    "LineSeparated"
    LineSeparated
    "Array"
    Array

    JsonSerialization, JsonSerializationArgs

    Encoding string | Pulumi.AzureNative.StreamAnalytics.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.AzureNative.StreamAnalytics.JsonOutputSerializationFormat
    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 | JsonOutputSerializationFormat
    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 | JsonOutputSerializationFormat
    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 | JsonOutputSerializationFormat
    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 | JsonOutputSerializationFormat
    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 | "LineSeparated" | "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.

    ReferenceInputProperties, ReferenceInputPropertiesArgs

    Datasource Pulumi.AzureNative.StreamAnalytics.Inputs.BlobReferenceInputDataSource
    Describes an input data source that contains reference data. Required on PUT (CreateOrReplace) requests.
    Serialization Pulumi.AzureNative.StreamAnalytics.Inputs.AvroSerialization | Pulumi.AzureNative.StreamAnalytics.Inputs.CsvSerialization | Pulumi.AzureNative.StreamAnalytics.Inputs.JsonSerialization
    Describes how data from an input is serialized or how data is serialized when written to an output. Required on PUT (CreateOrReplace) requests.
    Datasource BlobReferenceInputDataSource
    Describes an input data source that contains reference data. Required on PUT (CreateOrReplace) requests.
    Serialization AvroSerialization | CsvSerialization | JsonSerialization
    Describes how data from an input is serialized or how data is serialized when written to an output. Required on PUT (CreateOrReplace) requests.
    datasource BlobReferenceInputDataSource
    Describes an input data source that contains reference data. Required on PUT (CreateOrReplace) requests.
    serialization AvroSerialization | CsvSerialization | JsonSerialization
    Describes how data from an input is serialized or how data is serialized when written to an output. Required on PUT (CreateOrReplace) requests.
    datasource BlobReferenceInputDataSource
    Describes an input data source that contains reference data. Required on PUT (CreateOrReplace) requests.
    serialization AvroSerialization | CsvSerialization | JsonSerialization
    Describes how data from an input is serialized or how data is serialized when written to an output. Required on PUT (CreateOrReplace) requests.
    datasource BlobReferenceInputDataSource
    Describes an input data source that contains reference data. Required on PUT (CreateOrReplace) requests.
    serialization AvroSerialization | CsvSerialization | JsonSerialization
    Describes how data from an input is serialized or how data is serialized when written to an output. Required on PUT (CreateOrReplace) requests.
    datasource Property Map
    Describes an input data source that contains reference data. Required on PUT (CreateOrReplace) requests.
    serialization 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.AzureNative.StreamAnalytics.Inputs.DiagnosticsResponse
    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.
    Datasource Pulumi.AzureNative.StreamAnalytics.Inputs.BlobReferenceInputDataSourceResponse
    Describes an input data source that contains reference data. Required on PUT (CreateOrReplace) requests.
    Serialization Pulumi.AzureNative.StreamAnalytics.Inputs.AvroSerializationResponse | Pulumi.AzureNative.StreamAnalytics.Inputs.CsvSerializationResponse | Pulumi.AzureNative.StreamAnalytics.Inputs.JsonSerializationResponse
    Describes how data from an input is serialized or how data is serialized when written to an output. Required on PUT (CreateOrReplace) requests.
    Diagnostics DiagnosticsResponse
    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.
    Datasource BlobReferenceInputDataSourceResponse
    Describes an input data source that contains reference data. Required on PUT (CreateOrReplace) requests.
    Serialization AvroSerializationResponse | CsvSerializationResponse | JsonSerializationResponse
    Describes how data from an input is serialized or how data is serialized when written to an output. Required on PUT (CreateOrReplace) requests.
    diagnostics DiagnosticsResponse
    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.
    datasource BlobReferenceInputDataSourceResponse
    Describes an input data source that contains reference data. Required on PUT (CreateOrReplace) requests.
    serialization AvroSerializationResponse | CsvSerializationResponse | JsonSerializationResponse
    Describes how data from an input is serialized or how data is serialized when written to an output. Required on PUT (CreateOrReplace) requests.
    diagnostics DiagnosticsResponse
    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.
    datasource BlobReferenceInputDataSourceResponse
    Describes an input data source that contains reference data. Required on PUT (CreateOrReplace) requests.
    serialization AvroSerializationResponse | CsvSerializationResponse | JsonSerializationResponse
    Describes how data from an input is serialized or how data is serialized when written to an output. Required on PUT (CreateOrReplace) requests.
    diagnostics DiagnosticsResponse
    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.
    datasource BlobReferenceInputDataSourceResponse
    Describes an input data source that contains reference data. Required on PUT (CreateOrReplace) requests.
    serialization AvroSerializationResponse | CsvSerializationResponse | JsonSerializationResponse
    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.
    datasource Property Map
    Describes an input data source that contains reference data. Required on PUT (CreateOrReplace) requests.
    serialization 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.

    StorageAccount, StorageAccountArgs

    AccountKey string
    The account key for the Azure Storage account. Required on PUT (CreateOrReplace) requests.
    AccountName string
    The name of the Azure Storage account. Required on PUT (CreateOrReplace) requests.
    AccountKey string
    The account key for the Azure Storage account. Required on PUT (CreateOrReplace) requests.
    AccountName string
    The name of the Azure Storage account. Required on PUT (CreateOrReplace) requests.
    accountKey String
    The account key for the Azure Storage account. Required on PUT (CreateOrReplace) requests.
    accountName String
    The name of the Azure Storage account. Required on PUT (CreateOrReplace) requests.
    accountKey string
    The account key for the Azure Storage account. Required on PUT (CreateOrReplace) requests.
    accountName 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.
    accountKey String
    The account key for the Azure Storage account. Required on PUT (CreateOrReplace) requests.
    accountName String
    The name of the Azure Storage account. Required on PUT (CreateOrReplace) requests.

    StorageAccountResponse, StorageAccountResponseArgs

    AccountKey string
    The account key for the Azure Storage account. Required on PUT (CreateOrReplace) requests.
    AccountName string
    The name of the Azure Storage account. Required on PUT (CreateOrReplace) requests.
    AccountKey string
    The account key for the Azure Storage account. Required on PUT (CreateOrReplace) requests.
    AccountName string
    The name of the Azure Storage account. Required on PUT (CreateOrReplace) requests.
    accountKey String
    The account key for the Azure Storage account. Required on PUT (CreateOrReplace) requests.
    accountName String
    The name of the Azure Storage account. Required on PUT (CreateOrReplace) requests.
    accountKey string
    The account key for the Azure Storage account. Required on PUT (CreateOrReplace) requests.
    accountName 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.
    accountKey String
    The account key for the Azure Storage account. Required on PUT (CreateOrReplace) requests.
    accountName String
    The name of the Azure Storage account. Required on PUT (CreateOrReplace) requests.

    StreamInputProperties, StreamInputPropertiesArgs

    Datasource BlobStreamInputDataSource | EventHubStreamInputDataSource | IoTHubStreamInputDataSource
    Describes an input data source that contains stream data. Required on PUT (CreateOrReplace) requests.
    Serialization AvroSerialization | CsvSerialization | JsonSerialization
    Describes how data from an input is serialized or how data is serialized when written to an output. Required on PUT (CreateOrReplace) requests.
    datasource BlobStreamInputDataSource | EventHubStreamInputDataSource | IoTHubStreamInputDataSource
    Describes an input data source that contains stream data. Required on PUT (CreateOrReplace) requests.
    serialization AvroSerialization | CsvSerialization | JsonSerialization
    Describes how data from an input is serialized or how data is serialized when written to an output. Required on PUT (CreateOrReplace) requests.
    datasource BlobStreamInputDataSource | EventHubStreamInputDataSource | IoTHubStreamInputDataSource
    Describes an input data source that contains stream data. Required on PUT (CreateOrReplace) requests.
    serialization AvroSerialization | CsvSerialization | JsonSerialization
    Describes how data from an input is serialized or how data is serialized when written to an output. Required on PUT (CreateOrReplace) requests.
    datasource BlobStreamInputDataSource | EventHubStreamInputDataSource | IoTHubStreamInputDataSource
    Describes an input data source that contains stream data. Required on PUT (CreateOrReplace) requests.
    serialization AvroSerialization | CsvSerialization | JsonSerialization
    Describes how data from an input is serialized or how data is serialized when written to an output. Required on PUT (CreateOrReplace) requests.
    datasource Property Map | Property Map | Property Map
    Describes an input data source that contains stream data. Required on PUT (CreateOrReplace) requests.
    serialization 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.AzureNative.StreamAnalytics.Inputs.DiagnosticsResponse
    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.
    Datasource Pulumi.AzureNative.StreamAnalytics.Inputs.BlobStreamInputDataSourceResponse | Pulumi.AzureNative.StreamAnalytics.Inputs.EventHubStreamInputDataSourceResponse | Pulumi.AzureNative.StreamAnalytics.Inputs.IoTHubStreamInputDataSourceResponse
    Describes an input data source that contains stream data. Required on PUT (CreateOrReplace) requests.
    Serialization Pulumi.AzureNative.StreamAnalytics.Inputs.AvroSerializationResponse | Pulumi.AzureNative.StreamAnalytics.Inputs.CsvSerializationResponse | Pulumi.AzureNative.StreamAnalytics.Inputs.JsonSerializationResponse
    Describes how data from an input is serialized or how data is serialized when written to an output. Required on PUT (CreateOrReplace) requests.
    Diagnostics DiagnosticsResponse
    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.
    Datasource BlobStreamInputDataSourceResponse | EventHubStreamInputDataSourceResponse | IoTHubStreamInputDataSourceResponse
    Describes an input data source that contains stream data. Required on PUT (CreateOrReplace) requests.
    Serialization AvroSerializationResponse | CsvSerializationResponse | JsonSerializationResponse
    Describes how data from an input is serialized or how data is serialized when written to an output. Required on PUT (CreateOrReplace) requests.
    diagnostics DiagnosticsResponse
    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.
    datasource BlobStreamInputDataSourceResponse | EventHubStreamInputDataSourceResponse | IoTHubStreamInputDataSourceResponse
    Describes an input data source that contains stream data. Required on PUT (CreateOrReplace) requests.
    serialization AvroSerializationResponse | CsvSerializationResponse | JsonSerializationResponse
    Describes how data from an input is serialized or how data is serialized when written to an output. Required on PUT (CreateOrReplace) requests.
    diagnostics DiagnosticsResponse
    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.
    datasource BlobStreamInputDataSourceResponse | EventHubStreamInputDataSourceResponse | IoTHubStreamInputDataSourceResponse
    Describes an input data source that contains stream data. Required on PUT (CreateOrReplace) requests.
    serialization AvroSerializationResponse | CsvSerializationResponse | JsonSerializationResponse
    Describes how data from an input is serialized or how data is serialized when written to an output. Required on PUT (CreateOrReplace) requests.
    diagnostics DiagnosticsResponse
    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.
    datasource BlobStreamInputDataSourceResponse | EventHubStreamInputDataSourceResponse | IoTHubStreamInputDataSourceResponse
    Describes an input data source that contains stream data. Required on PUT (CreateOrReplace) requests.
    serialization AvroSerializationResponse | CsvSerializationResponse | JsonSerializationResponse
    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.
    datasource Property Map | Property Map | Property Map
    Describes an input data source that contains stream data. Required on PUT (CreateOrReplace) requests.
    serialization 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.

    Import

    An existing resource can be imported using its type token, name, and identifier, e.g.

    $ pulumi import azure-native:streamanalytics:Input input8899 /subscriptions/56b5e0a9-b645-407d-99b0-c64f86013e3d/resourceGroups/sjrg8161/providers/Microsoft.StreamAnalytics/streamingjobs/sj6695/inputs/input8899 
    

    To learn more about importing existing cloud resources, see Importing resources.

    Package Details

    Repository
    azure-native-v1 pulumi/pulumi-azure-native
    License
    Apache-2.0
    azure-native-v1 logo
    These are the docs for Azure Native v1. We recommenend using the latest version, Azure Native v2.
    Azure Native v1 v1.104.0 published on Thursday, Jul 6, 2023 by Pulumi