1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. DatabaseManagement
  5. getCloudDbSystems
Oracle Cloud Infrastructure v3.7.0 published on Saturday, Sep 13, 2025 by Pulumi

oci.DatabaseManagement.getCloudDbSystems

Explore with Pulumi AI

oci logo
Oracle Cloud Infrastructure v3.7.0 published on Saturday, Sep 13, 2025 by Pulumi

    This data source provides the list of Cloud Db Systems in Oracle Cloud Infrastructure Database Management service.

    Lists the cloud DB systems in the specified compartment.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as oci from "@pulumi/oci";
    
    const testCloudDbSystems = oci.DatabaseManagement.getCloudDbSystems({
        compartmentId: compartmentId,
        dbaasParentInfrastructureId: testDbaasParentInfrastructure.id,
        deploymentType: cloudDbSystemDeploymentType,
        displayName: cloudDbSystemDisplayName,
        state: cloudDbSystemState,
    });
    
    import pulumi
    import pulumi_oci as oci
    
    test_cloud_db_systems = oci.DatabaseManagement.get_cloud_db_systems(compartment_id=compartment_id,
        dbaas_parent_infrastructure_id=test_dbaas_parent_infrastructure["id"],
        deployment_type=cloud_db_system_deployment_type,
        display_name=cloud_db_system_display_name,
        state=cloud_db_system_state)
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-oci/sdk/v3/go/oci/databasemanagement"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := databasemanagement.GetCloudDbSystems(ctx, &databasemanagement.GetCloudDbSystemsArgs{
    			CompartmentId:               compartmentId,
    			DbaasParentInfrastructureId: pulumi.StringRef(testDbaasParentInfrastructure.Id),
    			DeploymentType:              pulumi.StringRef(cloudDbSystemDeploymentType),
    			DisplayName:                 pulumi.StringRef(cloudDbSystemDisplayName),
    			State:                       pulumi.StringRef(cloudDbSystemState),
    		}, 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 testCloudDbSystems = Oci.DatabaseManagement.GetCloudDbSystems.Invoke(new()
        {
            CompartmentId = compartmentId,
            DbaasParentInfrastructureId = testDbaasParentInfrastructure.Id,
            DeploymentType = cloudDbSystemDeploymentType,
            DisplayName = cloudDbSystemDisplayName,
            State = cloudDbSystemState,
        });
    
    });
    
    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.GetCloudDbSystemsArgs;
    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 testCloudDbSystems = DatabaseManagementFunctions.getCloudDbSystems(GetCloudDbSystemsArgs.builder()
                .compartmentId(compartmentId)
                .dbaasParentInfrastructureId(testDbaasParentInfrastructure.id())
                .deploymentType(cloudDbSystemDeploymentType)
                .displayName(cloudDbSystemDisplayName)
                .state(cloudDbSystemState)
                .build());
    
        }
    }
    
    variables:
      testCloudDbSystems:
        fn::invoke:
          function: oci:DatabaseManagement:getCloudDbSystems
          arguments:
            compartmentId: ${compartmentId}
            dbaasParentInfrastructureId: ${testDbaasParentInfrastructure.id}
            deploymentType: ${cloudDbSystemDeploymentType}
            displayName: ${cloudDbSystemDisplayName}
            state: ${cloudDbSystemState}
    

    Using getCloudDbSystems

    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 getCloudDbSystems(args: GetCloudDbSystemsArgs, opts?: InvokeOptions): Promise<GetCloudDbSystemsResult>
    function getCloudDbSystemsOutput(args: GetCloudDbSystemsOutputArgs, opts?: InvokeOptions): Output<GetCloudDbSystemsResult>
    def get_cloud_db_systems(compartment_id: Optional[str] = None,
                             dbaas_parent_infrastructure_id: Optional[str] = None,
                             deployment_type: Optional[str] = None,
                             display_name: Optional[str] = None,
                             filters: Optional[Sequence[GetCloudDbSystemsFilter]] = None,
                             state: Optional[str] = None,
                             opts: Optional[InvokeOptions] = None) -> GetCloudDbSystemsResult
    def get_cloud_db_systems_output(compartment_id: Optional[pulumi.Input[str]] = None,
                             dbaas_parent_infrastructure_id: Optional[pulumi.Input[str]] = None,
                             deployment_type: Optional[pulumi.Input[str]] = None,
                             display_name: Optional[pulumi.Input[str]] = None,
                             filters: Optional[pulumi.Input[Sequence[pulumi.Input[GetCloudDbSystemsFilterArgs]]]] = None,
                             state: Optional[pulumi.Input[str]] = None,
                             opts: Optional[InvokeOptions] = None) -> Output[GetCloudDbSystemsResult]
    func GetCloudDbSystems(ctx *Context, args *GetCloudDbSystemsArgs, opts ...InvokeOption) (*GetCloudDbSystemsResult, error)
    func GetCloudDbSystemsOutput(ctx *Context, args *GetCloudDbSystemsOutputArgs, opts ...InvokeOption) GetCloudDbSystemsResultOutput

    > Note: This function is named GetCloudDbSystems in the Go SDK.

    public static class GetCloudDbSystems 
    {
        public static Task<GetCloudDbSystemsResult> InvokeAsync(GetCloudDbSystemsArgs args, InvokeOptions? opts = null)
        public static Output<GetCloudDbSystemsResult> Invoke(GetCloudDbSystemsInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetCloudDbSystemsResult> getCloudDbSystems(GetCloudDbSystemsArgs args, InvokeOptions options)
    public static Output<GetCloudDbSystemsResult> getCloudDbSystems(GetCloudDbSystemsArgs args, InvokeOptions options)
    
    fn::invoke:
      function: oci:DatabaseManagement/getCloudDbSystems:getCloudDbSystems
      arguments:
        # arguments dictionary

    The following arguments are supported:

    CompartmentId string
    The OCID of the compartment.
    DbaasParentInfrastructureId string
    The OCID of the dbaas parent infrastructure of the cloud DB system.
    DeploymentType string
    A filter to return cloud DB systems of the specified deployment type.
    DisplayName string
    A filter to only return the resources that match the entire display name.
    Filters List<GetCloudDbSystemsFilter>
    State string
    The lifecycle state of a resource.
    CompartmentId string
    The OCID of the compartment.
    DbaasParentInfrastructureId string
    The OCID of the dbaas parent infrastructure of the cloud DB system.
    DeploymentType string
    A filter to return cloud DB systems of the specified deployment type.
    DisplayName string
    A filter to only return the resources that match the entire display name.
    Filters []GetCloudDbSystemsFilter
    State string
    The lifecycle state of a resource.
    compartmentId String
    The OCID of the compartment.
    dbaasParentInfrastructureId String
    The OCID of the dbaas parent infrastructure of the cloud DB system.
    deploymentType String
    A filter to return cloud DB systems of the specified deployment type.
    displayName String
    A filter to only return the resources that match the entire display name.
    filters List<GetCloudDbSystemsFilter>
    state String
    The lifecycle state of a resource.
    compartmentId string
    The OCID of the compartment.
    dbaasParentInfrastructureId string
    The OCID of the dbaas parent infrastructure of the cloud DB system.
    deploymentType string
    A filter to return cloud DB systems of the specified deployment type.
    displayName string
    A filter to only return the resources that match the entire display name.
    filters GetCloudDbSystemsFilter[]
    state string
    The lifecycle state of a resource.
    compartment_id str
    The OCID of the compartment.
    dbaas_parent_infrastructure_id str
    The OCID of the dbaas parent infrastructure of the cloud DB system.
    deployment_type str
    A filter to return cloud DB systems of the specified deployment type.
    display_name str
    A filter to only return the resources that match the entire display name.
    filters Sequence[GetCloudDbSystemsFilter]
    state str
    The lifecycle state of a resource.
    compartmentId String
    The OCID of the compartment.
    dbaasParentInfrastructureId String
    The OCID of the dbaas parent infrastructure of the cloud DB system.
    deploymentType String
    A filter to return cloud DB systems of the specified deployment type.
    displayName String
    A filter to only return the resources that match the entire display name.
    filters List<Property Map>
    state String
    The lifecycle state of a resource.

    getCloudDbSystems Result

    The following output properties are available:

    CloudDbSystemCollections List<GetCloudDbSystemsCloudDbSystemCollection>
    The list of cloud_db_system_collection.
    CompartmentId string
    The OCID of the compartment.
    Id string
    The provider-assigned unique ID for this managed resource.
    DbaasParentInfrastructureId string
    The OCID of the parent cloud DB Infrastructure. For VM Dbsystems , it will be the DBSystem Id. For ExaCS and ExaCC, it will be the cloudVmClusterId and vmClusterId respectively.
    DeploymentType string
    The deployment type of cloud dbsystem.
    DisplayName string
    The user-friendly name for the DB system. The name does not have to be unique.
    Filters List<GetCloudDbSystemsFilter>
    State string
    The current lifecycle state of the cloud DB system resource.
    CloudDbSystemCollections []GetCloudDbSystemsCloudDbSystemCollection
    The list of cloud_db_system_collection.
    CompartmentId string
    The OCID of the compartment.
    Id string
    The provider-assigned unique ID for this managed resource.
    DbaasParentInfrastructureId string
    The OCID of the parent cloud DB Infrastructure. For VM Dbsystems , it will be the DBSystem Id. For ExaCS and ExaCC, it will be the cloudVmClusterId and vmClusterId respectively.
    DeploymentType string
    The deployment type of cloud dbsystem.
    DisplayName string
    The user-friendly name for the DB system. The name does not have to be unique.
    Filters []GetCloudDbSystemsFilter
    State string
    The current lifecycle state of the cloud DB system resource.
    cloudDbSystemCollections List<GetCloudDbSystemsCloudDbSystemCollection>
    The list of cloud_db_system_collection.
    compartmentId String
    The OCID of the compartment.
    id String
    The provider-assigned unique ID for this managed resource.
    dbaasParentInfrastructureId String
    The OCID of the parent cloud DB Infrastructure. For VM Dbsystems , it will be the DBSystem Id. For ExaCS and ExaCC, it will be the cloudVmClusterId and vmClusterId respectively.
    deploymentType String
    The deployment type of cloud dbsystem.
    displayName String
    The user-friendly name for the DB system. The name does not have to be unique.
    filters List<GetCloudDbSystemsFilter>
    state String
    The current lifecycle state of the cloud DB system resource.
    cloudDbSystemCollections GetCloudDbSystemsCloudDbSystemCollection[]
    The list of cloud_db_system_collection.
    compartmentId string
    The OCID of the compartment.
    id string
    The provider-assigned unique ID for this managed resource.
    dbaasParentInfrastructureId string
    The OCID of the parent cloud DB Infrastructure. For VM Dbsystems , it will be the DBSystem Id. For ExaCS and ExaCC, it will be the cloudVmClusterId and vmClusterId respectively.
    deploymentType string
    The deployment type of cloud dbsystem.
    displayName string
    The user-friendly name for the DB system. The name does not have to be unique.
    filters GetCloudDbSystemsFilter[]
    state string
    The current lifecycle state of the cloud DB system resource.
    cloud_db_system_collections Sequence[GetCloudDbSystemsCloudDbSystemCollection]
    The list of cloud_db_system_collection.
    compartment_id str
    The OCID of the compartment.
    id str
    The provider-assigned unique ID for this managed resource.
    dbaas_parent_infrastructure_id str
    The OCID of the parent cloud DB Infrastructure. For VM Dbsystems , it will be the DBSystem Id. For ExaCS and ExaCC, it will be the cloudVmClusterId and vmClusterId respectively.
    deployment_type str
    The deployment type of cloud dbsystem.
    display_name str
    The user-friendly name for the DB system. The name does not have to be unique.
    filters Sequence[GetCloudDbSystemsFilter]
    state str
    The current lifecycle state of the cloud DB system resource.
    cloudDbSystemCollections List<Property Map>
    The list of cloud_db_system_collection.
    compartmentId String
    The OCID of the compartment.
    id String
    The provider-assigned unique ID for this managed resource.
    dbaasParentInfrastructureId String
    The OCID of the parent cloud DB Infrastructure. For VM Dbsystems , it will be the DBSystem Id. For ExaCS and ExaCC, it will be the cloudVmClusterId and vmClusterId respectively.
    deploymentType String
    The deployment type of cloud dbsystem.
    displayName String
    The user-friendly name for the DB system. The name does not have to be unique.
    filters List<Property Map>
    state String
    The current lifecycle state of the cloud DB system resource.

    Supporting Types

    GetCloudDbSystemsCloudDbSystemCollection

    GetCloudDbSystemsCloudDbSystemCollectionItem

    CompartmentId string
    The OCID of the compartment.
    DatabaseManagementConfigs List<GetCloudDbSystemsCloudDbSystemCollectionItemDatabaseManagementConfig>
    The configuration details of Database Management for a cloud DB system.
    DbSystemDiscoveryId string
    The OCID of the DB system discovery.
    DbaasParentInfrastructureId string
    The OCID of the dbaas parent infrastructure of the cloud DB system.
    DefinedTags 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"}
    DeploymentType string
    A filter to return cloud DB systems of the specified deployment type.
    DiscoveryAgentId string
    The OCID of the management agent used during the discovery of the DB system.
    DisplayName string
    A filter to only return the resources that match the entire display name.
    FreeformTags 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"}
    HomeDirectory string
    The Oracle Grid home directory in case of cluster-based DB system and Oracle home directory in case of single instance-based DB system.
    Id string
    The OCID of the cloud DB system.
    IsCluster bool
    Indicates whether the DB system is a cluster DB system or not.
    LifecycleDetails string
    Additional information about the current lifecycle state.
    StackMonitoringConfigs List<GetCloudDbSystemsCloudDbSystemCollectionItemStackMonitoringConfig>
    The configuration details of Stack Monitoring for a cloud DB system.
    State string
    The lifecycle state of a resource.
    SystemTags 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"}
    TimeCreated string
    The date and time the cloud DB system was created.
    TimeUpdated string
    The date and time the cloud DB system was last updated.
    CompartmentId string
    The OCID of the compartment.
    DatabaseManagementConfigs []GetCloudDbSystemsCloudDbSystemCollectionItemDatabaseManagementConfig
    The configuration details of Database Management for a cloud DB system.
    DbSystemDiscoveryId string
    The OCID of the DB system discovery.
    DbaasParentInfrastructureId string
    The OCID of the dbaas parent infrastructure of the cloud DB system.
    DefinedTags 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"}
    DeploymentType string
    A filter to return cloud DB systems of the specified deployment type.
    DiscoveryAgentId string
    The OCID of the management agent used during the discovery of the DB system.
    DisplayName string
    A filter to only return the resources that match the entire display name.
    FreeformTags 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"}
    HomeDirectory string
    The Oracle Grid home directory in case of cluster-based DB system and Oracle home directory in case of single instance-based DB system.
    Id string
    The OCID of the cloud DB system.
    IsCluster bool
    Indicates whether the DB system is a cluster DB system or not.
    LifecycleDetails string
    Additional information about the current lifecycle state.
    StackMonitoringConfigs []GetCloudDbSystemsCloudDbSystemCollectionItemStackMonitoringConfig
    The configuration details of Stack Monitoring for a cloud DB system.
    State string
    The lifecycle state of a resource.
    SystemTags 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"}
    TimeCreated string
    The date and time the cloud DB system was created.
    TimeUpdated string
    The date and time the cloud DB system was last updated.
    compartmentId String
    The OCID of the compartment.
    databaseManagementConfigs List<GetCloudDbSystemsCloudDbSystemCollectionItemConfig>
    The configuration details of Database Management for a cloud DB system.
    dbSystemDiscoveryId String
    The OCID of the DB system discovery.
    dbaasParentInfrastructureId String
    The OCID of the dbaas parent infrastructure of the cloud DB system.
    definedTags 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"}
    deploymentType String
    A filter to return cloud DB systems of the specified deployment type.
    discoveryAgentId String
    The OCID of the management agent used during the discovery of the DB system.
    displayName String
    A filter to only return the resources that match the entire display name.
    freeformTags 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"}
    homeDirectory String
    The Oracle Grid home directory in case of cluster-based DB system and Oracle home directory in case of single instance-based DB system.
    id String
    The OCID of the cloud DB system.
    isCluster Boolean
    Indicates whether the DB system is a cluster DB system or not.
    lifecycleDetails String
    Additional information about the current lifecycle state.
    stackMonitoringConfigs List<GetCloudDbSystemsCloudDbSystemCollectionItemStackMonitoringConfig>
    The configuration details of Stack Monitoring for a cloud DB system.
    state String
    The lifecycle state of a resource.
    systemTags 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"}
    timeCreated String
    The date and time the cloud DB system was created.
    timeUpdated String
    The date and time the cloud DB system was last updated.
    compartmentId string
    The OCID of the compartment.
    databaseManagementConfigs GetCloudDbSystemsCloudDbSystemCollectionItemDatabaseManagementConfig[]
    The configuration details of Database Management for a cloud DB system.
    dbSystemDiscoveryId string
    The OCID of the DB system discovery.
    dbaasParentInfrastructureId string
    The OCID of the dbaas parent infrastructure of the cloud DB system.
    definedTags {[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"}
    deploymentType string
    A filter to return cloud DB systems of the specified deployment type.
    discoveryAgentId string
    The OCID of the management agent used during the discovery of the DB system.
    displayName string
    A filter to only return the resources that match the entire display name.
    freeformTags {[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"}
    homeDirectory string
    The Oracle Grid home directory in case of cluster-based DB system and Oracle home directory in case of single instance-based DB system.
    id string
    The OCID of the cloud DB system.
    isCluster boolean
    Indicates whether the DB system is a cluster DB system or not.
    lifecycleDetails string
    Additional information about the current lifecycle state.
    stackMonitoringConfigs GetCloudDbSystemsCloudDbSystemCollectionItemStackMonitoringConfig[]
    The configuration details of Stack Monitoring for a cloud DB system.
    state string
    The lifecycle state of a resource.
    systemTags {[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"}
    timeCreated string
    The date and time the cloud DB system was created.
    timeUpdated string
    The date and time the cloud DB system was last updated.
    compartment_id str
    The OCID of the compartment.
    database_management_configs Sequence[GetCloudDbSystemsCloudDbSystemCollectionItemDatabaseManagementConfig]
    The configuration details of Database Management for a cloud DB system.
    db_system_discovery_id str
    The OCID of the DB system discovery.
    dbaas_parent_infrastructure_id str
    The OCID of the dbaas parent infrastructure of the cloud DB system.
    defined_tags 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 str
    A filter to return cloud DB systems of the specified deployment type.
    discovery_agent_id str
    The OCID of the management agent used during the discovery of the DB system.
    display_name str
    A filter to only return the resources that match the entire display name.
    freeform_tags Mapping[str, str]
    Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    home_directory str
    The Oracle Grid home directory in case of cluster-based DB system and Oracle home directory in case of single instance-based DB system.
    id str
    The OCID of the cloud DB system.
    is_cluster bool
    Indicates whether the DB system is a cluster DB system or not.
    lifecycle_details str
    Additional information about the current lifecycle state.
    stack_monitoring_configs Sequence[GetCloudDbSystemsCloudDbSystemCollectionItemStackMonitoringConfig]
    The configuration details of Stack Monitoring for a cloud DB system.
    state str
    The lifecycle state of a resource.
    system_tags 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 str
    The date and time the cloud DB system was created.
    time_updated str
    The date and time the cloud DB system was last updated.
    compartmentId String
    The OCID of the compartment.
    databaseManagementConfigs List<Property Map>
    The configuration details of Database Management for a cloud DB system.
    dbSystemDiscoveryId String
    The OCID of the DB system discovery.
    dbaasParentInfrastructureId String
    The OCID of the dbaas parent infrastructure of the cloud DB system.
    definedTags 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"}
    deploymentType String
    A filter to return cloud DB systems of the specified deployment type.
    discoveryAgentId String
    The OCID of the management agent used during the discovery of the DB system.
    displayName String
    A filter to only return the resources that match the entire display name.
    freeformTags 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"}
    homeDirectory String
    The Oracle Grid home directory in case of cluster-based DB system and Oracle home directory in case of single instance-based DB system.
    id String
    The OCID of the cloud DB system.
    isCluster Boolean
    Indicates whether the DB system is a cluster DB system or not.
    lifecycleDetails String
    Additional information about the current lifecycle state.
    stackMonitoringConfigs List<Property Map>
    The configuration details of Stack Monitoring for a cloud DB system.
    state String
    The lifecycle state of a resource.
    systemTags 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"}
    timeCreated String
    The date and time the cloud DB system was created.
    timeUpdated String
    The date and time the cloud DB system was last updated.

    GetCloudDbSystemsCloudDbSystemCollectionItemDatabaseManagementConfig

    IsEnabled bool
    The status of the associated service.
    Metadata string
    The associated service-specific inputs in JSON string format, which Database Management can identify.
    IsEnabled bool
    The status of the associated service.
    Metadata string
    The associated service-specific inputs in JSON string format, which Database Management can identify.
    isEnabled Boolean
    The status of the associated service.
    metadata String
    The associated service-specific inputs in JSON string format, which Database Management can identify.
    isEnabled boolean
    The status of the associated service.
    metadata string
    The associated service-specific inputs in JSON string format, which Database Management can identify.
    is_enabled bool
    The status of the associated service.
    metadata str
    The associated service-specific inputs in JSON string format, which Database Management can identify.
    isEnabled Boolean
    The status of the associated service.
    metadata String
    The associated service-specific inputs in JSON string format, which Database Management can identify.

    GetCloudDbSystemsCloudDbSystemCollectionItemStackMonitoringConfig

    IsEnabled bool
    The status of the associated service.
    Metadata string
    The associated service-specific inputs in JSON string format, which Database Management can identify.
    IsEnabled bool
    The status of the associated service.
    Metadata string
    The associated service-specific inputs in JSON string format, which Database Management can identify.
    isEnabled Boolean
    The status of the associated service.
    metadata String
    The associated service-specific inputs in JSON string format, which Database Management can identify.
    isEnabled boolean
    The status of the associated service.
    metadata string
    The associated service-specific inputs in JSON string format, which Database Management can identify.
    is_enabled bool
    The status of the associated service.
    metadata str
    The associated service-specific inputs in JSON string format, which Database Management can identify.
    isEnabled Boolean
    The status of the associated service.
    metadata String
    The associated service-specific inputs in JSON string format, which Database Management can identify.

    GetCloudDbSystemsFilter

    Name string
    Values List<string>
    Regex bool
    Name string
    Values []string
    Regex bool
    name String
    values List<String>
    regex Boolean
    name string
    values string[]
    regex boolean
    name str
    values Sequence[str]
    regex bool
    name String
    values List<String>
    regex Boolean

    Package Details

    Repository
    oci pulumi/pulumi-oci
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the oci Terraform Provider.
    oci logo
    Oracle Cloud Infrastructure v3.7.0 published on Saturday, Sep 13, 2025 by Pulumi