AzureKustoClusterResource
Handle
interface AzureKustoClusterResource extends IAzureResource, IExpressionValue, IManifestExpressionProvider, IResource, IResourceWithConnectionString, IResourceWithEndpoints, IResourceWithParameters, IValueProvider, IValueWithReferences { readonly clusterUri: BicepOutputReference; readonly connectionStringExpression: ReferenceExpression; readonly isEmulator: boolean; readonly nameOutputReference: BicepOutputReference; readonly uriExpression: ReferenceExpression; addReadWriteDatabase( name: string, databaseName?: string): AzureKustoReadWriteDatabaseResource; runAsEmulator(configureContainer?: (obj: AzureKustoEmulatorResource) => Promise<void>): AzureKustoClusterResource;}7 members
Properties
property
clusterUriBicepOutputReferencegetGets the cluster URI output reference for the Azure Kusto cluster.
property
connectionStringExpressionReferenceExpressiongetGets the ConnectionStringExpression property
property
isEmulatorbooleangetGets whether the resource is running the local emulator.
property
nameOutputReferenceBicepOutputReferencegetGets the "name" output reference for the resource.
property
uriExpressionReferenceExpressiongetGets the connection URI expression for the Kusto cluster.
Methods
Adds a Kusto read-write database to the application model.
addReadWriteDatabase( name: string, databaseName?: string): AzureKustoReadWriteDatabaseResourceParameters
namestringdatabaseNamestringoptionalReturns
AzureKustoReadWriteDatabaseResourceConfigures the Kusto resource to run as an emulator using the Kustainer container.
runAsEmulator(configureContainer?: (obj: AzureKustoEmulatorResource) => Promise<void>): AzureKustoClusterResourceParameters
configureContainer(obj: AzureKustoEmulatorResource) => Promise<void>optionalReturns
AzureKustoClusterResource