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 Shapes in Oracle Cloud Infrastructure Psql service. * * Returns the list of shapes allowed in the region. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testShapes = oci.psql.getShapes({ * compartmentId: compartmentId, * id: shapeId, * }); * ``` */ export declare function getShapes(args?: GetShapesArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getShapes. */ export interface GetShapesArgs { /** * The ID of the compartment in which to list resources. */ compartmentId?: string; filters?: inputs.Psql.GetShapesFilter[]; /** * A filter to return the feature by the shape name. */ id?: string; } /** * A collection of values returned by getShapes. */ export interface GetShapesResult { readonly compartmentId?: string; readonly filters?: outputs.Psql.GetShapesFilter[]; /** * A unique identifier for the shape. */ readonly id?: string; /** * The list of shape_collection. */ readonly shapeCollections: outputs.Psql.GetShapesShapeCollection[]; } /** * This data source provides the list of Shapes in Oracle Cloud Infrastructure Psql service. * * Returns the list of shapes allowed in the region. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testShapes = oci.psql.getShapes({ * compartmentId: compartmentId, * id: shapeId, * }); * ``` */ export declare function getShapesOutput(args?: GetShapesOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getShapes. */ export interface GetShapesOutputArgs { /** * The ID of the compartment in which to list resources. */ compartmentId?: pulumi.Input; filters?: pulumi.Input[] | undefined>; /** * A filter to return the feature by the shape name. */ id?: pulumi.Input; } //# sourceMappingURL=getShapes.d.ts.map