oci.DatabaseManagement.getManagedDatabases
Explore with Pulumi AI
This data source provides the list of Managed Databases in Oracle Cloud Infrastructure Database Management service.
Gets the Managed Database for a specific ID or the list of Managed Databases in a specific compartment.
Managed Databases can be filtered based on the name parameter. Only one of the parameters, ID or name
should be provided. If neither of these parameters is provided, all the Managed Databases in the compartment
are listed. Managed Databases can also be filtered based on the deployment type and management option.
If the deployment type is not specified or if it is ONPREMISE
, then the management option is not
considered and Managed Databases with ADVANCED
management option are listed.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";
const testManagedDatabases = oci.DatabaseManagement.getManagedDatabases({
compartmentId: compartmentId,
deploymentType: managedDatabaseDeploymentType,
externalExadataInfrastructureId: testExternalExadataInfrastructure.id,
id: managedDatabaseId,
managementOption: managedDatabaseManagementOption,
name: managedDatabaseName,
});
import pulumi
import pulumi_oci as oci
test_managed_databases = oci.DatabaseManagement.get_managed_databases(compartment_id=compartment_id,
deployment_type=managed_database_deployment_type,
external_exadata_infrastructure_id=test_external_exadata_infrastructure["id"],
id=managed_database_id,
management_option=managed_database_management_option,
name=managed_database_name)
package main
import (
"github.com/pulumi/pulumi-oci/sdk/v2/go/oci/databasemanagement"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := databasemanagement.GetManagedDatabases(ctx, &databasemanagement.GetManagedDatabasesArgs{
CompartmentId: compartmentId,
DeploymentType: pulumi.StringRef(managedDatabaseDeploymentType),
ExternalExadataInfrastructureId: pulumi.StringRef(testExternalExadataInfrastructure.Id),
Id: pulumi.StringRef(managedDatabaseId),
ManagementOption: pulumi.StringRef(managedDatabaseManagementOption),
Name: pulumi.StringRef(managedDatabaseName),
}, 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 testManagedDatabases = Oci.DatabaseManagement.GetManagedDatabases.Invoke(new()
{
CompartmentId = compartmentId,
DeploymentType = managedDatabaseDeploymentType,
ExternalExadataInfrastructureId = testExternalExadataInfrastructure.Id,
Id = managedDatabaseId,
ManagementOption = managedDatabaseManagementOption,
Name = managedDatabaseName,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.DatabaseManagement.DatabaseManagementFunctions;
import com.pulumi.oci.DatabaseManagement.inputs.GetManagedDatabasesArgs;
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 testManagedDatabases = DatabaseManagementFunctions.getManagedDatabases(GetManagedDatabasesArgs.builder()
.compartmentId(compartmentId)
.deploymentType(managedDatabaseDeploymentType)
.externalExadataInfrastructureId(testExternalExadataInfrastructure.id())
.id(managedDatabaseId)
.managementOption(managedDatabaseManagementOption)
.name(managedDatabaseName)
.build());
}
}
variables:
testManagedDatabases:
fn::invoke:
function: oci:DatabaseManagement:getManagedDatabases
arguments:
compartmentId: ${compartmentId}
deploymentType: ${managedDatabaseDeploymentType}
externalExadataInfrastructureId: ${testExternalExadataInfrastructure.id}
id: ${managedDatabaseId}
managementOption: ${managedDatabaseManagementOption}
name: ${managedDatabaseName}
Using getManagedDatabases
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 getManagedDatabases(args: GetManagedDatabasesArgs, opts?: InvokeOptions): Promise<GetManagedDatabasesResult>
function getManagedDatabasesOutput(args: GetManagedDatabasesOutputArgs, opts?: InvokeOptions): Output<GetManagedDatabasesResult>
def get_managed_databases(compartment_id: Optional[str] = None,
deployment_type: Optional[str] = None,
external_exadata_infrastructure_id: Optional[str] = None,
filters: Optional[Sequence[_databasemanagement.GetManagedDatabasesFilter]] = None,
id: Optional[str] = None,
management_option: Optional[str] = None,
name: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetManagedDatabasesResult
def get_managed_databases_output(compartment_id: Optional[pulumi.Input[str]] = None,
deployment_type: Optional[pulumi.Input[str]] = None,
external_exadata_infrastructure_id: Optional[pulumi.Input[str]] = None,
filters: Optional[pulumi.Input[Sequence[pulumi.Input[_databasemanagement.GetManagedDatabasesFilterArgs]]]] = None,
id: Optional[pulumi.Input[str]] = None,
management_option: Optional[pulumi.Input[str]] = None,
name: Optional[pulumi.Input[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetManagedDatabasesResult]
func GetManagedDatabases(ctx *Context, args *GetManagedDatabasesArgs, opts ...InvokeOption) (*GetManagedDatabasesResult, error)
func GetManagedDatabasesOutput(ctx *Context, args *GetManagedDatabasesOutputArgs, opts ...InvokeOption) GetManagedDatabasesResultOutput
> Note: This function is named GetManagedDatabases
in the Go SDK.
public static class GetManagedDatabases
{
public static Task<GetManagedDatabasesResult> InvokeAsync(GetManagedDatabasesArgs args, InvokeOptions? opts = null)
public static Output<GetManagedDatabasesResult> Invoke(GetManagedDatabasesInvokeArgs args, InvokeOptions? opts = null)
}
public static CompletableFuture<GetManagedDatabasesResult> getManagedDatabases(GetManagedDatabasesArgs args, InvokeOptions options)
public static Output<GetManagedDatabasesResult> getManagedDatabases(GetManagedDatabasesArgs args, InvokeOptions options)
fn::invoke:
function: oci:DatabaseManagement/getManagedDatabases:getManagedDatabases
arguments:
# arguments dictionary
The following arguments are supported:
- Compartment
Id This property is required. string - The OCID of the compartment.
- Deployment
Type string - A filter to return Managed Databases of the specified deployment type.
- External
Exadata stringInfrastructure Id - The OCID of the Exadata infrastructure.
- Filters
Changes to this property will trigger replacement.
Managed Databases Filter> - Id string
- The identifier of the resource.
- Management
Option string - A filter to return Managed Databases with the specified management option.
- Name string
- A filter to return only resources that match the entire name.
- Compartment
Id This property is required. string - The OCID of the compartment.
- Deployment
Type string - A filter to return Managed Databases of the specified deployment type.
- External
Exadata stringInfrastructure Id - The OCID of the Exadata infrastructure.
- Filters
Changes to this property will trigger replacement.
Managed Databases Filter - Id string
- The identifier of the resource.
- Management
Option string - A filter to return Managed Databases with the specified management option.
- Name string
- A filter to return only resources that match the entire name.
- compartment
Id This property is required. String - The OCID of the compartment.
- deployment
Type String - A filter to return Managed Databases of the specified deployment type.
- external
Exadata StringInfrastructure Id - The OCID of the Exadata infrastructure.
- filters
Changes to this property will trigger replacement.
Managed Databases Filter> - id String
- The identifier of the resource.
- management
Option String - A filter to return Managed Databases with the specified management option.
- name String
- A filter to return only resources that match the entire name.
- compartment
Id This property is required. string - The OCID of the compartment.
- deployment
Type string - A filter to return Managed Databases of the specified deployment type.
- external
Exadata stringInfrastructure Id - The OCID of the Exadata infrastructure.
- filters
Changes to this property will trigger replacement.
Managed Databases Filter[] - id string
- The identifier of the resource.
- management
Option string - A filter to return Managed Databases with the specified management option.
- name string
- A filter to return only resources that match the entire name.
- compartment_
id This property is required. str - The OCID of the compartment.
- deployment_
type str - A filter to return Managed Databases of the specified deployment type.
- external_
exadata_ strinfrastructure_ id - The OCID of the Exadata infrastructure.
- filters
Changes to this property will trigger replacement.
Get Managed Databases Filter] - id str
- The identifier of the resource.
- management_
option str - A filter to return Managed Databases with the specified management option.
- name str
- A filter to return only resources that match the entire name.
- compartment
Id This property is required. String - The OCID of the compartment.
- deployment
Type String - A filter to return Managed Databases of the specified deployment type.
- external
Exadata StringInfrastructure Id - The OCID of the Exadata infrastructure.
- filters
Changes to this property will trigger replacement.
- id String
- The identifier of the resource.
- management
Option String - A filter to return Managed Databases with the specified management option.
- name String
- A filter to return only resources that match the entire name.
getManagedDatabases Result
The following output properties are available:
- Compartment
Id string - The OCID of the compartment in which the Managed Database Group resides.
- Managed
Database List<GetCollections Managed Databases Managed Database Collection> - The list of managed_database_collection.
- Deployment
Type string - The infrastructure used to deploy the Oracle Database.
- External
Exadata stringInfrastructure Id - Filters
List<Get
Managed Databases Filter> - Id string
- The OCID of the Managed Database Group.
- Management
Option string - The management option used when enabling Database Management.
- Name string
- The name of the Managed Database.
- Compartment
Id string - The OCID of the compartment in which the Managed Database Group resides.
- Managed
Database []GetCollections Managed Databases Managed Database Collection - The list of managed_database_collection.
- Deployment
Type string - The infrastructure used to deploy the Oracle Database.
- External
Exadata stringInfrastructure Id - Filters
[]Get
Managed Databases Filter - Id string
- The OCID of the Managed Database Group.
- Management
Option string - The management option used when enabling Database Management.
- Name string
- The name of the Managed Database.
- compartment
Id String - The OCID of the compartment in which the Managed Database Group resides.
- managed
Database List<GetCollections Managed Databases Managed Database Collection> - The list of managed_database_collection.
- deployment
Type String - The infrastructure used to deploy the Oracle Database.
- external
Exadata StringInfrastructure Id - filters
List<Get
Managed Databases Filter> - id String
- The OCID of the Managed Database Group.
- management
Option String - The management option used when enabling Database Management.
- name String
- The name of the Managed Database.
- compartment
Id string - The OCID of the compartment in which the Managed Database Group resides.
- managed
Database GetCollections Managed Databases Managed Database Collection[] - The list of managed_database_collection.
- deployment
Type string - The infrastructure used to deploy the Oracle Database.
- external
Exadata stringInfrastructure Id - filters
Get
Managed Databases Filter[] - id string
- The OCID of the Managed Database Group.
- management
Option string - The management option used when enabling Database Management.
- name string
- The name of the Managed Database.
- compartment_
id str - The OCID of the compartment in which the Managed Database Group resides.
- managed_
database_ Sequence[databasemanagement.collections Get Managed Databases Managed Database Collection] - The list of managed_database_collection.
- deployment_
type str - The infrastructure used to deploy the Oracle Database.
- external_
exadata_ strinfrastructure_ id - filters
Sequence[databasemanagement.
Get Managed Databases Filter] - id str
- The OCID of the Managed Database Group.
- management_
option str - The management option used when enabling Database Management.
- name str
- The name of the Managed Database.
- compartment
Id String - The OCID of the compartment in which the Managed Database Group resides.
- managed
Database List<Property Map>Collections - The list of managed_database_collection.
- deployment
Type String - The infrastructure used to deploy the Oracle Database.
- external
Exadata StringInfrastructure Id - filters List<Property Map>
- id String
- The OCID of the Managed Database Group.
- management
Option String - The management option used when enabling Database Management.
- name String
- The name of the Managed Database.
Supporting Types
GetManagedDatabasesFilter
GetManagedDatabasesManagedDatabaseCollection
- Items
This property is required. List<GetManaged Databases Managed Database Collection Item>
- Items
This property is required. []GetManaged Databases Managed Database Collection Item
- items
This property is required. List<GetManaged Databases Managed Database Collection Item>
- items
This property is required. GetManaged Databases Managed Database Collection Item[]
- items
This property is required. Sequence[databasemanagement.Get Managed Databases Managed Database Collection Item]
- items
This property is required. List<Property Map>
GetManagedDatabasesManagedDatabaseCollectionItem
- Additional
Details This property is required. Dictionary<string, string> - The additional details specific to a type of database defined in
{"key": "value"}
format. Example:{"bar-key": "value"}
- Compartment
Id This property is required. string - The OCID of the compartment.
- Database
Platform Name This property is required. string - The operating system of database.
- Database
Status This property is required. string - The status of the Oracle Database. Indicates whether the status of the database is UP, DOWN, or UNKNOWN at the current time.
- Database
Sub Type This property is required. string - The subtype of the Oracle Database. Indicates whether the database is a Container Database, Pluggable Database, Non-container Database, Autonomous Database, or Autonomous Container Database.
- Database
Type This property is required. string - The type of Oracle Database installation.
- Database
Version This property is required. string - The Oracle Database version.
- Db
System Id This property is required. string - The OCID of the external DB system that this Managed Database is part of.
- Dbmgmt
Feature Configs This property is required. List<GetManaged Databases Managed Database Collection Item Dbmgmt Feature Config> - The list of feature configurations
This property is required. Dictionary<string, string>- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"Operations.CostCenter": "42"}
- Deployment
Type This property is required. string - A filter to return Managed Databases of the specified deployment type.
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 identifier of the resource.
- Is
Cluster This property is required. bool - Indicates whether the Oracle Database is part of a cluster.
- Managed
Database Groups This property is required. List<GetManaged Databases Managed Database Collection Item Managed Database Group> - A list of Managed Database Groups that the Managed Database belongs to.
- Management
Option This property is required. string - A filter to return Managed Databases with the specified management option.
- Name
This property is required. string - A filter to return only resources that match the entire name.
- Parent
Container Id This property is required. string - The OCID of the parent Container Database if Managed Database is a Pluggable Database.
- Storage
System Id This property is required. string - The OCID of the storage DB system.
This property is required. Dictionary<string, string>- System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system. Example:
{"orcl-cloud.free-tier-retained": "true"}
- Time
Created This property is required. string - The date and time the Managed Database was created.
- Workload
Type This property is required. string - The workload type of the Autonomous Database.
- Additional
Details This property is required. map[string]string - The additional details specific to a type of database defined in
{"key": "value"}
format. Example:{"bar-key": "value"}
- Compartment
Id This property is required. string - The OCID of the compartment.
- Database
Platform Name This property is required. string - The operating system of database.
- Database
Status This property is required. string - The status of the Oracle Database. Indicates whether the status of the database is UP, DOWN, or UNKNOWN at the current time.
- Database
Sub Type This property is required. string - The subtype of the Oracle Database. Indicates whether the database is a Container Database, Pluggable Database, Non-container Database, Autonomous Database, or Autonomous Container Database.
- Database
Type This property is required. string - The type of Oracle Database installation.
- Database
Version This property is required. string - The Oracle Database version.
- Db
System Id This property is required. string - The OCID of the external DB system that this Managed Database is part of.
- Dbmgmt
Feature Configs This property is required. []GetManaged Databases Managed Database Collection Item Dbmgmt Feature Config - The list of feature configurations
This property is required. map[string]string- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"Operations.CostCenter": "42"}
- Deployment
Type This property is required. string - A filter to return Managed Databases of the specified deployment type.
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 identifier of the resource.
- Is
Cluster This property is required. bool - Indicates whether the Oracle Database is part of a cluster.
- Managed
Database Groups This property is required. []GetManaged Databases Managed Database Collection Item Managed Database Group - A list of Managed Database Groups that the Managed Database belongs to.
- Management
Option This property is required. string - A filter to return Managed Databases with the specified management option.
- Name
This property is required. string - A filter to return only resources that match the entire name.
- Parent
Container Id This property is required. string - The OCID of the parent Container Database if Managed Database is a Pluggable Database.
- Storage
System Id This property is required. string - The OCID of the storage DB system.
This property is required. map[string]string- System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system. Example:
{"orcl-cloud.free-tier-retained": "true"}
- Time
Created This property is required. string - The date and time the Managed Database was created.
- Workload
Type This property is required. string - The workload type of the Autonomous Database.
- additional
Details This property is required. Map<String,String> - The additional details specific to a type of database defined in
{"key": "value"}
format. Example:{"bar-key": "value"}
- compartment
Id This property is required. String - The OCID of the compartment.
- database
Platform Name This property is required. String - The operating system of database.
- database
Status This property is required. String - The status of the Oracle Database. Indicates whether the status of the database is UP, DOWN, or UNKNOWN at the current time.
- database
Sub Type This property is required. String - The subtype of the Oracle Database. Indicates whether the database is a Container Database, Pluggable Database, Non-container Database, Autonomous Database, or Autonomous Container Database.
- database
Type This property is required. String - The type of Oracle Database installation.
- database
Version This property is required. String - The Oracle Database version.
- db
System Id This property is required. String - The OCID of the external DB system that this Managed Database is part of.
- dbmgmt
Feature Configs This property is required. List<GetManaged Databases Managed Database Collection Item Dbmgmt Feature Config> - The list of feature configurations
This property is required. Map<String,String>- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"Operations.CostCenter": "42"}
- deployment
Type This property is required. String - A filter to return Managed Databases of the specified deployment type.
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 identifier of the resource.
- is
Cluster This property is required. Boolean - Indicates whether the Oracle Database is part of a cluster.
- managed
Database Groups This property is required. List<GetManaged Databases Managed Database Collection Item Managed Database Group> - A list of Managed Database Groups that the Managed Database belongs to.
- management
Option This property is required. String - A filter to return Managed Databases with the specified management option.
- name
This property is required. String - A filter to return only resources that match the entire name.
- parent
Container Id This property is required. String - The OCID of the parent Container Database if Managed Database is a Pluggable Database.
- storage
System Id This property is required. String - The OCID of the storage DB system.
This property is required. Map<String,String>- System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system. Example:
{"orcl-cloud.free-tier-retained": "true"}
- time
Created This property is required. String - The date and time the Managed Database was created.
- workload
Type This property is required. String - The workload type of the Autonomous Database.
- additional
Details This property is required. {[key: string]: string} - The additional details specific to a type of database defined in
{"key": "value"}
format. Example:{"bar-key": "value"}
- compartment
Id This property is required. string - The OCID of the compartment.
- database
Platform Name This property is required. string - The operating system of database.
- database
Status This property is required. string - The status of the Oracle Database. Indicates whether the status of the database is UP, DOWN, or UNKNOWN at the current time.
- database
Sub Type This property is required. string - The subtype of the Oracle Database. Indicates whether the database is a Container Database, Pluggable Database, Non-container Database, Autonomous Database, or Autonomous Container Database.
- database
Type This property is required. string - The type of Oracle Database installation.
- database
Version This property is required. string - The Oracle Database version.
- db
System Id This property is required. string - The OCID of the external DB system that this Managed Database is part of.
- dbmgmt
Feature Configs This property is required. GetManaged Databases Managed Database Collection Item Dbmgmt Feature Config[] - The list of feature configurations
This property is required. {[key: string]: string}- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"Operations.CostCenter": "42"}
- deployment
Type This property is required. string - A filter to return Managed Databases of the specified deployment type.
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 identifier of the resource.
- is
Cluster This property is required. boolean - Indicates whether the Oracle Database is part of a cluster.
- managed
Database Groups This property is required. GetManaged Databases Managed Database Collection Item Managed Database Group[] - A list of Managed Database Groups that the Managed Database belongs to.
- management
Option This property is required. string - A filter to return Managed Databases with the specified management option.
- name
This property is required. string - A filter to return only resources that match the entire name.
- parent
Container Id This property is required. string - The OCID of the parent Container Database if Managed Database is a Pluggable Database.
- storage
System Id This property is required. string - The OCID of the storage DB system.
This property is required. {[key: string]: string}- System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system. Example:
{"orcl-cloud.free-tier-retained": "true"}
- time
Created This property is required. string - The date and time the Managed Database was created.
- workload
Type This property is required. string - The workload type of the Autonomous Database.
- additional_
details This property is required. Mapping[str, str] - The additional details specific to a type of database defined in
{"key": "value"}
format. Example:{"bar-key": "value"}
- compartment_
id This property is required. str - The OCID of the compartment.
- database_
platform_ name This property is required. str - The operating system of database.
- database_
status This property is required. str - The status of the Oracle Database. Indicates whether the status of the database is UP, DOWN, or UNKNOWN at the current time.
- database_
sub_ type This property is required. str - The subtype of the Oracle Database. Indicates whether the database is a Container Database, Pluggable Database, Non-container Database, Autonomous Database, or Autonomous Container Database.
- database_
type This property is required. str - The type of Oracle Database installation.
- database_
version This property is required. str - The Oracle Database version.
- db_
system_ id This property is required. str - The OCID of the external DB system that this Managed Database is part of.
- dbmgmt_
feature_ configs This property is required. Sequence[databasemanagement.Get Managed Databases Managed Database Collection Item Dbmgmt Feature Config] - The list of feature configurations
This property is required. Mapping[str, str]- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"Operations.CostCenter": "42"}
- deployment_
type This property is required. str - A filter to return Managed Databases of the specified deployment type.
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 identifier of the resource.
- is_
cluster This property is required. bool - Indicates whether the Oracle Database is part of a cluster.
- managed_
database_ groups This property is required. Sequence[databasemanagement.Get Managed Databases Managed Database Collection Item Managed Database Group] - A list of Managed Database Groups that the Managed Database belongs to.
- management_
option This property is required. str - A filter to return Managed Databases with the specified management option.
- name
This property is required. str - A filter to return only resources that match the entire name.
- parent_
container_ id This property is required. str - The OCID of the parent Container Database if Managed Database is a Pluggable Database.
- storage_
system_ id This property is required. str - The OCID of the storage DB system.
This property is required. Mapping[str, str]- System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system. Example:
{"orcl-cloud.free-tier-retained": "true"}
- time_
created This property is required. str - The date and time the Managed Database was created.
- workload_
type This property is required. str - The workload type of the Autonomous Database.
- additional
Details This property is required. Map<String> - The additional details specific to a type of database defined in
{"key": "value"}
format. Example:{"bar-key": "value"}
- compartment
Id This property is required. String - The OCID of the compartment.
- database
Platform Name This property is required. String - The operating system of database.
- database
Status This property is required. String - The status of the Oracle Database. Indicates whether the status of the database is UP, DOWN, or UNKNOWN at the current time.
- database
Sub Type This property is required. String - The subtype of the Oracle Database. Indicates whether the database is a Container Database, Pluggable Database, Non-container Database, Autonomous Database, or Autonomous Container Database.
- database
Type This property is required. String - The type of Oracle Database installation.
- database
Version This property is required. String - The Oracle Database version.
- db
System Id This property is required. String - The OCID of the external DB system that this Managed Database is part of.
- dbmgmt
Feature Configs This property is required. List<Property Map> - The list of feature configurations
This property is required. Map<String>- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"Operations.CostCenter": "42"}
- deployment
Type This property is required. String - A filter to return Managed Databases of the specified deployment type.
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 identifier of the resource.
- is
Cluster This property is required. Boolean - Indicates whether the Oracle Database is part of a cluster.
- managed
Database Groups This property is required. List<Property Map> - A list of Managed Database Groups that the Managed Database belongs to.
- management
Option This property is required. String - A filter to return Managed Databases with the specified management option.
- name
This property is required. String - A filter to return only resources that match the entire name.
- parent
Container Id This property is required. String - The OCID of the parent Container Database if Managed Database is a Pluggable Database.
- storage
System Id This property is required. String - The OCID of the storage DB system.
This property is required. Map<String>- System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system. Example:
{"orcl-cloud.free-tier-retained": "true"}
- time
Created This property is required. String - The date and time the Managed Database was created.
- workload
Type This property is required. String - The workload type of the Autonomous Database.
GetManagedDatabasesManagedDatabaseCollectionItemDbmgmtFeatureConfig
- Connector
Details This property is required. List<GetManaged Databases Managed Database Collection Item Dbmgmt Feature Config Connector Detail> - The connector details required to connect to an Oracle cloud database.
- Database
Connection Details This property is required. List<GetManaged Databases Managed Database Collection Item Dbmgmt Feature Config Database Connection Detail> - The connection details required to connect to the database.
- Feature
This property is required. string - The name of the Database Management feature.
- Feature
Status This property is required. string - The list of statuses for Database Management features.
- License
Model This property is required. string - The Oracle license model that applies to the external database.
- Connector
Details This property is required. []GetManaged Databases Managed Database Collection Item Dbmgmt Feature Config Connector Detail - The connector details required to connect to an Oracle cloud database.
- Database
Connection Details This property is required. []GetManaged Databases Managed Database Collection Item Dbmgmt Feature Config Database Connection Detail - The connection details required to connect to the database.
- Feature
This property is required. string - The name of the Database Management feature.
- Feature
Status This property is required. string - The list of statuses for Database Management features.
- License
Model This property is required. string - The Oracle license model that applies to the external database.
- connector
Details This property is required. List<GetManaged Databases Managed Database Collection Item Dbmgmt Feature Config Connector Detail> - The connector details required to connect to an Oracle cloud database.
- database
Connection Details This property is required. List<GetManaged Databases Managed Database Collection Item Dbmgmt Feature Config Database Connection Detail> - The connection details required to connect to the database.
- feature
This property is required. String - The name of the Database Management feature.
- feature
Status This property is required. String - The list of statuses for Database Management features.
- license
Model This property is required. String - The Oracle license model that applies to the external database.
- connector
Details This property is required. GetManaged Databases Managed Database Collection Item Dbmgmt Feature Config Connector Detail[] - The connector details required to connect to an Oracle cloud database.
- database
Connection Details This property is required. GetManaged Databases Managed Database Collection Item Dbmgmt Feature Config Database Connection Detail[] - The connection details required to connect to the database.
- feature
This property is required. string - The name of the Database Management feature.
- feature
Status This property is required. string - The list of statuses for Database Management features.
- license
Model This property is required. string - The Oracle license model that applies to the external database.
- connector_
details This property is required. Sequence[databasemanagement.Get Managed Databases Managed Database Collection Item Dbmgmt Feature Config Connector Detail] - The connector details required to connect to an Oracle cloud database.
- database_
connection_ details This property is required. Sequence[databasemanagement.Get Managed Databases Managed Database Collection Item Dbmgmt Feature Config Database Connection Detail] - The connection details required to connect to the database.
- feature
This property is required. str - The name of the Database Management feature.
- feature_
status This property is required. str - The list of statuses for Database Management features.
- license_
model This property is required. str - The Oracle license model that applies to the external database.
- connector
Details This property is required. List<Property Map> - The connector details required to connect to an Oracle cloud database.
- database
Connection Details This property is required. List<Property Map> - The connection details required to connect to the database.
- feature
This property is required. String - The name of the Database Management feature.
- feature
Status This property is required. String - The list of statuses for Database Management features.
- license
Model This property is required. String - The Oracle license model that applies to the external database.
GetManagedDatabasesManagedDatabaseCollectionItemDbmgmtFeatureConfigConnectorDetail
- Connector
Type This property is required. string - The list of supported connection types:
- PE: Private endpoint
- MACS: Management agent
- EXTERNAL: External database connector
- Database
Connector Id This property is required. string - The OCID of the external database connector.
- Management
Agent Id This property is required. string - The OCID of the management agent.
- Private
End Point Id This property is required. string - The OCID of the private endpoint.
- Connector
Type This property is required. string - The list of supported connection types:
- PE: Private endpoint
- MACS: Management agent
- EXTERNAL: External database connector
- Database
Connector Id This property is required. string - The OCID of the external database connector.
- Management
Agent Id This property is required. string - The OCID of the management agent.
- Private
End Point Id This property is required. string - The OCID of the private endpoint.
- connector
Type This property is required. String - The list of supported connection types:
- PE: Private endpoint
- MACS: Management agent
- EXTERNAL: External database connector
- database
Connector Id This property is required. String - The OCID of the external database connector.
- management
Agent Id This property is required. String - The OCID of the management agent.
- private
End Point Id This property is required. String - The OCID of the private endpoint.
- connector
Type This property is required. string - The list of supported connection types:
- PE: Private endpoint
- MACS: Management agent
- EXTERNAL: External database connector
- database
Connector Id This property is required. string - The OCID of the external database connector.
- management
Agent Id This property is required. string - The OCID of the management agent.
- private
End Point Id This property is required. string - The OCID of the private endpoint.
- connector_
type This property is required. str - The list of supported connection types:
- PE: Private endpoint
- MACS: Management agent
- EXTERNAL: External database connector
- database_
connector_ id This property is required. str - The OCID of the external database connector.
- management_
agent_ id This property is required. str - The OCID of the management agent.
- private_
end_ point_ id This property is required. str - The OCID of the private endpoint.
- connector
Type This property is required. String - The list of supported connection types:
- PE: Private endpoint
- MACS: Management agent
- EXTERNAL: External database connector
- database
Connector Id This property is required. String - The OCID of the external database connector.
- management
Agent Id This property is required. String - The OCID of the management agent.
- private
End Point Id This property is required. String - The OCID of the private endpoint.
GetManagedDatabasesManagedDatabaseCollectionItemDbmgmtFeatureConfigDatabaseConnectionDetail
- Connection
Credentials This property is required. List<GetManaged Databases Managed Database Collection Item Dbmgmt Feature Config Database Connection Detail Connection Credential> - The credentials used to connect to the database. Currently only the
DETAILS
type is supported for creating MACS connector credentials. - Connection
Strings This property is required. List<GetManaged Databases Managed Database Collection Item Dbmgmt Feature Config Database Connection Detail Connection String> - The details of the Oracle Database connection string.
- Connection
Credentials This property is required. []GetManaged Databases Managed Database Collection Item Dbmgmt Feature Config Database Connection Detail Connection Credential - The credentials used to connect to the database. Currently only the
DETAILS
type is supported for creating MACS connector credentials. - Connection
Strings This property is required. []GetManaged Databases Managed Database Collection Item Dbmgmt Feature Config Database Connection Detail Connection String - The details of the Oracle Database connection string.
- connection
Credentials This property is required. List<GetManaged Databases Managed Database Collection Item Dbmgmt Feature Config Database Connection Detail Connection Credential> - The credentials used to connect to the database. Currently only the
DETAILS
type is supported for creating MACS connector credentials. - connection
Strings This property is required. List<GetManaged Databases Managed Database Collection Item Dbmgmt Feature Config Database Connection Detail Connection String> - The details of the Oracle Database connection string.
- connection
Credentials This property is required. GetManaged Databases Managed Database Collection Item Dbmgmt Feature Config Database Connection Detail Connection Credential[] - The credentials used to connect to the database. Currently only the
DETAILS
type is supported for creating MACS connector credentials. - connection
Strings This property is required. GetManaged Databases Managed Database Collection Item Dbmgmt Feature Config Database Connection Detail Connection String[] - The details of the Oracle Database connection string.
- connection_
credentials This property is required. Sequence[databasemanagement.Get Managed Databases Managed Database Collection Item Dbmgmt Feature Config Database Connection Detail Connection Credential] - The credentials used to connect to the database. Currently only the
DETAILS
type is supported for creating MACS connector credentials. - connection_
strings This property is required. Sequence[databasemanagement.Get Managed Databases Managed Database Collection Item Dbmgmt Feature Config Database Connection Detail Connection String] - The details of the Oracle Database connection string.
- connection
Credentials This property is required. List<Property Map> - The credentials used to connect to the database. Currently only the
DETAILS
type is supported for creating MACS connector credentials. - connection
Strings This property is required. List<Property Map> - The details of the Oracle Database connection string.
GetManagedDatabasesManagedDatabaseCollectionItemDbmgmtFeatureConfigDatabaseConnectionDetailConnectionCredential
- Credential
Name This property is required. string - The name of the credential information that used to connect to the DB system resource. The name should be in "x.y" format, where the length of "x" has a maximum of 64 characters, and length of "y" has a maximum of 199 characters. The name strings can contain letters, numbers and the underscore character only. Other characters are not valid, except for the "." character that separates the "x" and "y" portions of the name. IMPORTANT - The name must be unique within the Oracle Cloud Infrastructure region the credential is being created in. If you specify a name that duplicates the name of another credential within the same Oracle Cloud Infrastructure region, you may overwrite or corrupt the credential that is already using the name.
- Credential
Type This property is required. string - The type of credential used to connect to the database.
- Named
Credential Id This property is required. string - The OCID of the Named Credential where the database password metadata is stored.
- Password
Secret Id This property is required. string - The OCID of the secret containing the user password.
- Role
This property is required. string - The role of the user connecting to the database.
- Ssl
Secret Id This property is required. string - The OCID of the secret containing the SSL keystore and truststore details.
- User
Name This property is required. string - The user name used to connect to the database.
- Credential
Name This property is required. string - The name of the credential information that used to connect to the DB system resource. The name should be in "x.y" format, where the length of "x" has a maximum of 64 characters, and length of "y" has a maximum of 199 characters. The name strings can contain letters, numbers and the underscore character only. Other characters are not valid, except for the "." character that separates the "x" and "y" portions of the name. IMPORTANT - The name must be unique within the Oracle Cloud Infrastructure region the credential is being created in. If you specify a name that duplicates the name of another credential within the same Oracle Cloud Infrastructure region, you may overwrite or corrupt the credential that is already using the name.
- Credential
Type This property is required. string - The type of credential used to connect to the database.
- Named
Credential Id This property is required. string - The OCID of the Named Credential where the database password metadata is stored.
- Password
Secret Id This property is required. string - The OCID of the secret containing the user password.
- Role
This property is required. string - The role of the user connecting to the database.
- Ssl
Secret Id This property is required. string - The OCID of the secret containing the SSL keystore and truststore details.
- User
Name This property is required. string - The user name used to connect to the database.
- credential
Name This property is required. String - The name of the credential information that used to connect to the DB system resource. The name should be in "x.y" format, where the length of "x" has a maximum of 64 characters, and length of "y" has a maximum of 199 characters. The name strings can contain letters, numbers and the underscore character only. Other characters are not valid, except for the "." character that separates the "x" and "y" portions of the name. IMPORTANT - The name must be unique within the Oracle Cloud Infrastructure region the credential is being created in. If you specify a name that duplicates the name of another credential within the same Oracle Cloud Infrastructure region, you may overwrite or corrupt the credential that is already using the name.
- credential
Type This property is required. String - The type of credential used to connect to the database.
- named
Credential Id This property is required. String - The OCID of the Named Credential where the database password metadata is stored.
- password
Secret Id This property is required. String - The OCID of the secret containing the user password.
- role
This property is required. String - The role of the user connecting to the database.
- ssl
Secret Id This property is required. String - The OCID of the secret containing the SSL keystore and truststore details.
- user
Name This property is required. String - The user name used to connect to the database.
- credential
Name This property is required. string - The name of the credential information that used to connect to the DB system resource. The name should be in "x.y" format, where the length of "x" has a maximum of 64 characters, and length of "y" has a maximum of 199 characters. The name strings can contain letters, numbers and the underscore character only. Other characters are not valid, except for the "." character that separates the "x" and "y" portions of the name. IMPORTANT - The name must be unique within the Oracle Cloud Infrastructure region the credential is being created in. If you specify a name that duplicates the name of another credential within the same Oracle Cloud Infrastructure region, you may overwrite or corrupt the credential that is already using the name.
- credential
Type This property is required. string - The type of credential used to connect to the database.
- named
Credential Id This property is required. string - The OCID of the Named Credential where the database password metadata is stored.
- password
Secret Id This property is required. string - The OCID of the secret containing the user password.
- role
This property is required. string - The role of the user connecting to the database.
- ssl
Secret Id This property is required. string - The OCID of the secret containing the SSL keystore and truststore details.
- user
Name This property is required. string - The user name used to connect to the database.
- credential_
name This property is required. str - The name of the credential information that used to connect to the DB system resource. The name should be in "x.y" format, where the length of "x" has a maximum of 64 characters, and length of "y" has a maximum of 199 characters. The name strings can contain letters, numbers and the underscore character only. Other characters are not valid, except for the "." character that separates the "x" and "y" portions of the name. IMPORTANT - The name must be unique within the Oracle Cloud Infrastructure region the credential is being created in. If you specify a name that duplicates the name of another credential within the same Oracle Cloud Infrastructure region, you may overwrite or corrupt the credential that is already using the name.
- credential_
type This property is required. str - The type of credential used to connect to the database.
- named_
credential_ id This property is required. str - The OCID of the Named Credential where the database password metadata is stored.
- password_
secret_ id This property is required. str - The OCID of the secret containing the user password.
- role
This property is required. str - The role of the user connecting to the database.
- ssl_
secret_ id This property is required. str - The OCID of the secret containing the SSL keystore and truststore details.
- user_
name This property is required. str - The user name used to connect to the database.
- credential
Name This property is required. String - The name of the credential information that used to connect to the DB system resource. The name should be in "x.y" format, where the length of "x" has a maximum of 64 characters, and length of "y" has a maximum of 199 characters. The name strings can contain letters, numbers and the underscore character only. Other characters are not valid, except for the "." character that separates the "x" and "y" portions of the name. IMPORTANT - The name must be unique within the Oracle Cloud Infrastructure region the credential is being created in. If you specify a name that duplicates the name of another credential within the same Oracle Cloud Infrastructure region, you may overwrite or corrupt the credential that is already using the name.
- credential
Type This property is required. String - The type of credential used to connect to the database.
- named
Credential Id This property is required. String - The OCID of the Named Credential where the database password metadata is stored.
- password
Secret Id This property is required. String - The OCID of the secret containing the user password.
- role
This property is required. String - The role of the user connecting to the database.
- ssl
Secret Id This property is required. String - The OCID of the secret containing the SSL keystore and truststore details.
- user
Name This property is required. String - The user name used to connect to the database.
GetManagedDatabasesManagedDatabaseCollectionItemDbmgmtFeatureConfigDatabaseConnectionDetailConnectionString
- Connection
Type This property is required. string - The list of supported connection types:
- BASIC: Basic connection details
- Port
This property is required. int - The port number used to connect to the database.
- Protocol
This property is required. string - The protocol used to connect to the database.
- Service
This property is required. string - The service name of the database.
- Connection
Type This property is required. string - The list of supported connection types:
- BASIC: Basic connection details
- Port
This property is required. int - The port number used to connect to the database.
- Protocol
This property is required. string - The protocol used to connect to the database.
- Service
This property is required. string - The service name of the database.
- connection
Type This property is required. String - The list of supported connection types:
- BASIC: Basic connection details
- port
This property is required. Integer - The port number used to connect to the database.
- protocol
This property is required. String - The protocol used to connect to the database.
- service
This property is required. String - The service name of the database.
- connection
Type This property is required. string - The list of supported connection types:
- BASIC: Basic connection details
- port
This property is required. number - The port number used to connect to the database.
- protocol
This property is required. string - The protocol used to connect to the database.
- service
This property is required. string - The service name of the database.
- connection_
type This property is required. str - The list of supported connection types:
- BASIC: Basic connection details
- port
This property is required. int - The port number used to connect to the database.
- protocol
This property is required. str - The protocol used to connect to the database.
- service
This property is required. str - The service name of the database.
- connection
Type This property is required. String - The list of supported connection types:
- BASIC: Basic connection details
- port
This property is required. Number - The port number used to connect to the database.
- protocol
This property is required. String - The protocol used to connect to the database.
- service
This property is required. String - The service name of the database.
GetManagedDatabasesManagedDatabaseCollectionItemManagedDatabaseGroup
- Compartment
Id This property is required. string - The OCID of the compartment.
- Id
This property is required. string - The identifier of the resource.
- Name
This property is required. string - A filter to return only resources that match the entire name.
- Compartment
Id This property is required. string - The OCID of the compartment.
- Id
This property is required. string - The identifier of the resource.
- Name
This property is required. string - A filter to return only resources that match the entire name.
- compartment
Id This property is required. String - The OCID of the compartment.
- id
This property is required. String - The identifier of the resource.
- name
This property is required. String - A filter to return only resources that match the entire name.
- compartment
Id This property is required. string - The OCID of the compartment.
- id
This property is required. string - The identifier of the resource.
- name
This property is required. string - A filter to return only resources that match the entire name.
- compartment_
id This property is required. str - The OCID of the compartment.
- id
This property is required. str - The identifier of the resource.
- name
This property is required. str - A filter to return only resources that match the entire name.
- compartment
Id This property is required. String - The OCID of the compartment.
- id
This property is required. String - The identifier of the resource.
- name
This property is required. String - A filter to return only resources that match the entire name.
Package Details
- Repository
- oci pulumi/pulumi-oci
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
oci
Terraform Provider.