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

52 lines (51 loc) 1.67 kB
import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * Returns a list of language extensions that can run within KQL queries. * * Uses Azure REST API version 2021-06-01-preview. */ export declare function listKustoPoolLanguageExtensions(args: ListKustoPoolLanguageExtensionsArgs, opts?: pulumi.InvokeOptions): Promise<ListKustoPoolLanguageExtensionsResult>; export interface ListKustoPoolLanguageExtensionsArgs { /** * The name of the Kusto pool. */ kustoPoolName: string; /** * The name of the resource group. The name is case insensitive. */ resourceGroupName: string; /** * The name of the workspace. */ workspaceName: string; } /** * The list of language extension objects. */ export interface ListKustoPoolLanguageExtensionsResult { /** * The list of language extensions. */ readonly value?: outputs.synapse.LanguageExtensionResponse[]; } /** * Returns a list of language extensions that can run within KQL queries. * * Uses Azure REST API version 2021-06-01-preview. */ export declare function listKustoPoolLanguageExtensionsOutput(args: ListKustoPoolLanguageExtensionsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<ListKustoPoolLanguageExtensionsResult>; export interface ListKustoPoolLanguageExtensionsOutputArgs { /** * The name of the Kusto pool. */ kustoPoolName: pulumi.Input<string>; /** * The name of the resource group. The name is case insensitive. */ resourceGroupName: pulumi.Input<string>; /** * The name of the workspace. */ workspaceName: pulumi.Input<string>; }