import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../../types/output"; /** * Gets details of a single BrowserDlpRule. */ export declare function getBrowserDlpRule(args: GetBrowserDlpRuleArgs, opts?: pulumi.InvokeOptions): Promise; export interface GetBrowserDlpRuleArgs { browserDlpRuleId: string; organizationId: string; partnerTenantId: string; } export interface GetBrowserDlpRuleResult { /** * The group to which this Rule should be applied to. */ readonly group: outputs.beyondcorp.v1alpha.GoogleCloudBeyondcorpPartnerservicesV1alphaGroupResponse; /** * Unique resource name. The name is ignored when creating BrowserDlpRule. */ readonly name: string; /** * The policy settings to apply. */ readonly ruleSetting: outputs.beyondcorp.v1alpha.GoogleCloudBeyondcorpPartnerservicesV1alphaRuleSettingResponse; } /** * Gets details of a single BrowserDlpRule. */ export declare function getBrowserDlpRuleOutput(args: GetBrowserDlpRuleOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output; export interface GetBrowserDlpRuleOutputArgs { browserDlpRuleId: pulumi.Input; organizationId: pulumi.Input; partnerTenantId: pulumi.Input; }