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 Image Shapes in Oracle Cloud Infrastructure Core service. * * Lists the compatible shapes for the specified image. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testImageShapes = oci.core.getImageShapes({ * imageId: testImage.id, * }); * ``` */ export declare function getImageShapes(args: GetImageShapesArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getImageShapes. */ export interface GetImageShapesArgs { filters?: inputs.Core.GetImageShapesFilter[]; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the image. */ imageId: string; } /** * A collection of values returned by getImageShapes. */ export interface GetImageShapesResult { readonly filters?: outputs.Core.GetImageShapesFilter[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * The image [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm). */ readonly imageId: string; /** * The list of image_shape_compatibilities. */ readonly imageShapeCompatibilities: outputs.Core.GetImageShapesImageShapeCompatibility[]; } /** * This data source provides the list of Image Shapes in Oracle Cloud Infrastructure Core service. * * Lists the compatible shapes for the specified image. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testImageShapes = oci.core.getImageShapes({ * imageId: testImage.id, * }); * ``` */ export declare function getImageShapesOutput(args: GetImageShapesOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getImageShapes. */ export interface GetImageShapesOutputArgs { filters?: pulumi.Input[] | undefined>; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the image. */ imageId: pulumi.Input; } //# sourceMappingURL=getImageShapes.d.ts.map