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 Hpc Islands in Oracle Cloud Infrastructure Core service. * * Lists compute HPC islands in the specified compute capacity topology. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testComputeCapacityTopologyComputeHpcIslands = oci.core.getComputeCapacityTopologyComputeHpcIslands({ * computeCapacityTopologyId: testComputeCapacityTopology.id, * availabilityDomain: computeCapacityTopologyComputeHpcIslandAvailabilityDomain, * compartmentId: compartmentId, * }); * ``` */ export declare function getComputeCapacityTopologyComputeHpcIslands(args: GetComputeCapacityTopologyComputeHpcIslandsArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getComputeCapacityTopologyComputeHpcIslands. */ export interface GetComputeCapacityTopologyComputeHpcIslandsArgs { /** * 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; filters?: inputs.Core.GetComputeCapacityTopologyComputeHpcIslandsFilter[]; } /** * A collection of values returned by getComputeCapacityTopologyComputeHpcIslands. */ export interface GetComputeCapacityTopologyComputeHpcIslandsResult { readonly availabilityDomain?: string; readonly compartmentId?: string; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compute capacity topology. */ readonly computeCapacityTopologyId: string; /** * The list of compute_hpc_island_collection. */ readonly computeHpcIslandCollections: outputs.Core.GetComputeCapacityTopologyComputeHpcIslandsComputeHpcIslandCollection[]; readonly filters?: outputs.Core.GetComputeCapacityTopologyComputeHpcIslandsFilter[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; } /** * This data source provides the list of Compute Capacity Topology Compute Hpc Islands in Oracle Cloud Infrastructure Core service. * * Lists compute HPC islands in the specified compute capacity topology. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testComputeCapacityTopologyComputeHpcIslands = oci.core.getComputeCapacityTopologyComputeHpcIslands({ * computeCapacityTopologyId: testComputeCapacityTopology.id, * availabilityDomain: computeCapacityTopologyComputeHpcIslandAvailabilityDomain, * compartmentId: compartmentId, * }); * ``` */ export declare function getComputeCapacityTopologyComputeHpcIslandsOutput(args: GetComputeCapacityTopologyComputeHpcIslandsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getComputeCapacityTopologyComputeHpcIslands. */ export interface GetComputeCapacityTopologyComputeHpcIslandsOutputArgs { /** * 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; filters?: pulumi.Input[] | undefined>; } //# sourceMappingURL=getComputeCapacityTopologyComputeHpcIslands.d.ts.map