azure-native.kusto.IotHubDataConnection
Explore with Pulumi AI
Class representing an iot hub data connection. Azure REST API version: 2022-12-29. Prior API version in Azure Native 1.x: 2021-01-01.
Example Usage
KustoDataConnectionsCosmosDbCreateOrUpdate
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var iotHubDataConnection = new AzureNative.Kusto.IotHubDataConnection("iotHubDataConnection", new()
{
ClusterName = "kustoCluster",
DataConnectionName = "dataConnectionTest",
DatabaseName = "KustoDatabase1",
ResourceGroupName = "kustorptest",
});
});
package main
import (
kusto "github.com/pulumi/pulumi-azure-native-sdk/kusto/v2"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := kusto.NewIotHubDataConnection(ctx, "iotHubDataConnection", &kusto.IotHubDataConnectionArgs{
ClusterName: pulumi.String("kustoCluster"),
DataConnectionName: pulumi.String("dataConnectionTest"),
DatabaseName: pulumi.String("KustoDatabase1"),
ResourceGroupName: pulumi.String("kustorptest"),
})
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.kusto.IotHubDataConnection;
import com.pulumi.azurenative.kusto.IotHubDataConnectionArgs;
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 iotHubDataConnection = new IotHubDataConnection("iotHubDataConnection", IotHubDataConnectionArgs.builder()
.clusterName("kustoCluster")
.dataConnectionName("dataConnectionTest")
.databaseName("KustoDatabase1")
.resourceGroupName("kustorptest")
.build());
}
}
import pulumi
import pulumi_azure_native as azure_native
iot_hub_data_connection = azure_native.kusto.IotHubDataConnection("iotHubDataConnection",
cluster_name="kustoCluster",
data_connection_name="dataConnectionTest",
database_name="KustoDatabase1",
resource_group_name="kustorptest")
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const iotHubDataConnection = new azure_native.kusto.IotHubDataConnection("iotHubDataConnection", {
clusterName: "kustoCluster",
dataConnectionName: "dataConnectionTest",
databaseName: "KustoDatabase1",
resourceGroupName: "kustorptest",
});
resources:
iotHubDataConnection:
type: azure-native:kusto:IotHubDataConnection
properties:
clusterName: kustoCluster
dataConnectionName: dataConnectionTest
databaseName: KustoDatabase1
resourceGroupName: kustorptest
KustoDataConnectionsCreateOrUpdate
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var iotHubDataConnection = new AzureNative.Kusto.IotHubDataConnection("iotHubDataConnection", new()
{
ClusterName = "kustoCluster",
DataConnectionName = "dataConnectionTest",
DatabaseName = "KustoDatabase8",
ResourceGroupName = "kustorptest",
});
});
package main
import (
kusto "github.com/pulumi/pulumi-azure-native-sdk/kusto/v2"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := kusto.NewIotHubDataConnection(ctx, "iotHubDataConnection", &kusto.IotHubDataConnectionArgs{
ClusterName: pulumi.String("kustoCluster"),
DataConnectionName: pulumi.String("dataConnectionTest"),
DatabaseName: pulumi.String("KustoDatabase8"),
ResourceGroupName: pulumi.String("kustorptest"),
})
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.kusto.IotHubDataConnection;
import com.pulumi.azurenative.kusto.IotHubDataConnectionArgs;
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 iotHubDataConnection = new IotHubDataConnection("iotHubDataConnection", IotHubDataConnectionArgs.builder()
.clusterName("kustoCluster")
.dataConnectionName("dataConnectionTest")
.databaseName("KustoDatabase8")
.resourceGroupName("kustorptest")
.build());
}
}
import pulumi
import pulumi_azure_native as azure_native
iot_hub_data_connection = azure_native.kusto.IotHubDataConnection("iotHubDataConnection",
cluster_name="kustoCluster",
data_connection_name="dataConnectionTest",
database_name="KustoDatabase8",
resource_group_name="kustorptest")
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const iotHubDataConnection = new azure_native.kusto.IotHubDataConnection("iotHubDataConnection", {
clusterName: "kustoCluster",
dataConnectionName: "dataConnectionTest",
databaseName: "KustoDatabase8",
resourceGroupName: "kustorptest",
});
resources:
iotHubDataConnection:
type: azure-native:kusto:IotHubDataConnection
properties:
clusterName: kustoCluster
dataConnectionName: dataConnectionTest
databaseName: KustoDatabase8
resourceGroupName: kustorptest
KustoDataConnectionsEventGridCreateOrUpdate
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var iotHubDataConnection = new AzureNative.Kusto.IotHubDataConnection("iotHubDataConnection", new()
{
ClusterName = "kustoCluster",
DataConnectionName = "dataConnectionTest",
DatabaseName = "KustoDatabase8",
ResourceGroupName = "kustorptest",
});
});
package main
import (
kusto "github.com/pulumi/pulumi-azure-native-sdk/kusto/v2"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := kusto.NewIotHubDataConnection(ctx, "iotHubDataConnection", &kusto.IotHubDataConnectionArgs{
ClusterName: pulumi.String("kustoCluster"),
DataConnectionName: pulumi.String("dataConnectionTest"),
DatabaseName: pulumi.String("KustoDatabase8"),
ResourceGroupName: pulumi.String("kustorptest"),
})
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.kusto.IotHubDataConnection;
import com.pulumi.azurenative.kusto.IotHubDataConnectionArgs;
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 iotHubDataConnection = new IotHubDataConnection("iotHubDataConnection", IotHubDataConnectionArgs.builder()
.clusterName("kustoCluster")
.dataConnectionName("dataConnectionTest")
.databaseName("KustoDatabase8")
.resourceGroupName("kustorptest")
.build());
}
}
import pulumi
import pulumi_azure_native as azure_native
iot_hub_data_connection = azure_native.kusto.IotHubDataConnection("iotHubDataConnection",
cluster_name="kustoCluster",
data_connection_name="dataConnectionTest",
database_name="KustoDatabase8",
resource_group_name="kustorptest")
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const iotHubDataConnection = new azure_native.kusto.IotHubDataConnection("iotHubDataConnection", {
clusterName: "kustoCluster",
dataConnectionName: "dataConnectionTest",
databaseName: "KustoDatabase8",
resourceGroupName: "kustorptest",
});
resources:
iotHubDataConnection:
type: azure-native:kusto:IotHubDataConnection
properties:
clusterName: kustoCluster
dataConnectionName: dataConnectionTest
databaseName: KustoDatabase8
resourceGroupName: kustorptest
Create IotHubDataConnection Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new IotHubDataConnection(name: string, args: IotHubDataConnectionArgs, opts?: CustomResourceOptions);
@overload
def IotHubDataConnection(resource_name: str,
args: IotHubDataConnectionArgs,
opts: Optional[ResourceOptions] = None)
@overload
def IotHubDataConnection(resource_name: str,
opts: Optional[ResourceOptions] = None,
iot_hub_resource_id: Optional[str] = None,
consumer_group: Optional[str] = None,
shared_access_policy_name: Optional[str] = None,
resource_group_name: Optional[str] = None,
database_name: Optional[str] = None,
cluster_name: Optional[str] = None,
event_system_properties: Optional[Sequence[str]] = None,
database_routing: Optional[Union[str, DatabaseRouting]] = None,
location: Optional[str] = None,
mapping_rule_name: Optional[str] = None,
data_format: Optional[Union[str, IotHubDataFormat]] = None,
retrieval_start_date: Optional[str] = None,
data_connection_name: Optional[str] = None,
table_name: Optional[str] = None)
func NewIotHubDataConnection(ctx *Context, name string, args IotHubDataConnectionArgs, opts ...ResourceOption) (*IotHubDataConnection, error)
public IotHubDataConnection(string name, IotHubDataConnectionArgs args, CustomResourceOptions? opts = null)
public IotHubDataConnection(String name, IotHubDataConnectionArgs args)
public IotHubDataConnection(String name, IotHubDataConnectionArgs args, CustomResourceOptions options)
type: azure-native:kusto:IotHubDataConnection
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 IotHubDataConnectionArgs
- 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 IotHubDataConnectionArgs
- 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 IotHubDataConnectionArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args IotHubDataConnectionArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args IotHubDataConnectionArgs
- 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 iotHubDataConnectionResource = new AzureNative.Kusto.IotHubDataConnection("iotHubDataConnectionResource", new()
{
IotHubResourceId = "string",
ConsumerGroup = "string",
SharedAccessPolicyName = "string",
ResourceGroupName = "string",
DatabaseName = "string",
Kind = "string",
ClusterName = "string",
EventSystemProperties = new[]
{
"string",
},
DatabaseRouting = "string",
Location = "string",
MappingRuleName = "string",
DataFormat = "string",
RetrievalStartDate = "string",
DataConnectionName = "string",
TableName = "string",
});
example, err := kusto.NewIotHubDataConnection(ctx, "iotHubDataConnectionResource", &kusto.IotHubDataConnectionArgs{
IotHubResourceId: pulumi.String("string"),
ConsumerGroup: pulumi.String("string"),
SharedAccessPolicyName: pulumi.String("string"),
ResourceGroupName: pulumi.String("string"),
DatabaseName: pulumi.String("string"),
Kind: pulumi.String("string"),
ClusterName: pulumi.String("string"),
EventSystemProperties: pulumi.StringArray{
pulumi.String("string"),
},
DatabaseRouting: pulumi.String("string"),
Location: pulumi.String("string"),
MappingRuleName: pulumi.String("string"),
DataFormat: pulumi.String("string"),
RetrievalStartDate: pulumi.String("string"),
DataConnectionName: pulumi.String("string"),
TableName: pulumi.String("string"),
})
var iotHubDataConnectionResource = new IotHubDataConnection("iotHubDataConnectionResource", IotHubDataConnectionArgs.builder()
.iotHubResourceId("string")
.consumerGroup("string")
.sharedAccessPolicyName("string")
.resourceGroupName("string")
.databaseName("string")
.kind("string")
.clusterName("string")
.eventSystemProperties("string")
.databaseRouting("string")
.location("string")
.mappingRuleName("string")
.dataFormat("string")
.retrievalStartDate("string")
.dataConnectionName("string")
.tableName("string")
.build());
iot_hub_data_connection_resource = azure_native.kusto.IotHubDataConnection("iotHubDataConnectionResource",
iot_hub_resource_id="string",
consumer_group="string",
shared_access_policy_name="string",
resource_group_name="string",
database_name="string",
kind="string",
cluster_name="string",
event_system_properties=["string"],
database_routing="string",
location="string",
mapping_rule_name="string",
data_format="string",
retrieval_start_date="string",
data_connection_name="string",
table_name="string")
const iotHubDataConnectionResource = new azure_native.kusto.IotHubDataConnection("iotHubDataConnectionResource", {
iotHubResourceId: "string",
consumerGroup: "string",
sharedAccessPolicyName: "string",
resourceGroupName: "string",
databaseName: "string",
kind: "string",
clusterName: "string",
eventSystemProperties: ["string"],
databaseRouting: "string",
location: "string",
mappingRuleName: "string",
dataFormat: "string",
retrievalStartDate: "string",
dataConnectionName: "string",
tableName: "string",
});
type: azure-native:kusto:IotHubDataConnection
properties:
clusterName: string
consumerGroup: string
dataConnectionName: string
dataFormat: string
databaseName: string
databaseRouting: string
eventSystemProperties:
- string
iotHubResourceId: string
kind: string
location: string
mappingRuleName: string
resourceGroupName: string
retrievalStartDate: string
sharedAccessPolicyName: string
tableName: string
IotHubDataConnection 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 IotHubDataConnection resource accepts the following input properties:
- Cluster
Name string - The name of the Kusto cluster.
- Consumer
Group string - The iot hub consumer group.
- Database
Name string - The name of the database in the Kusto cluster.
- Iot
Hub stringResource Id - The resource ID of the Iot hub to be used to create a data connection.
- Resource
Group stringName - The name of the resource group containing the Kusto cluster.
- string
- The name of the share access policy
- Data
Connection stringName - The name of the data connection.
- Data
Format string | Pulumi.Azure Native. Kusto. Iot Hub Data Format - The data format of the message. Optionally the data format can be added to each message.
- Database
Routing string | Pulumi.Azure Native. Kusto. Database Routing - Indication for database routing information from the data connection, by default only database routing information is allowed
- Event
System List<string>Properties - System properties of the iot hub
- Location string
- Resource location.
- Mapping
Rule stringName - The mapping rule to be used to ingest the data. Optionally the mapping information can be added to each message.
- Retrieval
Start stringDate - When defined, the data connection retrieves existing Event hub events created since the Retrieval start date. It can only retrieve events retained by the Event hub, based on its retention period.
- Table
Name string - The table where the data should be ingested. Optionally the table information can be added to each message.
- Cluster
Name string - The name of the Kusto cluster.
- Consumer
Group string - The iot hub consumer group.
- Database
Name string - The name of the database in the Kusto cluster.
- Iot
Hub stringResource Id - The resource ID of the Iot hub to be used to create a data connection.
- Resource
Group stringName - The name of the resource group containing the Kusto cluster.
- string
- The name of the share access policy
- Data
Connection stringName - The name of the data connection.
- Data
Format string | IotHub Data Format - The data format of the message. Optionally the data format can be added to each message.
- Database
Routing string | DatabaseRouting - Indication for database routing information from the data connection, by default only database routing information is allowed
- Event
System []stringProperties - System properties of the iot hub
- Location string
- Resource location.
- Mapping
Rule stringName - The mapping rule to be used to ingest the data. Optionally the mapping information can be added to each message.
- Retrieval
Start stringDate - When defined, the data connection retrieves existing Event hub events created since the Retrieval start date. It can only retrieve events retained by the Event hub, based on its retention period.
- Table
Name string - The table where the data should be ingested. Optionally the table information can be added to each message.
- cluster
Name String - The name of the Kusto cluster.
- consumer
Group String - The iot hub consumer group.
- database
Name String - The name of the database in the Kusto cluster.
- iot
Hub StringResource Id - The resource ID of the Iot hub to be used to create a data connection.
- resource
Group StringName - The name of the resource group containing the Kusto cluster.
- String
- The name of the share access policy
- data
Connection StringName - The name of the data connection.
- data
Format String | IotHub Data Format - The data format of the message. Optionally the data format can be added to each message.
- database
Routing String | DatabaseRouting - Indication for database routing information from the data connection, by default only database routing information is allowed
- event
System List<String>Properties - System properties of the iot hub
- location String
- Resource location.
- mapping
Rule StringName - The mapping rule to be used to ingest the data. Optionally the mapping information can be added to each message.
- retrieval
Start StringDate - When defined, the data connection retrieves existing Event hub events created since the Retrieval start date. It can only retrieve events retained by the Event hub, based on its retention period.
- table
Name String - The table where the data should be ingested. Optionally the table information can be added to each message.
- cluster
Name string - The name of the Kusto cluster.
- consumer
Group string - The iot hub consumer group.
- database
Name string - The name of the database in the Kusto cluster.
- iot
Hub stringResource Id - The resource ID of the Iot hub to be used to create a data connection.
- resource
Group stringName - The name of the resource group containing the Kusto cluster.
- string
- The name of the share access policy
- data
Connection stringName - The name of the data connection.
- data
Format string | IotHub Data Format - The data format of the message. Optionally the data format can be added to each message.
- database
Routing string | DatabaseRouting - Indication for database routing information from the data connection, by default only database routing information is allowed
- event
System string[]Properties - System properties of the iot hub
- location string
- Resource location.
- mapping
Rule stringName - The mapping rule to be used to ingest the data. Optionally the mapping information can be added to each message.
- retrieval
Start stringDate - When defined, the data connection retrieves existing Event hub events created since the Retrieval start date. It can only retrieve events retained by the Event hub, based on its retention period.
- table
Name string - The table where the data should be ingested. Optionally the table information can be added to each message.
- cluster_
name str - The name of the Kusto cluster.
- consumer_
group str - The iot hub consumer group.
- database_
name str - The name of the database in the Kusto cluster.
- iot_
hub_ strresource_ id - The resource ID of the Iot hub to be used to create a data connection.
- resource_
group_ strname - The name of the resource group containing the Kusto cluster.
- str
- The name of the share access policy
- data_
connection_ strname - The name of the data connection.
- data_
format str | IotHub Data Format - The data format of the message. Optionally the data format can be added to each message.
- database_
routing str | DatabaseRouting - Indication for database routing information from the data connection, by default only database routing information is allowed
- event_
system_ Sequence[str]properties - System properties of the iot hub
- location str
- Resource location.
- mapping_
rule_ strname - The mapping rule to be used to ingest the data. Optionally the mapping information can be added to each message.
- retrieval_
start_ strdate - When defined, the data connection retrieves existing Event hub events created since the Retrieval start date. It can only retrieve events retained by the Event hub, based on its retention period.
- table_
name str - The table where the data should be ingested. Optionally the table information can be added to each message.
- cluster
Name String - The name of the Kusto cluster.
- consumer
Group String - The iot hub consumer group.
- database
Name String - The name of the database in the Kusto cluster.
- iot
Hub StringResource Id - The resource ID of the Iot hub to be used to create a data connection.
- resource
Group StringName - The name of the resource group containing the Kusto cluster.
- String
- The name of the share access policy
- data
Connection StringName - The name of the data connection.
- data
Format String | "MULTIJSON" | "JSON" | "CSV" | "TSV" | "SCSV" | "SOHSV" | "PSV" | "TXT" | "RAW" | "SINGLEJSON" | "AVRO" | "TSVE" | "PARQUET" | "ORC" | "APACHEAVRO" | "W3CLOGFILE" - The data format of the message. Optionally the data format can be added to each message.
- database
Routing String | "Single" | "Multi" - Indication for database routing information from the data connection, by default only database routing information is allowed
- event
System List<String>Properties - System properties of the iot hub
- location String
- Resource location.
- mapping
Rule StringName - The mapping rule to be used to ingest the data. Optionally the mapping information can be added to each message.
- retrieval
Start StringDate - When defined, the data connection retrieves existing Event hub events created since the Retrieval start date. It can only retrieve events retained by the Event hub, based on its retention period.
- table
Name String - The table where the data should be ingested. Optionally the table information can be added to each message.
Outputs
All input properties are implicitly available as output properties. Additionally, the IotHubDataConnection resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- The name of the resource
- Provisioning
State string - The provisioned state of the resource.
- Type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- The name of the resource
- Provisioning
State string - The provisioned state of the resource.
- Type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- The name of the resource
- provisioning
State String - The provisioned state of the resource.
- type String
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- id string
- The provider-assigned unique ID for this managed resource.
- name string
- The name of the resource
- provisioning
State string - The provisioned state of the resource.
- type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- id str
- The provider-assigned unique ID for this managed resource.
- name str
- The name of the resource
- provisioning_
state str - The provisioned state of the resource.
- type str
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- The name of the resource
- provisioning
State String - The provisioned state of the resource.
- type String
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
Supporting Types
DatabaseRouting, DatabaseRoutingArgs
- Single
- Single
- Multi
- Multi
- Database
Routing Single - Single
- Database
Routing Multi - Multi
- Single
- Single
- Multi
- Multi
- Single
- Single
- Multi
- Multi
- SINGLE
- Single
- MULTI
- Multi
- "Single"
- Single
- "Multi"
- Multi
IotHubDataFormat, IotHubDataFormatArgs
- MULTIJSON
- MULTIJSON
- JSON
- JSON
- CSV
- CSV
- TSV
- TSV
- SCSV
- SCSV
- SOHSV
- SOHSV
- PSV
- PSV
- TXT
- TXT
- RAW
- RAW
- SINGLEJSON
- SINGLEJSON
- AVRO
- AVRO
- TSVE
- TSVE
- PARQUET
- PARQUET
- ORC
- ORC
- APACHEAVRO
- APACHEAVRO
- W3CLOGFILE
- W3CLOGFILE
- Iot
Hub Data Format MULTIJSON - MULTIJSON
- Iot
Hub Data Format JSON - JSON
- Iot
Hub Data Format CSV - CSV
- Iot
Hub Data Format TSV - TSV
- Iot
Hub Data Format SCSV - SCSV
- Iot
Hub Data Format SOHSV - SOHSV
- Iot
Hub Data Format PSV - PSV
- Iot
Hub Data Format TXT - TXT
- Iot
Hub Data Format RAW - RAW
- Iot
Hub Data Format SINGLEJSON - SINGLEJSON
- Iot
Hub Data Format AVRO - AVRO
- Iot
Hub Data Format TSVE - TSVE
- Iot
Hub Data Format PARQUET - PARQUET
- Iot
Hub Data Format ORC - ORC
- Iot
Hub Data Format APACHEAVRO - APACHEAVRO
- Iot
Hub Data Format W3CLOGFILE - W3CLOGFILE
- MULTIJSON
- MULTIJSON
- JSON
- JSON
- CSV
- CSV
- TSV
- TSV
- SCSV
- SCSV
- SOHSV
- SOHSV
- PSV
- PSV
- TXT
- TXT
- RAW
- RAW
- SINGLEJSON
- SINGLEJSON
- AVRO
- AVRO
- TSVE
- TSVE
- PARQUET
- PARQUET
- ORC
- ORC
- APACHEAVRO
- APACHEAVRO
- W3CLOGFILE
- W3CLOGFILE
- MULTIJSON
- MULTIJSON
- JSON
- JSON
- CSV
- CSV
- TSV
- TSV
- SCSV
- SCSV
- SOHSV
- SOHSV
- PSV
- PSV
- TXT
- TXT
- RAW
- RAW
- SINGLEJSON
- SINGLEJSON
- AVRO
- AVRO
- TSVE
- TSVE
- PARQUET
- PARQUET
- ORC
- ORC
- APACHEAVRO
- APACHEAVRO
- W3CLOGFILE
- W3CLOGFILE
- MULTIJSON
- MULTIJSON
- JSON
- JSON
- CSV
- CSV
- TSV
- TSV
- SCSV
- SCSV
- SOHSV
- SOHSV
- PSV
- PSV
- TXT
- TXT
- RAW
- RAW
- SINGLEJSON
- SINGLEJSON
- AVRO
- AVRO
- TSVE
- TSVE
- PARQUET
- PARQUET
- ORC
- ORC
- APACHEAVRO
- APACHEAVRO
- W3_CLOGFILE
- W3CLOGFILE
- "MULTIJSON"
- MULTIJSON
- "JSON"
- JSON
- "CSV"
- CSV
- "TSV"
- TSV
- "SCSV"
- SCSV
- "SOHSV"
- SOHSV
- "PSV"
- PSV
- "TXT"
- TXT
- "RAW"
- RAW
- "SINGLEJSON"
- SINGLEJSON
- "AVRO"
- AVRO
- "TSVE"
- TSVE
- "PARQUET"
- PARQUET
- "ORC"
- ORC
- "APACHEAVRO"
- APACHEAVRO
- "W3CLOGFILE"
- W3CLOGFILE
Import
An existing resource can be imported using its type token, name, and identifier, e.g.
$ pulumi import azure-native:kusto:IotHubDataConnection kustoCluster/KustoDatabase8/dataConnectionTest /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Kusto/clusters/{clusterName}/databases/{databaseName}/dataConnections/{dataConnectionName}
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Azure Native pulumi/pulumi-azure-native
- License
- Apache-2.0