@pulumi/databricks
Version:
A Pulumi package for creating and managing databricks cloud resources.
81 lines (80 loc) • 3.88 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as inputs from "./types/input";
import * as outputs from "./types/output";
/**
* > This data source can only be used with a workspace-level provider!
*
* [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(args?: GetAppsArgs, opts?: pulumi.InvokeOptions): Promise<GetAppsResult>;
/**
* A collection of arguments for invoking getApps.
*/
export interface GetAppsArgs {
providerConfig?: inputs.GetAppsProviderConfig;
}
/**
* 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;
readonly providerConfig?: outputs.GetAppsProviderConfig;
}
/**
* > This data source can only be used with a workspace-level provider!
*
* [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(args?: GetAppsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetAppsResult>;
/**
* A collection of arguments for invoking getApps.
*/
export interface GetAppsOutputArgs {
providerConfig?: pulumi.Input<inputs.GetAppsProviderConfigArgs>;
}