1. Packages
  2. Azure Native
  3. API Docs
  4. datashare
  5. KustoClusterDataSet
This is the latest version of Azure Native. Use the Azure Native v2 docs if using the v2 version of this package.
Azure Native v3.1.0 published on Tuesday, Apr 8, 2025 by Pulumi

azure-native.datashare.KustoClusterDataSet

Explore with Pulumi AI

A kusto cluster data set.

Uses Azure REST API version 2021-08-01. In version 2.x of the Azure Native provider, it used API version 2021-08-01.

Example Usage

DataSets_Create

using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;

return await Deployment.RunAsync(() => 
{
    var kustoClusterDataSet = new AzureNative.DataShare.KustoClusterDataSet("kustoClusterDataSet", new()
    {
        AccountName = "Account1",
        DataSetName = "Dataset1",
        ResourceGroupName = "SampleResourceGroup",
        ShareName = "Share1",
    });

});
Copy
package main

import (
	datashare "github.com/pulumi/pulumi-azure-native-sdk/datashare/v3"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := datashare.NewKustoClusterDataSet(ctx, "kustoClusterDataSet", &datashare.KustoClusterDataSetArgs{
			AccountName:       pulumi.String("Account1"),
			DataSetName:       pulumi.String("Dataset1"),
			ResourceGroupName: pulumi.String("SampleResourceGroup"),
			ShareName:         pulumi.String("Share1"),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.datashare.KustoClusterDataSet;
import com.pulumi.azurenative.datashare.KustoClusterDataSetArgs;
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 kustoClusterDataSet = new KustoClusterDataSet("kustoClusterDataSet", KustoClusterDataSetArgs.builder()
            .accountName("Account1")
            .dataSetName("Dataset1")
            .resourceGroupName("SampleResourceGroup")
            .shareName("Share1")
            .build());

    }
}
Copy
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";

const kustoClusterDataSet = new azure_native.datashare.KustoClusterDataSet("kustoClusterDataSet", {
    accountName: "Account1",
    dataSetName: "Dataset1",
    resourceGroupName: "SampleResourceGroup",
    shareName: "Share1",
});
Copy
import pulumi
import pulumi_azure_native as azure_native

kusto_cluster_data_set = azure_native.datashare.KustoClusterDataSet("kustoClusterDataSet",
    account_name="Account1",
    data_set_name="Dataset1",
    resource_group_name="SampleResourceGroup",
    share_name="Share1")
Copy
resources:
  kustoClusterDataSet:
    type: azure-native:datashare:KustoClusterDataSet
    properties:
      accountName: Account1
      dataSetName: Dataset1
      resourceGroupName: SampleResourceGroup
      shareName: Share1
Copy

DataSets_KustoCluster_Create

using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;

return await Deployment.RunAsync(() => 
{
    var kustoClusterDataSet = new AzureNative.DataShare.KustoClusterDataSet("kustoClusterDataSet", new()
    {
        AccountName = "Account1",
        DataSetName = "Dataset1",
        Kind = "KustoCluster",
        KustoClusterResourceId = "/subscriptions/433a8dfd-e5d5-4e77-ad86-90acdc75eb1a/resourceGroups/SampleResourceGroup/providers/Microsoft.Kusto/clusters/Cluster1",
        ResourceGroupName = "SampleResourceGroup",
        ShareName = "Share1",
    });

});
Copy
package main

import (
	datashare "github.com/pulumi/pulumi-azure-native-sdk/datashare/v3"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := datashare.NewKustoClusterDataSet(ctx, "kustoClusterDataSet", &datashare.KustoClusterDataSetArgs{
			AccountName:            pulumi.String("Account1"),
			DataSetName:            pulumi.String("Dataset1"),
			Kind:                   pulumi.String("KustoCluster"),
			KustoClusterResourceId: pulumi.String("/subscriptions/433a8dfd-e5d5-4e77-ad86-90acdc75eb1a/resourceGroups/SampleResourceGroup/providers/Microsoft.Kusto/clusters/Cluster1"),
			ResourceGroupName:      pulumi.String("SampleResourceGroup"),
			ShareName:              pulumi.String("Share1"),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.datashare.KustoClusterDataSet;
import com.pulumi.azurenative.datashare.KustoClusterDataSetArgs;
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 kustoClusterDataSet = new KustoClusterDataSet("kustoClusterDataSet", KustoClusterDataSetArgs.builder()
            .accountName("Account1")
            .dataSetName("Dataset1")
            .kind("KustoCluster")
            .kustoClusterResourceId("/subscriptions/433a8dfd-e5d5-4e77-ad86-90acdc75eb1a/resourceGroups/SampleResourceGroup/providers/Microsoft.Kusto/clusters/Cluster1")
            .resourceGroupName("SampleResourceGroup")
            .shareName("Share1")
            .build());

    }
}
Copy
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";

const kustoClusterDataSet = new azure_native.datashare.KustoClusterDataSet("kustoClusterDataSet", {
    accountName: "Account1",
    dataSetName: "Dataset1",
    kind: "KustoCluster",
    kustoClusterResourceId: "/subscriptions/433a8dfd-e5d5-4e77-ad86-90acdc75eb1a/resourceGroups/SampleResourceGroup/providers/Microsoft.Kusto/clusters/Cluster1",
    resourceGroupName: "SampleResourceGroup",
    shareName: "Share1",
});
Copy
import pulumi
import pulumi_azure_native as azure_native

kusto_cluster_data_set = azure_native.datashare.KustoClusterDataSet("kustoClusterDataSet",
    account_name="Account1",
    data_set_name="Dataset1",
    kind="KustoCluster",
    kusto_cluster_resource_id="/subscriptions/433a8dfd-e5d5-4e77-ad86-90acdc75eb1a/resourceGroups/SampleResourceGroup/providers/Microsoft.Kusto/clusters/Cluster1",
    resource_group_name="SampleResourceGroup",
    share_name="Share1")
Copy
resources:
  kustoClusterDataSet:
    type: azure-native:datashare:KustoClusterDataSet
    properties:
      accountName: Account1
      dataSetName: Dataset1
      kind: KustoCluster
      kustoClusterResourceId: /subscriptions/433a8dfd-e5d5-4e77-ad86-90acdc75eb1a/resourceGroups/SampleResourceGroup/providers/Microsoft.Kusto/clusters/Cluster1
      resourceGroupName: SampleResourceGroup
      shareName: Share1
Copy

DataSets_KustoDatabase_Create

using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;

return await Deployment.RunAsync(() => 
{
    var kustoClusterDataSet = new AzureNative.DataShare.KustoClusterDataSet("kustoClusterDataSet", new()
    {
        AccountName = "Account1",
        DataSetName = "Dataset1",
        ResourceGroupName = "SampleResourceGroup",
        ShareName = "Share1",
    });

});
Copy
package main

import (
	datashare "github.com/pulumi/pulumi-azure-native-sdk/datashare/v3"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := datashare.NewKustoClusterDataSet(ctx, "kustoClusterDataSet", &datashare.KustoClusterDataSetArgs{
			AccountName:       pulumi.String("Account1"),
			DataSetName:       pulumi.String("Dataset1"),
			ResourceGroupName: pulumi.String("SampleResourceGroup"),
			ShareName:         pulumi.String("Share1"),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.datashare.KustoClusterDataSet;
import com.pulumi.azurenative.datashare.KustoClusterDataSetArgs;
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 kustoClusterDataSet = new KustoClusterDataSet("kustoClusterDataSet", KustoClusterDataSetArgs.builder()
            .accountName("Account1")
            .dataSetName("Dataset1")
            .resourceGroupName("SampleResourceGroup")
            .shareName("Share1")
            .build());

    }
}
Copy
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";

const kustoClusterDataSet = new azure_native.datashare.KustoClusterDataSet("kustoClusterDataSet", {
    accountName: "Account1",
    dataSetName: "Dataset1",
    resourceGroupName: "SampleResourceGroup",
    shareName: "Share1",
});
Copy
import pulumi
import pulumi_azure_native as azure_native

kusto_cluster_data_set = azure_native.datashare.KustoClusterDataSet("kustoClusterDataSet",
    account_name="Account1",
    data_set_name="Dataset1",
    resource_group_name="SampleResourceGroup",
    share_name="Share1")
Copy
resources:
  kustoClusterDataSet:
    type: azure-native:datashare:KustoClusterDataSet
    properties:
      accountName: Account1
      dataSetName: Dataset1
      resourceGroupName: SampleResourceGroup
      shareName: Share1
Copy

DataSets_KustoTable_Create

using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;

return await Deployment.RunAsync(() => 
{
    var kustoClusterDataSet = new AzureNative.DataShare.KustoClusterDataSet("kustoClusterDataSet", new()
    {
        AccountName = "Account1",
        DataSetName = "Dataset1",
        ResourceGroupName = "SampleResourceGroup",
        ShareName = "Share1",
    });

});
Copy
package main

import (
	datashare "github.com/pulumi/pulumi-azure-native-sdk/datashare/v3"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := datashare.NewKustoClusterDataSet(ctx, "kustoClusterDataSet", &datashare.KustoClusterDataSetArgs{
			AccountName:       pulumi.String("Account1"),
			DataSetName:       pulumi.String("Dataset1"),
			ResourceGroupName: pulumi.String("SampleResourceGroup"),
			ShareName:         pulumi.String("Share1"),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.datashare.KustoClusterDataSet;
import com.pulumi.azurenative.datashare.KustoClusterDataSetArgs;
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 kustoClusterDataSet = new KustoClusterDataSet("kustoClusterDataSet", KustoClusterDataSetArgs.builder()
            .accountName("Account1")
            .dataSetName("Dataset1")
            .resourceGroupName("SampleResourceGroup")
            .shareName("Share1")
            .build());

    }
}
Copy
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";

const kustoClusterDataSet = new azure_native.datashare.KustoClusterDataSet("kustoClusterDataSet", {
    accountName: "Account1",
    dataSetName: "Dataset1",
    resourceGroupName: "SampleResourceGroup",
    shareName: "Share1",
});
Copy
import pulumi
import pulumi_azure_native as azure_native

kusto_cluster_data_set = azure_native.datashare.KustoClusterDataSet("kustoClusterDataSet",
    account_name="Account1",
    data_set_name="Dataset1",
    resource_group_name="SampleResourceGroup",
    share_name="Share1")
Copy
resources:
  kustoClusterDataSet:
    type: azure-native:datashare:KustoClusterDataSet
    properties:
      accountName: Account1
      dataSetName: Dataset1
      resourceGroupName: SampleResourceGroup
      shareName: Share1
Copy

DataSets_SqlDBTable_Create

using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;

return await Deployment.RunAsync(() => 
{
    var kustoClusterDataSet = new AzureNative.DataShare.KustoClusterDataSet("kustoClusterDataSet", new()
    {
        AccountName = "Account1",
        DataSetName = "Dataset1",
        ResourceGroupName = "SampleResourceGroup",
        ShareName = "Share1",
    });

});
Copy
package main

import (
	datashare "github.com/pulumi/pulumi-azure-native-sdk/datashare/v3"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := datashare.NewKustoClusterDataSet(ctx, "kustoClusterDataSet", &datashare.KustoClusterDataSetArgs{
			AccountName:       pulumi.String("Account1"),
			DataSetName:       pulumi.String("Dataset1"),
			ResourceGroupName: pulumi.String("SampleResourceGroup"),
			ShareName:         pulumi.String("Share1"),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.datashare.KustoClusterDataSet;
import com.pulumi.azurenative.datashare.KustoClusterDataSetArgs;
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 kustoClusterDataSet = new KustoClusterDataSet("kustoClusterDataSet", KustoClusterDataSetArgs.builder()
            .accountName("Account1")
            .dataSetName("Dataset1")
            .resourceGroupName("SampleResourceGroup")
            .shareName("Share1")
            .build());

    }
}
Copy
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";

const kustoClusterDataSet = new azure_native.datashare.KustoClusterDataSet("kustoClusterDataSet", {
    accountName: "Account1",
    dataSetName: "Dataset1",
    resourceGroupName: "SampleResourceGroup",
    shareName: "Share1",
});
Copy
import pulumi
import pulumi_azure_native as azure_native

kusto_cluster_data_set = azure_native.datashare.KustoClusterDataSet("kustoClusterDataSet",
    account_name="Account1",
    data_set_name="Dataset1",
    resource_group_name="SampleResourceGroup",
    share_name="Share1")
Copy
resources:
  kustoClusterDataSet:
    type: azure-native:datashare:KustoClusterDataSet
    properties:
      accountName: Account1
      dataSetName: Dataset1
      resourceGroupName: SampleResourceGroup
      shareName: Share1
Copy

DataSets_SqlDWTable_Create

using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;

return await Deployment.RunAsync(() => 
{
    var kustoClusterDataSet = new AzureNative.DataShare.KustoClusterDataSet("kustoClusterDataSet", new()
    {
        AccountName = "Account1",
        DataSetName = "Dataset1",
        ResourceGroupName = "SampleResourceGroup",
        ShareName = "Share1",
    });

});
Copy
package main

import (
	datashare "github.com/pulumi/pulumi-azure-native-sdk/datashare/v3"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := datashare.NewKustoClusterDataSet(ctx, "kustoClusterDataSet", &datashare.KustoClusterDataSetArgs{
			AccountName:       pulumi.String("Account1"),
			DataSetName:       pulumi.String("Dataset1"),
			ResourceGroupName: pulumi.String("SampleResourceGroup"),
			ShareName:         pulumi.String("Share1"),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.datashare.KustoClusterDataSet;
import com.pulumi.azurenative.datashare.KustoClusterDataSetArgs;
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 kustoClusterDataSet = new KustoClusterDataSet("kustoClusterDataSet", KustoClusterDataSetArgs.builder()
            .accountName("Account1")
            .dataSetName("Dataset1")
            .resourceGroupName("SampleResourceGroup")
            .shareName("Share1")
            .build());

    }
}
Copy
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";

const kustoClusterDataSet = new azure_native.datashare.KustoClusterDataSet("kustoClusterDataSet", {
    accountName: "Account1",
    dataSetName: "Dataset1",
    resourceGroupName: "SampleResourceGroup",
    shareName: "Share1",
});
Copy
import pulumi
import pulumi_azure_native as azure_native

kusto_cluster_data_set = azure_native.datashare.KustoClusterDataSet("kustoClusterDataSet",
    account_name="Account1",
    data_set_name="Dataset1",
    resource_group_name="SampleResourceGroup",
    share_name="Share1")
Copy
resources:
  kustoClusterDataSet:
    type: azure-native:datashare:KustoClusterDataSet
    properties:
      accountName: Account1
      dataSetName: Dataset1
      resourceGroupName: SampleResourceGroup
      shareName: Share1
Copy

DataSets_SynapseWorkspaceSqlPoolTable_Create

using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;

return await Deployment.RunAsync(() => 
{
    var kustoClusterDataSet = new AzureNative.DataShare.KustoClusterDataSet("kustoClusterDataSet", new()
    {
        AccountName = "sourceAccount",
        DataSetName = "dataset1",
        ResourceGroupName = "SampleResourceGroup",
        ShareName = "share1",
    });

});
Copy
package main

import (
	datashare "github.com/pulumi/pulumi-azure-native-sdk/datashare/v3"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := datashare.NewKustoClusterDataSet(ctx, "kustoClusterDataSet", &datashare.KustoClusterDataSetArgs{
			AccountName:       pulumi.String("sourceAccount"),
			DataSetName:       pulumi.String("dataset1"),
			ResourceGroupName: pulumi.String("SampleResourceGroup"),
			ShareName:         pulumi.String("share1"),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.datashare.KustoClusterDataSet;
import com.pulumi.azurenative.datashare.KustoClusterDataSetArgs;
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 kustoClusterDataSet = new KustoClusterDataSet("kustoClusterDataSet", KustoClusterDataSetArgs.builder()
            .accountName("sourceAccount")
            .dataSetName("dataset1")
            .resourceGroupName("SampleResourceGroup")
            .shareName("share1")
            .build());

    }
}
Copy
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";

const kustoClusterDataSet = new azure_native.datashare.KustoClusterDataSet("kustoClusterDataSet", {
    accountName: "sourceAccount",
    dataSetName: "dataset1",
    resourceGroupName: "SampleResourceGroup",
    shareName: "share1",
});
Copy
import pulumi
import pulumi_azure_native as azure_native

kusto_cluster_data_set = azure_native.datashare.KustoClusterDataSet("kustoClusterDataSet",
    account_name="sourceAccount",
    data_set_name="dataset1",
    resource_group_name="SampleResourceGroup",
    share_name="share1")
Copy
resources:
  kustoClusterDataSet:
    type: azure-native:datashare:KustoClusterDataSet
    properties:
      accountName: sourceAccount
      dataSetName: dataset1
      resourceGroupName: SampleResourceGroup
      shareName: share1
Copy

Create KustoClusterDataSet Resource

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

Constructor syntax

new KustoClusterDataSet(name: string, args: KustoClusterDataSetArgs, opts?: CustomResourceOptions);
@overload
def KustoClusterDataSet(resource_name: str,
                        args: KustoClusterDataSetArgs,
                        opts: Optional[ResourceOptions] = None)

@overload
def KustoClusterDataSet(resource_name: str,
                        opts: Optional[ResourceOptions] = None,
                        account_name: Optional[str] = None,
                        kusto_cluster_resource_id: Optional[str] = None,
                        resource_group_name: Optional[str] = None,
                        share_name: Optional[str] = None,
                        data_set_name: Optional[str] = None)
func NewKustoClusterDataSet(ctx *Context, name string, args KustoClusterDataSetArgs, opts ...ResourceOption) (*KustoClusterDataSet, error)
public KustoClusterDataSet(string name, KustoClusterDataSetArgs args, CustomResourceOptions? opts = null)
public KustoClusterDataSet(String name, KustoClusterDataSetArgs args)
public KustoClusterDataSet(String name, KustoClusterDataSetArgs args, CustomResourceOptions options)
type: azure-native:datashare:KustoClusterDataSet
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. KustoClusterDataSetArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. KustoClusterDataSetArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. KustoClusterDataSetArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. KustoClusterDataSetArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. KustoClusterDataSetArgs
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 kustoClusterDataSetResource = new AzureNative.DataShare.KustoClusterDataSet("kustoClusterDataSetResource", new()
{
    AccountName = "string",
    Kind = "string",
    KustoClusterResourceId = "string",
    ResourceGroupName = "string",
    ShareName = "string",
    DataSetName = "string",
});
Copy
example, err := datashare.NewKustoClusterDataSet(ctx, "kustoClusterDataSetResource", &datashare.KustoClusterDataSetArgs{
	AccountName:            pulumi.String("string"),
	Kind:                   pulumi.String("string"),
	KustoClusterResourceId: pulumi.String("string"),
	ResourceGroupName:      pulumi.String("string"),
	ShareName:              pulumi.String("string"),
	DataSetName:            pulumi.String("string"),
})
Copy
var kustoClusterDataSetResource = new KustoClusterDataSet("kustoClusterDataSetResource", KustoClusterDataSetArgs.builder()
    .accountName("string")
    .kind("string")
    .kustoClusterResourceId("string")
    .resourceGroupName("string")
    .shareName("string")
    .dataSetName("string")
    .build());
Copy
kusto_cluster_data_set_resource = azure_native.datashare.KustoClusterDataSet("kustoClusterDataSetResource",
    account_name="string",
    kind="string",
    kusto_cluster_resource_id="string",
    resource_group_name="string",
    share_name="string",
    data_set_name="string")
Copy
const kustoClusterDataSetResource = new azure_native.datashare.KustoClusterDataSet("kustoClusterDataSetResource", {
    accountName: "string",
    kind: "string",
    kustoClusterResourceId: "string",
    resourceGroupName: "string",
    shareName: "string",
    dataSetName: "string",
});
Copy
type: azure-native:datashare:KustoClusterDataSet
properties:
    accountName: string
    dataSetName: string
    kind: string
    kustoClusterResourceId: string
    resourceGroupName: string
    shareName: string
Copy

KustoClusterDataSet Resource Properties

To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

Inputs

In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

The KustoClusterDataSet resource accepts the following input properties:

AccountName
This property is required.
Changes to this property will trigger replacement.
string
The name of the share account.
KustoClusterResourceId This property is required. string
Resource id of the kusto cluster.
ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The resource group name.
ShareName
This property is required.
Changes to this property will trigger replacement.
string
The name of the share to add the data set to.
DataSetName Changes to this property will trigger replacement. string
The name of the dataSet.
AccountName
This property is required.
Changes to this property will trigger replacement.
string
The name of the share account.
KustoClusterResourceId This property is required. string
Resource id of the kusto cluster.
ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The resource group name.
ShareName
This property is required.
Changes to this property will trigger replacement.
string
The name of the share to add the data set to.
DataSetName Changes to this property will trigger replacement. string
The name of the dataSet.
accountName
This property is required.
Changes to this property will trigger replacement.
String
The name of the share account.
kustoClusterResourceId This property is required. String
Resource id of the kusto cluster.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
The resource group name.
shareName
This property is required.
Changes to this property will trigger replacement.
String
The name of the share to add the data set to.
dataSetName Changes to this property will trigger replacement. String
The name of the dataSet.
accountName
This property is required.
Changes to this property will trigger replacement.
string
The name of the share account.
kustoClusterResourceId This property is required. string
Resource id of the kusto cluster.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The resource group name.
shareName
This property is required.
Changes to this property will trigger replacement.
string
The name of the share to add the data set to.
dataSetName Changes to this property will trigger replacement. string
The name of the dataSet.
account_name
This property is required.
Changes to this property will trigger replacement.
str
The name of the share account.
kusto_cluster_resource_id This property is required. str
Resource id of the kusto cluster.
resource_group_name
This property is required.
Changes to this property will trigger replacement.
str
The resource group name.
share_name
This property is required.
Changes to this property will trigger replacement.
str
The name of the share to add the data set to.
data_set_name Changes to this property will trigger replacement. str
The name of the dataSet.
accountName
This property is required.
Changes to this property will trigger replacement.
String
The name of the share account.
kustoClusterResourceId This property is required. String
Resource id of the kusto cluster.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
The resource group name.
shareName
This property is required.
Changes to this property will trigger replacement.
String
The name of the share to add the data set to.
dataSetName Changes to this property will trigger replacement. String
The name of the dataSet.

Outputs

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

AzureApiVersion string
The Azure API version of the resource.
DataSetId string
Unique id for identifying a data set resource
Id string
The provider-assigned unique ID for this managed resource.
Location string
Location of the kusto cluster.
Name string
Name of the azure resource
ProvisioningState string
Provisioning state of the kusto cluster data set.
SystemData Pulumi.AzureNative.DataShare.Outputs.SystemDataResponse
System Data of the Azure resource.
Type string
Type of the azure resource
AzureApiVersion string
The Azure API version of the resource.
DataSetId string
Unique id for identifying a data set resource
Id string
The provider-assigned unique ID for this managed resource.
Location string
Location of the kusto cluster.
Name string
Name of the azure resource
ProvisioningState string
Provisioning state of the kusto cluster data set.
SystemData SystemDataResponse
System Data of the Azure resource.
Type string
Type of the azure resource
azureApiVersion String
The Azure API version of the resource.
dataSetId String
Unique id for identifying a data set resource
id String
The provider-assigned unique ID for this managed resource.
location String
Location of the kusto cluster.
name String
Name of the azure resource
provisioningState String
Provisioning state of the kusto cluster data set.
systemData SystemDataResponse
System Data of the Azure resource.
type String
Type of the azure resource
azureApiVersion string
The Azure API version of the resource.
dataSetId string
Unique id for identifying a data set resource
id string
The provider-assigned unique ID for this managed resource.
location string
Location of the kusto cluster.
name string
Name of the azure resource
provisioningState string
Provisioning state of the kusto cluster data set.
systemData SystemDataResponse
System Data of the Azure resource.
type string
Type of the azure resource
azure_api_version str
The Azure API version of the resource.
data_set_id str
Unique id for identifying a data set resource
id str
The provider-assigned unique ID for this managed resource.
location str
Location of the kusto cluster.
name str
Name of the azure resource
provisioning_state str
Provisioning state of the kusto cluster data set.
system_data SystemDataResponse
System Data of the Azure resource.
type str
Type of the azure resource
azureApiVersion String
The Azure API version of the resource.
dataSetId String
Unique id for identifying a data set resource
id String
The provider-assigned unique ID for this managed resource.
location String
Location of the kusto cluster.
name String
Name of the azure resource
provisioningState String
Provisioning state of the kusto cluster data set.
systemData Property Map
System Data of the Azure resource.
type String
Type of the azure resource

Supporting Types

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 type of identity that last modified the resource.
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 type of identity that last modified the resource.
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 type of identity that last modified the resource.
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 type of identity that last modified the resource.
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 type of identity that last modified the resource.
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 type of identity that last modified the resource.
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:datashare:KustoClusterDataSet dataset1 /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DataShare/accounts/{accountName}/shares/{shareName}/dataSets/{dataSetName} 
Copy

To learn more about importing existing cloud resources, see Importing resources.

Package Details

Repository
Azure Native pulumi/pulumi-azure-native
License
Apache-2.0