import * as pulumi from "@pulumi/pulumi"; /** * Use this data source to look up a CASB email label by ID or name. */ export declare function getCasbEmailLabel(args?: GetCasbEmailLabelArgs, opts?: pulumi.InvokeOptions): Promise; export interface GetCasbEmailLabelArgs { /** * The name of the CASB email label to look up. */ name?: string; /** * The ID of the CASB email label to look up. */ resourceId?: number; } export interface GetCasbEmailLabelResult { /** * Whether the email label has been deleted. */ readonly labelDeleted: boolean; /** * The name of the CASB email label. */ readonly name: string; /** * The ID of the CASB email label. */ readonly resourceId: number; } /** * Use this data source to look up a CASB email label by ID or name. */ export declare function getCasbEmailLabelOutput(args?: GetCasbEmailLabelOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; export interface GetCasbEmailLabelOutputArgs { /** * The name of the CASB email label to look up. */ name?: pulumi.Input; /** * The ID of the CASB email label to look up. */ resourceId?: pulumi.Input; } //# sourceMappingURL=getCasbEmailLabel.d.ts.map