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

104 lines (103 loc) 3.53 kB
import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * Returns an attached database configuration. * * Uses Azure REST API version 2021-06-01-preview. */ export declare function getKustoPoolAttachedDatabaseConfiguration(args: GetKustoPoolAttachedDatabaseConfigurationArgs, opts?: pulumi.InvokeOptions): Promise<GetKustoPoolAttachedDatabaseConfigurationResult>; export interface GetKustoPoolAttachedDatabaseConfigurationArgs { /** * The name of the attached database configuration. */ attachedDatabaseConfigurationName: string; /** * 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; } /** * Class representing an attached database configuration. */ export interface GetKustoPoolAttachedDatabaseConfigurationResult { /** * The list of databases from the clusterResourceId which are currently attached to the kusto pool. */ readonly attachedDatabaseNames: string[]; /** * The Azure API version of the resource. */ readonly azureApiVersion: string; /** * The name of the database which you would like to attach, use * if you want to follow all current and future databases. */ readonly databaseName: string; /** * The default principals modification kind */ readonly defaultPrincipalsModificationKind: string; /** * Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName} */ readonly id: string; /** * The resource id of the kusto pool where the databases you would like to attach reside. */ readonly kustoPoolResourceId: string; /** * Resource location. */ readonly location?: string; /** * The name of the resource */ readonly name: string; /** * The provisioned state of the resource. */ readonly provisioningState: string; /** * Azure Resource Manager metadata containing createdBy and modifiedBy information. */ readonly systemData: outputs.synapse.SystemDataResponse; /** * Table level sharing specifications */ readonly tableLevelSharingProperties?: outputs.synapse.TableLevelSharingPropertiesResponse; /** * The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts" */ readonly type: string; } /** * Returns an attached database configuration. * * Uses Azure REST API version 2021-06-01-preview. */ export declare function getKustoPoolAttachedDatabaseConfigurationOutput(args: GetKustoPoolAttachedDatabaseConfigurationOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetKustoPoolAttachedDatabaseConfigurationResult>; export interface GetKustoPoolAttachedDatabaseConfigurationOutputArgs { /** * The name of the attached database configuration. */ attachedDatabaseConfigurationName: pulumi.Input<string>; /** * 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>; }