1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. Opsi
  5. getHostInsights
Oracle Cloud Infrastructure v1.32.0 published on Thursday, Apr 18, 2024 by Pulumi

oci.Opsi.getHostInsights

Explore with Pulumi AI

oci logo
Oracle Cloud Infrastructure v1.32.0 published on Thursday, Apr 18, 2024 by Pulumi

    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: _var.compartment_id,
        compartmentIdInSubtree: _var.host_insight_compartment_id_in_subtree,
        enterpriseManagerBridgeId: oci_opsi_enterprise_manager_bridge.test_enterprise_manager_bridge.id,
        exadataInsightId: oci_opsi_exadata_insight.test_exadata_insight.id,
        hostTypes: _var.host_insight_host_type,
        id: _var.host_insight_id,
        states: _var.host_insight_state,
        statuses: _var.host_insight_status,
    });
    
    import pulumi
    import pulumi_oci as oci
    
    test_host_insights = oci.Opsi.get_host_insights(compartment_id=var["compartment_id"],
        compartment_id_in_subtree=var["host_insight_compartment_id_in_subtree"],
        enterprise_manager_bridge_id=oci_opsi_enterprise_manager_bridge["test_enterprise_manager_bridge"]["id"],
        exadata_insight_id=oci_opsi_exadata_insight["test_exadata_insight"]["id"],
        host_types=var["host_insight_host_type"],
        id=var["host_insight_id"],
        states=var["host_insight_state"],
        statuses=var["host_insight_status"])
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-oci/sdk/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(_var.Compartment_id),
    			CompartmentIdInSubtree:    pulumi.BoolRef(_var.Host_insight_compartment_id_in_subtree),
    			EnterpriseManagerBridgeId: pulumi.StringRef(oci_opsi_enterprise_manager_bridge.Test_enterprise_manager_bridge.Id),
    			ExadataInsightId:          pulumi.StringRef(oci_opsi_exadata_insight.Test_exadata_insight.Id),
    			HostTypes:                 _var.Host_insight_host_type,
    			Id:                        pulumi.StringRef(_var.Host_insight_id),
    			States:                    _var.Host_insight_state,
    			Statuses:                  _var.Host_insight_status,
    		}, 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 = @var.Compartment_id,
            CompartmentIdInSubtree = @var.Host_insight_compartment_id_in_subtree,
            EnterpriseManagerBridgeId = oci_opsi_enterprise_manager_bridge.Test_enterprise_manager_bridge.Id,
            ExadataInsightId = oci_opsi_exadata_insight.Test_exadata_insight.Id,
            HostTypes = @var.Host_insight_host_type,
            Id = @var.Host_insight_id,
            States = @var.Host_insight_state,
            Statuses = @var.Host_insight_status,
        });
    
    });
    
    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(var_.compartment_id())
                .compartmentIdInSubtree(var_.host_insight_compartment_id_in_subtree())
                .enterpriseManagerBridgeId(oci_opsi_enterprise_manager_bridge.test_enterprise_manager_bridge().id())
                .exadataInsightId(oci_opsi_exadata_insight.test_exadata_insight().id())
                .hostTypes(var_.host_insight_host_type())
                .id(var_.host_insight_id())
                .states(var_.host_insight_state())
                .statuses(var_.host_insight_status())
                .build());
    
        }
    }
    
    variables:
      testHostInsights:
        fn::invoke:
          Function: oci:Opsi:getHostInsights
          Arguments:
            compartmentId: ${var.compartment_id}
            compartmentIdInSubtree: ${var.host_insight_compartment_id_in_subtree}
            enterpriseManagerBridgeId: ${oci_opsi_enterprise_manager_bridge.test_enterprise_manager_bridge.id}
            exadataInsightId: ${oci_opsi_exadata_insight.test_exadata_insight.id}
            hostTypes: ${var.host_insight_host_type}
            id: ${var.host_insight_id}
            states: ${var.host_insight_state}
            statuses: ${var.host_insight_status}
    

    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[_opsi.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[_opsi.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)
    // Output-based functions aren't available in Java yet
    
    fn::invoke:
      function: oci:Opsi/getHostInsights:getHostInsights
      arguments:
        # arguments dictionary

    The following arguments are supported:

    CompartmentId string
    The OCID of the compartment.
    CompartmentIdInSubtree bool
    A flag to search all resources within a given compartment and all sub-compartments.
    EnterpriseManagerBridgeId string
    Unique Enterprise Manager bridge identifier
    ExadataInsightId string
    OCID of exadata insight resource.
    Filters List<GetHostInsightsFilter>
    HostTypes List<string>
    Filter by one or more host types. Possible values are CLOUD-HOST, EXTERNAL-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.
    CompartmentIdInSubtree bool
    A flag to search all resources within a given compartment and all sub-compartments.
    EnterpriseManagerBridgeId string
    Unique Enterprise Manager bridge identifier
    ExadataInsightId string
    OCID of exadata insight resource.
    Filters []GetHostInsightsFilter
    HostTypes []string
    Filter by one or more host types. Possible values are CLOUD-HOST, EXTERNAL-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.
    compartmentIdInSubtree Boolean
    A flag to search all resources within a given compartment and all sub-compartments.
    enterpriseManagerBridgeId String
    Unique Enterprise Manager bridge identifier
    exadataInsightId String
    OCID of exadata insight resource.
    filters List<GetHostInsightsFilter>
    hostTypes List<String>
    Filter by one or more host types. Possible values are CLOUD-HOST, EXTERNAL-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.
    compartmentIdInSubtree boolean
    A flag to search all resources within a given compartment and all sub-compartments.
    enterpriseManagerBridgeId string
    Unique Enterprise Manager bridge identifier
    exadataInsightId string
    OCID of exadata insight resource.
    filters GetHostInsightsFilter[]
    hostTypes string[]
    Filter by one or more host types. Possible values are CLOUD-HOST, EXTERNAL-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_in_subtree bool
    A flag to search all resources within a given compartment and all sub-compartments.
    enterprise_manager_bridge_id str
    Unique Enterprise Manager bridge identifier
    exadata_insight_id str
    OCID of exadata insight resource.
    filters Sequence[opsi.GetHostInsightsFilter]
    host_types Sequence[str]
    Filter by one or more host types. Possible values are CLOUD-HOST, EXTERNAL-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.
    compartmentIdInSubtree Boolean
    A flag to search all resources within a given compartment and all sub-compartments.
    enterpriseManagerBridgeId String
    Unique Enterprise Manager bridge identifier
    exadataInsightId String
    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
    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:

    HostInsightSummaryCollections List<GetHostInsightsHostInsightSummaryCollection>
    The list of host_insight_summary_collection.
    CompartmentId string
    The OCID of the compartment.
    CompartmentIdInSubtree bool
    EnterpriseManagerBridgeId string
    OPSI Enterprise Manager Bridge OCID
    ExadataInsightId string
    The OCID of the Exadata insight.
    Filters List<GetHostInsightsFilter>
    HostTypes List<string>
    Operations 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
    HostInsightSummaryCollections []GetHostInsightsHostInsightSummaryCollection
    The list of host_insight_summary_collection.
    CompartmentId string
    The OCID of the compartment.
    CompartmentIdInSubtree bool
    EnterpriseManagerBridgeId string
    OPSI Enterprise Manager Bridge OCID
    ExadataInsightId string
    The OCID of the Exadata insight.
    Filters []GetHostInsightsFilter
    HostTypes []string
    Operations 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
    hostInsightSummaryCollections List<GetHostInsightsHostInsightSummaryCollection>
    The list of host_insight_summary_collection.
    compartmentId String
    The OCID of the compartment.
    compartmentIdInSubtree Boolean
    enterpriseManagerBridgeId String
    OPSI Enterprise Manager Bridge OCID
    exadataInsightId String
    The OCID of the Exadata insight.
    filters List<GetHostInsightsFilter>
    hostTypes List<String>
    Operations 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
    hostInsightSummaryCollections GetHostInsightsHostInsightSummaryCollection[]
    The list of host_insight_summary_collection.
    compartmentId string
    The OCID of the compartment.
    compartmentIdInSubtree boolean
    enterpriseManagerBridgeId string
    OPSI Enterprise Manager Bridge OCID
    exadataInsightId string
    The OCID of the Exadata insight.
    filters GetHostInsightsFilter[]
    hostTypes string[]
    Operations 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_summary_collections Sequence[opsi.GetHostInsightsHostInsightSummaryCollection]
    The list of host_insight_summary_collection.
    compartment_id str
    The OCID of the compartment.
    compartment_id_in_subtree bool
    enterprise_manager_bridge_id str
    OPSI Enterprise Manager Bridge OCID
    exadata_insight_id str
    The OCID of the Exadata insight.
    filters Sequence[opsi.GetHostInsightsFilter]
    host_types Sequence[str]
    Operations 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
    hostInsightSummaryCollections List<Property Map>
    The list of host_insight_summary_collection.
    compartmentId String
    The OCID of the compartment.
    compartmentIdInSubtree Boolean
    enterpriseManagerBridgeId String
    OPSI Enterprise Manager Bridge OCID
    exadataInsightId String
    The OCID of the Exadata insight.
    filters List<Property Map>
    hostTypes List<String>
    Operations 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

    Name string
    Values List<string>
    Regex bool
    Name string
    Values []string
    Regex bool
    name String
    values List<String>
    regex Boolean
    name string
    values string[]
    regex boolean
    name str
    values Sequence[str]
    regex bool
    name String
    values List<String>
    regex Boolean

    GetHostInsightsHostInsightSummaryCollection

    GetHostInsightsHostInsightSummaryCollectionItem

    CompartmentId string
    The OCID of the compartment.
    ComputeId string
    The OCID of the Compute Instance
    DefinedTags Dictionary<string, object>
    Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    EnterpriseManagerBridgeId string
    Unique Enterprise Manager bridge identifier
    EnterpriseManagerEntityDisplayName string
    Enterprise Manager Entity Display Name
    EnterpriseManagerEntityIdentifier string
    Enterprise Manager Entity Unique Identifier
    EnterpriseManagerEntityName string
    Enterprise Manager Entity Name
    EnterpriseManagerEntityType string
    Enterprise Manager Entity Type
    EnterpriseManagerIdentifier string
    Enterprise Manager Unique Identifier
    EntitySource string
    Source of the host entity.
    ExadataInsightId string
    OCID of exadata insight resource.
    FreeformTags Dictionary<string, object>
    Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
    HostDisplayName string
    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
    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.
    ManagementAgentId string
    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
    SystemTags Dictionary<string, object>
    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
    DefinedTags map[string]interface{}
    Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    EnterpriseManagerBridgeId string
    Unique Enterprise Manager bridge identifier
    EnterpriseManagerEntityDisplayName string
    Enterprise Manager Entity Display Name
    EnterpriseManagerEntityIdentifier string
    Enterprise Manager Entity Unique Identifier
    EnterpriseManagerEntityName string
    Enterprise Manager Entity Name
    EnterpriseManagerEntityType string
    Enterprise Manager Entity Type
    EnterpriseManagerIdentifier string
    Enterprise Manager Unique Identifier
    EntitySource string
    Source of the host entity.
    ExadataInsightId string
    OCID of exadata insight resource.
    FreeformTags map[string]interface{}
    Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
    HostDisplayName string
    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
    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.
    ManagementAgentId string
    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
    SystemTags map[string]interface{}
    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
    definedTags Map<String,Object>
    Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    enterpriseManagerBridgeId String
    Unique Enterprise Manager bridge identifier
    enterpriseManagerEntityDisplayName String
    Enterprise Manager Entity Display Name
    enterpriseManagerEntityIdentifier String
    Enterprise Manager Entity Unique Identifier
    enterpriseManagerEntityName String
    Enterprise Manager Entity Name
    enterpriseManagerEntityType String
    Enterprise Manager Entity Type
    enterpriseManagerIdentifier String
    Enterprise Manager Unique Identifier
    entitySource String
    Source of the host entity.
    exadataInsightId String
    OCID of exadata insight resource.
    freeformTags Map<String,Object>
    Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
    hostDisplayName String
    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
    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.
    managementAgentId String
    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
    systemTags Map<String,Object>
    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
    definedTags {[key: string]: any}
    Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    enterpriseManagerBridgeId string
    Unique Enterprise Manager bridge identifier
    enterpriseManagerEntityDisplayName string
    Enterprise Manager Entity Display Name
    enterpriseManagerEntityIdentifier string
    Enterprise Manager Entity Unique Identifier
    enterpriseManagerEntityName string
    Enterprise Manager Entity Name
    enterpriseManagerEntityType string
    Enterprise Manager Entity Type
    enterpriseManagerIdentifier string
    Enterprise Manager Unique Identifier
    entitySource string
    Source of the host entity.
    exadataInsightId string
    OCID of exadata insight resource.
    freeformTags {[key: string]: any}
    Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
    hostDisplayName string
    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
    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.
    managementAgentId string
    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
    systemTags {[key: string]: any}
    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
    defined_tags Mapping[str, Any]
    Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    enterprise_manager_bridge_id str
    Unique Enterprise Manager bridge identifier
    enterprise_manager_entity_display_name str
    Enterprise Manager Entity Display Name
    enterprise_manager_entity_identifier str
    Enterprise Manager Entity Unique Identifier
    enterprise_manager_entity_name str
    Enterprise Manager Entity Name
    enterprise_manager_entity_type str
    Enterprise Manager Entity Type
    enterprise_manager_identifier str
    Enterprise Manager Unique Identifier
    entity_source str
    Source of the host entity.
    exadata_insight_id str
    OCID of exadata insight resource.
    freeform_tags Mapping[str, Any]
    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_name str
    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
    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_id str
    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
    system_tags Mapping[str, Any]
    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
    definedTags Map<Any>
    Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    enterpriseManagerBridgeId String
    Unique Enterprise Manager bridge identifier
    enterpriseManagerEntityDisplayName String
    Enterprise Manager Entity Display Name
    enterpriseManagerEntityIdentifier String
    Enterprise Manager Entity Unique Identifier
    enterpriseManagerEntityName String
    Enterprise Manager Entity Name
    enterpriseManagerEntityType String
    Enterprise Manager Entity Type
    enterpriseManagerIdentifier String
    Enterprise Manager Unique Identifier
    entitySource String
    Source of the host entity.
    exadataInsightId String
    OCID of exadata insight resource.
    freeformTags Map<Any>
    Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
    hostDisplayName String
    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
    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.
    managementAgentId String
    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
    systemTags Map<Any>
    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 oci Terraform Provider.
    oci logo
    Oracle Cloud Infrastructure v1.32.0 published on Thursday, Apr 18, 2024 by Pulumi