import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * This data source provides details about a specific Compute Capacity Topology resource in Oracle Cloud Infrastructure Core service. * * Gets information about the specified compute capacity topology. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testComputeCapacityTopology = oci.core.getComputeCapacityTopology({ * computeCapacityTopologyId: testComputeCapacityTopologyOciCoreComputeCapacityTopology.id, * }); * ``` */ export declare function getComputeCapacityTopology(args: GetComputeCapacityTopologyArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getComputeCapacityTopology. */ export interface GetComputeCapacityTopologyArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compute capacity topology. */ computeCapacityTopologyId: string; } /** * A collection of values returned by getComputeCapacityTopology. */ export interface GetComputeCapacityTopologyResult { /** * The availability domain of the compute capacity topology. Example: `Uocm:US-CHICAGO-1-AD-2` */ readonly availabilityDomain: string; /** * A capacity source of bare metal hosts. */ readonly capacitySources: outputs.Core.GetComputeCapacityTopologyCapacitySource[]; /** * 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; readonly computeCapacityTopologyId: string; /** * Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Operations.CostCenter": "42"}` */ readonly definedTags: { [key: string]: string; }; /** * A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. */ readonly displayName: string; /** * Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}` */ readonly freeformTags: { [key: string]: string; }; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compute capacity topology. */ readonly id: string; /** * The current state of the compute capacity topology. */ readonly state: string; /** * The date and time that the compute capacity topology was created, in the format defined by [RFC3339](https://tools.ietf.org/html/rfc3339). Example: `2016-08-25T21:10:29.600Z` */ readonly timeCreated: string; /** * The date and time that the compute capacity topology was updated, in the format defined by [RFC3339](https://tools.ietf.org/html/rfc3339). Example: `2016-08-25T21:10:29.600Z` */ readonly timeUpdated: string; } /** * This data source provides details about a specific Compute Capacity Topology resource in Oracle Cloud Infrastructure Core service. * * Gets information about the specified compute capacity topology. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testComputeCapacityTopology = oci.core.getComputeCapacityTopology({ * computeCapacityTopologyId: testComputeCapacityTopologyOciCoreComputeCapacityTopology.id, * }); * ``` */ export declare function getComputeCapacityTopologyOutput(args: GetComputeCapacityTopologyOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getComputeCapacityTopology. */ export interface GetComputeCapacityTopologyOutputArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compute capacity topology. */ computeCapacityTopologyId: pulumi.Input; } //# sourceMappingURL=getComputeCapacityTopology.d.ts.map