import * as pulumi from "@pulumi/pulumi"; /** * This data source provides details about a specific Host Insight resource in Oracle Cloud Infrastructure Opsi service. * * Gets details of a host insight. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testHostInsight = oci.opsi.getHostInsight({ * hostInsightId: testHostInsightOciOpsiHostInsight.id, * }); * ``` */ export declare function getHostInsight(args: GetHostInsightArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getHostInsight. */ export interface GetHostInsightArgs { /** * Unique host insight identifier */ hostInsightId: string; } /** * A collection of values returned by getHostInsight. */ export interface GetHostInsightResult { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment. */ readonly compartmentId: string; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Compute Instance */ readonly computeId: string; /** * Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}` */ readonly definedTags: { [key: string]: string; }; /** * OPSI Enterprise Manager Bridge OCID */ readonly enterpriseManagerBridgeId: string; /** * Enterprise Manager Entity Display Name */ readonly enterpriseManagerEntityDisplayName: string; /** * Enterprise Manager Entity Unique Identifier */ readonly enterpriseManagerEntityIdentifier: string; /** * Enterprise Manager Entity Name */ readonly enterpriseManagerEntityName: string; /** * Enterprise Manager Entity Type */ readonly enterpriseManagerEntityType: string; /** * Enterprise Manager Unique Identifier */ readonly enterpriseManagerIdentifier: string; /** * Source of the host entity. */ readonly entitySource: string; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Exadata insight. */ readonly exadataInsightId: string; /** * Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}` */ readonly freeformTags: { [key: string]: string; }; /** * The user-friendly name for the host. The name does not have to be unique. */ readonly hostDisplayName: string; readonly hostInsightId: string; /** * The host name. The host name is unique amongst the hosts managed by the same management agent. */ readonly hostName: string; /** * Ops Insights internal representation of the host type. Possible value is EXTERNAL-HOST. */ readonly hostType: string; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the host insight resource. */ readonly id: string; /** * A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state. */ readonly lifecycleDetails: string; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Management Agent */ readonly managementAgentId: string; /** * Platform name. */ readonly platformName: string; /** * Platform type. Supported platformType(s) for MACS-managed external host insight: [LINUX, SOLARIS, WINDOWS]. Supported platformType(s) for MACS-managed cloud host insight: [LINUX]. Supported platformType(s) for EM-managed external host insight: [LINUX, SOLARIS, SUNOS, ZLINUX, WINDOWS, AIX]. */ readonly platformType: string; /** * Platform version. */ readonly platformVersion: string; readonly processorCount: number; /** * The current state of the host. */ readonly state: string; /** * Indicates the status of a host insight in Operations Insights */ readonly status: string; /** * System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"orcl-cloud.free-tier-retained": "true"}` */ readonly systemTags: { [key: string]: string; }; /** * The time the the host insight was first enabled. An RFC3339 formatted datetime string */ readonly timeCreated: string; /** * The time the host insight was updated. An RFC3339 formatted datetime string */ readonly timeUpdated: string; } /** * This data source provides details about a specific Host Insight resource in Oracle Cloud Infrastructure Opsi service. * * Gets details of a host insight. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testHostInsight = oci.opsi.getHostInsight({ * hostInsightId: testHostInsightOciOpsiHostInsight.id, * }); * ``` */ export declare function getHostInsightOutput(args: GetHostInsightOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getHostInsight. */ export interface GetHostInsightOutputArgs { /** * Unique host insight identifier */ hostInsightId: pulumi.Input; } //# sourceMappingURL=getHostInsight.d.ts.map