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 Topology Compute Bare Metal Hosts in Oracle Cloud Infrastructure Core service. * * Lists compute bare metal hosts in the specified compute capacity topology. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testComputeCapacityTopologyComputeBareMetalHosts = oci.core.getComputeCapacityTopologyComputeBareMetalHosts({ * computeCapacityTopologyId: testComputeCapacityTopology.id, * availabilityDomain: computeCapacityTopologyComputeBareMetalHostAvailabilityDomain, * compartmentId: compartmentId, * computeHpcIslandId: testComputeHpcIsland.id, * computeLocalBlockId: testComputeLocalBlock.id, * computeNetworkBlockId: testComputeNetworkBlock.id, * }); * ``` */ export declare function getComputeCapacityTopologyComputeBareMetalHosts(args: GetComputeCapacityTopologyComputeBareMetalHostsArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getComputeCapacityTopologyComputeBareMetalHosts. */ export interface GetComputeCapacityTopologyComputeBareMetalHostsArgs { /** * 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](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compute capacity topology. */ computeCapacityTopologyId: string; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compute HPC island. */ computeHpcIslandId?: string; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compute local block. */ computeLocalBlockId?: string; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compute network block. */ computeNetworkBlockId?: string; filters?: inputs.Core.GetComputeCapacityTopologyComputeBareMetalHostsFilter[]; } /** * A collection of values returned by getComputeCapacityTopologyComputeBareMetalHosts. */ export interface GetComputeCapacityTopologyComputeBareMetalHostsResult { readonly availabilityDomain?: string; readonly compartmentId?: string; /** * The list of compute_bare_metal_host_collection. */ readonly computeBareMetalHostCollections: outputs.Core.GetComputeCapacityTopologyComputeBareMetalHostsComputeBareMetalHostCollection[]; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compute capacity topology. */ readonly computeCapacityTopologyId: string; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compute HPC island. */ readonly computeHpcIslandId?: string; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compute network block. */ readonly computeLocalBlockId?: string; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compute local block. */ readonly computeNetworkBlockId?: string; readonly filters?: outputs.Core.GetComputeCapacityTopologyComputeBareMetalHostsFilter[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; } /** * This data source provides the list of Compute Capacity Topology Compute Bare Metal Hosts in Oracle Cloud Infrastructure Core service. * * Lists compute bare metal hosts in the specified compute capacity topology. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testComputeCapacityTopologyComputeBareMetalHosts = oci.core.getComputeCapacityTopologyComputeBareMetalHosts({ * computeCapacityTopologyId: testComputeCapacityTopology.id, * availabilityDomain: computeCapacityTopologyComputeBareMetalHostAvailabilityDomain, * compartmentId: compartmentId, * computeHpcIslandId: testComputeHpcIsland.id, * computeLocalBlockId: testComputeLocalBlock.id, * computeNetworkBlockId: testComputeNetworkBlock.id, * }); * ``` */ export declare function getComputeCapacityTopologyComputeBareMetalHostsOutput(args: GetComputeCapacityTopologyComputeBareMetalHostsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getComputeCapacityTopologyComputeBareMetalHosts. */ export interface GetComputeCapacityTopologyComputeBareMetalHostsOutputArgs { /** * 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](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compute capacity topology. */ computeCapacityTopologyId: pulumi.Input; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compute HPC island. */ computeHpcIslandId?: pulumi.Input; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compute local block. */ computeLocalBlockId?: pulumi.Input; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compute network block. */ computeNetworkBlockId?: pulumi.Input; filters?: pulumi.Input[] | undefined>; } //# sourceMappingURL=getComputeCapacityTopologyComputeBareMetalHosts.d.ts.map