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 Shapes in Oracle Cloud Infrastructure Core service. * * Lists the shapes that can be used to launch a dedicated virtual machine host within the specified compartment. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testDedicatedVmHostShapes = oci.core.getDedicatedVmHostShapes({ * compartmentId: compartmentId, * availabilityDomain: dedicatedVmHostShapeAvailabilityDomain, * instanceShapeName: dedicatedVmHostShapeInstanceShapeName, * }); * ``` */ export declare function getDedicatedVmHostShapes(args: GetDedicatedVmHostShapesArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getDedicatedVmHostShapes. */ export interface GetDedicatedVmHostShapesArgs { /** * 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; filters?: inputs.Core.GetDedicatedVmHostShapesFilter[]; /** * The name for the instance's shape. */ instanceShapeName?: string; } /** * A collection of values returned by getDedicatedVmHostShapes. */ export interface GetDedicatedVmHostShapesResult { /** * The shape's availability domain. */ readonly availabilityDomain?: string; readonly compartmentId: string; /** * The list of dedicated_vm_host_shapes. */ readonly dedicatedVmHostShapes: outputs.Core.GetDedicatedVmHostShapesDedicatedVmHostShape[]; readonly filters?: outputs.Core.GetDedicatedVmHostShapesFilter[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; readonly instanceShapeName?: string; } /** * This data source provides the list of Dedicated Vm Host Shapes in Oracle Cloud Infrastructure Core service. * * Lists the shapes that can be used to launch a dedicated virtual machine host within the specified compartment. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testDedicatedVmHostShapes = oci.core.getDedicatedVmHostShapes({ * compartmentId: compartmentId, * availabilityDomain: dedicatedVmHostShapeAvailabilityDomain, * instanceShapeName: dedicatedVmHostShapeInstanceShapeName, * }); * ``` */ export declare function getDedicatedVmHostShapesOutput(args: GetDedicatedVmHostShapesOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getDedicatedVmHostShapes. */ export interface GetDedicatedVmHostShapesOutputArgs { /** * 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; filters?: pulumi.Input[] | undefined>; /** * The name for the instance's shape. */ instanceShapeName?: pulumi.Input; } //# sourceMappingURL=getDedicatedVmHostShapes.d.ts.map