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 Port Speed Shapes in Oracle Cloud Infrastructure Core service. * * Lists the available port speeds for cross-connects. You need this information * so you can specify your desired port speed (that is, shape) when you create a * cross-connect. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testCrossConnectPortSpeedShapes = oci.core.getCrossConnectPortSpeedShape({ * compartmentId: compartmentId, * }); * ``` */ export declare function getCrossConnectPortSpeedShape(args: GetCrossConnectPortSpeedShapeArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getCrossConnectPortSpeedShape. */ export interface GetCrossConnectPortSpeedShapeArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment. */ compartmentId: string; filters?: inputs.Core.GetCrossConnectPortSpeedShapeFilter[]; } /** * A collection of values returned by getCrossConnectPortSpeedShape. */ export interface GetCrossConnectPortSpeedShapeResult { readonly compartmentId: string; /** * The list of cross_connect_port_speed_shapes. */ readonly crossConnectPortSpeedShapes: outputs.Core.GetCrossConnectPortSpeedShapeCrossConnectPortSpeedShape[]; readonly filters?: outputs.Core.GetCrossConnectPortSpeedShapeFilter[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; } /** * This data source provides the list of Cross Connect Port Speed Shapes in Oracle Cloud Infrastructure Core service. * * Lists the available port speeds for cross-connects. You need this information * so you can specify your desired port speed (that is, shape) when you create a * cross-connect. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testCrossConnectPortSpeedShapes = oci.core.getCrossConnectPortSpeedShape({ * compartmentId: compartmentId, * }); * ``` */ export declare function getCrossConnectPortSpeedShapeOutput(args: GetCrossConnectPortSpeedShapeOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getCrossConnectPortSpeedShape. */ export interface GetCrossConnectPortSpeedShapeOutputArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment. */ compartmentId: pulumi.Input; filters?: pulumi.Input[] | undefined>; } //# sourceMappingURL=getCrossConnectPortSpeedShape.d.ts.map