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 Pod Shapes in Oracle Cloud Infrastructure Container Engine service. * * List all the Pod Shapes in a compartment. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testPodShapes = oci.containerengine.getPodShapes({ * compartmentId: compartmentId, * availabilityDomain: podShapeAvailabilityDomain, * name: podShapeName, * }); * ``` */ export declare function getPodShapes(args: GetPodShapesArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getPodShapes. */ export interface GetPodShapesArgs { /** * The availability domain of the pod shape. */ availabilityDomain?: string; /** * The OCID of the compartment. */ compartmentId: string; filters?: inputs.ContainerEngine.GetPodShapesFilter[]; /** * The name to filter on. */ name?: string; } /** * A collection of values returned by getPodShapes. */ export interface GetPodShapesResult { readonly availabilityDomain?: string; readonly compartmentId: string; readonly filters?: outputs.ContainerEngine.GetPodShapesFilter[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * The name of the identifying shape. */ readonly name?: string; /** * The list of pod_shapes. */ readonly podShapes: outputs.ContainerEngine.GetPodShapesPodShape[]; } /** * This data source provides the list of Pod Shapes in Oracle Cloud Infrastructure Container Engine service. * * List all the Pod Shapes in a compartment. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testPodShapes = oci.containerengine.getPodShapes({ * compartmentId: compartmentId, * availabilityDomain: podShapeAvailabilityDomain, * name: podShapeName, * }); * ``` */ export declare function getPodShapesOutput(args: GetPodShapesOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getPodShapes. */ export interface GetPodShapesOutputArgs { /** * The availability domain of the pod shape. */ availabilityDomain?: pulumi.Input; /** * The OCID of the compartment. */ compartmentId: pulumi.Input; filters?: pulumi.Input[] | undefined>; /** * The name to filter on. */ name?: pulumi.Input; } //# sourceMappingURL=getPodShapes.d.ts.map