UNPKG

@pulumi/azure-native

Version:

[![Slack](http://www.pulumi.com/images/docs/badges/slack.svg)](https://slack.pulumi.com) [![NPM version](https://badge.fury.io/js/%40pulumi%2Fazure-native.svg)](https://npmjs.com/package/@pulumi/azure-native) [![Python version](https://badge.fury.io/py/pu

97 lines (96 loc) 2.4 kB
import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * Get a DataSet in a share * * Uses Azure REST API version 2021-08-01. */ export declare function getKustoClusterDataSet(args: GetKustoClusterDataSetArgs, opts?: pulumi.InvokeOptions): Promise<GetKustoClusterDataSetResult>; export interface GetKustoClusterDataSetArgs { /** * The name of the share account. */ accountName: string; /** * The name of the dataSet. */ dataSetName: string; /** * The resource group name. */ resourceGroupName: string; /** * The name of the share. */ shareName: string; } /** * A kusto cluster data set. */ export interface GetKustoClusterDataSetResult { /** * The Azure API version of the resource. */ readonly azureApiVersion: string; /** * Unique id for identifying a data set resource */ readonly dataSetId: string; /** * The resource id of the azure resource */ readonly id: string; /** * Kind of data set. * Expected value is 'KustoCluster'. */ readonly kind: "KustoCluster"; /** * Resource id of the kusto cluster. */ readonly kustoClusterResourceId: string; /** * Location of the kusto cluster. */ readonly location: string; /** * Name of the azure resource */ readonly name: string; /** * Provisioning state of the kusto cluster data set. */ readonly provisioningState: string; /** * System Data of the Azure resource. */ readonly systemData: outputs.datashare.SystemDataResponse; /** * Type of the azure resource */ readonly type: string; } /** * Get a DataSet in a share * * Uses Azure REST API version 2021-08-01. */ export declare function getKustoClusterDataSetOutput(args: GetKustoClusterDataSetOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetKustoClusterDataSetResult>; export interface GetKustoClusterDataSetOutputArgs { /** * The name of the share account. */ accountName: pulumi.Input<string>; /** * The name of the dataSet. */ dataSetName: pulumi.Input<string>; /** * The resource group name. */ resourceGroupName: pulumi.Input<string>; /** * The name of the share. */ shareName: pulumi.Input<string>; }