UNPKG

@pulumi/databricks

Version:

A Pulumi package for creating and managing databricks cloud resources.

67 lines (66 loc) 3.48 kB
import * as pulumi from "@pulumi/pulumi"; import * as outputs from "./types/output"; /** * > This feature is in [Public Preview](https://docs.databricks.com/release-notes/release-types.html). * * [Databricks Apps](https://docs.databricks.com/en/dev-tools/databricks-apps/index.html) run directly on a customer’s Databricks instance, integrate with their data, use and extend Databricks services, and enable users to interact through single sign-on. This resource creates the application but does not handle app deployment, which should be handled separately as part of your CI/CD pipeline. * * This data source allows you to fetch information about all Databricks Apps within a workspace. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as databricks from "@pulumi/databricks"; * * const allApps = databricks.getApps({}); * ``` * * ## Related Resources * * The following resources are used in the same context: * * * databricks.App to manage [Databricks Apps](https://docs.databricks.com/en/dev-tools/databricks-apps/index.html). * * databricks.SqlEndpoint to manage Databricks SQL [Endpoints](https://docs.databricks.com/sql/admin/sql-endpoints.html). * * databricks.ModelServing to serve this model on a Databricks serving endpoint. * * databricks.Secret to manage [secrets](https://docs.databricks.com/security/secrets/index.html#secrets-user-guide) in Databricks workspace. * * databricks.Job to manage [Databricks Jobs](https://docs.databricks.com/jobs.html) to run non-interactive code. */ export declare function getApps(opts?: pulumi.InvokeOptions): Promise<GetAppsResult>; /** * A collection of values returned by getApps. */ export interface GetAppsResult { readonly apps: outputs.GetAppsApp[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; } /** * > This feature is in [Public Preview](https://docs.databricks.com/release-notes/release-types.html). * * [Databricks Apps](https://docs.databricks.com/en/dev-tools/databricks-apps/index.html) run directly on a customer’s Databricks instance, integrate with their data, use and extend Databricks services, and enable users to interact through single sign-on. This resource creates the application but does not handle app deployment, which should be handled separately as part of your CI/CD pipeline. * * This data source allows you to fetch information about all Databricks Apps within a workspace. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as databricks from "@pulumi/databricks"; * * const allApps = databricks.getApps({}); * ``` * * ## Related Resources * * The following resources are used in the same context: * * * databricks.App to manage [Databricks Apps](https://docs.databricks.com/en/dev-tools/databricks-apps/index.html). * * databricks.SqlEndpoint to manage Databricks SQL [Endpoints](https://docs.databricks.com/sql/admin/sql-endpoints.html). * * databricks.ModelServing to serve this model on a Databricks serving endpoint. * * databricks.Secret to manage [secrets](https://docs.databricks.com/security/secrets/index.html#secrets-user-guide) in Databricks workspace. * * databricks.Job to manage [Databricks Jobs](https://docs.databricks.com/jobs.html) to run non-interactive code. */ export declare function getAppsOutput(opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetAppsResult>;