1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. DatabaseManagement
  5. getExternalDbSystemDiscoveries
Oracle Cloud Infrastructure v2.28.0 published on Thursday, Mar 27, 2025 by Pulumi

oci.DatabaseManagement.getExternalDbSystemDiscoveries

Explore with Pulumi AI

Oracle Cloud Infrastructure v2.28.0 published on Thursday, Mar 27, 2025 by Pulumi

This data source provides the list of External Db System Discoveries in Oracle Cloud Infrastructure Database Management service.

Lists the external DB system discovery resources in the specified compartment.

Example Usage

import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";

const testExternalDbSystemDiscoveries = oci.DatabaseManagement.getExternalDbSystemDiscoveries({
    compartmentId: compartmentId,
    displayName: externalDbSystemDiscoveryDisplayName,
});
Copy
import pulumi
import pulumi_oci as oci

test_external_db_system_discoveries = oci.DatabaseManagement.get_external_db_system_discoveries(compartment_id=compartment_id,
    display_name=external_db_system_discovery_display_name)
Copy
package main

import (
	"github.com/pulumi/pulumi-oci/sdk/v2/go/oci/databasemanagement"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := databasemanagement.GetExternalDbSystemDiscoveries(ctx, &databasemanagement.GetExternalDbSystemDiscoveriesArgs{
			CompartmentId: compartmentId,
			DisplayName:   pulumi.StringRef(externalDbSystemDiscoveryDisplayName),
		}, nil)
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Oci = Pulumi.Oci;

return await Deployment.RunAsync(() => 
{
    var testExternalDbSystemDiscoveries = Oci.DatabaseManagement.GetExternalDbSystemDiscoveries.Invoke(new()
    {
        CompartmentId = compartmentId,
        DisplayName = externalDbSystemDiscoveryDisplayName,
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.DatabaseManagement.DatabaseManagementFunctions;
import com.pulumi.oci.DatabaseManagement.inputs.GetExternalDbSystemDiscoveriesArgs;
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 testExternalDbSystemDiscoveries = DatabaseManagementFunctions.getExternalDbSystemDiscoveries(GetExternalDbSystemDiscoveriesArgs.builder()
            .compartmentId(compartmentId)
            .displayName(externalDbSystemDiscoveryDisplayName)
            .build());

    }
}
Copy
variables:
  testExternalDbSystemDiscoveries:
    fn::invoke:
      function: oci:DatabaseManagement:getExternalDbSystemDiscoveries
      arguments:
        compartmentId: ${compartmentId}
        displayName: ${externalDbSystemDiscoveryDisplayName}
Copy

Using getExternalDbSystemDiscoveries

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 getExternalDbSystemDiscoveries(args: GetExternalDbSystemDiscoveriesArgs, opts?: InvokeOptions): Promise<GetExternalDbSystemDiscoveriesResult>
function getExternalDbSystemDiscoveriesOutput(args: GetExternalDbSystemDiscoveriesOutputArgs, opts?: InvokeOptions): Output<GetExternalDbSystemDiscoveriesResult>
Copy
def get_external_db_system_discoveries(compartment_id: Optional[str] = None,
                                       display_name: Optional[str] = None,
                                       filters: Optional[Sequence[_databasemanagement.GetExternalDbSystemDiscoveriesFilter]] = None,
                                       opts: Optional[InvokeOptions] = None) -> GetExternalDbSystemDiscoveriesResult
def get_external_db_system_discoveries_output(compartment_id: Optional[pulumi.Input[str]] = None,
                                       display_name: Optional[pulumi.Input[str]] = None,
                                       filters: Optional[pulumi.Input[Sequence[pulumi.Input[_databasemanagement.GetExternalDbSystemDiscoveriesFilterArgs]]]] = None,
                                       opts: Optional[InvokeOptions] = None) -> Output[GetExternalDbSystemDiscoveriesResult]
Copy
func GetExternalDbSystemDiscoveries(ctx *Context, args *GetExternalDbSystemDiscoveriesArgs, opts ...InvokeOption) (*GetExternalDbSystemDiscoveriesResult, error)
func GetExternalDbSystemDiscoveriesOutput(ctx *Context, args *GetExternalDbSystemDiscoveriesOutputArgs, opts ...InvokeOption) GetExternalDbSystemDiscoveriesResultOutput
Copy

> Note: This function is named GetExternalDbSystemDiscoveries in the Go SDK.

public static class GetExternalDbSystemDiscoveries 
{
    public static Task<GetExternalDbSystemDiscoveriesResult> InvokeAsync(GetExternalDbSystemDiscoveriesArgs args, InvokeOptions? opts = null)
    public static Output<GetExternalDbSystemDiscoveriesResult> Invoke(GetExternalDbSystemDiscoveriesInvokeArgs args, InvokeOptions? opts = null)
}
Copy
public static CompletableFuture<GetExternalDbSystemDiscoveriesResult> getExternalDbSystemDiscoveries(GetExternalDbSystemDiscoveriesArgs args, InvokeOptions options)
public static Output<GetExternalDbSystemDiscoveriesResult> getExternalDbSystemDiscoveries(GetExternalDbSystemDiscoveriesArgs args, InvokeOptions options)
Copy
fn::invoke:
  function: oci:DatabaseManagement/getExternalDbSystemDiscoveries:getExternalDbSystemDiscoveries
  arguments:
    # arguments dictionary
Copy

The following arguments are supported:

CompartmentId This property is required. string
The OCID of the compartment.
DisplayName string
A filter to only return the resources that match the entire display name.
Filters Changes to this property will trigger replacement. List<GetExternalDbSystemDiscoveriesFilter>
CompartmentId This property is required. string
The OCID of the compartment.
DisplayName string
A filter to only return the resources that match the entire display name.
Filters Changes to this property will trigger replacement. []GetExternalDbSystemDiscoveriesFilter
compartmentId This property is required. String
The OCID of the compartment.
displayName String
A filter to only return the resources that match the entire display name.
filters Changes to this property will trigger replacement. List<GetExternalDbSystemDiscoveriesFilter>
compartmentId This property is required. string
The OCID of the compartment.
displayName string
A filter to only return the resources that match the entire display name.
filters Changes to this property will trigger replacement. GetExternalDbSystemDiscoveriesFilter[]
compartment_id This property is required. str
The OCID of the compartment.
display_name str
A filter to only return the resources that match the entire display name.
filters Changes to this property will trigger replacement. Sequence[databasemanagement.GetExternalDbSystemDiscoveriesFilter]
compartmentId This property is required. String
The OCID of the compartment.
displayName String
A filter to only return the resources that match the entire display name.
filters Changes to this property will trigger replacement. List<Property Map>

getExternalDbSystemDiscoveries Result

The following output properties are available:

CompartmentId string
The OCID of the compartment.
ExternalDbSystemDiscoveryCollections List<GetExternalDbSystemDiscoveriesExternalDbSystemDiscoveryCollection>
The list of external_db_system_discovery_collection.
Id string
The provider-assigned unique ID for this managed resource.
DisplayName string
The user-friendly name for the DB system. The name does not have to be unique.
Filters List<GetExternalDbSystemDiscoveriesFilter>
CompartmentId string
The OCID of the compartment.
ExternalDbSystemDiscoveryCollections []GetExternalDbSystemDiscoveriesExternalDbSystemDiscoveryCollection
The list of external_db_system_discovery_collection.
Id string
The provider-assigned unique ID for this managed resource.
DisplayName string
The user-friendly name for the DB system. The name does not have to be unique.
Filters []GetExternalDbSystemDiscoveriesFilter
compartmentId String
The OCID of the compartment.
externalDbSystemDiscoveryCollections List<GetExternalDbSystemDiscoveriesExternalDbSystemDiscoveryCollection>
The list of external_db_system_discovery_collection.
id String
The provider-assigned unique ID for this managed resource.
displayName String
The user-friendly name for the DB system. The name does not have to be unique.
filters List<GetExternalDbSystemDiscoveriesFilter>
compartmentId string
The OCID of the compartment.
externalDbSystemDiscoveryCollections GetExternalDbSystemDiscoveriesExternalDbSystemDiscoveryCollection[]
The list of external_db_system_discovery_collection.
id string
The provider-assigned unique ID for this managed resource.
displayName string
The user-friendly name for the DB system. The name does not have to be unique.
filters GetExternalDbSystemDiscoveriesFilter[]
compartment_id str
The OCID of the compartment.
external_db_system_discovery_collections Sequence[databasemanagement.GetExternalDbSystemDiscoveriesExternalDbSystemDiscoveryCollection]
The list of external_db_system_discovery_collection.
id str
The provider-assigned unique ID for this managed resource.
display_name str
The user-friendly name for the DB system. The name does not have to be unique.
filters Sequence[databasemanagement.GetExternalDbSystemDiscoveriesFilter]
compartmentId String
The OCID of the compartment.
externalDbSystemDiscoveryCollections List<Property Map>
The list of external_db_system_discovery_collection.
id String
The provider-assigned unique ID for this managed resource.
displayName String
The user-friendly name for the DB system. The name does not have to be unique.
filters List<Property Map>

Supporting Types

GetExternalDbSystemDiscoveriesExternalDbSystemDiscoveryCollection

items This property is required. List<Property Map>

GetExternalDbSystemDiscoveriesExternalDbSystemDiscoveryCollectionItem

AgentId This property is required. string
The OCID of the management agent used for the external DB system connector.
CompartmentId This property is required. string
The OCID of the compartment.
DefinedTags This property is required. Dictionary<string, string>
Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
DiscoveredComponents This property is required. List<GetExternalDbSystemDiscoveriesExternalDbSystemDiscoveryCollectionItemDiscoveredComponent>
The list of DB system components that were found in the DB system discovery.
DisplayName This property is required. string
A filter to only return the resources that match the entire display name.
ExternalDbSystemDiscoveryId This property is required. string
FreeformTags This property is required. Dictionary<string, string>
Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
GridHome This property is required. string
The directory in which Oracle Grid Infrastructure is installed.
Id This property is required. string
The OCID of the external DB system discovery.
LifecycleDetails This property is required. string
Additional information about the current lifecycle state.
PatchOperations This property is required. List<GetExternalDbSystemDiscoveriesExternalDbSystemDiscoveryCollectionItemPatchOperation>
ResourceId This property is required. string
The OCID of the existing Oracle Cloud Infrastructure resource matching the discovered DB system.
State This property is required. string
The current lifecycle state of the external DB system discovery resource.
SystemTags This property is required. Dictionary<string, string>
System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system. Example: {"orcl-cloud.free-tier-retained": "true"}
TimeCreated This property is required. string
The date and time the external DB system discovery was created.
TimeUpdated This property is required. string
The date and time the external DB system discovery was last updated.
AgentId This property is required. string
The OCID of the management agent used for the external DB system connector.
CompartmentId This property is required. string
The OCID of the compartment.
DefinedTags This property is required. map[string]string
Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
DiscoveredComponents This property is required. []GetExternalDbSystemDiscoveriesExternalDbSystemDiscoveryCollectionItemDiscoveredComponent
The list of DB system components that were found in the DB system discovery.
DisplayName This property is required. string
A filter to only return the resources that match the entire display name.
ExternalDbSystemDiscoveryId This property is required. string
FreeformTags This property is required. map[string]string
Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
GridHome This property is required. string
The directory in which Oracle Grid Infrastructure is installed.
Id This property is required. string
The OCID of the external DB system discovery.
LifecycleDetails This property is required. string
Additional information about the current lifecycle state.
PatchOperations This property is required. []GetExternalDbSystemDiscoveriesExternalDbSystemDiscoveryCollectionItemPatchOperation
ResourceId This property is required. string
The OCID of the existing Oracle Cloud Infrastructure resource matching the discovered DB system.
State This property is required. string
The current lifecycle state of the external DB system discovery resource.
SystemTags This property is required. map[string]string
System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system. Example: {"orcl-cloud.free-tier-retained": "true"}
TimeCreated This property is required. string
The date and time the external DB system discovery was created.
TimeUpdated This property is required. string
The date and time the external DB system discovery was last updated.
agentId This property is required. String
The OCID of the management agent used for the external DB system connector.
compartmentId This property is required. String
The OCID of the compartment.
definedTags This property is required. Map<String,String>
Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
discoveredComponents This property is required. List<GetExternalDbSystemDiscoveriesExternalDbSystemDiscoveryCollectionItemDiscoveredComponent>
The list of DB system components that were found in the DB system discovery.
displayName This property is required. String
A filter to only return the resources that match the entire display name.
externalDbSystemDiscoveryId This property is required. String
freeformTags This property is required. Map<String,String>
Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
gridHome This property is required. String
The directory in which Oracle Grid Infrastructure is installed.
id This property is required. String
The OCID of the external DB system discovery.
lifecycleDetails This property is required. String
Additional information about the current lifecycle state.
patchOperations This property is required. List<GetExternalDbSystemDiscoveriesExternalDbSystemDiscoveryCollectionItemPatchOperation>
resourceId This property is required. String
The OCID of the existing Oracle Cloud Infrastructure resource matching the discovered DB system.
state This property is required. String
The current lifecycle state of the external DB system discovery resource.
systemTags This property is required. Map<String,String>
System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system. Example: {"orcl-cloud.free-tier-retained": "true"}
timeCreated This property is required. String
The date and time the external DB system discovery was created.
timeUpdated This property is required. String
The date and time the external DB system discovery was last updated.
agentId This property is required. string
The OCID of the management agent used for the external DB system connector.
compartmentId This property is required. string
The OCID of the compartment.
definedTags This property is required. {[key: string]: string}
Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
discoveredComponents This property is required. GetExternalDbSystemDiscoveriesExternalDbSystemDiscoveryCollectionItemDiscoveredComponent[]
The list of DB system components that were found in the DB system discovery.
displayName This property is required. string
A filter to only return the resources that match the entire display name.
externalDbSystemDiscoveryId This property is required. string
freeformTags This property is required. {[key: string]: string}
Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
gridHome This property is required. string
The directory in which Oracle Grid Infrastructure is installed.
id This property is required. string
The OCID of the external DB system discovery.
lifecycleDetails This property is required. string
Additional information about the current lifecycle state.
patchOperations This property is required. GetExternalDbSystemDiscoveriesExternalDbSystemDiscoveryCollectionItemPatchOperation[]
resourceId This property is required. string
The OCID of the existing Oracle Cloud Infrastructure resource matching the discovered DB system.
state This property is required. string
The current lifecycle state of the external DB system discovery resource.
systemTags This property is required. {[key: string]: string}
System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system. Example: {"orcl-cloud.free-tier-retained": "true"}
timeCreated This property is required. string
The date and time the external DB system discovery was created.
timeUpdated This property is required. string
The date and time the external DB system discovery was last updated.
agent_id This property is required. str
The OCID of the management agent used for the external DB system connector.
compartment_id This property is required. str
The OCID of the compartment.
defined_tags This property is required. Mapping[str, str]
Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
discovered_components This property is required. Sequence[databasemanagement.GetExternalDbSystemDiscoveriesExternalDbSystemDiscoveryCollectionItemDiscoveredComponent]
The list of DB system components that were found in the DB system discovery.
display_name This property is required. str
A filter to only return the resources that match the entire display name.
external_db_system_discovery_id This property is required. str
freeform_tags This property is required. Mapping[str, str]
Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
grid_home This property is required. str
The directory in which Oracle Grid Infrastructure is installed.
id This property is required. str
The OCID of the external DB system discovery.
lifecycle_details This property is required. str
Additional information about the current lifecycle state.
patch_operations This property is required. Sequence[databasemanagement.GetExternalDbSystemDiscoveriesExternalDbSystemDiscoveryCollectionItemPatchOperation]
resource_id This property is required. str
The OCID of the existing Oracle Cloud Infrastructure resource matching the discovered DB system.
state This property is required. str
The current lifecycle state of the external DB system discovery resource.
system_tags This property is required. Mapping[str, str]
System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system. Example: {"orcl-cloud.free-tier-retained": "true"}
time_created This property is required. str
The date and time the external DB system discovery was created.
time_updated This property is required. str
The date and time the external DB system discovery was last updated.
agentId This property is required. String
The OCID of the management agent used for the external DB system connector.
compartmentId This property is required. String
The OCID of the compartment.
definedTags This property is required. Map<String>
Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
discoveredComponents This property is required. List<Property Map>
The list of DB system components that were found in the DB system discovery.
displayName This property is required. String
A filter to only return the resources that match the entire display name.
externalDbSystemDiscoveryId This property is required. String
freeformTags This property is required. Map<String>
Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
gridHome This property is required. String
The directory in which Oracle Grid Infrastructure is installed.
id This property is required. String
The OCID of the external DB system discovery.
lifecycleDetails This property is required. String
Additional information about the current lifecycle state.
patchOperations This property is required. List<Property Map>
resourceId This property is required. String
The OCID of the existing Oracle Cloud Infrastructure resource matching the discovered DB system.
state This property is required. String
The current lifecycle state of the external DB system discovery resource.
systemTags This property is required. Map<String>
System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system. Example: {"orcl-cloud.free-tier-retained": "true"}
timeCreated This property is required. String
The date and time the external DB system discovery was created.
timeUpdated This property is required. String
The date and time the external DB system discovery was last updated.

GetExternalDbSystemDiscoveriesExternalDbSystemDiscoveryCollectionItemDiscoveredComponent

AdrHomeDirectory This property is required. string
The Automatic Diagnostic Repository (ADR) home directory for the cluster instance.
AsmInstances This property is required. List<GetExternalDbSystemDiscoveriesExternalDbSystemDiscoveryCollectionItemDiscoveredComponentAsmInstance>
AssociatedComponents This property is required. List<GetExternalDbSystemDiscoveriesExternalDbSystemDiscoveryCollectionItemDiscoveredComponentAssociatedComponent>
The list of associated components.
ClusterId This property is required. string
The unique identifier of the Oracle cluster.
ClusterInstances This property is required. List<GetExternalDbSystemDiscoveriesExternalDbSystemDiscoveryCollectionItemDiscoveredComponentClusterInstance>
CompartmentId This property is required. string
The OCID of the compartment.
ComponentId This property is required. string
The identifier of the discovered DB system component.
ComponentName This property is required. string
The name of the discovered DB system component.
ComponentType This property is required. string
The component type.
Connectors This property is required. List<GetExternalDbSystemDiscoveriesExternalDbSystemDiscoveryCollectionItemDiscoveredComponentConnector>
The connector details used to connect to the external DB system component.
ContainerDatabaseId This property is required. string
The unique identifier of the parent Container Database (CDB).
CpuCoreCount This property is required. double
The number of CPU cores available on the DB node.
CrsBaseDirectory This property is required. string
The Oracle base location of Cluster Ready Services (CRS).
DbEdition This property is required. string
The Oracle Database edition.
DbId This property is required. string
The Oracle Database ID.
DbNodeName This property is required. string
The name of the DB node.
DbPacks This property is required. string
The database packs licensed for the external Oracle Database.
DbRole This property is required. string
The role of the Oracle Database in Oracle Data Guard configuration.
DbType This property is required. string
The type of Oracle Database. Indicates whether the database is a Container Database, Pluggable Database, or a Non-container Database.
DbUniqueName This property is required. string
The DB_UNIQUE_NAME of the external database.
DbVersion This property is required. string
The Oracle Database version.
DisplayName This property is required. string
A filter to only return the resources that match the entire display name.
Endpoints This property is required. List<GetExternalDbSystemDiscoveriesExternalDbSystemDiscoveryCollectionItemDiscoveredComponentEndpoint>
The list of protocol addresses the listener is configured to listen on.
GridHome This property is required. string
The directory in which Oracle Grid Infrastructure is installed.
Guid This property is required. string
The unique identifier of the PDB.
HomeDirectory This property is required. string
The location of the DB home.
HostName This property is required. string
The host name of the database or the SCAN name in case of a RAC database.
InstanceName This property is required. string
The name of the ASM instance.
IsCluster This property is required. bool
Indicates whether the Oracle Database is part of a cluster.
IsFlexCluster This property is required. bool
Indicates whether the cluster is an Oracle Flex Cluster or not.
IsFlexEnabled This property is required. bool
Indicates whether Oracle Flex ASM is enabled or not.
IsSelectedForMonitoring This property is required. bool
Indicates whether the DB system component should be provisioned as an Oracle Cloud Infrastructure resource or not.
ListenerAlias This property is required. string
The listener alias.
ListenerType This property is required. string
The type of listener.
LogDirectory This property is required. string
The destination directory of the listener log file.
MemorySizeInGbs This property is required. double
The total memory in gigabytes (GB) on the DB node.
NetworkConfigurations This property is required. List<GetExternalDbSystemDiscoveriesExternalDbSystemDiscoveryCollectionItemDiscoveredComponentNetworkConfiguration>
The list of network address configurations of the external cluster.
NodeRole This property is required. string
The role of the cluster node.
OcrFileLocation This property is required. string
The location of the Oracle Cluster Registry (OCR) file.
OracleHome This property is required. string
The Oracle home location of the listener.
PluggableDatabases This property is required. List<GetExternalDbSystemDiscoveriesExternalDbSystemDiscoveryCollectionItemDiscoveredComponentPluggableDatabase>
The list of Pluggable Databases.
ResourceId This property is required. string
The OCID of the existing Oracle Cloud Infrastructure resource matching the discovered DB system.
ScanConfigurations This property is required. List<GetExternalDbSystemDiscoveriesExternalDbSystemDiscoveryCollectionItemDiscoveredComponentScanConfiguration>
The list of Single Client Access Name (SCAN) configurations of the external cluster.
Status This property is required. string
The state of the discovered DB system component.
TraceDirectory This property is required. string
The destination directory of the listener trace file.
Version This property is required. string
The version of Oracle Clusterware running in the cluster.
VipConfigurations This property is required. List<GetExternalDbSystemDiscoveriesExternalDbSystemDiscoveryCollectionItemDiscoveredComponentVipConfiguration>
The list of Virtual IP (VIP) configurations of the external cluster.
AdrHomeDirectory This property is required. string
The Automatic Diagnostic Repository (ADR) home directory for the cluster instance.
AsmInstances This property is required. []GetExternalDbSystemDiscoveriesExternalDbSystemDiscoveryCollectionItemDiscoveredComponentAsmInstance
AssociatedComponents This property is required. []GetExternalDbSystemDiscoveriesExternalDbSystemDiscoveryCollectionItemDiscoveredComponentAssociatedComponent
The list of associated components.
ClusterId This property is required. string
The unique identifier of the Oracle cluster.
ClusterInstances This property is required. []GetExternalDbSystemDiscoveriesExternalDbSystemDiscoveryCollectionItemDiscoveredComponentClusterInstance
CompartmentId This property is required. string
The OCID of the compartment.
ComponentId This property is required. string
The identifier of the discovered DB system component.
ComponentName This property is required. string
The name of the discovered DB system component.
ComponentType This property is required. string
The component type.
Connectors This property is required. []GetExternalDbSystemDiscoveriesExternalDbSystemDiscoveryCollectionItemDiscoveredComponentConnector
The connector details used to connect to the external DB system component.
ContainerDatabaseId This property is required. string
The unique identifier of the parent Container Database (CDB).
CpuCoreCount This property is required. float64
The number of CPU cores available on the DB node.
CrsBaseDirectory This property is required. string
The Oracle base location of Cluster Ready Services (CRS).
DbEdition This property is required. string
The Oracle Database edition.
DbId This property is required. string
The Oracle Database ID.
DbNodeName This property is required. string
The name of the DB node.
DbPacks This property is required. string
The database packs licensed for the external Oracle Database.
DbRole This property is required. string
The role of the Oracle Database in Oracle Data Guard configuration.
DbType This property is required. string
The type of Oracle Database. Indicates whether the database is a Container Database, Pluggable Database, or a Non-container Database.
DbUniqueName This property is required. string
The DB_UNIQUE_NAME of the external database.
DbVersion This property is required. string
The Oracle Database version.
DisplayName This property is required. string
A filter to only return the resources that match the entire display name.
Endpoints This property is required. []GetExternalDbSystemDiscoveriesExternalDbSystemDiscoveryCollectionItemDiscoveredComponentEndpoint
The list of protocol addresses the listener is configured to listen on.
GridHome This property is required. string
The directory in which Oracle Grid Infrastructure is installed.
Guid This property is required. string
The unique identifier of the PDB.
HomeDirectory This property is required. string
The location of the DB home.
HostName This property is required. string
The host name of the database or the SCAN name in case of a RAC database.
InstanceName This property is required. string
The name of the ASM instance.
IsCluster This property is required. bool
Indicates whether the Oracle Database is part of a cluster.
IsFlexCluster This property is required. bool
Indicates whether the cluster is an Oracle Flex Cluster or not.
IsFlexEnabled This property is required. bool
Indicates whether Oracle Flex ASM is enabled or not.
IsSelectedForMonitoring This property is required. bool
Indicates whether the DB system component should be provisioned as an Oracle Cloud Infrastructure resource or not.
ListenerAlias This property is required. string
The listener alias.
ListenerType This property is required. string
The type of listener.
LogDirectory This property is required. string
The destination directory of the listener log file.
MemorySizeInGbs This property is required. float64
The total memory in gigabytes (GB) on the DB node.
NetworkConfigurations This property is required. []GetExternalDbSystemDiscoveriesExternalDbSystemDiscoveryCollectionItemDiscoveredComponentNetworkConfiguration
The list of network address configurations of the external cluster.
NodeRole This property is required. string
The role of the cluster node.
OcrFileLocation This property is required. string
The location of the Oracle Cluster Registry (OCR) file.
OracleHome This property is required. string
The Oracle home location of the listener.
PluggableDatabases This property is required. []GetExternalDbSystemDiscoveriesExternalDbSystemDiscoveryCollectionItemDiscoveredComponentPluggableDatabase
The list of Pluggable Databases.
ResourceId This property is required. string
The OCID of the existing Oracle Cloud Infrastructure resource matching the discovered DB system.
ScanConfigurations This property is required. []GetExternalDbSystemDiscoveriesExternalDbSystemDiscoveryCollectionItemDiscoveredComponentScanConfiguration
The list of Single Client Access Name (SCAN) configurations of the external cluster.
Status This property is required. string
The state of the discovered DB system component.
TraceDirectory This property is required. string
The destination directory of the listener trace file.
Version This property is required. string
The version of Oracle Clusterware running in the cluster.
VipConfigurations This property is required. []GetExternalDbSystemDiscoveriesExternalDbSystemDiscoveryCollectionItemDiscoveredComponentVipConfiguration
The list of Virtual IP (VIP) configurations of the external cluster.
adrHomeDirectory This property is required. String
The Automatic Diagnostic Repository (ADR) home directory for the cluster instance.
asmInstances This property is required. List<GetExternalDbSystemDiscoveriesExternalDbSystemDiscoveryCollectionItemDiscoveredComponentAsmInstance>
associatedComponents This property is required. List<GetExternalDbSystemDiscoveriesExternalDbSystemDiscoveryCollectionItemDiscoveredComponentAssociatedComponent>
The list of associated components.
clusterId This property is required. String
The unique identifier of the Oracle cluster.
clusterInstances This property is required. List<GetExternalDbSystemDiscoveriesExternalDbSystemDiscoveryCollectionItemDiscoveredComponentClusterInstance>
compartmentId This property is required. String
The OCID of the compartment.
componentId This property is required. String
The identifier of the discovered DB system component.
componentName This property is required. String
The name of the discovered DB system component.
componentType This property is required. String
The component type.
connectors This property is required. List<GetExternalDbSystemDiscoveriesExternalDbSystemDiscoveryCollectionItemDiscoveredComponentConnector>
The connector details used to connect to the external DB system component.
containerDatabaseId This property is required. String
The unique identifier of the parent Container Database (CDB).
cpuCoreCount This property is required. Double
The number of CPU cores available on the DB node.
crsBaseDirectory This property is required. String
The Oracle base location of Cluster Ready Services (CRS).
dbEdition This property is required. String
The Oracle Database edition.
dbId This property is required. String
The Oracle Database ID.
dbNodeName This property is required. String
The name of the DB node.
dbPacks This property is required. String
The database packs licensed for the external Oracle Database.
dbRole This property is required. String
The role of the Oracle Database in Oracle Data Guard configuration.
dbType This property is required. String
The type of Oracle Database. Indicates whether the database is a Container Database, Pluggable Database, or a Non-container Database.
dbUniqueName This property is required. String
The DB_UNIQUE_NAME of the external database.
dbVersion This property is required. String
The Oracle Database version.
displayName This property is required. String
A filter to only return the resources that match the entire display name.
endpoints This property is required. List<GetExternalDbSystemDiscoveriesExternalDbSystemDiscoveryCollectionItemDiscoveredComponentEndpoint>
The list of protocol addresses the listener is configured to listen on.
gridHome This property is required. String
The directory in which Oracle Grid Infrastructure is installed.
guid This property is required. String
The unique identifier of the PDB.
homeDirectory This property is required. String
The location of the DB home.
hostName This property is required. String
The host name of the database or the SCAN name in case of a RAC database.
instanceName This property is required. String
The name of the ASM instance.
isCluster This property is required. Boolean
Indicates whether the Oracle Database is part of a cluster.
isFlexCluster This property is required. Boolean
Indicates whether the cluster is an Oracle Flex Cluster or not.
isFlexEnabled This property is required. Boolean
Indicates whether Oracle Flex ASM is enabled or not.
isSelectedForMonitoring This property is required. Boolean
Indicates whether the DB system component should be provisioned as an Oracle Cloud Infrastructure resource or not.
listenerAlias This property is required. String
The listener alias.
listenerType This property is required. String
The type of listener.
logDirectory This property is required. String
The destination directory of the listener log file.
memorySizeInGbs This property is required. Double
The total memory in gigabytes (GB) on the DB node.
networkConfigurations This property is required. List<GetExternalDbSystemDiscoveriesExternalDbSystemDiscoveryCollectionItemDiscoveredComponentNetworkConfiguration>
The list of network address configurations of the external cluster.
nodeRole This property is required. String
The role of the cluster node.
ocrFileLocation This property is required. String
The location of the Oracle Cluster Registry (OCR) file.
oracleHome This property is required. String
The Oracle home location of the listener.
pluggableDatabases This property is required. List<GetExternalDbSystemDiscoveriesExternalDbSystemDiscoveryCollectionItemDiscoveredComponentPluggableDatabase>
The list of Pluggable Databases.
resourceId This property is required. String
The OCID of the existing Oracle Cloud Infrastructure resource matching the discovered DB system.
scanConfigurations This property is required. List<GetExternalDbSystemDiscoveriesExternalDbSystemDiscoveryCollectionItemDiscoveredComponentScanConfiguration>
The list of Single Client Access Name (SCAN) configurations of the external cluster.
status This property is required. String
The state of the discovered DB system component.
traceDirectory This property is required. String
The destination directory of the listener trace file.
version This property is required. String
The version of Oracle Clusterware running in the cluster.
vipConfigurations This property is required. List<GetExternalDbSystemDiscoveriesExternalDbSystemDiscoveryCollectionItemDiscoveredComponentVipConfiguration>
The list of Virtual IP (VIP) configurations of the external cluster.
adrHomeDirectory This property is required. string
The Automatic Diagnostic Repository (ADR) home directory for the cluster instance.
asmInstances This property is required. GetExternalDbSystemDiscoveriesExternalDbSystemDiscoveryCollectionItemDiscoveredComponentAsmInstance[]
associatedComponents This property is required. GetExternalDbSystemDiscoveriesExternalDbSystemDiscoveryCollectionItemDiscoveredComponentAssociatedComponent[]
The list of associated components.
clusterId This property is required. string
The unique identifier of the Oracle cluster.
clusterInstances This property is required. GetExternalDbSystemDiscoveriesExternalDbSystemDiscoveryCollectionItemDiscoveredComponentClusterInstance[]
compartmentId This property is required. string
The OCID of the compartment.
componentId This property is required. string
The identifier of the discovered DB system component.
componentName This property is required. string
The name of the discovered DB system component.
componentType This property is required. string
The component type.
connectors This property is required. GetExternalDbSystemDiscoveriesExternalDbSystemDiscoveryCollectionItemDiscoveredComponentConnector[]
The connector details used to connect to the external DB system component.
containerDatabaseId This property is required. string
The unique identifier of the parent Container Database (CDB).
cpuCoreCount This property is required. number
The number of CPU cores available on the DB node.
crsBaseDirectory This property is required. string
The Oracle base location of Cluster Ready Services (CRS).
dbEdition This property is required. string
The Oracle Database edition.
dbId This property is required. string
The Oracle Database ID.
dbNodeName This property is required. string
The name of the DB node.
dbPacks This property is required. string
The database packs licensed for the external Oracle Database.
dbRole This property is required. string
The role of the Oracle Database in Oracle Data Guard configuration.
dbType This property is required. string
The type of Oracle Database. Indicates whether the database is a Container Database, Pluggable Database, or a Non-container Database.
dbUniqueName This property is required. string
The DB_UNIQUE_NAME of the external database.
dbVersion This property is required. string
The Oracle Database version.
displayName This property is required. string
A filter to only return the resources that match the entire display name.
endpoints This property is required. GetExternalDbSystemDiscoveriesExternalDbSystemDiscoveryCollectionItemDiscoveredComponentEndpoint[]
The list of protocol addresses the listener is configured to listen on.
gridHome This property is required. string
The directory in which Oracle Grid Infrastructure is installed.
guid This property is required. string
The unique identifier of the PDB.
homeDirectory This property is required. string
The location of the DB home.
hostName This property is required. string
The host name of the database or the SCAN name in case of a RAC database.
instanceName This property is required. string
The name of the ASM instance.
isCluster This property is required. boolean
Indicates whether the Oracle Database is part of a cluster.
isFlexCluster This property is required. boolean
Indicates whether the cluster is an Oracle Flex Cluster or not.
isFlexEnabled This property is required. boolean
Indicates whether Oracle Flex ASM is enabled or not.
isSelectedForMonitoring This property is required. boolean
Indicates whether the DB system component should be provisioned as an Oracle Cloud Infrastructure resource or not.
listenerAlias This property is required. string
The listener alias.
listenerType This property is required. string
The type of listener.
logDirectory This property is required. string
The destination directory of the listener log file.
memorySizeInGbs This property is required. number
The total memory in gigabytes (GB) on the DB node.
networkConfigurations This property is required. GetExternalDbSystemDiscoveriesExternalDbSystemDiscoveryCollectionItemDiscoveredComponentNetworkConfiguration[]
The list of network address configurations of the external cluster.
nodeRole This property is required. string
The role of the cluster node.
ocrFileLocation This property is required. string
The location of the Oracle Cluster Registry (OCR) file.
oracleHome This property is required. string
The Oracle home location of the listener.
pluggableDatabases This property is required. GetExternalDbSystemDiscoveriesExternalDbSystemDiscoveryCollectionItemDiscoveredComponentPluggableDatabase[]
The list of Pluggable Databases.
resourceId This property is required. string
The OCID of the existing Oracle Cloud Infrastructure resource matching the discovered DB system.
scanConfigurations This property is required. GetExternalDbSystemDiscoveriesExternalDbSystemDiscoveryCollectionItemDiscoveredComponentScanConfiguration[]
The list of Single Client Access Name (SCAN) configurations of the external cluster.
status This property is required. string
The state of the discovered DB system component.
traceDirectory This property is required. string
The destination directory of the listener trace file.
version This property is required. string
The version of Oracle Clusterware running in the cluster.
vipConfigurations This property is required. GetExternalDbSystemDiscoveriesExternalDbSystemDiscoveryCollectionItemDiscoveredComponentVipConfiguration[]
The list of Virtual IP (VIP) configurations of the external cluster.
adr_home_directory This property is required. str
The Automatic Diagnostic Repository (ADR) home directory for the cluster instance.
asm_instances This property is required. Sequence[databasemanagement.GetExternalDbSystemDiscoveriesExternalDbSystemDiscoveryCollectionItemDiscoveredComponentAsmInstance]
associated_components This property is required. Sequence[databasemanagement.GetExternalDbSystemDiscoveriesExternalDbSystemDiscoveryCollectionItemDiscoveredComponentAssociatedComponent]
The list of associated components.
cluster_id This property is required. str
The unique identifier of the Oracle cluster.
cluster_instances This property is required. Sequence[databasemanagement.GetExternalDbSystemDiscoveriesExternalDbSystemDiscoveryCollectionItemDiscoveredComponentClusterInstance]
compartment_id This property is required. str
The OCID of the compartment.
component_id This property is required. str
The identifier of the discovered DB system component.
component_name This property is required. str
The name of the discovered DB system component.
component_type This property is required. str
The component type.
connectors This property is required. Sequence[databasemanagement.GetExternalDbSystemDiscoveriesExternalDbSystemDiscoveryCollectionItemDiscoveredComponentConnector]
The connector details used to connect to the external DB system component.
container_database_id This property is required. str
The unique identifier of the parent Container Database (CDB).
cpu_core_count This property is required. float
The number of CPU cores available on the DB node.
crs_base_directory This property is required. str
The Oracle base location of Cluster Ready Services (CRS).
db_edition This property is required. str
The Oracle Database edition.
db_id This property is required. str
The Oracle Database ID.
db_node_name This property is required. str
The name of the DB node.
db_packs This property is required. str
The database packs licensed for the external Oracle Database.
db_role This property is required. str
The role of the Oracle Database in Oracle Data Guard configuration.
db_type This property is required. str
The type of Oracle Database. Indicates whether the database is a Container Database, Pluggable Database, or a Non-container Database.
db_unique_name This property is required. str
The DB_UNIQUE_NAME of the external database.
db_version This property is required. str
The Oracle Database version.
display_name This property is required. str
A filter to only return the resources that match the entire display name.
endpoints This property is required. Sequence[databasemanagement.GetExternalDbSystemDiscoveriesExternalDbSystemDiscoveryCollectionItemDiscoveredComponentEndpoint]
The list of protocol addresses the listener is configured to listen on.
grid_home This property is required. str
The directory in which Oracle Grid Infrastructure is installed.
guid This property is required. str
The unique identifier of the PDB.
home_directory This property is required. str
The location of the DB home.
host_name This property is required. str
The host name of the database or the SCAN name in case of a RAC database.
instance_name This property is required. str
The name of the ASM instance.
is_cluster This property is required. bool
Indicates whether the Oracle Database is part of a cluster.
is_flex_cluster This property is required. bool
Indicates whether the cluster is an Oracle Flex Cluster or not.
is_flex_enabled This property is required. bool
Indicates whether Oracle Flex ASM is enabled or not.
is_selected_for_monitoring This property is required. bool
Indicates whether the DB system component should be provisioned as an Oracle Cloud Infrastructure resource or not.
listener_alias This property is required. str
The listener alias.
listener_type This property is required. str
The type of listener.
log_directory This property is required. str
The destination directory of the listener log file.
memory_size_in_gbs This property is required. float
The total memory in gigabytes (GB) on the DB node.
network_configurations This property is required. Sequence[databasemanagement.GetExternalDbSystemDiscoveriesExternalDbSystemDiscoveryCollectionItemDiscoveredComponentNetworkConfiguration]
The list of network address configurations of the external cluster.
node_role This property is required. str
The role of the cluster node.
ocr_file_location This property is required. str
The location of the Oracle Cluster Registry (OCR) file.
oracle_home This property is required. str
The Oracle home location of the listener.
pluggable_databases This property is required. Sequence[databasemanagement.GetExternalDbSystemDiscoveriesExternalDbSystemDiscoveryCollectionItemDiscoveredComponentPluggableDatabase]
The list of Pluggable Databases.
resource_id This property is required. str
The OCID of the existing Oracle Cloud Infrastructure resource matching the discovered DB system.
scan_configurations This property is required. Sequence[databasemanagement.GetExternalDbSystemDiscoveriesExternalDbSystemDiscoveryCollectionItemDiscoveredComponentScanConfiguration]
The list of Single Client Access Name (SCAN) configurations of the external cluster.
status This property is required. str
The state of the discovered DB system component.
trace_directory This property is required. str
The destination directory of the listener trace file.
version This property is required. str
The version of Oracle Clusterware running in the cluster.
vip_configurations This property is required. Sequence[databasemanagement.GetExternalDbSystemDiscoveriesExternalDbSystemDiscoveryCollectionItemDiscoveredComponentVipConfiguration]
The list of Virtual IP (VIP) configurations of the external cluster.
adrHomeDirectory This property is required. String
The Automatic Diagnostic Repository (ADR) home directory for the cluster instance.
asmInstances This property is required. List<Property Map>
associatedComponents This property is required. List<Property Map>
The list of associated components.
clusterId This property is required. String
The unique identifier of the Oracle cluster.
clusterInstances This property is required. List<Property Map>
compartmentId This property is required. String
The OCID of the compartment.
componentId This property is required. String
The identifier of the discovered DB system component.
componentName This property is required. String
The name of the discovered DB system component.
componentType This property is required. String
The component type.
connectors This property is required. List<Property Map>
The connector details used to connect to the external DB system component.
containerDatabaseId This property is required. String
The unique identifier of the parent Container Database (CDB).
cpuCoreCount This property is required. Number
The number of CPU cores available on the DB node.
crsBaseDirectory This property is required. String
The Oracle base location of Cluster Ready Services (CRS).
dbEdition This property is required. String
The Oracle Database edition.
dbId This property is required. String
The Oracle Database ID.
dbNodeName This property is required. String
The name of the DB node.
dbPacks This property is required. String
The database packs licensed for the external Oracle Database.
dbRole This property is required. String
The role of the Oracle Database in Oracle Data Guard configuration.
dbType This property is required. String
The type of Oracle Database. Indicates whether the database is a Container Database, Pluggable Database, or a Non-container Database.
dbUniqueName This property is required. String
The DB_UNIQUE_NAME of the external database.
dbVersion This property is required. String
The Oracle Database version.
displayName This property is required. String
A filter to only return the resources that match the entire display name.
endpoints This property is required. List<Property Map>
The list of protocol addresses the listener is configured to listen on.
gridHome This property is required. String
The directory in which Oracle Grid Infrastructure is installed.
guid This property is required. String
The unique identifier of the PDB.
homeDirectory This property is required. String
The location of the DB home.
hostName This property is required. String
The host name of the database or the SCAN name in case of a RAC database.
instanceName This property is required. String
The name of the ASM instance.
isCluster This property is required. Boolean
Indicates whether the Oracle Database is part of a cluster.
isFlexCluster This property is required. Boolean
Indicates whether the cluster is an Oracle Flex Cluster or not.
isFlexEnabled This property is required. Boolean
Indicates whether Oracle Flex ASM is enabled or not.
isSelectedForMonitoring This property is required. Boolean
Indicates whether the DB system component should be provisioned as an Oracle Cloud Infrastructure resource or not.
listenerAlias This property is required. String
The listener alias.
listenerType This property is required. String
The type of listener.
logDirectory This property is required. String
The destination directory of the listener log file.
memorySizeInGbs This property is required. Number
The total memory in gigabytes (GB) on the DB node.
networkConfigurations This property is required. List<Property Map>
The list of network address configurations of the external cluster.
nodeRole This property is required. String
The role of the cluster node.
ocrFileLocation This property is required. String
The location of the Oracle Cluster Registry (OCR) file.
oracleHome This property is required. String
The Oracle home location of the listener.
pluggableDatabases This property is required. List<Property Map>
The list of Pluggable Databases.
resourceId This property is required. String
The OCID of the existing Oracle Cloud Infrastructure resource matching the discovered DB system.
scanConfigurations This property is required. List<Property Map>
The list of Single Client Access Name (SCAN) configurations of the external cluster.
status This property is required. String
The state of the discovered DB system component.
traceDirectory This property is required. String
The destination directory of the listener trace file.
version This property is required. String
The version of Oracle Clusterware running in the cluster.
vipConfigurations This property is required. List<Property Map>
The list of Virtual IP (VIP) configurations of the external cluster.

GetExternalDbSystemDiscoveriesExternalDbSystemDiscoveryCollectionItemDiscoveredComponentAsmInstance

AdrHomeDirectory This property is required. string
The Automatic Diagnostic Repository (ADR) home directory for the cluster instance.
HostName This property is required. string
The host name of the database or the SCAN name in case of a RAC database.
InstanceName This property is required. string
The name of the ASM instance.
AdrHomeDirectory This property is required. string
The Automatic Diagnostic Repository (ADR) home directory for the cluster instance.
HostName This property is required. string
The host name of the database or the SCAN name in case of a RAC database.
InstanceName This property is required. string
The name of the ASM instance.
adrHomeDirectory This property is required. String
The Automatic Diagnostic Repository (ADR) home directory for the cluster instance.
hostName This property is required. String
The host name of the database or the SCAN name in case of a RAC database.
instanceName This property is required. String
The name of the ASM instance.
adrHomeDirectory This property is required. string
The Automatic Diagnostic Repository (ADR) home directory for the cluster instance.
hostName This property is required. string
The host name of the database or the SCAN name in case of a RAC database.
instanceName This property is required. string
The name of the ASM instance.
adr_home_directory This property is required. str
The Automatic Diagnostic Repository (ADR) home directory for the cluster instance.
host_name This property is required. str
The host name of the database or the SCAN name in case of a RAC database.
instance_name This property is required. str
The name of the ASM instance.
adrHomeDirectory This property is required. String
The Automatic Diagnostic Repository (ADR) home directory for the cluster instance.
hostName This property is required. String
The host name of the database or the SCAN name in case of a RAC database.
instanceName This property is required. String
The name of the ASM instance.

GetExternalDbSystemDiscoveriesExternalDbSystemDiscoveryCollectionItemDiscoveredComponentAssociatedComponent

AssociationType This property is required. string
The association type.
ComponentId This property is required. string
The identifier of the discovered DB system component.
ComponentType This property is required. string
The component type.
AssociationType This property is required. string
The association type.
ComponentId This property is required. string
The identifier of the discovered DB system component.
ComponentType This property is required. string
The component type.
associationType This property is required. String
The association type.
componentId This property is required. String
The identifier of the discovered DB system component.
componentType This property is required. String
The component type.
associationType This property is required. string
The association type.
componentId This property is required. string
The identifier of the discovered DB system component.
componentType This property is required. string
The component type.
association_type This property is required. str
The association type.
component_id This property is required. str
The identifier of the discovered DB system component.
component_type This property is required. str
The component type.
associationType This property is required. String
The association type.
componentId This property is required. String
The identifier of the discovered DB system component.
componentType This property is required. String
The component type.

GetExternalDbSystemDiscoveriesExternalDbSystemDiscoveryCollectionItemDiscoveredComponentClusterInstance

AdrHomeDirectory This property is required. string
The Automatic Diagnostic Repository (ADR) home directory for the cluster instance.
ClusterId This property is required. string
The unique identifier of the Oracle cluster.
Connectors This property is required. List<GetExternalDbSystemDiscoveriesExternalDbSystemDiscoveryCollectionItemDiscoveredComponentClusterInstanceConnector>
The connector details used to connect to the external DB system component.
CrsBaseDirectory This property is required. string
The Oracle base location of Cluster Ready Services (CRS).
HostName This property is required. string
The host name of the database or the SCAN name in case of a RAC database.
NodeRole This property is required. string
The role of the cluster node.
AdrHomeDirectory This property is required. string
The Automatic Diagnostic Repository (ADR) home directory for the cluster instance.
ClusterId This property is required. string
The unique identifier of the Oracle cluster.
Connectors This property is required. []GetExternalDbSystemDiscoveriesExternalDbSystemDiscoveryCollectionItemDiscoveredComponentClusterInstanceConnector
The connector details used to connect to the external DB system component.
CrsBaseDirectory This property is required. string
The Oracle base location of Cluster Ready Services (CRS).
HostName This property is required. string
The host name of the database or the SCAN name in case of a RAC database.
NodeRole This property is required. string
The role of the cluster node.
adrHomeDirectory This property is required. String
The Automatic Diagnostic Repository (ADR) home directory for the cluster instance.
clusterId This property is required. String
The unique identifier of the Oracle cluster.
connectors This property is required. List<GetExternalDbSystemDiscoveriesExternalDbSystemDiscoveryCollectionItemDiscoveredComponentClusterInstanceConnector>
The connector details used to connect to the external DB system component.
crsBaseDirectory This property is required. String
The Oracle base location of Cluster Ready Services (CRS).
hostName This property is required. String
The host name of the database or the SCAN name in case of a RAC database.
nodeRole This property is required. String
The role of the cluster node.
adrHomeDirectory This property is required. string
The Automatic Diagnostic Repository (ADR) home directory for the cluster instance.
clusterId This property is required. string
The unique identifier of the Oracle cluster.
connectors This property is required. GetExternalDbSystemDiscoveriesExternalDbSystemDiscoveryCollectionItemDiscoveredComponentClusterInstanceConnector[]
The connector details used to connect to the external DB system component.
crsBaseDirectory This property is required. string
The Oracle base location of Cluster Ready Services (CRS).
hostName This property is required. string
The host name of the database or the SCAN name in case of a RAC database.
nodeRole This property is required. string
The role of the cluster node.
adr_home_directory This property is required. str
The Automatic Diagnostic Repository (ADR) home directory for the cluster instance.
cluster_id This property is required. str
The unique identifier of the Oracle cluster.
connectors This property is required. Sequence[databasemanagement.GetExternalDbSystemDiscoveriesExternalDbSystemDiscoveryCollectionItemDiscoveredComponentClusterInstanceConnector]
The connector details used to connect to the external DB system component.
crs_base_directory This property is required. str
The Oracle base location of Cluster Ready Services (CRS).
host_name This property is required. str
The host name of the database or the SCAN name in case of a RAC database.
node_role This property is required. str
The role of the cluster node.
adrHomeDirectory This property is required. String
The Automatic Diagnostic Repository (ADR) home directory for the cluster instance.
clusterId This property is required. String
The unique identifier of the Oracle cluster.
connectors This property is required. List<Property Map>
The connector details used to connect to the external DB system component.
crsBaseDirectory This property is required. String
The Oracle base location of Cluster Ready Services (CRS).
hostName This property is required. String
The host name of the database or the SCAN name in case of a RAC database.
nodeRole This property is required. String
The role of the cluster node.

GetExternalDbSystemDiscoveriesExternalDbSystemDiscoveryCollectionItemDiscoveredComponentClusterInstanceConnector

AgentId This property is required. string
The OCID of the management agent used for the external DB system connector.
ConnectionFailureMessage This property is required. string
The error message indicating the reason for connection failure or null if the connection was successful.
ConnectionInfos This property is required. List<GetExternalDbSystemDiscoveriesExternalDbSystemDiscoveryCollectionItemDiscoveredComponentClusterInstanceConnectorConnectionInfo>
The connection details required to connect to an external DB system component.
ConnectionStatus This property is required. string
The status of connectivity to the external DB system component.
ConnectorType This property is required. string
The type of connector.
DisplayName This property is required. string
A filter to only return the resources that match the entire display name.
TimeConnectionStatusLastUpdated This property is required. string
The date and time the connectionStatus of the external DB system connector was last updated.
AgentId This property is required. string
The OCID of the management agent used for the external DB system connector.
ConnectionFailureMessage This property is required. string
The error message indicating the reason for connection failure or null if the connection was successful.
ConnectionInfos This property is required. []GetExternalDbSystemDiscoveriesExternalDbSystemDiscoveryCollectionItemDiscoveredComponentClusterInstanceConnectorConnectionInfo
The connection details required to connect to an external DB system component.
ConnectionStatus This property is required. string
The status of connectivity to the external DB system component.
ConnectorType This property is required. string
The type of connector.
DisplayName This property is required. string
A filter to only return the resources that match the entire display name.
TimeConnectionStatusLastUpdated This property is required. string
The date and time the connectionStatus of the external DB system connector was last updated.
agentId This property is required. String
The OCID of the management agent used for the external DB system connector.
connectionFailureMessage This property is required. String
The error message indicating the reason for connection failure or null if the connection was successful.
connectionInfos This property is required. List<GetExternalDbSystemDiscoveriesExternalDbSystemDiscoveryCollectionItemDiscoveredComponentClusterInstanceConnectorConnectionInfo>
The connection details required to connect to an external DB system component.
connectionStatus This property is required. String
The status of connectivity to the external DB system component.
connectorType This property is required. String
The type of connector.
displayName This property is required. String
A filter to only return the resources that match the entire display name.
timeConnectionStatusLastUpdated This property is required. String
The date and time the connectionStatus of the external DB system connector was last updated.
agentId This property is required. string
The OCID of the management agent used for the external DB system connector.
connectionFailureMessage This property is required. string
The error message indicating the reason for connection failure or null if the connection was successful.
connectionInfos This property is required. GetExternalDbSystemDiscoveriesExternalDbSystemDiscoveryCollectionItemDiscoveredComponentClusterInstanceConnectorConnectionInfo[]
The connection details required to connect to an external DB system component.
connectionStatus This property is required. string
The status of connectivity to the external DB system component.
connectorType This property is required. string
The type of connector.
displayName This property is required. string
A filter to only return the resources that match the entire display name.
timeConnectionStatusLastUpdated This property is required. string
The date and time the connectionStatus of the external DB system connector was last updated.
agent_id This property is required. str
The OCID of the management agent used for the external DB system connector.
connection_failure_message This property is required. str
The error message indicating the reason for connection failure or null if the connection was successful.
connection_infos This property is required. Sequence[databasemanagement.GetExternalDbSystemDiscoveriesExternalDbSystemDiscoveryCollectionItemDiscoveredComponentClusterInstanceConnectorConnectionInfo]
The connection details required to connect to an external DB system component.
connection_status This property is required. str
The status of connectivity to the external DB system component.
connector_type This property is required. str
The type of connector.
display_name This property is required. str
A filter to only return the resources that match the entire display name.
time_connection_status_last_updated This property is required. str
The date and time the connectionStatus of the external DB system connector was last updated.
agentId This property is required. String
The OCID of the management agent used for the external DB system connector.
connectionFailureMessage This property is required. String
The error message indicating the reason for connection failure or null if the connection was successful.
connectionInfos This property is required. List<Property Map>
The connection details required to connect to an external DB system component.
connectionStatus This property is required. String
The status of connectivity to the external DB system component.
connectorType This property is required. String
The type of connector.
displayName This property is required. String
A filter to only return the resources that match the entire display name.
timeConnectionStatusLastUpdated This property is required. String
The date and time the connectionStatus of the external DB system connector was last updated.

GetExternalDbSystemDiscoveriesExternalDbSystemDiscoveryCollectionItemDiscoveredComponentClusterInstanceConnectorConnectionInfo

ComponentType This property is required. string
The component type.
ConnectionCredentials This property is required. List<GetExternalDbSystemDiscoveriesExternalDbSystemDiscoveryCollectionItemDiscoveredComponentClusterInstanceConnectorConnectionInfoConnectionCredential>
The credentials used to connect to the ASM instance. Currently only the DETAILS type is supported for creating MACS connector credentials.
ConnectionStrings This property is required. List<GetExternalDbSystemDiscoveriesExternalDbSystemDiscoveryCollectionItemDiscoveredComponentClusterInstanceConnectorConnectionInfoConnectionString>
The Oracle Database connection string.
DatabaseCredentials This property is required. List<GetExternalDbSystemDiscoveriesExternalDbSystemDiscoveryCollectionItemDiscoveredComponentClusterInstanceConnectorConnectionInfoDatabaseCredential>
The credential to connect to the database to perform tablespace administration tasks.
ComponentType This property is required. string
The component type.
ConnectionCredentials This property is required. []GetExternalDbSystemDiscoveriesExternalDbSystemDiscoveryCollectionItemDiscoveredComponentClusterInstanceConnectorConnectionInfoConnectionCredential
The credentials used to connect to the ASM instance. Currently only the DETAILS type is supported for creating MACS connector credentials.
ConnectionStrings This property is required. []GetExternalDbSystemDiscoveriesExternalDbSystemDiscoveryCollectionItemDiscoveredComponentClusterInstanceConnectorConnectionInfoConnectionString
The Oracle Database connection string.
DatabaseCredentials This property is required. []GetExternalDbSystemDiscoveriesExternalDbSystemDiscoveryCollectionItemDiscoveredComponentClusterInstanceConnectorConnectionInfoDatabaseCredential
The credential to connect to the database to perform tablespace administration tasks.
componentType This property is required. String
The component type.
connectionCredentials This property is required. List<GetExternalDbSystemDiscoveriesExternalDbSystemDiscoveryCollectionItemDiscoveredComponentClusterInstanceConnectorConnectionInfoConnectionCredential>
The credentials used to connect to the ASM instance. Currently only the DETAILS type is supported for creating MACS connector credentials.
connectionStrings This property is required. List<GetExternalDbSystemDiscoveriesExternalDbSystemDiscoveryCollectionItemDiscoveredComponentClusterInstanceConnectorConnectionInfoConnectionString>
The Oracle Database connection string.
databaseCredentials This property is required. List<GetExternalDbSystemDiscoveriesExternalDbSystemDiscoveryCollectionItemDiscoveredComponentClusterInstanceConnectorConnectionInfoDatabaseCredential>
The credential to connect to the database to perform tablespace administration tasks.
componentType This property is required. string
The component type.
connectionCredentials This property is required. GetExternalDbSystemDiscoveriesExternalDbSystemDiscoveryCollectionItemDiscoveredComponentClusterInstanceConnectorConnectionInfoConnectionCredential[]
The credentials used to connect to the ASM instance. Currently only the DETAILS type is supported for creating MACS connector credentials.
connectionStrings This property is required. GetExternalDbSystemDiscoveriesExternalDbSystemDiscoveryCollectionItemDiscoveredComponentClusterInstanceConnectorConnectionInfoConnectionString[]
The Oracle Database connection string.
databaseCredentials This property is required. GetExternalDbSystemDiscoveriesExternalDbSystemDiscoveryCollectionItemDiscoveredComponentClusterInstanceConnectorConnectionInfoDatabaseCredential[]
The credential to connect to the database to perform tablespace administration tasks.
component_type This property is required. str
The component type.
connection_credentials This property is required. Sequence[databasemanagement.GetExternalDbSystemDiscoveriesExternalDbSystemDiscoveryCollectionItemDiscoveredComponentClusterInstanceConnectorConnectionInfoConnectionCredential]
The credentials used to connect to the ASM instance. Currently only the DETAILS type is supported for creating MACS connector credentials.
connection_strings This property is required. Sequence[databasemanagement.GetExternalDbSystemDiscoveriesExternalDbSystemDiscoveryCollectionItemDiscoveredComponentClusterInstanceConnectorConnectionInfoConnectionString]
The Oracle Database connection string.
database_credentials This property is required. Sequence[databasemanagement.GetExternalDbSystemDiscoveriesExternalDbSystemDiscoveryCollectionItemDiscoveredComponentClusterInstanceConnectorConnectionInfoDatabaseCredential]
The credential to connect to the database to perform tablespace administration tasks.
componentType This property is required. String
The component type.
connectionCredentials This property is required. List<Property Map>
The credentials used to connect to the ASM instance. Currently only the DETAILS type is supported for creating MACS connector credentials.
connectionStrings This property is required. List<Property Map>
The Oracle Database connection string.
databaseCredentials This property is required. List<Property Map>
The credential to connect to the database to perform tablespace administration tasks.

GetExternalDbSystemDiscoveriesExternalDbSystemDiscoveryCollectionItemDiscoveredComponentClusterInstanceConnectorConnectionInfoConnectionCredential

CredentialName This property is required. string
The name of the credential information that used to connect to the DB system resource. The name should be in "x.y" format, where the length of "x" has a maximum of 64 characters, and length of "y" has a maximum of 199 characters. The name strings can contain letters, numbers and the underscore character only. Other characters are not valid, except for the "." character that separates the "x" and "y" portions of the name. IMPORTANT - The name must be unique within the Oracle Cloud Infrastructure region the credential is being created in. If you specify a name that duplicates the name of another credential within the same Oracle Cloud Infrastructure region, you may overwrite or corrupt the credential that is already using the name.
CredentialType This property is required. string
The type of the credential for tablespace administration tasks.
NamedCredentialId This property is required. string
The OCID of the named credential where the database password metadata is stored.
PasswordSecretId This property is required. string
The OCID of the Secret where the database password is stored.
Role This property is required. string
The role of the database user.
SslSecretId This property is required. string
The OCID of the secret containing the SSL keystore and truststore details.
UserName This property is required. string
The user name used to connect to the ASM instance.
CredentialName This property is required. string
The name of the credential information that used to connect to the DB system resource. The name should be in "x.y" format, where the length of "x" has a maximum of 64 characters, and length of "y" has a maximum of 199 characters. The name strings can contain letters, numbers and the underscore character only. Other characters are not valid, except for the "." character that separates the "x" and "y" portions of the name. IMPORTANT - The name must be unique within the Oracle Cloud Infrastructure region the credential is being created in. If you specify a name that duplicates the name of another credential within the same Oracle Cloud Infrastructure region, you may overwrite or corrupt the credential that is already using the name.
CredentialType This property is required. string
The type of the credential for tablespace administration tasks.
NamedCredentialId This property is required. string
The OCID of the named credential where the database password metadata is stored.
PasswordSecretId This property is required. string
The OCID of the Secret where the database password is stored.
Role This property is required. string
The role of the database user.
SslSecretId This property is required. string
The OCID of the secret containing the SSL keystore and truststore details.
UserName This property is required. string
The user name used to connect to the ASM instance.
credentialName This property is required. String
The name of the credential information that used to connect to the DB system resource. The name should be in "x.y" format, where the length of "x" has a maximum of 64 characters, and length of "y" has a maximum of 199 characters. The name strings can contain letters, numbers and the underscore character only. Other characters are not valid, except for the "." character that separates the "x" and "y" portions of the name. IMPORTANT - The name must be unique within the Oracle Cloud Infrastructure region the credential is being created in. If you specify a name that duplicates the name of another credential within the same Oracle Cloud Infrastructure region, you may overwrite or corrupt the credential that is already using the name.
credentialType This property is required. String
The type of the credential for tablespace administration tasks.
namedCredentialId This property is required. String
The OCID of the named credential where the database password metadata is stored.
passwordSecretId This property is required. String
The OCID of the Secret where the database password is stored.
role This property is required. String
The role of the database user.
sslSecretId This property is required. String
The OCID of the secret containing the SSL keystore and truststore details.
userName This property is required. String
The user name used to connect to the ASM instance.
credentialName This property is required. string
The name of the credential information that used to connect to the DB system resource. The name should be in "x.y" format, where the length of "x" has a maximum of 64 characters, and length of "y" has a maximum of 199 characters. The name strings can contain letters, numbers and the underscore character only. Other characters are not valid, except for the "." character that separates the "x" and "y" portions of the name. IMPORTANT - The name must be unique within the Oracle Cloud Infrastructure region the credential is being created in. If you specify a name that duplicates the name of another credential within the same Oracle Cloud Infrastructure region, you may overwrite or corrupt the credential that is already using the name.
credentialType This property is required. string
The type of the credential for tablespace administration tasks.
namedCredentialId This property is required. string
The OCID of the named credential where the database password metadata is stored.
passwordSecretId This property is required. string
The OCID of the Secret where the database password is stored.
role This property is required. string
The role of the database user.
sslSecretId This property is required. string
The OCID of the secret containing the SSL keystore and truststore details.
userName This property is required. string
The user name used to connect to the ASM instance.
credential_name This property is required. str
The name of the credential information that used to connect to the DB system resource. The name should be in "x.y" format, where the length of "x" has a maximum of 64 characters, and length of "y" has a maximum of 199 characters. The name strings can contain letters, numbers and the underscore character only. Other characters are not valid, except for the "." character that separates the "x" and "y" portions of the name. IMPORTANT - The name must be unique within the Oracle Cloud Infrastructure region the credential is being created in. If you specify a name that duplicates the name of another credential within the same Oracle Cloud Infrastructure region, you may overwrite or corrupt the credential that is already using the name.
credential_type This property is required. str
The type of the credential for tablespace administration tasks.
named_credential_id This property is required. str
The OCID of the named credential where the database password metadata is stored.
password_secret_id This property is required. str
The OCID of the Secret where the database password is stored.
role This property is required. str
The role of the database user.
ssl_secret_id This property is required. str
The OCID of the secret containing the SSL keystore and truststore details.
user_name This property is required. str
The user name used to connect to the ASM instance.
credentialName This property is required. String
The name of the credential information that used to connect to the DB system resource. The name should be in "x.y" format, where the length of "x" has a maximum of 64 characters, and length of "y" has a maximum of 199 characters. The name strings can contain letters, numbers and the underscore character only. Other characters are not valid, except for the "." character that separates the "x" and "y" portions of the name. IMPORTANT - The name must be unique within the Oracle Cloud Infrastructure region the credential is being created in. If you specify a name that duplicates the name of another credential within the same Oracle Cloud Infrastructure region, you may overwrite or corrupt the credential that is already using the name.
credentialType This property is required. String
The type of the credential for tablespace administration tasks.
namedCredentialId This property is required. String
The OCID of the named credential where the database password metadata is stored.
passwordSecretId This property is required. String
The OCID of the Secret where the database password is stored.
role This property is required. String
The role of the database user.
sslSecretId This property is required. String
The OCID of the secret containing the SSL keystore and truststore details.
userName This property is required. String
The user name used to connect to the ASM instance.

GetExternalDbSystemDiscoveriesExternalDbSystemDiscoveryCollectionItemDiscoveredComponentClusterInstanceConnectorConnectionInfoConnectionString

HostName This property is required. string
The host name of the database or the SCAN name in case of a RAC database.
Hosts This property is required. List<string>
The list of host names of the ASM instances.
Port This property is required. int
The port used to connect to the ASM instance.
Protocol This property is required. string
The protocol used to connect to the ASM instance.
Service This property is required. string
The service name of the ASM instance.
HostName This property is required. string
The host name of the database or the SCAN name in case of a RAC database.
Hosts This property is required. []string
The list of host names of the ASM instances.
Port This property is required. int
The port used to connect to the ASM instance.
Protocol This property is required. string
The protocol used to connect to the ASM instance.
Service This property is required. string
The service name of the ASM instance.
hostName This property is required. String
The host name of the database or the SCAN name in case of a RAC database.
hosts This property is required. List<String>
The list of host names of the ASM instances.
port This property is required. Integer
The port used to connect to the ASM instance.
protocol This property is required. String
The protocol used to connect to the ASM instance.
service This property is required. String
The service name of the ASM instance.
hostName This property is required. string
The host name of the database or the SCAN name in case of a RAC database.
hosts This property is required. string[]
The list of host names of the ASM instances.
port This property is required. number
The port used to connect to the ASM instance.
protocol This property is required. string
The protocol used to connect to the ASM instance.
service This property is required. string
The service name of the ASM instance.
host_name This property is required. str
The host name of the database or the SCAN name in case of a RAC database.
hosts This property is required. Sequence[str]
The list of host names of the ASM instances.
port This property is required. int
The port used to connect to the ASM instance.
protocol This property is required. str
The protocol used to connect to the ASM instance.
service This property is required. str
The service name of the ASM instance.
hostName This property is required. String
The host name of the database or the SCAN name in case of a RAC database.
hosts This property is required. List<String>
The list of host names of the ASM instances.
port This property is required. Number
The port used to connect to the ASM instance.
protocol This property is required. String
The protocol used to connect to the ASM instance.
service This property is required. String
The service name of the ASM instance.

GetExternalDbSystemDiscoveriesExternalDbSystemDiscoveryCollectionItemDiscoveredComponentClusterInstanceConnectorConnectionInfoDatabaseCredential

CredentialType This property is required. string
The type of the credential for tablespace administration tasks.
NamedCredentialId This property is required. string
The OCID of the named credential where the database password metadata is stored.
Password This property is required. string
The database user's password encoded using BASE64 scheme.
PasswordSecretId This property is required. string
The OCID of the Secret where the database password is stored.
Role This property is required. string
The role of the database user.
Username This property is required. string
The user to connect to the database.
CredentialType This property is required. string
The type of the credential for tablespace administration tasks.
NamedCredentialId This property is required. string
The OCID of the named credential where the database password metadata is stored.
Password This property is required. string
The database user's password encoded using BASE64 scheme.
PasswordSecretId This property is required. string
The OCID of the Secret where the database password is stored.
Role This property is required. string
The role of the database user.
Username This property is required. string
The user to connect to the database.
credentialType This property is required. String
The type of the credential for tablespace administration tasks.
namedCredentialId This property is required. String
The OCID of the named credential where the database password metadata is stored.
password This property is required. String
The database user's password encoded using BASE64 scheme.
passwordSecretId This property is required. String
The OCID of the Secret where the database password is stored.
role This property is required. String
The role of the database user.
username This property is required. String
The user to connect to the database.
credentialType This property is required. string
The type of the credential for tablespace administration tasks.
namedCredentialId This property is required. string
The OCID of the named credential where the database password metadata is stored.
password This property is required. string
The database user's password encoded using BASE64 scheme.
passwordSecretId This property is required. string
The OCID of the Secret where the database password is stored.
role This property is required. string
The role of the database user.
username This property is required. string
The user to connect to the database.
credential_type This property is required. str
The type of the credential for tablespace administration tasks.
named_credential_id This property is required. str
The OCID of the named credential where the database password metadata is stored.
password This property is required. str
The database user's password encoded using BASE64 scheme.
password_secret_id This property is required. str
The OCID of the Secret where the database password is stored.
role This property is required. str
The role of the database user.
username This property is required. str
The user to connect to the database.
credentialType This property is required. String
The type of the credential for tablespace administration tasks.
namedCredentialId This property is required. String
The OCID of the named credential where the database password metadata is stored.
password This property is required. String
The database user's password encoded using BASE64 scheme.
passwordSecretId This property is required. String
The OCID of the Secret where the database password is stored.
role This property is required. String
The role of the database user.
username This property is required. String
The user to connect to the database.

GetExternalDbSystemDiscoveriesExternalDbSystemDiscoveryCollectionItemDiscoveredComponentConnector

AgentId This property is required. string
The OCID of the management agent used for the external DB system connector.
ConnectionFailureMessage This property is required. string
The error message indicating the reason for connection failure or null if the connection was successful.
ConnectionInfos This property is required. List<GetExternalDbSystemDiscoveriesExternalDbSystemDiscoveryCollectionItemDiscoveredComponentConnectorConnectionInfo>
The connection details required to connect to an external DB system component.
ConnectionStatus This property is required. string
The status of connectivity to the external DB system component.
ConnectorType This property is required. string
The type of connector.
DisplayName This property is required. string
A filter to only return the resources that match the entire display name.
TimeConnectionStatusLastUpdated This property is required. string
The date and time the connectionStatus of the external DB system connector was last updated.
AgentId This property is required. string
The OCID of the management agent used for the external DB system connector.
ConnectionFailureMessage This property is required. string
The error message indicating the reason for connection failure or null if the connection was successful.
ConnectionInfos This property is required. []GetExternalDbSystemDiscoveriesExternalDbSystemDiscoveryCollectionItemDiscoveredComponentConnectorConnectionInfo
The connection details required to connect to an external DB system component.
ConnectionStatus This property is required. string
The status of connectivity to the external DB system component.
ConnectorType This property is required. string
The type of connector.
DisplayName This property is required. string
A filter to only return the resources that match the entire display name.
TimeConnectionStatusLastUpdated This property is required. string
The date and time the connectionStatus of the external DB system connector was last updated.
agentId This property is required. String
The OCID of the management agent used for the external DB system connector.
connectionFailureMessage This property is required. String
The error message indicating the reason for connection failure or null if the connection was successful.
connectionInfos This property is required. List<GetExternalDbSystemDiscoveriesExternalDbSystemDiscoveryCollectionItemDiscoveredComponentConnectorConnectionInfo>
The connection details required to connect to an external DB system component.
connectionStatus This property is required. String
The status of connectivity to the external DB system component.
connectorType This property is required. String
The type of connector.
displayName This property is required. String
A filter to only return the resources that match the entire display name.
timeConnectionStatusLastUpdated This property is required. String
The date and time the connectionStatus of the external DB system connector was last updated.
agentId This property is required. string
The OCID of the management agent used for the external DB system connector.
connectionFailureMessage This property is required. string
The error message indicating the reason for connection failure or null if the connection was successful.
connectionInfos This property is required. GetExternalDbSystemDiscoveriesExternalDbSystemDiscoveryCollectionItemDiscoveredComponentConnectorConnectionInfo[]
The connection details required to connect to an external DB system component.
connectionStatus This property is required. string
The status of connectivity to the external DB system component.
connectorType This property is required. string
The type of connector.
displayName This property is required. string
A filter to only return the resources that match the entire display name.
timeConnectionStatusLastUpdated This property is required. string
The date and time the connectionStatus of the external DB system connector was last updated.
agent_id This property is required. str
The OCID of the management agent used for the external DB system connector.
connection_failure_message This property is required. str
The error message indicating the reason for connection failure or null if the connection was successful.
connection_infos This property is required. Sequence[databasemanagement.GetExternalDbSystemDiscoveriesExternalDbSystemDiscoveryCollectionItemDiscoveredComponentConnectorConnectionInfo]
The connection details required to connect to an external DB system component.
connection_status This property is required. str
The status of connectivity to the external DB system component.
connector_type This property is required. str
The type of connector.
display_name This property is required. str
A filter to only return the resources that match the entire display name.
time_connection_status_last_updated This property is required. str
The date and time the connectionStatus of the external DB system connector was last updated.
agentId This property is required. String
The OCID of the management agent used for the external DB system connector.
connectionFailureMessage This property is required. String
The error message indicating the reason for connection failure or null if the connection was successful.
connectionInfos This property is required. List<Property Map>
The connection details required to connect to an external DB system component.
connectionStatus This property is required. String
The status of connectivity to the external DB system component.
connectorType This property is required. String
The type of connector.
displayName This property is required. String
A filter to only return the resources that match the entire display name.
timeConnectionStatusLastUpdated This property is required. String
The date and time the connectionStatus of the external DB system connector was last updated.

GetExternalDbSystemDiscoveriesExternalDbSystemDiscoveryCollectionItemDiscoveredComponentConnectorConnectionInfo

ComponentType This property is required. string
The component type.
ConnectionCredentials This property is required. List<GetExternalDbSystemDiscoveriesExternalDbSystemDiscoveryCollectionItemDiscoveredComponentConnectorConnectionInfoConnectionCredential>
The credentials used to connect to the ASM instance. Currently only the DETAILS type is supported for creating MACS connector credentials.
ConnectionStrings This property is required. List<GetExternalDbSystemDiscoveriesExternalDbSystemDiscoveryCollectionItemDiscoveredComponentConnectorConnectionInfoConnectionString>
The Oracle Database connection string.
DatabaseCredentials This property is required. List<GetExternalDbSystemDiscoveriesExternalDbSystemDiscoveryCollectionItemDiscoveredComponentConnectorConnectionInfoDatabaseCredential>
The credential to connect to the database to perform tablespace administration tasks.
ComponentType This property is required. string
The component type.
ConnectionCredentials This property is required. []GetExternalDbSystemDiscoveriesExternalDbSystemDiscoveryCollectionItemDiscoveredComponentConnectorConnectionInfoConnectionCredential
The credentials used to connect to the ASM instance. Currently only the DETAILS type is supported for creating MACS connector credentials.
ConnectionStrings This property is required. []GetExternalDbSystemDiscoveriesExternalDbSystemDiscoveryCollectionItemDiscoveredComponentConnectorConnectionInfoConnectionString
The Oracle Database connection string.
DatabaseCredentials This property is required. []GetExternalDbSystemDiscoveriesExternalDbSystemDiscoveryCollectionItemDiscoveredComponentConnectorConnectionInfoDatabaseCredential
The credential to connect to the database to perform tablespace administration tasks.
componentType This property is required. String
The component type.
connectionCredentials This property is required. List<GetExternalDbSystemDiscoveriesExternalDbSystemDiscoveryCollectionItemDiscoveredComponentConnectorConnectionInfoConnectionCredential>
The credentials used to connect to the ASM instance. Currently only the DETAILS type is supported for creating MACS connector credentials.
connectionStrings This property is required. List<GetExternalDbSystemDiscoveriesExternalDbSystemDiscoveryCollectionItemDiscoveredComponentConnectorConnectionInfoConnectionString>
The Oracle Database connection string.
databaseCredentials This property is required. List<GetExternalDbSystemDiscoveriesExternalDbSystemDiscoveryCollectionItemDiscoveredComponentConnectorConnectionInfoDatabaseCredential>
The credential to connect to the database to perform tablespace administration tasks.
componentType This property is required. string
The component type.
connectionCredentials This property is required. GetExternalDbSystemDiscoveriesExternalDbSystemDiscoveryCollectionItemDiscoveredComponentConnectorConnectionInfoConnectionCredential[]
The credentials used to connect to the ASM instance. Currently only the DETAILS type is supported for creating MACS connector credentials.
connectionStrings This property is required. GetExternalDbSystemDiscoveriesExternalDbSystemDiscoveryCollectionItemDiscoveredComponentConnectorConnectionInfoConnectionString[]
The Oracle Database connection string.
databaseCredentials This property is required. GetExternalDbSystemDiscoveriesExternalDbSystemDiscoveryCollectionItemDiscoveredComponentConnectorConnectionInfoDatabaseCredential[]
The credential to connect to the database to perform tablespace administration tasks.
component_type This property is required. str
The component type.
connection_credentials This property is required. Sequence[databasemanagement.GetExternalDbSystemDiscoveriesExternalDbSystemDiscoveryCollectionItemDiscoveredComponentConnectorConnectionInfoConnectionCredential]
The credentials used to connect to the ASM instance. Currently only the DETAILS type is supported for creating MACS connector credentials.
connection_strings This property is required. Sequence[databasemanagement.GetExternalDbSystemDiscoveriesExternalDbSystemDiscoveryCollectionItemDiscoveredComponentConnectorConnectionInfoConnectionString]
The Oracle Database connection string.
database_credentials This property is required. Sequence[databasemanagement.GetExternalDbSystemDiscoveriesExternalDbSystemDiscoveryCollectionItemDiscoveredComponentConnectorConnectionInfoDatabaseCredential]
The credential to connect to the database to perform tablespace administration tasks.
componentType This property is required. String
The component type.
connectionCredentials This property is required. List<Property Map>
The credentials used to connect to the ASM instance. Currently only the DETAILS type is supported for creating MACS connector credentials.
connectionStrings This property is required. List<Property Map>
The Oracle Database connection string.
databaseCredentials This property is required. List<Property Map>
The credential to connect to the database to perform tablespace administration tasks.

GetExternalDbSystemDiscoveriesExternalDbSystemDiscoveryCollectionItemDiscoveredComponentConnectorConnectionInfoConnectionCredential

CredentialName This property is required. string
The name of the credential information that used to connect to the DB system resource. The name should be in "x.y" format, where the length of "x" has a maximum of 64 characters, and length of "y" has a maximum of 199 characters. The name strings can contain letters, numbers and the underscore character only. Other characters are not valid, except for the "." character that separates the "x" and "y" portions of the name. IMPORTANT - The name must be unique within the Oracle Cloud Infrastructure region the credential is being created in. If you specify a name that duplicates the name of another credential within the same Oracle Cloud Infrastructure region, you may overwrite or corrupt the credential that is already using the name.
CredentialType This property is required. string
The type of the credential for tablespace administration tasks.
NamedCredentialId This property is required. string
The OCID of the named credential where the database password metadata is stored.
PasswordSecretId This property is required. string
The OCID of the Secret where the database password is stored.
Role This property is required. string
The role of the database user.
SslSecretId This property is required. string
The OCID of the secret containing the SSL keystore and truststore details.
UserName This property is required. string
The user name used to connect to the ASM instance.
CredentialName This property is required. string
The name of the credential information that used to connect to the DB system resource. The name should be in "x.y" format, where the length of "x" has a maximum of 64 characters, and length of "y" has a maximum of 199 characters. The name strings can contain letters, numbers and the underscore character only. Other characters are not valid, except for the "." character that separates the "x" and "y" portions of the name. IMPORTANT - The name must be unique within the Oracle Cloud Infrastructure region the credential is being created in. If you specify a name that duplicates the name of another credential within the same Oracle Cloud Infrastructure region, you may overwrite or corrupt the credential that is already using the name.
CredentialType This property is required. string
The type of the credential for tablespace administration tasks.
NamedCredentialId This property is required. string
The OCID of the named credential where the database password metadata is stored.
PasswordSecretId This property is required. string
The OCID of the Secret where the database password is stored.
Role This property is required. string
The role of the database user.
SslSecretId This property is required. string
The OCID of the secret containing the SSL keystore and truststore details.
UserName This property is required. string
The user name used to connect to the ASM instance.
credentialName This property is required. String
The name of the credential information that used to connect to the DB system resource. The name should be in "x.y" format, where the length of "x" has a maximum of 64 characters, and length of "y" has a maximum of 199 characters. The name strings can contain letters, numbers and the underscore character only. Other characters are not valid, except for the "." character that separates the "x" and "y" portions of the name. IMPORTANT - The name must be unique within the Oracle Cloud Infrastructure region the credential is being created in. If you specify a name that duplicates the name of another credential within the same Oracle Cloud Infrastructure region, you may overwrite or corrupt the credential that is already using the name.
credentialType This property is required. String
The type of the credential for tablespace administration tasks.
namedCredentialId This property is required. String
The OCID of the named credential where the database password metadata is stored.
passwordSecretId This property is required. String
The OCID of the Secret where the database password is stored.
role This property is required. String
The role of the database user.
sslSecretId This property is required. String
The OCID of the secret containing the SSL keystore and truststore details.
userName This property is required. String
The user name used to connect to the ASM instance.
credentialName This property is required. string
The name of the credential information that used to connect to the DB system resource. The name should be in "x.y" format, where the length of "x" has a maximum of 64 characters, and length of "y" has a maximum of 199 characters. The name strings can contain letters, numbers and the underscore character only. Other characters are not valid, except for the "." character that separates the "x" and "y" portions of the name. IMPORTANT - The name must be unique within the Oracle Cloud Infrastructure region the credential is being created in. If you specify a name that duplicates the name of another credential within the same Oracle Cloud Infrastructure region, you may overwrite or corrupt the credential that is already using the name.
credentialType This property is required. string
The type of the credential for tablespace administration tasks.
namedCredentialId This property is required. string
The OCID of the named credential where the database password metadata is stored.
passwordSecretId This property is required. string
The OCID of the Secret where the database password is stored.
role This property is required. string
The role of the database user.
sslSecretId This property is required. string
The OCID of the secret containing the SSL keystore and truststore details.
userName This property is required. string
The user name used to connect to the ASM instance.
credential_name This property is required. str
The name of the credential information that used to connect to the DB system resource. The name should be in "x.y" format, where the length of "x" has a maximum of 64 characters, and length of "y" has a maximum of 199 characters. The name strings can contain letters, numbers and the underscore character only. Other characters are not valid, except for the "." character that separates the "x" and "y" portions of the name. IMPORTANT - The name must be unique within the Oracle Cloud Infrastructure region the credential is being created in. If you specify a name that duplicates the name of another credential within the same Oracle Cloud Infrastructure region, you may overwrite or corrupt the credential that is already using the name.
credential_type This property is required. str
The type of the credential for tablespace administration tasks.
named_credential_id This property is required. str
The OCID of the named credential where the database password metadata is stored.
password_secret_id This property is required. str
The OCID of the Secret where the database password is stored.
role This property is required. str
The role of the database user.
ssl_secret_id This property is required. str
The OCID of the secret containing the SSL keystore and truststore details.
user_name This property is required. str
The user name used to connect to the ASM instance.
credentialName This property is required. String
The name of the credential information that used to connect to the DB system resource. The name should be in "x.y" format, where the length of "x" has a maximum of 64 characters, and length of "y" has a maximum of 199 characters. The name strings can contain letters, numbers and the underscore character only. Other characters are not valid, except for the "." character that separates the "x" and "y" portions of the name. IMPORTANT - The name must be unique within the Oracle Cloud Infrastructure region the credential is being created in. If you specify a name that duplicates the name of another credential within the same Oracle Cloud Infrastructure region, you may overwrite or corrupt the credential that is already using the name.
credentialType This property is required. String
The type of the credential for tablespace administration tasks.
namedCredentialId This property is required. String
The OCID of the named credential where the database password metadata is stored.
passwordSecretId This property is required. String
The OCID of the Secret where the database password is stored.
role This property is required. String
The role of the database user.
sslSecretId This property is required. String
The OCID of the secret containing the SSL keystore and truststore details.
userName This property is required. String
The user name used to connect to the ASM instance.

GetExternalDbSystemDiscoveriesExternalDbSystemDiscoveryCollectionItemDiscoveredComponentConnectorConnectionInfoConnectionString

HostName This property is required. string
The host name of the database or the SCAN name in case of a RAC database.
Hosts This property is required. List<string>
The list of host names of the ASM instances.
Port This property is required. int
The port used to connect to the ASM instance.
Protocol This property is required. string
The protocol used to connect to the ASM instance.
Service This property is required. string
The service name of the ASM instance.
HostName This property is required. string
The host name of the database or the SCAN name in case of a RAC database.
Hosts This property is required. []string
The list of host names of the ASM instances.
Port This property is required. int
The port used to connect to the ASM instance.
Protocol This property is required. string
The protocol used to connect to the ASM instance.
Service This property is required. string
The service name of the ASM instance.
hostName This property is required. String
The host name of the database or the SCAN name in case of a RAC database.
hosts This property is required. List<String>
The list of host names of the ASM instances.
port This property is required. Integer
The port used to connect to the ASM instance.
protocol This property is required. String
The protocol used to connect to the ASM instance.
service This property is required. String
The service name of the ASM instance.
hostName This property is required. string
The host name of the database or the SCAN name in case of a RAC database.
hosts This property is required. string[]
The list of host names of the ASM instances.
port This property is required. number
The port used to connect to the ASM instance.
protocol This property is required. string
The protocol used to connect to the ASM instance.
service This property is required. string
The service name of the ASM instance.
host_name This property is required. str
The host name of the database or the SCAN name in case of a RAC database.
hosts This property is required. Sequence[str]
The list of host names of the ASM instances.
port This property is required. int
The port used to connect to the ASM instance.
protocol This property is required. str
The protocol used to connect to the ASM instance.
service This property is required. str
The service name of the ASM instance.
hostName This property is required. String
The host name of the database or the SCAN name in case of a RAC database.
hosts This property is required. List<String>
The list of host names of the ASM instances.
port This property is required. Number
The port used to connect to the ASM instance.
protocol This property is required. String
The protocol used to connect to the ASM instance.
service This property is required. String
The service name of the ASM instance.

GetExternalDbSystemDiscoveriesExternalDbSystemDiscoveryCollectionItemDiscoveredComponentConnectorConnectionInfoDatabaseCredential

CredentialType This property is required. string
The type of the credential for tablespace administration tasks.
NamedCredentialId This property is required. string
The OCID of the named credential where the database password metadata is stored.
Password This property is required. string
The database user's password encoded using BASE64 scheme.
PasswordSecretId This property is required. string
The OCID of the Secret where the database password is stored.
Role This property is required. string
The role of the database user.
Username This property is required. string
The user to connect to the database.
CredentialType This property is required. string
The type of the credential for tablespace administration tasks.
NamedCredentialId This property is required. string
The OCID of the named credential where the database password metadata is stored.
Password This property is required. string
The database user's password encoded using BASE64 scheme.
PasswordSecretId This property is required. string
The OCID of the Secret where the database password is stored.
Role This property is required. string
The role of the database user.
Username This property is required. string
The user to connect to the database.
credentialType This property is required. String
The type of the credential for tablespace administration tasks.
namedCredentialId This property is required. String
The OCID of the named credential where the database password metadata is stored.
password This property is required. String
The database user's password encoded using BASE64 scheme.
passwordSecretId This property is required. String
The OCID of the Secret where the database password is stored.
role This property is required. String
The role of the database user.
username This property is required. String
The user to connect to the database.
credentialType This property is required. string
The type of the credential for tablespace administration tasks.
namedCredentialId This property is required. string
The OCID of the named credential where the database password metadata is stored.
password This property is required. string
The database user's password encoded using BASE64 scheme.
passwordSecretId This property is required. string
The OCID of the Secret where the database password is stored.
role This property is required. string
The role of the database user.
username This property is required. string
The user to connect to the database.
credential_type This property is required. str
The type of the credential for tablespace administration tasks.
named_credential_id This property is required. str
The OCID of the named credential where the database password metadata is stored.
password This property is required. str
The database user's password encoded using BASE64 scheme.
password_secret_id This property is required. str
The OCID of the Secret where the database password is stored.
role This property is required. str
The role of the database user.
username This property is required. str
The user to connect to the database.
credentialType This property is required. String
The type of the credential for tablespace administration tasks.
namedCredentialId This property is required. String
The OCID of the named credential where the database password metadata is stored.
password This property is required. String
The database user's password encoded using BASE64 scheme.
passwordSecretId This property is required. String
The OCID of the Secret where the database password is stored.
role This property is required. String
The role of the database user.
username This property is required. String
The user to connect to the database.

GetExternalDbSystemDiscoveriesExternalDbSystemDiscoveryCollectionItemDiscoveredComponentEndpoint

Host This property is required. string
The host name or IP address.
Key This property is required. string
The unique name of the service.
Port This property is required. int
The port used to connect to the ASM instance.
Protocol This property is required. string
The protocol used to connect to the ASM instance.
Services This property is required. List<string>
The list of services registered with the listener.
Host This property is required. string
The host name or IP address.
Key This property is required. string
The unique name of the service.
Port This property is required. int
The port used to connect to the ASM instance.
Protocol This property is required. string
The protocol used to connect to the ASM instance.
Services This property is required. []string
The list of services registered with the listener.
host This property is required. String
The host name or IP address.
key This property is required. String
The unique name of the service.
port This property is required. Integer
The port used to connect to the ASM instance.
protocol This property is required. String
The protocol used to connect to the ASM instance.
services This property is required. List<String>
The list of services registered with the listener.
host This property is required. string
The host name or IP address.
key This property is required. string
The unique name of the service.
port This property is required. number
The port used to connect to the ASM instance.
protocol This property is required. string
The protocol used to connect to the ASM instance.
services This property is required. string[]
The list of services registered with the listener.
host This property is required. str
The host name or IP address.
key This property is required. str
The unique name of the service.
port This property is required. int
The port used to connect to the ASM instance.
protocol This property is required. str
The protocol used to connect to the ASM instance.
services This property is required. Sequence[str]
The list of services registered with the listener.
host This property is required. String
The host name or IP address.
key This property is required. String
The unique name of the service.
port This property is required. Number
The port used to connect to the ASM instance.
protocol This property is required. String
The protocol used to connect to the ASM instance.
services This property is required. List<String>
The list of services registered with the listener.

GetExternalDbSystemDiscoveriesExternalDbSystemDiscoveryCollectionItemDiscoveredComponentNetworkConfiguration

NetworkNumber This property is required. int
The network number from which VIPs are obtained.
NetworkType This property is required. string
The network type.
Subnet This property is required. string
The subnet for the network.
NetworkNumber This property is required. int
The network number from which VIPs are obtained.
NetworkType This property is required. string
The network type.
Subnet This property is required. string
The subnet for the network.
networkNumber This property is required. Integer
The network number from which VIPs are obtained.
networkType This property is required. String
The network type.
subnet This property is required. String
The subnet for the network.
networkNumber This property is required. number
The network number from which VIPs are obtained.
networkType This property is required. string
The network type.
subnet This property is required. string
The subnet for the network.
network_number This property is required. int
The network number from which VIPs are obtained.
network_type This property is required. str
The network type.
subnet This property is required. str
The subnet for the network.
networkNumber This property is required. Number
The network number from which VIPs are obtained.
networkType This property is required. String
The network type.
subnet This property is required. String
The subnet for the network.

GetExternalDbSystemDiscoveriesExternalDbSystemDiscoveryCollectionItemDiscoveredComponentPluggableDatabase

CompartmentId This property is required. string
The OCID of the compartment.
Connectors This property is required. List<GetExternalDbSystemDiscoveriesExternalDbSystemDiscoveryCollectionItemDiscoveredComponentPluggableDatabaseConnector>
The connector details used to connect to the external DB system component.
ContainerDatabaseId This property is required. string
The unique identifier of the parent Container Database (CDB).
Guid This property is required. string
The unique identifier of the PDB.
CompartmentId This property is required. string
The OCID of the compartment.
Connectors This property is required. []GetExternalDbSystemDiscoveriesExternalDbSystemDiscoveryCollectionItemDiscoveredComponentPluggableDatabaseConnector
The connector details used to connect to the external DB system component.
ContainerDatabaseId This property is required. string
The unique identifier of the parent Container Database (CDB).
Guid This property is required. string
The unique identifier of the PDB.
compartmentId This property is required. String
The OCID of the compartment.
connectors This property is required. List<GetExternalDbSystemDiscoveriesExternalDbSystemDiscoveryCollectionItemDiscoveredComponentPluggableDatabaseConnector>
The connector details used to connect to the external DB system component.
containerDatabaseId This property is required. String
The unique identifier of the parent Container Database (CDB).
guid This property is required. String
The unique identifier of the PDB.
compartmentId This property is required. string
The OCID of the compartment.
connectors This property is required. GetExternalDbSystemDiscoveriesExternalDbSystemDiscoveryCollectionItemDiscoveredComponentPluggableDatabaseConnector[]
The connector details used to connect to the external DB system component.
containerDatabaseId This property is required. string
The unique identifier of the parent Container Database (CDB).
guid This property is required. string
The unique identifier of the PDB.
compartment_id This property is required. str
The OCID of the compartment.
connectors This property is required. Sequence[databasemanagement.GetExternalDbSystemDiscoveriesExternalDbSystemDiscoveryCollectionItemDiscoveredComponentPluggableDatabaseConnector]
The connector details used to connect to the external DB system component.
container_database_id This property is required. str
The unique identifier of the parent Container Database (CDB).
guid This property is required. str
The unique identifier of the PDB.
compartmentId This property is required. String
The OCID of the compartment.
connectors This property is required. List<Property Map>
The connector details used to connect to the external DB system component.
containerDatabaseId This property is required. String
The unique identifier of the parent Container Database (CDB).
guid This property is required. String
The unique identifier of the PDB.

GetExternalDbSystemDiscoveriesExternalDbSystemDiscoveryCollectionItemDiscoveredComponentPluggableDatabaseConnector

AgentId This property is required. string
The OCID of the management agent used for the external DB system connector.
ConnectionFailureMessage This property is required. string
The error message indicating the reason for connection failure or null if the connection was successful.
ConnectionInfos This property is required. List<GetExternalDbSystemDiscoveriesExternalDbSystemDiscoveryCollectionItemDiscoveredComponentPluggableDatabaseConnectorConnectionInfo>
The connection details required to connect to an external DB system component.
ConnectionStatus This property is required. string
The status of connectivity to the external DB system component.
ConnectorType This property is required. string
The type of connector.
DisplayName This property is required. string
A filter to only return the resources that match the entire display name.
TimeConnectionStatusLastUpdated This property is required. string
The date and time the connectionStatus of the external DB system connector was last updated.
AgentId This property is required. string
The OCID of the management agent used for the external DB system connector.
ConnectionFailureMessage This property is required. string
The error message indicating the reason for connection failure or null if the connection was successful.
ConnectionInfos This property is required. []GetExternalDbSystemDiscoveriesExternalDbSystemDiscoveryCollectionItemDiscoveredComponentPluggableDatabaseConnectorConnectionInfo
The connection details required to connect to an external DB system component.
ConnectionStatus This property is required. string
The status of connectivity to the external DB system component.
ConnectorType This property is required. string
The type of connector.
DisplayName This property is required. string
A filter to only return the resources that match the entire display name.
TimeConnectionStatusLastUpdated This property is required. string
The date and time the connectionStatus of the external DB system connector was last updated.
agentId This property is required. String
The OCID of the management agent used for the external DB system connector.
connectionFailureMessage This property is required. String
The error message indicating the reason for connection failure or null if the connection was successful.
connectionInfos This property is required. List<GetExternalDbSystemDiscoveriesExternalDbSystemDiscoveryCollectionItemDiscoveredComponentPluggableDatabaseConnectorConnectionInfo>
The connection details required to connect to an external DB system component.
connectionStatus This property is required. String
The status of connectivity to the external DB system component.
connectorType This property is required. String
The type of connector.
displayName This property is required. String
A filter to only return the resources that match the entire display name.
timeConnectionStatusLastUpdated This property is required. String
The date and time the connectionStatus of the external DB system connector was last updated.
agentId This property is required. string
The OCID of the management agent used for the external DB system connector.
connectionFailureMessage This property is required. string
The error message indicating the reason for connection failure or null if the connection was successful.
connectionInfos This property is required. GetExternalDbSystemDiscoveriesExternalDbSystemDiscoveryCollectionItemDiscoveredComponentPluggableDatabaseConnectorConnectionInfo[]
The connection details required to connect to an external DB system component.
connectionStatus This property is required. string
The status of connectivity to the external DB system component.
connectorType This property is required. string
The type of connector.
displayName This property is required. string
A filter to only return the resources that match the entire display name.
timeConnectionStatusLastUpdated This property is required. string
The date and time the connectionStatus of the external DB system connector was last updated.
agent_id This property is required. str
The OCID of the management agent used for the external DB system connector.
connection_failure_message This property is required. str
The error message indicating the reason for connection failure or null if the connection was successful.
connection_infos This property is required. Sequence[databasemanagement.GetExternalDbSystemDiscoveriesExternalDbSystemDiscoveryCollectionItemDiscoveredComponentPluggableDatabaseConnectorConnectionInfo]
The connection details required to connect to an external DB system component.
connection_status This property is required. str
The status of connectivity to the external DB system component.
connector_type This property is required. str
The type of connector.
display_name This property is required. str
A filter to only return the resources that match the entire display name.
time_connection_status_last_updated This property is required. str
The date and time the connectionStatus of the external DB system connector was last updated.
agentId This property is required. String
The OCID of the management agent used for the external DB system connector.
connectionFailureMessage This property is required. String
The error message indicating the reason for connection failure or null if the connection was successful.
connectionInfos This property is required. List<Property Map>
The connection details required to connect to an external DB system component.
connectionStatus This property is required. String
The status of connectivity to the external DB system component.
connectorType This property is required. String
The type of connector.
displayName This property is required. String
A filter to only return the resources that match the entire display name.
timeConnectionStatusLastUpdated This property is required. String
The date and time the connectionStatus of the external DB system connector was last updated.

GetExternalDbSystemDiscoveriesExternalDbSystemDiscoveryCollectionItemDiscoveredComponentPluggableDatabaseConnectorConnectionInfo

ComponentType This property is required. string
The component type.
ConnectionCredentials This property is required. List<GetExternalDbSystemDiscoveriesExternalDbSystemDiscoveryCollectionItemDiscoveredComponentPluggableDatabaseConnectorConnectionInfoConnectionCredential>
The credentials used to connect to the ASM instance. Currently only the DETAILS type is supported for creating MACS connector credentials.
ConnectionStrings This property is required. List<GetExternalDbSystemDiscoveriesExternalDbSystemDiscoveryCollectionItemDiscoveredComponentPluggableDatabaseConnectorConnectionInfoConnectionString>
The Oracle Database connection string.
DatabaseCredentials This property is required. List<GetExternalDbSystemDiscoveriesExternalDbSystemDiscoveryCollectionItemDiscoveredComponentPluggableDatabaseConnectorConnectionInfoDatabaseCredential>
The credential to connect to the database to perform tablespace administration tasks.
ComponentType This property is required. string
The component type.
ConnectionCredentials This property is required. []GetExternalDbSystemDiscoveriesExternalDbSystemDiscoveryCollectionItemDiscoveredComponentPluggableDatabaseConnectorConnectionInfoConnectionCredential
The credentials used to connect to the ASM instance. Currently only the DETAILS type is supported for creating MACS connector credentials.
ConnectionStrings This property is required. []GetExternalDbSystemDiscoveriesExternalDbSystemDiscoveryCollectionItemDiscoveredComponentPluggableDatabaseConnectorConnectionInfoConnectionString
The Oracle Database connection string.
DatabaseCredentials This property is required. []GetExternalDbSystemDiscoveriesExternalDbSystemDiscoveryCollectionItemDiscoveredComponentPluggableDatabaseConnectorConnectionInfoDatabaseCredential
The credential to connect to the database to perform tablespace administration tasks.
componentType This property is required. String
The component type.
connectionCredentials This property is required. List<GetExternalDbSystemDiscoveriesExternalDbSystemDiscoveryCollectionItemDiscoveredComponentPluggableDatabaseConnectorConnectionInfoConnectionCredential>
The credentials used to connect to the ASM instance. Currently only the DETAILS type is supported for creating MACS connector credentials.
connectionStrings This property is required. List<GetExternalDbSystemDiscoveriesExternalDbSystemDiscoveryCollectionItemDiscoveredComponentPluggableDatabaseConnectorConnectionInfoConnectionString>
The Oracle Database connection string.
databaseCredentials This property is required. List<GetExternalDbSystemDiscoveriesExternalDbSystemDiscoveryCollectionItemDiscoveredComponentPluggableDatabaseConnectorConnectionInfoDatabaseCredential>
The credential to connect to the database to perform tablespace administration tasks.
componentType This property is required. string
The component type.
connectionCredentials This property is required. GetExternalDbSystemDiscoveriesExternalDbSystemDiscoveryCollectionItemDiscoveredComponentPluggableDatabaseConnectorConnectionInfoConnectionCredential[]
The credentials used to connect to the ASM instance. Currently only the DETAILS type is supported for creating MACS connector credentials.
connectionStrings This property is required. GetExternalDbSystemDiscoveriesExternalDbSystemDiscoveryCollectionItemDiscoveredComponentPluggableDatabaseConnectorConnectionInfoConnectionString[]
The Oracle Database connection string.
databaseCredentials This property is required. GetExternalDbSystemDiscoveriesExternalDbSystemDiscoveryCollectionItemDiscoveredComponentPluggableDatabaseConnectorConnectionInfoDatabaseCredential[]
The credential to connect to the database to perform tablespace administration tasks.
component_type This property is required. str
The component type.
connection_credentials This property is required. Sequence[databasemanagement.GetExternalDbSystemDiscoveriesExternalDbSystemDiscoveryCollectionItemDiscoveredComponentPluggableDatabaseConnectorConnectionInfoConnectionCredential]
The credentials used to connect to the ASM instance. Currently only the DETAILS type is supported for creating MACS connector credentials.
connection_strings This property is required. Sequence[databasemanagement.GetExternalDbSystemDiscoveriesExternalDbSystemDiscoveryCollectionItemDiscoveredComponentPluggableDatabaseConnectorConnectionInfoConnectionString]
The Oracle Database connection string.
database_credentials This property is required. Sequence[databasemanagement.GetExternalDbSystemDiscoveriesExternalDbSystemDiscoveryCollectionItemDiscoveredComponentPluggableDatabaseConnectorConnectionInfoDatabaseCredential]
The credential to connect to the database to perform tablespace administration tasks.
componentType This property is required. String
The component type.
connectionCredentials This property is required. List<Property Map>
The credentials used to connect to the ASM instance. Currently only the DETAILS type is supported for creating MACS connector credentials.
connectionStrings This property is required. List<Property Map>
The Oracle Database connection string.
databaseCredentials This property is required. List<Property Map>
The credential to connect to the database to perform tablespace administration tasks.

GetExternalDbSystemDiscoveriesExternalDbSystemDiscoveryCollectionItemDiscoveredComponentPluggableDatabaseConnectorConnectionInfoConnectionCredential

CredentialName This property is required. string
The name of the credential information that used to connect to the DB system resource. The name should be in "x.y" format, where the length of "x" has a maximum of 64 characters, and length of "y" has a maximum of 199 characters. The name strings can contain letters, numbers and the underscore character only. Other characters are not valid, except for the "." character that separates the "x" and "y" portions of the name. IMPORTANT - The name must be unique within the Oracle Cloud Infrastructure region the credential is being created in. If you specify a name that duplicates the name of another credential within the same Oracle Cloud Infrastructure region, you may overwrite or corrupt the credential that is already using the name.
CredentialType This property is required. string
The type of the credential for tablespace administration tasks.
NamedCredentialId This property is required. string
The OCID of the named credential where the database password metadata is stored.
PasswordSecretId This property is required. string
The OCID of the Secret where the database password is stored.
Role This property is required. string
The role of the database user.
SslSecretId This property is required. string
The OCID of the secret containing the SSL keystore and truststore details.
UserName This property is required. string
The user name used to connect to the ASM instance.
CredentialName This property is required. string
The name of the credential information that used to connect to the DB system resource. The name should be in "x.y" format, where the length of "x" has a maximum of 64 characters, and length of "y" has a maximum of 199 characters. The name strings can contain letters, numbers and the underscore character only. Other characters are not valid, except for the "." character that separates the "x" and "y" portions of the name. IMPORTANT - The name must be unique within the Oracle Cloud Infrastructure region the credential is being created in. If you specify a name that duplicates the name of another credential within the same Oracle Cloud Infrastructure region, you may overwrite or corrupt the credential that is already using the name.
CredentialType This property is required. string
The type of the credential for tablespace administration tasks.
NamedCredentialId This property is required. string
The OCID of the named credential where the database password metadata is stored.
PasswordSecretId This property is required. string
The OCID of the Secret where the database password is stored.
Role This property is required. string
The role of the database user.
SslSecretId This property is required. string
The OCID of the secret containing the SSL keystore and truststore details.
UserName This property is required. string
The user name used to connect to the ASM instance.
credentialName This property is required. String
The name of the credential information that used to connect to the DB system resource. The name should be in "x.y" format, where the length of "x" has a maximum of 64 characters, and length of "y" has a maximum of 199 characters. The name strings can contain letters, numbers and the underscore character only. Other characters are not valid, except for the "." character that separates the "x" and "y" portions of the name. IMPORTANT - The name must be unique within the Oracle Cloud Infrastructure region the credential is being created in. If you specify a name that duplicates the name of another credential within the same Oracle Cloud Infrastructure region, you may overwrite or corrupt the credential that is already using the name.
credentialType This property is required. String
The type of the credential for tablespace administration tasks.
namedCredentialId This property is required. String
The OCID of the named credential where the database password metadata is stored.
passwordSecretId This property is required. String
The OCID of the Secret where the database password is stored.
role This property is required. String
The role of the database user.
sslSecretId This property is required. String
The OCID of the secret containing the SSL keystore and truststore details.
userName This property is required. String
The user name used to connect to the ASM instance.
credentialName This property is required. string
The name of the credential information that used to connect to the DB system resource. The name should be in "x.y" format, where the length of "x" has a maximum of 64 characters, and length of "y" has a maximum of 199 characters. The name strings can contain letters, numbers and the underscore character only. Other characters are not valid, except for the "." character that separates the "x" and "y" portions of the name. IMPORTANT - The name must be unique within the Oracle Cloud Infrastructure region the credential is being created in. If you specify a name that duplicates the name of another credential within the same Oracle Cloud Infrastructure region, you may overwrite or corrupt the credential that is already using the name.
credentialType This property is required. string
The type of the credential for tablespace administration tasks.
namedCredentialId This property is required. string
The OCID of the named credential where the database password metadata is stored.
passwordSecretId This property is required. string
The OCID of the Secret where the database password is stored.
role This property is required. string
The role of the database user.
sslSecretId This property is required. string
The OCID of the secret containing the SSL keystore and truststore details.
userName This property is required. string
The user name used to connect to the ASM instance.
credential_name This property is required. str
The name of the credential information that used to connect to the DB system resource. The name should be in "x.y" format, where the length of "x" has a maximum of 64 characters, and length of "y" has a maximum of 199 characters. The name strings can contain letters, numbers and the underscore character only. Other characters are not valid, except for the "." character that separates the "x" and "y" portions of the name. IMPORTANT - The name must be unique within the Oracle Cloud Infrastructure region the credential is being created in. If you specify a name that duplicates the name of another credential within the same Oracle Cloud Infrastructure region, you may overwrite or corrupt the credential that is already using the name.
credential_type This property is required. str
The type of the credential for tablespace administration tasks.
named_credential_id This property is required. str
The OCID of the named credential where the database password metadata is stored.
password_secret_id This property is required. str
The OCID of the Secret where the database password is stored.
role This property is required. str
The role of the database user.
ssl_secret_id This property is required. str
The OCID of the secret containing the SSL keystore and truststore details.
user_name This property is required. str
The user name used to connect to the ASM instance.
credentialName This property is required. String
The name of the credential information that used to connect to the DB system resource. The name should be in "x.y" format, where the length of "x" has a maximum of 64 characters, and length of "y" has a maximum of 199 characters. The name strings can contain letters, numbers and the underscore character only. Other characters are not valid, except for the "." character that separates the "x" and "y" portions of the name. IMPORTANT - The name must be unique within the Oracle Cloud Infrastructure region the credential is being created in. If you specify a name that duplicates the name of another credential within the same Oracle Cloud Infrastructure region, you may overwrite or corrupt the credential that is already using the name.
credentialType This property is required. String
The type of the credential for tablespace administration tasks.
namedCredentialId This property is required. String
The OCID of the named credential where the database password metadata is stored.
passwordSecretId This property is required. String
The OCID of the Secret where the database password is stored.
role This property is required. String
The role of the database user.
sslSecretId This property is required. String
The OCID of the secret containing the SSL keystore and truststore details.
userName This property is required. String
The user name used to connect to the ASM instance.

GetExternalDbSystemDiscoveriesExternalDbSystemDiscoveryCollectionItemDiscoveredComponentPluggableDatabaseConnectorConnectionInfoConnectionString

HostName This property is required. string
The host name of the database or the SCAN name in case of a RAC database.
Hosts This property is required. List<string>
The list of host names of the ASM instances.
Port This property is required. int
The port used to connect to the ASM instance.
Protocol This property is required. string
The protocol used to connect to the ASM instance.
Service This property is required. string
The service name of the ASM instance.
HostName This property is required. string
The host name of the database or the SCAN name in case of a RAC database.
Hosts This property is required. []string
The list of host names of the ASM instances.
Port This property is required. int
The port used to connect to the ASM instance.
Protocol This property is required. string
The protocol used to connect to the ASM instance.
Service This property is required. string
The service name of the ASM instance.
hostName This property is required. String
The host name of the database or the SCAN name in case of a RAC database.
hosts This property is required. List<String>
The list of host names of the ASM instances.
port This property is required. Integer
The port used to connect to the ASM instance.
protocol This property is required. String
The protocol used to connect to the ASM instance.
service This property is required. String
The service name of the ASM instance.
hostName This property is required. string
The host name of the database or the SCAN name in case of a RAC database.
hosts This property is required. string[]
The list of host names of the ASM instances.
port This property is required. number
The port used to connect to the ASM instance.
protocol This property is required. string
The protocol used to connect to the ASM instance.
service This property is required. string
The service name of the ASM instance.
host_name This property is required. str
The host name of the database or the SCAN name in case of a RAC database.
hosts This property is required. Sequence[str]
The list of host names of the ASM instances.
port This property is required. int
The port used to connect to the ASM instance.
protocol This property is required. str
The protocol used to connect to the ASM instance.
service This property is required. str
The service name of the ASM instance.
hostName This property is required. String
The host name of the database or the SCAN name in case of a RAC database.
hosts This property is required. List<String>
The list of host names of the ASM instances.
port This property is required. Number
The port used to connect to the ASM instance.
protocol This property is required. String
The protocol used to connect to the ASM instance.
service This property is required. String
The service name of the ASM instance.

GetExternalDbSystemDiscoveriesExternalDbSystemDiscoveryCollectionItemDiscoveredComponentPluggableDatabaseConnectorConnectionInfoDatabaseCredential

CredentialType This property is required. string
The type of the credential for tablespace administration tasks.
NamedCredentialId This property is required. string
The OCID of the named credential where the database password metadata is stored.
Password This property is required. string
The database user's password encoded using BASE64 scheme.
PasswordSecretId This property is required. string
The OCID of the Secret where the database password is stored.
Role This property is required. string
The role of the database user.
Username This property is required. string
The user to connect to the database.
CredentialType This property is required. string
The type of the credential for tablespace administration tasks.
NamedCredentialId This property is required. string
The OCID of the named credential where the database password metadata is stored.
Password This property is required. string
The database user's password encoded using BASE64 scheme.
PasswordSecretId This property is required. string
The OCID of the Secret where the database password is stored.
Role This property is required. string
The role of the database user.
Username This property is required. string
The user to connect to the database.
credentialType This property is required. String
The type of the credential for tablespace administration tasks.
namedCredentialId This property is required. String
The OCID of the named credential where the database password metadata is stored.
password This property is required. String
The database user's password encoded using BASE64 scheme.
passwordSecretId This property is required. String
The OCID of the Secret where the database password is stored.
role This property is required. String
The role of the database user.
username This property is required. String
The user to connect to the database.
credentialType This property is required. string
The type of the credential for tablespace administration tasks.
namedCredentialId This property is required. string
The OCID of the named credential where the database password metadata is stored.
password This property is required. string
The database user's password encoded using BASE64 scheme.
passwordSecretId This property is required. string
The OCID of the Secret where the database password is stored.
role This property is required. string
The role of the database user.
username This property is required. string
The user to connect to the database.
credential_type This property is required. str
The type of the credential for tablespace administration tasks.
named_credential_id This property is required. str
The OCID of the named credential where the database password metadata is stored.
password This property is required. str
The database user's password encoded using BASE64 scheme.
password_secret_id This property is required. str
The OCID of the Secret where the database password is stored.
role This property is required. str
The role of the database user.
username This property is required. str
The user to connect to the database.
credentialType This property is required. String
The type of the credential for tablespace administration tasks.
namedCredentialId This property is required. String
The OCID of the named credential where the database password metadata is stored.
password This property is required. String
The database user's password encoded using BASE64 scheme.
passwordSecretId This property is required. String
The OCID of the Secret where the database password is stored.
role This property is required. String
The role of the database user.
username This property is required. String
The user to connect to the database.

GetExternalDbSystemDiscoveriesExternalDbSystemDiscoveryCollectionItemDiscoveredComponentScanConfiguration

NetworkNumber This property is required. int
The network number from which VIPs are obtained.
ScanName This property is required. string
The name of the SCAN listener.
ScanPort This property is required. int
The port number of the SCAN listener.
ScanProtocol This property is required. string
The protocol of the SCAN listener.
NetworkNumber This property is required. int
The network number from which VIPs are obtained.
ScanName This property is required. string
The name of the SCAN listener.
ScanPort This property is required. int
The port number of the SCAN listener.
ScanProtocol This property is required. string
The protocol of the SCAN listener.
networkNumber This property is required. Integer
The network number from which VIPs are obtained.
scanName This property is required. String
The name of the SCAN listener.
scanPort This property is required. Integer
The port number of the SCAN listener.
scanProtocol This property is required. String
The protocol of the SCAN listener.
networkNumber This property is required. number
The network number from which VIPs are obtained.
scanName This property is required. string
The name of the SCAN listener.
scanPort This property is required. number
The port number of the SCAN listener.
scanProtocol This property is required. string
The protocol of the SCAN listener.
network_number This property is required. int
The network number from which VIPs are obtained.
scan_name This property is required. str
The name of the SCAN listener.
scan_port This property is required. int
The port number of the SCAN listener.
scan_protocol This property is required. str
The protocol of the SCAN listener.
networkNumber This property is required. Number
The network number from which VIPs are obtained.
scanName This property is required. String
The name of the SCAN listener.
scanPort This property is required. Number
The port number of the SCAN listener.
scanProtocol This property is required. String
The protocol of the SCAN listener.

GetExternalDbSystemDiscoveriesExternalDbSystemDiscoveryCollectionItemDiscoveredComponentVipConfiguration

Address This property is required. string
The VIP name or IP address.
NetworkNumber This property is required. int
The network number from which VIPs are obtained.
NodeName This property is required. string
The name of the node with the VIP.
Address This property is required. string
The VIP name or IP address.
NetworkNumber This property is required. int
The network number from which VIPs are obtained.
NodeName This property is required. string
The name of the node with the VIP.
address This property is required. String
The VIP name or IP address.
networkNumber This property is required. Integer
The network number from which VIPs are obtained.
nodeName This property is required. String
The name of the node with the VIP.
address This property is required. string
The VIP name or IP address.
networkNumber This property is required. number
The network number from which VIPs are obtained.
nodeName This property is required. string
The name of the node with the VIP.
address This property is required. str
The VIP name or IP address.
network_number This property is required. int
The network number from which VIPs are obtained.
node_name This property is required. str
The name of the node with the VIP.
address This property is required. String
The VIP name or IP address.
networkNumber This property is required. Number
The network number from which VIPs are obtained.
nodeName This property is required. String
The name of the node with the VIP.

GetExternalDbSystemDiscoveriesExternalDbSystemDiscoveryCollectionItemPatchOperation

Operation This property is required. string
Selection This property is required. string
Values This property is required. List<GetExternalDbSystemDiscoveriesExternalDbSystemDiscoveryCollectionItemPatchOperationValue>
Operation This property is required. string
Selection This property is required. string
Values This property is required. []GetExternalDbSystemDiscoveriesExternalDbSystemDiscoveryCollectionItemPatchOperationValue
operation This property is required. String
selection This property is required. String
values This property is required. List<GetExternalDbSystemDiscoveriesExternalDbSystemDiscoveryCollectionItemPatchOperationValue>
operation This property is required. string
selection This property is required. string
values This property is required. GetExternalDbSystemDiscoveriesExternalDbSystemDiscoveryCollectionItemPatchOperationValue[]
operation This property is required. String
selection This property is required. String
values This property is required. List<Property Map>

GetExternalDbSystemDiscoveriesExternalDbSystemDiscoveryCollectionItemPatchOperationValue

CompartmentId This property is required. string
The OCID of the compartment.
Connectors This property is required. List<GetExternalDbSystemDiscoveriesExternalDbSystemDiscoveryCollectionItemPatchOperationValueConnector>
The connector details used to connect to the external DB system component.
DisplayName This property is required. string
A filter to only return the resources that match the entire display name.
IsSelectedForMonitoring This property is required. bool
Indicates whether the DB system component should be provisioned as an Oracle Cloud Infrastructure resource or not.
CompartmentId This property is required. string
The OCID of the compartment.
Connectors This property is required. []GetExternalDbSystemDiscoveriesExternalDbSystemDiscoveryCollectionItemPatchOperationValueConnector
The connector details used to connect to the external DB system component.
DisplayName This property is required. string
A filter to only return the resources that match the entire display name.
IsSelectedForMonitoring This property is required. bool
Indicates whether the DB system component should be provisioned as an Oracle Cloud Infrastructure resource or not.
compartmentId This property is required. String
The OCID of the compartment.
connectors This property is required. List<GetExternalDbSystemDiscoveriesExternalDbSystemDiscoveryCollectionItemPatchOperationValueConnector>
The connector details used to connect to the external DB system component.
displayName This property is required. String
A filter to only return the resources that match the entire display name.
isSelectedForMonitoring This property is required. Boolean
Indicates whether the DB system component should be provisioned as an Oracle Cloud Infrastructure resource or not.
compartmentId This property is required. string
The OCID of the compartment.
connectors This property is required. GetExternalDbSystemDiscoveriesExternalDbSystemDiscoveryCollectionItemPatchOperationValueConnector[]
The connector details used to connect to the external DB system component.
displayName This property is required. string
A filter to only return the resources that match the entire display name.
isSelectedForMonitoring This property is required. boolean
Indicates whether the DB system component should be provisioned as an Oracle Cloud Infrastructure resource or not.
compartment_id This property is required. str
The OCID of the compartment.
connectors This property is required. Sequence[databasemanagement.GetExternalDbSystemDiscoveriesExternalDbSystemDiscoveryCollectionItemPatchOperationValueConnector]
The connector details used to connect to the external DB system component.
display_name This property is required. str
A filter to only return the resources that match the entire display name.
is_selected_for_monitoring This property is required. bool
Indicates whether the DB system component should be provisioned as an Oracle Cloud Infrastructure resource or not.
compartmentId This property is required. String
The OCID of the compartment.
connectors This property is required. List<Property Map>
The connector details used to connect to the external DB system component.
displayName This property is required. String
A filter to only return the resources that match the entire display name.
isSelectedForMonitoring This property is required. Boolean
Indicates whether the DB system component should be provisioned as an Oracle Cloud Infrastructure resource or not.

GetExternalDbSystemDiscoveriesExternalDbSystemDiscoveryCollectionItemPatchOperationValueConnector

AgentId This property is required. string
The OCID of the management agent used for the external DB system connector.
ConnectionInfos This property is required. List<GetExternalDbSystemDiscoveriesExternalDbSystemDiscoveryCollectionItemPatchOperationValueConnectorConnectionInfo>
The connection details required to connect to an external DB system component.
ConnectorType This property is required. string
The type of connector.
DisplayName This property is required. string
A filter to only return the resources that match the entire display name.
AgentId This property is required. string
The OCID of the management agent used for the external DB system connector.
ConnectionInfos This property is required. []GetExternalDbSystemDiscoveriesExternalDbSystemDiscoveryCollectionItemPatchOperationValueConnectorConnectionInfo
The connection details required to connect to an external DB system component.
ConnectorType This property is required. string
The type of connector.
DisplayName This property is required. string
A filter to only return the resources that match the entire display name.
agentId This property is required. String
The OCID of the management agent used for the external DB system connector.
connectionInfos This property is required. List<GetExternalDbSystemDiscoveriesExternalDbSystemDiscoveryCollectionItemPatchOperationValueConnectorConnectionInfo>
The connection details required to connect to an external DB system component.
connectorType This property is required. String
The type of connector.
displayName This property is required. String
A filter to only return the resources that match the entire display name.
agentId This property is required. string
The OCID of the management agent used for the external DB system connector.
connectionInfos This property is required. GetExternalDbSystemDiscoveriesExternalDbSystemDiscoveryCollectionItemPatchOperationValueConnectorConnectionInfo[]
The connection details required to connect to an external DB system component.
connectorType This property is required. string
The type of connector.
displayName This property is required. string
A filter to only return the resources that match the entire display name.
agent_id This property is required. str
The OCID of the management agent used for the external DB system connector.
connection_infos This property is required. Sequence[databasemanagement.GetExternalDbSystemDiscoveriesExternalDbSystemDiscoveryCollectionItemPatchOperationValueConnectorConnectionInfo]
The connection details required to connect to an external DB system component.
connector_type This property is required. str
The type of connector.
display_name This property is required. str
A filter to only return the resources that match the entire display name.
agentId This property is required. String
The OCID of the management agent used for the external DB system connector.
connectionInfos This property is required. List<Property Map>
The connection details required to connect to an external DB system component.
connectorType This property is required. String
The type of connector.
displayName This property is required. String
A filter to only return the resources that match the entire display name.

GetExternalDbSystemDiscoveriesExternalDbSystemDiscoveryCollectionItemPatchOperationValueConnectorConnectionInfo

ComponentType This property is required. string
The component type.
ConnectionCredentials This property is required. List<GetExternalDbSystemDiscoveriesExternalDbSystemDiscoveryCollectionItemPatchOperationValueConnectorConnectionInfoConnectionCredential>
The credentials used to connect to the ASM instance. Currently only the DETAILS type is supported for creating MACS connector credentials.
ConnectionStrings This property is required. List<GetExternalDbSystemDiscoveriesExternalDbSystemDiscoveryCollectionItemPatchOperationValueConnectorConnectionInfoConnectionString>
The Oracle Database connection string.
ComponentType This property is required. string
The component type.
ConnectionCredentials This property is required. []GetExternalDbSystemDiscoveriesExternalDbSystemDiscoveryCollectionItemPatchOperationValueConnectorConnectionInfoConnectionCredential
The credentials used to connect to the ASM instance. Currently only the DETAILS type is supported for creating MACS connector credentials.
ConnectionStrings This property is required. []GetExternalDbSystemDiscoveriesExternalDbSystemDiscoveryCollectionItemPatchOperationValueConnectorConnectionInfoConnectionString
The Oracle Database connection string.
componentType This property is required. String
The component type.
connectionCredentials This property is required. List<GetExternalDbSystemDiscoveriesExternalDbSystemDiscoveryCollectionItemPatchOperationValueConnectorConnectionInfoConnectionCredential>
The credentials used to connect to the ASM instance. Currently only the DETAILS type is supported for creating MACS connector credentials.
connectionStrings This property is required. List<GetExternalDbSystemDiscoveriesExternalDbSystemDiscoveryCollectionItemPatchOperationValueConnectorConnectionInfoConnectionString>
The Oracle Database connection string.
componentType This property is required. string
The component type.
connectionCredentials This property is required. GetExternalDbSystemDiscoveriesExternalDbSystemDiscoveryCollectionItemPatchOperationValueConnectorConnectionInfoConnectionCredential[]
The credentials used to connect to the ASM instance. Currently only the DETAILS type is supported for creating MACS connector credentials.
connectionStrings This property is required. GetExternalDbSystemDiscoveriesExternalDbSystemDiscoveryCollectionItemPatchOperationValueConnectorConnectionInfoConnectionString[]
The Oracle Database connection string.
component_type This property is required. str
The component type.
connection_credentials This property is required. Sequence[databasemanagement.GetExternalDbSystemDiscoveriesExternalDbSystemDiscoveryCollectionItemPatchOperationValueConnectorConnectionInfoConnectionCredential]
The credentials used to connect to the ASM instance. Currently only the DETAILS type is supported for creating MACS connector credentials.
connection_strings This property is required. Sequence[databasemanagement.GetExternalDbSystemDiscoveriesExternalDbSystemDiscoveryCollectionItemPatchOperationValueConnectorConnectionInfoConnectionString]
The Oracle Database connection string.
componentType This property is required. String
The component type.
connectionCredentials This property is required. List<Property Map>
The credentials used to connect to the ASM instance. Currently only the DETAILS type is supported for creating MACS connector credentials.
connectionStrings This property is required. List<Property Map>
The Oracle Database connection string.

GetExternalDbSystemDiscoveriesExternalDbSystemDiscoveryCollectionItemPatchOperationValueConnectorConnectionInfoConnectionCredential

CredentialName This property is required. string
The name of the credential information that used to connect to the DB system resource. The name should be in "x.y" format, where the length of "x" has a maximum of 64 characters, and length of "y" has a maximum of 199 characters. The name strings can contain letters, numbers and the underscore character only. Other characters are not valid, except for the "." character that separates the "x" and "y" portions of the name. IMPORTANT - The name must be unique within the Oracle Cloud Infrastructure region the credential is being created in. If you specify a name that duplicates the name of another credential within the same Oracle Cloud Infrastructure region, you may overwrite or corrupt the credential that is already using the name.
CredentialType This property is required. string
The type of the credential for tablespace administration tasks.
PasswordSecretId This property is required. string
The OCID of the Secret where the database password is stored.
Role This property is required. string
The role of the database user.
SslSecretId This property is required. string
The OCID of the secret containing the SSL keystore and truststore details.
UserName This property is required. string
The user name used to connect to the ASM instance.
CredentialName This property is required. string
The name of the credential information that used to connect to the DB system resource. The name should be in "x.y" format, where the length of "x" has a maximum of 64 characters, and length of "y" has a maximum of 199 characters. The name strings can contain letters, numbers and the underscore character only. Other characters are not valid, except for the "." character that separates the "x" and "y" portions of the name. IMPORTANT - The name must be unique within the Oracle Cloud Infrastructure region the credential is being created in. If you specify a name that duplicates the name of another credential within the same Oracle Cloud Infrastructure region, you may overwrite or corrupt the credential that is already using the name.
CredentialType This property is required. string
The type of the credential for tablespace administration tasks.
PasswordSecretId This property is required. string
The OCID of the Secret where the database password is stored.
Role This property is required. string
The role of the database user.
SslSecretId This property is required. string
The OCID of the secret containing the SSL keystore and truststore details.
UserName This property is required. string
The user name used to connect to the ASM instance.
credentialName This property is required. String
The name of the credential information that used to connect to the DB system resource. The name should be in "x.y" format, where the length of "x" has a maximum of 64 characters, and length of "y" has a maximum of 199 characters. The name strings can contain letters, numbers and the underscore character only. Other characters are not valid, except for the "." character that separates the "x" and "y" portions of the name. IMPORTANT - The name must be unique within the Oracle Cloud Infrastructure region the credential is being created in. If you specify a name that duplicates the name of another credential within the same Oracle Cloud Infrastructure region, you may overwrite or corrupt the credential that is already using the name.
credentialType This property is required. String
The type of the credential for tablespace administration tasks.
passwordSecretId This property is required. String
The OCID of the Secret where the database password is stored.
role This property is required. String
The role of the database user.
sslSecretId This property is required. String
The OCID of the secret containing the SSL keystore and truststore details.
userName This property is required. String
The user name used to connect to the ASM instance.
credentialName This property is required. string
The name of the credential information that used to connect to the DB system resource. The name should be in "x.y" format, where the length of "x" has a maximum of 64 characters, and length of "y" has a maximum of 199 characters. The name strings can contain letters, numbers and the underscore character only. Other characters are not valid, except for the "." character that separates the "x" and "y" portions of the name. IMPORTANT - The name must be unique within the Oracle Cloud Infrastructure region the credential is being created in. If you specify a name that duplicates the name of another credential within the same Oracle Cloud Infrastructure region, you may overwrite or corrupt the credential that is already using the name.
credentialType This property is required. string
The type of the credential for tablespace administration tasks.
passwordSecretId This property is required. string
The OCID of the Secret where the database password is stored.
role This property is required. string
The role of the database user.
sslSecretId This property is required. string
The OCID of the secret containing the SSL keystore and truststore details.
userName This property is required. string
The user name used to connect to the ASM instance.
credential_name This property is required. str
The name of the credential information that used to connect to the DB system resource. The name should be in "x.y" format, where the length of "x" has a maximum of 64 characters, and length of "y" has a maximum of 199 characters. The name strings can contain letters, numbers and the underscore character only. Other characters are not valid, except for the "." character that separates the "x" and "y" portions of the name. IMPORTANT - The name must be unique within the Oracle Cloud Infrastructure region the credential is being created in. If you specify a name that duplicates the name of another credential within the same Oracle Cloud Infrastructure region, you may overwrite or corrupt the credential that is already using the name.
credential_type This property is required. str
The type of the credential for tablespace administration tasks.
password_secret_id This property is required. str
The OCID of the Secret where the database password is stored.
role This property is required. str
The role of the database user.
ssl_secret_id This property is required. str
The OCID of the secret containing the SSL keystore and truststore details.
user_name This property is required. str
The user name used to connect to the ASM instance.
credentialName This property is required. String
The name of the credential information that used to connect to the DB system resource. The name should be in "x.y" format, where the length of "x" has a maximum of 64 characters, and length of "y" has a maximum of 199 characters. The name strings can contain letters, numbers and the underscore character only. Other characters are not valid, except for the "." character that separates the "x" and "y" portions of the name. IMPORTANT - The name must be unique within the Oracle Cloud Infrastructure region the credential is being created in. If you specify a name that duplicates the name of another credential within the same Oracle Cloud Infrastructure region, you may overwrite or corrupt the credential that is already using the name.
credentialType This property is required. String
The type of the credential for tablespace administration tasks.
passwordSecretId This property is required. String
The OCID of the Secret where the database password is stored.
role This property is required. String
The role of the database user.
sslSecretId This property is required. String
The OCID of the secret containing the SSL keystore and truststore details.
userName This property is required. String
The user name used to connect to the ASM instance.

GetExternalDbSystemDiscoveriesExternalDbSystemDiscoveryCollectionItemPatchOperationValueConnectorConnectionInfoConnectionString

HostName This property is required. string
The host name of the database or the SCAN name in case of a RAC database.
Hosts This property is required. List<string>
The list of host names of the ASM instances.
Port This property is required. int
The port used to connect to the ASM instance.
Protocol This property is required. string
The protocol used to connect to the ASM instance.
Service This property is required. string
The service name of the ASM instance.
HostName This property is required. string
The host name of the database or the SCAN name in case of a RAC database.
Hosts This property is required. []string
The list of host names of the ASM instances.
Port This property is required. int
The port used to connect to the ASM instance.
Protocol This property is required. string
The protocol used to connect to the ASM instance.
Service This property is required. string
The service name of the ASM instance.
hostName This property is required. String
The host name of the database or the SCAN name in case of a RAC database.
hosts This property is required. List<String>
The list of host names of the ASM instances.
port This property is required. Integer
The port used to connect to the ASM instance.
protocol This property is required. String
The protocol used to connect to the ASM instance.
service This property is required. String
The service name of the ASM instance.
hostName This property is required. string
The host name of the database or the SCAN name in case of a RAC database.
hosts This property is required. string[]
The list of host names of the ASM instances.
port This property is required. number
The port used to connect to the ASM instance.
protocol This property is required. string
The protocol used to connect to the ASM instance.
service This property is required. string
The service name of the ASM instance.
host_name This property is required. str
The host name of the database or the SCAN name in case of a RAC database.
hosts This property is required. Sequence[str]
The list of host names of the ASM instances.
port This property is required. int
The port used to connect to the ASM instance.
protocol This property is required. str
The protocol used to connect to the ASM instance.
service This property is required. str
The service name of the ASM instance.
hostName This property is required. String
The host name of the database or the SCAN name in case of a RAC database.
hosts This property is required. List<String>
The list of host names of the ASM instances.
port This property is required. Number
The port used to connect to the ASM instance.
protocol This property is required. String
The protocol used to connect to the ASM instance.
service This property is required. String
The service name of the ASM instance.

GetExternalDbSystemDiscoveriesFilter

Name This property is required. string
Values This property is required. List<string>
Regex bool
Name This property is required. string
Values This property is required. []string
Regex bool
name This property is required. String
values This property is required. List<String>
regex Boolean
name This property is required. string
values This property is required. string[]
regex boolean
name This property is required. str
values This property is required. Sequence[str]
regex bool
name This property is required. String
values This property is required. List<String>
regex Boolean

Package Details

Repository
oci pulumi/pulumi-oci
License
Apache-2.0
Notes
This Pulumi package is based on the oci Terraform Provider.
Oracle Cloud Infrastructure v2.28.0 published on Thursday, Mar 27, 2025 by Pulumi