UNPKG

@pulumi/databricks

Version:

A Pulumi package for creating and managing databricks cloud resources.

50 lines (49 loc) 1.47 kB
import * as pulumi from "@pulumi/pulumi"; export declare function getMaterializedFeaturesFeatureTag(args: GetMaterializedFeaturesFeatureTagArgs, opts?: pulumi.InvokeOptions): Promise<GetMaterializedFeaturesFeatureTagResult>; /** * A collection of arguments for invoking getMaterializedFeaturesFeatureTag. */ export interface GetMaterializedFeaturesFeatureTagArgs { key: string; /** * (string) */ value?: string; /** * Workspace ID of the resource */ workspaceId?: string; } /** * A collection of values returned by getMaterializedFeaturesFeatureTag. */ export interface GetMaterializedFeaturesFeatureTagResult { /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * (string) */ readonly key: string; /** * (string) */ readonly value?: string; readonly workspaceId?: string; } export declare function getMaterializedFeaturesFeatureTagOutput(args: GetMaterializedFeaturesFeatureTagOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetMaterializedFeaturesFeatureTagResult>; /** * A collection of arguments for invoking getMaterializedFeaturesFeatureTag. */ export interface GetMaterializedFeaturesFeatureTagOutputArgs { key: pulumi.Input<string>; /** * (string) */ value?: pulumi.Input<string>; /** * Workspace ID of the resource */ workspaceId?: pulumi.Input<string>; }