import * as pulumi from "@pulumi/pulumi"; import * as outputs from "./types/output"; /** * Use this data source to retrieve Auth0's outbound IP ranges for allowlisting purposes. */ export declare function getOutboundIps(opts?: pulumi.InvokeOptions): Promise; /** * A collection of values returned by getOutboundIps. */ export interface GetOutboundIpsResult { /** * List of recent changes to IP ranges. */ readonly changelogs: outputs.GetOutboundIpsChangelog[]; /** * The ID of this resource. */ readonly id: string; /** * RFC3339 timestamp when the IP ranges were last updated. */ readonly lastUpdatedAt: string; /** * A list of regions and their corresponding IP CIDR blocks. */ readonly regions: outputs.GetOutboundIpsRegion[]; } /** * Use this data source to retrieve Auth0's outbound IP ranges for allowlisting purposes. */ export declare function getOutboundIpsOutput(opts?: pulumi.InvokeOutputOptions): pulumi.Output;