oci.Opsi.getHostInsights
Explore with Pulumi AI
This data source provides the list of Host Insights in Oracle Cloud Infrastructure Opsi service.
Gets a list of host insights based on the query parameters specified. Either compartmentId or id query parameter must be specified. When both compartmentId and compartmentIdInSubtree are specified, a list of host insights in that compartment and in all sub-compartments will be returned.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";
const testHostInsights = oci.Opsi.getHostInsights({
    compartmentId: compartmentId,
    compartmentIdInSubtree: hostInsightCompartmentIdInSubtree,
    enterpriseManagerBridgeId: testEnterpriseManagerBridge.id,
    exadataInsightId: testExadataInsight.id,
    hostTypes: hostInsightHostType,
    id: hostInsightId,
    states: hostInsightState,
    statuses: hostInsightStatus,
});
import pulumi
import pulumi_oci as oci
test_host_insights = oci.Opsi.get_host_insights(compartment_id=compartment_id,
    compartment_id_in_subtree=host_insight_compartment_id_in_subtree,
    enterprise_manager_bridge_id=test_enterprise_manager_bridge["id"],
    exadata_insight_id=test_exadata_insight["id"],
    host_types=host_insight_host_type,
    id=host_insight_id,
    states=host_insight_state,
    statuses=host_insight_status)
package main
import (
	"github.com/pulumi/pulumi-oci/sdk/v2/go/oci/opsi"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := opsi.GetHostInsights(ctx, &opsi.GetHostInsightsArgs{
			CompartmentId:             pulumi.StringRef(compartmentId),
			CompartmentIdInSubtree:    pulumi.BoolRef(hostInsightCompartmentIdInSubtree),
			EnterpriseManagerBridgeId: pulumi.StringRef(testEnterpriseManagerBridge.Id),
			ExadataInsightId:          pulumi.StringRef(testExadataInsight.Id),
			HostTypes:                 hostInsightHostType,
			Id:                        pulumi.StringRef(hostInsightId),
			States:                    hostInsightState,
			Statuses:                  hostInsightStatus,
		}, nil)
		if err != nil {
			return err
		}
		return nil
	})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Oci = Pulumi.Oci;
