1. Packages
  2. Azure Classic
  3. API Docs
  4. kusto
  5. EventGridDataConnection

We recommend using Azure Native.

Azure v6.22.0 published on Tuesday, Apr 1, 2025 by Pulumi

azure.kusto.EventGridDataConnection

Explore with Pulumi AI

Manages a Kusto (also known as Azure Data Explorer) Event Grid Data Connection

Example Usage

import * as pulumi from "@pulumi/pulumi";
import * as azure from "@pulumi/azure";

const example = new azure.core.ResourceGroup("example", {
    name: "example-resources",
    location: "West Europe",
});
const exampleCluster = new azure.kusto.Cluster("example", {
    name: "examplekustocluster",
    location: example.location,
    resourceGroupName: example.name,
    sku: {
        name: "Standard_D13_v2",
        capacity: 2,
    },
});
const exampleDatabase = new azure.kusto.Database("example", {
    name: "example-kusto-database",
    resourceGroupName: example.name,
    location: example.location,
    clusterName: exampleCluster.name,
    hotCachePeriod: "P7D",
    softDeletePeriod: "P31D",
});
const exampleAccount = new azure.storage.Account("example", {
    name: "storageaccountname",
    resourceGroupName: example.name,
    location: example.location,
    accountTier: "Standard",
    accountReplicationType: "GRS",
});
const exampleEventHubNamespace = new azure.eventhub.EventHubNamespace("example", {
    name: "eventhubnamespace-example",
    location: example.location,
    resourceGroupName: example.name,
    sku: "Standard",
});
const exampleEventHub = new azure.eventhub.EventHub("example", {
    name: "eventhub-example",
    namespaceName: exampleEventHubNamespace.name,
    resourceGroupName: example.name,
    partitionCount: 1,
    messageRetention: 1,
});
const exampleConsumerGroup = new azure.eventhub.ConsumerGroup("example", {
    name: "consumergroup-example",
    namespaceName: exampleEventHubNamespace.name,
    eventhubName: exampleEventHub.name,
    resourceGroupName: example.name,
});
const exampleEventSubscription = new azure.eventgrid.EventSubscription("example", {
    name: "eventgrid-example",
    scope: exampleAccount.id,
    eventhubEndpointId: exampleEventHub.id,
    eventDeliverySchema: "EventGridSchema",
    includedEventTypes: [
        "Microsoft.Storage.BlobCreated",
        "Microsoft.Storage.BlobRenamed",
    ],
    retryPolicy: {
        eventTimeToLive: 144,
        maxDeliveryAttempts: 10,
    },
});
const exampleEventGridDataConnection = new azure.kusto.EventGridDataConnection("example", {
    name: "my-kusto-eventgrid-data-connection",
    resourceGroupName: example.name,
    location: example.location,
    clusterName: exampleCluster.name,
    databaseName: exampleDatabase.name,
    storageAccountId: exampleAccount.id,
    eventhubId: exampleEventHub.id,
    eventhubConsumerGroupName: exampleConsumerGroup.name,
    tableName: "my-table",
    mappingRuleName: "my-table-mapping",
    dataFormat: "JSON",
}, {
    dependsOn: [exampleEventSubscription],
});
Copy
import pulumi
import pulumi_azure as azure

example = azure.core.ResourceGroup("example",
    name="example-resources",
    location="West Europe")
example_cluster = azure.kusto.Cluster("example",
    name="examplekustocluster",
    location=example.location,
    resource_group_name=example.name,
    sku={
        "name": "Standard_D13_v2",
        "capacity": 2,
    })
example_database = azure.kusto.Database("example",
    name="example-kusto-database",
    resource_group_name=example.name,
    location=example.location,
    cluster_name=example_cluster.name,
    hot_cache_period="P7D",
    soft_delete_period="P31D")
example_account = azure.storage.Account("example",
    name="storageaccountname",
    resource_group_name=example.name,
    location=example.location,
    account_tier="Standard",
    account_replication_type="GRS")
example_event_hub_namespace = azure.eventhub.EventHubNamespace("example",
    name="eventhubnamespace-example",
    location=example.location,
    resource_group_name=example.name,
    sku="Standard")
example_event_hub = azure.eventhub.EventHub("example",
    name="eventhub-example",
    namespace_name=example_event_hub_namespace.name,
    resource_group_name=example.name,
    partition_count=1,
    message_retention=1)
example_consumer_group = azure.eventhub.ConsumerGroup("example",
    name="consumergroup-example",
    namespace_name=example_event_hub_namespace.name,
    eventhub_name=example_event_hub.name,
    resource_group_name=example.name)
example_event_subscription = azure.eventgrid.EventSubscription("example",
    name="eventgrid-example",
    scope=example_account.id,
    eventhub_endpoint_id=example_event_hub.id,
    event_delivery_schema="EventGridSchema",
    included_event_types=[
        "Microsoft.Storage.BlobCreated",
        "Microsoft.Storage.BlobRenamed",
    ],
    retry_policy={
        "event_time_to_live": 144,
        "max_delivery_attempts": 10,
    })
example_event_grid_data_connection = azure.kusto.EventGridDataConnection("example",
    name="my-kusto-eventgrid-data-connection",
    resource_group_name=example.name,
    location=example.location,
    cluster_name=example_cluster.name,
    database_name=example_database.name,
    storage_account_id=example_account.id,
    eventhub_id=example_event_hub.id,
    eventhub_consumer_group_name=example_consumer_group.name,
    table_name="my-table",
    mapping_rule_name="my-table-mapping",
    data_format="JSON",
    opts = pulumi.ResourceOptions(depends_on=[example_event_subscription]))
Copy
package main

