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 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")
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",
});
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
The TimeSeriesDatabaseConnection resource accepts the following input properties:
- Resource
Group stringName - The name of the resource group that contains the DigitalTwinsInstance.
- Resource
Name 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.
- Time
Series stringDatabase Connection Name - Name of time series database connection.
- Resource
Group stringName - The name of the resource group that contains the DigitalTwinsInstance.
- Resource
Name string - The name of the DigitalTwinsInstance.
- Properties
Azure
Data Explorer Connection Properties Args - Properties of a specific time series database connection.
- Time
Series stringDatabase Connection Name - Name of time series database connection.
- resource
Group StringName - The name of the resource group that contains the DigitalTwinsInstance.
- resource
Name String - The name of the DigitalTwinsInstance.
- properties
Azure
Data Explorer Connection Properties - Properties of a specific time series database connection.
- time
Series StringDatabase Connection Name - Name of time series database connection.
- resource
Group stringName - The name of the resource group that contains the DigitalTwinsInstance.
- resource
Name string - The name of the DigitalTwinsInstance.
- properties
Azure
Data Explorer Connection Properties - Properties of a specific time series database connection.
- time
Series 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
Azure
Data Explorer Connection Properties Args - Properties of a specific time series database connection.
- time_
series_ strdatabase_ connection_ name - Name of time series database connection.
- resource
Group StringName - The name of the resource group that contains the DigitalTwinsInstance.
- resource
Name String - The name of the DigitalTwinsInstance.
- properties Property Map
- Properties of a specific time series database connection.
- time
Series 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.
- System
Data 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.
- System
Data 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.
- system
Data 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.
- system
Data 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.
- system
Data Property Map - Metadata pertaining to creation and last modification of the resource.
- type String
- The resource type.
Supporting Types
AzureDataExplorerConnectionProperties, AzureDataExplorerConnectionPropertiesArgs
- Adx
Database stringName - The name of the Azure Data Explorer database.
- Adx
Endpoint stringUri - The URI of the Azure Data Explorer endpoint.
- Adx
Resource stringId - The resource ID of the Azure Data Explorer cluster.
- Event
Hub stringEndpoint Uri - The URL of the EventHub namespace for identity-based authentication. It must include the protocol sb://
- Event
Hub stringEntity Path - The EventHub name in the EventHub namespace for identity-based authentication.
- Event
Hub stringNamespace Resource Id - The resource ID of the EventHub namespace.
- Adx
Table stringName - The name of the Azure Data Explorer table. Defaults to AdtPropertyEvents.
- Event
Hub stringConsumer Group - The EventHub consumer group to use when ADX reads from EventHub. Defaults to $Default.
- Adx
Database stringName - The name of the Azure Data Explorer database.
- Adx
Endpoint stringUri - The URI of the Azure Data Explorer endpoint.
- Adx
Resource stringId - The resource ID of the Azure Data Explorer cluster.
- Event
Hub stringEndpoint Uri - The URL of the EventHub namespace for identity-based authentication. It must include the protocol sb://
- Event
Hub stringEntity Path - The EventHub name in the EventHub namespace for identity-based authentication.
- Event
Hub stringNamespace Resource Id - The resource ID of the EventHub namespace.
- Adx
Table stringName - The name of the Azure Data Explorer table. Defaults to AdtPropertyEvents.
- Event
Hub stringConsumer Group - The EventHub consumer group to use when ADX reads from EventHub. Defaults to $Default.
- adx
Database StringName - The name of the Azure Data Explorer database.
- adx
Endpoint StringUri - The URI of the Azure Data Explorer endpoint.
- adx
Resource StringId - The resource ID of the Azure Data Explorer cluster.
- event
Hub StringEndpoint Uri - The URL of the EventHub namespace for identity-based authentication. It must include the protocol sb://
- event
Hub StringEntity Path - The EventHub name in the EventHub namespace for identity-based authentication.
- event
Hub StringNamespace Resource Id - The resource ID of the EventHub namespace.
- adx
Table StringName - The name of the Azure Data Explorer table. Defaults to AdtPropertyEvents.
- event
Hub StringConsumer Group - The EventHub consumer group to use when ADX reads from EventHub. Defaults to $Default.
- adx
Database stringName - The name of the Azure Data Explorer database.
- adx
Endpoint stringUri - The URI of the Azure Data Explorer endpoint.
- adx
Resource stringId - The resource ID of the Azure Data Explorer cluster.
- event
Hub stringEndpoint Uri - The URL of the EventHub namespace for identity-based authentication. It must include the protocol sb://
- event
Hub stringEntity Path - The EventHub name in the EventHub namespace for identity-based authentication.
- event
Hub stringNamespace Resource Id - The resource ID of the EventHub namespace.
- adx
Table stringName - The name of the Azure Data Explorer table. Defaults to AdtPropertyEvents.
- event
Hub 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.
- adx
Database StringName - The name of the Azure Data Explorer database.
- adx
Endpoint StringUri - The URI of the Azure Data Explorer endpoint.
- adx
Resource StringId - The resource ID of the Azure Data Explorer cluster.
- event
Hub StringEndpoint Uri - The URL of the EventHub namespace for identity-based authentication. It must include the protocol sb://
- event
Hub StringEntity Path - The EventHub name in the EventHub namespace for identity-based authentication.
- event
Hub StringNamespace Resource Id - The resource ID of the EventHub namespace.
- adx
Table StringName - The name of the Azure Data Explorer table. Defaults to AdtPropertyEvents.
- event
Hub StringConsumer Group - The EventHub consumer group to use when ADX reads from EventHub. Defaults to $Default.
AzureDataExplorerConnectionPropertiesResponse, AzureDataExplorerConnectionPropertiesResponseArgs
- Adx
Database stringName - The name of the Azure Data Explorer database.
- Adx
Endpoint stringUri - The URI of the Azure Data Explorer endpoint.
- Adx
Resource stringId - The resource ID of the Azure Data Explorer cluster.
- Event
Hub stringEndpoint Uri - The URL of the EventHub namespace for identity-based authentication. It must include the protocol sb://
- Event
Hub stringEntity Path - The EventHub name in the EventHub namespace for identity-based authentication.
- Event
Hub stringNamespace Resource Id - The resource ID of the EventHub namespace.
- Provisioning
State string - The provisioning state.
- Adx
Table stringName - The name of the Azure Data Explorer table. Defaults to AdtPropertyEvents.
- Event
Hub stringConsumer Group - The EventHub consumer group to use when ADX reads from EventHub. Defaults to $Default.
- Adx
Database stringName - The name of the Azure Data Explorer database.
- Adx
Endpoint stringUri - The URI of the Azure Data Explorer endpoint.
- Adx
Resource stringId - The resource ID of the Azure Data Explorer cluster.
- Event
Hub stringEndpoint Uri - The URL of the EventHub namespace for identity-based authentication. It must include the protocol sb://
- Event
Hub stringEntity Path - The EventHub name in the EventHub namespace for identity-based authentication.
- Event
Hub stringNamespace Resource Id - The resource ID of the EventHub namespace.
- Provisioning
State string - The provisioning state.
- Adx
Table stringName - The name of the Azure Data Explorer table. Defaults to AdtPropertyEvents.
- Event
Hub stringConsumer Group - The EventHub consumer group to use when ADX reads from EventHub. Defaults to $Default.
- adx
Database StringName - The name of the Azure Data Explorer database.
- adx
Endpoint StringUri - The URI of the Azure Data Explorer endpoint.
- adx
Resource StringId - The resource ID of the Azure Data Explorer cluster.
- event
Hub StringEndpoint Uri - The URL of the EventHub namespace for identity-based authentication. It must include the protocol sb://
- event
Hub StringEntity Path - The EventHub name in the EventHub namespace for identity-based authentication.
- event
Hub StringNamespace Resource Id - The resource ID of the EventHub namespace.
- provisioning
State String - The provisioning state.
- adx
Table StringName - The name of the Azure Data Explorer table. Defaults to AdtPropertyEvents.
- event
Hub StringConsumer Group - The EventHub consumer group to use when ADX reads from EventHub. Defaults to $Default.
- adx
Database stringName - The name of the Azure Data Explorer database.
- adx
Endpoint stringUri - The URI of the Azure Data Explorer endpoint.
- adx
Resource stringId - The resource ID of the Azure Data Explorer cluster.
- event
Hub stringEndpoint Uri - The URL of the EventHub namespace for identity-based authentication. It must include the protocol sb://
- event
Hub stringEntity Path - The EventHub name in the EventHub namespace for identity-based authentication.
- event
Hub stringNamespace Resource Id - The resource ID of the EventHub namespace.
- provisioning
State string - The provisioning state.
- adx
Table stringName - The name of the Azure Data Explorer table. Defaults to AdtPropertyEvents.
- event
Hub 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.
- adx
Database StringName - The name of the Azure Data Explorer database.
- adx
Endpoint StringUri - The URI of the Azure Data Explorer endpoint.
- adx
Resource StringId - The resource ID of the Azure Data Explorer cluster.
- event
Hub StringEndpoint Uri - The URL of the EventHub namespace for identity-based authentication. It must include the protocol sb://
- event
Hub StringEntity Path - The EventHub name in the EventHub namespace for identity-based authentication.
- event
Hub StringNamespace Resource Id - The resource ID of the EventHub namespace.
- provisioning
State String - The provisioning state.
- adx
Table StringName - The name of the Azure Data Explorer table. Defaults to AdtPropertyEvents.
- event
Hub StringConsumer Group - The EventHub consumer group to use when ADX reads from EventHub. Defaults to $Default.
SystemDataResponse, SystemDataResponseArgs
- Created
At string - The timestamp of resource creation (UTC).
- Created
By string - The identity that created the resource.
- Created
By stringType - The type of identity that created the resource.
- Last
Modified stringAt - The timestamp of resource last modification (UTC)
- Last
Modified stringBy - The identity that last modified the resource.
- Last
Modified stringBy Type - The type of identity that last modified the resource.
- Created
At string - The timestamp of resource creation (UTC).
- Created
By string - The identity that created the resource.
- Created
By stringType - The type of identity that created the resource.
- Last
Modified stringAt - The timestamp of resource last modification (UTC)
- Last
Modified stringBy - The identity that last modified the resource.
- Last
Modified stringBy Type - The type of identity that last modified the resource.
- created
At String - The timestamp of resource creation (UTC).
- created
By String - The identity that created the resource.
- created
By StringType - The type of identity that created the resource.
- last
Modified StringAt - The timestamp of resource last modification (UTC)
- last
Modified StringBy - The identity that last modified the resource.
- last
Modified StringBy Type - The type of identity that last modified the resource.
- created
At string - The timestamp of resource creation (UTC).
- created
By string - The identity that created the resource.
- created
By stringType - The type of identity that created the resource.
- last
Modified stringAt - The timestamp of resource last modification (UTC)
- last
Modified stringBy - The identity that last modified the resource.
- last
Modified 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.
- created
At String - The timestamp of resource creation (UTC).
- created
By String - The identity that created the resource.
- created
By StringType - The type of identity that created the resource.
- last
Modified StringAt - The timestamp of resource last modification (UTC)
- last
Modified StringBy - The identity that last modified the resource.
- last
Modified 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