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

101 lines (100 loc) 2.69 kB
import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * Get a DataSetMapping in a shareSubscription * * Uses Azure REST API version 2021-08-01. */ export declare function getKustoClusterDataSetMapping(args: GetKustoClusterDataSetMappingArgs, opts?: pulumi.InvokeOptions): Promise<GetKustoClusterDataSetMappingResult>; export interface GetKustoClusterDataSetMappingArgs { /** * The name of the share account. */ accountName: string; /** * The name of the dataSetMapping. */ dataSetMappingName: string; /** * The resource group name. */ resourceGroupName: string; /** * The name of the shareSubscription. */ shareSubscriptionName: string; } /** * A Kusto cluster data set mapping */ export interface GetKustoClusterDataSetMappingResult { /** * The Azure API version of the resource. */ readonly azureApiVersion: string; /** * The id of the source data set. */ readonly dataSetId: string; /** * Gets the status of the data set mapping. */ readonly dataSetMappingStatus: string; /** * The resource id of the azure resource */ readonly id: string; /** * Kind of data set mapping. * Expected value is 'KustoCluster'. */ readonly kind: "KustoCluster"; /** * Resource id of the sink kusto cluster. */ readonly kustoClusterResourceId: string; /** * Location of the sink kusto cluster. */ readonly location: string; /** * Name of the azure resource */ readonly name: string; /** * Provisioning state of the data set mapping. */ readonly provisioningState: string; /** * System Data of the Azure resource. */ readonly systemData: outputs.datashare.SystemDataResponse; /** * Type of the azure resource */ readonly type: string; } /** * Get a DataSetMapping in a shareSubscription * * Uses Azure REST API version 2021-08-01. */ export declare function getKustoClusterDataSetMappingOutput(args: GetKustoClusterDataSetMappingOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetKustoClusterDataSetMappingResult>; export interface GetKustoClusterDataSetMappingOutputArgs { /** * The name of the share account. */ accountName: pulumi.Input<string>; /** * The name of the dataSetMapping. */ dataSetMappingName: pulumi.Input<string>; /** * The resource group name. */ resourceGroupName: pulumi.Input<string>; /** * The name of the shareSubscription. */ shareSubscriptionName: pulumi.Input<string>; }