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 Hosts Instances in Oracle Cloud Infrastructure Core service. * * Returns the list of instances on the dedicated virtual machine hosts that match the specified criteria. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testDedicatedVmHostsInstances = oci.core.getDedicatedVmHostInstances({ * compartmentId: compartmentId, * dedicatedVmHostId: testDedicatedVmHost.id, * availabilityDomain: dedicatedVmHostsInstanceAvailabilityDomain, * isMemoryEncryptionEnabled: dedicatedVmHostsInstanceIsMemoryEncryptionEnabled === "true", * }); * ``` */ export declare function getDedicatedVmHostInstances(args: GetDedicatedVmHostInstancesArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getDedicatedVmHostInstances. */ export interface GetDedicatedVmHostInstancesArgs { /** * 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; /** * The OCID of the dedicated VM host. */ dedicatedVmHostId: string; filters?: inputs.Core.GetDedicatedVmHostInstancesFilter[]; /** * A filter to return only confidential Dedicated VM hosts (DVMH) or confidential VM instances on DVMH. */ isMemoryEncryptionEnabled?: boolean; } /** * A collection of values returned by getDedicatedVmHostInstances. */ export interface GetDedicatedVmHostInstancesResult { /** * The availability domain the virtual machine instance is running in. Example: `Uocm:PHX-AD-1` */ readonly availabilityDomain?: string; /** * The OCID of the compartment that contains the virtual machine instance. */ readonly compartmentId: string; readonly dedicatedVmHostId: string; /** * The list of dedicated_vm_host_instances. */ readonly dedicatedVmHostInstances: outputs.Core.GetDedicatedVmHostInstancesDedicatedVmHostInstance[]; readonly filters?: outputs.Core.GetDedicatedVmHostInstancesFilter[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * Specifies whether the VM instance is confidential. */ readonly isMemoryEncryptionEnabled?: boolean; } /** * This data source provides the list of Dedicated Vm Hosts Instances in Oracle Cloud Infrastructure Core service. * * Returns the list of instances on the dedicated virtual machine hosts that match the specified criteria. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testDedicatedVmHostsInstances = oci.core.getDedicatedVmHostInstances({ * compartmentId: compartmentId, * dedicatedVmHostId: testDedicatedVmHost.id, * availabilityDomain: dedicatedVmHostsInstanceAvailabilityDomain, * isMemoryEncryptionEnabled: dedicatedVmHostsInstanceIsMemoryEncryptionEnabled === "true", * }); * ``` */ export declare function getDedicatedVmHostInstancesOutput(args: GetDedicatedVmHostInstancesOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getDedicatedVmHostInstances. */ export interface GetDedicatedVmHostInstancesOutputArgs { /** * 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; /** * The OCID of the dedicated VM host. */ dedicatedVmHostId: pulumi.Input; filters?: pulumi.Input[] | undefined>; /** * A filter to return only confidential Dedicated VM hosts (DVMH) or confidential VM instances on DVMH. */ isMemoryEncryptionEnabled?: pulumi.Input; } //# sourceMappingURL=getDedicatedVmHostInstances.d.ts.map