azure-native.digitaltwins.TimeSeriesDatabaseConnection
Explore with Pulumi AI
Describes a time series database connection resource. Azure REST API version: 2023-01-31. Prior API version in Azure Native 1.x: 2021-06-30-preview.
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",
    });
});
package main
import (
	digitaltwins "github.com/pulumi/pulumi-azure-native-sdk/digitaltwins/v2"
	"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
	})
}
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());
    }
}
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",
});
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")
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
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",
    });
});
package main
import (
	digitaltwins "github.com/pulumi/pulumi-azure-native-sdk/digitaltwins/v2"
	"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
	})
}
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());
    }
}
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",
});
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")
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
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 string
- The unique name of the resource.
- args TimeSeriesDatabaseConnectionArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args 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 string
- The unique name of the resource.
- args TimeSeriesDatabaseConnectionArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args TimeSeriesDatabaseConnectionArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args 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",
});
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"),
})
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());
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")
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",
});
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
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:
- ResourceGroup stringName 
- The name of the resource group that contains the DigitalTwinsInstance.
- ResourceName string
- The name of the DigitalTwinsInstance.
- Properties
Pulumi.Azure Native. Digital Twins. Inputs. Azure Data Explorer Connection Properties 
- Properties of a specific time series database connection.
- TimeSeries stringDatabase Connection Name 
- Name of time series database connection.
- ResourceGroup stringName 
- The name of the resource group that contains the DigitalTwinsInstance.
- ResourceName string
- The name of the DigitalTwinsInstance.
- Properties
AzureData Explorer Connection Properties Args 
- Properties of a specific time series database connection.
- TimeSeries stringDatabase Connection Name 
- Name of time series database connection.
- resourceGroup StringName 
- The name of the resource group that contains the DigitalTwinsInstance.
- resourceName String
- The name of the DigitalTwinsInstance.
- properties
AzureData Explorer Connection Properties 
- Properties of a specific time series database connection.
- timeSeries StringDatabase Connection Name 
- Name of time series database connection.
- resourceGroup stringName 
- The name of the resource group that contains the DigitalTwinsInstance.
- resourceName string
- The name of the DigitalTwinsInstance.
- properties
AzureData Explorer Connection Properties 
- Properties of a specific time series database connection.
- timeSeries stringDatabase Connection Name 
- Name of time series database connection.
- resource_group_ strname 
- The name of the resource group that contains the DigitalTwinsInstance.
- resource_name str
- The name of the DigitalTwinsInstance.
- properties
AzureData Explorer Connection Properties Args 
- Properties of a specific time series database connection.
- time_series_ strdatabase_ connection_ name 
- Name of time series database connection.
- resourceGroup StringName 
- The name of the resource group that contains the DigitalTwinsInstance.
- resourceName String
- The name of the DigitalTwinsInstance.
- properties Property Map
- Properties of a specific time series database connection.
- timeSeries StringDatabase Connection Name 
- 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:
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- Extension resource name.
- SystemData Pulumi.Azure Native. Digital Twins. Outputs. System Data Response 
- Metadata pertaining to creation and last modification of the resource.
- Type string
- The resource type.
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- Extension resource name.
- SystemData SystemData Response 
- Metadata pertaining to creation and last modification of the resource.
- Type string
- The resource type.
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- Extension resource name.
- systemData SystemData Response 
- Metadata pertaining to creation and last modification of the resource.
- type String
- The resource type.
- id string
- The provider-assigned unique ID for this managed resource.
- name string
- Extension resource name.
- systemData SystemData Response 
- Metadata pertaining to creation and last modification of the resource.
- type string
- The resource type.
- id str
- The provider-assigned unique ID for this managed resource.
- name str
- Extension resource name.
- system_data SystemData Response 
- Metadata pertaining to creation and last modification of the resource.
- type str
- The resource type.
- 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          
- AdxDatabase stringName 
- The name of the Azure Data Explorer database.
- AdxEndpoint stringUri 
- The URI of the Azure Data Explorer endpoint.
- AdxResource stringId 
- The resource ID of the Azure Data Explorer cluster.
- EventHub stringEndpoint Uri 
- The URL of the EventHub namespace for identity-based authentication. It must include the protocol sb://
- EventHub stringEntity Path 
- The EventHub name in the EventHub namespace for identity-based authentication.
- EventHub stringNamespace Resource Id 
- The resource ID of the EventHub namespace.
- AdxRelationship stringLifecycle Events Table Name 
- 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.
- AdxTable stringName 
- The name of the Azure Data Explorer table used for storing updates to properties of twins and relationships. Defaults to AdtPropertyEvents.
- AdxTwin stringLifecycle Events Table Name 
- 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.
- EventHub stringConsumer Group 
- The EventHub consumer group to use when ADX reads from EventHub. Defaults to $Default.
- Identity
Pulumi.Azure Native. Digital Twins. Inputs. Managed Identity Reference 
- Managed identity properties for the time series database connection resource.
- RecordProperty string | Pulumi.And Item Removals Azure Native. Digital Twins. Record Property And Item Removals 
- 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.
- AdxDatabase stringName 
- The name of the Azure Data Explorer database.
- AdxEndpoint stringUri 
- The URI of the Azure Data Explorer endpoint.
- AdxResource stringId 
- The resource ID of the Azure Data Explorer cluster.
- EventHub stringEndpoint Uri 
- The URL of the EventHub namespace for identity-based authentication. It must include the protocol sb://
- EventHub stringEntity Path 
- The EventHub name in the EventHub namespace for identity-based authentication.
- EventHub stringNamespace Resource Id 
- The resource ID of the EventHub namespace.
- AdxRelationship stringLifecycle Events Table Name 
- 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.
- AdxTable stringName 
- The name of the Azure Data Explorer table used for storing updates to properties of twins and relationships. Defaults to AdtPropertyEvents.
- AdxTwin stringLifecycle Events Table Name 
- 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.
- EventHub stringConsumer Group 
- The EventHub consumer group to use when ADX reads from EventHub. Defaults to $Default.
- Identity
ManagedIdentity Reference 
- Managed identity properties for the time series database connection resource.
- RecordProperty string | RecordAnd Item Removals Property And Item Removals 
- 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.
- adxDatabase StringName 
- The name of the Azure Data Explorer database.
- adxEndpoint StringUri 
- The URI of the Azure Data Explorer endpoint.
- adxResource StringId 
- The resource ID of the Azure Data Explorer cluster.
- eventHub StringEndpoint Uri 
- The URL of the EventHub namespace for identity-based authentication. It must include the protocol sb://
- eventHub StringEntity Path 
- The EventHub name in the EventHub namespace for identity-based authentication.
- eventHub StringNamespace Resource Id 
- The resource ID of the EventHub namespace.
- adxRelationship StringLifecycle Events Table Name 
- 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.
- adxTable StringName 
- The name of the Azure Data Explorer table used for storing updates to properties of twins and relationships. Defaults to AdtPropertyEvents.
- adxTwin StringLifecycle Events Table Name 
- 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.
- eventHub StringConsumer Group 
- The EventHub consumer group to use when ADX reads from EventHub. Defaults to $Default.
- identity
ManagedIdentity Reference 
- Managed identity properties for the time series database connection resource.
- recordProperty String | RecordAnd Item Removals Property And Item Removals 
- 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.
- adxDatabase stringName 
- The name of the Azure Data Explorer database.
- adxEndpoint stringUri 
- The URI of the Azure Data Explorer endpoint.
- adxResource stringId 
- The resource ID of the Azure Data Explorer cluster.
- eventHub stringEndpoint Uri 
- The URL of the EventHub namespace for identity-based authentication. It must include the protocol sb://
- eventHub stringEntity Path 
- The EventHub name in the EventHub namespace for identity-based authentication.
- eventHub stringNamespace Resource Id 
- The resource ID of the EventHub namespace.
- adxRelationship stringLifecycle Events Table Name 
- 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.
- adxTable stringName 
- The name of the Azure Data Explorer table used for storing updates to properties of twins and relationships. Defaults to AdtPropertyEvents.
- adxTwin stringLifecycle Events Table Name 
- 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.
- eventHub stringConsumer Group 
- The EventHub consumer group to use when ADX reads from EventHub. Defaults to $Default.
- identity
ManagedIdentity Reference 
- Managed identity properties for the time series database connection resource.
- recordProperty string | RecordAnd Item Removals Property And Item Removals 
- 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_ strname 
- The name of the Azure Data Explorer database.
- adx_endpoint_ struri 
- The URI of the Azure Data Explorer endpoint.
- adx_resource_ strid 
- The resource ID of the Azure Data Explorer cluster.
- event_hub_ strendpoint_ uri 
- The URL of the EventHub namespace for identity-based authentication. It must include the protocol sb://
- event_hub_ strentity_ path 
- The EventHub name in the EventHub namespace for identity-based authentication.
- event_hub_ strnamespace_ resource_ id 
- The resource ID of the EventHub namespace.
- adx_relationship_ strlifecycle_ events_ table_ name 
- 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_ strname 
- The name of the Azure Data Explorer table used for storing updates to properties of twins and relationships. Defaults to AdtPropertyEvents.
- adx_twin_ strlifecycle_ events_ table_ name 
- 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_ strconsumer_ group 
- The EventHub consumer group to use when ADX reads from EventHub. Defaults to $Default.
- identity
ManagedIdentity Reference 
- Managed identity properties for the time series database connection resource.
- record_property_ str | Recordand_ item_ removals Property And Item Removals 
- 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.
- adxDatabase StringName 
- The name of the Azure Data Explorer database.
- adxEndpoint StringUri 
- The URI of the Azure Data Explorer endpoint.
- adxResource StringId 
- The resource ID of the Azure Data Explorer cluster.
- eventHub StringEndpoint Uri 
- The URL of the EventHub namespace for identity-based authentication. It must include the protocol sb://
- eventHub StringEntity Path 
- The EventHub name in the EventHub namespace for identity-based authentication.
- eventHub StringNamespace Resource Id 
- The resource ID of the EventHub namespace.
- adxRelationship StringLifecycle Events Table Name 
- 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.
- adxTable StringName 
- The name of the Azure Data Explorer table used for storing updates to properties of twins and relationships. Defaults to AdtPropertyEvents.
- adxTwin StringLifecycle Events Table Name 
- 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.
- eventHub StringConsumer Group 
- 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.
- recordProperty String | "true" | "false"And Item Removals 
- 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            
- AdxDatabase stringName 
- The name of the Azure Data Explorer database.
- AdxEndpoint stringUri 
- The URI of the Azure Data Explorer endpoint.
- AdxResource stringId 
- The resource ID of the Azure Data Explorer cluster.
- EventHub stringEndpoint Uri 
- The URL of the EventHub namespace for identity-based authentication. It must include the protocol sb://
- EventHub stringEntity Path 
- The EventHub name in the EventHub namespace for identity-based authentication.
- EventHub stringNamespace Resource Id 
- The resource ID of the EventHub namespace.
- ProvisioningState string
- The provisioning state.
- AdxRelationship stringLifecycle Events Table Name 
- 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.
- AdxTable stringName 
- The name of the Azure Data Explorer table used for storing updates to properties of twins and relationships. Defaults to AdtPropertyEvents.
- AdxTwin stringLifecycle Events Table Name 
- 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.
- EventHub stringConsumer Group 
- The EventHub consumer group to use when ADX reads from EventHub. Defaults to $Default.
- Identity
Pulumi.Azure Native. Digital Twins. Inputs. Managed Identity Reference Response 
- Managed identity properties for the time series database connection resource.
- RecordProperty stringAnd Item Removals 
- 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.
- AdxDatabase stringName 
- The name of the Azure Data Explorer database.
- AdxEndpoint stringUri 
- The URI of the Azure Data Explorer endpoint.
- AdxResource stringId 
- The resource ID of the Azure Data Explorer cluster.
- EventHub stringEndpoint Uri 
- The URL of the EventHub namespace for identity-based authentication. It must include the protocol sb://
- EventHub stringEntity Path 
- The EventHub name in the EventHub namespace for identity-based authentication.
- EventHub stringNamespace Resource Id 
- The resource ID of the EventHub namespace.
- ProvisioningState string
- The provisioning state.
- AdxRelationship stringLifecycle Events Table Name 
- 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.
- AdxTable stringName 
- The name of the Azure Data Explorer table used for storing updates to properties of twins and relationships. Defaults to AdtPropertyEvents.
- AdxTwin stringLifecycle Events Table Name 
- 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.
- EventHub stringConsumer Group 
- The EventHub consumer group to use when ADX reads from EventHub. Defaults to $Default.
- Identity
ManagedIdentity Reference Response 
- Managed identity properties for the time series database connection resource.
- RecordProperty stringAnd Item Removals 
- 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.
- adxDatabase StringName 
- The name of the Azure Data Explorer database.
- adxEndpoint StringUri 
- The URI of the Azure Data Explorer endpoint.
- adxResource StringId 
- The resource ID of the Azure Data Explorer cluster.
- eventHub StringEndpoint Uri 
- The URL of the EventHub namespace for identity-based authentication. It must include the protocol sb://
- eventHub StringEntity Path 
- The EventHub name in the EventHub namespace for identity-based authentication.
- eventHub StringNamespace Resource Id 
- The resource ID of the EventHub namespace.
- provisioningState String
- The provisioning state.
- adxRelationship StringLifecycle Events Table Name 
- 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.
- adxTable StringName 
- The name of the Azure Data Explorer table used for storing updates to properties of twins and relationships. Defaults to AdtPropertyEvents.
- adxTwin StringLifecycle Events Table Name 
- 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.
- eventHub StringConsumer Group 
- The EventHub consumer group to use when ADX reads from EventHub. Defaults to $Default.
- identity
ManagedIdentity Reference Response 
- Managed identity properties for the time series database connection resource.
- recordProperty StringAnd Item Removals 
- 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.
- adxDatabase stringName 
- The name of the Azure Data Explorer database.
- adxEndpoint stringUri 
- The URI of the Azure Data Explorer endpoint.
- adxResource stringId 
- The resource ID of the Azure Data Explorer cluster.
- eventHub stringEndpoint Uri 
- The URL of the EventHub namespace for identity-based authentication. It must include the protocol sb://
- eventHub stringEntity Path 
- The EventHub name in the EventHub namespace for identity-based authentication.
- eventHub stringNamespace Resource Id 
- The resource ID of the EventHub namespace.
- provisioningState string
- The provisioning state.
- adxRelationship stringLifecycle Events Table Name 
- 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.
- adxTable stringName 
- The name of the Azure Data Explorer table used for storing updates to properties of twins and relationships. Defaults to AdtPropertyEvents.
- adxTwin stringLifecycle Events Table Name 
- 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.
- eventHub stringConsumer Group 
- The EventHub consumer group to use when ADX reads from EventHub. Defaults to $Default.
- identity
ManagedIdentity Reference Response 
- Managed identity properties for the time series database connection resource.
- recordProperty stringAnd Item Removals 
- 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_ strname 
- The name of the Azure Data Explorer database.
- adx_endpoint_ struri 
- The URI of the Azure Data Explorer endpoint.
- adx_resource_ strid 
- The resource ID of the Azure Data Explorer cluster.
- event_hub_ strendpoint_ uri 
- The URL of the EventHub namespace for identity-based authentication. It must include the protocol sb://
- event_hub_ strentity_ path 
- The EventHub name in the EventHub namespace for identity-based authentication.
- event_hub_ strnamespace_ resource_ id 
- The resource ID of the EventHub namespace.
- provisioning_state str
- The provisioning state.
- adx_relationship_ strlifecycle_ events_ table_ name 
- 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_ strname 
- The name of the Azure Data Explorer table used for storing updates to properties of twins and relationships. Defaults to AdtPropertyEvents.
- adx_twin_ strlifecycle_ events_ table_ name 
- 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_ strconsumer_ group 
- The EventHub consumer group to use when ADX reads from EventHub. Defaults to $Default.
- identity
ManagedIdentity Reference Response 
- Managed identity properties for the time series database connection resource.
- record_property_ strand_ item_ removals 
- 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.
- adxDatabase StringName 
- The name of the Azure Data Explorer database.
- adxEndpoint StringUri 
- The URI of the Azure Data Explorer endpoint.
- adxResource StringId 
- The resource ID of the Azure Data Explorer cluster.
- eventHub StringEndpoint Uri 
- The URL of the EventHub namespace for identity-based authentication. It must include the protocol sb://
- eventHub StringEntity Path 
- The EventHub name in the EventHub namespace for identity-based authentication.
- eventHub StringNamespace Resource Id 
- The resource ID of the EventHub namespace.
- provisioningState String
- The provisioning state.
- adxRelationship StringLifecycle Events Table Name 
- 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.
- adxTable StringName 
- The name of the Azure Data Explorer table used for storing updates to properties of twins and relationships. Defaults to AdtPropertyEvents.
- adxTwin StringLifecycle Events Table Name 
- 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.
- eventHub StringConsumer Group 
- 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.
- recordProperty StringAnd Item Removals 
- 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
- IdentityType System Assigned 
- SystemAssigned
- IdentityType User Assigned 
- UserAssigned
- SystemAssigned 
- SystemAssigned
- UserAssigned 
- UserAssigned
- SystemAssigned 
- SystemAssigned
- UserAssigned 
- UserAssigned
- SYSTEM_ASSIGNED
- SystemAssigned
- USER_ASSIGNED
- UserAssigned
- "SystemAssigned" 
- SystemAssigned
- "UserAssigned" 
- UserAssigned
ManagedIdentityReference, ManagedIdentityReferenceArgs      
- Type
string | Pulumi.Azure Native. Digital Twins. Identity Type 
- The type of managed identity used.
- UserAssigned stringIdentity 
- The user identity ARM resource id if the managed identity type is 'UserAssigned'.
- Type
string | IdentityType 
- The type of managed identity used.
- UserAssigned stringIdentity 
- The user identity ARM resource id if the managed identity type is 'UserAssigned'.
- type
String | IdentityType 
- The type of managed identity used.
- userAssigned StringIdentity 
- The user identity ARM resource id if the managed identity type is 'UserAssigned'.
- type
string | IdentityType 
- The type of managed identity used.
- userAssigned stringIdentity 
- The user identity ARM resource id if the managed identity type is 'UserAssigned'.
- type
str | IdentityType 
- The type of managed identity used.
- user_assigned_ stridentity 
- The user identity ARM resource id if the managed identity type is 'UserAssigned'.
- type
String | "SystemAssigned" | "User Assigned" 
- The type of managed identity used.
- userAssigned StringIdentity 
- The user identity ARM resource id if the managed identity type is 'UserAssigned'.
ManagedIdentityReferenceResponse, ManagedIdentityReferenceResponseArgs        
- Type string
- The type of managed identity used.
- UserAssigned stringIdentity 
- The user identity ARM resource id if the managed identity type is 'UserAssigned'.
- Type string
- The type of managed identity used.
- UserAssigned stringIdentity 
- The user identity ARM resource id if the managed identity type is 'UserAssigned'.
- type String
- The type of managed identity used.
- userAssigned StringIdentity 
- The user identity ARM resource id if the managed identity type is 'UserAssigned'.
- type string
- The type of managed identity used.
- userAssigned stringIdentity 
- The user identity ARM resource id if the managed identity type is 'UserAssigned'.
- type str
- The type of managed identity used.
- user_assigned_ stridentity 
- The user identity ARM resource id if the managed identity type is 'UserAssigned'.
- type String
- The type of managed identity used.
- userAssigned StringIdentity 
- The user identity ARM resource id if the managed identity type is 'UserAssigned'.
RecordPropertyAndItemRemovals, RecordPropertyAndItemRemovalsArgs          
- @True
- true
- @False
- false
- RecordProperty And Item Removals True 
- true
- RecordProperty And Item Removals False 
- 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.
- CreatedBy stringType 
- The type of identity that created the resource.
- LastModified stringAt 
- The timestamp of resource last modification (UTC)
- LastModified stringBy 
- The identity that last modified the resource.
- LastModified stringBy Type 
- 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.
- CreatedBy stringType 
- The type of identity that created the resource.
- LastModified stringAt 
- The timestamp of resource last modification (UTC)
- LastModified stringBy 
- The identity that last modified the resource.
- LastModified stringBy Type 
- 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.
- createdBy StringType 
- The type of identity that created the resource.
- lastModified StringAt 
- The timestamp of resource last modification (UTC)
- lastModified StringBy 
- The identity that last modified the resource.
- lastModified StringBy Type 
- 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.
- createdBy stringType 
- The type of identity that created the resource.
- lastModified stringAt 
- The timestamp of resource last modification (UTC)
- lastModified stringBy 
- The identity that last modified the resource.
- lastModified stringBy Type 
- 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_ strtype 
- The type of identity that created the resource.
- last_modified_ strat 
- The timestamp of resource last modification (UTC)
- last_modified_ strby 
- The identity that last modified the resource.
- last_modified_ strby_ type 
- 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.
- createdBy StringType 
- The type of identity that created the resource.
- lastModified StringAt 
- The timestamp of resource last modification (UTC)
- lastModified StringBy 
- The identity that last modified the resource.
- lastModified StringBy Type 
- 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} 
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Azure Native pulumi/pulumi-azure-native
- License
- Apache-2.0