oci.Opsi.getDatabaseInsights
Explore with Pulumi AI
This data source provides the list of Database Insights in Oracle Cloud Infrastructure Opsi service.
Gets a list of database 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 database 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 testDatabaseInsights = oci.Opsi.getDatabaseInsights({
    compartmentId: compartmentId,
    compartmentIdInSubtree: databaseInsightCompartmentIdInSubtree,
    databaseIds: testDatabase.id,
    databaseTypes: databaseInsightDatabaseType,
    enterpriseManagerBridgeId: testEnterpriseManagerBridge.id,
    exadataInsightId: testExadataInsight.id,
    fields: databaseInsightFields,
    id: databaseInsightId,
    opsiPrivateEndpointId: testPrivateEndpoint.id,
    states: databaseInsightState,
    statuses: databaseInsightStatus,
});
import pulumi
import pulumi_oci as oci
test_database_insights = oci.Opsi.get_database_insights(compartment_id=compartment_id,
    compartment_id_in_subtree=database_insight_compartment_id_in_subtree,
    database_ids=test_database["id"],
    database_types=database_insight_database_type,
    enterprise_manager_bridge_id=test_enterprise_manager_bridge["id"],
    exadata_insight_id=test_exadata_insight["id"],
    fields=database_insight_fields,
    id=database_insight_id,
    opsi_private_endpoint_id=test_private_endpoint["id"],
    states=database_insight_state,
    statuses=database_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.GetDatabaseInsights(ctx, &opsi.GetDatabaseInsightsArgs{
			CompartmentId:             pulumi.StringRef(compartmentId),
			CompartmentIdInSubtree:    pulumi.BoolRef(databaseInsightCompartmentIdInSubtree),
			DatabaseIds:               testDatabase.Id,
			DatabaseTypes:             databaseInsightDatabaseType,
			EnterpriseManagerBridgeId: pulumi.StringRef(testEnterpriseManagerBridge.Id),
			ExadataInsightId:          pulumi.StringRef(testExadataInsight.Id),
			Fields:                    databaseInsightFields,
			Id:                        pulumi.StringRef(databaseInsightId),
			OpsiPrivateEndpointId:     pulumi.StringRef(testPrivateEndpoint.Id),
			States:                    databaseInsightState,
			Statuses:                  databaseInsightStatus,
		}, 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 testDatabaseInsights = Oci.Opsi.GetDatabaseInsights.Invoke(new()
    {
        CompartmentId = compartmentId,
        CompartmentIdInSubtree = databaseInsightCompartmentIdInSubtree,
        DatabaseIds = testDatabase.Id,
        DatabaseTypes = databaseInsightDatabaseType,
        EnterpriseManagerBridgeId = testEnterpriseManagerBridge.Id,
        ExadataInsightId = testExadataInsight.Id,
        Fields = databaseInsightFields,
        Id = databaseInsightId,
        OpsiPrivateEndpointId = testPrivateEndpoint.Id,
        States = databaseInsightState,
        Statuses = databaseInsightStatus,
    });
});
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.GetDatabaseInsightsArgs;
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 testDatabaseInsights = OpsiFunctions.getDatabaseInsights(GetDatabaseInsightsArgs.builder()
            .compartmentId(compartmentId)
            .compartmentIdInSubtree(databaseInsightCompartmentIdInSubtree)
            .databaseIds(testDatabase.id())
            .databaseTypes(databaseInsightDatabaseType)
            .enterpriseManagerBridgeId(testEnterpriseManagerBridge.id())
            .exadataInsightId(testExadataInsight.id())
            .fields(databaseInsightFields)
            .id(databaseInsightId)
            .opsiPrivateEndpointId(testPrivateEndpoint.id())
            .states(databaseInsightState)
            .statuses(databaseInsightStatus)
            .build());
    }
}
variables:
  testDatabaseInsights:
    fn::invoke:
      function: oci:Opsi:getDatabaseInsights
      arguments:
        compartmentId: ${compartmentId}
        compartmentIdInSubtree: ${databaseInsightCompartmentIdInSubtree}
        databaseIds: ${testDatabase.id}
        databaseTypes: ${databaseInsightDatabaseType}
        enterpriseManagerBridgeId: ${testEnterpriseManagerBridge.id}
        exadataInsightId: ${testExadataInsight.id}
        fields: ${databaseInsightFields}
        id: ${databaseInsightId}
        opsiPrivateEndpointId: ${testPrivateEndpoint.id}
        states: ${databaseInsightState}
        statuses: ${databaseInsightStatus}
Using getDatabaseInsights
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 getDatabaseInsights(args: GetDatabaseInsightsArgs, opts?: InvokeOptions): Promise<GetDatabaseInsightsResult>
function getDatabaseInsightsOutput(args: GetDatabaseInsightsOutputArgs, opts?: InvokeOptions): Output<GetDatabaseInsightsResult>def get_database_insights(compartment_id: Optional[str] = None,
                          compartment_id_in_subtree: Optional[bool] = None,
                          database_ids: Optional[Sequence[str]] = None,
                          database_types: Optional[Sequence[str]] = None,
                          enterprise_manager_bridge_id: Optional[str] = None,
                          exadata_insight_id: Optional[str] = None,
                          fields: Optional[Sequence[str]] = None,
                          filters: Optional[Sequence[GetDatabaseInsightsFilter]] = None,
                          id: Optional[str] = None,
                          opsi_private_endpoint_id: Optional[str] = None,
                          states: Optional[Sequence[str]] = None,
                          statuses: Optional[Sequence[str]] = None,
                          opts: Optional[InvokeOptions] = None) -> GetDatabaseInsightsResult
