Kusto Pool Args
data class KustoPoolArgs(val enablePurge: Output<Boolean>? = null, val enableStreamingIngest: Output<Boolean>? = null, val kustoPoolName: Output<String>? = null, val location: Output<String>? = null, val optimizedAutoscale: Output<OptimizedAutoscaleArgs>? = 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. Uses Azure REST API version 2021-06-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()
{
EnablePurge = true,
EnableStreamingIngest = true,
KustoPoolName = "kustoclusterrptest4",
Location = "westus",
ResourceGroupName = "kustorptest",
Sku = new AzureNative.Synapse.Inputs.AzureSkuArgs
{
Capacity = 2,
Name = AzureNative.Synapse.SkuName.Storage_optimized,
Size = AzureNative.Synapse.SkuSize.Medium,
},
WorkspaceName = "synapseWorkspaceName",
WorkspaceUID = "11111111-2222-3333-444444444444",
});
});
Content copied to clipboard
package main
import (
synapse "github.com/pulumi/pulumi-azure-native-sdk/synapse/v2"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := synapse.NewKustoPool(ctx, "kustoPool", &synapse.KustoPoolArgs{
EnablePurge: pulumi.Bool(true),
EnableStreamingIngest: pulumi.Bool(true),
KustoPoolName: pulumi.String("kustoclusterrptest4"),
Location: pulumi.String("westus"),
ResourceGroupName: pulumi.String("kustorptest"),
Sku: &synapse.AzureSkuArgs{
Capacity: pulumi.Int(2),
Name: pulumi.String(synapse.SkuName_Storage_optimized),
Size: pulumi.String(synapse.SkuSizeMedium),
},
WorkspaceName: pulumi.String("synapseWorkspaceName"),
WorkspaceUID: pulumi.String("11111111-2222-3333-444444444444"),
})
if err != nil {
return err
}
return nil
})
}
Content copied to clipboard
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 com.pulumi.azurenative.synapse.inputs.AzureSkuArgs;
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()
.enablePurge(true)
.enableStreamingIngest(true)
.kustoPoolName("kustoclusterrptest4")
.location("westus")
.resourceGroupName("kustorptest")
.sku(AzureSkuArgs.builder()
.capacity(2)
.name("Storage optimized")
.size("Medium")
.build())
.workspaceName("synapseWorkspaceName")
.workspaceUID("11111111-2222-3333-444444444444")
.build());
}
}
Content copied to clipboard
Import
An existing resource can be imported using its type token, name, and identifier, e.g.
$ pulumi import azure-native:synapse:KustoPool KustoClusterRPTest4 /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Synapse/workspaces/{workspaceName}/kustoPools/{kustoPoolName}
Content copied to clipboard
Constructors
Link copied to clipboard
constructor(enablePurge: Output<Boolean>? = null, enableStreamingIngest: Output<Boolean>? = null, kustoPoolName: Output<String>? = null, location: Output<String>? = null, optimizedAutoscale: Output<OptimizedAutoscaleArgs>? = 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
A boolean value that indicates if the purge operations are enabled.
Link copied to clipboard
A boolean value that indicates if the streaming ingest is enabled.
Link copied to clipboard
The name of the Kusto pool.
Link copied to clipboard
Optimized auto scale definition.
Link copied to clipboard
The name of the resource group. The name is case insensitive.
Link copied to clipboard
The SKU of the kusto pool.
Link copied to clipboard
The name of the workspace.
Link copied to clipboard
The workspace unique identifier.