azure-native.digitaltwins.TimeSeriesDatabaseConnection
Explore with Pulumi AI
Describes a time series database connection resource. API Version: 2021-06-30-preview.
Example Usage
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",
            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",
        },
        ResourceGroupName = "resRg",
        ResourceName = "myDigitalTwinsService",
        TimeSeriesDatabaseConnectionName = "myConnection",
    });
});
Coming soon!
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 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(Map.ofEntries(
                Map.entry("adxDatabaseName", "myDatabase"),
                Map.entry("adxEndpointUri", "https://mycluster.kusto.windows.net"),
                Map.entry("adxResourceId", "/subscriptions/c493073e-2460-45ba-a403-f3e0df1e9feg/resourceGroups/testrg/providers/Microsoft.Kusto/clusters/mycluster"),
                Map.entry("adxTableName", "myTable"),
                Map.entry("connectionType", "AzureDataExplorer"),
                Map.entry("eventHubEndpointUri", "sb://myeh.servicebus.windows.net/"),
                Map.entry("eventHubEntityPath", "myeh"),
                Map.entry("eventHubNamespaceResourceId", "/subscriptions/c493073e-2460-45ba-a403-f3e0df1e9feg/resourceGroups/testrg/providers/Microsoft.EventHub/namespaces/myeh")
            ))
            .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",
    },
    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=azure_native.digitaltwins.AzureDataExplorerConnectionPropertiesResponseArgs(
        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",
    ),
    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
      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 = 
    {
        { "adxDatabaseName", "string" },
        { "adxEndpointUri", "string" },
        { "adxResourceId", "string" },
        { "connectionType", "AzureDataExplorer" },
        { "eventHubEndpointUri", "string" },
        { "eventHubEntityPath", "string" },
        { "eventHubNamespaceResourceId", "string" },
        { "adxTableName", "string" },
        { "eventHubConsumerGroup", "string" },
    },
    TimeSeriesDatabaseConnectionName = "string",
});
example, err := digitaltwins.NewTimeSeriesDatabaseConnection(ctx, "timeSeriesDatabaseConnectionResource", &digitaltwins.TimeSeriesDatabaseConnectionArgs{
	ResourceGroupName: "string",
	ResourceName:      "string",
	Properties: map[string]interface{}{
		"adxDatabaseName":             "string",
		"adxEndpointUri":              "string",
		"adxResourceId":               "string",
		"connectionType":              "AzureDataExplorer",
		"eventHubEndpointUri":         "string",
		"eventHubEntityPath":          "string",
		"eventHubNamespaceResourceId": "string",
		"adxTableName":                "string",
		"eventHubConsumerGroup":       "string",
	},
	TimeSeriesDatabaseConnectionName: "string",
})
var timeSeriesDatabaseConnectionResource = new TimeSeriesDatabaseConnection("timeSeriesDatabaseConnectionResource", TimeSeriesDatabaseConnectionArgs.builder()
    .resourceGroupName("string")
    .resourceName("string")
    .properties(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
    .timeSeriesDatabaseConnectionName("string")
    .build());
time_series_database_connection_resource = azure_native.digitaltwins.TimeSeriesDatabaseConnection("timeSeriesDatabaseConnectionResource",
    resource_group_name=string,
    resource_name_=string,
    properties={
        adxDatabaseName: string,
        adxEndpointUri: string,
        adxResourceId: string,
        connectionType: AzureDataExplorer,
        eventHubEndpointUri: string,
        eventHubEntityPath: string,
        eventHubNamespaceResourceId: string,
        adxTableName: string,
        eventHubConsumerGroup: string,
    },
    time_series_database_connection_name=string)
const timeSeriesDatabaseConnectionResource = new azure_native.digitaltwins.TimeSeriesDatabaseConnection("timeSeriesDatabaseConnectionResource", {
    resourceGroupName: "string",
    resourceName: "string",
    properties: {
        adxDatabaseName: "string",
        adxEndpointUri: "string",
        adxResourceId: "string",
        connectionType: "AzureDataExplorer",
        eventHubEndpointUri: "string",
        eventHubEntityPath: "string",
        eventHubNamespaceResourceId: "string",
        adxTableName: "string",
        eventHubConsumerGroup: "string",
    },
    timeSeriesDatabaseConnectionName: "string",
});
type: azure-native:digitaltwins:TimeSeriesDatabaseConnection
properties:
    properties:
        adxDatabaseName: string
        adxEndpointUri: string
        adxResourceId: string
        adxTableName: string
        connectionType: AzureDataExplorer
        eventHubConsumerGroup: string
        eventHubEndpointUri: string
        eventHubEntityPath: string
        eventHubNamespaceResourceId: 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.
- AdxTable stringName 
- The name of the Azure Data Explorer table. Defaults to AdtPropertyEvents.
- EventHub stringConsumer Group 
- The EventHub consumer group to use when ADX reads from EventHub. Defaults to $Default.
- 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.
- AdxTable stringName 
- The name of the Azure Data Explorer table. Defaults to AdtPropertyEvents.
- EventHub stringConsumer Group 
- The EventHub consumer group to use when ADX reads from EventHub. Defaults to $Default.
- 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.
- adxTable StringName 
- The name of the Azure Data Explorer table. Defaults to AdtPropertyEvents.
- eventHub StringConsumer Group 
- The EventHub consumer group to use when ADX reads from EventHub. Defaults to $Default.
- 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.
- adxTable stringName 
- The name of the Azure Data Explorer table. Defaults to AdtPropertyEvents.
- eventHub stringConsumer Group 
- The EventHub consumer group to use when ADX reads from EventHub. Defaults to $Default.
- 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_table_ strname 
- The name of the Azure Data Explorer table. Defaults to AdtPropertyEvents.
- event_hub_ strconsumer_ group 
- The EventHub consumer group to use when ADX reads from EventHub. Defaults to $Default.
- 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.
- adxTable StringName 
- The name of the Azure Data Explorer table. Defaults to AdtPropertyEvents.
- eventHub StringConsumer Group 
- The EventHub consumer group to use when ADX reads from EventHub. Defaults to $Default.
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.
- AdxTable stringName 
- The name of the Azure Data Explorer table. Defaults to AdtPropertyEvents.
- EventHub stringConsumer Group 
- The EventHub consumer group to use when ADX reads from EventHub. Defaults to $Default.
- 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.
- AdxTable stringName 
- The name of the Azure Data Explorer table. Defaults to AdtPropertyEvents.
- EventHub stringConsumer Group 
- The EventHub consumer group to use when ADX reads from EventHub. Defaults to $Default.
- 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.
- adxTable StringName 
- The name of the Azure Data Explorer table. Defaults to AdtPropertyEvents.
- eventHub StringConsumer Group 
- The EventHub consumer group to use when ADX reads from EventHub. Defaults to $Default.
- 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.
- adxTable stringName 
- The name of the Azure Data Explorer table. Defaults to AdtPropertyEvents.
- eventHub stringConsumer Group 
- The EventHub consumer group to use when ADX reads from EventHub. Defaults to $Default.
- 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_table_ strname 
- The name of the Azure Data Explorer table. Defaults to AdtPropertyEvents.
- event_hub_ strconsumer_ group 
- The EventHub consumer group to use when ADX reads from EventHub. Defaults to $Default.
- 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.
- adxTable StringName 
- The name of the Azure Data Explorer table. Defaults to AdtPropertyEvents.
- eventHub StringConsumer Group 
- The EventHub consumer group to use when ADX reads from EventHub. Defaults to $Default.
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/50016170-c839-41ba-a724-51e9df440b9e/resourcegroups/resRg/providers/Microsoft.DigitalTwins/digitalTwinsInstances/myDigitalTwinsService/timeSeriesDatabaseConnections/myConnection 
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- azure-native-v1 pulumi/pulumi-azure-native
- License
- Apache-2.0