KustoPoolArgs

data class KustoPoolArgs(val engineType: Output<Either<String, EngineType>>? = null, val kustoPoolName: Output<String>? = null, val location: Output<String>? = null, val resourceGroupName: Output<String>? = null, val sku: Output<AzureSkuArgs>? = null, val tags: Output<Map<String, String>>? = null, val workspaceName: Output<String>? = null, val workspaceUid: Output<String>? = null) : ConvertibleToJava<KustoPoolArgs>

Class representing a Kusto kusto pool. API Version: 2021-04-01-preview.

Example Usage

kustoPoolsCreateOrUpdate

using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var kustoPool = new AzureNative.Synapse.KustoPool("kustoPool", new()
{
KustoPoolName = "kustoclusterrptest4",
Location = "westus",
ResourceGroupName = "kustorptest",
Sku = new AzureNative.Synapse.Inputs.AzureSkuArgs
{
Capacity = 2,
Name = "Standard_L8s",
Tier = "Standard",
},
WorkspaceName = "synapseWorkspaceName",
WorkspaceUid = "11111111-2222-3333-444444444444",
});
});
package main
import (
synapse "github.com/pulumi/pulumi-azure-native-sdk/synapse"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := synapse.NewkustoPool(ctx, "kustoPool", &synapse.kustoPoolArgs{
KustoPoolName: pulumi.String("kustoclusterrptest4"),
Location: pulumi.String("westus"),
ResourceGroupName: pulumi.String("kustorptest"),
Sku: &synapse.AzureSkuArgs{
Capacity: pulumi.Int(2),
Name: pulumi.String("Standard_L8s"),
Tier: pulumi.String("Standard"),
},
WorkspaceName: pulumi.String("synapseWorkspaceName"),
WorkspaceUid: pulumi.String("11111111-2222-3333-444444444444"),
})
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.synapse.kustoPool;
import com.pulumi.azurenative.synapse.KustoPoolArgs;
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 kustoPool = new KustoPool("kustoPool", KustoPoolArgs.builder()
.kustoPoolName("kustoclusterrptest4")
.location("westus")
.resourceGroupName("kustorptest")
.sku(Map.ofEntries(
Map.entry("capacity", 2),
Map.entry("name", "Standard_L8s"),
Map.entry("tier", "Standard")
))
.workspaceName("synapseWorkspaceName")
.workspaceUid("11111111-2222-3333-444444444444")
.build());
}
}

Import

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

$ pulumi import azure-native:synapse:kustoPool KustoClusterRPTest4 /subscriptions/12345678-1234-1234-1234-123456789098/resourceGroups/kustorptest/providers/Microsoft.Synapse/workspaces/synapseWorkspaceName/kustopools/KustoClusterRPTest4

Constructors

Link copied to clipboard
constructor(engineType: Output<Either<String, EngineType>>? = null, kustoPoolName: Output<String>? = null, location: Output<String>? = null, resourceGroupName: Output<String>? = null, sku: Output<AzureSkuArgs>? = null, tags: Output<Map<String, String>>? = null, workspaceName: Output<String>? = null, workspaceUid: Output<String>? = null)

Properties

Link copied to clipboard
val engineType: Output<Either<String, EngineType>>? = null

The engine type

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

The name of the Kusto pool.

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

The geo-location where the resource lives

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

The name of the resource group. The name is case insensitive.

Link copied to clipboard
val sku: Output<AzureSkuArgs>? = null

The SKU of the kusto pool.

Link copied to clipboard
val tags: Output<Map<String, String>>? = null

Resource tags.

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

The name of the workspace

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

The workspace unique identifier.

Functions

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