get Dataset Kusto Database
suspend fun getDatasetKustoDatabase(argument: GetDatasetKustoDatabasePlainArgs): GetDatasetKustoDatabaseResult
Use this data source to access information about an existing Data Share Kusto Database Dataset.
Example Usage
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azure.datashare.DatashareFunctions;
import com.pulumi.azure.datashare.inputs.GetDatasetKustoDatabaseArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
final var example = DatashareFunctions.getDatasetKustoDatabase(GetDatasetKustoDatabaseArgs.builder()
.name("example-dskdds")
.shareId("example-share-id")
.build());
ctx.export("id", example.applyValue(getDatasetKustoDatabaseResult -> getDatasetKustoDatabaseResult.id()));
}
}
Content copied to clipboard
Return
A collection of values returned by getDatasetKustoDatabase.
Parameters
argument
A collection of arguments for invoking getDatasetKustoDatabase.
Return
A collection of values returned by getDatasetKustoDatabase.
See also
Parameters
name
The name of this Data Share Kusto Database Dataset.
share Id
The resource ID of the Data Share where this Data Share Kusto Database Dataset should be created.
suspend fun getDatasetKustoDatabase(argument: suspend GetDatasetKustoDatabasePlainArgsBuilder.() -> Unit): GetDatasetKustoDatabaseResult
Return
A collection of values returned by getDatasetKustoDatabase.
See also
Parameters
argument
Builder for com.pulumi.azure.datashare.kotlin.inputs.GetDatasetKustoDatabasePlainArgs.