import * as pulumi from "@pulumi/pulumi"; /** * Use this data source to look up a CASB quarantine tombstone template by ID or name. */ export declare function getCasbTombstoneTemplate(args?: GetCasbTombstoneTemplateArgs, opts?: pulumi.InvokeOptions): Promise; export interface GetCasbTombstoneTemplateArgs { /** * The name of the tombstone template to look up. */ name?: string; /** * The ID of the tombstone template to look up. */ resourceId?: number; } export interface GetCasbTombstoneTemplateResult { /** * The description of the tombstone template. */ readonly description: string; /** * The name of the tombstone template. */ readonly name: string; /** * The ID of the tombstone template. */ readonly resourceId: number; } /** * Use this data source to look up a CASB quarantine tombstone template by ID or name. */ export declare function getCasbTombstoneTemplateOutput(args?: GetCasbTombstoneTemplateOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; export interface GetCasbTombstoneTemplateOutputArgs { /** * The name of the tombstone template to look up. */ name?: pulumi.Input; /** * The ID of the tombstone template to look up. */ resourceId?: pulumi.Input; } //# sourceMappingURL=getCasbTombstoneTemplate.d.ts.map