Oracle Cloud Infrastructure v2.33.0 published on Thursday, May 1, 2025 by Pulumi
oci.DataSafe.getTargetDatabases
Explore with Pulumi AI
This data source provides the list of Target Databases in Oracle Cloud Infrastructure Data Safe service.
Returns the list of registered target databases in Data Safe.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";
const testTargetDatabases = oci.DataSafe.getTargetDatabases({
    compartmentId: compartmentId,
    accessLevel: targetDatabaseAccessLevel,
    associatedResourceId: testAssociatedResource.id,
    compartmentIdInSubtree: targetDatabaseCompartmentIdInSubtree,
    databaseType: targetDatabaseDatabaseType,
    displayName: targetDatabaseDisplayName,
    infrastructureType: targetDatabaseInfrastructureType,
    state: targetDatabaseState,
    targetDatabaseId: testTargetDatabase.id,
});
import pulumi
import pulumi_oci as oci
test_target_databases = oci.DataSafe.get_target_databases(compartment_id=compartment_id,
    access_level=target_database_access_level,
    associated_resource_id=test_associated_resource["id"],
    compartment_id_in_subtree=target_database_compartment_id_in_subtree,
    database_type=target_database_database_type,
    display_name=target_database_display_name,
    infrastructure_type=target_database_infrastructure_type,
    state=target_database_state,
    target_database_id=test_target_database["id"])
package main
import (
	"github.com/pulumi/pulumi-oci/sdk/v2/go/oci/datasafe"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := datasafe.GetTargetDatabases(ctx, &datasafe.GetTargetDatabasesArgs{
			CompartmentId:          compartmentId,
			AccessLevel:            pulumi.StringRef(targetDatabaseAccessLevel),
			AssociatedResourceId:   pulumi.StringRef(testAssociatedResource.Id),
			CompartmentIdInSubtree: pulumi.BoolRef(targetDatabaseCompartmentIdInSubtree),
			DatabaseType:           pulumi.StringRef(targetDatabaseDatabaseType),
			DisplayName:            pulumi.StringRef(targetDatabaseDisplayName),
			InfrastructureType:     pulumi.StringRef(targetDatabaseInfrastructureType),
			State:                  pulumi.StringRef(targetDatabaseState),
			TargetDatabaseId:       pulumi.StringRef(testTargetDatabase.Id),
		}, nil)
		if err != nil {
			return err
		}
		return nil
	})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Oci = Pulumi.Oci;
return await Deployment.RunAsync(() => 
{
    var testTargetDatabases = Oci.DataSafe.GetTargetDatabases.Invoke(new()
    {
        CompartmentId = compartmentId,
        AccessLevel = targetDatabaseAccessLevel,
        AssociatedResourceId = testAssociatedResource.Id,
        CompartmentIdInSubtree = targetDatabaseCompartmentIdInSubtree,
        DatabaseType = targetDatabaseDatabaseType,
        DisplayName = targetDatabaseDisplayName,
        InfrastructureType = targetDatabaseInfrastructureType,
        State = targetDatabaseState,
        TargetDatabaseId = testTargetDatabase.Id,
    });
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.DataSafe.DataSafeFunctions;
import com.pulumi.oci.DataSafe.inputs.GetTargetDatabasesArgs;
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 testTargetDatabases = DataSafeFunctions.getTargetDatabases(GetTargetDatabasesArgs.builder()
            .compartmentId(compartmentId)
            .accessLevel(targetDatabaseAccessLevel)
            .associatedResourceId(testAssociatedResource.id())
            .compartmentIdInSubtree(targetDatabaseCompartmentIdInSubtree)
            .databaseType(targetDatabaseDatabaseType)
            .displayName(targetDatabaseDisplayName)
            .infrastructureType(targetDatabaseInfrastructureType)
            .state(targetDatabaseState)
            .targetDatabaseId(testTargetDatabase.id())
            .build());
    }
}
variables:
  testTargetDatabases:
    fn::invoke:
      function: oci:DataSafe:getTargetDatabases
      arguments:
        compartmentId: ${compartmentId}
        accessLevel: ${targetDatabaseAccessLevel}
        associatedResourceId: ${testAssociatedResource.id}
        compartmentIdInSubtree: ${targetDatabaseCompartmentIdInSubtree}
        databaseType: ${targetDatabaseDatabaseType}
        displayName: ${targetDatabaseDisplayName}
        infrastructureType: ${targetDatabaseInfrastructureType}
        state: ${targetDatabaseState}
        targetDatabaseId: ${testTargetDatabase.id}
Using getTargetDatabases
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 getTargetDatabases(args: GetTargetDatabasesArgs, opts?: InvokeOptions): Promise<GetTargetDatabasesResult>
function getTargetDatabasesOutput(args: GetTargetDatabasesOutputArgs, opts?: InvokeOptions): Output<GetTargetDatabasesResult>def get_target_databases(access_level: Optional[str] = None,
                         associated_resource_id: Optional[str] = None,
                         compartment_id: Optional[str] = None,
                         compartment_id_in_subtree: Optional[bool] = None,
                         database_type: Optional[str] = None,
                         display_name: Optional[str] = None,
                         filters: Optional[Sequence[GetTargetDatabasesFilter]] = None,
                         infrastructure_type: Optional[str] = None,
                         state: Optional[str] = None,
                         target_database_id: Optional[str] = None,
                         opts: Optional[InvokeOptions] = None) -> GetTargetDatabasesResult
def get_target_databases_output(access_level: Optional[pulumi.Input[str]] = None,
                         associated_resource_id: Optional[pulumi.Input[str]] = None,
                         compartment_id: Optional[pulumi.Input[str]] = None,
                         compartment_id_in_subtree: Optional[pulumi.Input[bool]] = None,
                         database_type: Optional[pulumi.Input[str]] = None,
                         display_name: Optional[pulumi.Input[str]] = None,
                         filters: Optional[pulumi.Input[Sequence[pulumi.Input[GetTargetDatabasesFilterArgs]]]] = None,
                         infrastructure_type: Optional[pulumi.Input[str]] = None,
                         state: Optional[pulumi.Input[str]] = None,
                         target_database_id: Optional[pulumi.Input[str]] = None,
                         opts: Optional[InvokeOptions] = None) -> Output[GetTargetDatabasesResult]func GetTargetDatabases(ctx *Context, args *GetTargetDatabasesArgs, opts ...InvokeOption) (*GetTargetDatabasesResult, error)
func GetTargetDatabasesOutput(ctx *Context, args *GetTargetDatabasesOutputArgs, opts ...InvokeOption) GetTargetDatabasesResultOutput> Note: This function is named GetTargetDatabases in the Go SDK.
public static class GetTargetDatabases 
{
    public static Task<GetTargetDatabasesResult> InvokeAsync(GetTargetDatabasesArgs args, InvokeOptions? opts = null)
    public static Output<GetTargetDatabasesResult> Invoke(GetTargetDatabasesInvokeArgs args, InvokeOptions? opts = null)
}public static CompletableFuture<GetTargetDatabasesResult> getTargetDatabases(GetTargetDatabasesArgs args, InvokeOptions options)
public static Output<GetTargetDatabasesResult> getTargetDatabases(GetTargetDatabasesArgs args, InvokeOptions options)
fn::invoke:
  function: oci:DataSafe/getTargetDatabases:getTargetDatabases
  arguments:
    # arguments dictionaryThe following arguments are supported:
