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.41 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 getKustoDatabaseDataSet(args: GetKustoDatabaseDataSetArgs, opts?: pulumi.InvokeOptions): Promise<GetKustoDatabaseDataSetResult>; export interface GetKustoDatabaseDataSetArgs { /** * 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 database data set. */ export interface GetKustoDatabaseDataSetResult { /** * 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 'KustoDatabase'. */ readonly kind: "KustoDatabase"; /** * Resource id of the kusto database. */ readonly kustoDatabaseResourceId: string; /** * Location of the kusto cluster. */ readonly location: string; /** * Name of the azure resource */ readonly name: string; /** * Provisioning state of the kusto database 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 getKustoDatabaseDataSetOutput(args: GetKustoDatabaseDataSetOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetKustoDatabaseDataSetResult>; export interface GetKustoDatabaseDataSetOutputArgs { /** * 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>; }