oci.Opsi.getExadataInsights
Explore with Pulumi AI
This data source provides the list of Exadata Insights in Oracle Cloud Infrastructure Opsi service.
Gets a list of Exadata 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 Exadata 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 testExadataInsights = oci.Opsi.getExadataInsights({
    compartmentId: compartmentId,
    compartmentIdInSubtree: exadataInsightCompartmentIdInSubtree,
    enterpriseManagerBridgeId: testEnterpriseManagerBridge.id,
    exadataTypes: exadataInsightExadataType,
    id: exadataInsightId,
    states: exadataInsightState,
    statuses: exadataInsightStatus,
});
import pulumi
import pulumi_oci as oci
test_exadata_insights = oci.Opsi.get_exadata_insights(compartment_id=compartment_id,
    compartment_id_in_subtree=exadata_insight_compartment_id_in_subtree,
    enterprise_manager_bridge_id=test_enterprise_manager_bridge["id"],
    exadata_types=exadata_insight_exadata_type,
    id=exadata_insight_id,
    states=exadata_insight_state,
    statuses=exadata_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.GetExadataInsights(ctx, &opsi.GetExadataInsightsArgs{
			CompartmentId:             pulumi.StringRef(compartmentId),
			CompartmentIdInSubtree:    pulumi.BoolRef(exadataInsightCompartmentIdInSubtree),
			EnterpriseManagerBridgeId: pulumi.StringRef(testEnterpriseManagerBridge.Id),
			ExadataTypes:              exadataInsightExadataType,
			Id:                        pulumi.StringRef(exadataInsightId),
			States:                    exadataInsightState,
			Statuses:                  exadataInsightStatus,
		}, 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 testExadataInsights = Oci.Opsi.GetExadataInsights.Invoke(new()
    {
        CompartmentId = compartmentId,
        CompartmentIdInSubtree = exadataInsightCompartmentIdInSubtree,
        EnterpriseManagerBridgeId = testEnterpriseManagerBridge.Id,
        ExadataTypes = exadataInsightExadataType,
        Id = exadataInsightId,
        States = exadataInsightState,
        Statuses = exadataInsightStatus,
    });
});
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.GetExadataInsightsArgs;
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 testExadataInsights = OpsiFunctions.getExadataInsights(GetExadataInsightsArgs.builder()
            .compartmentId(compartmentId)
            .compartmentIdInSubtree(exadataInsightCompartmentIdInSubtree)
            .enterpriseManagerBridgeId(testEnterpriseManagerBridge.id())
            .exadataTypes(exadataInsightExadataType)
            .id(exadataInsightId)
            .states(exadataInsightState)
            .statuses(exadataInsightStatus)
            .build());
    }
}
variables:
  testExadataInsights:
    fn::invoke:
      function: oci:Opsi:getExadataInsights
      arguments:
        compartmentId: ${compartmentId}
        compartmentIdInSubtree: ${exadataInsightCompartmentIdInSubtree}
        enterpriseManagerBridgeId: ${testEnterpriseManagerBridge.id}
        exadataTypes: ${exadataInsightExadataType}
        id: ${exadataInsightId}
        states: ${exadataInsightState}
        statuses: ${exadataInsightStatus}
Using getExadataInsights
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 getExadataInsights(args: GetExadataInsightsArgs, opts?: InvokeOptions): Promise<GetExadataInsightsResult>
function getExadataInsightsOutput(args: GetExadataInsightsOutputArgs, opts?: InvokeOptions): Output<GetExadataInsightsResult>def get_exadata_insights(compartment_id: Optional[str] = None,
                         compartment_id_in_subtree: Optional[bool] = None,
                         enterprise_manager_bridge_id: Optional[str] = None,
                         exadata_types: Optional[Sequence[str]] = None,
                         filters: Optional[Sequence[GetExadataInsightsFilter]] = None,
                         id: Optional[str] = None,
                         states: Optional[Sequence[str]] = None,
                         statuses: Optional[Sequence[str]] = None,
                         opts: Optional[InvokeOptions] = None) -> GetExadataInsightsResult