- CompartmentId string
- A filter to return only resources that match the specified compartment OCID.
- AccessLevel string
- Valid values are RESTRICTED and ACCESSIBLE. Default is RESTRICTED. Setting this to ACCESSIBLE returns only those compartments for which the user has INSPECT permissions directly or indirectly (permissions can be on a resource in a subcompartment). When set to RESTRICTED permissions are checked and no partial results are displayed.
- AssociatedResource stringId 
- A filter to return the target databases that are associated to the resource id passed in as a parameter value.
- CompartmentId boolIn Subtree 
- Default is false. When set to true, the hierarchy of compartments is traversed and all compartments and subcompartments in the tenancy are returned. Depends on the 'accessLevel' setting.
- DatabaseType string
- A filter to return only target databases that match the specified database type.
- DisplayName string
- A filter to return only resources that match the specified display name.
- Filters
List<GetTarget Databases Filter> 
- InfrastructureType string
- A filter to return only target databases that match the specified infrastructure type.
- State string
- A filter to return only target databases that match the specified lifecycle state.
- TargetDatabase stringId 
- A filter to return the target database that matches the specified OCID.
- CompartmentId string
- A filter to return only resources that match the specified compartment OCID.
- AccessLevel string
- Valid values are RESTRICTED and ACCESSIBLE. Default is RESTRICTED. Setting this to ACCESSIBLE returns only those compartments for which the user has INSPECT permissions directly or indirectly (permissions can be on a resource in a subcompartment). When set to RESTRICTED permissions are checked and no partial results are displayed.
- AssociatedResource stringId 
- A filter to return the target databases that are associated to the resource id passed in as a parameter value.
- CompartmentId boolIn Subtree 
- Default is false. When set to true, the hierarchy of compartments is traversed and all compartments and subcompartments in the tenancy are returned. Depends on the 'accessLevel' setting.
- DatabaseType string
- A filter to return only target databases that match the specified database type.
- DisplayName string
- A filter to return only resources that match the specified display name.
- Filters
[]GetTarget Databases Filter 
- InfrastructureType string
- A filter to return only target databases that match the specified infrastructure type.
- State string
- A filter to return only target databases that match the specified lifecycle state.
- TargetDatabase stringId 
- A filter to return the target database that matches the specified OCID.
- compartmentId String
- A filter to return only resources that match the specified compartment OCID.
- accessLevel String
- Valid values are RESTRICTED and ACCESSIBLE. Default is RESTRICTED. Setting this to ACCESSIBLE returns only those compartments for which the user has INSPECT permissions directly or indirectly (permissions can be on a resource in a subcompartment). When set to RESTRICTED permissions are checked and no partial results are displayed.
- associatedResource StringId 
- A filter to return the target databases that are associated to the resource id passed in as a parameter value.
- compartmentId BooleanIn Subtree 
- Default is false. When set to true, the hierarchy of compartments is traversed and all compartments and subcompartments in the tenancy are returned. Depends on the 'accessLevel' setting.
- databaseType String
- A filter to return only target databases that match the specified database type.
- displayName String
- A filter to return only resources that match the specified display name.
- filters
List<GetTarget Databases Filter> 
- infrastructureType String
- A filter to return only target databases that match the specified infrastructure type.
- state String
- A filter to return only target databases that match the specified lifecycle state.
- targetDatabase StringId 
- A filter to return the target database that matches the specified OCID.
- compartmentId string
- A filter to return only resources that match the specified compartment OCID.
- accessLevel string
- Valid values are RESTRICTED and ACCESSIBLE. Default is RESTRICTED. Setting this to ACCESSIBLE returns only those compartments for which the user has INSPECT permissions directly or indirectly (permissions can be on a resource in a subcompartment). When set to RESTRICTED permissions are checked and no partial results are displayed.
- associatedResource stringId 
- A filter to return the target databases that are associated to the resource id passed in as a parameter value.
- compartmentId booleanIn Subtree 
- Default is false. When set to true, the hierarchy of compartments is traversed and all compartments and subcompartments in the tenancy are returned. Depends on the 'accessLevel' setting.
- databaseType string
- A filter to return only target databases that match the specified database type.
- displayName string
- A filter to return only resources that match the specified display name.
- filters
GetTarget Databases Filter[] 
- infrastructureType string
- A filter to return only target databases that match the specified infrastructure type.
- state string
- A filter to return only target databases that match the specified lifecycle state.
- targetDatabase stringId 
- A filter to return the target database that matches the specified OCID.
- compartment_id str
- A filter to return only resources that match the specified compartment OCID.
- access_level str
- Valid values are RESTRICTED and ACCESSIBLE. Default is RESTRICTED. Setting this to ACCESSIBLE returns only those compartments for which the user has INSPECT permissions directly or indirectly (permissions can be on a resource in a subcompartment). When set to RESTRICTED permissions are checked and no partial results are displayed.
- associated_resource_ strid 
- A filter to return the target databases that are associated to the resource id passed in as a parameter value.
- compartment_id_ boolin_ subtree 
- Default is false. When set to true, the hierarchy of compartments is traversed and all compartments and subcompartments in the tenancy are returned. Depends on the 'accessLevel' setting.
- database_type str
- A filter to return only target databases that match the specified database type.
- display_name str
- A filter to return only resources that match the specified display name.
- filters
Sequence[GetTarget Databases Filter] 
- infrastructure_type str
- A filter to return only target databases that match the specified infrastructure type.
- state str
- A filter to return only target databases that match the specified lifecycle state.
- target_database_ strid 
- A filter to return the target database that matches the specified OCID.
- compartmentId String
- A filter to return only resources that match the specified compartment OCID.
- accessLevel String
- Valid values are RESTRICTED and ACCESSIBLE. Default is RESTRICTED. Setting this to ACCESSIBLE returns only those compartments for which the user has INSPECT permissions directly or indirectly (permissions can be on a resource in a subcompartment). When set to RESTRICTED permissions are checked and no partial results are displayed.
- associatedResource StringId 
- A filter to return the target databases that are associated to the resource id passed in as a parameter value.
- compartmentId BooleanIn Subtree 
- Default is false. When set to true, the hierarchy of compartments is traversed and all compartments and subcompartments in the tenancy are returned. Depends on the 'accessLevel' setting.
- databaseType String
- A filter to return only target databases that match the specified database type.
- displayName String
- A filter to return only resources that match the specified display name.
- filters List<Property Map>
- infrastructureType String
- A filter to return only target databases that match the specified infrastructure type.
- state String
- A filter to return only target databases that match the specified lifecycle state.
- targetDatabase StringId 
- A filter to return the target database that matches the specified OCID.
getTargetDatabases Result
The following output properties are available:
- CompartmentId string
- The OCID of the compartment which contains the Data Safe target database.
- Id string
- The provider-assigned unique ID for this managed resource.
- TargetDatabases List<GetTarget Databases Target Database> 
- The list of target_databases.
- AccessLevel string
- AssociatedResource stringId 
- CompartmentId boolIn Subtree 
- DatabaseType string
- The database type.
- DisplayName string
- The display name of the peer target database in Data Safe.
- Filters
List<GetTarget Databases Filter> 
- InfrastructureType string
- The infrastructure type the database is running on.
- State string
- The current state of the target database in Data Safe.
- TargetDatabase stringId 
- CompartmentId string
- The OCID of the compartment which contains the Data Safe target database.
- Id string
- The provider-assigned unique ID for this managed resource.
- TargetDatabases []GetTarget Databases Target Database 
- The list of target_databases.
- AccessLevel string
- AssociatedResource stringId 
- CompartmentId boolIn Subtree 
- DatabaseType string
- The database type.
- DisplayName string
- The display name of the peer target database in Data Safe.
- Filters
[]GetTarget Databases Filter 
- InfrastructureType string
- The infrastructure type the database is running on.
- State string
- The current state of the target database in Data Safe.
- TargetDatabase stringId 
- compartmentId String
- The OCID of the compartment which contains the Data Safe target database.
- id String
- The provider-assigned unique ID for this managed resource.
- targetDatabases List<GetTarget Databases Target Database> 
- The list of target_databases.
- accessLevel String
- associatedResource StringId 
- compartmentId BooleanIn Subtree 
- databaseType String
- The database type.
- displayName String
- The display name of the peer target database in Data Safe.
- filters
List<GetTarget Databases Filter> 
- infrastructureType String
- The infrastructure type the database is running on.
- state String
- The current state of the target database in Data Safe.
- targetDatabase StringId 
- compartmentId string
- The OCID of the compartment which contains the Data Safe target database.
- id string
- The provider-assigned unique ID for this managed resource.
- targetDatabases GetTarget Databases Target Database[] 
- The list of target_databases.
- accessLevel string
- associatedResource stringId 
- compartmentId booleanIn Subtree 
- databaseType string
- The database type.
- displayName string
- The display name of the peer target database in Data Safe.
- filters
GetTarget Databases Filter[] 
- infrastructureType string
- The infrastructure type the database is running on.
- state string
- The current state of the target database in Data Safe.
- targetDatabase stringId 
- compartment_id str
- The OCID of the compartment which contains the Data Safe target database.
- id str
- The provider-assigned unique ID for this managed resource.
- target_databases Sequence[GetTarget Databases Target Database] 
- The list of target_databases.
- access_level str
- associated_resource_ strid 
- compartment_id_ boolin_ subtree 
- database_type str
- The database type.
- display_name str
- The display name of the peer target database in Data Safe.
- filters
Sequence[GetTarget Databases Filter] 
- infrastructure_type str
- The infrastructure type the database is running on.
- state str
- The current state of the target database in Data Safe.
- target_database_ strid 
- compartmentId String
- The OCID of the compartment which contains the Data Safe target database.
- id String
- The provider-assigned unique ID for this managed resource.
- targetDatabases List<Property Map>
- The list of target_databases.
- accessLevel String
- associatedResource StringId 
- compartmentId BooleanIn Subtree 
- databaseType String
- The database type.
- displayName String
- The display name of the peer target database in Data Safe.
- filters List<Property Map>
- infrastructureType String
- The infrastructure type the database is running on.
- state String
- The current state of the target database in Data Safe.
- targetDatabase StringId 
Supporting Types
GetTargetDatabasesFilter   
GetTargetDatabasesTargetDatabase    
- AssociatedResource List<string>Ids 
- The OCIDs of associated resources like database, Data Safe private endpoint etc.
- CompartmentId string
- A filter to return only resources that match the specified compartment OCID.
- ConnectionOptions List<GetTarget Databases Target Database Connection Option> 
- Types of connection supported by Data Safe.
- Credentials
List<GetTarget Databases Target Database Credential> 
- The database credentials required for Data Safe to connect to the database.
- DatabaseDetails List<GetTarget Databases Target Database Database Detail> 
- Details of the database for the registration in Data Safe.
- 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"}
- Description string
- The description of the peer target database in Data Safe.
- DisplayName string
- A filter to return only resources that match the specified display name.
- 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"}
- Id string
- The OCID of the Data Safe target database.
- LifecycleDetails string
- Details about the current state of the peer target database in Data Safe.
- PeerTarget List<GetDatabase Details Target Databases Target Database Peer Target Database Detail> 
- PeerTarget List<GetDatabases Target Databases Target Database Peer Target Database> 
- The OCIDs of associated resources like Database, Data Safe private endpoint etc.
- State string
- A filter to return only target databases that match the specified lifecycle state.
- Dictionary<string, string>
- System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"orcl-cloud.free-tier-retained": "true"}
- TimeCreated string
- The date and time the database was registered in Data Safe and created as a target database in Data Safe.
- TimeUpdated string
- The date and time of the target database update in Data Safe.
- TlsConfigs List<GetTarget Databases Target Database Tls Config> 
- The details required to establish a TLS enabled connection.
- AssociatedResource []stringIds 
- The OCIDs of associated resources like database, Data Safe private endpoint etc.
- CompartmentId string
- A filter to return only resources that match the specified compartment OCID.
- ConnectionOptions []GetTarget Databases Target Database Connection Option 
- Types of connection supported by Data Safe.
- Credentials
[]GetTarget Databases Target Database Credential 
- The database credentials required for Data Safe to connect to the database.
- DatabaseDetails []GetTarget Databases Target Database Database Detail 
- Details of the database for the registration in Data Safe.
- 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"}
- Description string
- The description of the peer target database in Data Safe.
- DisplayName string
- A filter to return only resources that match the specified display name.
- 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"}
- Id string
- The OCID of the Data Safe target database.
- LifecycleDetails string
- Details about the current state of the peer target database in Data Safe.
- PeerTarget []GetDatabase Details Target Databases Target Database Peer Target Database Detail 
- PeerTarget []GetDatabases Target Databases Target Database Peer Target Database 
- The OCIDs of associated resources like Database, Data Safe private endpoint etc.
- State string
- A filter to return only target databases that match the specified lifecycle state.
- map[string]string
- System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"orcl-cloud.free-tier-retained": "true"}
- TimeCreated string
- The date and time the database was registered in Data Safe and created as a target database in Data Safe.
- TimeUpdated string
- The date and time of the target database update in Data Safe.
- TlsConfigs []GetTarget Databases Target Database Tls Config 
- The details required to establish a TLS enabled connection.
- associatedResource List<String>Ids 
- The OCIDs of associated resources like database, Data Safe private endpoint etc.
- compartmentId String
- A filter to return only resources that match the specified compartment OCID.
- connectionOptions List<GetTarget Databases Target Database Connection Option> 
- Types of connection supported by Data Safe.
- credentials
List<GetTarget Databases Target Database Credential> 
- The database credentials required for Data Safe to connect to the database.
- databaseDetails List<GetTarget Databases Target Database Database Detail> 
- Details of the database for the registration in Data Safe.
- 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"}
- description String
- The description of the peer target database in Data Safe.
- displayName String
- A filter to return only resources that match the specified display name.
- 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"}
- id String
- The OCID of the Data Safe target database.
- lifecycleDetails String
- Details about the current state of the peer target database in Data Safe.
- peerTarget List<GetDatabase Details Target Databases Target Database Peer Target Database Detail> 
- peerTarget List<GetDatabases Target Databases Target Database Peer Target Database> 
- The OCIDs of associated resources like Database, Data Safe private endpoint etc.
- state String
- A filter to return only target databases that match the specified lifecycle state.
- Map<String,String>
- System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"orcl-cloud.free-tier-retained": "true"}
- timeCreated String
- The date and time the database was registered in Data Safe and created as a target database in Data Safe.
- timeUpdated String
- The date and time of the target database update in Data Safe.
- tlsConfigs List<GetTarget Databases Target Database Tls Config> 
- The details required to establish a TLS enabled connection.
- associatedResource string[]Ids 
- The OCIDs of associated resources like database, Data Safe private endpoint etc.
- compartmentId string
- A filter to return only resources that match the specified compartment OCID.
- connectionOptions GetTarget Databases Target Database Connection Option[] 
- Types of connection supported by Data Safe.
- credentials
GetTarget Databases Target Database Credential[] 
- The database credentials required for Data Safe to connect to the database.
- databaseDetails GetTarget Databases Target Database Database Detail[] 
- Details of the database for the registration in Data Safe.
- {[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"}
- description string
- The description of the peer target database in Data Safe.
- displayName string
- A filter to return only resources that match the specified display name.
- {[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"}
- id string
- The OCID of the Data Safe target database.
- lifecycleDetails string
- Details about the current state of the peer target database in Data Safe.
- peerTarget GetDatabase Details Target Databases Target Database Peer Target Database Detail[] 
- peerTarget GetDatabases Target Databases Target Database Peer Target Database[] 
- The OCIDs of associated resources like Database, Data Safe private endpoint etc.
- state string
- A filter to return only target databases that match the specified lifecycle state.
- {[key: string]: string}
- System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"orcl-cloud.free-tier-retained": "true"}
- timeCreated string
- The date and time the database was registered in Data Safe and created as a target database in Data Safe.
- timeUpdated string
- The date and time of the target database update in Data Safe.
- tlsConfigs GetTarget Databases Target Database Tls Config[] 
- The details required to establish a TLS enabled connection.
- associated_resource_ Sequence[str]ids 
- The OCIDs of associated resources like database, Data Safe private endpoint etc.
- compartment_id str
- A filter to return only resources that match the specified compartment OCID.
- connection_options Sequence[GetTarget Databases Target Database Connection Option] 
- Types of connection supported by Data Safe.
- credentials
Sequence[GetTarget Databases Target Database Credential] 
- The database credentials required for Data Safe to connect to the database.
- database_details Sequence[GetTarget Databases Target Database Database Detail] 
- Details of the database for the registration in Data Safe.
- 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"}
- description str
- The description of the peer target database in Data Safe.
- display_name str
- A filter to return only resources that match the specified display name.
- 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"}
- id str
- The OCID of the Data Safe target database.
- lifecycle_details str
- Details about the current state of the peer target database in Data Safe.
- peer_target_ Sequence[Getdatabase_ details Target Databases Target Database Peer Target Database Detail] 
- peer_target_ Sequence[Getdatabases Target Databases Target Database Peer Target Database] 
- The OCIDs of associated resources like Database, Data Safe private endpoint etc.
- state str
- A filter to return only target databases that match the specified lifecycle state.
- Mapping[str, str]
- System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"orcl-cloud.free-tier-retained": "true"}
- time_created str
- The date and time the database was registered in Data Safe and created as a target database in Data Safe.
- time_updated str
- The date and time of the target database update in Data Safe.
- tls_configs Sequence[GetTarget Databases Target Database Tls Config] 
- The details required to establish a TLS enabled connection.
- associatedResource List<String>Ids 
- The OCIDs of associated resources like database, Data Safe private endpoint etc.
- compartmentId String
- A filter to return only resources that match the specified compartment OCID.
- connectionOptions List<Property Map>
- Types of connection supported by Data Safe.
- credentials List<Property Map>
- The database credentials required for Data Safe to connect to the database.
- databaseDetails List<Property Map>
- Details of the database for the registration in Data Safe.
- 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"}
- description String
- The description of the peer target database in Data Safe.
- displayName String
- A filter to return only resources that match the specified display name.
- 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"}
- id String
- The OCID of the Data Safe target database.
- lifecycleDetails String
- Details about the current state of the peer target database in Data Safe.
- peerTarget List<Property Map>Database Details 
- peerTarget List<Property Map>Databases 
- The OCIDs of associated resources like Database, Data Safe private endpoint etc.
- state String
- A filter to return only target databases that match the specified lifecycle state.
- Map<String>
- System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"orcl-cloud.free-tier-retained": "true"}
- timeCreated String
- The date and time the database was registered in Data Safe and created as a target database in Data Safe.
- timeUpdated String
- The date and time of the target database update in Data Safe.
- tlsConfigs List<Property Map>
- The details required to establish a TLS enabled connection.
GetTargetDatabasesTargetDatabaseConnectionOption      
- ConnectionType string
- The connection type used to connect to the database. Allowed values:- PRIVATE_ENDPOINT - Represents connection through private endpoint in Data Safe.
- ONPREM_CONNECTOR - Represents connection through on-premises connector in Data Safe.
 
- DatasafePrivate stringEndpoint Id 
- The OCID of the Data Safe private endpoint.
- OnPrem stringConnector Id 
- The OCID of the on-premises connector.
- ConnectionType string
- The connection type used to connect to the database. Allowed values:- PRIVATE_ENDPOINT - Represents connection through private endpoint in Data Safe.
- ONPREM_CONNECTOR - Represents connection through on-premises connector in Data Safe.
 
- DatasafePrivate stringEndpoint Id 
- The OCID of the Data Safe private endpoint.
- OnPrem stringConnector Id 
- The OCID of the on-premises connector.
- connectionType String
- The connection type used to connect to the database. Allowed values:- PRIVATE_ENDPOINT - Represents connection through private endpoint in Data Safe.
- ONPREM_CONNECTOR - Represents connection through on-premises connector in Data Safe.
 
- datasafePrivate StringEndpoint Id 
- The OCID of the Data Safe private endpoint.
- onPrem StringConnector Id 
- The OCID of the on-premises connector.
- connectionType string
- The connection type used to connect to the database. Allowed values:- PRIVATE_ENDPOINT - Represents connection through private endpoint in Data Safe.
- ONPREM_CONNECTOR - Represents connection through on-premises connector in Data Safe.
 
- datasafePrivate stringEndpoint Id 
- The OCID of the Data Safe private endpoint.
- onPrem stringConnector Id 
- The OCID of the on-premises connector.
- connection_type str
- The connection type used to connect to the database. Allowed values:- PRIVATE_ENDPOINT - Represents connection through private endpoint in Data Safe.
- ONPREM_CONNECTOR - Represents connection through on-premises connector in Data Safe.
 
- datasafe_private_ strendpoint_ id 
- The OCID of the Data Safe private endpoint.
- on_prem_ strconnector_ id 
- The OCID of the on-premises connector.
- connectionType String
- The connection type used to connect to the database. Allowed values:- PRIVATE_ENDPOINT - Represents connection through private endpoint in Data Safe.
- ONPREM_CONNECTOR - Represents connection through on-premises connector in Data Safe.
 
- datasafePrivate StringEndpoint Id 
- The OCID of the Data Safe private endpoint.
- onPrem StringConnector Id 
- The OCID of the on-premises connector.
GetTargetDatabasesTargetDatabaseCredential     
GetTargetDatabasesTargetDatabaseDatabaseDetail      
- AutonomousDatabase stringId 
- The OCID of the Autonomous Database registered as a target database in Data Safe.
- DatabaseType string
- A filter to return only target databases that match the specified database type.
- DbSystem stringId 
- The OCID of the cloud database registered as a target database in Data Safe.
- InfrastructureType string
- A filter to return only target databases that match the specified infrastructure type.
- InstanceId string
- The OCID of the compute instance on which the database is running.
- IpAddresses List<string>
- The list of database host IP Addresses. Fully qualified domain names can be used if connectionType is 'ONPREM_CONNECTOR'.
- ListenerPort int
- The port number of the database listener.
- ServiceName string
- The service name of the database registered as target database.
- VmCluster stringId 
- The OCID of the VM cluster in which the database is running.
- AutonomousDatabase stringId 
- The OCID of the Autonomous Database registered as a target database in Data Safe.
- DatabaseType string
- A filter to return only target databases that match the specified database type.
- DbSystem stringId 
- The OCID of the cloud database registered as a target database in Data Safe.
- InfrastructureType string
- A filter to return only target databases that match the specified infrastructure type.
- InstanceId string
- The OCID of the compute instance on which the database is running.
- IpAddresses []string
- The list of database host IP Addresses. Fully qualified domain names can be used if connectionType is 'ONPREM_CONNECTOR'.
- ListenerPort int
- The port number of the database listener.
- ServiceName string
- The service name of the database registered as target database.
- VmCluster stringId 
- The OCID of the VM cluster in which the database is running.
- autonomousDatabase StringId 
- The OCID of the Autonomous Database registered as a target database in Data Safe.
- databaseType String
- A filter to return only target databases that match the specified database type.
- dbSystem StringId 
- The OCID of the cloud database registered as a target database in Data Safe.
- infrastructureType String
- A filter to return only target databases that match the specified infrastructure type.
- instanceId String
- The OCID of the compute instance on which the database is running.
- ipAddresses List<String>
- The list of database host IP Addresses. Fully qualified domain names can be used if connectionType is 'ONPREM_CONNECTOR'.
- listenerPort Integer
- The port number of the database listener.
- serviceName String
- The service name of the database registered as target database.
- vmCluster StringId 
- The OCID of the VM cluster in which the database is running.
- autonomousDatabase stringId 
- The OCID of the Autonomous Database registered as a target database in Data Safe.
- databaseType string
- A filter to return only target databases that match the specified database type.
- dbSystem stringId 
- The OCID of the cloud database registered as a target database in Data Safe.
- infrastructureType string
- A filter to return only target databases that match the specified infrastructure type.
- instanceId string
- The OCID of the compute instance on which the database is running.
- ipAddresses string[]
- The list of database host IP Addresses. Fully qualified domain names can be used if connectionType is 'ONPREM_CONNECTOR'.
- listenerPort number
- The port number of the database listener.
- serviceName string
- The service name of the database registered as target database.
- vmCluster stringId 
- The OCID of the VM cluster in which the database is running.
- autonomous_database_ strid 
- The OCID of the Autonomous Database registered as a target database in Data Safe.
- database_type str
- A filter to return only target databases that match the specified database type.
- db_system_ strid 
- The OCID of the cloud database registered as a target database in Data Safe.
- infrastructure_type str
- A filter to return only target databases that match the specified infrastructure type.
- instance_id str
- The OCID of the compute instance on which the database is running.
- ip_addresses Sequence[str]
- The list of database host IP Addresses. Fully qualified domain names can be used if connectionType is 'ONPREM_CONNECTOR'.
- listener_port int
- The port number of the database listener.
- service_name str
- The service name of the database registered as target database.
- vm_cluster_ strid 
- The OCID of the VM cluster in which the database is running.
- autonomousDatabase StringId 
- The OCID of the Autonomous Database registered as a target database in Data Safe.
- databaseType String
- A filter to return only target databases that match the specified database type.
- dbSystem StringId 
- The OCID of the cloud database registered as a target database in Data Safe.
- infrastructureType String
- A filter to return only target databases that match the specified infrastructure type.
- instanceId String
- The OCID of the compute instance on which the database is running.
- ipAddresses List<String>
- The list of database host IP Addresses. Fully qualified domain names can be used if connectionType is 'ONPREM_CONNECTOR'.
- listenerPort Number
- The port number of the database listener.
- serviceName String
- The service name of the database registered as target database.
- vmCluster StringId 
- The OCID of the VM cluster in which the database is running.
GetTargetDatabasesTargetDatabasePeerTargetDatabase       
- DatabaseDetails List<GetTarget Databases Target Database Peer Target Database Database Detail> 
- Details of the database for the registration in Data Safe.
- DatabaseUnique stringName 
- Unique name of the database associated to the peer target database.
- DataguardAssociation stringId 
- The OCID of the Data Guard Association resource in which the database associated to the peer target database is considered as peer database to the primary database.
- Description string
- The description of the peer target database in Data Safe.
- DisplayName string
- A filter to return only resources that match the specified display name.
- Key int
- The secondary key assigned for the peer target database in Data Safe.
- LifecycleDetails string
- Details about the current state of the peer target database in Data Safe.
- Role string
- Role of the database associated to the peer target database.
- State string
- A filter to return only target databases that match the specified lifecycle state.
- TimeCreated string
- The date and time the database was registered in Data Safe and created as a target database in Data Safe.
- TlsConfigs List<GetTarget Databases Target Database Peer Target Database Tls Config> 
- The details required to establish a TLS enabled connection.
- DatabaseDetails []GetTarget Databases Target Database Peer Target Database Database Detail 
- Details of the database for the registration in Data Safe.
- DatabaseUnique stringName 
- Unique name of the database associated to the peer target database.
- DataguardAssociation stringId 
- The OCID of the Data Guard Association resource in which the database associated to the peer target database is considered as peer database to the primary database.
- Description string
- The description of the peer target database in Data Safe.
- DisplayName string
- A filter to return only resources that match the specified display name.
- Key int
- The secondary key assigned for the peer target database in Data Safe.
- LifecycleDetails string
- Details about the current state of the peer target database in Data Safe.
- Role string
- Role of the database associated to the peer target database.
- State string
- A filter to return only target databases that match the specified lifecycle state.
- TimeCreated string
- The date and time the database was registered in Data Safe and created as a target database in Data Safe.
- TlsConfigs []GetTarget Databases Target Database Peer Target Database Tls Config 
- The details required to establish a TLS enabled connection.
- databaseDetails List<GetTarget Databases Target Database Peer Target Database Database Detail> 
- Details of the database for the registration in Data Safe.
- databaseUnique StringName 
- Unique name of the database associated to the peer target database.
- dataguardAssociation StringId 
- The OCID of the Data Guard Association resource in which the database associated to the peer target database is considered as peer database to the primary database.
- description String
- The description of the peer target database in Data Safe.
- displayName String
- A filter to return only resources that match the specified display name.
- key Integer
- The secondary key assigned for the peer target database in Data Safe.
- lifecycleDetails String
- Details about the current state of the peer target database in Data Safe.
- role String
- Role of the database associated to the peer target database.
- state String
- A filter to return only target databases that match the specified lifecycle state.
- timeCreated String
- The date and time the database was registered in Data Safe and created as a target database in Data Safe.
- tlsConfigs List<GetTarget Databases Target Database Peer Target Database Tls Config> 
- The details required to establish a TLS enabled connection.
- databaseDetails GetTarget Databases Target Database Peer Target Database Database Detail[] 
- Details of the database for the registration in Data Safe.
- databaseUnique stringName 
- Unique name of the database associated to the peer target database.
- dataguardAssociation stringId 
- The OCID of the Data Guard Association resource in which the database associated to the peer target database is considered as peer database to the primary database.
- description string
- The description of the peer target database in Data Safe.
- displayName string
- A filter to return only resources that match the specified display name.
- key number
- The secondary key assigned for the peer target database in Data Safe.
- lifecycleDetails string
- Details about the current state of the peer target database in Data Safe.
- role string
- Role of the database associated to the peer target database.
- state string
- A filter to return only target databases that match the specified lifecycle state.
- timeCreated string
- The date and time the database was registered in Data Safe and created as a target database in Data Safe.
- tlsConfigs GetTarget Databases Target Database Peer Target Database Tls Config[] 
- The details required to establish a TLS enabled connection.
- database_details Sequence[GetTarget Databases Target Database Peer Target Database Database Detail] 
- Details of the database for the registration in Data Safe.
- database_unique_ strname 
- Unique name of the database associated to the peer target database.
- dataguard_association_ strid 
- The OCID of the Data Guard Association resource in which the database associated to the peer target database is considered as peer database to the primary database.
- description str
- The description of the peer target database in Data Safe.
- display_name str
- A filter to return only resources that match the specified display name.
- key int
- The secondary key assigned for the peer target database in Data Safe.
- lifecycle_details str
- Details about the current state of the peer target database in Data Safe.
- role str
- Role of the database associated to the peer target database.
- state str
- A filter to return only target databases that match the specified lifecycle state.
- time_created str
- The date and time the database was registered in Data Safe and created as a target database in Data Safe.
- tls_configs Sequence[GetTarget Databases Target Database Peer Target Database Tls Config] 
- The details required to establish a TLS enabled connection.
- databaseDetails List<Property Map>
- Details of the database for the registration in Data Safe.
- databaseUnique StringName 
- Unique name of the database associated to the peer target database.
- dataguardAssociation StringId 
- The OCID of the Data Guard Association resource in which the database associated to the peer target database is considered as peer database to the primary database.
- description String
- The description of the peer target database in Data Safe.
- displayName String
- A filter to return only resources that match the specified display name.
- key Number
- The secondary key assigned for the peer target database in Data Safe.
- lifecycleDetails String
- Details about the current state of the peer target database in Data Safe.
- role String
- Role of the database associated to the peer target database.
- state String
- A filter to return only target databases that match the specified lifecycle state.
- timeCreated String
- The date and time the database was registered in Data Safe and created as a target database in Data Safe.
- tlsConfigs List<Property Map>
- The details required to establish a TLS enabled connection.
GetTargetDatabasesTargetDatabasePeerTargetDatabaseDatabaseDetail         
- AutonomousDatabase stringId 
- The OCID of the Autonomous Database registered as a target database in Data Safe.
- DatabaseType string
- A filter to return only target databases that match the specified database type.
- DbSystem stringId 
- The OCID of the cloud database registered as a target database in Data Safe.
- InfrastructureType string
- A filter to return only target databases that match the specified infrastructure type.
- InstanceId string
- The OCID of the compute instance on which the database is running.
- IpAddresses List<string>
- The list of database host IP Addresses. Fully qualified domain names can be used if connectionType is 'ONPREM_CONNECTOR'.
- ListenerPort int
- The port number of the database listener.
- ServiceName string
- The service name of the database registered as target database.
- VmCluster stringId 
- The OCID of the VM cluster in which the database is running.
- AutonomousDatabase stringId 
- The OCID of the Autonomous Database registered as a target database in Data Safe.
- DatabaseType string
- A filter to return only target databases that match the specified database type.
- DbSystem stringId 
- The OCID of the cloud database registered as a target database in Data Safe.
- InfrastructureType string
- A filter to return only target databases that match the specified infrastructure type.
- InstanceId string
- The OCID of the compute instance on which the database is running.
- IpAddresses []string
- The list of database host IP Addresses. Fully qualified domain names can be used if connectionType is 'ONPREM_CONNECTOR'.
- ListenerPort int
- The port number of the database listener.
- ServiceName string
- The service name of the database registered as target database.
- VmCluster stringId 
- The OCID of the VM cluster in which the database is running.
- autonomousDatabase StringId 
- The OCID of the Autonomous Database registered as a target database in Data Safe.
- databaseType String
- A filter to return only target databases that match the specified database type.
- dbSystem StringId 
- The OCID of the cloud database registered as a target database in Data Safe.
- infrastructureType String
- A filter to return only target databases that match the specified infrastructure type.
- instanceId String
- The OCID of the compute instance on which the database is running.
- ipAddresses List<String>
- The list of database host IP Addresses. Fully qualified domain names can be used if connectionType is 'ONPREM_CONNECTOR'.
- listenerPort Integer
- The port number of the database listener.
- serviceName String
- The service name of the database registered as target database.
- vmCluster StringId 
- The OCID of the VM cluster in which the database is running.
- autonomousDatabase stringId 
- The OCID of the Autonomous Database registered as a target database in Data Safe.
- databaseType string
- A filter to return only target databases that match the specified database type.
- dbSystem stringId 
- The OCID of the cloud database registered as a target database in Data Safe.
- infrastructureType string
- A filter to return only target databases that match the specified infrastructure type.
- instanceId string
- The OCID of the compute instance on which the database is running.
- ipAddresses string[]
- The list of database host IP Addresses. Fully qualified domain names can be used if connectionType is 'ONPREM_CONNECTOR'.
- listenerPort number
- The port number of the database listener.
- serviceName string
- The service name of the database registered as target database.
- vmCluster stringId 
- The OCID of the VM cluster in which the database is running.
- autonomous_database_ strid 
- The OCID of the Autonomous Database registered as a target database in Data Safe.
- database_type str
- A filter to return only target databases that match the specified database type.
- db_system_ strid 
- The OCID of the cloud database registered as a target database in Data Safe.
- infrastructure_type str
- A filter to return only target databases that match the specified infrastructure type.
- instance_id str
- The OCID of the compute instance on which the database is running.
- ip_addresses Sequence[str]
- The list of database host IP Addresses. Fully qualified domain names can be used if connectionType is 'ONPREM_CONNECTOR'.
- listener_port int
- The port number of the database listener.
- service_name str
- The service name of the database registered as target database.
- vm_cluster_ strid 
- The OCID of the VM cluster in which the database is running.
- autonomousDatabase StringId 
- The OCID of the Autonomous Database registered as a target database in Data Safe.
- databaseType String
- A filter to return only target databases that match the specified database type.
- dbSystem StringId 
- The OCID of the cloud database registered as a target database in Data Safe.
- infrastructureType String
- A filter to return only target databases that match the specified infrastructure type.
- instanceId String
- The OCID of the compute instance on which the database is running.
- ipAddresses List<String>
- The list of database host IP Addresses. Fully qualified domain names can be used if connectionType is 'ONPREM_CONNECTOR'.
- listenerPort Number
- The port number of the database listener.
- serviceName String
- The service name of the database registered as target database.
- vmCluster StringId 
- The OCID of the VM cluster in which the database is running.
GetTargetDatabasesTargetDatabasePeerTargetDatabaseDetail        
- DatabaseDetails List<GetTarget Databases Target Database Peer Target Database Detail Database Detail> 
- Details of the database for the registration in Data Safe.
- DataguardAssociation stringId 
- The OCID of the Data Guard Association resource in which the database associated to the peer target database is considered as peer database to the primary database.
- Description string
- The description of the peer target database in Data Safe.
- DisplayName string
- A filter to return only resources that match the specified display name.
- TlsConfigs List<GetTarget Databases Target Database Peer Target Database Detail Tls Config> 
- The details required to establish a TLS enabled connection.
- DatabaseDetails []GetTarget Databases Target Database Peer Target Database Detail Database Detail 
- Details of the database for the registration in Data Safe.
- DataguardAssociation stringId 
- The OCID of the Data Guard Association resource in which the database associated to the peer target database is considered as peer database to the primary database.
- Description string
- The description of the peer target database in Data Safe.
- DisplayName string
- A filter to return only resources that match the specified display name.
- TlsConfigs []GetTarget Databases Target Database Peer Target Database Detail Tls Config 
- The details required to establish a TLS enabled connection.
- databaseDetails List<GetTarget Databases Target Database Peer Target Database Detail Database Detail> 
- Details of the database for the registration in Data Safe.
- dataguardAssociation StringId 
- The OCID of the Data Guard Association resource in which the database associated to the peer target database is considered as peer database to the primary database.
- description String
- The description of the peer target database in Data Safe.
- displayName String
- A filter to return only resources that match the specified display name.
- tlsConfigs List<GetTarget Databases Target Database Peer Target Database Detail Tls Config> 
- The details required to establish a TLS enabled connection.
- databaseDetails GetTarget Databases Target Database Peer Target Database Detail Database Detail[] 
- Details of the database for the registration in Data Safe.
- dataguardAssociation stringId 
- The OCID of the Data Guard Association resource in which the database associated to the peer target database is considered as peer database to the primary database.
- description string
- The description of the peer target database in Data Safe.
- displayName string
- A filter to return only resources that match the specified display name.
- tlsConfigs GetTarget Databases Target Database Peer Target Database Detail Tls Config[] 
- The details required to establish a TLS enabled connection.
- database_details Sequence[GetTarget Databases Target Database Peer Target Database Detail Database Detail] 
- Details of the database for the registration in Data Safe.
- dataguard_association_ strid 
- The OCID of the Data Guard Association resource in which the database associated to the peer target database is considered as peer database to the primary database.
- description str
- The description of the peer target database in Data Safe.
- display_name str
- A filter to return only resources that match the specified display name.
- tls_configs Sequence[GetTarget Databases Target Database Peer Target Database Detail Tls Config] 
- The details required to establish a TLS enabled connection.
- databaseDetails List<Property Map>
- Details of the database for the registration in Data Safe.
- dataguardAssociation StringId 
- The OCID of the Data Guard Association resource in which the database associated to the peer target database is considered as peer database to the primary database.
- description String
- The description of the peer target database in Data Safe.
- displayName String
- A filter to return only resources that match the specified display name.
- tlsConfigs List<Property Map>
- The details required to establish a TLS enabled connection.
GetTargetDatabasesTargetDatabasePeerTargetDatabaseDetailDatabaseDetail          
- AutonomousDatabase stringId 
- The OCID of the Autonomous Database registered as a target database in Data Safe.
- DatabaseType string
- A filter to return only target databases that match the specified database type.
- DbSystem stringId 
- The OCID of the cloud database registered as a target database in Data Safe.
- InfrastructureType string
- A filter to return only target databases that match the specified infrastructure type.
- InstanceId string
- The OCID of the compute instance on which the database is running.
- IpAddresses List<string>
- The list of database host IP Addresses. Fully qualified domain names can be used if connectionType is 'ONPREM_CONNECTOR'.
- ListenerPort int
- The port number of the database listener.
- ServiceName string
- The service name of the database registered as target database.
- VmCluster stringId 
- The OCID of the VM cluster in which the database is running.
- AutonomousDatabase stringId 
- The OCID of the Autonomous Database registered as a target database in Data Safe.
- DatabaseType string
- A filter to return only target databases that match the specified database type.
- DbSystem stringId 
- The OCID of the cloud database registered as a target database in Data Safe.
- InfrastructureType string
- A filter to return only target databases that match the specified infrastructure type.
- InstanceId string
- The OCID of the compute instance on which the database is running.
- IpAddresses []string
- The list of database host IP Addresses. Fully qualified domain names can be used if connectionType is 'ONPREM_CONNECTOR'.
- ListenerPort int
- The port number of the database listener.
- ServiceName string
- The service name of the database registered as target database.
- VmCluster stringId 
- The OCID of the VM cluster in which the database is running.
- autonomousDatabase StringId 
- The OCID of the Autonomous Database registered as a target database in Data Safe.
- databaseType String
- A filter to return only target databases that match the specified database type.
- dbSystem StringId 
- The OCID of the cloud database registered as a target database in Data Safe.
- infrastructureType String
- A filter to return only target databases that match the specified infrastructure type.
- instanceId String
- The OCID of the compute instance on which the database is running.
- ipAddresses List<String>
- The list of database host IP Addresses. Fully qualified domain names can be used if connectionType is 'ONPREM_CONNECTOR'.
- listenerPort Integer
- The port number of the database listener.
- serviceName String
- The service name of the database registered as target database.
- vmCluster StringId 
- The OCID of the VM cluster in which the database is running.
- autonomousDatabase stringId 
- The OCID of the Autonomous Database registered as a target database in Data Safe.
- databaseType string
- A filter to return only target databases that match the specified database type.
- dbSystem stringId 
- The OCID of the cloud database registered as a target database in Data Safe.
- infrastructureType string
- A filter to return only target databases that match the specified infrastructure type.
- instanceId string
- The OCID of the compute instance on which the database is running.
- ipAddresses string[]
- The list of database host IP Addresses. Fully qualified domain names can be used if connectionType is 'ONPREM_CONNECTOR'.
- listenerPort number
- The port number of the database listener.
- serviceName string
- The service name of the database registered as target database.
- vmCluster stringId 
- The OCID of the VM cluster in which the database is running.
- autonomous_database_ strid 
- The OCID of the Autonomous Database registered as a target database in Data Safe.
- database_type str
- A filter to return only target databases that match the specified database type.
- db_system_ strid 
- The OCID of the cloud database registered as a target database in Data Safe.
- infrastructure_type str
- A filter to return only target databases that match the specified infrastructure type.
- instance_id str
- The OCID of the compute instance on which the database is running.
- ip_addresses Sequence[str]
- The list of database host IP Addresses. Fully qualified domain names can be used if connectionType is 'ONPREM_CONNECTOR'.
- listener_port int
- The port number of the database listener.
- service_name str
- The service name of the database registered as target database.
- vm_cluster_ strid 
- The OCID of the VM cluster in which the database is running.
- autonomousDatabase StringId 
- The OCID of the Autonomous Database registered as a target database in Data Safe.
- databaseType String
- A filter to return only target databases that match the specified database type.
- dbSystem StringId 
- The OCID of the cloud database registered as a target database in Data Safe.
- infrastructureType String
- A filter to return only target databases that match the specified infrastructure type.
- instanceId String
- The OCID of the compute instance on which the database is running.
- ipAddresses List<String>
- The list of database host IP Addresses. Fully qualified domain names can be used if connectionType is 'ONPREM_CONNECTOR'.
- listenerPort Number
- The port number of the database listener.
- serviceName String
- The service name of the database registered as target database.
- vmCluster StringId 
- The OCID of the VM cluster in which the database is running.
GetTargetDatabasesTargetDatabasePeerTargetDatabaseDetailTlsConfig          
- CertificateStore stringType 
- The format of the certificate store.
- KeyStore stringContent 
- Base64 encoded string of key store file content.
- Status string
- Status to represent whether the database connection is TLS enabled or not.
- StorePassword string
- The password to read the trust store and key store files, if they are password protected.
- TrustStore stringContent 
- Base64 encoded string of trust store file content.
- CertificateStore stringType 
- The format of the certificate store.
- KeyStore stringContent 
- Base64 encoded string of key store file content.
- Status string
- Status to represent whether the database connection is TLS enabled or not.
- StorePassword string
- The password to read the trust store and key store files, if they are password protected.
- TrustStore stringContent 
- Base64 encoded string of trust store file content.
- certificateStore StringType 
- The format of the certificate store.
- keyStore StringContent 
- Base64 encoded string of key store file content.
- status String
- Status to represent whether the database connection is TLS enabled or not.
- storePassword String
- The password to read the trust store and key store files, if they are password protected.
- trustStore StringContent 
- Base64 encoded string of trust store file content.
- certificateStore stringType 
- The format of the certificate store.
- keyStore stringContent 
- Base64 encoded string of key store file content.
- status string
- Status to represent whether the database connection is TLS enabled or not.
- storePassword string
- The password to read the trust store and key store files, if they are password protected.
- trustStore stringContent 
- Base64 encoded string of trust store file content.
- certificate_store_ strtype 
- The format of the certificate store.
- key_store_ strcontent 
- Base64 encoded string of key store file content.
- status str
- Status to represent whether the database connection is TLS enabled or not.
- store_password str
- The password to read the trust store and key store files, if they are password protected.
- trust_store_ strcontent 
- Base64 encoded string of trust store file content.
- certificateStore StringType 
- The format of the certificate store.
- keyStore StringContent 
- Base64 encoded string of key store file content.
- status String
- Status to represent whether the database connection is TLS enabled or not.
- storePassword String
- The password to read the trust store and key store files, if they are password protected.
- trustStore StringContent 
- Base64 encoded string of trust store file content.
GetTargetDatabasesTargetDatabasePeerTargetDatabaseTlsConfig         
- CertificateStore stringType 
- The format of the certificate store.
- KeyStore stringContent 
- Base64 encoded string of key store file content.
- Status string
- Status to represent whether the database connection is TLS enabled or not.
- StorePassword string
- The password to read the trust store and key store files, if they are password protected.
- TrustStore stringContent 
- Base64 encoded string of trust store file content.
- CertificateStore stringType 
- The format of the certificate store.
- KeyStore stringContent 
- Base64 encoded string of key store file content.
- Status string
- Status to represent whether the database connection is TLS enabled or not.
- StorePassword string
- The password to read the trust store and key store files, if they are password protected.
- TrustStore stringContent 
- Base64 encoded string of trust store file content.
- certificateStore StringType 
- The format of the certificate store.
- keyStore StringContent 
- Base64 encoded string of key store file content.
- status String
- Status to represent whether the database connection is TLS enabled or not.
- storePassword String
- The password to read the trust store and key store files, if they are password protected.
- trustStore StringContent 
- Base64 encoded string of trust store file content.
- certificateStore stringType 
- The format of the certificate store.
- keyStore stringContent 
- Base64 encoded string of key store file content.
- status string
- Status to represent whether the database connection is TLS enabled or not.
- storePassword string
- The password to read the trust store and key store files, if they are password protected.
- trustStore stringContent 
- Base64 encoded string of trust store file content.
- certificate_store_ strtype 
- The format of the certificate store.
- key_store_ strcontent 
- Base64 encoded string of key store file content.
- status str
- Status to represent whether the database connection is TLS enabled or not.
- store_password str
- The password to read the trust store and key store files, if they are password protected.
- trust_store_ strcontent 
- Base64 encoded string of trust store file content.
- certificateStore StringType 
- The format of the certificate store.
- keyStore StringContent 
- Base64 encoded string of key store file content.
- status String
- Status to represent whether the database connection is TLS enabled or not.
- storePassword String
- The password to read the trust store and key store files, if they are password protected.
- trustStore StringContent 
- Base64 encoded string of trust store file content.
GetTargetDatabasesTargetDatabaseTlsConfig      
- CertificateStore stringType 
- The format of the certificate store.
- KeyStore stringContent 
- Base64 encoded string of key store file content.
- Status string
- Status to represent whether the database connection is TLS enabled or not.
- StorePassword string
- The password to read the trust store and key store files, if they are password protected.
- TrustStore stringContent 
- Base64 encoded string of trust store file content.
- CertificateStore stringType 
- The format of the certificate store.
- KeyStore stringContent 
- Base64 encoded string of key store file content.
- Status string
- Status to represent whether the database connection is TLS enabled or not.
- StorePassword string
- The password to read the trust store and key store files, if they are password protected.
- TrustStore stringContent 
- Base64 encoded string of trust store file content.
- certificateStore StringType 
- The format of the certificate store.
- keyStore StringContent 
- Base64 encoded string of key store file content.
- status String
- Status to represent whether the database connection is TLS enabled or not.
- storePassword String
- The password to read the trust store and key store files, if they are password protected.
- trustStore StringContent 
- Base64 encoded string of trust store file content.
- certificateStore stringType 
- The format of the certificate store.
- keyStore stringContent 
- Base64 encoded string of key store file content.
- status string
- Status to represent whether the database connection is TLS enabled or not.
- storePassword string
- The password to read the trust store and key store files, if they are password protected.
- trustStore stringContent 
- Base64 encoded string of trust store file content.
- certificate_store_ strtype 
- The format of the certificate store.
- key_store_ strcontent 
- Base64 encoded string of key store file content.
- status str
- Status to represent whether the database connection is TLS enabled or not.
- store_password str
- The password to read the trust store and key store files, if they are password protected.
- trust_store_ strcontent 
- Base64 encoded string of trust store file content.
- certificateStore StringType 
- The format of the certificate store.
- keyStore StringContent 
- Base64 encoded string of key store file content.
- status String
- Status to represent whether the database connection is TLS enabled or not.
- storePassword String
- The password to read the trust store and key store files, if they are password protected.
- trustStore StringContent 
- Base64 encoded string of trust store file content.
Package Details
- Repository
- oci pulumi/pulumi-oci
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the ociTerraform Provider.