Oracle Cloud Infrastructure v1.41.0 published on Wednesday, Jun 19, 2024 by Pulumi
oci.Database.getPluggableDatabases
Explore with Pulumi AI
Oracle Cloud Infrastructure v1.41.0 published on Wednesday, Jun 19, 2024 by Pulumi
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/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[_database.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[_database.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)
// Output-based functions aren't available in Java yet
fn::invoke:
function: oci:Database/getPluggableDatabases:getPluggableDatabases
arguments:
# arguments dictionary
The following arguments are supported:
- Compartment
Id string - The compartment OCID.
- Database
Id string - The OCID of the database.
- Filters
List<Get
Pluggable Databases Filter> - Pdb
Name 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 string - The compartment OCID.
- Database
Id string - The OCID of the database.
- Filters
[]Get
Pluggable Databases Filter - Pdb
Name 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 String - The compartment OCID.
- database
Id String - The OCID of the database.
- filters
List<Get
Pluggables Filter> - pdb
Name 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 string - The compartment OCID.
- database
Id string - The OCID of the database.
- filters
Get
Pluggable Databases Filter[] - pdb
Name 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[database.
Get Pluggable 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.
- compartment
Id String - The compartment OCID.
- database
Id String - The OCID of the database.
- filters List<Property Map>
- pdb
Name 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.
- Pluggable
Databases List<GetPluggable Databases Pluggable Database> - The list of pluggable_databases.
- Compartment
Id string - The OCID of the compartment.
- Database
Id string - Filters
List<Get
Pluggable Databases Filter> - Pdb
Name 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.
- Pluggable
Databases []GetPluggable Databases Pluggable Database - The list of pluggable_databases.
- Compartment
Id string - The OCID of the compartment.
- Database
Id string - Filters
[]Get
Pluggable Databases Filter - Pdb
Name 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.
- pluggable
Databases List<GetPluggables Pluggable> - The list of pluggable_databases.
- compartment
Id String - The OCID of the compartment.
- database
Id String - filters
List<Get
Pluggables Filter> - pdb
Name 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.
- pluggable
Databases GetPluggable Databases Pluggable Database[] - The list of pluggable_databases.
- compartment
Id string - The OCID of the compartment.
- database
Id string - filters
Get
Pluggable Databases Filter[] - pdb
Name 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[database.Get Pluggable Databases Pluggable Database] - The list of pluggable_databases.
- compartment_
id str - The OCID of the compartment.
- database_
id str - filters
Sequence[database.
Get Pluggable 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.
- pluggable
Databases List<Property Map> - The list of pluggable_databases.
- compartment
Id String - The OCID of the compartment.
- database
Id String - filters List<Property Map>
- pdb
Name 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
- Compartment
Id string - The compartment OCID.
- Connection
Strings List<GetPluggable Databases Pluggable Database Connection String> - Connection strings to connect to an Oracle Pluggable Database.
- Container
Database stringAdmin Password - Container
Database stringId - The OCID of the CDB.
- Convert
To intRegular Trigger - Dictionary<string, object>
- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- Dictionary<string, object>
- 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.
- 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.
- Lifecycle
Details string - Detailed message for the lifecycle state.
- Open
Mode 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).
- Pdb
Admin stringPassword - Pdb
Creation List<GetType Details Pluggable Databases Pluggable Database Pdb Creation Type Detail> - Pdb
Name string - A filter to return only pluggable databases that match the entire name given. The match is not case sensitive.
- Pdb
Node 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"}]
- Pluggable
Database List<GetManagement Configs Pluggable Databases Pluggable Database Pluggable Database Management Config> - The configuration of the Pluggable Database Management service.
- Refresh
Trigger int - Refreshable
Clone List<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 string
- A filter to return only resources that match the given lifecycle state exactly.
- Tde
Wallet stringPassword - Time
Created string - The date and time the pluggable database was created.
- Compartment
Id string - The compartment OCID.
- Connection
Strings []GetPluggable Databases Pluggable Database Connection String - Connection strings to connect to an Oracle Pluggable Database.
- Container
Database stringAdmin Password - Container
Database stringId - The OCID of the CDB.
- Convert
To intRegular Trigger - map[string]interface{}
- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- map[string]interface{}
- 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.
- 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.
- Lifecycle
Details string - Detailed message for the lifecycle state.
- Open
Mode 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).
- Pdb
Admin stringPassword - Pdb
Creation []GetType Details Pluggable Databases Pluggable Database Pdb Creation Type Detail - Pdb
Name string - A filter to return only pluggable databases that match the entire name given. The match is not case sensitive.
- Pdb
Node []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 []GetManagement Configs Pluggable Databases Pluggable Database Pluggable Database Management Config - The configuration of the Pluggable Database Management service.
- Refresh
Trigger int - Refreshable
Clone []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 string
- A filter to return only resources that match the given lifecycle state exactly.
- Tde
Wallet stringPassword - Time
Created string - The date and time the pluggable database was created.
- compartment
Id String - The compartment OCID.
- connection
Strings List<GetPluggables Pluggable Connection String> - Connection strings to connect to an Oracle Pluggable Database.
- container
Database StringAdmin Password - container
Database StringId - The OCID of the CDB.
- convert
To IntegerRegular Trigger - Map<String,Object>
- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- Map<String,Object>
- 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.
- is
Restricted 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.
- lifecycle
Details String - Detailed message for the lifecycle state.
- open
Mode 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).
- pdb
Admin StringPassword - pdb
Creation List<GetType Details Pluggables Pluggable Pdb Creation Type Detail> - pdb
Name String - A filter to return only pluggable databases that match the entire name given. The match is not case sensitive.
- pdb
Node 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"}]
- pluggable
Database List<GetManagement Configs Pluggables Pluggable Pluggable Management Config> - The configuration of the Pluggable Database Management service.
- refresh
Trigger Integer - refreshable
Clone List<GetConfigs Pluggables Pluggable Refreshable Clone Config> - Pluggable Database Refreshable Clone Configuration.
- rotate
Key IntegerTrigger - should
Create BooleanPdb Backup - should
Pdb BooleanAdmin Account Be Locked - state String
- A filter to return only resources that match the given lifecycle state exactly.
- tde
Wallet StringPassword - time
Created String - The date and time the pluggable database was created.
- compartment
Id string - The compartment OCID.
- connection
Strings GetPluggable Databases Pluggable Database Connection String[] - Connection strings to connect to an Oracle Pluggable Database.
- container
Database stringAdmin Password - container
Database stringId - The OCID of the CDB.
- convert
To numberRegular Trigger - {[key: string]: any}
- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- {[key: string]: any}
- 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.
- is
Restricted 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.
- lifecycle
Details string - Detailed message for the lifecycle state.
- open
Mode 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).
- pdb
Admin stringPassword - pdb
Creation GetType Details Pluggable Databases Pluggable Database Pdb Creation Type Detail[] - pdb
Name string - A filter to return only pluggable databases that match the entire name given. The match is not case sensitive.
- pdb
Node 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 GetManagement Configs Pluggable Databases Pluggable Database Pluggable Database Management Config[] - The configuration of the Pluggable Database Management service.
- refresh
Trigger number - refreshable
Clone GetConfigs Pluggable Databases Pluggable Database Refreshable Clone Config[] - Pluggable Database Refreshable Clone Configuration.
- rotate
Key numberTrigger - should
Create booleanPdb Backup - should
Pdb booleanAdmin Account Be Locked - state string
- A filter to return only resources that match the given lifecycle state exactly.
- tde
Wallet stringPassword - time
Created string - The date and time the pluggable database was created.
- compartment_
id str - The compartment OCID.
- connection_
strings Sequence[database.Get Pluggable 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, Any]
- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- Mapping[str, Any]
- 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.
- 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[database.type_ details Get 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[database.level_ details Get 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[database.management_ configs Get Pluggable Databases Pluggable Database Pluggable Database Management Config] - The configuration of the Pluggable Database Management service.
- refresh_
trigger int - refreshable_
clone_ Sequence[database.configs Get 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.
- compartment
Id String - The compartment OCID.
- connection
Strings List<Property Map> - Connection strings to connect to an Oracle Pluggable Database.
- container
Database StringAdmin Password - container
Database StringId - The OCID of the CDB.
- convert
To NumberRegular Trigger - Map<Any>
- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- Map<Any>
- 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.
- is
Restricted 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.
- lifecycle
Details String - Detailed message for the lifecycle state.
- open
Mode 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).
- pdb
Admin StringPassword - pdb
Creation List<Property Map>Type Details - pdb
Name String - A filter to return only pluggable databases that match the entire name given. The match is not case sensitive.
- pdb
Node List<Property Map>Level Details - Pluggable Database Node Level Details. Example: [{"nodeName" : "node1", "openMode" : "READ_WRITE"}, {"nodeName" : "node2", "openMode" : "READ_ONLY"}]
- pluggable
Database List<Property Map>Management Configs - The configuration of the Pluggable Database Management service.
- refresh
Trigger Number - refreshable
Clone List<Property Map>Configs - Pluggable Database Refreshable Clone Configuration.
- rotate
Key NumberTrigger - should
Create BooleanPdb Backup - should
Pdb BooleanAdmin Account Be Locked - state String
- A filter to return only resources that match the given lifecycle state exactly.
- tde
Wallet StringPassword - time
Created String - The date and time the pluggable database was created.
GetPluggableDatabasesPluggableDatabaseConnectionString
- All
Connection Dictionary<string, object>Strings - All connection strings to use to connect to the pluggable database.
- Pdb
Default string - A host name-based PDB connection string.
- Pdb
Ip stringDefault - An IP-based PDB connection string.
- All
Connection map[string]interface{}Strings - All connection strings to use to connect to the pluggable database.
- Pdb
Default string - A host name-based PDB connection string.
- Pdb
Ip stringDefault - An IP-based PDB connection string.
- all
Connection Map<String,Object>Strings - All connection strings to use to connect to the pluggable database.
- pdb
Default String - A host name-based PDB connection string.
- pdb
Ip StringDefault - An IP-based PDB connection string.
- all
Connection {[key: string]: any}Strings - All connection strings to use to connect to the pluggable database.
- pdb
Default string - A host name-based PDB connection string.
- pdb
Ip stringDefault - An IP-based PDB connection string.
- all_
connection_ Mapping[str, Any]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.
- all
Connection Map<Any>Strings - All connection strings to use to connect to the pluggable database.
- pdb
Default String - A host name-based PDB connection string.
- pdb
Ip StringDefault - An IP-based PDB connection string.
GetPluggableDatabasesPluggableDatabasePdbCreationTypeDetail
GetPluggableDatabasesPluggableDatabasePdbCreationTypeDetailRefreshableCloneDetail
- Is
Refreshable boolClone - Indicates whether the Pluggable Database is a refreshable clone.
- Is
Refreshable boolClone - Indicates whether the Pluggable Database is a refreshable clone.
- is
Refreshable BooleanClone - Indicates whether the Pluggable Database is a refreshable clone.
- is
Refreshable booleanClone - Indicates whether the Pluggable Database is a refreshable clone.
- is_
refreshable_ boolclone - Indicates whether the Pluggable Database is a refreshable clone.
- is
Refreshable BooleanClone - Indicates whether the Pluggable Database is a refreshable clone.
GetPluggableDatabasesPluggableDatabasePdbNodeLevelDetail
GetPluggableDatabasesPluggableDatabasePluggableDatabaseManagementConfig
- Management
Status string - The status of the Pluggable Database Management service.
- Management
Status string - The status of the Pluggable Database Management service.
- management
Status String - The status of the Pluggable Database Management service.
- management
Status string - The status of the Pluggable Database Management service.
- management_
status str - The status of the Pluggable Database Management service.
- management
Status String - The status of the Pluggable Database Management service.
GetPluggableDatabasesPluggableDatabaseRefreshableCloneConfig
- Is
Refreshable boolClone - Indicates whether the Pluggable Database is a refreshable clone.
- Is
Refreshable boolClone - Indicates whether the Pluggable Database is a refreshable clone.
- is
Refreshable BooleanClone - Indicates whether the Pluggable Database is a refreshable clone.
- is
Refreshable booleanClone - Indicates whether the Pluggable Database is a refreshable clone.
- is_
refreshable_ boolclone - Indicates whether the Pluggable Database is a refreshable clone.
- is
Refreshable 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
oci
Terraform Provider.
Oracle Cloud Infrastructure v1.41.0 published on Wednesday, Jun 19, 2024 by Pulumi