import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * This data source provides details about a specific Image Shape resource in Oracle Cloud Infrastructure Core service. * * Retrieves an image shape compatibility entry. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testImageShape = oci.core.getImageShape({ * imageId: testImage.id, * shapeName: testShape.name, * }); * ``` */ export declare function getImageShape(args: GetImageShapeArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getImageShape. */ export interface GetImageShapeArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the image. */ imageId: string; /** * Shape name. */ shapeName: string; } /** * A collection of values returned by getImageShape. */ export interface GetImageShapeResult { /** * 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; /** * For a flexible image and shape, the amount of memory supported for instances that use this image. */ readonly memoryConstraints: outputs.Core.GetImageShapeMemoryConstraint[]; /** * OCPU options for an image and shape. */ readonly ocpuConstraints: outputs.Core.GetImageShapeOcpuConstraint[]; /** * The shape name. */ readonly shape: string; readonly shapeName: string; } /** * This data source provides details about a specific Image Shape resource in Oracle Cloud Infrastructure Core service. * * Retrieves an image shape compatibility entry. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testImageShape = oci.core.getImageShape({ * imageId: testImage.id, * shapeName: testShape.name, * }); * ``` */ export declare function getImageShapeOutput(args: GetImageShapeOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getImageShape. */ export interface GetImageShapeOutputArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the image. */ imageId: pulumi.Input; /** * Shape name. */ shapeName: pulumi.Input; } //# sourceMappingURL=getImageShape.d.ts.map