Oracle Cloud Infrastructure v2.33.0 published on Thursday, May 1, 2025 by Pulumi
oci.Database.getPluggableDatabases
Explore with Pulumi AI
This data source provides the list of Pluggable Databases in Oracle Cloud Infrastructure Database service.
Gets a list of the pluggable databases in a database or compartment. You must provide either a databaseId or compartmentId value.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";
const testPluggableDatabases = oci.Database.getPluggableDatabases({
    compartmentId: compartmentId,
    databaseId: testDatabase.id,
    pdbName: pluggableDatabasePdbName,
    state: pluggableDatabaseState,
});
import pulumi
import pulumi_oci as oci
test_pluggable_databases = oci.Database.get_pluggable_databases(compartment_id=compartment_id,
    database_id=test_database["id"],
    pdb_name=pluggable_database_pdb_name,
    state=pluggable_database_state)
package main
import (
	"github.com/pulumi/pulumi-oci/sdk/v2/go/oci/database"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := database.GetPluggableDatabases(ctx, &database.GetPluggableDatabasesArgs{
			CompartmentId: pulumi.StringRef(compartmentId),
			DatabaseId:    pulumi.StringRef(testDatabase.Id),
			PdbName:       pulumi.StringRef(pluggableDatabasePdbName),
			State:         pulumi.StringRef(pluggableDatabaseState),
		}, 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 testPluggableDatabases = Oci.Database.GetPluggableDatabases.Invoke(new()
    {
        CompartmentId = compartmentId,
        DatabaseId = testDatabase.Id,
        PdbName = pluggableDatabasePdbName,
        State = pluggableDatabaseState,
    });
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.Database.DatabaseFunctions;
import com.pulumi.oci.Database.inputs.GetPluggableDatabasesArgs;
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 testPluggableDatabases = DatabaseFunctions.getPluggableDatabases(GetPluggableDatabasesArgs.builder()
            .compartmentId(compartmentId)
            .databaseId(testDatabase.id())
            .pdbName(pluggableDatabasePdbName)
            .state(pluggableDatabaseState)
            .build());
    }
}
variables:
  testPluggableDatabases:
    fn::invoke:
      function: oci:Database:getPluggableDatabases
      arguments:
        compartmentId: ${compartmentId}
        databaseId: ${testDatabase.id}
        pdbName: ${pluggableDatabasePdbName}
        state: ${pluggableDatabaseState}
Using getPluggableDatabases
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 getPluggableDatabases(args: GetPluggableDatabasesArgs, opts?: InvokeOptions): Promise<GetPluggableDatabasesResult>
function getPluggableDatabasesOutput(args: GetPluggableDatabasesOutputArgs, opts?: InvokeOptions): Output<GetPluggableDatabasesResult>def get_pluggable_databases(compartment_id: Optional[str] = None,
                            database_id: Optional[str] = None,
                            filters: Optional[Sequence[GetPluggableDatabasesFilter]] = None,
                            pdb_name: Optional[str] = None,
                            state: Optional[str] = None,
                            opts: Optional[InvokeOptions] = None) -> GetPluggableDatabasesResult
def get_pluggable_databases_output(compartment_id: Optional[pulumi.Input[str]] = None,
                            database_id: Optional[pulumi.Input[str]] = None,
                            filters: Optional[pulumi.Input[Sequence[pulumi.Input[GetPluggableDatabasesFilterArgs]]]] = None,
                            pdb_name: Optional[pulumi.Input[str]] = None,
                            state: Optional[pulumi.Input[str]] = None,
                            opts: Optional[InvokeOptions] = None) -> Output[GetPluggableDatabasesResult]func GetPluggableDatabases(ctx *Context, args *GetPluggableDatabasesArgs, opts ...InvokeOption) (*GetPluggableDatabasesResult, error)
func GetPluggableDatabasesOutput(ctx *Context, args *GetPluggableDatabasesOutputArgs, opts ...InvokeOption) GetPluggableDatabasesResultOutput> Note: This function is named GetPluggableDatabases in the Go SDK.
public static class GetPluggableDatabases 
{
    public static Task<GetPluggableDatabasesResult> InvokeAsync(GetPluggableDatabasesArgs args, InvokeOptions? opts = null)
    public static Output<GetPluggableDatabasesResult> Invoke(GetPluggableDatabasesInvokeArgs args, InvokeOptions? opts = null)
}public static CompletableFuture<GetPluggableDatabasesResult> getPluggableDatabases(GetPluggableDatabasesArgs args, InvokeOptions options)
public static Output<GetPluggableDatabasesResult> getPluggableDatabases(GetPluggableDatabasesArgs args, InvokeOptions options)
fn::invoke:
  function: oci:Database/getPluggableDatabases:getPluggableDatabases
  arguments:
    # arguments dictionaryThe following arguments are supported:
- CompartmentId string
- The compartment OCID.
- DatabaseId string
- The OCID of the database.
- Filters
List<GetPluggable Databases Filter> 
- PdbName string
- A filter to return only pluggable databases that match the entire name given. The match is not case sensitive.
- State string
- A filter to return only resources that match the given lifecycle state exactly.
- CompartmentId string
- The compartment OCID.
- DatabaseId string
- The OCID of the database.
- Filters
[]GetPluggable Databases Filter 
- PdbName string
- A filter to return only pluggable databases that match the entire name given. The match is not case sensitive.
- State string
- A filter to return only resources that match the given lifecycle state exactly.
- compartmentId String
- The compartment OCID.
- databaseId String
- The OCID of the database.
- filters
List<GetPluggables Filter> 
- pdbName String
- A filter to return only pluggable databases that match the entire name given. The match is not case sensitive.
- state String
- A filter to return only resources that match the given lifecycle state exactly.
- compartmentId string
- The compartment OCID.
- databaseId string
- The OCID of the database.
- filters
GetPluggable Databases Filter[] 
- pdbName string
- A filter to return only pluggable databases that match the entire name given. The match is not case sensitive.
- state string
- A filter to return only resources that match the given lifecycle state exactly.
- compartment_id str
- The compartment OCID.
- database_id str
- The OCID of the database.
- filters
Sequence[GetPluggable Databases Filter] 
- pdb_name str
- A filter to return only pluggable databases that match the entire name given. The match is not case sensitive.
- state str
- A filter to return only resources that match the given lifecycle state exactly.
- compartmentId String
- The compartment OCID.
- databaseId String
- The OCID of the database.
- filters List<Property Map>
- pdbName String
- A filter to return only pluggable databases that match the entire name given. The match is not case sensitive.
- state String
- A filter to return only resources that match the given lifecycle state exactly.
getPluggableDatabases Result
The following output properties are available:
- Id string
- The provider-assigned unique ID for this managed resource.
- PluggableDatabases List<GetPluggable Databases Pluggable Database> 
- The list of pluggable_databases.
- CompartmentId string
- The OCID of the compartment.
- DatabaseId string
- Filters
List<GetPluggable Databases Filter> 
- PdbName string
- The name for the pluggable database (PDB). The name is unique in the context of a container database. The name must begin with an alphabetic character and can contain a maximum of thirty alphanumeric characters. Special characters are not permitted. The pluggable database name should not be same as the container database name.
- State string
- The current state of the pluggable database.
- Id string
- The provider-assigned unique ID for this managed resource.
- PluggableDatabases []GetPluggable Databases Pluggable Database 
- The list of pluggable_databases.
- CompartmentId string
- The OCID of the compartment.
- DatabaseId string
- Filters
[]GetPluggable Databases Filter 
- PdbName string
- The name for the pluggable database (PDB). The name is unique in the context of a container database. The name must begin with an alphabetic character and can contain a maximum of thirty alphanumeric characters. Special characters are not permitted. The pluggable database name should not be same as the container database name.
- State string
- The current state of the pluggable database.
- id String
- The provider-assigned unique ID for this managed resource.
- pluggableDatabases List<GetPluggables Pluggable> 
- The list of pluggable_databases.
- compartmentId String
- The OCID of the compartment.
- databaseId String
- filters
List<GetPluggables Filter> 
- pdbName String
- The name for the pluggable database (PDB). The name is unique in the context of a container database. The name must begin with an alphabetic character and can contain a maximum of thirty alphanumeric characters. Special characters are not permitted. The pluggable database name should not be same as the container database name.
- state String
- The current state of the pluggable database.
- id string
- The provider-assigned unique ID for this managed resource.
- pluggableDatabases GetPluggable Databases Pluggable Database[] 
- The list of pluggable_databases.
- compartmentId string
- The OCID of the compartment.
- databaseId string
- filters
GetPluggable Databases Filter[] 
- pdbName string
- The name for the pluggable database (PDB). The name is unique in the context of a container database. The name must begin with an alphabetic character and can contain a maximum of thirty alphanumeric characters. Special characters are not permitted. The pluggable database name should not be same as the container database name.
- state string
- The current state of the pluggable database.
- id str
- The provider-assigned unique ID for this managed resource.
- pluggable_databases Sequence[GetPluggable Databases Pluggable Database] 
- The list of pluggable_databases.
- compartment_id str
- The OCID of the compartment.
- database_id str
- filters
Sequence[GetPluggable Databases Filter] 
- pdb_name str
- The name for the pluggable database (PDB). The name is unique in the context of a container database. The name must begin with an alphabetic character and can contain a maximum of thirty alphanumeric characters. Special characters are not permitted. The pluggable database name should not be same as the container database name.
- state str
- The current state of the pluggable database.
- id String
- The provider-assigned unique ID for this managed resource.
- pluggableDatabases List<Property Map>
- The list of pluggable_databases.
- compartmentId String
- The OCID of the compartment.
- databaseId String
- filters List<Property Map>
- pdbName String
- The name for the pluggable database (PDB). The name is unique in the context of a container database. The name must begin with an alphabetic character and can contain a maximum of thirty alphanumeric characters. Special characters are not permitted. The pluggable database name should not be same as the container database name.
- state String
- The current state of the pluggable database.
Supporting Types
GetPluggableDatabasesFilter   
GetPluggableDatabasesPluggableDatabase    
- CompartmentId string
- The compartment OCID.
- ConnectionStrings List<GetPluggable Databases Pluggable Database Connection String> 
- Connection strings to connect to an Oracle Pluggable Database.
- ContainerDatabase stringAdmin Password 
- ContainerDatabase stringId 
- The OCID of the CDB.
- ConvertTo intRegular Trigger 
- Dictionary<string, string>
- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- 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 pluggable database.
- IsRestricted bool
- The restricted mode of the pluggable database. If a pluggable database is opened in restricted mode, the user needs both create a session and have restricted session privileges to connect to it.
- KmsKey stringVersion Id 
- LifecycleDetails string
- Detailed message for the lifecycle state.
- OpenMode string
- The mode that pluggable database is in. Open mode can only be changed to READ_ONLY or MIGRATE directly from the backend (within the Oracle Database software).
- PdbAdmin stringPassword 
- PdbCreation List<GetType Details Pluggable Databases Pluggable Database Pdb Creation Type Detail> 
- PdbName string
- A filter to return only pluggable databases that match the entire name given. The match is not case sensitive.
- PdbNode List<GetLevel Details Pluggable Databases Pluggable Database Pdb Node Level Detail> 
- Pluggable Database Node Level Details. Example: [{"nodeName" : "node1", "openMode" : "READ_WRITE"}, {"nodeName" : "node2", "openMode" : "READ_ONLY"}]
- PluggableDatabase List<GetManagement Configs Pluggable Databases Pluggable Database Pluggable Database Management Config> 
- The configuration of the Pluggable Database Management service.
- RefreshTrigger int
- RefreshableClone List<GetConfigs Pluggable Databases Pluggable Database Refreshable Clone Config> 
- Pluggable Database Refreshable Clone Configuration.
- RotateKey intTrigger 
- ShouldCreate boolPdb Backup 
- ShouldPdb boolAdmin Account Be Locked 
- State string
- A filter to return only resources that match the given lifecycle state exactly.
- TdeWallet stringPassword 
- TimeCreated string
- The date and time the pluggable database was created.
- CompartmentId string
- The compartment OCID.
- ConnectionStrings []GetPluggable Databases Pluggable Database Connection String 
- Connection strings to connect to an Oracle Pluggable Database.
- ContainerDatabase stringAdmin Password 
- ContainerDatabase stringId 
- The OCID of the CDB.
- ConvertTo intRegular Trigger 
- map[string]string
- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- 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 pluggable database.
- IsRestricted bool
- The restricted mode of the pluggable database. If a pluggable database is opened in restricted mode, the user needs both create a session and have restricted session privileges to connect to it.
- KmsKey stringVersion Id 
- LifecycleDetails string
- Detailed message for the lifecycle state.
- OpenMode string
- The mode that pluggable database is in. Open mode can only be changed to READ_ONLY or MIGRATE directly from the backend (within the Oracle Database software).
- PdbAdmin stringPassword 
- PdbCreation []GetType Details Pluggable Databases Pluggable Database Pdb Creation Type Detail 
- PdbName string
- A filter to return only pluggable databases that match the entire name given. The match is not case sensitive.
- PdbNode []GetLevel Details Pluggable Databases Pluggable Database Pdb Node Level Detail 
- Pluggable Database Node Level Details. Example: [{"nodeName" : "node1", "openMode" : "READ_WRITE"}, {"nodeName" : "node2", "openMode" : "READ_ONLY"}]
- PluggableDatabase []GetManagement Configs Pluggable Databases Pluggable Database Pluggable Database Management Config 
- The configuration of the Pluggable Database Management service.
- RefreshTrigger int
- RefreshableClone []GetConfigs Pluggable Databases Pluggable Database Refreshable Clone Config 
- Pluggable Database Refreshable Clone Configuration.
- RotateKey intTrigger 
- ShouldCreate boolPdb Backup 
- ShouldPdb boolAdmin Account Be Locked 
- State string
- A filter to return only resources that match the given lifecycle state exactly.
- TdeWallet stringPassword 
- TimeCreated string
- The date and time the pluggable database was created.
- compartmentId String
- The compartment OCID.
- connectionStrings List<GetPluggables Pluggable Connection String> 
- Connection strings to connect to an Oracle Pluggable Database.
- containerDatabase StringAdmin Password 
- containerDatabase StringId 
- The OCID of the CDB.
- convertTo IntegerRegular Trigger 
- Map<String,String>
- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- 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 pluggable database.
- isRestricted Boolean
- The restricted mode of the pluggable database. If a pluggable database is opened in restricted mode, the user needs both create a session and have restricted session privileges to connect to it.
- kmsKey StringVersion Id 
- lifecycleDetails String
- Detailed message for the lifecycle state.
- openMode String
- The mode that pluggable database is in. Open mode can only be changed to READ_ONLY or MIGRATE directly from the backend (within the Oracle Database software).
- pdbAdmin StringPassword 
- pdbCreation List<GetType Details Pluggables Pluggable Pdb Creation Type Detail> 
- pdbName String
- A filter to return only pluggable databases that match the entire name given. The match is not case sensitive.
- pdbNode List<GetLevel Details Pluggables Pluggable Pdb Node Level Detail> 
- Pluggable Database Node Level Details. Example: [{"nodeName" : "node1", "openMode" : "READ_WRITE"}, {"nodeName" : "node2", "openMode" : "READ_ONLY"}]
- pluggableDatabase List<GetManagement Configs Pluggables Pluggable Pluggable Management Config> 
- The configuration of the Pluggable Database Management service.
- refreshTrigger Integer
- refreshableClone List<GetConfigs Pluggables Pluggable Refreshable Clone Config> 
- Pluggable Database Refreshable Clone Configuration.
- rotateKey IntegerTrigger 
- shouldCreate BooleanPdb Backup 
- shouldPdb BooleanAdmin Account Be Locked 
- state String
- A filter to return only resources that match the given lifecycle state exactly.
- tdeWallet StringPassword 
- timeCreated String
- The date and time the pluggable database was created.
- compartmentId string
- The compartment OCID.
- connectionStrings GetPluggable Databases Pluggable Database Connection String[] 
- Connection strings to connect to an Oracle Pluggable Database.
- containerDatabase stringAdmin Password 
- containerDatabase stringId 
- The OCID of the CDB.
- convertTo numberRegular Trigger 
- {[key: string]: string}
- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- {[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 pluggable database.
- isRestricted boolean
- The restricted mode of the pluggable database. If a pluggable database is opened in restricted mode, the user needs both create a session and have restricted session privileges to connect to it.
- kmsKey stringVersion Id 
- lifecycleDetails string
- Detailed message for the lifecycle state.
- openMode string
- The mode that pluggable database is in. Open mode can only be changed to READ_ONLY or MIGRATE directly from the backend (within the Oracle Database software).
- pdbAdmin stringPassword 
- pdbCreation GetType Details Pluggable Databases Pluggable Database Pdb Creation Type Detail[] 
- pdbName string
- A filter to return only pluggable databases that match the entire name given. The match is not case sensitive.
- pdbNode GetLevel Details Pluggable Databases Pluggable Database Pdb Node Level Detail[] 
- Pluggable Database Node Level Details. Example: [{"nodeName" : "node1", "openMode" : "READ_WRITE"}, {"nodeName" : "node2", "openMode" : "READ_ONLY"}]
- pluggableDatabase GetManagement Configs Pluggable Databases Pluggable Database Pluggable Database Management Config[] 
- The configuration of the Pluggable Database Management service.
- refreshTrigger number
- refreshableClone GetConfigs Pluggable Databases Pluggable Database Refreshable Clone Config[] 
- Pluggable Database Refreshable Clone Configuration.
- rotateKey numberTrigger 
- shouldCreate booleanPdb Backup 
- shouldPdb booleanAdmin Account Be Locked 
- state string
- A filter to return only resources that match the given lifecycle state exactly.
- tdeWallet stringPassword 
- timeCreated string
- The date and time the pluggable database was created.
- compartment_id str
- The compartment OCID.
- connection_strings Sequence[GetPluggable Databases Pluggable Database Connection String] 
- Connection strings to connect to an Oracle Pluggable Database.
- container_database_ stradmin_ password 
- container_database_ strid 
- The OCID of the CDB.
- convert_to_ intregular_ trigger 
- Mapping[str, str]
- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- 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 pluggable database.
- is_restricted bool
- The restricted mode of the pluggable database. If a pluggable database is opened in restricted mode, the user needs both create a session and have restricted session privileges to connect to it.
- kms_key_ strversion_ id 
- lifecycle_details str
- Detailed message for the lifecycle state.
- open_mode str
- The mode that pluggable database is in. Open mode can only be changed to READ_ONLY or MIGRATE directly from the backend (within the Oracle Database software).
- pdb_admin_ strpassword 
- pdb_creation_ Sequence[Gettype_ details Pluggable Databases Pluggable Database Pdb Creation Type Detail] 
- pdb_name str
- A filter to return only pluggable databases that match the entire name given. The match is not case sensitive.
- pdb_node_ Sequence[Getlevel_ details Pluggable Databases Pluggable Database Pdb Node Level Detail] 
- Pluggable Database Node Level Details. Example: [{"nodeName" : "node1", "openMode" : "READ_WRITE"}, {"nodeName" : "node2", "openMode" : "READ_ONLY"}]
- pluggable_database_ Sequence[Getmanagement_ configs Pluggable Databases Pluggable Database Pluggable Database Management Config] 
- The configuration of the Pluggable Database Management service.
- refresh_trigger int
- refreshable_clone_ Sequence[Getconfigs Pluggable Databases Pluggable Database Refreshable Clone Config] 
- Pluggable Database Refreshable Clone Configuration.
- rotate_key_ inttrigger 
- should_create_ boolpdb_ backup 
- should_pdb_ booladmin_ account_ be_ locked 
- state str
- A filter to return only resources that match the given lifecycle state exactly.
- tde_wallet_ strpassword 
- time_created str
- The date and time the pluggable database was created.
- compartmentId String
- The compartment OCID.
- connectionStrings List<Property Map>
- Connection strings to connect to an Oracle Pluggable Database.
- containerDatabase StringAdmin Password 
- containerDatabase StringId 
- The OCID of the CDB.
- convertTo NumberRegular Trigger 
- Map<String>
- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- 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 pluggable database.
- isRestricted Boolean
- The restricted mode of the pluggable database. If a pluggable database is opened in restricted mode, the user needs both create a session and have restricted session privileges to connect to it.
- kmsKey StringVersion Id 
- lifecycleDetails String
- Detailed message for the lifecycle state.
- openMode String
- The mode that pluggable database is in. Open mode can only be changed to READ_ONLY or MIGRATE directly from the backend (within the Oracle Database software).
- pdbAdmin StringPassword 
- pdbCreation List<Property Map>Type Details 
- pdbName String
- A filter to return only pluggable databases that match the entire name given. The match is not case sensitive.
- pdbNode List<Property Map>Level Details 
- Pluggable Database Node Level Details. Example: [{"nodeName" : "node1", "openMode" : "READ_WRITE"}, {"nodeName" : "node2", "openMode" : "READ_ONLY"}]
- pluggableDatabase List<Property Map>Management Configs 
- The configuration of the Pluggable Database Management service.
- refreshTrigger Number
- refreshableClone List<Property Map>Configs 
- Pluggable Database Refreshable Clone Configuration.
- rotateKey NumberTrigger 
- shouldCreate BooleanPdb Backup 
- shouldPdb BooleanAdmin Account Be Locked 
- state String
- A filter to return only resources that match the given lifecycle state exactly.
- tdeWallet StringPassword 
- timeCreated String
- The date and time the pluggable database was created.
GetPluggableDatabasesPluggableDatabaseConnectionString      
- AllConnection Dictionary<string, string>Strings 
- All connection strings to use to connect to the pluggable database.
- PdbDefault string
- A host name-based PDB connection string.
- PdbIp stringDefault 
- An IP-based PDB connection string.
- AllConnection map[string]stringStrings 
- All connection strings to use to connect to the pluggable database.
- PdbDefault string
- A host name-based PDB connection string.
- PdbIp stringDefault 
- An IP-based PDB connection string.
- allConnection Map<String,String>Strings 
- All connection strings to use to connect to the pluggable database.
- pdbDefault String
- A host name-based PDB connection string.
- pdbIp StringDefault 
- An IP-based PDB connection string.
- allConnection {[key: string]: string}Strings 
- All connection strings to use to connect to the pluggable database.
- pdbDefault string
- A host name-based PDB connection string.
- pdbIp stringDefault 
- An IP-based PDB connection string.
- all_connection_ Mapping[str, str]strings 
- All connection strings to use to connect to the pluggable database.
- pdb_default str
- A host name-based PDB connection string.
- pdb_ip_ strdefault 
- An IP-based PDB connection string.
- allConnection Map<String>Strings 
- All connection strings to use to connect to the pluggable database.
- pdbDefault String
- A host name-based PDB connection string.
- pdbIp StringDefault 
- An IP-based PDB connection string.
GetPluggableDatabasesPluggableDatabasePdbCreationTypeDetail        
- creationType String
- dblinkUser StringPassword 
- dblinkUsername String
- isThin BooleanClone 
- refreshableClone List<Property Map>Details 
- sourceContainer StringDatabase Admin Password 
- sourcePluggable StringDatabase Id 
GetPluggableDatabasesPluggableDatabasePdbCreationTypeDetailRefreshableCloneDetail           
- IsRefreshable boolClone 
- Indicates whether the Pluggable Database is a refreshable clone.
- IsRefreshable boolClone 
- Indicates whether the Pluggable Database is a refreshable clone.
- isRefreshable BooleanClone 
- Indicates whether the Pluggable Database is a refreshable clone.
- isRefreshable booleanClone 
- Indicates whether the Pluggable Database is a refreshable clone.
- is_refreshable_ boolclone 
- Indicates whether the Pluggable Database is a refreshable clone.
- isRefreshable BooleanClone 
- Indicates whether the Pluggable Database is a refreshable clone.
GetPluggableDatabasesPluggableDatabasePdbNodeLevelDetail        
GetPluggableDatabasesPluggableDatabasePluggableDatabaseManagementConfig        
- ManagementStatus string
- The status of the Pluggable Database Management service.
- ManagementStatus string
- The status of the Pluggable Database Management service.
- managementStatus String
- The status of the Pluggable Database Management service.
- managementStatus string
- The status of the Pluggable Database Management service.
- management_status str
- The status of the Pluggable Database Management service.
- managementStatus String
- The status of the Pluggable Database Management service.
GetPluggableDatabasesPluggableDatabaseRefreshableCloneConfig       
- IsRefreshable boolClone 
- Indicates whether the Pluggable Database is a refreshable clone.
- IsRefreshable boolClone 
- Indicates whether the Pluggable Database is a refreshable clone.
- isRefreshable BooleanClone 
- Indicates whether the Pluggable Database is a refreshable clone.
- isRefreshable booleanClone 
- Indicates whether the Pluggable Database is a refreshable clone.
- is_refreshable_ boolclone 
- Indicates whether the Pluggable Database is a refreshable clone.
- isRefreshable BooleanClone 
- Indicates whether the Pluggable Database is a refreshable clone.
Package Details
- Repository
- oci pulumi/pulumi-oci
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the ociTerraform Provider.