IotHubDataConnectionArgs

data class IotHubDataConnectionArgs(val clusterName: Output<String>? = null, val consumerGroup: Output<String>? = null, val dataConnectionName: Output<String>? = null, val dataFormat: Output<Either<String, IotHubDataFormat>>? = null, val databaseName: Output<String>? = null, val eventSystemProperties: Output<List<String>>? = null, val iotHubResourceId: Output<String>? = null, val kind: Output<String>? = null, val location: Output<String>? = null, val mappingRuleName: Output<String>? = null, val resourceGroupName: Output<String>? = null, val sharedAccessPolicyName: Output<String>? = null, val tableName: Output<String>? = null) : ConvertibleToJava<IotHubDataConnectionArgs>

Class representing an iot hub data connection. API Version: 2021-01-01.

Example Usage

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 = "kustoclusterrptest4",
DataConnectionName = "DataConnections8",
DatabaseName = "KustoDatabase8",
ResourceGroupName = "kustorptest",
});
});
package main
import (
kusto "github.com/pulumi/pulumi-azure-native-sdk/kusto"
"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("kustoclusterrptest4"),
DataConnectionName: pulumi.String("DataConnections8"),
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("kustoclusterrptest4")
.dataConnectionName("DataConnections8")
.databaseName("KustoDatabase8")
.resourceGroupName("kustorptest")
.build());
}
}

Import

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

$ pulumi import azure-native:kusto:IotHubDataConnection KustoClusterRPTest4/KustoDatabase8/DataConnections8 /subscriptions/12345678-1234-1234-1234-123456789098/resourceGroups/kustorptest/providers/Microsoft.Kusto/Clusters/KustoClusterRPTest4/Databases/KustoDatabase8/DataConnections/DataConnections8

Constructors

Link copied to clipboard
constructor(clusterName: Output<String>? = null, consumerGroup: Output<String>? = null, dataConnectionName: Output<String>? = null, dataFormat: Output<Either<String, IotHubDataFormat>>? = null, databaseName: Output<String>? = null, eventSystemProperties: Output<List<String>>? = null, iotHubResourceId: Output<String>? = null, kind: Output<String>? = null, location: Output<String>? = null, mappingRuleName: Output<String>? = null, resourceGroupName: Output<String>? = null, sharedAccessPolicyName: Output<String>? = null, tableName: Output<String>? = null)

Properties

Link copied to clipboard
val clusterName: Output<String>? = null

The name of the Kusto cluster.

Link copied to clipboard
val consumerGroup: Output<String>? = null

The iot hub consumer group.

Link copied to clipboard
val databaseName: Output<String>? = null

The name of the database in the Kusto cluster.

Link copied to clipboard
val dataConnectionName: Output<String>? = null

The name of the data connection.

Link copied to clipboard
val dataFormat: Output<Either<String, IotHubDataFormat>>? = null

The data format of the message. Optionally the data format can be added to each message.

Link copied to clipboard
val eventSystemProperties: Output<List<String>>? = null

System properties of the iot hub

Link copied to clipboard
val iotHubResourceId: Output<String>? = null

The resource ID of the Iot hub to be used to create a data connection.

Link copied to clipboard
val kind: Output<String>? = null

Kind of the endpoint for the data connection Expected value is 'IotHub'.

Link copied to clipboard
val location: Output<String>? = null

Resource location.

Link copied to clipboard
val mappingRuleName: Output<String>? = null

The mapping rule to be used to ingest the data. Optionally the mapping information can be added to each message.

Link copied to clipboard
val resourceGroupName: Output<String>? = null

The name of the resource group containing the Kusto cluster.

Link copied to clipboard
val sharedAccessPolicyName: Output<String>? = null

The name of the share access policy

Link copied to clipboard
val tableName: Output<String>? = null

The table where the data should be ingested. Optionally the table information can be added to each message.

Functions

Link copied to clipboard
open override fun toJava(): IotHubDataConnectionArgs