1. Packages
  2. Azure Native v1
  3. API Docs
  4. synapse
  5. KustoPool
These are the docs for Azure Native v1. We recommenend using the latest version, Azure Native v2.
Azure Native v1 v1.104.0 published on Thursday, Jul 6, 2023 by Pulumi

azure-native.synapse.KustoPool

Explore with Pulumi AI

azure-native-v1 logo
These are the docs for Azure Native v1. We recommenend using the latest version, Azure Native v2.
Azure Native v1 v1.104.0 published on Thursday, Jul 6, 2023 by Pulumi

    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 pulumi
    import pulumi_azure_native as azure_native
    
    kusto_pool = azure_native.synapse.KustoPool("kustoPool",
        kusto_pool_name="kustoclusterrptest4",
        location="westus",
        resource_group_name="kustorptest",
        sku=azure_native.synapse.AzureSkuArgs(
            capacity=2,
            name="Standard_L8s",
            tier="Standard",
        ),
        workspace_name="synapseWorkspaceName",
        workspace_uid="11111111-2222-3333-444444444444")
    
    import * as pulumi from "@pulumi/pulumi";
    import * as azure_native from "@pulumi/azure-native";
    
    const kustoPool = new azure_native.synapse.KustoPool("kustoPool", {
        kustoPoolName: "kustoclusterrptest4",
        location: "westus",
        resourceGroupName: "kustorptest",
        sku: {
            capacity: 2,
            name: "Standard_L8s",
            tier: "Standard",
        },
        workspaceName: "synapseWorkspaceName",
        workspaceUid: "11111111-2222-3333-444444444444",
    });
    
    resources:
      kustoPool:
        type: azure-native:synapse:kustoPool
        properties:
          kustoPoolName: kustoclusterrptest4
          location: westus
          resourceGroupName: kustorptest
          sku:
            capacity: 2
            name: Standard_L8s
            tier: Standard
          workspaceName: synapseWorkspaceName
          workspaceUid: 11111111-2222-3333-444444444444
    

    Create KustoPool Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new KustoPool(name: string, args: KustoPoolArgs, opts?: CustomResourceOptions);
    @overload
    def KustoPool(resource_name: str,
                  args: KustoPoolArgs,
                  opts: Optional[ResourceOptions] = None)
    
    @overload
    def KustoPool(resource_name: str,
                  opts: Optional[ResourceOptions] = None,
                  resource_group_name: Optional[str] = None,
                  sku: Optional[AzureSkuArgs] = None,
                  workspace_name: Optional[str] = None,
                  engine_type: Optional[Union[str, EngineType]] = None,
                  kusto_pool_name: Optional[str] = None,
                  location: Optional[str] = None,
                  tags: Optional[Mapping[str, str]] = None,
                  workspace_uid: Optional[str] = None)
    func NewKustoPool(ctx *Context, name string, args KustoPoolArgs, opts ...ResourceOption) (*KustoPool, error)
    public KustoPool(string name, KustoPoolArgs args, CustomResourceOptions? opts = null)
    public KustoPool(String name, KustoPoolArgs args)
    public KustoPool(String name, KustoPoolArgs args, CustomResourceOptions options)
    
    type: azure-native:synapse:kustoPool
    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 KustoPoolArgs
    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 KustoPoolArgs
    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 KustoPoolArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args KustoPoolArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args KustoPoolArgs
    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 kustoPoolResource = new AzureNative.Synapse.KustoPool("kustoPoolResource", new()
    {
        ResourceGroupName = "string",
        Sku = 
        {
            { "name", "string" },
            { "tier", "string" },
            { "capacity", 0 },
        },
        WorkspaceName = "string",
        EngineType = "string",
        KustoPoolName = "string",
        Location = "string",
        Tags = 
        {
            { "string", "string" },
        },
        WorkspaceUid = "string",
    });
    
    example, err := synapse.NewKustoPool(ctx, "kustoPoolResource", &synapse.KustoPoolArgs{
    	ResourceGroupName: "string",
    	Sku: map[string]interface{}{
    		"name":     "string",
    		"tier":     "string",
    		"capacity": 0,
    	},
    	WorkspaceName: "string",
    	EngineType:    "string",
    	KustoPoolName: "string",
    	Location:      "string",
    	Tags: map[string]interface{}{
    		"string": "string",
    	},
    	WorkspaceUid: "string",
    })
    
    var kustoPoolResource = new KustoPool("kustoPoolResource", KustoPoolArgs.builder()
        .resourceGroupName("string")
        .sku(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
        .workspaceName("string")
        .engineType("string")
        .kustoPoolName("string")
        .location("string")
        .tags(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
        .workspaceUid("string")
        .build());
    
    kusto_pool_resource = azure_native.synapse.KustoPool("kustoPoolResource",
        resource_group_name=string,
        sku={
            name: string,
            tier: string,
            capacity: 0,
        },
        workspace_name=string,
        engine_type=string,
        kusto_pool_name=string,
        location=string,
        tags={
            string: string,
        },
        workspace_uid=string)
    
    const kustoPoolResource = new azure_native.synapse.KustoPool("kustoPoolResource", {
        resourceGroupName: "string",
        sku: {
            name: "string",
            tier: "string",
            capacity: 0,
        },
        workspaceName: "string",
        engineType: "string",
        kustoPoolName: "string",
        location: "string",
        tags: {
            string: "string",
        },
        workspaceUid: "string",
    });
    
    type: azure-native:synapse:kustoPool
    properties:
        engineType: string
        kustoPoolName: string
        location: string
        resourceGroupName: string
        sku:
            capacity: 0
            name: string
            tier: string
        tags:
            string: string
        workspaceName: string
        workspaceUid: string
    

    KustoPool 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 KustoPool resource accepts the following input properties:

    ResourceGroupName string
    The name of the resource group. The name is case insensitive.
    Sku Pulumi.AzureNative.Synapse.Inputs.AzureSku
    The SKU of the kusto pool.
    WorkspaceName string
    The name of the workspace
    EngineType string | Pulumi.AzureNative.Synapse.EngineType
    The engine type
    KustoPoolName string
    The name of the Kusto pool.
    Location string
    The geo-location where the resource lives
    Tags Dictionary<string, string>
    Resource tags.
    WorkspaceUid string
    The workspace unique identifier.
    ResourceGroupName string
    The name of the resource group. The name is case insensitive.
    Sku AzureSkuArgs
    The SKU of the kusto pool.
    WorkspaceName string
    The name of the workspace
    EngineType string | EngineType
    The engine type
    KustoPoolName string
    The name of the Kusto pool.
    Location string
    The geo-location where the resource lives
    Tags map[string]string
    Resource tags.
    WorkspaceUid string
    The workspace unique identifier.
    resourceGroupName String
    The name of the resource group. The name is case insensitive.
    sku AzureSku
    The SKU of the kusto pool.
    workspaceName String
    The name of the workspace
    engineType String | EngineType
    The engine type
    kustoPoolName String
    The name of the Kusto pool.
    location String
    The geo-location where the resource lives
    tags Map<String,String>
    Resource tags.
    workspaceUid String
    The workspace unique identifier.
    resourceGroupName string
    The name of the resource group. The name is case insensitive.
    sku AzureSku
    The SKU of the kusto pool.
    workspaceName string
    The name of the workspace
    engineType string | EngineType
    The engine type
    kustoPoolName string
    The name of the Kusto pool.
    location string
    The geo-location where the resource lives
    tags {[key: string]: string}
    Resource tags.
    workspaceUid string
    The workspace unique identifier.
    resource_group_name str
    The name of the resource group. The name is case insensitive.
    sku AzureSkuArgs
    The SKU of the kusto pool.
    workspace_name str
    The name of the workspace
    engine_type str | EngineType
    The engine type
    kusto_pool_name str
    The name of the Kusto pool.
    location str
    The geo-location where the resource lives
    tags Mapping[str, str]
    Resource tags.
    workspace_uid str
    The workspace unique identifier.
    resourceGroupName String
    The name of the resource group. The name is case insensitive.
    sku Property Map
    The SKU of the kusto pool.
    workspaceName String
    The name of the workspace
    engineType String | "V2" | "V3"
    The engine type
    kustoPoolName String
    The name of the Kusto pool.
    location String
    The geo-location where the resource lives
    tags Map<String>
    Resource tags.
    workspaceUid String
    The workspace unique identifier.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the KustoPool resource produces the following output properties:

    DataIngestionUri string
    The Kusto Pool data ingestion URI.
    Etag string
    A unique read-only string that changes whenever the resource is updated.
    Id string
    The provider-assigned unique ID for this managed resource.
    Name string
    The name of the resource
    ProvisioningState string
    The provisioned state of the resource.
    State string
    The state of the resource.
    StateReason string
    The reason for the Kusto Pool's current state.
    SystemData Pulumi.AzureNative.Synapse.Outputs.SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    Type string
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    Uri string
    The Kusto Pool URI.
    DataIngestionUri string
    The Kusto Pool data ingestion URI.
    Etag string
    A unique read-only string that changes whenever the resource is updated.
    Id string
    The provider-assigned unique ID for this managed resource.
    Name string
    The name of the resource
    ProvisioningState string
    The provisioned state of the resource.
    State string
    The state of the resource.
    StateReason string
    The reason for the Kusto Pool's current state.
    SystemData SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    Type string
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    Uri string
    The Kusto Pool URI.
    dataIngestionUri String
    The Kusto Pool data ingestion URI.
    etag String
    A unique read-only string that changes whenever the resource is updated.
    id String
    The provider-assigned unique ID for this managed resource.
    name String
    The name of the resource
    provisioningState String
    The provisioned state of the resource.
    state String
    The state of the resource.
    stateReason String
    The reason for the Kusto Pool's current state.
    systemData SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    type String
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    uri String
    The Kusto Pool URI.
    dataIngestionUri string
    The Kusto Pool data ingestion URI.
    etag string
    A unique read-only string that changes whenever the resource is updated.
    id string
    The provider-assigned unique ID for this managed resource.
    name string
    The name of the resource
    provisioningState string
    The provisioned state of the resource.
    state string
    The state of the resource.
    stateReason string
    The reason for the Kusto Pool's current state.
    systemData SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    type string
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    uri string
    The Kusto Pool URI.
    data_ingestion_uri str
    The Kusto Pool data ingestion URI.
    etag str
    A unique read-only string that changes whenever the resource is updated.
    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.
    state str
    The state of the resource.
    state_reason str
    The reason for the Kusto Pool's current state.
    system_data SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    type str
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    uri str
    The Kusto Pool URI.
    dataIngestionUri String
    The Kusto Pool data ingestion URI.
    etag String
    A unique read-only string that changes whenever the resource is updated.
    id String
    The provider-assigned unique ID for this managed resource.
    name String
    The name of the resource
    provisioningState String
    The provisioned state of the resource.
    state String
    The state of the resource.
    stateReason String
    The reason for the Kusto Pool's current state.
    systemData Property Map
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    type String
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    uri String
    The Kusto Pool URI.

    Supporting Types

    AzureSku, AzureSkuArgs

    Name string | Pulumi.AzureNative.Synapse.AzureSkuName
    SKU name.
    Tier string | Pulumi.AzureNative.Synapse.AzureSkuTier
    SKU tier.
    Capacity int
    The number of instances of the cluster.
    Name string | AzureSkuName
    SKU name.
    Tier string | AzureSkuTier
    SKU tier.
    Capacity int
    The number of instances of the cluster.
    name String | AzureSkuName
    SKU name.
    tier String | AzureSkuTier
    SKU tier.
    capacity Integer
    The number of instances of the cluster.
    name string | AzureSkuName
    SKU name.
    tier string | AzureSkuTier
    SKU tier.
    capacity number
    The number of instances of the cluster.
    name str | AzureSkuName
    SKU name.
    tier str | AzureSkuTier
    SKU tier.
    capacity int
    The number of instances of the cluster.

    AzureSkuName, AzureSkuNameArgs

    Standard_DS13_v2_1TB_PS
    Standard_DS13_v2+1TB_PS
    Standard_DS13_v2_2TB_PS
    Standard_DS13_v2+2TB_PS
    Standard_DS14_v2_3TB_PS
    Standard_DS14_v2+3TB_PS
    Standard_DS14_v2_4TB_PS
    Standard_DS14_v2+4TB_PS
    Standard_D13_v2
    Standard_D13_v2
    Standard_D14_v2
    Standard_D14_v2
    Standard_L8s
    Standard_L8s
    Standard_L16s
    Standard_L16s
    Standard_L8s_v2
    Standard_L8s_v2
    Standard_L16s_v2
    Standard_L16s_v2
    Standard_D11_v2
    Standard_D11_v2
    Standard_D12_v2
    Standard_D12_v2
    Standard_L4s
    Standard_L4s
    Dev_No_SLA_Standard_D11_v2
    Dev(No SLA)_Standard_D11_v2
    Standard_E64i_v3
    Standard_E64i_v3
    Standard_E80ids_v4
    Standard_E80ids_v4
    Standard_E2a_v4
    Standard_E2a_v4
    Standard_E4a_v4
    Standard_E4a_v4
    Standard_E8a_v4
    Standard_E8a_v4
    Standard_E16a_v4
    Standard_E16a_v4
    Standard_E8as_v4_1TB_PS
    Standard_E8as_v4+1TB_PS
    Standard_E8as_v4_2TB_PS
    Standard_E8as_v4+2TB_PS
    Standard_E16as_v4_3TB_PS
    Standard_E16as_v4+3TB_PS
    Standard_E16as_v4_4TB_PS
    Standard_E16as_v4+4TB_PS
    Dev_No_SLA_Standard_E2a_v4
    Dev(No SLA)_Standard_E2a_v4
    AzureSkuName_Standard_DS13_v2_1TB_PS
    Standard_DS13_v2+1TB_PS
    AzureSkuName_Standard_DS13_v2_2TB_PS
    Standard_DS13_v2+2TB_PS
    AzureSkuName_Standard_DS14_v2_3TB_PS
    Standard_DS14_v2+3TB_PS
    AzureSkuName_Standard_DS14_v2_4TB_PS
    Standard_DS14_v2+4TB_PS
    AzureSkuName_Standard_D13_v2
    Standard_D13_v2
    AzureSkuName_Standard_D14_v2
    Standard_D14_v2
    AzureSkuName_Standard_L8s
    Standard_L8s
    AzureSkuName_Standard_L16s
    Standard_L16s
    AzureSkuName_Standard_L8s_v2
    Standard_L8s_v2
    AzureSkuName_Standard_L16s_v2
    Standard_L16s_v2
    AzureSkuName_Standard_D11_v2
    Standard_D11_v2
    AzureSkuName_Standard_D12_v2
    Standard_D12_v2
    AzureSkuName_Standard_L4s
    Standard_L4s
    AzureSkuName_Dev_No_SLA_Standard_D11_v2
    Dev(No SLA)_Standard_D11_v2
    AzureSkuName_Standard_E64i_v3
    Standard_E64i_v3
    AzureSkuName_Standard_E80ids_v4
    Standard_E80ids_v4
    AzureSkuName_Standard_E2a_v4
    Standard_E2a_v4
    AzureSkuName_Standard_E4a_v4
    Standard_E4a_v4
    AzureSkuName_Standard_E8a_v4
    Standard_E8a_v4
    AzureSkuName_Standard_E16a_v4
    Standard_E16a_v4
    AzureSkuName_Standard_E8as_v4_1TB_PS
    Standard_E8as_v4+1TB_PS
    AzureSkuName_Standard_E8as_v4_2TB_PS
    Standard_E8as_v4+2TB_PS
    AzureSkuName_Standard_E16as_v4_3TB_PS
    Standard_E16as_v4+3TB_PS
    AzureSkuName_Standard_E16as_v4_4TB_PS
    Standard_E16as_v4+4TB_PS
    AzureSkuName_Dev_No_SLA_Standard_E2a_v4
    Dev(No SLA)_Standard_E2a_v4
    Standard_DS13_v2_1TB_PS
    Standard_DS13_v2+1TB_PS
    Standard_DS13_v2_2TB_PS
    Standard_DS13_v2+2TB_PS
    Standard_DS14_v2_3TB_PS
    Standard_DS14_v2+3TB_PS
    Standard_DS14_v2_4TB_PS
    Standard_DS14_v2+4TB_PS
    Standard_D13_v2
    Standard_D13_v2
    Standard_D14_v2
    Standard_D14_v2
    Standard_L8s
    Standard_L8s
    Standard_L16s
    Standard_L16s
    Standard_L8s_v2
    Standard_L8s_v2
    Standard_L16s_v2
    Standard_L16s_v2
    Standard_D11_v2
    Standard_D11_v2
    Standard_D12_v2
    Standard_D12_v2
    Standard_L4s
    Standard_L4s
    Dev_No_SLA_Standard_D11_v2
    Dev(No SLA)_Standard_D11_v2
    Standard_E64i_v3
    Standard_E64i_v3
    Standard_E80ids_v4
    Standard_E80ids_v4
    Standard_E2a_v4
    Standard_E2a_v4
    Standard_E4a_v4
    Standard_E4a_v4
    Standard_E8a_v4
    Standard_E8a_v4
    Standard_E16a_v4
    Standard_E16a_v4
    Standard_E8as_v4_1TB_PS
    Standard_E8as_v4+1TB_PS
    Standard_E8as_v4_2TB_PS
    Standard_E8as_v4+2TB_PS
    Standard_E16as_v4_3TB_PS
    Standard_E16as_v4+3TB_PS
    Standard_E16as_v4_4TB_PS
    Standard_E16as_v4+4TB_PS
    Dev_No_SLA_Standard_E2a_v4
    Dev(No SLA)_Standard_E2a_v4
    Standard_DS13_v2_1TB_PS
    Standard_DS13_v2+1TB_PS
    Standard_DS13_v2_2TB_PS
    Standard_DS13_v2+2TB_PS
    Standard_DS14_v2_3TB_PS
    Standard_DS14_v2+3TB_PS
    Standard_DS14_v2_4TB_PS
    Standard_DS14_v2+4TB_PS
    Standard_D13_v2
    Standard_D13_v2
    Standard_D14_v2
    Standard_D14_v2
    Standard_L8s
    Standard_L8s
    Standard_L16s
    Standard_L16s
    Standard_L8s_v2
    Standard_L8s_v2
    Standard_L16s_v2
    Standard_L16s_v2
    Standard_D11_v2
    Standard_D11_v2
    Standard_D12_v2
    Standard_D12_v2
    Standard_L4s
    Standard_L4s
    Dev_No_SLA_Standard_D11_v2
    Dev(No SLA)_Standard_D11_v2
    Standard_E64i_v3
    Standard_E64i_v3
    Standard_E80ids_v4
    Standard_E80ids_v4
    Standard_E2a_v4
    Standard_E2a_v4
    Standard_E4a_v4
    Standard_E4a_v4
    Standard_E8a_v4
    Standard_E8a_v4
    Standard_E16a_v4
    Standard_E16a_v4
    Standard_E8as_v4_1TB_PS
    Standard_E8as_v4+1TB_PS
    Standard_E8as_v4_2TB_PS
    Standard_E8as_v4+2TB_PS
    Standard_E16as_v4_3TB_PS
    Standard_E16as_v4+3TB_PS
    Standard_E16as_v4_4TB_PS
    Standard_E16as_v4+4TB_PS
    Dev_No_SLA_Standard_E2a_v4
    Dev(No SLA)_Standard_E2a_v4
    STANDARD_DS13_V2_1_T_B_PS
    Standard_DS13_v2+1TB_PS
    STANDARD_DS13_V2_2_T_B_PS
    Standard_DS13_v2+2TB_PS
    STANDARD_DS14_V2_3_T_B_PS
    Standard_DS14_v2+3TB_PS
    STANDARD_DS14_V2_4_T_B_PS
    Standard_DS14_v2+4TB_PS
    STANDARD_D13_V2
    Standard_D13_v2
    STANDARD_D14_V2
    Standard_D14_v2
    STANDARD_L8S
    Standard_L8s
    STANDARD_L16S
    Standard_L16s
    STANDARD_L8S_V2
    Standard_L8s_v2
    STANDARD_L16S_V2
    Standard_L16s_v2
    STANDARD_D11_V2
    Standard_D11_v2
    STANDARD_D12_V2
    Standard_D12_v2
    STANDARD_L4S
    Standard_L4s
    DEV_NO_SL_A_STANDARD_D11_V2
    Dev(No SLA)_Standard_D11_v2
    STANDARD_E64I_V3
    Standard_E64i_v3
    STANDARD_E80IDS_V4
    Standard_E80ids_v4
    STANDARD_E2A_V4
    Standard_E2a_v4
    STANDARD_E4A_V4
    Standard_E4a_v4
    STANDARD_E8A_V4
    Standard_E8a_v4
    STANDARD_E16A_V4
    Standard_E16a_v4
    STANDARD_E8AS_V4_1_T_B_PS
    Standard_E8as_v4+1TB_PS
    STANDARD_E8AS_V4_2_T_B_PS
    Standard_E8as_v4+2TB_PS
    STANDARD_E16AS_V4_3_T_B_PS
    Standard_E16as_v4+3TB_PS
    STANDARD_E16AS_V4_4_T_B_PS
    Standard_E16as_v4+4TB_PS
    DEV_NO_SL_A_STANDARD_E2A_V4
    Dev(No SLA)_Standard_E2a_v4
    "Standard_DS13_v2+1TB_PS"
    Standard_DS13_v2+1TB_PS
    "Standard_DS13_v2+2TB_PS"
    Standard_DS13_v2+2TB_PS
    "Standard_DS14_v2+3TB_PS"
    Standard_DS14_v2+3TB_PS
    "Standard_DS14_v2+4TB_PS"
    Standard_DS14_v2+4TB_PS
    "Standard_D13_v2"
    Standard_D13_v2
    "Standard_D14_v2"
    Standard_D14_v2
    "Standard_L8s"
    Standard_L8s
    "Standard_L16s"
    Standard_L16s
    "Standard_L8s_v2"
    Standard_L8s_v2
    "Standard_L16s_v2"
    Standard_L16s_v2
    "Standard_D11_v2"
    Standard_D11_v2
    "Standard_D12_v2"
    Standard_D12_v2
    "Standard_L4s"
    Standard_L4s
    "Dev(No SLA)_Standard_D11_v2"
    Dev(No SLA)_Standard_D11_v2
    "Standard_E64i_v3"
    Standard_E64i_v3
    "Standard_E80ids_v4"
    Standard_E80ids_v4
    "Standard_E2a_v4"
    Standard_E2a_v4
    "Standard_E4a_v4"
    Standard_E4a_v4
    "Standard_E8a_v4"
    Standard_E8a_v4
    "Standard_E16a_v4"
    Standard_E16a_v4
    "Standard_E8as_v4+1TB_PS"
    Standard_E8as_v4+1TB_PS
    "Standard_E8as_v4+2TB_PS"
    Standard_E8as_v4+2TB_PS
    "Standard_E16as_v4+3TB_PS"
    Standard_E16as_v4+3TB_PS
    "Standard_E16as_v4+4TB_PS"
    Standard_E16as_v4+4TB_PS
    "Dev(No SLA)_Standard_E2a_v4"
    Dev(No SLA)_Standard_E2a_v4

    AzureSkuResponse, AzureSkuResponseArgs

    Name string
    SKU name.
    Tier string
    SKU tier.
    Capacity int
    The number of instances of the cluster.
    Name string
    SKU name.
    Tier string
    SKU tier.
    Capacity int
    The number of instances of the cluster.
    name String
    SKU name.
    tier String
    SKU tier.
    capacity Integer
    The number of instances of the cluster.
    name string
    SKU name.
    tier string
    SKU tier.
    capacity number
    The number of instances of the cluster.
    name str
    SKU name.
    tier str
    SKU tier.
    capacity int
    The number of instances of the cluster.
    name String
    SKU name.
    tier String
    SKU tier.
    capacity Number
    The number of instances of the cluster.

    AzureSkuTier, AzureSkuTierArgs

    Basic
    Basic
    Standard
    Standard
    AzureSkuTierBasic
    Basic
    AzureSkuTierStandard
    Standard
    Basic
    Basic
    Standard
    Standard
    Basic
    Basic
    Standard
    Standard
    BASIC
    Basic
    STANDARD
    Standard
    "Basic"
    Basic
    "Standard"
    Standard

    EngineType, EngineTypeArgs

    V2
    V2
    V3
    V3
    EngineTypeV2
    V2
    EngineTypeV3
    V3
    V2
    V2
    V3
    V3
    V2
    V2
    V3
    V3
    V2
    V2
    V3
    V3
    "V2"
    V2
    "V3"
    V3

    SystemDataResponse, SystemDataResponseArgs

    CreatedAt string
    The timestamp of resource creation (UTC).
    CreatedBy string
    The identity that created the resource.
    CreatedByType string
    The type of identity that created the resource.
    LastModifiedAt string
    The timestamp of resource last modification (UTC)
    LastModifiedBy string
    The identity that last modified the resource.
    LastModifiedByType string
    The type of identity that last modified the resource.
    CreatedAt string
    The timestamp of resource creation (UTC).
    CreatedBy string
    The identity that created the resource.
    CreatedByType string
    The type of identity that created the resource.
    LastModifiedAt string
    The timestamp of resource last modification (UTC)
    LastModifiedBy string
    The identity that last modified the resource.
    LastModifiedByType string
    The type of identity that last modified the resource.
    createdAt String
    The timestamp of resource creation (UTC).
    createdBy String
    The identity that created the resource.
    createdByType String
    The type of identity that created the resource.
    lastModifiedAt String
    The timestamp of resource last modification (UTC)
    lastModifiedBy String
    The identity that last modified the resource.
    lastModifiedByType String
    The type of identity that last modified the resource.
    createdAt string
    The timestamp of resource creation (UTC).
    createdBy string
    The identity that created the resource.
    createdByType string
    The type of identity that created the resource.
    lastModifiedAt string
    The timestamp of resource last modification (UTC)
    lastModifiedBy string
    The identity that last modified the resource.
    lastModifiedByType string
    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_type str
    The type of identity that created the resource.
    last_modified_at str
    The timestamp of resource last modification (UTC)
    last_modified_by str
    The identity that last modified the resource.
    last_modified_by_type str
    The type of identity that last modified the resource.
    createdAt String
    The timestamp of resource creation (UTC).
    createdBy String
    The identity that created the resource.
    createdByType String
    The type of identity that created the resource.
    lastModifiedAt String
    The timestamp of resource last modification (UTC)
    lastModifiedBy String
    The identity that last modified the resource.
    lastModifiedByType String
    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:synapse:kustoPool KustoClusterRPTest4 /subscriptions/12345678-1234-1234-1234-123456789098/resourceGroups/kustorptest/providers/Microsoft.Synapse/workspaces/synapseWorkspaceName/kustopools/KustoClusterRPTest4 
    

    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
    azure-native-v1 logo
    These are the docs for Azure Native v1. We recommenend using the latest version, Azure Native v2.
    Azure Native v1 v1.104.0 published on Thursday, Jul 6, 2023 by Pulumi