import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../types/input"; import * as outputs from "../types/output"; /** * This data source provides the list of Cross Connect Locations in Oracle Cloud Infrastructure Core service. * * Lists the available FastConnect locations for cross-connect installation. You need * this information so you can specify your desired location when you create a cross-connect. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testCrossConnectLocations = oci.core.getCrossConnectLocations({ * compartmentId: compartmentId, * }); * ``` */ export declare function getCrossConnectLocations(args: GetCrossConnectLocationsArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getCrossConnectLocations. */ export interface GetCrossConnectLocationsArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment. */ compartmentId: string; filters?: inputs.Core.GetCrossConnectLocationsFilter[]; } /** * A collection of values returned by getCrossConnectLocations. */ export interface GetCrossConnectLocationsResult { readonly compartmentId: string; /** * The list of cross_connect_locations. */ readonly crossConnectLocations: outputs.Core.GetCrossConnectLocationsCrossConnectLocation[]; readonly filters?: outputs.Core.GetCrossConnectLocationsFilter[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; } /** * This data source provides the list of Cross Connect Locations in Oracle Cloud Infrastructure Core service. * * Lists the available FastConnect locations for cross-connect installation. You need * this information so you can specify your desired location when you create a cross-connect. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testCrossConnectLocations = oci.core.getCrossConnectLocations({ * compartmentId: compartmentId, * }); * ``` */ export declare function getCrossConnectLocationsOutput(args: GetCrossConnectLocationsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getCrossConnectLocations. */ export interface GetCrossConnectLocationsOutputArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment. */ compartmentId: pulumi.Input; filters?: pulumi.Input[] | undefined>; } //# sourceMappingURL=getCrossConnectLocations.d.ts.map