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 Network Blocks in Oracle Cloud Infrastructure Core service. * * Lists compute network blocks in the specified compute capacity topology. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testComputeCapacityTopologyComputeNetworkBlocks = oci.core.getComputeCapacityTopologyComputeNetworkBlocks({ * computeCapacityTopologyId: testComputeCapacityTopology.id, * availabilityDomain: computeCapacityTopologyComputeNetworkBlockAvailabilityDomain, * compartmentId: compartmentId, * computeHpcIslandId: testComputeHpcIsland.id, * }); * ``` */ export declare function getComputeCapacityTopologyComputeNetworkBlocks(args: GetComputeCapacityTopologyComputeNetworkBlocksArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getComputeCapacityTopologyComputeNetworkBlocks. */ export interface GetComputeCapacityTopologyComputeNetworkBlocksArgs { /** * 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; filters?: inputs.Core.GetComputeCapacityTopologyComputeNetworkBlocksFilter[]; } /** * A collection of values returned by getComputeCapacityTopologyComputeNetworkBlocks. */ export interface GetComputeCapacityTopologyComputeNetworkBlocksResult { 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 [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compute HPC island. */ readonly computeHpcIslandId?: string; /** * The list of compute_network_block_collection. */ readonly computeNetworkBlockCollections: outputs.Core.GetComputeCapacityTopologyComputeNetworkBlocksComputeNetworkBlockCollection[]; readonly filters?: outputs.Core.GetComputeCapacityTopologyComputeNetworkBlocksFilter[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; } /** * This data source provides the list of Compute Capacity Topology Compute Network Blocks in Oracle Cloud Infrastructure Core service. * * Lists compute network blocks in the specified compute capacity topology. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testComputeCapacityTopologyComputeNetworkBlocks = oci.core.getComputeCapacityTopologyComputeNetworkBlocks({ * computeCapacityTopologyId: testComputeCapacityTopology.id, * availabilityDomain: computeCapacityTopologyComputeNetworkBlockAvailabilityDomain, * compartmentId: compartmentId, * computeHpcIslandId: testComputeHpcIsland.id, * }); * ``` */ export declare function getComputeCapacityTopologyComputeNetworkBlocksOutput(args: GetComputeCapacityTopologyComputeNetworkBlocksOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getComputeCapacityTopologyComputeNetworkBlocks. */ export interface GetComputeCapacityTopologyComputeNetworkBlocksOutputArgs { /** * 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; filters?: pulumi.Input[] | undefined>; } //# sourceMappingURL=getComputeCapacityTopologyComputeNetworkBlocks.d.ts.map