@pulumi/databricks
Version:
A Pulumi package for creating and managing databricks cloud resources.
58 lines (57 loc) • 2.08 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as outputs from "./types/output";
export declare function getEntityTagAssignments(args: GetEntityTagAssignmentsArgs, opts?: pulumi.InvokeOptions): Promise<GetEntityTagAssignmentsResult>;
/**
* A collection of arguments for invoking getEntityTagAssignments.
*/
export interface GetEntityTagAssignmentsArgs {
/**
* The fully qualified name of the entity to which the tag is assigned
*/
entityName: string;
/**
* The type of the entity to which the tag is assigned. Allowed values are: catalogs, schemas, tables, columns, volumes
*/
entityType: string;
/**
* Workspace ID of the resource
*/
workspaceId?: string;
}
/**
* A collection of values returned by getEntityTagAssignments.
*/
export interface GetEntityTagAssignmentsResult {
/**
* (string) - The fully qualified name of the entity to which the tag is assigned
*/
readonly entityName: string;
/**
* (string) - The type of the entity to which the tag is assigned. Allowed values are: catalogs, schemas, tables, columns, volumes
*/
readonly entityType: string;
/**
* The provider-assigned unique ID for this managed resource.
*/
readonly id: string;
readonly tagAssignments: outputs.GetEntityTagAssignmentsTagAssignment[];
readonly workspaceId?: string;
}
export declare function getEntityTagAssignmentsOutput(args: GetEntityTagAssignmentsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetEntityTagAssignmentsResult>;
/**
* A collection of arguments for invoking getEntityTagAssignments.
*/
export interface GetEntityTagAssignmentsOutputArgs {
/**
* The fully qualified name of the entity to which the tag is assigned
*/
entityName: pulumi.Input<string>;
/**
* The type of the entity to which the tag is assigned. Allowed values are: catalogs, schemas, tables, columns, volumes
*/
entityType: pulumi.Input<string>;
/**
* Workspace ID of the resource
*/
workspaceId?: pulumi.Input<string>;
}