def get_exadata_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_types: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
                         filters: Optional[pulumi.Input[Sequence[pulumi.Input[GetExadataInsightsFilterArgs]]]] = 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[GetExadataInsightsResult]func GetExadataInsights(ctx *Context, args *GetExadataInsightsArgs, opts ...InvokeOption) (*GetExadataInsightsResult, error)
func GetExadataInsightsOutput(ctx *Context, args *GetExadataInsightsOutputArgs, opts ...InvokeOption) GetExadataInsightsResultOutput> Note: This function is named GetExadataInsights in the Go SDK.
public static class GetExadataInsights 
{
    public static Task<GetExadataInsightsResult> InvokeAsync(GetExadataInsightsArgs args, InvokeOptions? opts = null)
    public static Output<GetExadataInsightsResult> Invoke(GetExadataInsightsInvokeArgs args, InvokeOptions? opts = null)
}public static CompletableFuture<GetExadataInsightsResult> getExadataInsights(GetExadataInsightsArgs args, InvokeOptions options)
public static Output<GetExadataInsightsResult> getExadataInsights(GetExadataInsightsArgs args, InvokeOptions options)
fn::invoke:
  function: oci:Opsi/getExadataInsights:getExadataInsights
  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
- ExadataTypes List<string>
- Filter by one or more Exadata types. Possible value are DBMACHINE, EXACS, and EXACC.
- Filters
List<GetExadata Insights Filter> 
- Id string
- Optional list of Exadata 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
- ExadataTypes []string
- Filter by one or more Exadata types. Possible value are DBMACHINE, EXACS, and EXACC.
- Filters
[]GetExadata Insights Filter 
- Id string
- Optional list of Exadata 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
- exadataTypes List<String>
- Filter by one or more Exadata types. Possible value are DBMACHINE, EXACS, and EXACC.
- filters
List<GetExadata Insights Filter> 
- id String
- Optional list of Exadata 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
- exadataTypes string[]
- Filter by one or more Exadata types. Possible value are DBMACHINE, EXACS, and EXACC.
- filters
GetExadata Insights Filter[] 
- id string
- Optional list of Exadata 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_types Sequence[str]
- Filter by one or more Exadata types. Possible value are DBMACHINE, EXACS, and EXACC.
- filters
Sequence[GetExadata Insights Filter] 
- id str
- Optional list of Exadata 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
- exadataTypes List<String>
- Filter by one or more Exadata types. Possible value are DBMACHINE, EXACS, and EXACC.
- filters List<Property Map>
- id String
- Optional list of Exadata insight resource OCIDs.
- states List<String>
- Lifecycle states
- statuses List<String>
- Resource Status
getExadataInsights Result
The following output properties are available:
- ExadataInsight List<GetSummary Collections Exadata Insights Exadata Insight Summary Collection> 
- The list of exadata_insight_summary_collection.
- CompartmentId string
- Compartment identifier of the Exadata insight resource
- CompartmentId boolIn Subtree 
- EnterpriseManager stringBridge Id 
- OPSI Enterprise Manager Bridge OCID
- ExadataTypes List<string>
- Operations Insights internal representation of the the Exadata system type.
- Filters
List<GetExadata Insights Filter> 
- Id string
- Exadata insight identifier
- States List<string>
- The current state of the Exadata insight.
- Statuses List<string>
- Indicates the status of an Exadata insight in Operations Insights
- ExadataInsight []GetSummary Collections Exadata Insights Exadata Insight Summary Collection 
- The list of exadata_insight_summary_collection.
- CompartmentId string
- Compartment identifier of the Exadata insight resource
- CompartmentId boolIn Subtree 
- EnterpriseManager stringBridge Id 
- OPSI Enterprise Manager Bridge OCID
- ExadataTypes []string
- Operations Insights internal representation of the the Exadata system type.
- Filters
[]GetExadata Insights Filter 
- Id string
- Exadata insight identifier
- States []string
- The current state of the Exadata insight.
- Statuses []string
- Indicates the status of an Exadata insight in Operations Insights
- exadataInsight List<GetSummary Collections Exadata Insights Exadata Insight Summary Collection> 
- The list of exadata_insight_summary_collection.
- compartmentId String
- Compartment identifier of the Exadata insight resource
- compartmentId BooleanIn Subtree 
- enterpriseManager StringBridge Id 
- OPSI Enterprise Manager Bridge OCID
- exadataTypes List<String>
- Operations Insights internal representation of the the Exadata system type.
- filters
List<GetExadata Insights Filter> 
- id String
- Exadata insight identifier
- states List<String>
- The current state of the Exadata insight.
- statuses List<String>
- Indicates the status of an Exadata insight in Operations Insights
- exadataInsight GetSummary Collections Exadata Insights Exadata Insight Summary Collection[] 
- The list of exadata_insight_summary_collection.
- compartmentId string
- Compartment identifier of the Exadata insight resource
- compartmentId booleanIn Subtree 
- enterpriseManager stringBridge Id 
- OPSI Enterprise Manager Bridge OCID
- exadataTypes string[]
- Operations Insights internal representation of the the Exadata system type.
- filters
GetExadata Insights Filter[] 
- id string
- Exadata insight identifier
- states string[]
- The current state of the Exadata insight.
- statuses string[]
- Indicates the status of an Exadata insight in Operations Insights
- exadata_insight_ Sequence[Getsummary_ collections Exadata Insights Exadata Insight Summary Collection] 
- The list of exadata_insight_summary_collection.
- compartment_id str
- Compartment identifier of the Exadata insight resource
- compartment_id_ boolin_ subtree 
- enterprise_manager_ strbridge_ id 
- OPSI Enterprise Manager Bridge OCID
- exadata_types Sequence[str]
- Operations Insights internal representation of the the Exadata system type.
- filters
Sequence[GetExadata Insights Filter] 
- id str
- Exadata insight identifier
- states Sequence[str]
- The current state of the Exadata insight.
- statuses Sequence[str]
- Indicates the status of an Exadata insight in Operations Insights
- exadataInsight List<Property Map>Summary Collections 
- The list of exadata_insight_summary_collection.
- compartmentId String
- Compartment identifier of the Exadata insight resource
- compartmentId BooleanIn Subtree 
- enterpriseManager StringBridge Id 
- OPSI Enterprise Manager Bridge OCID
- exadataTypes List<String>
- Operations Insights internal representation of the the Exadata system type.
- filters List<Property Map>
- id String
- Exadata insight identifier
- states List<String>
- The current state of the Exadata insight.
- statuses List<String>
- Indicates the status of an Exadata insight in Operations Insights
Supporting Types
GetExadataInsightsExadataInsightSummaryCollection      
GetExadataInsightsExadataInsightSummaryCollectionItem       
- CompartmentId string
- The OCID of the compartment.
- 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 Exadata system.
- ExadataDisplay stringName 
- The user-friendly name for the Exadata system. The name does not have to be unique.
- ExadataInfra stringId 
- The OCID of the Exadata Infrastructure.
- ExadataInfra stringResource Type 
- Oracle Cloud Infrastructure exadata infrastructure resource type
- ExadataName string
- The Exadata system name. If the Exadata systems managed by Enterprise Manager, the name is unique amongst the Exadata systems managed by the same Enterprise Manager.
- ExadataRack stringType 
- Exadata rack type.
- ExadataShape string
- The shape of the Exadata Infrastructure.
- ExadataType string
- Filter by one or more Exadata types. Possible value are DBMACHINE, EXACS, and EXACC.
- 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"}
- Id string
- Optional list of Exadata insight resource OCIDs.
- IsAuto boolSync Enabled 
- IsVirtualized boolExadata 
- true if virtualization is used in the Exadata system
- 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.
- MemberVm List<GetCluster Details Exadata Insights Exadata Insight Summary Collection Item Member Vm Cluster Detail> 
- 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 Exadata insight was first enabled. An RFC3339 formatted datetime string
- TimeUpdated string
- The time the Exadata insight was updated. An RFC3339 formatted datetime string
- CompartmentId string
- The OCID of the compartment.
- 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 Exadata system.
- ExadataDisplay stringName 
- The user-friendly name for the Exadata system. The name does not have to be unique.
- ExadataInfra stringId 
- The OCID of the Exadata Infrastructure.
- ExadataInfra stringResource Type 
- Oracle Cloud Infrastructure exadata infrastructure resource type
- ExadataName string
- The Exadata system name. If the Exadata systems managed by Enterprise Manager, the name is unique amongst the Exadata systems managed by the same Enterprise Manager.
- ExadataRack stringType 
- Exadata rack type.
- ExadataShape string
- The shape of the Exadata Infrastructure.
- ExadataType string
- Filter by one or more Exadata types. Possible value are DBMACHINE, EXACS, and EXACC.
- 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"}
- Id string
- Optional list of Exadata insight resource OCIDs.
- IsAuto boolSync Enabled 
- IsVirtualized boolExadata 
- true if virtualization is used in the Exadata system
- 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.
- MemberVm []GetCluster Details Exadata Insights Exadata Insight Summary Collection Item Member Vm Cluster Detail 
- 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 Exadata insight was first enabled. An RFC3339 formatted datetime string
- TimeUpdated string
- The time the Exadata insight was updated. An RFC3339 formatted datetime string
- compartmentId String
- The OCID of the compartment.
- 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 Exadata system.
- exadataDisplay StringName 
- The user-friendly name for the Exadata system. The name does not have to be unique.
- exadataInfra StringId 
- The OCID of the Exadata Infrastructure.
- exadataInfra StringResource Type 
- Oracle Cloud Infrastructure exadata infrastructure resource type
- exadataName String
- The Exadata system name. If the Exadata systems managed by Enterprise Manager, the name is unique amongst the Exadata systems managed by the same Enterprise Manager.
- exadataRack StringType 
- Exadata rack type.
- exadataShape String
- The shape of the Exadata Infrastructure.
- exadataType String
- Filter by one or more Exadata types. Possible value are DBMACHINE, EXACS, and EXACC.
- 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"}
- id String
- Optional list of Exadata insight resource OCIDs.
- isAuto BooleanSync Enabled 
- isVirtualized BooleanExadata 
- true if virtualization is used in the Exadata system
- 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.
- memberVm List<GetCluster Details Exadata Insights Exadata Insight Summary Collection Item Member Vm Cluster Detail> 
- 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 Exadata insight was first enabled. An RFC3339 formatted datetime string
- timeUpdated String
- The time the Exadata insight was updated. An RFC3339 formatted datetime string
- compartmentId string
- The OCID of the compartment.
- {[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 Exadata system.
- exadataDisplay stringName 
- The user-friendly name for the Exadata system. The name does not have to be unique.
- exadataInfra stringId 
- The OCID of the Exadata Infrastructure.
- exadataInfra stringResource Type 
- Oracle Cloud Infrastructure exadata infrastructure resource type
- exadataName string
- The Exadata system name. If the Exadata systems managed by Enterprise Manager, the name is unique amongst the Exadata systems managed by the same Enterprise Manager.
- exadataRack stringType 
- Exadata rack type.
- exadataShape string
- The shape of the Exadata Infrastructure.
- exadataType string
- Filter by one or more Exadata types. Possible value are DBMACHINE, EXACS, and EXACC.
- {[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"}
- id string
- Optional list of Exadata insight resource OCIDs.
- isAuto booleanSync Enabled 
- isVirtualized booleanExadata 
- true if virtualization is used in the Exadata system
- 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.
- memberVm GetCluster Details Exadata Insights Exadata Insight Summary Collection Item Member Vm Cluster Detail[] 
- 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 Exadata insight was first enabled. An RFC3339 formatted datetime string
- timeUpdated string
- The time the Exadata insight was updated. An RFC3339 formatted datetime string
- compartment_id str
- The OCID of the compartment.
- 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 Exadata system.
- exadata_display_ strname 
- The user-friendly name for the Exadata system. The name does not have to be unique.
- exadata_infra_ strid 
- The OCID of the Exadata Infrastructure.
- exadata_infra_ strresource_ type 
- Oracle Cloud Infrastructure exadata infrastructure resource type
- exadata_name str
- The Exadata system name. If the Exadata systems managed by Enterprise Manager, the name is unique amongst the Exadata systems managed by the same Enterprise Manager.
- exadata_rack_ strtype 
- Exadata rack type.
- exadata_shape str
- The shape of the Exadata Infrastructure.
- exadata_type str
- Filter by one or more Exadata types. Possible value are DBMACHINE, EXACS, and EXACC.
- 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"}
- id str
- Optional list of Exadata insight resource OCIDs.
- is_auto_ boolsync_ enabled 
- is_virtualized_ boolexadata 
- true if virtualization is used in the Exadata system
- 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.
- member_vm_ Sequence[Getcluster_ details Exadata Insights Exadata Insight Summary Collection Item Member Vm Cluster Detail] 
- 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 Exadata insight was first enabled. An RFC3339 formatted datetime string
- time_updated str
- The time the Exadata insight was updated. An RFC3339 formatted datetime string
- compartmentId String
- The OCID of the compartment.
- 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 Exadata system.
- exadataDisplay StringName 
- The user-friendly name for the Exadata system. The name does not have to be unique.
- exadataInfra StringId 
- The OCID of the Exadata Infrastructure.
- exadataInfra StringResource Type 
- Oracle Cloud Infrastructure exadata infrastructure resource type
- exadataName String
- The Exadata system name. If the Exadata systems managed by Enterprise Manager, the name is unique amongst the Exadata systems managed by the same Enterprise Manager.
- exadataRack StringType 
- Exadata rack type.
- exadataShape String
- The shape of the Exadata Infrastructure.
- exadataType String
- Filter by one or more Exadata types. Possible value are DBMACHINE, EXACS, and EXACC.
- 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"}
- id String
- Optional list of Exadata insight resource OCIDs.
- isAuto BooleanSync Enabled 
- isVirtualized BooleanExadata 
- true if virtualization is used in the Exadata system
- 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.
- memberVm List<Property Map>Cluster Details 
- 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 Exadata insight was first enabled. An RFC3339 formatted datetime string
- timeUpdated String
- The time the Exadata insight was updated. An RFC3339 formatted datetime string
GetExadataInsightsExadataInsightSummaryCollectionItemMemberVmClusterDetail           
- CompartmentId string
- The OCID of the compartment.
- DbmPrivate stringEndpoint Id 
- MemberDatabase List<GetDetails Exadata Insights Exadata Insight Summary Collection Item Member Vm Cluster Detail Member Database Detail> 
- OpsiPrivate stringEndpoint Id 
- VmCluster stringType 
- VmclusterId string
- CompartmentId string
- The OCID of the compartment.
- DbmPrivate stringEndpoint Id 
- MemberDatabase []GetDetails Exadata Insights Exadata Insight Summary Collection Item Member Vm Cluster Detail Member Database Detail 
- OpsiPrivate stringEndpoint Id 
- VmCluster stringType 
- VmclusterId string
- compartmentId String
- The OCID of the compartment.
- dbmPrivate StringEndpoint Id 
- memberDatabase List<GetDetails Exadata Insights Exadata Insight Summary Collection Item Member Vm Cluster Detail Member Database Detail> 
- opsiPrivate StringEndpoint Id 
- vmCluster StringType 
- vmclusterId String
- compartmentId string
- The OCID of the compartment.
- dbmPrivate stringEndpoint Id 
- memberDatabase GetDetails Exadata Insights Exadata Insight Summary Collection Item Member Vm Cluster Detail Member Database Detail[] 
- opsiPrivate stringEndpoint Id 
- vmCluster stringType 
- vmclusterId string
- compartmentId String
- The OCID of the compartment.
- dbmPrivate StringEndpoint Id 
- memberDatabase List<Property Map>Details 
- opsiPrivate StringEndpoint Id 
- vmCluster StringType 
- vmclusterId String
GetExadataInsightsExadataInsightSummaryCollectionItemMemberVmClusterDetailMemberDatabaseDetail              
- CompartmentId string
- The OCID of the compartment.
- ConnectionCredential List<GetDetails Exadata Insights Exadata Insight Summary Collection Item Member Vm Cluster Detail Member Database Detail Connection Credential Detail> 
- ConnectionDetails List<GetExadata Insights Exadata Insight Summary Collection Item Member Vm Cluster Detail Member Database Detail Connection Detail> 
- CredentialDetails List<GetExadata Insights Exadata Insight Summary Collection Item Member Vm Cluster Detail Member Database Detail Credential Detail> 
- DatabaseId string
- DatabaseResource stringType 
- DbmPrivate stringEndpoint Id 
- Dictionary<string, string>
- Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
- DeploymentType string
- EntitySource string
- Source of the Exadata system.
- 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"}
- ManagementAgent stringId 
- OpsiPrivate stringEndpoint Id 
- ServiceName string
- Dictionary<string, string>
- System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
- CompartmentId string
- The OCID of the compartment.
- ConnectionCredential []GetDetails Exadata Insights Exadata Insight Summary Collection Item Member Vm Cluster Detail Member Database Detail Connection Credential Detail 
- ConnectionDetails []GetExadata Insights Exadata Insight Summary Collection Item Member Vm Cluster Detail Member Database Detail Connection Detail 
- CredentialDetails []GetExadata Insights Exadata Insight Summary Collection Item Member Vm Cluster Detail Member Database Detail Credential Detail 
- DatabaseId string
- DatabaseResource stringType 
- DbmPrivate stringEndpoint Id 
- map[string]string
- Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
- DeploymentType string
- EntitySource string
- Source of the Exadata system.
- 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"}
- ManagementAgent stringId 
- OpsiPrivate stringEndpoint Id 
- ServiceName string
- map[string]string
- System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
- compartmentId String
- The OCID of the compartment.
- connectionCredential List<GetDetails Exadata Insights Exadata Insight Summary Collection Item Member Vm Cluster Detail Member Database Detail Connection Credential Detail> 
- connectionDetails List<GetExadata Insights Exadata Insight Summary Collection Item Member Vm Cluster Detail Member Database Detail Connection Detail> 
- credentialDetails List<GetExadata Insights Exadata Insight Summary Collection Item Member Vm Cluster Detail Member Database Detail Credential Detail> 
- databaseId String
- databaseResource StringType 
- dbmPrivate StringEndpoint Id 
- Map<String,String>
- Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
- deploymentType String
- entitySource String
- Source of the Exadata system.
- 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"}
- managementAgent StringId 
- opsiPrivate StringEndpoint Id 
- serviceName String
- Map<String,String>
- System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
- compartmentId string
- The OCID of the compartment.
- connectionCredential GetDetails Exadata Insights Exadata Insight Summary Collection Item Member Vm Cluster Detail Member Database Detail Connection Credential Detail[] 
- connectionDetails GetExadata Insights Exadata Insight Summary Collection Item Member Vm Cluster Detail Member Database Detail Connection Detail[] 
- credentialDetails GetExadata Insights Exadata Insight Summary Collection Item Member Vm Cluster Detail Member Database Detail Credential Detail[] 
- databaseId string
- databaseResource stringType 
- dbmPrivate stringEndpoint Id 
- {[key: string]: string}
- Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
- deploymentType string
- entitySource string
- Source of the Exadata system.
- {[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"}
- managementAgent stringId 
- opsiPrivate stringEndpoint Id 
- serviceName string
- {[key: string]: string}
- System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
- compartment_id str
- The OCID of the compartment.
- connection_credential_ Sequence[Getdetails Exadata Insights Exadata Insight Summary Collection Item Member Vm Cluster Detail Member Database Detail Connection Credential Detail] 
- connection_details Sequence[GetExadata Insights Exadata Insight Summary Collection Item Member Vm Cluster Detail Member Database Detail Connection Detail] 
- credential_details Sequence[GetExadata Insights Exadata Insight Summary Collection Item Member Vm Cluster Detail Member Database Detail Credential Detail] 
- database_id str
- database_resource_ strtype 
- dbm_private_ strendpoint_ id 
- Mapping[str, str]
- Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
- deployment_type str
- entity_source str
- Source of the Exadata system.
- 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"}
- management_agent_ strid 
- opsi_private_ strendpoint_ id 
- service_name str
- Mapping[str, str]
- System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
- compartmentId String
- The OCID of the compartment.
- connectionCredential List<Property Map>Details 
- connectionDetails List<Property Map>
- credentialDetails List<Property Map>
- databaseId String
- databaseResource StringType 
- dbmPrivate StringEndpoint Id 
- Map<String>
- Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
- deploymentType String
- entitySource String
- Source of the Exadata system.
- 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"}
- managementAgent StringId 
- opsiPrivate StringEndpoint Id 
- serviceName String
- Map<String>
- System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
GetExadataInsightsExadataInsightSummaryCollectionItemMemberVmClusterDetailMemberDatabaseDetailConnectionCredentialDetail                 
- CredentialSource stringName 
- CredentialType string
- PasswordSecret stringId 
- Role string
- UserName string
- WalletSecret stringId 
- CredentialSource stringName 
- CredentialType string
- PasswordSecret stringId 
- Role string
- UserName string
- WalletSecret stringId 
- credentialSource StringName 
- credentialType String
- passwordSecret StringId 
- role String
- userName String
- walletSecret StringId 
- credentialSource stringName 
- credentialType string
- passwordSecret stringId 
- role string
- userName string
- walletSecret stringId 
- credential_source_ strname 
- credential_type str
- password_secret_ strid 
- role str
- user_name str
- wallet_secret_ strid 
- credentialSource StringName 
- credentialType String
- passwordSecret StringId 
- role String
- userName String
- walletSecret StringId 
GetExadataInsightsExadataInsightSummaryCollectionItemMemberVmClusterDetailMemberDatabaseDetailConnectionDetail                
- hostName String
- hosts List<Property Map>
- port Number
- protocol String
- serviceName String
GetExadataInsightsExadataInsightSummaryCollectionItemMemberVmClusterDetailMemberDatabaseDetailConnectionDetailHost                 
GetExadataInsightsExadataInsightSummaryCollectionItemMemberVmClusterDetailMemberDatabaseDetailCredentialDetail                
- CredentialSource stringName 
- CredentialType string
- PasswordSecret stringId 
- Role string
- UserName string
- WalletSecret stringId 
- CredentialSource stringName 
- CredentialType string
- PasswordSecret stringId 
- Role string
- UserName string
- WalletSecret stringId 
- credentialSource StringName 
- credentialType String
- passwordSecret StringId 
- role String
- userName String
- walletSecret StringId 
- credentialSource stringName 
- credentialType string
- passwordSecret stringId 
- role string
- userName string
- walletSecret stringId 
- credential_source_ strname 
- credential_type str
- password_secret_ strid 
- role str
- user_name str
- wallet_secret_ strid 
- credentialSource StringName 
- credentialType String
- passwordSecret StringId 
- role String
- userName String
- walletSecret StringId 
GetExadataInsightsFilter   
Package Details
- Repository
- oci pulumi/pulumi-oci
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the ociTerraform Provider.