import * as pulumi from "@pulumi/pulumi"; /** * Use this data source to look up predefined DLP dictionary identifiers by dictionary name. */ export declare function getDlpDictionaryPredefinedIdentifiers(args: GetDlpDictionaryPredefinedIdentifiersArgs, opts?: pulumi.InvokeOptions): Promise; export interface GetDlpDictionaryPredefinedIdentifiersArgs { /** * The name of the predefined DLP dictionary to look up. */ name: string; } export interface GetDlpDictionaryPredefinedIdentifiersResult { /** * The list of predefined identifiers for the dictionary. */ readonly predefinedIdentifiers: string[]; /** * The ID of the predefined DLP dictionary. */ readonly resourceId: string; } /** * Use this data source to look up predefined DLP dictionary identifiers by dictionary name. */ export declare function getDlpDictionaryPredefinedIdentifiersOutput(args: GetDlpDictionaryPredefinedIdentifiersOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; export interface GetDlpDictionaryPredefinedIdentifiersOutputArgs { /** * The name of the predefined DLP dictionary to look up. */ name: pulumi.Input; } //# sourceMappingURL=getDlpDictionaryPredefinedIdentifiers.d.ts.map