return await Deployment.RunAsync(() => 
{
    var testHostInsights = Oci.Opsi.GetHostInsights.Invoke(new()
    {
        CompartmentId = compartmentId,
        CompartmentIdInSubtree = hostInsightCompartmentIdInSubtree,
        EnterpriseManagerBridgeId = testEnterpriseManagerBridge.Id,
        ExadataInsightId = testExadataInsight.Id,
        HostTypes = hostInsightHostType,
        Id = hostInsightId,
        States = hostInsightState,
        Statuses = hostInsightStatus,
    });
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.Opsi.OpsiFunctions;
import com.pulumi.oci.Opsi.inputs.GetHostInsightsArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
    public static void main(String[] args) {
        Pulumi.run(App::stack);
    }
    public static void stack(Context ctx) {
        final var testHostInsights = OpsiFunctions.getHostInsights(GetHostInsightsArgs.builder()
            .compartmentId(compartmentId)
            .compartmentIdInSubtree(hostInsightCompartmentIdInSubtree)
            .enterpriseManagerBridgeId(testEnterpriseManagerBridge.id())
            .exadataInsightId(testExadataInsight.id())
            .hostTypes(hostInsightHostType)
            .id(hostInsightId)
            .states(hostInsightState)
            .statuses(hostInsightStatus)
            .build());
    }
}
variables:
  testHostInsights:
    fn::invoke:
      function: oci:Opsi:getHostInsights
      arguments:
        compartmentId: ${compartmentId}
        compartmentIdInSubtree: ${hostInsightCompartmentIdInSubtree}
        enterpriseManagerBridgeId: ${testEnterpriseManagerBridge.id}
        exadataInsightId: ${testExadataInsight.id}
        hostTypes: ${hostInsightHostType}
        id: ${hostInsightId}
        states: ${hostInsightState}
        statuses: ${hostInsightStatus}
Using getHostInsights
Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.
function getHostInsights(args: GetHostInsightsArgs, opts?: InvokeOptions): Promise<GetHostInsightsResult>
function getHostInsightsOutput(args: GetHostInsightsOutputArgs, opts?: InvokeOptions): Output<GetHostInsightsResult>def get_host_insights(compartment_id: Optional[str] = None,
                      compartment_id_in_subtree: Optional[bool] = None,
                      enterprise_manager_bridge_id: Optional[str] = None,
                      exadata_insight_id: Optional[str] = None,
                      filters: Optional[Sequence[GetHostInsightsFilter]] = None,
                      host_types: Optional[Sequence[str]] = None,
                      id: Optional[str] = None,
                      states: Optional[Sequence[str]] = None,
                      statuses: Optional[Sequence[str]] = None,
                      opts: Optional[InvokeOptions] = None) -> GetHostInsightsResult
def get_host_insights_output(compartment_id: Optional[pulumi.Input[str]] = None,
                      compartment_id_in_subtree: Optional[pulumi.Input[bool]] = None,
                      enterprise_manager_bridge_id: Optional[pulumi.Input[str]] = None,
                      exadata_insight_id: Optional[pulumi.Input[str]] = None,
                      filters: Optional[pulumi.Input[Sequence[pulumi.Input[GetHostInsightsFilterArgs]]]] = None,
                      host_types: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
                      id: Optional[pulumi.Input[str]] = None,
                      states: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
                      statuses: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
                      opts: Optional[InvokeOptions] = None) -> Output[GetHostInsightsResult]func GetHostInsights(ctx *Context, args *GetHostInsightsArgs, opts ...InvokeOption) (*GetHostInsightsResult, error)
func GetHostInsightsOutput(ctx *Context, args *GetHostInsightsOutputArgs, opts ...InvokeOption) GetHostInsightsResultOutput> Note: This function is named GetHostInsights in the Go SDK.
public static class GetHostInsights 
{
    public static Task<GetHostInsightsResult> InvokeAsync(GetHostInsightsArgs args, InvokeOptions? opts = null)
    public static Output<GetHostInsightsResult> Invoke(GetHostInsightsInvokeArgs args, InvokeOptions? opts = null)
}public static CompletableFuture<GetHostInsightsResult> getHostInsights(GetHostInsightsArgs args, InvokeOptions options)
public static Output<GetHostInsightsResult> getHostInsights(GetHostInsightsArgs args, InvokeOptions options)
fn::invoke:
  function: oci:Opsi/getHostInsights:getHostInsights
  arguments:
    # arguments dictionaryThe following arguments are supported:
- CompartmentId string
- The OCID of the compartment.
- CompartmentId boolIn Subtree 
- A flag to search all resources within a given compartment and all sub-compartments.
- EnterpriseManager stringBridge Id 
- Unique Enterprise Manager bridge identifier
- ExadataInsight stringId 
- OCID of exadata insight resource.
- Filters
List<GetHost Insights Filter> 
- HostTypes List<string>
- Filter by one or more host types. Possible values are CLOUD-HOST, EXTERNAL-HOST, COMANAGED-VM-HOST, COMANAGED-BM-HOST, COMANAGED-EXACS-HOST, COMANAGED-EXACC-HOST
- Id string
- Optional list of host insight resource OCIDs.
- States List<string>
- Lifecycle states
- Statuses List<string>
- Resource Status
- CompartmentId string
- The OCID of the compartment.
- CompartmentId boolIn Subtree 
- A flag to search all resources within a given compartment and all sub-compartments.
- EnterpriseManager stringBridge Id 
- Unique Enterprise Manager bridge identifier
- ExadataInsight stringId 
- OCID of exadata insight resource.
- Filters
[]GetHost Insights Filter 
- HostTypes []string
- Filter by one or more host types. Possible values are CLOUD-HOST, EXTERNAL-HOST, COMANAGED-VM-HOST, COMANAGED-BM-HOST, COMANAGED-EXACS-HOST, COMANAGED-EXACC-HOST
- Id string
- Optional list of host insight resource OCIDs.
- States []string
- Lifecycle states
- Statuses []string
- Resource Status
- compartmentId String
- The OCID of the compartment.
- compartmentId BooleanIn Subtree 
- A flag to search all resources within a given compartment and all sub-compartments.
- enterpriseManager StringBridge Id 
- Unique Enterprise Manager bridge identifier
- exadataInsight StringId 
- OCID of exadata insight resource.
- filters
List<GetHost Insights Filter> 
- hostTypes List<String>
- Filter by one or more host types. Possible values are CLOUD-HOST, EXTERNAL-HOST, COMANAGED-VM-HOST, COMANAGED-BM-HOST, COMANAGED-EXACS-HOST, COMANAGED-EXACC-HOST
- id String
- Optional list of host insight resource OCIDs.
- states List<String>
- Lifecycle states
- statuses List<String>
- Resource Status
- compartmentId string
- The OCID of the compartment.
- compartmentId booleanIn Subtree 
- A flag to search all resources within a given compartment and all sub-compartments.
- enterpriseManager stringBridge Id 
- Unique Enterprise Manager bridge identifier
- exadataInsight stringId 
- OCID of exadata insight resource.
- filters
GetHost Insights Filter[] 
- hostTypes string[]
- Filter by one or more host types. Possible values are CLOUD-HOST, EXTERNAL-HOST, COMANAGED-VM-HOST, COMANAGED-BM-HOST, COMANAGED-EXACS-HOST, COMANAGED-EXACC-HOST
- id string
- Optional list of host insight resource OCIDs.
- states string[]
- Lifecycle states
- statuses string[]
- Resource Status
- compartment_id str
- The OCID of the compartment.
- compartment_id_ boolin_ subtree 
- A flag to search all resources within a given compartment and all sub-compartments.
- enterprise_manager_ strbridge_ id 
- Unique Enterprise Manager bridge identifier
- exadata_insight_ strid 
- OCID of exadata insight resource.
- filters
Sequence[GetHost Insights Filter] 
- host_types Sequence[str]
- Filter by one or more host types. Possible values are CLOUD-HOST, EXTERNAL-HOST, COMANAGED-VM-HOST, COMANAGED-BM-HOST, COMANAGED-EXACS-HOST, COMANAGED-EXACC-HOST
- id str
- Optional list of host insight resource OCIDs.
- states Sequence[str]
- Lifecycle states
- statuses Sequence[str]
- Resource Status
- compartmentId String
- The OCID of the compartment.
- compartmentId BooleanIn Subtree 
- A flag to search all resources within a given compartment and all sub-compartments.
- enterpriseManager StringBridge Id 
- Unique Enterprise Manager bridge identifier
- exadataInsight StringId 
- OCID of exadata insight resource.
- filters List<Property Map>
- hostTypes List<String>
- Filter by one or more host types. Possible values are CLOUD-HOST, EXTERNAL-HOST, COMANAGED-VM-HOST, COMANAGED-BM-HOST, COMANAGED-EXACS-HOST, COMANAGED-EXACC-HOST
- id String
- Optional list of host insight resource OCIDs.
- states List<String>
- Lifecycle states
- statuses List<String>
- Resource Status
getHostInsights Result
The following output properties are available:
- HostInsight List<GetSummary Collections Host Insights Host Insight Summary Collection> 
- The list of host_insight_summary_collection.
- CompartmentId string
- The OCID of the compartment.
- CompartmentId boolIn Subtree 
- EnterpriseManager stringBridge Id 
- OPSI Enterprise Manager Bridge OCID
- ExadataInsight stringId 
- The OCID of the Exadata insight.
- Filters
List<GetHost Insights Filter> 
- HostTypes List<string>
- Ops Insights internal representation of the host type. Possible value is EXTERNAL-HOST.
- Id string
- The OCID of the host insight resource.
- States List<string>
- The current state of the host.
- Statuses List<string>
- Indicates the status of a host insight in Operations Insights
- HostInsight []GetSummary Collections Host Insights Host Insight Summary Collection 
- The list of host_insight_summary_collection.
- CompartmentId string
- The OCID of the compartment.
- CompartmentId boolIn Subtree 
- EnterpriseManager stringBridge Id 
- OPSI Enterprise Manager Bridge OCID
- ExadataInsight stringId 
- The OCID of the Exadata insight.
- Filters
[]GetHost Insights Filter 
- HostTypes []string
- Ops Insights internal representation of the host type. Possible value is EXTERNAL-HOST.
- Id string
- The OCID of the host insight resource.
- States []string
- The current state of the host.
- Statuses []string
- Indicates the status of a host insight in Operations Insights
- hostInsight List<GetSummary Collections Host Insights Host Insight Summary Collection> 
- The list of host_insight_summary_collection.
- compartmentId String
- The OCID of the compartment.
- compartmentId BooleanIn Subtree 
- enterpriseManager StringBridge Id 
- OPSI Enterprise Manager Bridge OCID
- exadataInsight StringId 
- The OCID of the Exadata insight.
- filters
List<GetHost Insights Filter> 
- hostTypes List<String>
- Ops Insights internal representation of the host type. Possible value is EXTERNAL-HOST.
- id String
- The OCID of the host insight resource.
- states List<String>
- The current state of the host.
- statuses List<String>
- Indicates the status of a host insight in Operations Insights
- hostInsight GetSummary Collections Host Insights Host Insight Summary Collection[] 
- The list of host_insight_summary_collection.
- compartmentId string
- The OCID of the compartment.
- compartmentId booleanIn Subtree 
- enterpriseManager stringBridge Id 
- OPSI Enterprise Manager Bridge OCID
- exadataInsight stringId 
- The OCID of the Exadata insight.
- filters
GetHost Insights Filter[] 
- hostTypes string[]
- Ops Insights internal representation of the host type. Possible value is EXTERNAL-HOST.
- id string
- The OCID of the host insight resource.
- states string[]
- The current state of the host.
- statuses string[]
- Indicates the status of a host insight in Operations Insights
- host_insight_ Sequence[Getsummary_ collections Host Insights Host Insight Summary Collection] 
- The list of host_insight_summary_collection.
- compartment_id str
- The OCID of the compartment.
- compartment_id_ boolin_ subtree 
- enterprise_manager_ strbridge_ id 
- OPSI Enterprise Manager Bridge OCID
- exadata_insight_ strid 
- The OCID of the Exadata insight.
- filters
Sequence[GetHost Insights Filter] 
- host_types Sequence[str]
- Ops Insights internal representation of the host type. Possible value is EXTERNAL-HOST.
- id str
- The OCID of the host insight resource.
- states Sequence[str]
- The current state of the host.
- statuses Sequence[str]
- Indicates the status of a host insight in Operations Insights
- hostInsight List<Property Map>Summary Collections 
- The list of host_insight_summary_collection.
- compartmentId String
- The OCID of the compartment.
- compartmentId BooleanIn Subtree 
- enterpriseManager StringBridge Id 
- OPSI Enterprise Manager Bridge OCID
- exadataInsight StringId 
- The OCID of the Exadata insight.
- filters List<Property Map>
- hostTypes List<String>
- Ops Insights internal representation of the host type. Possible value is EXTERNAL-HOST.
- id String
- The OCID of the host insight resource.
- states List<String>
- The current state of the host.
- statuses List<String>
- Indicates the status of a host insight in Operations Insights
Supporting Types
GetHostInsightsFilter   
GetHostInsightsHostInsightSummaryCollection      
GetHostInsightsHostInsightSummaryCollectionItem       
- CompartmentId string
- The OCID of the compartment.
- ComputeId string
- The OCID of the Compute Instance
- Dictionary<string, string>
- Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
- EnterpriseManager stringBridge Id 
- Unique Enterprise Manager bridge identifier
- EnterpriseManager stringEntity Display Name 
- Enterprise Manager Entity Display Name
- EnterpriseManager stringEntity Identifier 
- Enterprise Manager Entity Unique Identifier
- EnterpriseManager stringEntity Name 
- Enterprise Manager Entity Name
- EnterpriseManager stringEntity Type 
- Enterprise Manager Entity Type
- EnterpriseManager stringIdentifier 
- Enterprise Manager Unique Identifier
- EntitySource string
- Source of the host entity.
- ExadataInsight stringId 
- OCID of exadata insight resource.
- Dictionary<string, string>
- Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
- HostDisplay stringName 
- The user-friendly name for the host. The name does not have to be unique.
- HostName string
- The host name. The host name is unique amongst the hosts managed by the same management agent.
- HostType string
- Filter by one or more host types. Possible values are CLOUD-HOST, EXTERNAL-HOST, COMANAGED-VM-HOST, COMANAGED-BM-HOST, COMANAGED-EXACS-HOST, COMANAGED-EXACC-HOST
- Id string
- Optional list of host insight resource OCIDs.
- LifecycleDetails 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.
- ManagementAgent stringId 
- The OCID of the Management Agent
- PlatformName string
- Platform name.
- PlatformType string
- Filter by one or more platform types. 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].
- PlatformVersion string
- Platform version.
- ProcessorCount int
- Processor count. This is the OCPU count for Autonomous Database and CPU core count for other database types.
- State string
- Lifecycle states
- Status string
- Resource Status
- Dictionary<string, string>
- System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
- TimeCreated string
- The time the the host insight was first enabled. An RFC3339 formatted datetime string
- TimeUpdated string
- The time the host insight was updated. An RFC3339 formatted datetime string
- CompartmentId string
- The OCID of the compartment.
- ComputeId string
- The OCID of the Compute Instance
- map[string]string
- Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
- EnterpriseManager stringBridge Id 
- Unique Enterprise Manager bridge identifier
- EnterpriseManager stringEntity Display Name 
- Enterprise Manager Entity Display Name
- EnterpriseManager stringEntity Identifier 
- Enterprise Manager Entity Unique Identifier
- EnterpriseManager stringEntity Name 
- Enterprise Manager Entity Name
- EnterpriseManager stringEntity Type 
- Enterprise Manager Entity Type
- EnterpriseManager stringIdentifier 
- Enterprise Manager Unique Identifier
- EntitySource string
- Source of the host entity.
- ExadataInsight stringId 
- OCID of exadata insight resource.
- map[string]string
- Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
- HostDisplay stringName 
- The user-friendly name for the host. The name does not have to be unique.
- HostName string
- The host name. The host name is unique amongst the hosts managed by the same management agent.
- HostType string
- Filter by one or more host types. Possible values are CLOUD-HOST, EXTERNAL-HOST, COMANAGED-VM-HOST, COMANAGED-BM-HOST, COMANAGED-EXACS-HOST, COMANAGED-EXACC-HOST
- Id string
- Optional list of host insight resource OCIDs.
- LifecycleDetails 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.
- ManagementAgent stringId 
- The OCID of the Management Agent
- PlatformName string
- Platform name.
- PlatformType string
- Filter by one or more platform types. 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].
- PlatformVersion string
- Platform version.
- ProcessorCount int
- Processor count. This is the OCPU count for Autonomous Database and CPU core count for other database types.
- State string
- Lifecycle states
- Status string
- Resource Status
- map[string]string
- System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
- TimeCreated string
- The time the the host insight was first enabled. An RFC3339 formatted datetime string
- TimeUpdated string
- The time the host insight was updated. An RFC3339 formatted datetime string
- compartmentId String
- The OCID of the compartment.
- computeId String
- The OCID of the Compute Instance
- Map<String,String>
- Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
- enterpriseManager StringBridge Id 
- Unique Enterprise Manager bridge identifier
- enterpriseManager StringEntity Display Name 
- Enterprise Manager Entity Display Name
- enterpriseManager StringEntity Identifier 
- Enterprise Manager Entity Unique Identifier
- enterpriseManager StringEntity Name 
- Enterprise Manager Entity Name
- enterpriseManager StringEntity Type 
- Enterprise Manager Entity Type
- enterpriseManager StringIdentifier 
- Enterprise Manager Unique Identifier
- entitySource String
- Source of the host entity.
- exadataInsight StringId 
- OCID of exadata insight resource.
- Map<String,String>
- Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
- hostDisplay StringName 
- The user-friendly name for the host. The name does not have to be unique.
- hostName String
- The host name. The host name is unique amongst the hosts managed by the same management agent.
- hostType String
- Filter by one or more host types. Possible values are CLOUD-HOST, EXTERNAL-HOST, COMANAGED-VM-HOST, COMANAGED-BM-HOST, COMANAGED-EXACS-HOST, COMANAGED-EXACC-HOST
- id String
- Optional list of host insight resource OCIDs.
- lifecycleDetails 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.
- managementAgent StringId 
- The OCID of the Management Agent
- platformName String
- Platform name.
- platformType String
- Filter by one or more platform types. 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].
- platformVersion String
- Platform version.
- processorCount Integer
- Processor count. This is the OCPU count for Autonomous Database and CPU core count for other database types.
- state String
- Lifecycle states
- status String
- Resource Status
- Map<String,String>
- System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
- timeCreated String
- The time the the host insight was first enabled. An RFC3339 formatted datetime string
- timeUpdated String
- The time the host insight was updated. An RFC3339 formatted datetime string
- compartmentId string
- The OCID of the compartment.
- computeId string
- The OCID of the Compute Instance
- {[key: string]: string}
- Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
- enterpriseManager stringBridge Id 
- Unique Enterprise Manager bridge identifier
- enterpriseManager stringEntity Display Name 
- Enterprise Manager Entity Display Name
- enterpriseManager stringEntity Identifier 
- Enterprise Manager Entity Unique Identifier
- enterpriseManager stringEntity Name 
- Enterprise Manager Entity Name
- enterpriseManager stringEntity Type 
- Enterprise Manager Entity Type
- enterpriseManager stringIdentifier 
- Enterprise Manager Unique Identifier
- entitySource string
- Source of the host entity.
- exadataInsight stringId 
- OCID of exadata insight resource.
- {[key: string]: string}
- Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
- hostDisplay stringName 
- The user-friendly name for the host. The name does not have to be unique.
- hostName string
- The host name. The host name is unique amongst the hosts managed by the same management agent.
- hostType string
- Filter by one or more host types. Possible values are CLOUD-HOST, EXTERNAL-HOST, COMANAGED-VM-HOST, COMANAGED-BM-HOST, COMANAGED-EXACS-HOST, COMANAGED-EXACC-HOST
- id string
- Optional list of host insight resource OCIDs.
- lifecycleDetails 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.
- managementAgent stringId 
- The OCID of the Management Agent
- platformName string
- Platform name.
- platformType string
- Filter by one or more platform types. 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].
- platformVersion string
- Platform version.
- processorCount number
- Processor count. This is the OCPU count for Autonomous Database and CPU core count for other database types.
- state string
- Lifecycle states
- status string
- Resource Status
- {[key: string]: string}
- System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
- timeCreated string
- The time the the host insight was first enabled. An RFC3339 formatted datetime string
- timeUpdated string
- The time the host insight was updated. An RFC3339 formatted datetime string
- compartment_id str
- The OCID of the compartment.
- compute_id str
- The OCID of the Compute Instance
- Mapping[str, str]
- Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
- enterprise_manager_ strbridge_ id 
- Unique Enterprise Manager bridge identifier
- enterprise_manager_ strentity_ display_ name 
- Enterprise Manager Entity Display Name
- enterprise_manager_ strentity_ identifier 
- Enterprise Manager Entity Unique Identifier
- enterprise_manager_ strentity_ name 
- Enterprise Manager Entity Name
- enterprise_manager_ strentity_ type 
- Enterprise Manager Entity Type
- enterprise_manager_ stridentifier 
- Enterprise Manager Unique Identifier
- entity_source str
- Source of the host entity.
- exadata_insight_ strid 
- OCID of exadata insight resource.
- Mapping[str, str]
- Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
- host_display_ strname 
- The user-friendly name for the host. The name does not have to be unique.
- host_name str
- The host name. The host name is unique amongst the hosts managed by the same management agent.
- host_type str
- Filter by one or more host types. Possible values are CLOUD-HOST, EXTERNAL-HOST, COMANAGED-VM-HOST, COMANAGED-BM-HOST, COMANAGED-EXACS-HOST, COMANAGED-EXACC-HOST
- id str
- Optional list of host insight resource OCIDs.
- lifecycle_details str
- A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- management_agent_ strid 
- The OCID of the Management Agent
- platform_name str
- Platform name.
- platform_type str
- Filter by one or more platform types. 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].
- platform_version str
- Platform version.
- processor_count int
- Processor count. This is the OCPU count for Autonomous Database and CPU core count for other database types.
- state str
- Lifecycle states
- status str
- Resource Status
- Mapping[str, str]
- System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
- time_created str
- The time the the host insight was first enabled. An RFC3339 formatted datetime string
- time_updated str
- The time the host insight was updated. An RFC3339 formatted datetime string
- compartmentId String
- The OCID of the compartment.
- computeId String
- The OCID of the Compute Instance
- Map<String>
- Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
- enterpriseManager StringBridge Id 
- Unique Enterprise Manager bridge identifier
- enterpriseManager StringEntity Display Name 
- Enterprise Manager Entity Display Name
- enterpriseManager StringEntity Identifier 
- Enterprise Manager Entity Unique Identifier
- enterpriseManager StringEntity Name 
- Enterprise Manager Entity Name
- enterpriseManager StringEntity Type 
- Enterprise Manager Entity Type
- enterpriseManager StringIdentifier 
- Enterprise Manager Unique Identifier
- entitySource String
- Source of the host entity.
- exadataInsight StringId 
- OCID of exadata insight resource.
- Map<String>
- Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
- hostDisplay StringName 
- The user-friendly name for the host. The name does not have to be unique.
- hostName String
- The host name. The host name is unique amongst the hosts managed by the same management agent.
- hostType String
- Filter by one or more host types. Possible values are CLOUD-HOST, EXTERNAL-HOST, COMANAGED-VM-HOST, COMANAGED-BM-HOST, COMANAGED-EXACS-HOST, COMANAGED-EXACC-HOST
- id String
- Optional list of host insight resource OCIDs.
- lifecycleDetails 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.
- managementAgent StringId 
- The OCID of the Management Agent
- platformName String
- Platform name.
- platformType String
- Filter by one or more platform types. 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].
- platformVersion String
- Platform version.
- processorCount Number
- Processor count. This is the OCPU count for Autonomous Database and CPU core count for other database types.
- state String
- Lifecycle states
- status String
- Resource Status
- Map<String>
- System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
- timeCreated String
- The time the the host insight was first enabled. An RFC3339 formatted datetime string
- timeUpdated String
- The time the host insight was updated. An RFC3339 formatted datetime string
Package Details
- Repository
- oci pulumi/pulumi-oci
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the ociTerraform Provider.