import * as pulumi from "@pulumi/pulumi"; import * as outputs from "./types/output"; /** * Region data source */ export declare function getRegion(args: GetRegionArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getRegion. */ export interface GetRegionArgs { /** * The device in which the resource is defined */ device?: string; folder?: string; /** * The UUID of the region */ id: string; name?: string; snippet?: string; } /** * A collection of values returned by getRegion. */ export interface GetRegionResult { readonly addresses: string[]; /** * The device in which the resource is defined */ readonly device: string; readonly folder: string; readonly geoLocation: outputs.GetRegionGeoLocation; /** * The UUID of the region */ readonly id: string; readonly name: string; readonly snippet: string; readonly tfid: string; } /** * Region data source */ export declare function getRegionOutput(args: GetRegionOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getRegion. */ export interface GetRegionOutputArgs { /** * The device in which the resource is defined */ device?: pulumi.Input; folder?: pulumi.Input; /** * The UUID of the region */ id: pulumi.Input; name?: pulumi.Input; snippet?: pulumi.Input; } //# sourceMappingURL=getRegion.d.ts.map