import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * This data source provides details about a specific Compute Host Group resource in Oracle Cloud Infrastructure Core service. * * Gets information about the specified compute host group * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testComputeHostGroup = oci.core.getComputeHostGroup({ * computeHostGroupId: testComputeHostGroupOciCoreComputeHostGroup.id, * }); * ``` */ export declare function getComputeHostGroup(args: GetComputeHostGroupArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getComputeHostGroup. */ export interface GetComputeHostGroupArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compute host group. */ computeHostGroupId: string; } /** * A collection of values returned by getComputeHostGroup. */ export interface GetComputeHostGroupResult { /** * The availability domain of a host group. Example: `Uocm:PHX-AD-1` */ readonly availabilityDomain: string; /** * The OCID of the compartment that contains host group. */ readonly compartmentId: string; readonly computeHostGroupId: string; /** * A list of HostGroupConfiguration objects */ readonly configurations: outputs.Core.GetComputeHostGroupConfiguration[]; /** * 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) for the Customer-unique host group */ readonly id: string; /** * A flag that allows customers to restrict placement for hosts attached to the group. If true, the only way to place on hosts is to target the specific host group. */ readonly isTargetedPlacementRequired: boolean; /** * The lifecycle state of the host group */ readonly state: 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 systemTags: { [key: string]: string; }; /** * The date and time the host group 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 the host group 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 Host Group resource in Oracle Cloud Infrastructure Core service. * * Gets information about the specified compute host group * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testComputeHostGroup = oci.core.getComputeHostGroup({ * computeHostGroupId: testComputeHostGroupOciCoreComputeHostGroup.id, * }); * ``` */ export declare function getComputeHostGroupOutput(args: GetComputeHostGroupOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getComputeHostGroup. */ export interface GetComputeHostGroupOutputArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compute host group. */ computeHostGroupId: pulumi.Input; } //# sourceMappingURL=getComputeHostGroup.d.ts.map