import (
	"github.com/pulumi/pulumi-azure/sdk/v6/go/azure/core"
	"github.com/pulumi/pulumi-azure/sdk/v6/go/azure/eventgrid"
	"github.com/pulumi/pulumi-azure/sdk/v6/go/azure/eventhub"
	"github.com/pulumi/pulumi-azure/sdk/v6/go/azure/kusto"
	"github.com/pulumi/pulumi-azure/sdk/v6/go/azure/storage"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		example, err := core.NewResourceGroup(ctx, "example", &core.ResourceGroupArgs{
			Name:     pulumi.String("example-resources"),
			Location: pulumi.String("West Europe"),
		})
		if err != nil {
			return err
		}
		exampleCluster, err := kusto.NewCluster(ctx, "example", &kusto.ClusterArgs{
			Name:              pulumi.String("examplekustocluster"),
			Location:          example.Location,
			ResourceGroupName: example.Name,
			Sku: &kusto.ClusterSkuArgs{
				Name:     pulumi.String("Standard_D13_v2"),
				Capacity: pulumi.Int(2),
			},
		})
		if err != nil {
			return err
		}
		exampleDatabase, err := kusto.NewDatabase(ctx, "example", &kusto.DatabaseArgs{
			Name:              pulumi.String("example-kusto-database"),
			ResourceGroupName: example.Name,
			Location:          example.Location,
			ClusterName:       exampleCluster.Name,
			HotCachePeriod:    pulumi.String("P7D"),
			SoftDeletePeriod:  pulumi.String("P31D"),
		})
		if err != nil {
			return err
		}
		exampleAccount, err := storage.NewAccount(ctx, "example", &storage.AccountArgs{
			Name:                   pulumi.String("storageaccountname"),
			ResourceGroupName:      example.Name,
			Location:               example.Location,
			AccountTier:            pulumi.String("Standard"),
			AccountReplicationType: pulumi.String("GRS"),
		})
		if err != nil {
			return err
		}
		exampleEventHubNamespace, err := eventhub.NewEventHubNamespace(ctx, "example", &eventhub.EventHubNamespaceArgs{
			Name:              pulumi.String("eventhubnamespace-example"),
			Location:          example.Location,
			ResourceGroupName: example.Name,
			Sku:               pulumi.String("Standard"),
		})
		if err != nil {
			return err
		}
		exampleEventHub, err := eventhub.NewEventHub(ctx, "example", &eventhub.EventHubArgs{
			Name:              pulumi.String("eventhub-example"),
			NamespaceName:     exampleEventHubNamespace.Name,
			ResourceGroupName: example.Name,
			PartitionCount:    pulumi.Int(1),
			MessageRetention:  pulumi.Int(1),
		})
		if err != nil {
			return err
		}
		exampleConsumerGroup, err := eventhub.NewConsumerGroup(ctx, "example", &eventhub.ConsumerGroupArgs{
			Name:              pulumi.String("consumergroup-example"),
			NamespaceName:     exampleEventHubNamespace.Name,
			EventhubName:      exampleEventHub.Name,
			ResourceGroupName: example.Name,
		})
		if err != nil {
			return err
		}
		exampleEventSubscription, err := eventgrid.NewEventSubscription(ctx, "example", &eventgrid.EventSubscriptionArgs{
			Name:                pulumi.String("eventgrid-example"),
			Scope:               exampleAccount.ID(),
			EventhubEndpointId:  exampleEventHub.ID(),
			EventDeliverySchema: pulumi.String("EventGridSchema"),
			IncludedEventTypes: pulumi.StringArray{
				pulumi.String("Microsoft.Storage.BlobCreated"),
				pulumi.String("Microsoft.Storage.BlobRenamed"),
			},
			RetryPolicy: &eventgrid.EventSubscriptionRetryPolicyArgs{
				EventTimeToLive:     pulumi.Int(144),
				MaxDeliveryAttempts: pulumi.Int(10),
			},
		})
		if err != nil {
			return err
		}
		_, err = kusto.NewEventGridDataConnection(ctx, "example", &kusto.EventGridDataConnectionArgs{
			Name:                      pulumi.String("my-kusto-eventgrid-data-connection"),
			ResourceGroupName:         example.Name,
			Location:                  example.Location,
			ClusterName:               exampleCluster.Name,
			DatabaseName:              exampleDatabase.Name,
			StorageAccountId:          exampleAccount.ID(),
			EventhubId:                exampleEventHub.ID(),
			EventhubConsumerGroupName: exampleConsumerGroup.Name,
			TableName:                 pulumi.String("my-table"),
			MappingRuleName:           pulumi.String("my-table-mapping"),
			DataFormat:                pulumi.String("JSON"),
		}, pulumi.DependsOn([]pulumi.Resource{
			exampleEventSubscription,
		}))
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Azure = Pulumi.Azure;

return await Deployment.RunAsync(() => 
{
    var example = new Azure.Core.ResourceGroup("example", new()
    {
        Name = "example-resources",
        Location = "West Europe",
    });

    var exampleCluster = new Azure.Kusto.Cluster("example", new()
    {
        Name = "examplekustocluster",
        Location = example.Location,
        ResourceGroupName = example.Name,
        Sku = new Azure.Kusto.Inputs.ClusterSkuArgs
        {
            Name = "Standard_D13_v2",
            Capacity = 2,
        },
    });

    var exampleDatabase = new Azure.Kusto.Database("example", new()
    {
        Name = "example-kusto-database",
        ResourceGroupName = example.Name,
        Location = example.Location,
        ClusterName = exampleCluster.Name,
        HotCachePeriod = "P7D",
        SoftDeletePeriod = "P31D",
    });

    var exampleAccount = new Azure.Storage.Account("example", new()
    {
        Name = "storageaccountname",
        ResourceGroupName = example.Name,
        Location = example.Location,
        AccountTier = "Standard",
        AccountReplicationType = "GRS",
    });

    var exampleEventHubNamespace = new Azure.EventHub.EventHubNamespace("example", new()
    {
        Name = "eventhubnamespace-example",
        Location = example.Location,
        ResourceGroupName = example.Name,
        Sku = "Standard",
    });

    var exampleEventHub = new Azure.EventHub.EventHub("example", new()
    {
        Name = "eventhub-example",
        NamespaceName = exampleEventHubNamespace.Name,
        ResourceGroupName = example.Name,
        PartitionCount = 1,
        MessageRetention = 1,
    });

    var exampleConsumerGroup = new Azure.EventHub.ConsumerGroup("example", new()
    {
        Name = "consumergroup-example",
        NamespaceName = exampleEventHubNamespace.Name,
        EventhubName = exampleEventHub.Name,
        ResourceGroupName = example.Name,
    });

    var exampleEventSubscription = new Azure.EventGrid.EventSubscription("example", new()
    {
        Name = "eventgrid-example",
        Scope = exampleAccount.Id,
        EventhubEndpointId = exampleEventHub.Id,
        EventDeliverySchema = "EventGridSchema",
        IncludedEventTypes = new[]
        {
            "Microsoft.Storage.BlobCreated",
            "Microsoft.Storage.BlobRenamed",
        },
        RetryPolicy = new Azure.EventGrid.Inputs.EventSubscriptionRetryPolicyArgs
        {
            EventTimeToLive = 144,
            MaxDeliveryAttempts = 10,
        },
    });

    var exampleEventGridDataConnection = new Azure.Kusto.EventGridDataConnection("example", new()
    {
        Name = "my-kusto-eventgrid-data-connection",
        ResourceGroupName = example.Name,
        Location = example.Location,
        ClusterName = exampleCluster.Name,
        DatabaseName = exampleDatabase.Name,
        StorageAccountId = exampleAccount.Id,
        EventhubId = exampleEventHub.Id,
        EventhubConsumerGroupName = exampleConsumerGroup.Name,
        TableName = "my-table",
        MappingRuleName = "my-table-mapping",
        DataFormat = "JSON",
    }, new CustomResourceOptions
    {
        DependsOn =
        {
            exampleEventSubscription,
        },
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azure.core.ResourceGroup;
import com.pulumi.azure.core.ResourceGroupArgs;
import com.pulumi.azure.kusto.Cluster;
import com.pulumi.azure.kusto.ClusterArgs;
import com.pulumi.azure.kusto.inputs.ClusterSkuArgs;
import com.pulumi.azure.kusto.Database;
import com.pulumi.azure.kusto.DatabaseArgs;
import com.pulumi.azure.storage.Account;
import com.pulumi.azure.storage.AccountArgs;
import com.pulumi.azure.eventhub.EventHubNamespace;
import com.pulumi.azure.eventhub.EventHubNamespaceArgs;
import com.pulumi.azure.eventhub.EventHub;
import com.pulumi.azure.eventhub.EventHubArgs;
import com.pulumi.azure.eventhub.ConsumerGroup;
import com.pulumi.azure.eventhub.ConsumerGroupArgs;
import com.pulumi.azure.eventgrid.EventSubscription;
import com.pulumi.azure.eventgrid.EventSubscriptionArgs;
import com.pulumi.azure.eventgrid.inputs.EventSubscriptionRetryPolicyArgs;
import com.pulumi.azure.kusto.EventGridDataConnection;
import com.pulumi.azure.kusto.EventGridDataConnectionArgs;
import com.pulumi.resources.CustomResourceOptions;
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 example = new ResourceGroup("example", ResourceGroupArgs.builder()
            .name("example-resources")
            .location("West Europe")
            .build());

        var exampleCluster = new Cluster("exampleCluster", ClusterArgs.builder()
            .name("examplekustocluster")
            .location(example.location())
            .resourceGroupName(example.name())
            .sku(ClusterSkuArgs.builder()
                .name("Standard_D13_v2")
                .capacity(2)
                .build())
            .build());

        var exampleDatabase = new Database("exampleDatabase", DatabaseArgs.builder()
            .name("example-kusto-database")
            .resourceGroupName(example.name())
            .location(example.location())
            .clusterName(exampleCluster.name())
            .hotCachePeriod("P7D")
            .softDeletePeriod("P31D")
            .build());

        var exampleAccount = new Account("exampleAccount", AccountArgs.builder()
            .name("storageaccountname")
            .resourceGroupName(example.name())
            .location(example.location())
            .accountTier("Standard")
            .accountReplicationType("GRS")
            .build());

        var exampleEventHubNamespace = new EventHubNamespace("exampleEventHubNamespace", EventHubNamespaceArgs.builder()
            .name("eventhubnamespace-example")
            .location(example.location())
            .resourceGroupName(example.name())
            .sku("Standard")
            .build());

        var exampleEventHub = new EventHub("exampleEventHub", EventHubArgs.builder()
            .name("eventhub-example")
            .namespaceName(exampleEventHubNamespace.name())
            .resourceGroupName(example.name())
            .partitionCount(1)
            .messageRetention(1)
            .build());

        var exampleConsumerGroup = new ConsumerGroup("exampleConsumerGroup", ConsumerGroupArgs.builder()
            .name("consumergroup-example")
            .namespaceName(exampleEventHubNamespace.name())
            .eventhubName(exampleEventHub.name())
            .resourceGroupName(example.name())
            .build());

        var exampleEventSubscription = new EventSubscription("exampleEventSubscription", EventSubscriptionArgs.builder()
            .name("eventgrid-example")
            .scope(exampleAccount.id())
            .eventhubEndpointId(exampleEventHub.id())
            .eventDeliverySchema("EventGridSchema")
            .includedEventTypes(            
                "Microsoft.Storage.BlobCreated",
                "Microsoft.Storage.BlobRenamed")
            .retryPolicy(EventSubscriptionRetryPolicyArgs.builder()
                .eventTimeToLive(144)
                .maxDeliveryAttempts(10)
                .build())
            .build());

        var exampleEventGridDataConnection = new EventGridDataConnection("exampleEventGridDataConnection", EventGridDataConnectionArgs.builder()
            .name("my-kusto-eventgrid-data-connection")
            .resourceGroupName(example.name())
            .location(example.location())
            .clusterName(exampleCluster.name())
            .databaseName(exampleDatabase.name())
            .storageAccountId(exampleAccount.id())
            .eventhubId(exampleEventHub.id())
            .eventhubConsumerGroupName(exampleConsumerGroup.name())
            .tableName("my-table")
            .mappingRuleName("my-table-mapping")
            .dataFormat("JSON")
            .build(), CustomResourceOptions.builder()
                .dependsOn(exampleEventSubscription)
                .build());

    }
}
Copy
resources:
  example:
    type: azure:core:ResourceGroup
    properties:
      name: example-resources
      location: West Europe
  exampleCluster:
    type: azure:kusto:Cluster
    name: example
    properties:
      name: examplekustocluster
      location: ${example.location}
      resourceGroupName: ${example.name}
      sku:
        name: Standard_D13_v2
        capacity: 2
  exampleDatabase:
    type: azure:kusto:Database
    name: example
    properties:
      name: example-kusto-database
      resourceGroupName: ${example.name}
      location: ${example.location}
      clusterName: ${exampleCluster.name}
      hotCachePeriod: P7D
      softDeletePeriod: P31D
  exampleAccount:
    type: azure:storage:Account
    name: example
    properties:
      name: storageaccountname
      resourceGroupName: ${example.name}
      location: ${example.location}
      accountTier: Standard
      accountReplicationType: GRS
  exampleEventHubNamespace:
    type: azure:eventhub:EventHubNamespace
    name: example
    properties:
      name: eventhubnamespace-example
      location: ${example.location}
      resourceGroupName: ${example.name}
      sku: Standard
  exampleEventHub:
    type: azure:eventhub:EventHub
    name: example
    properties:
      name: eventhub-example
      namespaceName: ${exampleEventHubNamespace.name}
      resourceGroupName: ${example.name}
      partitionCount: 1
      messageRetention: 1
  exampleConsumerGroup:
    type: azure:eventhub:ConsumerGroup
    name: example
    properties:
      name: consumergroup-example
      namespaceName: ${exampleEventHubNamespace.name}
      eventhubName: ${exampleEventHub.name}
      resourceGroupName: ${example.name}
  exampleEventSubscription:
    type: azure:eventgrid:EventSubscription
    name: example
    properties:
      name: eventgrid-example
      scope: ${exampleAccount.id}
      eventhubEndpointId: ${exampleEventHub.id}
      eventDeliverySchema: EventGridSchema
      includedEventTypes:
        - Microsoft.Storage.BlobCreated
        - Microsoft.Storage.BlobRenamed
      retryPolicy:
        eventTimeToLive: 144
        maxDeliveryAttempts: 10
  exampleEventGridDataConnection:
    type: azure:kusto:EventGridDataConnection
    name: example
    properties:
      name: my-kusto-eventgrid-data-connection
      resourceGroupName: ${example.name}
      location: ${example.location}
      clusterName: ${exampleCluster.name}
      databaseName: ${exampleDatabase.name}
      storageAccountId: ${exampleAccount.id}
      eventhubId: ${exampleEventHub.id}
      eventhubConsumerGroupName: ${exampleConsumerGroup.name}
      tableName: my-table
      mappingRuleName: my-table-mapping
      dataFormat: JSON
    options:
      dependsOn:
        - ${exampleEventSubscription}
Copy

Create EventGridDataConnection Resource

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

Constructor syntax

new EventGridDataConnection(name: string, args: EventGridDataConnectionArgs, opts?: CustomResourceOptions);
@overload
def EventGridDataConnection(resource_name: str,
                            args: EventGridDataConnectionArgs,
                            opts: Optional[ResourceOptions] = None)

@overload
def EventGridDataConnection(resource_name: str,
                            opts: Optional[ResourceOptions] = None,
                            eventhub_consumer_group_name: Optional[str] = None,
                            cluster_name: Optional[str] = None,
                            storage_account_id: Optional[str] = None,
                            database_name: Optional[str] = None,
                            resource_group_name: Optional[str] = None,
                            eventhub_id: Optional[str] = None,
                            database_routing_type: Optional[str] = None,
                            eventgrid_resource_id: Optional[str] = None,
                            eventgrid_event_subscription_id: Optional[str] = None,
                            location: Optional[str] = None,
                            managed_identity_id: Optional[str] = None,
                            managed_identity_resource_id: Optional[str] = None,
                            mapping_rule_name: Optional[str] = None,
                            name: Optional[str] = None,
                            blob_storage_event_type: Optional[str] = None,
                            skip_first_record: Optional[bool] = None,
                            data_format: Optional[str] = None,
                            table_name: Optional[str] = None)
func NewEventGridDataConnection(ctx *Context, name string, args EventGridDataConnectionArgs, opts ...ResourceOption) (*EventGridDataConnection, error)
public EventGridDataConnection(string name, EventGridDataConnectionArgs args, CustomResourceOptions? opts = null)
public EventGridDataConnection(String name, EventGridDataConnectionArgs args)
public EventGridDataConnection(String name, EventGridDataConnectionArgs args, CustomResourceOptions options)
type: azure:kusto:EventGridDataConnection
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. EventGridDataConnectionArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. EventGridDataConnectionArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. EventGridDataConnectionArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. EventGridDataConnectionArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. EventGridDataConnectionArgs
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 eventGridDataConnectionResource = new Azure.Kusto.EventGridDataConnection("eventGridDataConnectionResource", new()
{
    EventhubConsumerGroupName = "string",
    ClusterName = "string",
    StorageAccountId = "string",
    DatabaseName = "string",
    ResourceGroupName = "string",
    EventhubId = "string",
    DatabaseRoutingType = "string",
    EventgridEventSubscriptionId = "string",
    Location = "string",
    ManagedIdentityId = "string",
    MappingRuleName = "string",
    Name = "string",
    BlobStorageEventType = "string",
    SkipFirstRecord = false,
    DataFormat = "string",
    TableName = "string",
});
Copy
example, err := kusto.NewEventGridDataConnection(ctx, "eventGridDataConnectionResource", &kusto.EventGridDataConnectionArgs{
	EventhubConsumerGroupName:    pulumi.String("string"),
	ClusterName:                  pulumi.String("string"),
	StorageAccountId:             pulumi.String("string"),
	DatabaseName:                 pulumi.String("string"),
	ResourceGroupName:            pulumi.String("string"),
	EventhubId:                   pulumi.String("string"),
	DatabaseRoutingType:          pulumi.String("string"),
	EventgridEventSubscriptionId: pulumi.String("string"),
	Location:                     pulumi.String("string"),
	ManagedIdentityId:            pulumi.String("string"),
	MappingRuleName:              pulumi.String("string"),
	Name:                         pulumi.String("string"),
	BlobStorageEventType:         pulumi.String("string"),
	SkipFirstRecord:              pulumi.Bool(false),
	DataFormat:                   pulumi.String("string"),
	TableName:                    pulumi.String("string"),
})
Copy
var eventGridDataConnectionResource = new EventGridDataConnection("eventGridDataConnectionResource", EventGridDataConnectionArgs.builder()
    .eventhubConsumerGroupName("string")
    .clusterName("string")
    .storageAccountId("string")
    .databaseName("string")
    .resourceGroupName("string")
    .eventhubId("string")
    .databaseRoutingType("string")
    .eventgridEventSubscriptionId("string")
    .location("string")
    .managedIdentityId("string")
    .mappingRuleName("string")
    .name("string")
    .blobStorageEventType("string")
    .skipFirstRecord(false)
    .dataFormat("string")
    .tableName("string")
    .build());
Copy
event_grid_data_connection_resource = azure.kusto.EventGridDataConnection("eventGridDataConnectionResource",
    eventhub_consumer_group_name="string",
    cluster_name="string",
    storage_account_id="string",
    database_name="string",
    resource_group_name="string",
    eventhub_id="string",
    database_routing_type="string",
    eventgrid_event_subscription_id="string",
    location="string",
    managed_identity_id="string",
    mapping_rule_name="string",
    name="string",
    blob_storage_event_type="string",
    skip_first_record=False,
    data_format="string",
    table_name="string")
Copy
const eventGridDataConnectionResource = new azure.kusto.EventGridDataConnection("eventGridDataConnectionResource", {
    eventhubConsumerGroupName: "string",
    clusterName: "string",
    storageAccountId: "string",
    databaseName: "string",
    resourceGroupName: "string",
    eventhubId: "string",
    databaseRoutingType: "string",
    eventgridEventSubscriptionId: "string",
    location: "string",
    managedIdentityId: "string",
    mappingRuleName: "string",
    name: "string",
    blobStorageEventType: "string",
    skipFirstRecord: false,
    dataFormat: "string",
    tableName: "string",
});
Copy
type: azure:kusto:EventGridDataConnection
properties:
    blobStorageEventType: string
    clusterName: string
    dataFormat: string
    databaseName: string
    databaseRoutingType: string
    eventgridEventSubscriptionId: string
    eventhubConsumerGroupName: string
    eventhubId: string
    location: string
    managedIdentityId: string
    mappingRuleName: string
    name: string
    resourceGroupName: string
    skipFirstRecord: false
    storageAccountId: string
    tableName: string
Copy

EventGridDataConnection Resource Properties

To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

Inputs

In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

The EventGridDataConnection resource accepts the following input properties:

ClusterName
This property is required.
Changes to this property will trigger replacement.
string
Specifies the name of the Kusto Cluster this data connection will be added to. Changing this forces a new resource to be created.
DatabaseName
This property is required.
Changes to this property will trigger replacement.
string
Specifies the name of the Kusto Database this data connection will be added to. Changing this forces a new resource to be created.
EventhubConsumerGroupName
This property is required.
Changes to this property will trigger replacement.
string
Specifies the Event Hub consumer group this data connection will use for ingestion. Changing this forces a new resource to be created.
EventhubId
This property is required.
Changes to this property will trigger replacement.
string
Specifies the resource id of the Event Hub this data connection will use for ingestion. Changing this forces a new resource to be created.
ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
Specifies the Resource Group where the Kusto Database should exist. Changing this forces a new resource to be created.
StorageAccountId
This property is required.
Changes to this property will trigger replacement.
string
Specifies the resource id of the Storage Account this data connection will use for ingestion. Changing this forces a new resource to be created.
BlobStorageEventType string
Specifies the blob storage event type that needs to be processed. Possible Values are Microsoft.Storage.BlobCreated and Microsoft.Storage.BlobRenamed. Defaults to Microsoft.Storage.BlobCreated.
DataFormat string
Specifies the data format of the EventHub messages. Allowed values: APACHEAVRO, AVRO, CSV, JSON, MULTIJSON, ORC, PARQUET, PSV, RAW, SCSV, SINGLEJSON, SOHSV, TSV, TSVE, TXT and W3CLOGFILE.
DatabaseRoutingType Changes to this property will trigger replacement. string
Indication for database routing information from the data connection, by default only database routing information is allowed. Allowed values: Single, Multi. Changing this forces a new resource to be created. Defaults to Single.
EventgridEventSubscriptionId string
The resource ID of the event grid that is subscribed to the storage account events.
EventgridResourceId string

Deprecated: eventgrid_resource_id has been deprecated in favour of the eventgrid_event_subscription_id property and will be removed in v5.0 of the AzureRM Provider.

Location Changes to this property will trigger replacement. string
The location where the Kusto Database should be created. Changing this forces a new resource to be created.
ManagedIdentityId string
Empty for non-managed identity based data connection. For system assigned identity, provide cluster resource Id. For user assigned identity (UAI) provide the UAI resource Id.
ManagedIdentityResourceId string

Deprecated: managed_identity_resource_id has been deprecated in favour of the managed_identity_id property and will be removed in v5.0 of the AzureRM Provider.

MappingRuleName string
Specifies the mapping rule used for the message ingestion. Mapping rule must exist before resource is created.
Name Changes to this property will trigger replacement. string
The name of the Kusto Event Grid Data Connection to create. Changing this forces a new resource to be created.
SkipFirstRecord bool
is the first record of every file ignored? Defaults to false.
TableName string
Specifies the target table name used for the message ingestion. Table must exist before resource is created.
ClusterName
This property is required.
Changes to this property will trigger replacement.
string
Specifies the name of the Kusto Cluster this data connection will be added to. Changing this forces a new resource to be created.
DatabaseName
This property is required.
Changes to this property will trigger replacement.
string
Specifies the name of the Kusto Database this data connection will be added to. Changing this forces a new resource to be created.
EventhubConsumerGroupName
This property is required.
Changes to this property will trigger replacement.
string
Specifies the Event Hub consumer group this data connection will use for ingestion. Changing this forces a new resource to be created.
EventhubId
This property is required.
Changes to this property will trigger replacement.
string
Specifies the resource id of the Event Hub this data connection will use for ingestion. Changing this forces a new resource to be created.
ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
Specifies the Resource Group where the Kusto Database should exist. Changing this forces a new resource to be created.
StorageAccountId
This property is required.
Changes to this property will trigger replacement.
string
Specifies the resource id of the Storage Account this data connection will use for ingestion. Changing this forces a new resource to be created.
BlobStorageEventType string
Specifies the blob storage event type that needs to be processed. Possible Values are Microsoft.Storage.BlobCreated and Microsoft.Storage.BlobRenamed. Defaults to Microsoft.Storage.BlobCreated.
DataFormat string
Specifies the data format of the EventHub messages. Allowed values: APACHEAVRO, AVRO, CSV, JSON, MULTIJSON, ORC, PARQUET, PSV, RAW, SCSV, SINGLEJSON, SOHSV, TSV, TSVE, TXT and W3CLOGFILE.
DatabaseRoutingType Changes to this property will trigger replacement. string
Indication for database routing information from the data connection, by default only database routing information is allowed. Allowed values: Single, Multi. Changing this forces a new resource to be created. Defaults to Single.
EventgridEventSubscriptionId string
The resource ID of the event grid that is subscribed to the storage account events.
EventgridResourceId string

Deprecated: eventgrid_resource_id has been deprecated in favour of the eventgrid_event_subscription_id property and will be removed in v5.0 of the AzureRM Provider.

Location Changes to this property will trigger replacement. string
The location where the Kusto Database should be created. Changing this forces a new resource to be created.
ManagedIdentityId string
Empty for non-managed identity based data connection. For system assigned identity, provide cluster resource Id. For user assigned identity (UAI) provide the UAI resource Id.
ManagedIdentityResourceId string

Deprecated: managed_identity_resource_id has been deprecated in favour of the managed_identity_id property and will be removed in v5.0 of the AzureRM Provider.

MappingRuleName string
Specifies the mapping rule used for the message ingestion. Mapping rule must exist before resource is created.
Name Changes to this property will trigger replacement. string
The name of the Kusto Event Grid Data Connection to create. Changing this forces a new resource to be created.
SkipFirstRecord bool
is the first record of every file ignored? Defaults to false.
TableName string
Specifies the target table name used for the message ingestion. Table must exist before resource is created.
clusterName
This property is required.
Changes to this property will trigger replacement.
String
Specifies the name of the Kusto Cluster this data connection will be added to. Changing this forces a new resource to be created.
databaseName
This property is required.
Changes to this property will trigger replacement.
String
Specifies the name of the Kusto Database this data connection will be added to. Changing this forces a new resource to be created.
eventhubConsumerGroupName
This property is required.
Changes to this property will trigger replacement.
String
Specifies the Event Hub consumer group this data connection will use for ingestion. Changing this forces a new resource to be created.
eventhubId
This property is required.
Changes to this property will trigger replacement.
String
Specifies the resource id of the Event Hub this data connection will use for ingestion. Changing this forces a new resource to be created.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
Specifies the Resource Group where the Kusto Database should exist. Changing this forces a new resource to be created.
storageAccountId
This property is required.
Changes to this property will trigger replacement.
String
Specifies the resource id of the Storage Account this data connection will use for ingestion. Changing this forces a new resource to be created.
blobStorageEventType String
Specifies the blob storage event type that needs to be processed. Possible Values are Microsoft.Storage.BlobCreated and Microsoft.Storage.BlobRenamed. Defaults to Microsoft.Storage.BlobCreated.
dataFormat String
Specifies the data format of the EventHub messages. Allowed values: APACHEAVRO, AVRO, CSV, JSON, MULTIJSON, ORC, PARQUET, PSV, RAW, SCSV, SINGLEJSON, SOHSV, TSV, TSVE, TXT and W3CLOGFILE.
databaseRoutingType Changes to this property will trigger replacement. String
Indication for database routing information from the data connection, by default only database routing information is allowed. Allowed values: Single, Multi. Changing this forces a new resource to be created. Defaults to Single.
eventgridEventSubscriptionId String
The resource ID of the event grid that is subscribed to the storage account events.
eventgridResourceId String

Deprecated: eventgrid_resource_id has been deprecated in favour of the eventgrid_event_subscription_id property and will be removed in v5.0 of the AzureRM Provider.

location Changes to this property will trigger replacement. String
The location where the Kusto Database should be created. Changing this forces a new resource to be created.
managedIdentityId String
Empty for non-managed identity based data connection. For system assigned identity, provide cluster resource Id. For user assigned identity (UAI) provide the UAI resource Id.
managedIdentityResourceId String

Deprecated: managed_identity_resource_id has been deprecated in favour of the managed_identity_id property and will be removed in v5.0 of the AzureRM Provider.

mappingRuleName String
Specifies the mapping rule used for the message ingestion. Mapping rule must exist before resource is created.
name Changes to this property will trigger replacement. String
The name of the Kusto Event Grid Data Connection to create. Changing this forces a new resource to be created.
skipFirstRecord Boolean
is the first record of every file ignored? Defaults to false.
tableName String
Specifies the target table name used for the message ingestion. Table must exist before resource is created.
clusterName
This property is required.
Changes to this property will trigger replacement.
string
Specifies the name of the Kusto Cluster this data connection will be added to. Changing this forces a new resource to be created.
databaseName
This property is required.
Changes to this property will trigger replacement.
string
Specifies the name of the Kusto Database this data connection will be added to. Changing this forces a new resource to be created.
eventhubConsumerGroupName
This property is required.
Changes to this property will trigger replacement.
string
Specifies the Event Hub consumer group this data connection will use for ingestion. Changing this forces a new resource to be created.
eventhubId
This property is required.
Changes to this property will trigger replacement.
string
Specifies the resource id of the Event Hub this data connection will use for ingestion. Changing this forces a new resource to be created.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
Specifies the Resource Group where the Kusto Database should exist. Changing this forces a new resource to be created.
storageAccountId
This property is required.
Changes to this property will trigger replacement.
string
Specifies the resource id of the Storage Account this data connection will use for ingestion. Changing this forces a new resource to be created.
blobStorageEventType string
Specifies the blob storage event type that needs to be processed. Possible Values are Microsoft.Storage.BlobCreated and Microsoft.Storage.BlobRenamed. Defaults to Microsoft.Storage.BlobCreated.
dataFormat string
Specifies the data format of the EventHub messages. Allowed values: APACHEAVRO, AVRO, CSV, JSON, MULTIJSON, ORC, PARQUET, PSV, RAW, SCSV, SINGLEJSON, SOHSV, TSV, TSVE, TXT and W3CLOGFILE.
databaseRoutingType Changes to this property will trigger replacement. string
Indication for database routing information from the data connection, by default only database routing information is allowed. Allowed values: Single, Multi. Changing this forces a new resource to be created. Defaults to Single.
eventgridEventSubscriptionId string
The resource ID of the event grid that is subscribed to the storage account events.
eventgridResourceId string

Deprecated: eventgrid_resource_id has been deprecated in favour of the eventgrid_event_subscription_id property and will be removed in v5.0 of the AzureRM Provider.

location Changes to this property will trigger replacement. string
The location where the Kusto Database should be created. Changing this forces a new resource to be created.
managedIdentityId string
Empty for non-managed identity based data connection. For system assigned identity, provide cluster resource Id. For user assigned identity (UAI) provide the UAI resource Id.
managedIdentityResourceId string

Deprecated: managed_identity_resource_id has been deprecated in favour of the managed_identity_id property and will be removed in v5.0 of the AzureRM Provider.

mappingRuleName string
Specifies the mapping rule used for the message ingestion. Mapping rule must exist before resource is created.
name Changes to this property will trigger replacement. string
The name of the Kusto Event Grid Data Connection to create. Changing this forces a new resource to be created.
skipFirstRecord boolean
is the first record of every file ignored? Defaults to false.
tableName string
Specifies the target table name used for the message ingestion. Table must exist before resource is created.
cluster_name
This property is required.
Changes to this property will trigger replacement.
str
Specifies the name of the Kusto Cluster this data connection will be added to. Changing this forces a new resource to be created.
database_name
This property is required.
Changes to this property will trigger replacement.
str
Specifies the name of the Kusto Database this data connection will be added to. Changing this forces a new resource to be created.
eventhub_consumer_group_name
This property is required.
Changes to this property will trigger replacement.
str
Specifies the Event Hub consumer group this data connection will use for ingestion. Changing this forces a new resource to be created.
eventhub_id
This property is required.
Changes to this property will trigger replacement.
str
Specifies the resource id of the Event Hub this data connection will use for ingestion. Changing this forces a new resource to be created.
resource_group_name
This property is required.
Changes to this property will trigger replacement.
str
Specifies the Resource Group where the Kusto Database should exist. Changing this forces a new resource to be created.
storage_account_id
This property is required.
Changes to this property will trigger replacement.
str
Specifies the resource id of the Storage Account this data connection will use for ingestion. Changing this forces a new resource to be created.
blob_storage_event_type str
Specifies the blob storage event type that needs to be processed. Possible Values are Microsoft.Storage.BlobCreated and Microsoft.Storage.BlobRenamed. Defaults to Microsoft.Storage.BlobCreated.
data_format str
Specifies the data format of the EventHub messages. Allowed values: APACHEAVRO, AVRO, CSV, JSON, MULTIJSON, ORC, PARQUET, PSV, RAW, SCSV, SINGLEJSON, SOHSV, TSV, TSVE, TXT and W3CLOGFILE.
database_routing_type Changes to this property will trigger replacement. str
Indication for database routing information from the data connection, by default only database routing information is allowed. Allowed values: Single, Multi. Changing this forces a new resource to be created. Defaults to Single.
eventgrid_event_subscription_id str
The resource ID of the event grid that is subscribed to the storage account events.
eventgrid_resource_id str

Deprecated: eventgrid_resource_id has been deprecated in favour of the eventgrid_event_subscription_id property and will be removed in v5.0 of the AzureRM Provider.

location Changes to this property will trigger replacement. str
The location where the Kusto Database should be created. Changing this forces a new resource to be created.
managed_identity_id str
Empty for non-managed identity based data connection. For system assigned identity, provide cluster resource Id. For user assigned identity (UAI) provide the UAI resource Id.
managed_identity_resource_id str

Deprecated: managed_identity_resource_id has been deprecated in favour of the managed_identity_id property and will be removed in v5.0 of the AzureRM Provider.

mapping_rule_name str
Specifies the mapping rule used for the message ingestion. Mapping rule must exist before resource is created.
name Changes to this property will trigger replacement. str
The name of the Kusto Event Grid Data Connection to create. Changing this forces a new resource to be created.
skip_first_record bool
is the first record of every file ignored? Defaults to false.
table_name str
Specifies the target table name used for the message ingestion. Table must exist before resource is created.
clusterName
This property is required.
Changes to this property will trigger replacement.
String
Specifies the name of the Kusto Cluster this data connection will be added to. Changing this forces a new resource to be created.
databaseName
This property is required.
Changes to this property will trigger replacement.
String
Specifies the name of the Kusto Database this data connection will be added to. Changing this forces a new resource to be created.
eventhubConsumerGroupName
This property is required.
Changes to this property will trigger replacement.
String
Specifies the Event Hub consumer group this data connection will use for ingestion. Changing this forces a new resource to be created.
eventhubId
This property is required.
Changes to this property will trigger replacement.
String
Specifies the resource id of the Event Hub this data connection will use for ingestion. Changing this forces a new resource to be created.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
Specifies the Resource Group where the Kusto Database should exist. Changing this forces a new resource to be created.
storageAccountId
This property is required.
Changes to this property will trigger replacement.
String
Specifies the resource id of the Storage Account this data connection will use for ingestion. Changing this forces a new resource to be created.
blobStorageEventType String
Specifies the blob storage event type that needs to be processed. Possible Values are Microsoft.Storage.BlobCreated and Microsoft.Storage.BlobRenamed. Defaults to Microsoft.Storage.BlobCreated.
dataFormat String
Specifies the data format of the EventHub messages. Allowed values: APACHEAVRO, AVRO, CSV, JSON, MULTIJSON, ORC, PARQUET, PSV, RAW, SCSV, SINGLEJSON, SOHSV, TSV, TSVE, TXT and W3CLOGFILE.
databaseRoutingType Changes to this property will trigger replacement. String
Indication for database routing information from the data connection, by default only database routing information is allowed. Allowed values: Single, Multi. Changing this forces a new resource to be created. Defaults to Single.
eventgridEventSubscriptionId String
The resource ID of the event grid that is subscribed to the storage account events.
eventgridResourceId String

Deprecated: eventgrid_resource_id has been deprecated in favour of the eventgrid_event_subscription_id property and will be removed in v5.0 of the AzureRM Provider.

location Changes to this property will trigger replacement. String
The location where the Kusto Database should be created. Changing this forces a new resource to be created.
managedIdentityId String
Empty for non-managed identity based data connection. For system assigned identity, provide cluster resource Id. For user assigned identity (UAI) provide the UAI resource Id.
managedIdentityResourceId String

Deprecated: managed_identity_resource_id has been deprecated in favour of the managed_identity_id property and will be removed in v5.0 of the AzureRM Provider.

mappingRuleName String
Specifies the mapping rule used for the message ingestion. Mapping rule must exist before resource is created.
name Changes to this property will trigger replacement. String
The name of the Kusto Event Grid Data Connection to create. Changing this forces a new resource to be created.
skipFirstRecord Boolean
is the first record of every file ignored? Defaults to false.
tableName String
Specifies the target table name used for the message ingestion. Table must exist before resource is created.

Outputs

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

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

Look up Existing EventGridDataConnection Resource

Get an existing EventGridDataConnection resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

public static get(name: string, id: Input<ID>, state?: EventGridDataConnectionState, opts?: CustomResourceOptions): EventGridDataConnection
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        blob_storage_event_type: Optional[str] = None,
        cluster_name: Optional[str] = None,
        data_format: Optional[str] = None,
        database_name: Optional[str] = None,
        database_routing_type: Optional[str] = None,
        eventgrid_event_subscription_id: Optional[str] = None,
        eventgrid_resource_id: Optional[str] = None,
        eventhub_consumer_group_name: Optional[str] = None,
        eventhub_id: Optional[str] = None,
        location: Optional[str] = None,
        managed_identity_id: Optional[str] = None,
        managed_identity_resource_id: Optional[str] = None,
        mapping_rule_name: Optional[str] = None,
        name: Optional[str] = None,
        resource_group_name: Optional[str] = None,
        skip_first_record: Optional[bool] = None,
        storage_account_id: Optional[str] = None,
        table_name: Optional[str] = None) -> EventGridDataConnection
func GetEventGridDataConnection(ctx *Context, name string, id IDInput, state *EventGridDataConnectionState, opts ...ResourceOption) (*EventGridDataConnection, error)
public static EventGridDataConnection Get(string name, Input<string> id, EventGridDataConnectionState? state, CustomResourceOptions? opts = null)
public static EventGridDataConnection get(String name, Output<String> id, EventGridDataConnectionState state, CustomResourceOptions options)
resources:  _:    type: azure:kusto:EventGridDataConnection    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
resource_name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
The following state arguments are supported:
BlobStorageEventType string
Specifies the blob storage event type that needs to be processed. Possible Values are Microsoft.Storage.BlobCreated and Microsoft.Storage.BlobRenamed. Defaults to Microsoft.Storage.BlobCreated.
ClusterName Changes to this property will trigger replacement. string
Specifies the name of the Kusto Cluster this data connection will be added to. Changing this forces a new resource to be created.
DataFormat string
Specifies the data format of the EventHub messages. Allowed values: APACHEAVRO, AVRO, CSV, JSON, MULTIJSON, ORC, PARQUET, PSV, RAW, SCSV, SINGLEJSON, SOHSV, TSV, TSVE, TXT and W3CLOGFILE.
DatabaseName Changes to this property will trigger replacement. string
Specifies the name of the Kusto Database this data connection will be added to. Changing this forces a new resource to be created.
DatabaseRoutingType Changes to this property will trigger replacement. string
Indication for database routing information from the data connection, by default only database routing information is allowed. Allowed values: Single, Multi. Changing this forces a new resource to be created. Defaults to Single.
EventgridEventSubscriptionId string
The resource ID of the event grid that is subscribed to the storage account events.
EventgridResourceId string

Deprecated: eventgrid_resource_id has been deprecated in favour of the eventgrid_event_subscription_id property and will be removed in v5.0 of the AzureRM Provider.

EventhubConsumerGroupName Changes to this property will trigger replacement. string
Specifies the Event Hub consumer group this data connection will use for ingestion. Changing this forces a new resource to be created.
EventhubId Changes to this property will trigger replacement. string
Specifies the resource id of the Event Hub this data connection will use for ingestion. Changing this forces a new resource to be created.
Location Changes to this property will trigger replacement. string
The location where the Kusto Database should be created. Changing this forces a new resource to be created.
ManagedIdentityId string
Empty for non-managed identity based data connection. For system assigned identity, provide cluster resource Id. For user assigned identity (UAI) provide the UAI resource Id.
ManagedIdentityResourceId string

Deprecated: managed_identity_resource_id has been deprecated in favour of the managed_identity_id property and will be removed in v5.0 of the AzureRM Provider.

MappingRuleName string
Specifies the mapping rule used for the message ingestion. Mapping rule must exist before resource is created.
Name Changes to this property will trigger replacement. string
The name of the Kusto Event Grid Data Connection to create. Changing this forces a new resource to be created.
ResourceGroupName Changes to this property will trigger replacement. string
Specifies the Resource Group where the Kusto Database should exist. Changing this forces a new resource to be created.
SkipFirstRecord bool
is the first record of every file ignored? Defaults to false.
StorageAccountId Changes to this property will trigger replacement. string
Specifies the resource id of the Storage Account this data connection will use for ingestion. Changing this forces a new resource to be created.
TableName string
Specifies the target table name used for the message ingestion. Table must exist before resource is created.
BlobStorageEventType string
Specifies the blob storage event type that needs to be processed. Possible Values are Microsoft.Storage.BlobCreated and Microsoft.Storage.BlobRenamed. Defaults to Microsoft.Storage.BlobCreated.
ClusterName Changes to this property will trigger replacement. string
Specifies the name of the Kusto Cluster this data connection will be added to. Changing this forces a new resource to be created.
DataFormat string
Specifies the data format of the EventHub messages. Allowed values: APACHEAVRO, AVRO, CSV, JSON, MULTIJSON, ORC, PARQUET, PSV, RAW, SCSV, SINGLEJSON, SOHSV, TSV, TSVE, TXT and W3CLOGFILE.
DatabaseName Changes to this property will trigger replacement. string
Specifies the name of the Kusto Database this data connection will be added to. Changing this forces a new resource to be created.
DatabaseRoutingType Changes to this property will trigger replacement. string
Indication for database routing information from the data connection, by default only database routing information is allowed. Allowed values: Single, Multi. Changing this forces a new resource to be created. Defaults to Single.
EventgridEventSubscriptionId string
The resource ID of the event grid that is subscribed to the storage account events.
EventgridResourceId string

Deprecated: eventgrid_resource_id has been deprecated in favour of the eventgrid_event_subscription_id property and will be removed in v5.0 of the AzureRM Provider.

EventhubConsumerGroupName Changes to this property will trigger replacement. string
Specifies the Event Hub consumer group this data connection will use for ingestion. Changing this forces a new resource to be created.
EventhubId Changes to this property will trigger replacement. string
Specifies the resource id of the Event Hub this data connection will use for ingestion. Changing this forces a new resource to be created.
Location Changes to this property will trigger replacement. string
The location where the Kusto Database should be created. Changing this forces a new resource to be created.
ManagedIdentityId string
Empty for non-managed identity based data connection. For system assigned identity, provide cluster resource Id. For user assigned identity (UAI) provide the UAI resource Id.
ManagedIdentityResourceId string

Deprecated: managed_identity_resource_id has been deprecated in favour of the managed_identity_id property and will be removed in v5.0 of the AzureRM Provider.

MappingRuleName string
Specifies the mapping rule used for the message ingestion. Mapping rule must exist before resource is created.
Name Changes to this property will trigger replacement. string
The name of the Kusto Event Grid Data Connection to create. Changing this forces a new resource to be created.
ResourceGroupName Changes to this property will trigger replacement. string
Specifies the Resource Group where the Kusto Database should exist. Changing this forces a new resource to be created.
SkipFirstRecord bool
is the first record of every file ignored? Defaults to false.
StorageAccountId Changes to this property will trigger replacement. string
Specifies the resource id of the Storage Account this data connection will use for ingestion. Changing this forces a new resource to be created.
TableName string
Specifies the target table name used for the message ingestion. Table must exist before resource is created.
blobStorageEventType String
Specifies the blob storage event type that needs to be processed. Possible Values are Microsoft.Storage.BlobCreated and Microsoft.Storage.BlobRenamed. Defaults to Microsoft.Storage.BlobCreated.
clusterName Changes to this property will trigger replacement. String
Specifies the name of the Kusto Cluster this data connection will be added to. Changing this forces a new resource to be created.
dataFormat String
Specifies the data format of the EventHub messages. Allowed values: APACHEAVRO, AVRO, CSV, JSON, MULTIJSON, ORC, PARQUET, PSV, RAW, SCSV, SINGLEJSON, SOHSV, TSV, TSVE, TXT and W3CLOGFILE.
databaseName Changes to this property will trigger replacement. String
Specifies the name of the Kusto Database this data connection will be added to. Changing this forces a new resource to be created.
databaseRoutingType Changes to this property will trigger replacement. String
Indication for database routing information from the data connection, by default only database routing information is allowed. Allowed values: Single, Multi. Changing this forces a new resource to be created. Defaults to Single.
eventgridEventSubscriptionId String
The resource ID of the event grid that is subscribed to the storage account events.
eventgridResourceId String

Deprecated: eventgrid_resource_id has been deprecated in favour of the eventgrid_event_subscription_id property and will be removed in v5.0 of the AzureRM Provider.

eventhubConsumerGroupName Changes to this property will trigger replacement. String
Specifies the Event Hub consumer group this data connection will use for ingestion. Changing this forces a new resource to be created.
eventhubId Changes to this property will trigger replacement. String
Specifies the resource id of the Event Hub this data connection will use for ingestion. Changing this forces a new resource to be created.
location Changes to this property will trigger replacement. String
The location where the Kusto Database should be created. Changing this forces a new resource to be created.
managedIdentityId String
Empty for non-managed identity based data connection. For system assigned identity, provide cluster resource Id. For user assigned identity (UAI) provide the UAI resource Id.
managedIdentityResourceId String

Deprecated: managed_identity_resource_id has been deprecated in favour of the managed_identity_id property and will be removed in v5.0 of the AzureRM Provider.

mappingRuleName String
Specifies the mapping rule used for the message ingestion. Mapping rule must exist before resource is created.
name Changes to this property will trigger replacement. String
The name of the Kusto Event Grid Data Connection to create. Changing this forces a new resource to be created.
resourceGroupName Changes to this property will trigger replacement. String
Specifies the Resource Group where the Kusto Database should exist. Changing this forces a new resource to be created.
skipFirstRecord Boolean
is the first record of every file ignored? Defaults to false.
storageAccountId Changes to this property will trigger replacement. String
Specifies the resource id of the Storage Account this data connection will use for ingestion. Changing this forces a new resource to be created.
tableName String
Specifies the target table name used for the message ingestion. Table must exist before resource is created.
blobStorageEventType string
Specifies the blob storage event type that needs to be processed. Possible Values are Microsoft.Storage.BlobCreated and Microsoft.Storage.BlobRenamed. Defaults to Microsoft.Storage.BlobCreated.
clusterName Changes to this property will trigger replacement. string
Specifies the name of the Kusto Cluster this data connection will be added to. Changing this forces a new resource to be created.
dataFormat string
Specifies the data format of the EventHub messages. Allowed values: APACHEAVRO, AVRO, CSV, JSON, MULTIJSON, ORC, PARQUET, PSV, RAW, SCSV, SINGLEJSON, SOHSV, TSV, TSVE, TXT and W3CLOGFILE.
databaseName Changes to this property will trigger replacement. string
Specifies the name of the Kusto Database this data connection will be added to. Changing this forces a new resource to be created.
databaseRoutingType Changes to this property will trigger replacement. string
Indication for database routing information from the data connection, by default only database routing information is allowed. Allowed values: Single, Multi. Changing this forces a new resource to be created. Defaults to Single.
eventgridEventSubscriptionId string
The resource ID of the event grid that is subscribed to the storage account events.
eventgridResourceId string

Deprecated: eventgrid_resource_id has been deprecated in favour of the eventgrid_event_subscription_id property and will be removed in v5.0 of the AzureRM Provider.

eventhubConsumerGroupName Changes to this property will trigger replacement. string
Specifies the Event Hub consumer group this data connection will use for ingestion. Changing this forces a new resource to be created.
eventhubId Changes to this property will trigger replacement. string
Specifies the resource id of the Event Hub this data connection will use for ingestion. Changing this forces a new resource to be created.
location Changes to this property will trigger replacement. string
The location where the Kusto Database should be created. Changing this forces a new resource to be created.
managedIdentityId string
Empty for non-managed identity based data connection. For system assigned identity, provide cluster resource Id. For user assigned identity (UAI) provide the UAI resource Id.
managedIdentityResourceId string

Deprecated: managed_identity_resource_id has been deprecated in favour of the managed_identity_id property and will be removed in v5.0 of the AzureRM Provider.

mappingRuleName string
Specifies the mapping rule used for the message ingestion. Mapping rule must exist before resource is created.
name Changes to this property will trigger replacement. string
The name of the Kusto Event Grid Data Connection to create. Changing this forces a new resource to be created.
resourceGroupName Changes to this property will trigger replacement. string
Specifies the Resource Group where the Kusto Database should exist. Changing this forces a new resource to be created.
skipFirstRecord boolean
is the first record of every file ignored? Defaults to false.
storageAccountId Changes to this property will trigger replacement. string
Specifies the resource id of the Storage Account this data connection will use for ingestion. Changing this forces a new resource to be created.
tableName string
Specifies the target table name used for the message ingestion. Table must exist before resource is created.
blob_storage_event_type str
Specifies the blob storage event type that needs to be processed. Possible Values are Microsoft.Storage.BlobCreated and Microsoft.Storage.BlobRenamed. Defaults to Microsoft.Storage.BlobCreated.
cluster_name Changes to this property will trigger replacement. str
Specifies the name of the Kusto Cluster this data connection will be added to. Changing this forces a new resource to be created.
data_format str
Specifies the data format of the EventHub messages. Allowed values: APACHEAVRO, AVRO, CSV, JSON, MULTIJSON, ORC, PARQUET, PSV, RAW, SCSV, SINGLEJSON, SOHSV, TSV, TSVE, TXT and W3CLOGFILE.
database_name Changes to this property will trigger replacement. str
Specifies the name of the Kusto Database this data connection will be added to. Changing this forces a new resource to be created.
database_routing_type Changes to this property will trigger replacement. str
Indication for database routing information from the data connection, by default only database routing information is allowed. Allowed values: Single, Multi. Changing this forces a new resource to be created. Defaults to Single.
eventgrid_event_subscription_id str
The resource ID of the event grid that is subscribed to the storage account events.
eventgrid_resource_id str

Deprecated: eventgrid_resource_id has been deprecated in favour of the eventgrid_event_subscription_id property and will be removed in v5.0 of the AzureRM Provider.

eventhub_consumer_group_name Changes to this property will trigger replacement. str
Specifies the Event Hub consumer group this data connection will use for ingestion. Changing this forces a new resource to be created.
eventhub_id Changes to this property will trigger replacement. str
Specifies the resource id of the Event Hub this data connection will use for ingestion. Changing this forces a new resource to be created.
location Changes to this property will trigger replacement. str
The location where the Kusto Database should be created. Changing this forces a new resource to be created.
managed_identity_id str
Empty for non-managed identity based data connection. For system assigned identity, provide cluster resource Id. For user assigned identity (UAI) provide the UAI resource Id.
managed_identity_resource_id str

Deprecated: managed_identity_resource_id has been deprecated in favour of the managed_identity_id property and will be removed in v5.0 of the AzureRM Provider.

mapping_rule_name str
Specifies the mapping rule used for the message ingestion. Mapping rule must exist before resource is created.
name Changes to this property will trigger replacement. str
The name of the Kusto Event Grid Data Connection to create. Changing this forces a new resource to be created.
resource_group_name Changes to this property will trigger replacement. str
Specifies the Resource Group where the Kusto Database should exist. Changing this forces a new resource to be created.
skip_first_record bool
is the first record of every file ignored? Defaults to false.
storage_account_id Changes to this property will trigger replacement. str
Specifies the resource id of the Storage Account this data connection will use for ingestion. Changing this forces a new resource to be created.
table_name str
Specifies the target table name used for the message ingestion. Table must exist before resource is created.
blobStorageEventType String
Specifies the blob storage event type that needs to be processed. Possible Values are Microsoft.Storage.BlobCreated and Microsoft.Storage.BlobRenamed. Defaults to Microsoft.Storage.BlobCreated.
clusterName Changes to this property will trigger replacement. String
Specifies the name of the Kusto Cluster this data connection will be added to. Changing this forces a new resource to be created.
dataFormat String
Specifies the data format of the EventHub messages. Allowed values: APACHEAVRO, AVRO, CSV, JSON, MULTIJSON, ORC, PARQUET, PSV, RAW, SCSV, SINGLEJSON, SOHSV, TSV, TSVE, TXT and W3CLOGFILE.
databaseName Changes to this property will trigger replacement. String
Specifies the name of the Kusto Database this data connection will be added to. Changing this forces a new resource to be created.
databaseRoutingType Changes to this property will trigger replacement. String
Indication for database routing information from the data connection, by default only database routing information is allowed. Allowed values: Single, Multi. Changing this forces a new resource to be created. Defaults to Single.
eventgridEventSubscriptionId String
The resource ID of the event grid that is subscribed to the storage account events.
eventgridResourceId String

Deprecated: eventgrid_resource_id has been deprecated in favour of the eventgrid_event_subscription_id property and will be removed in v5.0 of the AzureRM Provider.

eventhubConsumerGroupName Changes to this property will trigger replacement. String
Specifies the Event Hub consumer group this data connection will use for ingestion. Changing this forces a new resource to be created.
eventhubId Changes to this property will trigger replacement. String
Specifies the resource id of the Event Hub this data connection will use for ingestion. Changing this forces a new resource to be created.
location Changes to this property will trigger replacement. String
The location where the Kusto Database should be created. Changing this forces a new resource to be created.
managedIdentityId String
Empty for non-managed identity based data connection. For system assigned identity, provide cluster resource Id. For user assigned identity (UAI) provide the UAI resource Id.
managedIdentityResourceId String

Deprecated: managed_identity_resource_id has been deprecated in favour of the managed_identity_id property and will be removed in v5.0 of the AzureRM Provider.

mappingRuleName String
Specifies the mapping rule used for the message ingestion. Mapping rule must exist before resource is created.
name Changes to this property will trigger replacement. String
The name of the Kusto Event Grid Data Connection to create. Changing this forces a new resource to be created.
resourceGroupName Changes to this property will trigger replacement. String
Specifies the Resource Group where the Kusto Database should exist. Changing this forces a new resource to be created.
skipFirstRecord Boolean
is the first record of every file ignored? Defaults to false.
storageAccountId Changes to this property will trigger replacement. String
Specifies the resource id of the Storage Account this data connection will use for ingestion. Changing this forces a new resource to be created.
tableName String
Specifies the target table name used for the message ingestion. Table must exist before resource is created.

Import

Kusto Event Grid Data Connections can be imported using the resource id, e.g.

$ pulumi import azure:kusto/eventGridDataConnection:EventGridDataConnection example /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/group1/providers/Microsoft.Kusto/clusters/cluster1/databases/database1/dataConnections/dataConnection1
Copy

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

Package Details

Repository
Azure Classic pulumi/pulumi-azure
License
Apache-2.0
Notes
This Pulumi package is based on the azurerm Terraform Provider.