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 Dedicated Vm Host Instance Shapes in Oracle Cloud Infrastructure Core service. * * Lists the shapes that can be used to launch a virtual machine instance on a dedicated virtual machine host within the specified compartment. * You can filter the list by compatibility with a specific dedicated virtual machine host shape. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testDedicatedVmHostInstanceShapes = oci.core.getDedicatedVmHostInstanceShapes({ * compartmentId: compartmentId, * availabilityDomain: dedicatedVmHostInstanceShapeAvailabilityDomain, * dedicatedVmHostShape: dedicatedVmHostInstanceShapeDedicatedVmHostShape, * }); * ``` */ export declare function getDedicatedVmHostInstanceShapes(args: GetDedicatedVmHostInstanceShapesArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getDedicatedVmHostInstanceShapes. */ export interface GetDedicatedVmHostInstanceShapesArgs { /** * 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; /** * Dedicated VM host shape name */ dedicatedVmHostShape?: string; filters?: inputs.Core.GetDedicatedVmHostInstanceShapesFilter[]; } /** * A collection of values returned by getDedicatedVmHostInstanceShapes. */ export interface GetDedicatedVmHostInstanceShapesResult { /** * The shape's availability domain. */ readonly availabilityDomain?: string; readonly compartmentId: string; /** * The list of dedicated_vm_host_instance_shapes. */ readonly dedicatedVmHostInstanceShapes: outputs.Core.GetDedicatedVmHostInstanceShapesDedicatedVmHostInstanceShape[]; readonly dedicatedVmHostShape?: string; readonly filters?: outputs.Core.GetDedicatedVmHostInstanceShapesFilter[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; } /** * This data source provides the list of Dedicated Vm Host Instance Shapes in Oracle Cloud Infrastructure Core service. * * Lists the shapes that can be used to launch a virtual machine instance on a dedicated virtual machine host within the specified compartment. * You can filter the list by compatibility with a specific dedicated virtual machine host shape. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testDedicatedVmHostInstanceShapes = oci.core.getDedicatedVmHostInstanceShapes({ * compartmentId: compartmentId, * availabilityDomain: dedicatedVmHostInstanceShapeAvailabilityDomain, * dedicatedVmHostShape: dedicatedVmHostInstanceShapeDedicatedVmHostShape, * }); * ``` */ export declare function getDedicatedVmHostInstanceShapesOutput(args: GetDedicatedVmHostInstanceShapesOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getDedicatedVmHostInstanceShapes. */ export interface GetDedicatedVmHostInstanceShapesOutputArgs { /** * 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; /** * Dedicated VM host shape name */ dedicatedVmHostShape?: pulumi.Input; filters?: pulumi.Input[] | undefined>; } //# sourceMappingURL=getDedicatedVmHostInstanceShapes.d.ts.map