1. Packages
  2. Azure Native
  3. API Docs
  4. digitaltwins
  5. TimeSeriesDatabaseConnection
This is the latest version of Azure Native. Use the Azure Native v2 docs if using the v2 version of this package.
Azure Native v3.2.0 published on Monday, Apr 14, 2025 by Pulumi

azure-native.digitaltwins.TimeSeriesDatabaseConnection

Explore with Pulumi AI

Describes a time series database connection resource.

Uses Azure REST API version 2023-01-31. In version 2.x of the Azure Native provider, it used API version 2023-01-31.

Example Usage

Create or replace a time series database connection for a DigitalTwins instance with user assigned identity.

using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;

return await Deployment.RunAsync(() => 
{
    var timeSeriesDatabaseConnection = new AzureNative.DigitalTwins.TimeSeriesDatabaseConnection("timeSeriesDatabaseConnection", new()
    {
        Properties = new AzureNative.DigitalTwins.Inputs.AzureDataExplorerConnectionPropertiesArgs
        {
            AdxDatabaseName = "myDatabase",
            AdxEndpointUri = "https://mycluster.kusto.windows.net",
            AdxResourceId = "/subscriptions/c493073e-2460-45ba-a403-f3e0df1e9feg/resourceGroups/testrg/providers/Microsoft.Kusto/clusters/mycluster",
            AdxTableName = "myTable",
            ConnectionType = "AzureDataExplorer",
            EventHubEndpointUri = "sb://myeh.servicebus.windows.net/",
            EventHubEntityPath = "myeh",
            EventHubNamespaceResourceId = "/subscriptions/c493073e-2460-45ba-a403-f3e0df1e9feg/resourceGroups/testrg/providers/Microsoft.EventHub/namespaces/myeh",
            Identity = new AzureNative.DigitalTwins.Inputs.ManagedIdentityReferenceArgs
            {
                Type = AzureNative.DigitalTwins.IdentityType.UserAssigned,
                UserAssignedIdentity = "/subscriptions/50016170-c839-41ba-a724-51e9df440b9e/resourceGroups/testrg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testidentity",
            },
        },
        ResourceGroupName = "resRg",
        ResourceName = "myDigitalTwinsService",
        TimeSeriesDatabaseConnectionName = "myConnection",
    });

});
Copy
package main

