import * as pulumi from "@pulumi/pulumi"; import * as inputs from "./types/input"; import * as outputs from "./types/output"; export declare function getAccessRule(args?: GetAccessRuleArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getAccessRule. */ export interface GetAccessRuleArgs { accountId?: string; filter?: inputs.GetAccessRuleFilter; ruleId?: string; zoneId?: string; } /** * A collection of values returned by getAccessRule. */ export interface GetAccessRuleResult { readonly accountId?: string; readonly allowedModes: string[]; readonly configuration: outputs.GetAccessRuleConfiguration; readonly createdOn: string; readonly filter?: outputs.GetAccessRuleFilter; readonly id: string; readonly mode: string; readonly modifiedOn: string; readonly notes: string; readonly ruleId?: string; readonly scope: outputs.GetAccessRuleScope; readonly zoneId?: string; } export declare function getAccessRuleOutput(args?: GetAccessRuleOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getAccessRule. */ export interface GetAccessRuleOutputArgs { accountId?: pulumi.Input; filter?: pulumi.Input; ruleId?: pulumi.Input; zoneId?: pulumi.Input; } //# sourceMappingURL=getAccessRule.d.ts.map