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 Compute Capacity Reservation Instance Shapes in Oracle Cloud Infrastructure Core service. * * Lists the shapes that can be reserved within the specified compartment. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testComputeCapacityReservationInstanceShapes = oci.core.getComputeCapacityReservationInstanceShapes({ * compartmentId: compartmentId, * availabilityDomain: computeCapacityReservationInstanceShapeAvailabilityDomain, * displayName: computeCapacityReservationInstanceShapeDisplayName, * }); * ``` */ export declare function getComputeCapacityReservationInstanceShapes(args: GetComputeCapacityReservationInstanceShapesArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getComputeCapacityReservationInstanceShapes. */ export interface GetComputeCapacityReservationInstanceShapesArgs { /** * The name of the availability domain. Example: `Uocm:PHX-AD-1` */ availabilityDomain?: string; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment. */ compartmentId: string; /** * A filter to return only resources that match the given display name exactly. */ displayName?: string; filters?: inputs.Core.GetComputeCapacityReservationInstanceShapesFilter[]; } /** * A collection of values returned by getComputeCapacityReservationInstanceShapes. */ export interface GetComputeCapacityReservationInstanceShapesResult { /** * The shape's availability domain. */ readonly availabilityDomain?: string; readonly compartmentId: string; /** * The list of compute_capacity_reservation_instance_shapes. */ readonly computeCapacityReservationInstanceShapes: outputs.Core.GetComputeCapacityReservationInstanceShapesComputeCapacityReservationInstanceShape[]; readonly displayName?: string; readonly filters?: outputs.Core.GetComputeCapacityReservationInstanceShapesFilter[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; } /** * This data source provides the list of Compute Capacity Reservation Instance Shapes in Oracle Cloud Infrastructure Core service. * * Lists the shapes that can be reserved within the specified compartment. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testComputeCapacityReservationInstanceShapes = oci.core.getComputeCapacityReservationInstanceShapes({ * compartmentId: compartmentId, * availabilityDomain: computeCapacityReservationInstanceShapeAvailabilityDomain, * displayName: computeCapacityReservationInstanceShapeDisplayName, * }); * ``` */ export declare function getComputeCapacityReservationInstanceShapesOutput(args: GetComputeCapacityReservationInstanceShapesOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getComputeCapacityReservationInstanceShapes. */ export interface GetComputeCapacityReservationInstanceShapesOutputArgs { /** * The name of the availability domain. Example: `Uocm:PHX-AD-1` */ availabilityDomain?: pulumi.Input; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment. */ compartmentId: pulumi.Input; /** * A filter to return only resources that match the given display name exactly. */ displayName?: pulumi.Input; filters?: pulumi.Input[] | undefined>; } //# sourceMappingURL=getComputeCapacityReservationInstanceShapes.d.ts.map