import (
	digitaltwins "github.com/pulumi/pulumi-azure-native-sdk/digitaltwins/v3"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := digitaltwins.NewTimeSeriesDatabaseConnection(ctx, "timeSeriesDatabaseConnection", &digitaltwins.TimeSeriesDatabaseConnectionArgs{
			Properties: &digitaltwins.AzureDataExplorerConnectionPropertiesArgs{
				AdxDatabaseName:             pulumi.String("myDatabase"),
				AdxEndpointUri:              pulumi.String("https://mycluster.kusto.windows.net"),
				AdxResourceId:               pulumi.String("/subscriptions/c493073e-2460-45ba-a403-f3e0df1e9feg/resourceGroups/testrg/providers/Microsoft.Kusto/clusters/mycluster"),
				AdxTableName:                pulumi.String("myTable"),
				ConnectionType:              pulumi.String("AzureDataExplorer"),
				EventHubEndpointUri:         pulumi.String("sb://myeh.servicebus.windows.net/"),
				EventHubEntityPath:          pulumi.String("myeh"),
				EventHubNamespaceResourceId: pulumi.String("/subscriptions/c493073e-2460-45ba-a403-f3e0df1e9feg/resourceGroups/testrg/providers/Microsoft.EventHub/namespaces/myeh"),
				Identity: &digitaltwins.ManagedIdentityReferenceArgs{
					Type:                 pulumi.String(digitaltwins.IdentityTypeUserAssigned),
					UserAssignedIdentity: pulumi.String("/subscriptions/50016170-c839-41ba-a724-51e9df440b9e/resourceGroups/testrg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testidentity"),
				},
			},
			ResourceGroupName:                pulumi.String("resRg"),
			ResourceName:                     pulumi.String("myDigitalTwinsService"),
			TimeSeriesDatabaseConnectionName: pulumi.String("myConnection"),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.digitaltwins.TimeSeriesDatabaseConnection;
import com.pulumi.azurenative.digitaltwins.TimeSeriesDatabaseConnectionArgs;
import com.pulumi.azurenative.digitaltwins.inputs.AzureDataExplorerConnectionPropertiesArgs;
import com.pulumi.azurenative.digitaltwins.inputs.ManagedIdentityReferenceArgs;
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 timeSeriesDatabaseConnection = new TimeSeriesDatabaseConnection("timeSeriesDatabaseConnection", TimeSeriesDatabaseConnectionArgs.builder()
            .properties(AzureDataExplorerConnectionPropertiesArgs.builder()
                .adxDatabaseName("myDatabase")
                .adxEndpointUri("https://mycluster.kusto.windows.net")
                .adxResourceId("/subscriptions/c493073e-2460-45ba-a403-f3e0df1e9feg/resourceGroups/testrg/providers/Microsoft.Kusto/clusters/mycluster")
                .adxTableName("myTable")
                .connectionType("AzureDataExplorer")
                .eventHubEndpointUri("sb://myeh.servicebus.windows.net/")
                .eventHubEntityPath("myeh")
                .eventHubNamespaceResourceId("/subscriptions/c493073e-2460-45ba-a403-f3e0df1e9feg/resourceGroups/testrg/providers/Microsoft.EventHub/namespaces/myeh")
                .identity(ManagedIdentityReferenceArgs.builder()
                    .type("UserAssigned")
                    .userAssignedIdentity("/subscriptions/50016170-c839-41ba-a724-51e9df440b9e/resourceGroups/testrg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testidentity")
                    .build())
                .build())
            .resourceGroupName("resRg")
            .resourceName("myDigitalTwinsService")
            .timeSeriesDatabaseConnectionName("myConnection")
            .build());

    }
}
Copy
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";

const timeSeriesDatabaseConnection = new azure_native.digitaltwins.TimeSeriesDatabaseConnection("timeSeriesDatabaseConnection", {
    properties: {
        adxDatabaseName: "myDatabase",
        adxEndpointUri: "https://mycluster.kusto.windows.net",
        adxResourceId: "/subscriptions/c493073e-2460-45ba-a403-f3e0df1e9feg/resourceGroups/testrg/providers/Microsoft.Kusto/clusters/mycluster",
        adxTableName: "myTable",
        connectionType: "AzureDataExplorer",
        eventHubEndpointUri: "sb://myeh.servicebus.windows.net/",
        eventHubEntityPath: "myeh",
        eventHubNamespaceResourceId: "/subscriptions/c493073e-2460-45ba-a403-f3e0df1e9feg/resourceGroups/testrg/providers/Microsoft.EventHub/namespaces/myeh",
        identity: {
            type: azure_native.digitaltwins.IdentityType.UserAssigned,
            userAssignedIdentity: "/subscriptions/50016170-c839-41ba-a724-51e9df440b9e/resourceGroups/testrg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testidentity",
        },
    },
    resourceGroupName: "resRg",
    resourceName: "myDigitalTwinsService",
    timeSeriesDatabaseConnectionName: "myConnection",
});
Copy
import pulumi
import pulumi_azure_native as azure_native

time_series_database_connection = azure_native.digitaltwins.TimeSeriesDatabaseConnection("timeSeriesDatabaseConnection",
    properties={
        "adx_database_name": "myDatabase",
        "adx_endpoint_uri": "https://mycluster.kusto.windows.net",
        "adx_resource_id": "/subscriptions/c493073e-2460-45ba-a403-f3e0df1e9feg/resourceGroups/testrg/providers/Microsoft.Kusto/clusters/mycluster",
        "adx_table_name": "myTable",
        "connection_type": "AzureDataExplorer",
        "event_hub_endpoint_uri": "sb://myeh.servicebus.windows.net/",
        "event_hub_entity_path": "myeh",
        "event_hub_namespace_resource_id": "/subscriptions/c493073e-2460-45ba-a403-f3e0df1e9feg/resourceGroups/testrg/providers/Microsoft.EventHub/namespaces/myeh",
        "identity": {
            "type": azure_native.digitaltwins.IdentityType.USER_ASSIGNED,
            "user_assigned_identity": "/subscriptions/50016170-c839-41ba-a724-51e9df440b9e/resourceGroups/testrg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testidentity",
        },
    },
    resource_group_name="resRg",
    resource_name_="myDigitalTwinsService",
    time_series_database_connection_name="myConnection")
Copy
resources:
  timeSeriesDatabaseConnection:
    type: azure-native:digitaltwins:TimeSeriesDatabaseConnection
    properties:
      properties:
        adxDatabaseName: myDatabase
        adxEndpointUri: https://mycluster.kusto.windows.net
        adxResourceId: /subscriptions/c493073e-2460-45ba-a403-f3e0df1e9feg/resourceGroups/testrg/providers/Microsoft.Kusto/clusters/mycluster
        adxTableName: myTable
        connectionType: AzureDataExplorer
        eventHubEndpointUri: sb://myeh.servicebus.windows.net/
        eventHubEntityPath: myeh
        eventHubNamespaceResourceId: /subscriptions/c493073e-2460-45ba-a403-f3e0df1e9feg/resourceGroups/testrg/providers/Microsoft.EventHub/namespaces/myeh
        identity:
          type: UserAssigned
          userAssignedIdentity: /subscriptions/50016170-c839-41ba-a724-51e9df440b9e/resourceGroups/testrg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testidentity
      resourceGroupName: resRg
      resourceName: myDigitalTwinsService
      timeSeriesDatabaseConnectionName: myConnection
Copy

Create or replace a time series database connection for a DigitalTwins instance.

using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;

return await Deployment.RunAsync(() => 
{
    var timeSeriesDatabaseConnection = new AzureNative.DigitalTwins.TimeSeriesDatabaseConnection("timeSeriesDatabaseConnection", new()
    {
        Properties = new AzureNative.DigitalTwins.Inputs.AzureDataExplorerConnectionPropertiesArgs
        {
            AdxDatabaseName = "myDatabase",
            AdxEndpointUri = "https://mycluster.kusto.windows.net",
            AdxRelationshipLifecycleEventsTableName = "myRelationshipLifecycleEventsTable",
            AdxResourceId = "/subscriptions/c493073e-2460-45ba-a403-f3e0df1e9feg/resourceGroups/testrg/providers/Microsoft.Kusto/clusters/mycluster",
            AdxTableName = "myPropertyUpdatesTable",
            AdxTwinLifecycleEventsTableName = "myTwinLifecycleEventsTable",
            ConnectionType = "AzureDataExplorer",
            EventHubEndpointUri = "sb://myeh.servicebus.windows.net/",
            EventHubEntityPath = "myeh",
            EventHubNamespaceResourceId = "/subscriptions/c493073e-2460-45ba-a403-f3e0df1e9feg/resourceGroups/testrg/providers/Microsoft.EventHub/namespaces/myeh",
            RecordPropertyAndItemRemovals = AzureNative.DigitalTwins.RecordPropertyAndItemRemovals.@True,
        },
        ResourceGroupName = "resRg",
        ResourceName = "myDigitalTwinsService",
        TimeSeriesDatabaseConnectionName = "myConnection",
    });

});
Copy
package main

import (
	digitaltwins "github.com/pulumi/pulumi-azure-native-sdk/digitaltwins/v3"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := digitaltwins.NewTimeSeriesDatabaseConnection(ctx, "timeSeriesDatabaseConnection", &digitaltwins.TimeSeriesDatabaseConnectionArgs{
			Properties: &digitaltwins.AzureDataExplorerConnectionPropertiesArgs{
				AdxDatabaseName:                         pulumi.String("myDatabase"),
				AdxEndpointUri:                          pulumi.String("https://mycluster.kusto.windows.net"),
				AdxRelationshipLifecycleEventsTableName: pulumi.String("myRelationshipLifecycleEventsTable"),
				AdxResourceId:                           pulumi.String("/subscriptions/c493073e-2460-45ba-a403-f3e0df1e9feg/resourceGroups/testrg/providers/Microsoft.Kusto/clusters/mycluster"),
				AdxTableName:                            pulumi.String("myPropertyUpdatesTable"),
				AdxTwinLifecycleEventsTableName:         pulumi.String("myTwinLifecycleEventsTable"),
				ConnectionType:                          pulumi.String("AzureDataExplorer"),
				EventHubEndpointUri:                     pulumi.String("sb://myeh.servicebus.windows.net/"),
				EventHubEntityPath:                      pulumi.String("myeh"),
				EventHubNamespaceResourceId:             pulumi.String("/subscriptions/c493073e-2460-45ba-a403-f3e0df1e9feg/resourceGroups/testrg/providers/Microsoft.EventHub/namespaces/myeh"),
				RecordPropertyAndItemRemovals:           pulumi.String(digitaltwins.RecordPropertyAndItemRemovalsTrue),
			},
			ResourceGroupName:                pulumi.String("resRg"),
			ResourceName:                     pulumi.String("myDigitalTwinsService"),
			TimeSeriesDatabaseConnectionName: pulumi.String("myConnection"),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.digitaltwins.TimeSeriesDatabaseConnection;
import com.pulumi.azurenative.digitaltwins.TimeSeriesDatabaseConnectionArgs;
import com.pulumi.azurenative.digitaltwins.inputs.AzureDataExplorerConnectionPropertiesArgs;
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 timeSeriesDatabaseConnection = new TimeSeriesDatabaseConnection("timeSeriesDatabaseConnection", TimeSeriesDatabaseConnectionArgs.builder()
            .properties(AzureDataExplorerConnectionPropertiesArgs.builder()
                .adxDatabaseName("myDatabase")
                .adxEndpointUri("https://mycluster.kusto.windows.net")
                .adxRelationshipLifecycleEventsTableName("myRelationshipLifecycleEventsTable")
                .adxResourceId("/subscriptions/c493073e-2460-45ba-a403-f3e0df1e9feg/resourceGroups/testrg/providers/Microsoft.Kusto/clusters/mycluster")
                .adxTableName("myPropertyUpdatesTable")
                .adxTwinLifecycleEventsTableName("myTwinLifecycleEventsTable")
                .connectionType("AzureDataExplorer")
                .eventHubEndpointUri("sb://myeh.servicebus.windows.net/")
                .eventHubEntityPath("myeh")
                .eventHubNamespaceResourceId("/subscriptions/c493073e-2460-45ba-a403-f3e0df1e9feg/resourceGroups/testrg/providers/Microsoft.EventHub/namespaces/myeh")
                .recordPropertyAndItemRemovals("true")
                .build())
            .resourceGroupName("resRg")
            .resourceName("myDigitalTwinsService")
            .timeSeriesDatabaseConnectionName("myConnection")
            .build());

    }
}
Copy
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";

const timeSeriesDatabaseConnection = new azure_native.digitaltwins.TimeSeriesDatabaseConnection("timeSeriesDatabaseConnection", {
    properties: {
        adxDatabaseName: "myDatabase",
        adxEndpointUri: "https://mycluster.kusto.windows.net",
        adxRelationshipLifecycleEventsTableName: "myRelationshipLifecycleEventsTable",
        adxResourceId: "/subscriptions/c493073e-2460-45ba-a403-f3e0df1e9feg/resourceGroups/testrg/providers/Microsoft.Kusto/clusters/mycluster",
        adxTableName: "myPropertyUpdatesTable",
        adxTwinLifecycleEventsTableName: "myTwinLifecycleEventsTable",
        connectionType: "AzureDataExplorer",
        eventHubEndpointUri: "sb://myeh.servicebus.windows.net/",
        eventHubEntityPath: "myeh",
        eventHubNamespaceResourceId: "/subscriptions/c493073e-2460-45ba-a403-f3e0df1e9feg/resourceGroups/testrg/providers/Microsoft.EventHub/namespaces/myeh",
        recordPropertyAndItemRemovals: azure_native.digitaltwins.RecordPropertyAndItemRemovals.True,
    },
    resourceGroupName: "resRg",
    resourceName: "myDigitalTwinsService",
    timeSeriesDatabaseConnectionName: "myConnection",
});
Copy
import pulumi
import pulumi_azure_native as azure_native

time_series_database_connection = azure_native.digitaltwins.TimeSeriesDatabaseConnection("timeSeriesDatabaseConnection",
    properties={
        "adx_database_name": "myDatabase",
        "adx_endpoint_uri": "https://mycluster.kusto.windows.net",
        "adx_relationship_lifecycle_events_table_name": "myRelationshipLifecycleEventsTable",
        "adx_resource_id": "/subscriptions/c493073e-2460-45ba-a403-f3e0df1e9feg/resourceGroups/testrg/providers/Microsoft.Kusto/clusters/mycluster",
        "adx_table_name": "myPropertyUpdatesTable",
        "adx_twin_lifecycle_events_table_name": "myTwinLifecycleEventsTable",
        "connection_type": "AzureDataExplorer",
        "event_hub_endpoint_uri": "sb://myeh.servicebus.windows.net/",
        "event_hub_entity_path": "myeh",
        "event_hub_namespace_resource_id": "/subscriptions/c493073e-2460-45ba-a403-f3e0df1e9feg/resourceGroups/testrg/providers/Microsoft.EventHub/namespaces/myeh",
        "record_property_and_item_removals": azure_native.digitaltwins.RecordPropertyAndItemRemovals.TRUE,
    },
    resource_group_name="resRg",
    resource_name_="myDigitalTwinsService",
    time_series_database_connection_name="myConnection")
Copy
resources:
  timeSeriesDatabaseConnection:
    type: azure-native:digitaltwins:TimeSeriesDatabaseConnection
    properties:
      properties:
        adxDatabaseName: myDatabase
        adxEndpointUri: https://mycluster.kusto.windows.net
        adxRelationshipLifecycleEventsTableName: myRelationshipLifecycleEventsTable
        adxResourceId: /subscriptions/c493073e-2460-45ba-a403-f3e0df1e9feg/resourceGroups/testrg/providers/Microsoft.Kusto/clusters/mycluster
        adxTableName: myPropertyUpdatesTable
        adxTwinLifecycleEventsTableName: myTwinLifecycleEventsTable
        connectionType: AzureDataExplorer
        eventHubEndpointUri: sb://myeh.servicebus.windows.net/
        eventHubEntityPath: myeh
        eventHubNamespaceResourceId: /subscriptions/c493073e-2460-45ba-a403-f3e0df1e9feg/resourceGroups/testrg/providers/Microsoft.EventHub/namespaces/myeh
        recordPropertyAndItemRemovals: 'true'
      resourceGroupName: resRg
      resourceName: myDigitalTwinsService
      timeSeriesDatabaseConnectionName: myConnection
Copy

Create TimeSeriesDatabaseConnection Resource

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

Constructor syntax

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

@overload
def TimeSeriesDatabaseConnection(resource_name: str,
                                 opts: Optional[ResourceOptions] = None,
                                 resource_group_name: Optional[str] = None,
                                 resource_name_: Optional[str] = None,
                                 properties: Optional[AzureDataExplorerConnectionPropertiesArgs] = None,
                                 time_series_database_connection_name: Optional[str] = None)
func NewTimeSeriesDatabaseConnection(ctx *Context, name string, args TimeSeriesDatabaseConnectionArgs, opts ...ResourceOption) (*TimeSeriesDatabaseConnection, error)
public TimeSeriesDatabaseConnection(string name, TimeSeriesDatabaseConnectionArgs args, CustomResourceOptions? opts = null)
public TimeSeriesDatabaseConnection(String name, TimeSeriesDatabaseConnectionArgs args)
public TimeSeriesDatabaseConnection(String name, TimeSeriesDatabaseConnectionArgs args, CustomResourceOptions options)
type: azure-native:digitaltwins:TimeSeriesDatabaseConnection
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. TimeSeriesDatabaseConnectionArgs
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. TimeSeriesDatabaseConnectionArgs
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. TimeSeriesDatabaseConnectionArgs
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. TimeSeriesDatabaseConnectionArgs
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. TimeSeriesDatabaseConnectionArgs
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 timeSeriesDatabaseConnectionResource = new AzureNative.DigitalTwins.TimeSeriesDatabaseConnection("timeSeriesDatabaseConnectionResource", new()
{
    ResourceGroupName = "string",
    ResourceName = "string",
    Properties = new AzureNative.DigitalTwins.Inputs.AzureDataExplorerConnectionPropertiesArgs
    {
        ConnectionType = "AzureDataExplorer",
        AdxEndpointUri = "string",
        AdxResourceId = "string",
        AdxDatabaseName = "string",
        EventHubEndpointUri = "string",
        EventHubEntityPath = "string",
        EventHubNamespaceResourceId = "string",
        AdxRelationshipLifecycleEventsTableName = "string",
        AdxTableName = "string",
        AdxTwinLifecycleEventsTableName = "string",
        EventHubConsumerGroup = "string",
        Identity = new AzureNative.DigitalTwins.Inputs.ManagedIdentityReferenceArgs
        {
            Type = "string",
            UserAssignedIdentity = "string",
        },
        RecordPropertyAndItemRemovals = "string",
    },
    TimeSeriesDatabaseConnectionName = "string",
});
Copy
example, err := digitaltwins.NewTimeSeriesDatabaseConnection(ctx, "timeSeriesDatabaseConnectionResource", &digitaltwins.TimeSeriesDatabaseConnectionArgs{
	ResourceGroupName: pulumi.String("string"),
	ResourceName:      pulumi.String("string"),
	Properties: &digitaltwins.AzureDataExplorerConnectionPropertiesArgs{
		ConnectionType:                          pulumi.String("AzureDataExplorer"),
		AdxEndpointUri:                          pulumi.String("string"),
		AdxResourceId:                           pulumi.String("string"),
		AdxDatabaseName:                         pulumi.String("string"),
		EventHubEndpointUri:                     pulumi.String("string"),
		EventHubEntityPath:                      pulumi.String("string"),
		EventHubNamespaceResourceId:             pulumi.String("string"),
		AdxRelationshipLifecycleEventsTableName: pulumi.String("string"),
		AdxTableName:                            pulumi.String("string"),
		AdxTwinLifecycleEventsTableName:         pulumi.String("string"),
		EventHubConsumerGroup:                   pulumi.String("string"),
		Identity: &digitaltwins.ManagedIdentityReferenceArgs{
			Type:                 pulumi.String("string"),
			UserAssignedIdentity: pulumi.String("string"),
		},
		RecordPropertyAndItemRemovals: pulumi.String("string"),
	},
	TimeSeriesDatabaseConnectionName: pulumi.String("string"),
})
Copy
var timeSeriesDatabaseConnectionResource = new TimeSeriesDatabaseConnection("timeSeriesDatabaseConnectionResource", TimeSeriesDatabaseConnectionArgs.builder()
    .resourceGroupName("string")
    .resourceName("string")
    .properties(AzureDataExplorerConnectionPropertiesArgs.builder()
        .connectionType("AzureDataExplorer")
        .adxEndpointUri("string")
        .adxResourceId("string")
        .adxDatabaseName("string")
        .eventHubEndpointUri("string")
        .eventHubEntityPath("string")
        .eventHubNamespaceResourceId("string")
        .adxRelationshipLifecycleEventsTableName("string")
        .adxTableName("string")
        .adxTwinLifecycleEventsTableName("string")
        .eventHubConsumerGroup("string")
        .identity(ManagedIdentityReferenceArgs.builder()
            .type("string")
            .userAssignedIdentity("string")
            .build())
        .recordPropertyAndItemRemovals("string")
        .build())
    .timeSeriesDatabaseConnectionName("string")
    .build());
Copy
time_series_database_connection_resource = azure_native.digitaltwins.TimeSeriesDatabaseConnection("timeSeriesDatabaseConnectionResource",
    resource_group_name="string",
    resource_name_="string",
    properties={
        "connection_type": "AzureDataExplorer",
        "adx_endpoint_uri": "string",
        "adx_resource_id": "string",
        "adx_database_name": "string",
        "event_hub_endpoint_uri": "string",
        "event_hub_entity_path": "string",
        "event_hub_namespace_resource_id": "string",
        "adx_relationship_lifecycle_events_table_name": "string",
        "adx_table_name": "string",
        "adx_twin_lifecycle_events_table_name": "string",
        "event_hub_consumer_group": "string",
        "identity": {
            "type": "string",
            "user_assigned_identity": "string",
        },
        "record_property_and_item_removals": "string",
    },
    time_series_database_connection_name="string")
Copy
const timeSeriesDatabaseConnectionResource = new azure_native.digitaltwins.TimeSeriesDatabaseConnection("timeSeriesDatabaseConnectionResource", {
    resourceGroupName: "string",
    resourceName: "string",
    properties: {
        connectionType: "AzureDataExplorer",
        adxEndpointUri: "string",
        adxResourceId: "string",
        adxDatabaseName: "string",
        eventHubEndpointUri: "string",
        eventHubEntityPath: "string",
        eventHubNamespaceResourceId: "string",
        adxRelationshipLifecycleEventsTableName: "string",
        adxTableName: "string",
        adxTwinLifecycleEventsTableName: "string",
        eventHubConsumerGroup: "string",
        identity: {
            type: "string",
            userAssignedIdentity: "string",
        },
        recordPropertyAndItemRemovals: "string",
    },
    timeSeriesDatabaseConnectionName: "string",
});
Copy
type: azure-native:digitaltwins:TimeSeriesDatabaseConnection
properties:
    properties:
        adxDatabaseName: string
        adxEndpointUri: string
        adxRelationshipLifecycleEventsTableName: string
        adxResourceId: string
        adxTableName: string
        adxTwinLifecycleEventsTableName: string
        connectionType: AzureDataExplorer
        eventHubConsumerGroup: string
        eventHubEndpointUri: string
        eventHubEntityPath: string
        eventHubNamespaceResourceId: string
        identity:
            type: string
            userAssignedIdentity: string
        recordPropertyAndItemRemovals: string
    resourceGroupName: string
    resourceName: string
    timeSeriesDatabaseConnectionName: string
Copy

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

ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group that contains the DigitalTwinsInstance.
ResourceName
This property is required.
Changes to this property will trigger replacement.
string
The name of the DigitalTwinsInstance.
Properties Pulumi.AzureNative.DigitalTwins.Inputs.AzureDataExplorerConnectionProperties
Properties of a specific time series database connection.
TimeSeriesDatabaseConnectionName Changes to this property will trigger replacement. string
Name of time series database connection.
ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group that contains the DigitalTwinsInstance.
ResourceName
This property is required.
Changes to this property will trigger replacement.
string
The name of the DigitalTwinsInstance.
Properties AzureDataExplorerConnectionPropertiesArgs
Properties of a specific time series database connection.
TimeSeriesDatabaseConnectionName Changes to this property will trigger replacement. string
Name of time series database connection.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
The name of the resource group that contains the DigitalTwinsInstance.
resourceName
This property is required.
Changes to this property will trigger replacement.
String
The name of the DigitalTwinsInstance.
properties AzureDataExplorerConnectionProperties
Properties of a specific time series database connection.
timeSeriesDatabaseConnectionName Changes to this property will trigger replacement. String
Name of time series database connection.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group that contains the DigitalTwinsInstance.
resourceName
This property is required.
Changes to this property will trigger replacement.
string
The name of the DigitalTwinsInstance.
properties AzureDataExplorerConnectionProperties
Properties of a specific time series database connection.
timeSeriesDatabaseConnectionName Changes to this property will trigger replacement. string
Name of time series database connection.
resource_group_name
This property is required.
Changes to this property will trigger replacement.
str
The name of the resource group that contains the DigitalTwinsInstance.
resource_name
This property is required.
Changes to this property will trigger replacement.
str
The name of the DigitalTwinsInstance.
properties AzureDataExplorerConnectionPropertiesArgs
Properties of a specific time series database connection.
time_series_database_connection_name Changes to this property will trigger replacement. str
Name of time series database connection.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
The name of the resource group that contains the DigitalTwinsInstance.
resourceName
This property is required.
Changes to this property will trigger replacement.
String
The name of the DigitalTwinsInstance.
properties Property Map
Properties of a specific time series database connection.
timeSeriesDatabaseConnectionName Changes to this property will trigger replacement. String
Name of time series database connection.

Outputs

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

AzureApiVersion string
The Azure API version of the resource.
Id string
The provider-assigned unique ID for this managed resource.
Name string
Extension resource name.
SystemData Pulumi.AzureNative.DigitalTwins.Outputs.SystemDataResponse
Metadata pertaining to creation and last modification of the resource.
Type string
The resource type.
AzureApiVersion string
The Azure API version of the resource.
Id string
The provider-assigned unique ID for this managed resource.
Name string
Extension resource name.
SystemData SystemDataResponse
Metadata pertaining to creation and last modification of the resource.
Type string
The resource type.
azureApiVersion String
The Azure API version of the resource.
id String
The provider-assigned unique ID for this managed resource.
name String
Extension resource name.
systemData SystemDataResponse
Metadata pertaining to creation and last modification of the resource.
type String
The resource type.
azureApiVersion string
The Azure API version of the resource.
id string
The provider-assigned unique ID for this managed resource.
name string
Extension resource name.
systemData SystemDataResponse
Metadata pertaining to creation and last modification of the resource.
type string
The resource type.
azure_api_version str
The Azure API version of the resource.
id str
The provider-assigned unique ID for this managed resource.
name str
Extension resource name.
system_data SystemDataResponse
Metadata pertaining to creation and last modification of the resource.
type str
The resource type.
azureApiVersion String
The Azure API version of the resource.
id String
The provider-assigned unique ID for this managed resource.
name String
Extension resource name.
systemData Property Map
Metadata pertaining to creation and last modification of the resource.
type String
The resource type.

Supporting Types

AzureDataExplorerConnectionProperties
, AzureDataExplorerConnectionPropertiesArgs

AdxDatabaseName This property is required. string
The name of the Azure Data Explorer database.
AdxEndpointUri This property is required. string
The URI of the Azure Data Explorer endpoint.
AdxResourceId This property is required. string
The resource ID of the Azure Data Explorer cluster.
EventHubEndpointUri This property is required. string
The URL of the EventHub namespace for identity-based authentication. It must include the protocol sb://
EventHubEntityPath This property is required. string
The EventHub name in the EventHub namespace for identity-based authentication.
EventHubNamespaceResourceId This property is required. string
The resource ID of the EventHub namespace.
AdxRelationshipLifecycleEventsTableName string
The name of the Azure Data Explorer table used for recording relationship lifecycle events. The table will not be created if this property is left unspecified.
AdxTableName string
The name of the Azure Data Explorer table used for storing updates to properties of twins and relationships. Defaults to AdtPropertyEvents.
AdxTwinLifecycleEventsTableName string
The name of the Azure Data Explorer table used for recording twin lifecycle events. The table will not be created if this property is left unspecified.
EventHubConsumerGroup string
The EventHub consumer group to use when ADX reads from EventHub. Defaults to $Default.
Identity Pulumi.AzureNative.DigitalTwins.Inputs.ManagedIdentityReference
Managed identity properties for the time series database connection resource.
RecordPropertyAndItemRemovals string | Pulumi.AzureNative.DigitalTwins.RecordPropertyAndItemRemovals
Specifies whether or not to record twin / relationship property and item removals, including removals of indexed or keyed values (such as map entries, array elements, etc.). This feature is de-activated unless explicitly set to 'true'. Setting this property to 'true' will generate an additional column in the property events table in ADX.
AdxDatabaseName This property is required. string
The name of the Azure Data Explorer database.
AdxEndpointUri This property is required. string
The URI of the Azure Data Explorer endpoint.
AdxResourceId This property is required. string
The resource ID of the Azure Data Explorer cluster.
EventHubEndpointUri This property is required. string
The URL of the EventHub namespace for identity-based authentication. It must include the protocol sb://
EventHubEntityPath This property is required. string
The EventHub name in the EventHub namespace for identity-based authentication.
EventHubNamespaceResourceId This property is required. string
The resource ID of the EventHub namespace.
AdxRelationshipLifecycleEventsTableName string
The name of the Azure Data Explorer table used for recording relationship lifecycle events. The table will not be created if this property is left unspecified.
AdxTableName string
The name of the Azure Data Explorer table used for storing updates to properties of twins and relationships. Defaults to AdtPropertyEvents.
AdxTwinLifecycleEventsTableName string
The name of the Azure Data Explorer table used for recording twin lifecycle events. The table will not be created if this property is left unspecified.
EventHubConsumerGroup string
The EventHub consumer group to use when ADX reads from EventHub. Defaults to $Default.
Identity ManagedIdentityReference
Managed identity properties for the time series database connection resource.
RecordPropertyAndItemRemovals string | RecordPropertyAndItemRemovals
Specifies whether or not to record twin / relationship property and item removals, including removals of indexed or keyed values (such as map entries, array elements, etc.). This feature is de-activated unless explicitly set to 'true'. Setting this property to 'true' will generate an additional column in the property events table in ADX.
adxDatabaseName This property is required. String
The name of the Azure Data Explorer database.
adxEndpointUri This property is required. String
The URI of the Azure Data Explorer endpoint.
adxResourceId This property is required. String
The resource ID of the Azure Data Explorer cluster.
eventHubEndpointUri This property is required. String
The URL of the EventHub namespace for identity-based authentication. It must include the protocol sb://
eventHubEntityPath This property is required. String
The EventHub name in the EventHub namespace for identity-based authentication.
eventHubNamespaceResourceId This property is required. String
The resource ID of the EventHub namespace.
adxRelationshipLifecycleEventsTableName String
The name of the Azure Data Explorer table used for recording relationship lifecycle events. The table will not be created if this property is left unspecified.
adxTableName String
The name of the Azure Data Explorer table used for storing updates to properties of twins and relationships. Defaults to AdtPropertyEvents.
adxTwinLifecycleEventsTableName String
The name of the Azure Data Explorer table used for recording twin lifecycle events. The table will not be created if this property is left unspecified.
eventHubConsumerGroup String
The EventHub consumer group to use when ADX reads from EventHub. Defaults to $Default.
identity ManagedIdentityReference
Managed identity properties for the time series database connection resource.
recordPropertyAndItemRemovals String | RecordPropertyAndItemRemovals
Specifies whether or not to record twin / relationship property and item removals, including removals of indexed or keyed values (such as map entries, array elements, etc.). This feature is de-activated unless explicitly set to 'true'. Setting this property to 'true' will generate an additional column in the property events table in ADX.
adxDatabaseName This property is required. string
The name of the Azure Data Explorer database.
adxEndpointUri This property is required. string
The URI of the Azure Data Explorer endpoint.
adxResourceId This property is required. string
The resource ID of the Azure Data Explorer cluster.
eventHubEndpointUri This property is required. string
The URL of the EventHub namespace for identity-based authentication. It must include the protocol sb://
eventHubEntityPath This property is required. string
The EventHub name in the EventHub namespace for identity-based authentication.
eventHubNamespaceResourceId This property is required. string
The resource ID of the EventHub namespace.
adxRelationshipLifecycleEventsTableName string
The name of the Azure Data Explorer table used for recording relationship lifecycle events. The table will not be created if this property is left unspecified.
adxTableName string
The name of the Azure Data Explorer table used for storing updates to properties of twins and relationships. Defaults to AdtPropertyEvents.
adxTwinLifecycleEventsTableName string
The name of the Azure Data Explorer table used for recording twin lifecycle events. The table will not be created if this property is left unspecified.
eventHubConsumerGroup string
The EventHub consumer group to use when ADX reads from EventHub. Defaults to $Default.
identity ManagedIdentityReference
Managed identity properties for the time series database connection resource.
recordPropertyAndItemRemovals string | RecordPropertyAndItemRemovals
Specifies whether or not to record twin / relationship property and item removals, including removals of indexed or keyed values (such as map entries, array elements, etc.). This feature is de-activated unless explicitly set to 'true'. Setting this property to 'true' will generate an additional column in the property events table in ADX.
adx_database_name This property is required. str
The name of the Azure Data Explorer database.
adx_endpoint_uri This property is required. str
The URI of the Azure Data Explorer endpoint.
adx_resource_id This property is required. str
The resource ID of the Azure Data Explorer cluster.
event_hub_endpoint_uri This property is required. str
The URL of the EventHub namespace for identity-based authentication. It must include the protocol sb://
event_hub_entity_path This property is required. str
The EventHub name in the EventHub namespace for identity-based authentication.
event_hub_namespace_resource_id This property is required. str
The resource ID of the EventHub namespace.
adx_relationship_lifecycle_events_table_name str
The name of the Azure Data Explorer table used for recording relationship lifecycle events. The table will not be created if this property is left unspecified.
adx_table_name str
The name of the Azure Data Explorer table used for storing updates to properties of twins and relationships. Defaults to AdtPropertyEvents.
adx_twin_lifecycle_events_table_name str
The name of the Azure Data Explorer table used for recording twin lifecycle events. The table will not be created if this property is left unspecified.
event_hub_consumer_group str
The EventHub consumer group to use when ADX reads from EventHub. Defaults to $Default.
identity ManagedIdentityReference
Managed identity properties for the time series database connection resource.
record_property_and_item_removals str | RecordPropertyAndItemRemovals
Specifies whether or not to record twin / relationship property and item removals, including removals of indexed or keyed values (such as map entries, array elements, etc.). This feature is de-activated unless explicitly set to 'true'. Setting this property to 'true' will generate an additional column in the property events table in ADX.
adxDatabaseName This property is required. String
The name of the Azure Data Explorer database.
adxEndpointUri This property is required. String
The URI of the Azure Data Explorer endpoint.
adxResourceId This property is required. String
The resource ID of the Azure Data Explorer cluster.
eventHubEndpointUri This property is required. String
The URL of the EventHub namespace for identity-based authentication. It must include the protocol sb://
eventHubEntityPath This property is required. String
The EventHub name in the EventHub namespace for identity-based authentication.
eventHubNamespaceResourceId This property is required. String
The resource ID of the EventHub namespace.
adxRelationshipLifecycleEventsTableName String
The name of the Azure Data Explorer table used for recording relationship lifecycle events. The table will not be created if this property is left unspecified.
adxTableName String
The name of the Azure Data Explorer table used for storing updates to properties of twins and relationships. Defaults to AdtPropertyEvents.
adxTwinLifecycleEventsTableName String
The name of the Azure Data Explorer table used for recording twin lifecycle events. The table will not be created if this property is left unspecified.
eventHubConsumerGroup String
The EventHub consumer group to use when ADX reads from EventHub. Defaults to $Default.
identity Property Map
Managed identity properties for the time series database connection resource.
recordPropertyAndItemRemovals String | "true" | "false"
Specifies whether or not to record twin / relationship property and item removals, including removals of indexed or keyed values (such as map entries, array elements, etc.). This feature is de-activated unless explicitly set to 'true'. Setting this property to 'true' will generate an additional column in the property events table in ADX.

AzureDataExplorerConnectionPropertiesResponse
, AzureDataExplorerConnectionPropertiesResponseArgs

AdxDatabaseName This property is required. string
The name of the Azure Data Explorer database.
AdxEndpointUri This property is required. string
The URI of the Azure Data Explorer endpoint.
AdxResourceId This property is required. string
The resource ID of the Azure Data Explorer cluster.
EventHubEndpointUri This property is required. string
The URL of the EventHub namespace for identity-based authentication. It must include the protocol sb://
EventHubEntityPath This property is required. string
The EventHub name in the EventHub namespace for identity-based authentication.
EventHubNamespaceResourceId This property is required. string
The resource ID of the EventHub namespace.
ProvisioningState This property is required. string
The provisioning state.
AdxRelationshipLifecycleEventsTableName string
The name of the Azure Data Explorer table used for recording relationship lifecycle events. The table will not be created if this property is left unspecified.
AdxTableName string
The name of the Azure Data Explorer table used for storing updates to properties of twins and relationships. Defaults to AdtPropertyEvents.
AdxTwinLifecycleEventsTableName string
The name of the Azure Data Explorer table used for recording twin lifecycle events. The table will not be created if this property is left unspecified.
EventHubConsumerGroup string
The EventHub consumer group to use when ADX reads from EventHub. Defaults to $Default.
Identity Pulumi.AzureNative.DigitalTwins.Inputs.ManagedIdentityReferenceResponse
Managed identity properties for the time series database connection resource.
RecordPropertyAndItemRemovals string
Specifies whether or not to record twin / relationship property and item removals, including removals of indexed or keyed values (such as map entries, array elements, etc.). This feature is de-activated unless explicitly set to 'true'. Setting this property to 'true' will generate an additional column in the property events table in ADX.
AdxDatabaseName This property is required. string
The name of the Azure Data Explorer database.
AdxEndpointUri This property is required. string
The URI of the Azure Data Explorer endpoint.
AdxResourceId This property is required. string
The resource ID of the Azure Data Explorer cluster.
EventHubEndpointUri This property is required. string
The URL of the EventHub namespace for identity-based authentication. It must include the protocol sb://
EventHubEntityPath This property is required. string
The EventHub name in the EventHub namespace for identity-based authentication.
EventHubNamespaceResourceId This property is required. string
The resource ID of the EventHub namespace.
ProvisioningState This property is required. string
The provisioning state.
AdxRelationshipLifecycleEventsTableName string
The name of the Azure Data Explorer table used for recording relationship lifecycle events. The table will not be created if this property is left unspecified.
AdxTableName string
The name of the Azure Data Explorer table used for storing updates to properties of twins and relationships. Defaults to AdtPropertyEvents.
AdxTwinLifecycleEventsTableName string
The name of the Azure Data Explorer table used for recording twin lifecycle events. The table will not be created if this property is left unspecified.
EventHubConsumerGroup string
The EventHub consumer group to use when ADX reads from EventHub. Defaults to $Default.
Identity ManagedIdentityReferenceResponse
Managed identity properties for the time series database connection resource.
RecordPropertyAndItemRemovals string
Specifies whether or not to record twin / relationship property and item removals, including removals of indexed or keyed values (such as map entries, array elements, etc.). This feature is de-activated unless explicitly set to 'true'. Setting this property to 'true' will generate an additional column in the property events table in ADX.
adxDatabaseName This property is required. String
The name of the Azure Data Explorer database.
adxEndpointUri This property is required. String
The URI of the Azure Data Explorer endpoint.
adxResourceId This property is required. String
The resource ID of the Azure Data Explorer cluster.
eventHubEndpointUri This property is required. String
The URL of the EventHub namespace for identity-based authentication. It must include the protocol sb://
eventHubEntityPath This property is required. String
The EventHub name in the EventHub namespace for identity-based authentication.
eventHubNamespaceResourceId This property is required. String
The resource ID of the EventHub namespace.
provisioningState This property is required. String
The provisioning state.
adxRelationshipLifecycleEventsTableName String
The name of the Azure Data Explorer table used for recording relationship lifecycle events. The table will not be created if this property is left unspecified.
adxTableName String
The name of the Azure Data Explorer table used for storing updates to properties of twins and relationships. Defaults to AdtPropertyEvents.
adxTwinLifecycleEventsTableName String
The name of the Azure Data Explorer table used for recording twin lifecycle events. The table will not be created if this property is left unspecified.
eventHubConsumerGroup String
The EventHub consumer group to use when ADX reads from EventHub. Defaults to $Default.
identity ManagedIdentityReferenceResponse
Managed identity properties for the time series database connection resource.
recordPropertyAndItemRemovals String
Specifies whether or not to record twin / relationship property and item removals, including removals of indexed or keyed values (such as map entries, array elements, etc.). This feature is de-activated unless explicitly set to 'true'. Setting this property to 'true' will generate an additional column in the property events table in ADX.
adxDatabaseName This property is required. string
The name of the Azure Data Explorer database.
adxEndpointUri This property is required. string
The URI of the Azure Data Explorer endpoint.
adxResourceId This property is required. string
The resource ID of the Azure Data Explorer cluster.
eventHubEndpointUri This property is required. string
The URL of the EventHub namespace for identity-based authentication. It must include the protocol sb://
eventHubEntityPath This property is required. string
The EventHub name in the EventHub namespace for identity-based authentication.
eventHubNamespaceResourceId This property is required. string
The resource ID of the EventHub namespace.
provisioningState This property is required. string
The provisioning state.
adxRelationshipLifecycleEventsTableName string
The name of the Azure Data Explorer table used for recording relationship lifecycle events. The table will not be created if this property is left unspecified.
adxTableName string
The name of the Azure Data Explorer table used for storing updates to properties of twins and relationships. Defaults to AdtPropertyEvents.
adxTwinLifecycleEventsTableName string
The name of the Azure Data Explorer table used for recording twin lifecycle events. The table will not be created if this property is left unspecified.
eventHubConsumerGroup string
The EventHub consumer group to use when ADX reads from EventHub. Defaults to $Default.
identity ManagedIdentityReferenceResponse
Managed identity properties for the time series database connection resource.
recordPropertyAndItemRemovals string
Specifies whether or not to record twin / relationship property and item removals, including removals of indexed or keyed values (such as map entries, array elements, etc.). This feature is de-activated unless explicitly set to 'true'. Setting this property to 'true' will generate an additional column in the property events table in ADX.
adx_database_name This property is required. str
The name of the Azure Data Explorer database.
adx_endpoint_uri This property is required. str
The URI of the Azure Data Explorer endpoint.
adx_resource_id This property is required. str
The resource ID of the Azure Data Explorer cluster.
event_hub_endpoint_uri This property is required. str
The URL of the EventHub namespace for identity-based authentication. It must include the protocol sb://
event_hub_entity_path This property is required. str
The EventHub name in the EventHub namespace for identity-based authentication.
event_hub_namespace_resource_id This property is required. str
The resource ID of the EventHub namespace.
provisioning_state This property is required. str
The provisioning state.
adx_relationship_lifecycle_events_table_name str
The name of the Azure Data Explorer table used for recording relationship lifecycle events. The table will not be created if this property is left unspecified.
adx_table_name str
The name of the Azure Data Explorer table used for storing updates to properties of twins and relationships. Defaults to AdtPropertyEvents.
adx_twin_lifecycle_events_table_name str
The name of the Azure Data Explorer table used for recording twin lifecycle events. The table will not be created if this property is left unspecified.
event_hub_consumer_group str
The EventHub consumer group to use when ADX reads from EventHub. Defaults to $Default.
identity ManagedIdentityReferenceResponse
Managed identity properties for the time series database connection resource.
record_property_and_item_removals str
Specifies whether or not to record twin / relationship property and item removals, including removals of indexed or keyed values (such as map entries, array elements, etc.). This feature is de-activated unless explicitly set to 'true'. Setting this property to 'true' will generate an additional column in the property events table in ADX.
adxDatabaseName This property is required. String
The name of the Azure Data Explorer database.
adxEndpointUri This property is required. String
The URI of the Azure Data Explorer endpoint.
adxResourceId This property is required. String
The resource ID of the Azure Data Explorer cluster.
eventHubEndpointUri This property is required. String
The URL of the EventHub namespace for identity-based authentication. It must include the protocol sb://
eventHubEntityPath This property is required. String
The EventHub name in the EventHub namespace for identity-based authentication.
eventHubNamespaceResourceId This property is required. String
The resource ID of the EventHub namespace.
provisioningState This property is required. String
The provisioning state.
adxRelationshipLifecycleEventsTableName String
The name of the Azure Data Explorer table used for recording relationship lifecycle events. The table will not be created if this property is left unspecified.
adxTableName String
The name of the Azure Data Explorer table used for storing updates to properties of twins and relationships. Defaults to AdtPropertyEvents.
adxTwinLifecycleEventsTableName String
The name of the Azure Data Explorer table used for recording twin lifecycle events. The table will not be created if this property is left unspecified.
eventHubConsumerGroup String
The EventHub consumer group to use when ADX reads from EventHub. Defaults to $Default.
identity Property Map
Managed identity properties for the time series database connection resource.
recordPropertyAndItemRemovals String
Specifies whether or not to record twin / relationship property and item removals, including removals of indexed or keyed values (such as map entries, array elements, etc.). This feature is de-activated unless explicitly set to 'true'. Setting this property to 'true' will generate an additional column in the property events table in ADX.

IdentityType
, IdentityTypeArgs

SystemAssigned
SystemAssigned
UserAssigned
UserAssigned
IdentityTypeSystemAssigned
SystemAssigned
IdentityTypeUserAssigned
UserAssigned
SystemAssigned
SystemAssigned
UserAssigned
UserAssigned
SystemAssigned
SystemAssigned
UserAssigned
UserAssigned
SYSTEM_ASSIGNED
SystemAssigned
USER_ASSIGNED
UserAssigned
"SystemAssigned"
SystemAssigned
"UserAssigned"
UserAssigned

ManagedIdentityReference
, ManagedIdentityReferenceArgs

Type string | Pulumi.AzureNative.DigitalTwins.IdentityType
The type of managed identity used.
UserAssignedIdentity string
The user identity ARM resource id if the managed identity type is 'UserAssigned'.
Type string | IdentityType
The type of managed identity used.
UserAssignedIdentity string
The user identity ARM resource id if the managed identity type is 'UserAssigned'.
type String | IdentityType
The type of managed identity used.
userAssignedIdentity String
The user identity ARM resource id if the managed identity type is 'UserAssigned'.
type string | IdentityType
The type of managed identity used.
userAssignedIdentity string
The user identity ARM resource id if the managed identity type is 'UserAssigned'.
type str | IdentityType
The type of managed identity used.
user_assigned_identity str
The user identity ARM resource id if the managed identity type is 'UserAssigned'.
type String | "SystemAssigned" | "UserAssigned"
The type of managed identity used.
userAssignedIdentity String
The user identity ARM resource id if the managed identity type is 'UserAssigned'.

ManagedIdentityReferenceResponse
, ManagedIdentityReferenceResponseArgs

Type string
The type of managed identity used.
UserAssignedIdentity string
The user identity ARM resource id if the managed identity type is 'UserAssigned'.
Type string
The type of managed identity used.
UserAssignedIdentity string
The user identity ARM resource id if the managed identity type is 'UserAssigned'.
type String
The type of managed identity used.
userAssignedIdentity String
The user identity ARM resource id if the managed identity type is 'UserAssigned'.
type string
The type of managed identity used.
userAssignedIdentity string
The user identity ARM resource id if the managed identity type is 'UserAssigned'.
type str
The type of managed identity used.
user_assigned_identity str
The user identity ARM resource id if the managed identity type is 'UserAssigned'.
type String
The type of managed identity used.
userAssignedIdentity String
The user identity ARM resource id if the managed identity type is 'UserAssigned'.

RecordPropertyAndItemRemovals
, RecordPropertyAndItemRemovalsArgs

@True
true
@False
false
RecordPropertyAndItemRemovalsTrue
true
RecordPropertyAndItemRemovalsFalse
false
True_
true
False_
false
True
true
False
false
TRUE
true
FALSE
false
"true"
true
"false"
false

SystemDataResponse
, SystemDataResponseArgs

CreatedAt string
The timestamp of resource creation (UTC).
CreatedBy string
The identity that created the resource.
CreatedByType string
The type of identity that created the resource.
LastModifiedAt string
The timestamp of resource last modification (UTC)
LastModifiedBy string
The identity that last modified the resource.
LastModifiedByType string
The type of identity that last modified the resource.
CreatedAt string
The timestamp of resource creation (UTC).
CreatedBy string
The identity that created the resource.
CreatedByType string
The type of identity that created the resource.
LastModifiedAt string
The timestamp of resource last modification (UTC)
LastModifiedBy string
The identity that last modified the resource.
LastModifiedByType string
The type of identity that last modified the resource.
createdAt String
The timestamp of resource creation (UTC).
createdBy String
The identity that created the resource.
createdByType String
The type of identity that created the resource.
lastModifiedAt String
The timestamp of resource last modification (UTC)
lastModifiedBy String
The identity that last modified the resource.
lastModifiedByType String
The type of identity that last modified the resource.
createdAt string
The timestamp of resource creation (UTC).
createdBy string
The identity that created the resource.
createdByType string
The type of identity that created the resource.
lastModifiedAt string
The timestamp of resource last modification (UTC)
lastModifiedBy string
The identity that last modified the resource.
lastModifiedByType string
The type of identity that last modified the resource.
created_at str
The timestamp of resource creation (UTC).
created_by str
The identity that created the resource.
created_by_type str
The type of identity that created the resource.
last_modified_at str
The timestamp of resource last modification (UTC)
last_modified_by str
The identity that last modified the resource.
last_modified_by_type str
The type of identity that last modified the resource.
createdAt String
The timestamp of resource creation (UTC).
createdBy String
The identity that created the resource.
createdByType String
The type of identity that created the resource.
lastModifiedAt String
The timestamp of resource last modification (UTC)
lastModifiedBy String
The identity that last modified the resource.
lastModifiedByType String
The type of identity that last modified the resource.

Import

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

$ pulumi import azure-native:digitaltwins:TimeSeriesDatabaseConnection myConnection /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DigitalTwins/digitalTwinsInstances/{resourceName}/timeSeriesDatabaseConnections/{timeSeriesDatabaseConnectionName} 
Copy

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

Package Details

Repository
Azure Native pulumi/pulumi-azure-native
License
Apache-2.0