azure-native.synapse.KustoPool
Explore with Pulumi AI
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:
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Sku
Pulumi.
Azure Native. Synapse. Inputs. Azure Sku - The SKU of the kusto pool.
- Workspace
Name string - The name of the workspace
- Engine
Type string | Pulumi.Azure Native. Synapse. Engine Type - The engine type
- Kusto
Pool stringName - The name of the Kusto pool.
- Location string
- The geo-location where the resource lives
- Dictionary<string, string>
- Resource tags.
- Workspace
Uid string - The workspace unique identifier.
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Sku
Azure
Sku Args - The SKU of the kusto pool.
- Workspace
Name string - The name of the workspace
- Engine
Type string | EngineType - The engine type
- Kusto
Pool stringName - The name of the Kusto pool.
- Location string
- The geo-location where the resource lives
- map[string]string
- Resource tags.
- Workspace
Uid string - The workspace unique identifier.
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- sku
Azure
Sku - The SKU of the kusto pool.
- workspace
Name String - The name of the workspace
- engine
Type String | EngineType - The engine type
- kusto
Pool StringName - The name of the Kusto pool.
- location String
- The geo-location where the resource lives
- Map<String,String>
- Resource tags.
- workspace
Uid String - The workspace unique identifier.
- resource
Group stringName - The name of the resource group. The name is case insensitive.
- sku
Azure
Sku - The SKU of the kusto pool.
- workspace
Name string - The name of the workspace
- engine
Type string | EngineType - The engine type
- kusto
Pool stringName - The name of the Kusto pool.
- location string
- The geo-location where the resource lives
- {[key: string]: string}
- Resource tags.
- workspace
Uid string - The workspace unique identifier.
- resource_
group_ strname - The name of the resource group. The name is case insensitive.
- sku
Azure
Sku Args - The SKU of the kusto pool.
- workspace_
name str - The name of the workspace
- engine_
type str | EngineType - The engine type
- kusto_
pool_ strname - The name of the Kusto pool.
- location str
- The geo-location where the resource lives
- Mapping[str, str]
- Resource tags.
- workspace_
uid str - The workspace unique identifier.
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- sku Property Map
- The SKU of the kusto pool.
- workspace
Name String - The name of the workspace
- engine
Type String | "V2" | "V3" - The engine type
- kusto
Pool StringName - The name of the Kusto pool.
- location String
- The geo-location where the resource lives
- Map<String>
- Resource tags.
- workspace
Uid String - The workspace unique identifier.
Outputs
All input properties are implicitly available as output properties. Additionally, the KustoPool resource produces the following output properties:
- Data
Ingestion stringUri - 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
- Provisioning
State string - The provisioned state of the resource.
- State string
- The state of the resource.
- State
Reason string - The reason for the Kusto Pool's current state.
- System
Data Pulumi.Azure Native. Synapse. Outputs. System Data Response - 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 stringUri - 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
- Provisioning
State string - The provisioned state of the resource.
- State string
- The state of the resource.
- State
Reason string - The reason for the Kusto Pool's current state.
- System
Data SystemData Response - 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 StringUri - 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
- provisioning
State String - The provisioned state of the resource.
- state String
- The state of the resource.
- state
Reason String - The reason for the Kusto Pool's current state.
- system
Data SystemData Response - 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 stringUri - 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
- provisioning
State string - The provisioned state of the resource.
- state string
- The state of the resource.
- state
Reason string - The reason for the Kusto Pool's current state.
- system
Data SystemData Response - 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_ struri - 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 SystemData Response - 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.
- data
Ingestion StringUri - 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
- provisioning
State String - The provisioned state of the resource.
- state String
- The state of the resource.
- state
Reason String - The reason for the Kusto Pool's current state.
- system
Data 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.
Azure Native. Synapse. Azure Sku Name - SKU name.
- Tier
string | Pulumi.
Azure Native. Synapse. Azure Sku Tier - SKU tier.
- Capacity int
- The number of instances of the cluster.
- Name
string | Azure
Sku Name - SKU name.
- Tier
string | Azure
Sku Tier - SKU tier.
- Capacity int
- The number of instances of the cluster.
- name
String | Azure
Sku Name - SKU name.
- tier
String | Azure
Sku Tier - SKU tier.
- capacity Integer
- The number of instances of the cluster.
- name
string | Azure
Sku Name - SKU name.
- tier
string | Azure
Sku Tier - SKU tier.
- capacity number
- The number of instances of the cluster.
- name
str | Azure
Sku Name - SKU name.
- tier
str | Azure
Sku Tier - SKU tier.
- capacity int
- The number of instances of the cluster.
- name
String | "Standard_DS13_
v2+1TB_PS" | "Standard_DS13_ v2+2TB_PS" | "Standard_DS14_ v2+3TB_PS" | "Standard_DS14_ v2+4TB_PS" | "Standard_D13_ v2" | "Standard_D14_ v2" | "Standard_L8s" | "Standard_L16s" | "Standard_L8s_ v2" | "Standard_L16s_ v2" | "Standard_D11_ v2" | "Standard_D12_ v2" | "Standard_L4s" | "Dev(No SLA)_Standard_D11_ v2" | "Standard_E64i_ v3" | "Standard_E80ids_ v4" | "Standard_E2a_ v4" | "Standard_E4a_ v4" | "Standard_E8a_ v4" | "Standard_E16a_ v4" | "Standard_E8as_ v4+1TB_PS" | "Standard_E8as_ v4+2TB_PS" | "Standard_E16as_ v4+3TB_PS" | "Standard_E16as_ v4+4TB_PS" | "Dev(No SLA)_Standard_E2a_ v4" - SKU name.
- tier String | "Basic" | "Standard"
- SKU tier.
- capacity Number
- 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
- Azure
Sku Name_Standard_DS13_ v2_1TB_PS - Standard_DS13_v2+1TB_PS
- Azure
Sku Name_Standard_DS13_ v2_2TB_PS - Standard_DS13_v2+2TB_PS
- Azure
Sku Name_Standard_DS14_ v2_3TB_PS - Standard_DS14_v2+3TB_PS
- Azure
Sku Name_Standard_DS14_ v2_4TB_PS - Standard_DS14_v2+4TB_PS
- Azure
Sku Name_Standard_D13_ v2 - Standard_D13_v2
- Azure
Sku Name_Standard_D14_ v2 - Standard_D14_v2
- Azure
Sku Name_Standard_L8s - Standard_L8s
- Azure
Sku Name_Standard_L16s - Standard_L16s
- Azure
Sku Name_Standard_L8s_ v2 - Standard_L8s_v2
- Azure
Sku Name_Standard_L16s_ v2 - Standard_L16s_v2
- Azure
Sku Name_Standard_D11_ v2 - Standard_D11_v2
- Azure
Sku Name_Standard_D12_ v2 - Standard_D12_v2
- Azure
Sku Name_Standard_L4s - Standard_L4s
- Azure
Sku Name_Dev_No_SLA_Standard_D11_ v2 - Dev(No SLA)_Standard_D11_v2
- Azure
Sku Name_Standard_E64i_ v3 - Standard_E64i_v3
- Azure
Sku Name_Standard_E80ids_ v4 - Standard_E80ids_v4
- Azure
Sku Name_Standard_E2a_ v4 - Standard_E2a_v4
- Azure
Sku Name_Standard_E4a_ v4 - Standard_E4a_v4
- Azure
Sku Name_Standard_E8a_ v4 - Standard_E8a_v4
- Azure
Sku Name_Standard_E16a_ v4 - Standard_E16a_v4
- Azure
Sku Name_Standard_E8as_ v4_1TB_PS - Standard_E8as_v4+1TB_PS
- Azure
Sku Name_Standard_E8as_ v4_2TB_PS - Standard_E8as_v4+2TB_PS
- Azure
Sku Name_Standard_E16as_ v4_3TB_PS - Standard_E16as_v4+3TB_PS
- Azure
Sku Name_Standard_E16as_ v4_4TB_PS - Standard_E16as_v4+4TB_PS
- Azure
Sku Name_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
AzureSkuTier, AzureSkuTierArgs
- Basic
- Basic
- Standard
- Standard
- Azure
Sku Tier Basic - Basic
- Azure
Sku Tier Standard - Standard
- Basic
- Basic
- Standard
- Standard
- Basic
- Basic
- Standard
- Standard
- BASIC
- Basic
- STANDARD
- Standard
- "Basic"
- Basic
- "Standard"
- Standard
EngineType, EngineTypeArgs
- V2
- V2
- V3
- V3
- Engine
Type V2 - V2
- Engine
Type V3 - V3
- V2
- V2
- V3
- V3
- V2
- V2
- V3
- V3
- V2
- V2
- V3
- V3
- "V2"
- V2
- "V3"
- V3
SystemDataResponse, SystemDataResponseArgs
- Created
At string - The timestamp of resource creation (UTC).
- Created
By string - The identity that created the resource.
- Created
By stringType - The type of identity that created the resource.
- Last
Modified stringAt - The timestamp of resource last modification (UTC)
- Last
Modified stringBy - The identity that last modified the resource.
- Last
Modified stringBy Type - The type of identity that last modified the resource.
- Created
At string - The timestamp of resource creation (UTC).
- Created
By string - The identity that created the resource.
- Created
By stringType - The type of identity that created the resource.
- Last
Modified stringAt - The timestamp of resource last modification (UTC)
- Last
Modified stringBy - The identity that last modified the resource.
- Last
Modified stringBy Type - The type of identity that last modified the resource.
- created
At String - The timestamp of resource creation (UTC).
- created
By String - The identity that created the resource.
- created
By StringType - The type of identity that created the resource.
- last
Modified StringAt - The timestamp of resource last modification (UTC)
- last
Modified StringBy - The identity that last modified the resource.
- last
Modified StringBy Type - The type of identity that last modified the resource.
- created
At string - The timestamp of resource creation (UTC).
- created
By string - The identity that created the resource.
- created
By stringType - The type of identity that created the resource.
- last
Modified stringAt - The timestamp of resource last modification (UTC)
- last
Modified stringBy - The identity that last modified the resource.
- last
Modified stringBy Type - 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_ strtype - The type of identity that created the resource.
- last_
modified_ strat - The timestamp of resource last modification (UTC)
- last_
modified_ strby - The identity that last modified the resource.
- last_
modified_ strby_ type - The type of identity that last modified the resource.
- created
At String - The timestamp of resource creation (UTC).
- created
By String - The identity that created the resource.
- created
By StringType - The type of identity that created the resource.
- last
Modified StringAt - The timestamp of resource last modification (UTC)
- last
Modified StringBy - The identity that last modified the resource.
- last
Modified StringBy Type - 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