import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * Use this data source to access information of a specific physical location. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as azure from "@pulumi/azure"; * * const example = azure.core.getLocation({ * location: "West Europe", * }); * ``` */ export declare function getLocation(args: GetLocationArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getLocation. */ export interface GetLocationArgs { /** * Specifies the supported Azure location where the resource exists. */ location: string; } /** * A collection of values returned by getLocation. */ export interface GetLocationResult { /** * The display name of the location. */ readonly displayName: string; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; readonly location: string; /** * A `zoneMappings` block as defined below. */ readonly zoneMappings: outputs.core.GetLocationZoneMapping[]; } /** * Use this data source to access information of a specific physical location. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as azure from "@pulumi/azure"; * * const example = azure.core.getLocation({ * location: "West Europe", * }); * ``` */ export declare function getLocationOutput(args: GetLocationOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getLocation. */ export interface GetLocationOutputArgs { /** * Specifies the supported Azure location where the resource exists. */ location: pulumi.Input; }