Oracle Cloud Infrastructure v2.31.0 published on Thursday, Apr 17, 2025 by Pulumi
oci.Database.getExternalPluggableDatabases
Explore with Pulumi AI
This data source provides the list of External Pluggable Databases in Oracle Cloud Infrastructure Database service.
Gets a list of the ExternalPluggableDatabase resources in the specified compartment.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";
const testExternalPluggableDatabases = oci.Database.getExternalPluggableDatabases({
compartmentId: compartmentId,
displayName: externalPluggableDatabaseDisplayName,
externalContainerDatabaseId: testExternalContainerDatabase.id,
state: externalPluggableDatabaseState,
});
import pulumi
import pulumi_oci as oci
test_external_pluggable_databases = oci.Database.get_external_pluggable_databases(compartment_id=compartment_id,
display_name=external_pluggable_database_display_name,
external_container_database_id=test_external_container_database["id"],
state=external_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.GetExternalPluggableDatabases(ctx, &database.GetExternalPluggableDatabasesArgs{
CompartmentId: compartmentId,
DisplayName: pulumi.StringRef(externalPluggableDatabaseDisplayName),
ExternalContainerDatabaseId: pulumi.StringRef(testExternalContainerDatabase.Id),
State: pulumi.StringRef(externalPluggableDatabaseState),
}, 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 testExternalPluggableDatabases = Oci.Database.GetExternalPluggableDatabases.Invoke(new()
{
CompartmentId = compartmentId,
DisplayName = externalPluggableDatabaseDisplayName,
ExternalContainerDatabaseId = testExternalContainerDatabase.Id,
State = externalPluggableDatabaseState,
});
});
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.GetExternalPluggableDatabasesArgs;
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 testExternalPluggableDatabases = DatabaseFunctions.getExternalPluggableDatabases(GetExternalPluggableDatabasesArgs.builder()
.compartmentId(compartmentId)
.displayName(externalPluggableDatabaseDisplayName)
.externalContainerDatabaseId(testExternalContainerDatabase.id())
.state(externalPluggableDatabaseState)
.build());
}
}
variables:
testExternalPluggableDatabases:
fn::invoke:
function: oci:Database:getExternalPluggableDatabases
arguments:
compartmentId: ${compartmentId}
displayName: ${externalPluggableDatabaseDisplayName}
externalContainerDatabaseId: ${testExternalContainerDatabase.id}
state: ${externalPluggableDatabaseState}
Using getExternalPluggableDatabases
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 getExternalPluggableDatabases(args: GetExternalPluggableDatabasesArgs, opts?: InvokeOptions): Promise<GetExternalPluggableDatabasesResult>
function getExternalPluggableDatabasesOutput(args: GetExternalPluggableDatabasesOutputArgs, opts?: InvokeOptions): Output<GetExternalPluggableDatabasesResult>
def get_external_pluggable_databases(compartment_id: Optional[str] = None,
display_name: Optional[str] = None,
external_container_database_id: Optional[str] = None,
filters: Optional[Sequence[_database.GetExternalPluggableDatabasesFilter]] = None,
state: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetExternalPluggableDatabasesResult
def get_external_pluggable_databases_output(compartment_id: Optional[pulumi.Input[str]] = None,
display_name: Optional[pulumi.Input[str]] = None,
external_container_database_id: Optional[pulumi.Input[str]] = None,
filters: Optional[pulumi.Input[Sequence[pulumi.Input[_database.GetExternalPluggableDatabasesFilterArgs]]]] = None,
state: Optional[pulumi.Input[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetExternalPluggableDatabasesResult]
func GetExternalPluggableDatabases(ctx *Context, args *GetExternalPluggableDatabasesArgs, opts ...InvokeOption) (*GetExternalPluggableDatabasesResult, error)
func GetExternalPluggableDatabasesOutput(ctx *Context, args *GetExternalPluggableDatabasesOutputArgs, opts ...InvokeOption) GetExternalPluggableDatabasesResultOutput
> Note: This function is named GetExternalPluggableDatabases
in the Go SDK.
public static class GetExternalPluggableDatabases
{
public static Task<GetExternalPluggableDatabasesResult> InvokeAsync(GetExternalPluggableDatabasesArgs args, InvokeOptions? opts = null)
public static Output<GetExternalPluggableDatabasesResult> Invoke(GetExternalPluggableDatabasesInvokeArgs args, InvokeOptions? opts = null)
}
public static CompletableFuture<GetExternalPluggableDatabasesResult> getExternalPluggableDatabases(GetExternalPluggableDatabasesArgs args, InvokeOptions options)
public static Output<GetExternalPluggableDatabasesResult> getExternalPluggableDatabases(GetExternalPluggableDatabasesArgs args, InvokeOptions options)
fn::invoke:
function: oci:Database/getExternalPluggableDatabases:getExternalPluggableDatabases
arguments:
# arguments dictionary
The following arguments are supported:
- Compartment
Id This property is required. string - The compartment OCID.
- Display
Name string - A filter to return only resources that match the entire display name given. The match is not case sensitive.
- External
Container stringDatabase Id - The ExternalContainerDatabase OCID.
- Filters
Changes to this property will trigger replacement.
External Pluggable Databases Filter> - State string
- A filter to return only resources that match the specified lifecycle state.
- Compartment
Id This property is required. string - The compartment OCID.
- Display
Name string - A filter to return only resources that match the entire display name given. The match is not case sensitive.
- External
Container stringDatabase Id - The ExternalContainerDatabase OCID.
- Filters
Changes to this property will trigger replacement.
External Pluggable Databases Filter - State string
- A filter to return only resources that match the specified lifecycle state.
- compartment
Id This property is required. String - The compartment OCID.
- display
Name String - A filter to return only resources that match the entire display name given. The match is not case sensitive.
- external
Container StringDatabase Id - The ExternalContainerDatabase OCID.
- filters
Changes to this property will trigger replacement.
External Pluggables Filter> - state String
- A filter to return only resources that match the specified lifecycle state.
- compartment
Id This property is required. string - The compartment OCID.
- display
Name string - A filter to return only resources that match the entire display name given. The match is not case sensitive.
- external
Container stringDatabase Id - The ExternalContainerDatabase OCID.
- filters
Changes to this property will trigger replacement.
External Pluggable Databases Filter[] - state string
- A filter to return only resources that match the specified lifecycle state.
- compartment_
id This property is required. str - The compartment OCID.
- display_
name str - A filter to return only resources that match the entire display name given. The match is not case sensitive.
- external_
container_ strdatabase_ id - The ExternalContainerDatabase OCID.
- filters
Changes to this property will trigger replacement.
Get External Pluggable Databases Filter] - state str
- A filter to return only resources that match the specified lifecycle state.
- compartment
Id This property is required. String - The compartment OCID.
- display
Name String - A filter to return only resources that match the entire display name given. The match is not case sensitive.
- external
Container StringDatabase Id - The ExternalContainerDatabase OCID.
- filters
Changes to this property will trigger replacement.
- state String
- A filter to return only resources that match the specified lifecycle state.
getExternalPluggableDatabases Result
The following output properties are available:
- Compartment
Id string - The OCID of the compartment.
- External
Pluggable List<GetDatabases External Pluggable Databases External Pluggable Database> - The list of external_pluggable_databases.
- Id string
- The provider-assigned unique ID for this managed resource.
- Display
Name string - The user-friendly name for the external database. The name does not have to be unique.
- External
Container stringDatabase Id - The OCID of the external container database that contains the specified external pluggable database resource.
- Filters
List<Get
External Pluggable Databases Filter> - State string
- The current state of the Oracle Cloud Infrastructure external database resource.
- Compartment
Id string - The OCID of the compartment.
- External
Pluggable []GetDatabases External Pluggable Databases External Pluggable Database - The list of external_pluggable_databases.
- Id string
- The provider-assigned unique ID for this managed resource.
- Display
Name string - The user-friendly name for the external database. The name does not have to be unique.
- External
Container stringDatabase Id - The OCID of the external container database that contains the specified external pluggable database resource.
- Filters
[]Get
External Pluggable Databases Filter - State string
- The current state of the Oracle Cloud Infrastructure external database resource.
- compartment
Id String - The OCID of the compartment.
- external
Pluggable List<GetDatabases External Pluggables External Pluggable> - The list of external_pluggable_databases.
- id String
- The provider-assigned unique ID for this managed resource.
- display
Name String - The user-friendly name for the external database. The name does not have to be unique.
- external
Container StringDatabase Id - The OCID of the external container database that contains the specified external pluggable database resource.
- filters
List<Get
External Pluggables Filter> - state String
- The current state of the Oracle Cloud Infrastructure external database resource.
- compartment
Id string - The OCID of the compartment.
- external
Pluggable GetDatabases External Pluggable Databases External Pluggable Database[] - The list of external_pluggable_databases.
- id string
- The provider-assigned unique ID for this managed resource.
- display
Name string - The user-friendly name for the external database. The name does not have to be unique.
- external
Container stringDatabase Id - The OCID of the external container database that contains the specified external pluggable database resource.
- filters
Get
External Pluggable Databases Filter[] - state string
- The current state of the Oracle Cloud Infrastructure external database resource.
- compartment_
id str - The OCID of the compartment.
- external_
pluggable_ Sequence[database.databases Get External Pluggable Databases External Pluggable Database] - The list of external_pluggable_databases.
- id str
- The provider-assigned unique ID for this managed resource.
- display_
name str - The user-friendly name for the external database. The name does not have to be unique.
- external_
container_ strdatabase_ id - The OCID of the external container database that contains the specified external pluggable database resource.
- filters
Sequence[database.
Get External Pluggable Databases Filter] - state str
- The current state of the Oracle Cloud Infrastructure external database resource.
- compartment
Id String - The OCID of the compartment.
- external
Pluggable List<Property Map>Databases - The list of external_pluggable_databases.
- id String
- The provider-assigned unique ID for this managed resource.
- display
Name String - The user-friendly name for the external database. The name does not have to be unique.
- external
Container StringDatabase Id - The OCID of the external container database that contains the specified external pluggable database resource.
- filters List<Property Map>
- state String
- The current state of the Oracle Cloud Infrastructure external database resource.
Supporting Types
GetExternalPluggableDatabasesExternalPluggableDatabase
- Character
Set This property is required. string - The character set of the external database.
- Compartment
Id This property is required. string - The compartment OCID.
- Database
Configuration This property is required. string - The Oracle Database configuration
- Database
Edition This property is required. string - The Oracle Database Edition that applies to all the databases on the DB system. Exadata DB systems and 2-node RAC DB systems require ENTERPRISE_EDITION_EXTREME_PERFORMANCE.
- Database
Management Configs This property is required. List<GetExternal Pluggable Databases External Pluggable Database Database Management Config> - The configuration of the Database Management service.
- Database
Version This property is required. string - The Oracle Database version.
- Db
Id This property is required. string - The Oracle Database ID, which identifies an Oracle Database located outside of Oracle Cloud.
- Db
Packs This property is required. string - The database packs licensed for the external Oracle Database.
- Db
Unique Name This property is required. string - The
DB_UNIQUE_NAME
of the external database. This property is required. Dictionary<string, string>- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- Display
Name This property is required. string - A filter to return only resources that match the entire display name given. The match is not case sensitive.
- External
Container Database Id This property is required. string - The ExternalContainerDatabase OCID.
This property is required. Dictionary<string, string>- Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example:
{"Department": "Finance"}
- Id
This property is required. string - The OCID of the Oracle Cloud Infrastructure external database resource.
- Lifecycle
Details This property is required. string - Additional information about the current lifecycle state.
- Ncharacter
Set This property is required. string - The national character of the external database.
- Operations
Insights Configs This property is required. List<GetExternal Pluggable Databases External Pluggable Database Operations Insights Config> - The configuration of Operations Insights for the external database
- Source
Id This property is required. string - The OCID of the the non-container database that was converted to a pluggable database to create this resource.
- Stack
Monitoring Configs This property is required. List<GetExternal Pluggable Databases External Pluggable Database Stack Monitoring Config> - The configuration of Stack Monitoring for the external database.
- State
This property is required. string - A filter to return only resources that match the specified lifecycle state.
- Time
Created This property is required. string - The date and time the database was created.
- Time
Zone This property is required. string - The time zone of the external database. It is a time zone offset (a character type in the format '[+|-]TZH:TZM') or a time zone region name, depending on how the time zone value was specified when the database was created / last altered.
- Character
Set This property is required. string - The character set of the external database.
- Compartment
Id This property is required. string - The compartment OCID.
- Database
Configuration This property is required. string - The Oracle Database configuration
- Database
Edition This property is required. string - The Oracle Database Edition that applies to all the databases on the DB system. Exadata DB systems and 2-node RAC DB systems require ENTERPRISE_EDITION_EXTREME_PERFORMANCE.
- Database
Management Configs This property is required. []GetExternal Pluggable Databases External Pluggable Database Database Management Config - The configuration of the Database Management service.
- Database
Version This property is required. string - The Oracle Database version.
- Db
Id This property is required. string - The Oracle Database ID, which identifies an Oracle Database located outside of Oracle Cloud.
- Db
Packs This property is required. string - The database packs licensed for the external Oracle Database.
- Db
Unique Name This property is required. string - The
DB_UNIQUE_NAME
of the external database. This property is required. map[string]string- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- Display
Name This property is required. string - A filter to return only resources that match the entire display name given. The match is not case sensitive.
- External
Container Database Id This property is required. string - The ExternalContainerDatabase OCID.
This property is required. map[string]string- Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example:
{"Department": "Finance"}
- Id
This property is required. string - The OCID of the Oracle Cloud Infrastructure external database resource.
- Lifecycle
Details This property is required. string - Additional information about the current lifecycle state.
- Ncharacter
Set This property is required. string - The national character of the external database.
- Operations
Insights Configs This property is required. []GetExternal Pluggable Databases External Pluggable Database Operations Insights Config - The configuration of Operations Insights for the external database
- Source
Id This property is required. string - The OCID of the the non-container database that was converted to a pluggable database to create this resource.
- Stack
Monitoring Configs This property is required. []GetExternal Pluggable Databases External Pluggable Database Stack Monitoring Config - The configuration of Stack Monitoring for the external database.
- State
This property is required. string - A filter to return only resources that match the specified lifecycle state.
- Time
Created This property is required. string - The date and time the database was created.
- Time
Zone This property is required. string - The time zone of the external database. It is a time zone offset (a character type in the format '[+|-]TZH:TZM') or a time zone region name, depending on how the time zone value was specified when the database was created / last altered.
- character
Set This property is required. String - The character set of the external database.
- compartment
Id This property is required. String - The compartment OCID.
- database
Configuration This property is required. String - The Oracle Database configuration
- database
Edition This property is required. String - The Oracle Database Edition that applies to all the databases on the DB system. Exadata DB systems and 2-node RAC DB systems require ENTERPRISE_EDITION_EXTREME_PERFORMANCE.
- database
Management Configs This property is required. List<GetExternal Pluggables External Pluggable Management Config> - The configuration of the Database Management service.
- database
Version This property is required. String - The Oracle Database version.
- db
Id This property is required. String - The Oracle Database ID, which identifies an Oracle Database located outside of Oracle Cloud.
- db
Packs This property is required. String - The database packs licensed for the external Oracle Database.
- db
Unique Name This property is required. String - The
DB_UNIQUE_NAME
of the external database. This property is required. Map<String,String>- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- display
Name This property is required. String - A filter to return only resources that match the entire display name given. The match is not case sensitive.
- external
Container Database Id This property is required. String - The ExternalContainerDatabase OCID.
This property is required. Map<String,String>- Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example:
{"Department": "Finance"}
- id
This property is required. String - The OCID of the Oracle Cloud Infrastructure external database resource.
- lifecycle
Details This property is required. String - Additional information about the current lifecycle state.
- ncharacter
Set This property is required. String - The national character of the external database.
- operations
Insights Configs This property is required. List<GetExternal Pluggables External Pluggable Operations Insights Config> - The configuration of Operations Insights for the external database
- source
Id This property is required. String - The OCID of the the non-container database that was converted to a pluggable database to create this resource.
- stack
Monitoring Configs This property is required. List<GetExternal Pluggables External Pluggable Stack Monitoring Config> - The configuration of Stack Monitoring for the external database.
- state
This property is required. String - A filter to return only resources that match the specified lifecycle state.
- time
Created This property is required. String - The date and time the database was created.
- time
Zone This property is required. String - The time zone of the external database. It is a time zone offset (a character type in the format '[+|-]TZH:TZM') or a time zone region name, depending on how the time zone value was specified when the database was created / last altered.
- character
Set This property is required. string - The character set of the external database.
- compartment
Id This property is required. string - The compartment OCID.
- database
Configuration This property is required. string - The Oracle Database configuration
- database
Edition This property is required. string - The Oracle Database Edition that applies to all the databases on the DB system. Exadata DB systems and 2-node RAC DB systems require ENTERPRISE_EDITION_EXTREME_PERFORMANCE.
- database
Management Configs This property is required. GetExternal Pluggable Databases External Pluggable Database Database Management Config[] - The configuration of the Database Management service.
- database
Version This property is required. string - The Oracle Database version.
- db
Id This property is required. string - The Oracle Database ID, which identifies an Oracle Database located outside of Oracle Cloud.
- db
Packs This property is required. string - The database packs licensed for the external Oracle Database.
- db
Unique Name This property is required. string - The
DB_UNIQUE_NAME
of the external database. This property is required. {[key: string]: string}- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- display
Name This property is required. string - A filter to return only resources that match the entire display name given. The match is not case sensitive.
- external
Container Database Id This property is required. string - The ExternalContainerDatabase OCID.
This property is required. {[key: string]: string}- Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example:
{"Department": "Finance"}
- id
This property is required. string - The OCID of the Oracle Cloud Infrastructure external database resource.
- lifecycle
Details This property is required. string - Additional information about the current lifecycle state.
- ncharacter
Set This property is required. string - The national character of the external database.
- operations
Insights Configs This property is required. GetExternal Pluggable Databases External Pluggable Database Operations Insights Config[] - The configuration of Operations Insights for the external database
- source
Id This property is required. string - The OCID of the the non-container database that was converted to a pluggable database to create this resource.
- stack
Monitoring Configs This property is required. GetExternal Pluggable Databases External Pluggable Database Stack Monitoring Config[] - The configuration of Stack Monitoring for the external database.
- state
This property is required. string - A filter to return only resources that match the specified lifecycle state.
- time
Created This property is required. string - The date and time the database was created.
- time
Zone This property is required. string - The time zone of the external database. It is a time zone offset (a character type in the format '[+|-]TZH:TZM') or a time zone region name, depending on how the time zone value was specified when the database was created / last altered.
- character_
set This property is required. str - The character set of the external database.
- compartment_
id This property is required. str - The compartment OCID.
- database_
configuration This property is required. str - The Oracle Database configuration
- database_
edition This property is required. str - The Oracle Database Edition that applies to all the databases on the DB system. Exadata DB systems and 2-node RAC DB systems require ENTERPRISE_EDITION_EXTREME_PERFORMANCE.
- database_
management_ configs This property is required. Sequence[database.Get External Pluggable Databases External Pluggable Database Database Management Config] - The configuration of the Database Management service.
- database_
version This property is required. str - The Oracle Database version.
- db_
id This property is required. str - The Oracle Database ID, which identifies an Oracle Database located outside of Oracle Cloud.
- db_
packs This property is required. str - The database packs licensed for the external Oracle Database.
- db_
unique_ name This property is required. str - The
DB_UNIQUE_NAME
of the external database. This property is required. Mapping[str, str]- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- display_
name This property is required. str - A filter to return only resources that match the entire display name given. The match is not case sensitive.
- external_
container_ database_ id This property is required. str - The ExternalContainerDatabase OCID.
This property is required. Mapping[str, str]- Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example:
{"Department": "Finance"}
- id
This property is required. str - The OCID of the Oracle Cloud Infrastructure external database resource.
- lifecycle_
details This property is required. str - Additional information about the current lifecycle state.
- ncharacter_
set This property is required. str - The national character of the external database.
- operations_
insights_ configs This property is required. Sequence[database.Get External Pluggable Databases External Pluggable Database Operations Insights Config] - The configuration of Operations Insights for the external database
- source_
id This property is required. str - The OCID of the the non-container database that was converted to a pluggable database to create this resource.
- stack_
monitoring_ configs This property is required. Sequence[database.Get External Pluggable Databases External Pluggable Database Stack Monitoring Config] - The configuration of Stack Monitoring for the external database.
- state
This property is required. str - A filter to return only resources that match the specified lifecycle state.
- time_
created This property is required. str - The date and time the database was created.
- time_
zone This property is required. str - The time zone of the external database. It is a time zone offset (a character type in the format '[+|-]TZH:TZM') or a time zone region name, depending on how the time zone value was specified when the database was created / last altered.
- character
Set This property is required. String - The character set of the external database.
- compartment
Id This property is required. String - The compartment OCID.
- database
Configuration This property is required. String - The Oracle Database configuration
- database
Edition This property is required. String - The Oracle Database Edition that applies to all the databases on the DB system. Exadata DB systems and 2-node RAC DB systems require ENTERPRISE_EDITION_EXTREME_PERFORMANCE.
- database
Management Configs This property is required. List<Property Map> - The configuration of the Database Management service.
- database
Version This property is required. String - The Oracle Database version.
- db
Id This property is required. String - The Oracle Database ID, which identifies an Oracle Database located outside of Oracle Cloud.
- db
Packs This property is required. String - The database packs licensed for the external Oracle Database.
- db
Unique Name This property is required. String - The
DB_UNIQUE_NAME
of the external database. This property is required. Map<String>- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- display
Name This property is required. String - A filter to return only resources that match the entire display name given. The match is not case sensitive.
- external
Container Database Id This property is required. String - The ExternalContainerDatabase OCID.
This property is required. Map<String>- Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example:
{"Department": "Finance"}
- id
This property is required. String - The OCID of the Oracle Cloud Infrastructure external database resource.
- lifecycle
Details This property is required. String - Additional information about the current lifecycle state.
- ncharacter
Set This property is required. String - The national character of the external database.
- operations
Insights Configs This property is required. List<Property Map> - The configuration of Operations Insights for the external database
- source
Id This property is required. String - The OCID of the the non-container database that was converted to a pluggable database to create this resource.
- stack
Monitoring Configs This property is required. List<Property Map> - The configuration of Stack Monitoring for the external database.
- state
This property is required. String - A filter to return only resources that match the specified lifecycle state.
- time
Created This property is required. String - The date and time the database was created.
- time
Zone This property is required. String - The time zone of the external database. It is a time zone offset (a character type in the format '[+|-]TZH:TZM') or a time zone region name, depending on how the time zone value was specified when the database was created / last altered.
GetExternalPluggableDatabasesExternalPluggableDatabaseDatabaseManagementConfig
- Database
Management Connection Id This property is required. string - The OCID of the external database connector.
- Database
Management Status This property is required. string - The status of the Database Management service.
- License
Model This property is required. string - The Oracle license model that applies to the external database.
- Database
Management Connection Id This property is required. string - The OCID of the external database connector.
- Database
Management Status This property is required. string - The status of the Database Management service.
- License
Model This property is required. string - The Oracle license model that applies to the external database.
- database
Management Connection Id This property is required. String - The OCID of the external database connector.
- database
Management Status This property is required. String - The status of the Database Management service.
- license
Model This property is required. String - The Oracle license model that applies to the external database.
- database
Management Connection Id This property is required. string - The OCID of the external database connector.
- database
Management Status This property is required. string - The status of the Database Management service.
- license
Model This property is required. string - The Oracle license model that applies to the external database.
- database_
management_ connection_ id This property is required. str - The OCID of the external database connector.
- database_
management_ status This property is required. str - The status of the Database Management service.
- license_
model This property is required. str - The Oracle license model that applies to the external database.
- database
Management Connection Id This property is required. String - The OCID of the external database connector.
- database
Management Status This property is required. String - The status of the Database Management service.
- license
Model This property is required. String - The Oracle license model that applies to the external database.
GetExternalPluggableDatabasesExternalPluggableDatabaseOperationsInsightsConfig
- Operations
Insights Connector Id This property is required. string - The OCID of the external database connector.
- Operations
Insights Status This property is required. string - The status of Operations Insights
- Operations
Insights Connector Id This property is required. string - The OCID of the external database connector.
- Operations
Insights Status This property is required. string - The status of Operations Insights
- operations
Insights Connector Id This property is required. String - The OCID of the external database connector.
- operations
Insights Status This property is required. String - The status of Operations Insights
- operations
Insights Connector Id This property is required. string - The OCID of the external database connector.
- operations
Insights Status This property is required. string - The status of Operations Insights
- operations_
insights_ connector_ id This property is required. str - The OCID of the external database connector.
- operations_
insights_ status This property is required. str - The status of Operations Insights
- operations
Insights Connector Id This property is required. String - The OCID of the external database connector.
- operations
Insights Status This property is required. String - The status of Operations Insights
GetExternalPluggableDatabasesExternalPluggableDatabaseStackMonitoringConfig
- Stack
Monitoring Connector Id This property is required. string - The OCID of the external database connector.
- Stack
Monitoring Status This property is required. string - The status of Stack Monitoring.
- Stack
Monitoring Connector Id This property is required. string - The OCID of the external database connector.
- Stack
Monitoring Status This property is required. string - The status of Stack Monitoring.
- stack
Monitoring Connector Id This property is required. String - The OCID of the external database connector.
- stack
Monitoring Status This property is required. String - The status of Stack Monitoring.
- stack
Monitoring Connector Id This property is required. string - The OCID of the external database connector.
- stack
Monitoring Status This property is required. string - The status of Stack Monitoring.
- stack_
monitoring_ connector_ id This property is required. str - The OCID of the external database connector.
- stack_
monitoring_ status This property is required. str - The status of Stack Monitoring.
- stack
Monitoring Connector Id This property is required. String - The OCID of the external database connector.
- stack
Monitoring Status This property is required. String - The status of Stack Monitoring.
GetExternalPluggableDatabasesFilter
Package Details
- Repository
- oci pulumi/pulumi-oci
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
oci
Terraform Provider.