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 Topologies in Oracle Cloud Infrastructure Core service. * * Lists the compute capacity topologies in the specified compartment. You can filter the list by a compute * capacity topology display name. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testComputeCapacityTopologies = oci.core.getComputeCapacityTopologies({ * compartmentId: compartmentId, * availabilityDomain: computeCapacityTopologyAvailabilityDomain, * displayName: computeCapacityTopologyDisplayName, * }); * ``` */ export declare function getComputeCapacityTopologies(args: GetComputeCapacityTopologiesArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getComputeCapacityTopologies. */ export interface GetComputeCapacityTopologiesArgs { /** * 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; /** * A filter to return only resources that match the given display name exactly. */ displayName?: string; filters?: inputs.Core.GetComputeCapacityTopologiesFilter[]; } /** * A collection of values returned by getComputeCapacityTopologies. */ export interface GetComputeCapacityTopologiesResult { /** * The availability domain of the compute capacity topology. Example: `Uocm:US-CHICAGO-1-AD-2` */ readonly availabilityDomain?: string; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment that contains the compute capacity topology. */ readonly compartmentId: string; /** * The list of compute_capacity_topology_collection. */ readonly computeCapacityTopologyCollections: outputs.Core.GetComputeCapacityTopologiesComputeCapacityTopologyCollection[]; /** * A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. */ readonly displayName?: string; readonly filters?: outputs.Core.GetComputeCapacityTopologiesFilter[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; } /** * This data source provides the list of Compute Capacity Topologies in Oracle Cloud Infrastructure Core service. * * Lists the compute capacity topologies in the specified compartment. You can filter the list by a compute * capacity topology display name. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testComputeCapacityTopologies = oci.core.getComputeCapacityTopologies({ * compartmentId: compartmentId, * availabilityDomain: computeCapacityTopologyAvailabilityDomain, * displayName: computeCapacityTopologyDisplayName, * }); * ``` */ export declare function getComputeCapacityTopologiesOutput(args: GetComputeCapacityTopologiesOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getComputeCapacityTopologies. */ export interface GetComputeCapacityTopologiesOutputArgs { /** * 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; /** * A filter to return only resources that match the given display name exactly. */ displayName?: pulumi.Input; filters?: pulumi.Input[] | undefined>; } //# sourceMappingURL=getComputeCapacityTopologies.d.ts.map