def get_database_insights_output(compartment_id: Optional[pulumi.Input[str]] = None,
                          compartment_id_in_subtree: Optional[pulumi.Input[bool]] = None,
                          database_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
                          database_types: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
                          enterprise_manager_bridge_id: Optional[pulumi.Input[str]] = None,
                          exadata_insight_id: Optional[pulumi.Input[str]] = None,
                          fields: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
                          filters: Optional[pulumi.Input[Sequence[pulumi.Input[GetDatabaseInsightsFilterArgs]]]] = None,
                          id: Optional[pulumi.Input[str]] = None,
                          opsi_private_endpoint_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[GetDatabaseInsightsResult]func GetDatabaseInsights(ctx *Context, args *GetDatabaseInsightsArgs, opts ...InvokeOption) (*GetDatabaseInsightsResult, error)
func GetDatabaseInsightsOutput(ctx *Context, args *GetDatabaseInsightsOutputArgs, opts ...InvokeOption) GetDatabaseInsightsResultOutput> Note: This function is named GetDatabaseInsights in the Go SDK.
public static class GetDatabaseInsights 
{
    public static Task<GetDatabaseInsightsResult> InvokeAsync(GetDatabaseInsightsArgs args, InvokeOptions? opts = null)
    public static Output<GetDatabaseInsightsResult> Invoke(GetDatabaseInsightsInvokeArgs args, InvokeOptions? opts = null)
}public static CompletableFuture<GetDatabaseInsightsResult> getDatabaseInsights(GetDatabaseInsightsArgs args, InvokeOptions options)
public static Output<GetDatabaseInsightsResult> getDatabaseInsights(GetDatabaseInsightsArgs args, InvokeOptions options)
fn::invoke:
  function: oci:Opsi/getDatabaseInsights:getDatabaseInsights
  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.
- DatabaseIds List<string>
- Optional list of database OCIDs of the associated DBaaS entity.
- DatabaseTypes List<string>
- Filter by one or more database type. Possible values are ADW-S, ATP-S, ADW-D, ATP-D, EXTERNAL-PDB, EXTERNAL-NONCDB.
- EnterpriseManager stringBridge Id 
- Unique Enterprise Manager bridge identifier
- ExadataInsight stringId 
- OCID of exadata insight resource.
- Fields List<string>
- Specifies the fields to return in a database summary response. By default all fields are returned if omitted.
- Filters
List<GetDatabase Insights Filter> 
- Id string
- Optional list of database insight resource OCIDs.
- OpsiPrivate stringEndpoint Id 
- Unique Operations Insights PrivateEndpoint identifier
- 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.
- DatabaseIds []string
- Optional list of database OCIDs of the associated DBaaS entity.
- DatabaseTypes []string
- Filter by one or more database type. Possible values are ADW-S, ATP-S, ADW-D, ATP-D, EXTERNAL-PDB, EXTERNAL-NONCDB.
- EnterpriseManager stringBridge Id 
- Unique Enterprise Manager bridge identifier
- ExadataInsight stringId 
- OCID of exadata insight resource.
- Fields []string
- Specifies the fields to return in a database summary response. By default all fields are returned if omitted.
- Filters
[]GetDatabase Insights Filter 
- Id string
- Optional list of database insight resource OCIDs.
- OpsiPrivate stringEndpoint Id 
- Unique Operations Insights PrivateEndpoint identifier
- 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.
- databaseIds List<String>
- Optional list of database OCIDs of the associated DBaaS entity.
- databaseTypes List<String>
- Filter by one or more database type. Possible values are ADW-S, ATP-S, ADW-D, ATP-D, EXTERNAL-PDB, EXTERNAL-NONCDB.
- enterpriseManager StringBridge Id 
- Unique Enterprise Manager bridge identifier
- exadataInsight StringId 
- OCID of exadata insight resource.
- fields List<String>
- Specifies the fields to return in a database summary response. By default all fields are returned if omitted.
- filters
List<GetDatabase Insights Filter> 
- id String
- Optional list of database insight resource OCIDs.
- opsiPrivate StringEndpoint Id 
- Unique Operations Insights PrivateEndpoint identifier
- 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.
- databaseIds string[]
- Optional list of database OCIDs of the associated DBaaS entity.
- databaseTypes string[]
- Filter by one or more database type. Possible values are ADW-S, ATP-S, ADW-D, ATP-D, EXTERNAL-PDB, EXTERNAL-NONCDB.
- enterpriseManager stringBridge Id 
- Unique Enterprise Manager bridge identifier
- exadataInsight stringId 
- OCID of exadata insight resource.
- fields string[]
- Specifies the fields to return in a database summary response. By default all fields are returned if omitted.
- filters
GetDatabase Insights Filter[] 
- id string
- Optional list of database insight resource OCIDs.
- opsiPrivate stringEndpoint Id 
- Unique Operations Insights PrivateEndpoint identifier
- 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.
- database_ids Sequence[str]
- Optional list of database OCIDs of the associated DBaaS entity.
- database_types Sequence[str]
- Filter by one or more database type. Possible values are ADW-S, ATP-S, ADW-D, ATP-D, EXTERNAL-PDB, EXTERNAL-NONCDB.
- enterprise_manager_ strbridge_ id 
- Unique Enterprise Manager bridge identifier
- exadata_insight_ strid 
- OCID of exadata insight resource.
- fields Sequence[str]
- Specifies the fields to return in a database summary response. By default all fields are returned if omitted.
- filters
Sequence[GetDatabase Insights Filter] 
- id str
- Optional list of database insight resource OCIDs.
- opsi_private_ strendpoint_ id 
- Unique Operations Insights PrivateEndpoint identifier
- 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.
- databaseIds List<String>
- Optional list of database OCIDs of the associated DBaaS entity.
- databaseTypes List<String>
- Filter by one or more database type. Possible values are ADW-S, ATP-S, ADW-D, ATP-D, EXTERNAL-PDB, EXTERNAL-NONCDB.
- enterpriseManager StringBridge Id 
- Unique Enterprise Manager bridge identifier
- exadataInsight StringId 
- OCID of exadata insight resource.
- fields List<String>
- Specifies the fields to return in a database summary response. By default all fields are returned if omitted.
- filters List<Property Map>
- id String
- Optional list of database insight resource OCIDs.
- opsiPrivate StringEndpoint Id 
- Unique Operations Insights PrivateEndpoint identifier
- states List<String>
- Lifecycle states
- statuses List<String>
- Resource Status
getDatabaseInsights Result
The following output properties are available:
- DatabaseInsights List<GetCollections Database Insights Database Insights Collection> 
- The list of database_insights_collection.
- CompartmentId string
- Compartment identifier of the database
- CompartmentId boolIn Subtree 
- DatabaseIds List<string>
- The OCID of the database.
- DatabaseTypes List<string>
- Ops Insights internal representation of the database type.
- EnterpriseManager stringBridge Id 
- OPSI Enterprise Manager Bridge OCID
- ExadataInsight stringId 
- The OCID of the Exadata insight.
- Fields List<string>
- Filters
List<GetDatabase Insights Filter> 
- Id string
- Database insight identifier
- OpsiPrivate stringEndpoint Id 
- The OCID of the OPSI private endpoint
- States List<string>
- The current state of the database.
- Statuses List<string>
- Indicates the status of a database insight in Operations Insights
- DatabaseInsights []GetCollections Database Insights Database Insights Collection 
- The list of database_insights_collection.
- CompartmentId string
- Compartment identifier of the database
- CompartmentId boolIn Subtree 
- DatabaseIds []string
- The OCID of the database.
- DatabaseTypes []string
- Ops Insights internal representation of the database type.
- EnterpriseManager stringBridge Id 
- OPSI Enterprise Manager Bridge OCID
- ExadataInsight stringId 
- The OCID of the Exadata insight.
- Fields []string
- Filters
[]GetDatabase Insights Filter 
- Id string
- Database insight identifier
- OpsiPrivate stringEndpoint Id 
- The OCID of the OPSI private endpoint
- States []string
- The current state of the database.
- Statuses []string
- Indicates the status of a database insight in Operations Insights
- databaseInsights List<GetCollections Database Insights Database Insights Collection> 
- The list of database_insights_collection.
- compartmentId String
- Compartment identifier of the database
- compartmentId BooleanIn Subtree 
- databaseIds List<String>
- The OCID of the database.
- databaseTypes List<String>
- Ops Insights internal representation of the database type.
- enterpriseManager StringBridge Id 
- OPSI Enterprise Manager Bridge OCID
- exadataInsight StringId 
- The OCID of the Exadata insight.
- fields List<String>
- filters
List<GetDatabase Insights Filter> 
- id String
- Database insight identifier
- opsiPrivate StringEndpoint Id 
- The OCID of the OPSI private endpoint
- states List<String>
- The current state of the database.
- statuses List<String>
- Indicates the status of a database insight in Operations Insights
- databaseInsights GetCollections Database Insights Database Insights Collection[] 
- The list of database_insights_collection.
- compartmentId string
- Compartment identifier of the database
- compartmentId booleanIn Subtree 
- databaseIds string[]
- The OCID of the database.
- databaseTypes string[]
- Ops Insights internal representation of the database type.
- enterpriseManager stringBridge Id 
- OPSI Enterprise Manager Bridge OCID
- exadataInsight stringId 
- The OCID of the Exadata insight.
- fields string[]
- filters
GetDatabase Insights Filter[] 
- id string
- Database insight identifier
- opsiPrivate stringEndpoint Id 
- The OCID of the OPSI private endpoint
- states string[]
- The current state of the database.
- statuses string[]
- Indicates the status of a database insight in Operations Insights
- database_insights_ Sequence[Getcollections Database Insights Database Insights Collection] 
- The list of database_insights_collection.
- compartment_id str
- Compartment identifier of the database
- compartment_id_ boolin_ subtree 
- database_ids Sequence[str]
- The OCID of the database.
- database_types Sequence[str]
- Ops Insights internal representation of the database type.
- enterprise_manager_ strbridge_ id 
- OPSI Enterprise Manager Bridge OCID
- exadata_insight_ strid 
- The OCID of the Exadata insight.
- fields Sequence[str]
- filters
Sequence[GetDatabase Insights Filter] 
- id str
- Database insight identifier
- opsi_private_ strendpoint_ id 
- The OCID of the OPSI private endpoint
- states Sequence[str]
- The current state of the database.
- statuses Sequence[str]
- Indicates the status of a database insight in Operations Insights
- databaseInsights List<Property Map>Collections 
- The list of database_insights_collection.
- compartmentId String
- Compartment identifier of the database
- compartmentId BooleanIn Subtree 
- databaseIds List<String>
- The OCID of the database.
- databaseTypes List<String>
- Ops Insights internal representation of the database type.
- enterpriseManager StringBridge Id 
- OPSI Enterprise Manager Bridge OCID
- exadataInsight StringId 
- The OCID of the Exadata insight.
- fields List<String>
- filters List<Property Map>
- id String
- Database insight identifier
- opsiPrivate StringEndpoint Id 
- The OCID of the OPSI private endpoint
- states List<String>
- The current state of the database.
- statuses List<String>
- Indicates the status of a database insight in Operations Insights
Supporting Types
GetDatabaseInsightsDatabaseInsightsCollection     
GetDatabaseInsightsDatabaseInsightsCollectionItem      
- CompartmentId string
- The OCID of the compartment.
- ConnectionCredential List<GetDetails Database Insights Database Insights Collection Item Connection Credential Detail> 
- User credential details to connect to the database.
- ConnectionDetails List<GetDatabase Insights Database Insights Collection Item Connection Detail> 
- Connection details to connect to the database. HostName, protocol, and port should be specified.
- ConnectorId string
- The OCID of External Database Connector
- CredentialDetails List<GetDatabase Insights Database Insights Collection Item Credential Detail> 
- User credential details to connect to the database.
- DatabaseConnection stringStatus Details 
- A message describing the status of the database connection of this resource. For example, it can be used to provide actionable information about the permission and content validity of the database connection.
- DatabaseConnector stringId 
- (Required when entity_source=EXTERNAL_MYSQL_DATABASE_SYSTEM) (Updatable) The DBM owned database connector OCID mapping to the database credentials and connection details.
- DatabaseDisplay stringName 
- Display name of database
- DatabaseId string
- Optional list of database OCIDs of the associated DBaaS entity.
- DatabaseName string
- Name of database
- DatabaseResource stringType 
- Oracle Cloud Infrastructure database resource type
- DatabaseType string
- Filter by one or more database type. Possible values are ADW-S, ATP-S, ADW-D, ATP-D, EXTERNAL-PDB, EXTERNAL-NONCDB.
- DatabaseVersion string
- The version of the database.
- 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
- 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 Unqiue Identifier
- EntitySource string
- Source of the database 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"}
- Id string
- Optional list of database insight resource OCIDs.
- IsAdvanced boolFeatures Enabled 
- Flag is to identify if advanced features for autonomous database is enabled or not
- IsHeat boolWave Cluster Attached 
- Specifies if MYSQL DB System has heatwave cluster attached.
- IsHighly boolAvailable 
- Specifies if MYSQL DB System is highly available.
- 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 
- OpsiPrivate stringEndpoint Id 
- Unique Operations Insights PrivateEndpoint identifier
- ParentId string
- The OCID of the VM Cluster or DB System ID, depending on which configuration the resource belongs to.
- ProcessorCount int
- Processor count. This is the OCPU count for Autonomous Database and CPU core count for other database types.
- RootId string
- The OCID of the Exadata Infrastructure.
- ServiceName string
- Database service name used for connection requests.
- 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 database insight was first enabled. An RFC3339 formatted datetime string
- TimeUpdated string
- The time the database insight was updated. An RFC3339 formatted datetime string
- CompartmentId string
- The OCID of the compartment.
- ConnectionCredential []GetDetails Database Insights Database Insights Collection Item Connection Credential Detail 
- User credential details to connect to the database.
- ConnectionDetails []GetDatabase Insights Database Insights Collection Item Connection Detail 
- Connection details to connect to the database. HostName, protocol, and port should be specified.
- ConnectorId string
- The OCID of External Database Connector
- CredentialDetails []GetDatabase Insights Database Insights Collection Item Credential Detail 
- User credential details to connect to the database.
- DatabaseConnection stringStatus Details 
- A message describing the status of the database connection of this resource. For example, it can be used to provide actionable information about the permission and content validity of the database connection.
- DatabaseConnector stringId 
- (Required when entity_source=EXTERNAL_MYSQL_DATABASE_SYSTEM) (Updatable) The DBM owned database connector OCID mapping to the database credentials and connection details.
- DatabaseDisplay stringName 
- Display name of database
- DatabaseId string
- Optional list of database OCIDs of the associated DBaaS entity.
- DatabaseName string
- Name of database
- DatabaseResource stringType 
- Oracle Cloud Infrastructure database resource type
- DatabaseType string
- Filter by one or more database type. Possible values are ADW-S, ATP-S, ADW-D, ATP-D, EXTERNAL-PDB, EXTERNAL-NONCDB.
- DatabaseVersion string
- The version of the database.
- 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
- 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 Unqiue Identifier
- EntitySource string
- Source of the database 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"}
- Id string
- Optional list of database insight resource OCIDs.
- IsAdvanced boolFeatures Enabled 
- Flag is to identify if advanced features for autonomous database is enabled or not
- IsHeat boolWave Cluster Attached 
- Specifies if MYSQL DB System has heatwave cluster attached.
- IsHighly boolAvailable 
- Specifies if MYSQL DB System is highly available.
- 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 
- OpsiPrivate stringEndpoint Id 
- Unique Operations Insights PrivateEndpoint identifier
- ParentId string
- The OCID of the VM Cluster or DB System ID, depending on which configuration the resource belongs to.
- ProcessorCount int
- Processor count. This is the OCPU count for Autonomous Database and CPU core count for other database types.
- RootId string
- The OCID of the Exadata Infrastructure.
- ServiceName string
- Database service name used for connection requests.
- 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 database insight was first enabled. An RFC3339 formatted datetime string
- TimeUpdated string
- The time the database insight was updated. An RFC3339 formatted datetime string
- compartmentId String
- The OCID of the compartment.
- connectionCredential List<GetDetails Database Insights Database Insights Collection Item Connection Credential Detail> 
- User credential details to connect to the database.
- connectionDetails List<GetDatabase Insights Database Insights Collection Item Connection Detail> 
- Connection details to connect to the database. HostName, protocol, and port should be specified.
- connectorId String
- The OCID of External Database Connector
- credentialDetails List<GetDatabase Insights Database Insights Collection Item Credential Detail> 
- User credential details to connect to the database.
- databaseConnection StringStatus Details 
- A message describing the status of the database connection of this resource. For example, it can be used to provide actionable information about the permission and content validity of the database connection.
- databaseConnector StringId 
- (Required when entity_source=EXTERNAL_MYSQL_DATABASE_SYSTEM) (Updatable) The DBM owned database connector OCID mapping to the database credentials and connection details.
- databaseDisplay StringName 
- Display name of database
- databaseId String
- Optional list of database OCIDs of the associated DBaaS entity.
- databaseName String
- Name of database
- databaseResource StringType 
- Oracle Cloud Infrastructure database resource type
- databaseType String
- Filter by one or more database type. Possible values are ADW-S, ATP-S, ADW-D, ATP-D, EXTERNAL-PDB, EXTERNAL-NONCDB.
- databaseVersion String
- The version of the database.
- 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
- 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 Unqiue Identifier
- entitySource String
- Source of the database 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"}
- id String
- Optional list of database insight resource OCIDs.
- isAdvanced BooleanFeatures Enabled 
- Flag is to identify if advanced features for autonomous database is enabled or not
- isHeat BooleanWave Cluster Attached 
- Specifies if MYSQL DB System has heatwave cluster attached.
- isHighly BooleanAvailable 
- Specifies if MYSQL DB System is highly available.
- 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 
- opsiPrivate StringEndpoint Id 
- Unique Operations Insights PrivateEndpoint identifier
- parentId String
- The OCID of the VM Cluster or DB System ID, depending on which configuration the resource belongs to.
- processorCount Integer
- Processor count. This is the OCPU count for Autonomous Database and CPU core count for other database types.
- rootId String
- The OCID of the Exadata Infrastructure.
- serviceName String
- Database service name used for connection requests.
- 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 database insight was first enabled. An RFC3339 formatted datetime string
- timeUpdated String
- The time the database insight was updated. An RFC3339 formatted datetime string
- compartmentId string
- The OCID of the compartment.
- connectionCredential GetDetails Database Insights Database Insights Collection Item Connection Credential Detail[] 
- User credential details to connect to the database.
- connectionDetails GetDatabase Insights Database Insights Collection Item Connection Detail[] 
- Connection details to connect to the database. HostName, protocol, and port should be specified.
- connectorId string
- The OCID of External Database Connector
- credentialDetails GetDatabase Insights Database Insights Collection Item Credential Detail[] 
- User credential details to connect to the database.
- databaseConnection stringStatus Details 
- A message describing the status of the database connection of this resource. For example, it can be used to provide actionable information about the permission and content validity of the database connection.
- databaseConnector stringId 
- (Required when entity_source=EXTERNAL_MYSQL_DATABASE_SYSTEM) (Updatable) The DBM owned database connector OCID mapping to the database credentials and connection details.
- databaseDisplay stringName 
- Display name of database
- databaseId string
- Optional list of database OCIDs of the associated DBaaS entity.
- databaseName string
- Name of database
- databaseResource stringType 
- Oracle Cloud Infrastructure database resource type
- databaseType string
- Filter by one or more database type. Possible values are ADW-S, ATP-S, ADW-D, ATP-D, EXTERNAL-PDB, EXTERNAL-NONCDB.
- databaseVersion string
- The version of the database.
- 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
- 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 Unqiue Identifier
- entitySource string
- Source of the database 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"}
- id string
- Optional list of database insight resource OCIDs.
- isAdvanced booleanFeatures Enabled 
- Flag is to identify if advanced features for autonomous database is enabled or not
- isHeat booleanWave Cluster Attached 
- Specifies if MYSQL DB System has heatwave cluster attached.
- isHighly booleanAvailable 
- Specifies if MYSQL DB System is highly available.
- 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 
- opsiPrivate stringEndpoint Id 
- Unique Operations Insights PrivateEndpoint identifier
- parentId string
- The OCID of the VM Cluster or DB System ID, depending on which configuration the resource belongs to.
- processorCount number
- Processor count. This is the OCPU count for Autonomous Database and CPU core count for other database types.
- rootId string
- The OCID of the Exadata Infrastructure.
- serviceName string
- Database service name used for connection requests.
- 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 database insight was first enabled. An RFC3339 formatted datetime string
- timeUpdated string
- The time the database insight was updated. An RFC3339 formatted datetime string
- compartment_id str
- The OCID of the compartment.
- connection_credential_ Sequence[Getdetails Database Insights Database Insights Collection Item Connection Credential Detail] 
- User credential details to connect to the database.
- connection_details Sequence[GetDatabase Insights Database Insights Collection Item Connection Detail] 
- Connection details to connect to the database. HostName, protocol, and port should be specified.
- connector_id str
- The OCID of External Database Connector
- credential_details Sequence[GetDatabase Insights Database Insights Collection Item Credential Detail] 
- User credential details to connect to the database.
- database_connection_ strstatus_ details 
- A message describing the status of the database connection of this resource. For example, it can be used to provide actionable information about the permission and content validity of the database connection.
- database_connector_ strid 
- (Required when entity_source=EXTERNAL_MYSQL_DATABASE_SYSTEM) (Updatable) The DBM owned database connector OCID mapping to the database credentials and connection details.
- database_display_ strname 
- Display name of database
- database_id str
- Optional list of database OCIDs of the associated DBaaS entity.
- database_name str
- Name of database
- database_resource_ strtype 
- Oracle Cloud Infrastructure database resource type
- database_type str
- Filter by one or more database type. Possible values are ADW-S, ATP-S, ADW-D, ATP-D, EXTERNAL-PDB, EXTERNAL-NONCDB.
- database_version str
- The version of the database.
- 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
- 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 Unqiue Identifier
- entity_source str
- Source of the database 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"}
- id str
- Optional list of database insight resource OCIDs.
- is_advanced_ boolfeatures_ enabled 
- Flag is to identify if advanced features for autonomous database is enabled or not
- is_heat_ boolwave_ cluster_ attached 
- Specifies if MYSQL DB System has heatwave cluster attached.
- is_highly_ boolavailable 
- Specifies if MYSQL DB System is highly available.
- 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 
- opsi_private_ strendpoint_ id 
- Unique Operations Insights PrivateEndpoint identifier
- parent_id str
- The OCID of the VM Cluster or DB System ID, depending on which configuration the resource belongs to.
- processor_count int
- Processor count. This is the OCPU count for Autonomous Database and CPU core count for other database types.
- root_id str
- The OCID of the Exadata Infrastructure.
- service_name str
- Database service name used for connection requests.
- 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 database insight was first enabled. An RFC3339 formatted datetime string
- time_updated str
- The time the database insight was updated. An RFC3339 formatted datetime string
- compartmentId String
- The OCID of the compartment.
- connectionCredential List<Property Map>Details 
- User credential details to connect to the database.
- connectionDetails List<Property Map>
- Connection details to connect to the database. HostName, protocol, and port should be specified.
- connectorId String
- The OCID of External Database Connector
- credentialDetails List<Property Map>
- User credential details to connect to the database.
- databaseConnection StringStatus Details 
- A message describing the status of the database connection of this resource. For example, it can be used to provide actionable information about the permission and content validity of the database connection.
- databaseConnector StringId 
- (Required when entity_source=EXTERNAL_MYSQL_DATABASE_SYSTEM) (Updatable) The DBM owned database connector OCID mapping to the database credentials and connection details.
- databaseDisplay StringName 
- Display name of database
- databaseId String
- Optional list of database OCIDs of the associated DBaaS entity.
- databaseName String
- Name of database
- databaseResource StringType 
- Oracle Cloud Infrastructure database resource type
- databaseType String
- Filter by one or more database type. Possible values are ADW-S, ATP-S, ADW-D, ATP-D, EXTERNAL-PDB, EXTERNAL-NONCDB.
- databaseVersion String
- The version of the database.
- 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
- 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 Unqiue Identifier
- entitySource String
- Source of the database 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"}
- id String
- Optional list of database insight resource OCIDs.
- isAdvanced BooleanFeatures Enabled 
- Flag is to identify if advanced features for autonomous database is enabled or not
- isHeat BooleanWave Cluster Attached 
- Specifies if MYSQL DB System has heatwave cluster attached.
- isHighly BooleanAvailable 
- Specifies if MYSQL DB System is highly available.
- 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 
- opsiPrivate StringEndpoint Id 
- Unique Operations Insights PrivateEndpoint identifier
- parentId String
- The OCID of the VM Cluster or DB System ID, depending on which configuration the resource belongs to.
- processorCount Number
- Processor count. This is the OCPU count for Autonomous Database and CPU core count for other database types.
- rootId String
- The OCID of the Exadata Infrastructure.
- serviceName String
- Database service name used for connection requests.
- 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 database insight was first enabled. An RFC3339 formatted datetime string
- timeUpdated String
- The time the database insight was updated. An RFC3339 formatted datetime string
GetDatabaseInsightsDatabaseInsightsCollectionItemConnectionCredentialDetail         
- CredentialSource stringName 
- Credential source name that had been added in Management Agent wallet. This is supplied in the External Database Service.
- CredentialType string
- CREDENTIALS_BY_SOURCE is supplied via the External Database Service. CREDENTIALS_BY_VAULT is supplied by secret service to connection PE_COMANAGED_DATABASE and ADB as well. CREDENTIALS_BY_IAM is used db-token to connect only for Autonomous Database.
- PasswordSecret stringId 
- The secret OCID mapping to the database credentials.
- Role string
- database user role.
- UserName string
- database user name.
- CredentialSource stringName 
- Credential source name that had been added in Management Agent wallet. This is supplied in the External Database Service.
- CredentialType string
- CREDENTIALS_BY_SOURCE is supplied via the External Database Service. CREDENTIALS_BY_VAULT is supplied by secret service to connection PE_COMANAGED_DATABASE and ADB as well. CREDENTIALS_BY_IAM is used db-token to connect only for Autonomous Database.
- PasswordSecret stringId 
- The secret OCID mapping to the database credentials.
- Role string
- database user role.
- UserName string
- database user name.
- credentialSource StringName 
- Credential source name that had been added in Management Agent wallet. This is supplied in the External Database Service.
- credentialType String
- CREDENTIALS_BY_SOURCE is supplied via the External Database Service. CREDENTIALS_BY_VAULT is supplied by secret service to connection PE_COMANAGED_DATABASE and ADB as well. CREDENTIALS_BY_IAM is used db-token to connect only for Autonomous Database.
- passwordSecret StringId 
- The secret OCID mapping to the database credentials.
- role String
- database user role.
- userName String
- database user name.
- credentialSource stringName 
- Credential source name that had been added in Management Agent wallet. This is supplied in the External Database Service.
- credentialType string
- CREDENTIALS_BY_SOURCE is supplied via the External Database Service. CREDENTIALS_BY_VAULT is supplied by secret service to connection PE_COMANAGED_DATABASE and ADB as well. CREDENTIALS_BY_IAM is used db-token to connect only for Autonomous Database.
- passwordSecret stringId 
- The secret OCID mapping to the database credentials.
- role string
- database user role.
- userName string
- database user name.
- credential_source_ strname 
- Credential source name that had been added in Management Agent wallet. This is supplied in the External Database Service.
- credential_type str
- CREDENTIALS_BY_SOURCE is supplied via the External Database Service. CREDENTIALS_BY_VAULT is supplied by secret service to connection PE_COMANAGED_DATABASE and ADB as well. CREDENTIALS_BY_IAM is used db-token to connect only for Autonomous Database.
- password_secret_ strid 
- The secret OCID mapping to the database credentials.
- role str
- database user role.
- user_name str
- database user name.
- credentialSource StringName 
- Credential source name that had been added in Management Agent wallet. This is supplied in the External Database Service.
- credentialType String
- CREDENTIALS_BY_SOURCE is supplied via the External Database Service. CREDENTIALS_BY_VAULT is supplied by secret service to connection PE_COMANAGED_DATABASE and ADB as well. CREDENTIALS_BY_IAM is used db-token to connect only for Autonomous Database.
- passwordSecret StringId 
- The secret OCID mapping to the database credentials.
- role String
- database user role.
- userName String
- database user name.
GetDatabaseInsightsDatabaseInsightsCollectionItemConnectionDetail        
- HostName string
- Name of the listener host that will be used to create the connect string to the database.
- Hosts
List<GetDatabase Insights Database Insights Collection Item Connection Detail Host> 
- List of hosts and port for private endpoint accessed database resource.
- Port int
- Listener port number used for connection requests.
- Protocol string
- Protocol used for connection requests for private endpoint accssed database resource.
- ServiceName string
- Database service name used for connection requests.
- HostName string
- Name of the listener host that will be used to create the connect string to the database.
- Hosts
[]GetDatabase Insights Database Insights Collection Item Connection Detail Host 
- List of hosts and port for private endpoint accessed database resource.
- Port int
- Listener port number used for connection requests.
- Protocol string
- Protocol used for connection requests for private endpoint accssed database resource.
- ServiceName string
- Database service name used for connection requests.
- hostName String
- Name of the listener host that will be used to create the connect string to the database.
- hosts
List<GetDatabase Insights Database Insights Collection Item Connection Detail Host> 
- List of hosts and port for private endpoint accessed database resource.
- port Integer
- Listener port number used for connection requests.
- protocol String
- Protocol used for connection requests for private endpoint accssed database resource.
- serviceName String
- Database service name used for connection requests.
- hostName string
- Name of the listener host that will be used to create the connect string to the database.
- hosts
GetDatabase Insights Database Insights Collection Item Connection Detail Host[] 
- List of hosts and port for private endpoint accessed database resource.
- port number
- Listener port number used for connection requests.
- protocol string
- Protocol used for connection requests for private endpoint accssed database resource.
- serviceName string
- Database service name used for connection requests.
- host_name str
- Name of the listener host that will be used to create the connect string to the database.
- hosts
Sequence[GetDatabase Insights Database Insights Collection Item Connection Detail Host] 
- List of hosts and port for private endpoint accessed database resource.
- port int
- Listener port number used for connection requests.
- protocol str
- Protocol used for connection requests for private endpoint accssed database resource.
- service_name str
- Database service name used for connection requests.
- hostName String
- Name of the listener host that will be used to create the connect string to the database.
- hosts List<Property Map>
- List of hosts and port for private endpoint accessed database resource.
- port Number
- Listener port number used for connection requests.
- protocol String
- Protocol used for connection requests for private endpoint accssed database resource.
- serviceName String
- Database service name used for connection requests.
GetDatabaseInsightsDatabaseInsightsCollectionItemConnectionDetailHost         
GetDatabaseInsightsDatabaseInsightsCollectionItemCredentialDetail        
- CredentialSource stringName 
- Credential source name that had been added in Management Agent wallet. This is supplied in the External Database Service.
- CredentialType string
- CREDENTIALS_BY_SOURCE is supplied via the External Database Service. CREDENTIALS_BY_VAULT is supplied by secret service to connection PE_COMANAGED_DATABASE and ADB as well. CREDENTIALS_BY_IAM is used db-token to connect only for Autonomous Database.
- PasswordSecret stringId 
- The secret OCID mapping to the database credentials.
- Role string
- database user role.
- UserName string
- database user name.
- WalletSecret stringId 
- The OCID of the Secret where the database keystore contents are stored.
- CredentialSource stringName 
- Credential source name that had been added in Management Agent wallet. This is supplied in the External Database Service.
- CredentialType string
- CREDENTIALS_BY_SOURCE is supplied via the External Database Service. CREDENTIALS_BY_VAULT is supplied by secret service to connection PE_COMANAGED_DATABASE and ADB as well. CREDENTIALS_BY_IAM is used db-token to connect only for Autonomous Database.
- PasswordSecret stringId 
- The secret OCID mapping to the database credentials.
- Role string
- database user role.
- UserName string
- database user name.
- WalletSecret stringId 
- The OCID of the Secret where the database keystore contents are stored.
- credentialSource StringName 
- Credential source name that had been added in Management Agent wallet. This is supplied in the External Database Service.
- credentialType String
- CREDENTIALS_BY_SOURCE is supplied via the External Database Service. CREDENTIALS_BY_VAULT is supplied by secret service to connection PE_COMANAGED_DATABASE and ADB as well. CREDENTIALS_BY_IAM is used db-token to connect only for Autonomous Database.
- passwordSecret StringId 
- The secret OCID mapping to the database credentials.
- role String
- database user role.
- userName String
- database user name.
- walletSecret StringId 
- The OCID of the Secret where the database keystore contents are stored.
- credentialSource stringName 
- Credential source name that had been added in Management Agent wallet. This is supplied in the External Database Service.
- credentialType string
- CREDENTIALS_BY_SOURCE is supplied via the External Database Service. CREDENTIALS_BY_VAULT is supplied by secret service to connection PE_COMANAGED_DATABASE and ADB as well. CREDENTIALS_BY_IAM is used db-token to connect only for Autonomous Database.
- passwordSecret stringId 
- The secret OCID mapping to the database credentials.
- role string
- database user role.
- userName string
- database user name.
- walletSecret stringId 
- The OCID of the Secret where the database keystore contents are stored.
- credential_source_ strname 
- Credential source name that had been added in Management Agent wallet. This is supplied in the External Database Service.
- credential_type str
- CREDENTIALS_BY_SOURCE is supplied via the External Database Service. CREDENTIALS_BY_VAULT is supplied by secret service to connection PE_COMANAGED_DATABASE and ADB as well. CREDENTIALS_BY_IAM is used db-token to connect only for Autonomous Database.
- password_secret_ strid 
- The secret OCID mapping to the database credentials.
- role str
- database user role.
- user_name str
- database user name.
- wallet_secret_ strid 
- The OCID of the Secret where the database keystore contents are stored.
- credentialSource StringName 
- Credential source name that had been added in Management Agent wallet. This is supplied in the External Database Service.
- credentialType String
- CREDENTIALS_BY_SOURCE is supplied via the External Database Service. CREDENTIALS_BY_VAULT is supplied by secret service to connection PE_COMANAGED_DATABASE and ADB as well. CREDENTIALS_BY_IAM is used db-token to connect only for Autonomous Database.
- passwordSecret StringId 
- The secret OCID mapping to the database credentials.
- role String
- database user role.
- userName String
- database user name.
- walletSecret StringId 
- The OCID of the Secret where the database keystore contents are stored.
GetDatabaseInsightsFilter   
Package Details
- Repository
- oci pulumi/pulumi-oci
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the ociTerraform Provider.