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

oci.DatabaseManagement.getCloudDbNodes

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 Nodes in Oracle Cloud Infrastructure Database Management service.

    Lists the cloud DB nodes in the specified cloud DB system.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as oci from "@pulumi/oci";
    
    const testCloudDbNodes = oci.DatabaseManagement.getCloudDbNodes({
        cloudDbSystemId: testCloudDbSystem.id,
        compartmentId: compartmentId,
        displayName: cloudDbNodeDisplayName,
    });
    
    import pulumi
    import pulumi_oci as oci
    
    test_cloud_db_nodes = oci.DatabaseManagement.get_cloud_db_nodes(cloud_db_system_id=test_cloud_db_system["id"],
        compartment_id=compartment_id,
        display_name=cloud_db_node_display_name)
    
    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.GetCloudDbNodes(ctx, &databasemanagement.GetCloudDbNodesArgs{
    			CloudDbSystemId: pulumi.StringRef(testCloudDbSystem.Id),
    			CompartmentId:   pulumi.StringRef(compartmentId),
    			DisplayName:     pulumi.StringRef(cloudDbNodeDisplayName),
    		}, 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 testCloudDbNodes = Oci.DatabaseManagement.GetCloudDbNodes.Invoke(new()
        {
            CloudDbSystemId = testCloudDbSystem.Id,
            CompartmentId = compartmentId,
            DisplayName = cloudDbNodeDisplayName,
        });
    
    });
    
    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.GetCloudDbNodesArgs;
    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 testCloudDbNodes = DatabaseManagementFunctions.getCloudDbNodes(GetCloudDbNodesArgs.builder()
                .cloudDbSystemId(testCloudDbSystem.id())
                .compartmentId(compartmentId)
                .displayName(cloudDbNodeDisplayName)
                .build());
    
        }
    }
    
    variables:
      testCloudDbNodes:
        fn::invoke:
          function: oci:DatabaseManagement:getCloudDbNodes
          arguments:
            cloudDbSystemId: ${testCloudDbSystem.id}
            compartmentId: ${compartmentId}
            displayName: ${cloudDbNodeDisplayName}
    

    Using getCloudDbNodes

    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 getCloudDbNodes(args: GetCloudDbNodesArgs, opts?: InvokeOptions): Promise<GetCloudDbNodesResult>
    function getCloudDbNodesOutput(args: GetCloudDbNodesOutputArgs, opts?: InvokeOptions): Output<GetCloudDbNodesResult>
    def get_cloud_db_nodes(cloud_db_system_id: Optional[str] = None,
                           compartment_id: Optional[str] = None,
                           display_name: Optional[str] = None,
                           filters: Optional[Sequence[GetCloudDbNodesFilter]] = None,
                           opts: Optional[InvokeOptions] = None) -> GetCloudDbNodesResult
    def get_cloud_db_nodes_output(cloud_db_system_id: Optional[pulumi.Input[str]] = None,
                           compartment_id: Optional[pulumi.Input[str]] = None,
                           display_name: Optional[pulumi.Input[str]] = None,
                           filters: Optional[pulumi.Input[Sequence[pulumi.Input[GetCloudDbNodesFilterArgs]]]] = None,
                           opts: Optional[InvokeOptions] = None) -> Output[GetCloudDbNodesResult]
    func GetCloudDbNodes(ctx *Context, args *GetCloudDbNodesArgs, opts ...InvokeOption) (*GetCloudDbNodesResult, error)
    func GetCloudDbNodesOutput(ctx *Context, args *GetCloudDbNodesOutputArgs, opts ...InvokeOption) GetCloudDbNodesResultOutput

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

    public static class GetCloudDbNodes 
    {
        public static Task<GetCloudDbNodesResult> InvokeAsync(GetCloudDbNodesArgs args, InvokeOptions? opts = null)
        public static Output<GetCloudDbNodesResult> Invoke(GetCloudDbNodesInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetCloudDbNodesResult> getCloudDbNodes(GetCloudDbNodesArgs args, InvokeOptions options)
    public static Output<GetCloudDbNodesResult> getCloudDbNodes(GetCloudDbNodesArgs args, InvokeOptions options)
    
    fn::invoke:
      function: oci:DatabaseManagement/getCloudDbNodes:getCloudDbNodes
      arguments:
        # arguments dictionary

    The following arguments are supported:

    CloudDbSystemId string
    The OCID of the cloud DB system.
    CompartmentId string
    The OCID of the compartment.
    DisplayName string
    A filter to only return the resources that match the entire display name.
    Filters List<GetCloudDbNodesFilter>
    CloudDbSystemId string
    The OCID of the cloud DB system.
    CompartmentId string
    The OCID of the compartment.
    DisplayName string
    A filter to only return the resources that match the entire display name.
    Filters []GetCloudDbNodesFilter
    cloudDbSystemId String
    The OCID of the cloud DB system.
    compartmentId String
    The OCID of the compartment.
    displayName String
    A filter to only return the resources that match the entire display name.
    filters List<GetCloudDbNodesFilter>
    cloudDbSystemId string
    The OCID of the cloud DB system.
    compartmentId string
    The OCID of the compartment.
    displayName string
    A filter to only return the resources that match the entire display name.
    filters GetCloudDbNodesFilter[]
    cloud_db_system_id str
    The OCID of the cloud DB system.
    compartment_id str
    The OCID of the compartment.
    display_name str
    A filter to only return the resources that match the entire display name.
    filters Sequence[GetCloudDbNodesFilter]
    cloudDbSystemId String
    The OCID of the cloud DB system.
    compartmentId String
    The OCID of the compartment.
    displayName String
    A filter to only return the resources that match the entire display name.
    filters List<Property Map>

    getCloudDbNodes Result

    The following output properties are available:

    CloudDbNodeCollections List<GetCloudDbNodesCloudDbNodeCollection>
    The list of cloud_db_node_collection.
    Id string
    The provider-assigned unique ID for this managed resource.
    CloudDbSystemId string
    The OCID of the cloud DB system that the DB node is a part of.
    CompartmentId string
    The OCID of the compartment.
    DisplayName string
    The user-friendly name for the cloud DB node. The name does not have to be unique.
    Filters List<GetCloudDbNodesFilter>
    CloudDbNodeCollections []GetCloudDbNodesCloudDbNodeCollection
    The list of cloud_db_node_collection.
    Id string
    The provider-assigned unique ID for this managed resource.
    CloudDbSystemId string
    The OCID of the cloud DB system that the DB node is a part of.
    CompartmentId string
    The OCID of the compartment.
    DisplayName string
    The user-friendly name for the cloud DB node. The name does not have to be unique.
    Filters []GetCloudDbNodesFilter
    cloudDbNodeCollections List<GetCloudDbNodesCloudDbNodeCollection>
    The list of cloud_db_node_collection.
    id String
    The provider-assigned unique ID for this managed resource.
    cloudDbSystemId String
    The OCID of the cloud DB system that the DB node is a part of.
    compartmentId String
    The OCID of the compartment.
    displayName String
    The user-friendly name for the cloud DB node. The name does not have to be unique.
    filters List<GetCloudDbNodesFilter>
    cloudDbNodeCollections GetCloudDbNodesCloudDbNodeCollection[]
    The list of cloud_db_node_collection.
    id string
    The provider-assigned unique ID for this managed resource.
    cloudDbSystemId string
    The OCID of the cloud DB system that the DB node is a part of.
    compartmentId string
    The OCID of the compartment.
    displayName string
    The user-friendly name for the cloud DB node. The name does not have to be unique.
    filters GetCloudDbNodesFilter[]
    cloud_db_node_collections Sequence[GetCloudDbNodesCloudDbNodeCollection]
    The list of cloud_db_node_collection.
    id str
    The provider-assigned unique ID for this managed resource.
    cloud_db_system_id str
    The OCID of the cloud DB system that the DB node is a part of.
    compartment_id str
    The OCID of the compartment.
    display_name str
    The user-friendly name for the cloud DB node. The name does not have to be unique.
    filters Sequence[GetCloudDbNodesFilter]
    cloudDbNodeCollections List<Property Map>
    The list of cloud_db_node_collection.
    id String
    The provider-assigned unique ID for this managed resource.
    cloudDbSystemId String
    The OCID of the cloud DB system that the DB node is a part of.
    compartmentId String
    The OCID of the compartment.
    displayName String
    The user-friendly name for the cloud DB node. The name does not have to be unique.
    filters List<Property Map>

    Supporting Types

    GetCloudDbNodesCloudDbNodeCollection

    GetCloudDbNodesCloudDbNodeCollectionItem

    AdditionalDetails Dictionary<string, string>
    The additional details of the cloud DB node defined in {"key": "value"} format. Example: {"bar-key": "value"}
    CloudConnectorId string
    The OCID of the cloud connector.
    CloudDbNodeId string
    CloudDbSystemId string
    The OCID of the cloud DB system.
    CompartmentId string
    The OCID of the compartment.
    ComponentName string
    The name of the cloud DB node.
    CpuCoreCount double
    The number of CPU cores available on the DB node.
    DbaasId string
    The OCID of the cloud DB node in DBaas service.
    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"}
    DisplayName string
    A filter to only return the resources that match the entire display name.
    DomainName string
    Name of the domain.
    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"}
    HostName string
    The host name for the DB node.
    Id string
    The OCID of the cloud DB node.
    LifecycleDetails string
    Additional information about the current lifecycle state.
    MemorySizeInGbs double
    The total memory in gigabytes (GB) on the DB node.
    State string
    The current lifecycle state of the cloud DB node.
    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 node was created.
    TimeUpdated string
    The date and time the cloud DB node was last updated.
    AdditionalDetails map[string]string
    The additional details of the cloud DB node defined in {"key": "value"} format. Example: {"bar-key": "value"}
    CloudConnectorId string
    The OCID of the cloud connector.
    CloudDbNodeId string
    CloudDbSystemId string
    The OCID of the cloud DB system.
    CompartmentId string
    The OCID of the compartment.
    ComponentName string
    The name of the cloud DB node.
    CpuCoreCount float64
    The number of CPU cores available on the DB node.
    DbaasId string
    The OCID of the cloud DB node in DBaas service.
    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"}
    DisplayName string
    A filter to only return the resources that match the entire display name.
    DomainName string
    Name of the domain.
    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"}
    HostName string
    The host name for the DB node.
    Id string
    The OCID of the cloud DB node.
    LifecycleDetails string
    Additional information about the current lifecycle state.
    MemorySizeInGbs float64
    The total memory in gigabytes (GB) on the DB node.
    State string
    The current lifecycle state of the cloud DB node.
    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 node was created.
    TimeUpdated string
    The date and time the cloud DB node was last updated.
    additionalDetails Map<String,String>
    The additional details of the cloud DB node defined in {"key": "value"} format. Example: {"bar-key": "value"}
    cloudConnectorId String
    The OCID of the cloud connector.
    cloudDbNodeId String
    cloudDbSystemId String
    The OCID of the cloud DB system.
    compartmentId String
    The OCID of the compartment.
    componentName String
    The name of the cloud DB node.
    cpuCoreCount Double
    The number of CPU cores available on the DB node.
    dbaasId String
    The OCID of the cloud DB node in DBaas service.
    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"}
    displayName String
    A filter to only return the resources that match the entire display name.
    domainName String
    Name of the domain.
    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"}
    hostName String
    The host name for the DB node.
    id String
    The OCID of the cloud DB node.
    lifecycleDetails String
    Additional information about the current lifecycle state.
    memorySizeInGbs Double
    The total memory in gigabytes (GB) on the DB node.
    state String
    The current lifecycle state of the cloud DB node.
    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 node was created.
    timeUpdated String
    The date and time the cloud DB node was last updated.
    additionalDetails {[key: string]: string}
    The additional details of the cloud DB node defined in {"key": "value"} format. Example: {"bar-key": "value"}
    cloudConnectorId string
    The OCID of the cloud connector.
    cloudDbNodeId string
    cloudDbSystemId string
    The OCID of the cloud DB system.
    compartmentId string
    The OCID of the compartment.
    componentName string
    The name of the cloud DB node.
    cpuCoreCount number
    The number of CPU cores available on the DB node.
    dbaasId string
    The OCID of the cloud DB node in DBaas service.
    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"}
    displayName string
    A filter to only return the resources that match the entire display name.
    domainName string
    Name of the domain.
    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"}
    hostName string
    The host name for the DB node.
    id string
    The OCID of the cloud DB node.
    lifecycleDetails string
    Additional information about the current lifecycle state.
    memorySizeInGbs number
    The total memory in gigabytes (GB) on the DB node.
    state string
    The current lifecycle state of the cloud DB node.
    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 node was created.
    timeUpdated string
    The date and time the cloud DB node was last updated.
    additional_details Mapping[str, str]
    The additional details of the cloud DB node defined in {"key": "value"} format. Example: {"bar-key": "value"}
    cloud_connector_id str
    The OCID of the cloud connector.
    cloud_db_node_id str
    cloud_db_system_id str
    The OCID of the cloud DB system.
    compartment_id str
    The OCID of the compartment.
    component_name str
    The name of the cloud DB node.
    cpu_core_count float
    The number of CPU cores available on the DB node.
    dbaas_id str
    The OCID of the cloud DB node in DBaas service.
    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"}
    display_name str
    A filter to only return the resources that match the entire display name.
    domain_name str
    Name of the domain.
    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"}
    host_name str
    The host name for the DB node.
    id str
    The OCID of the cloud DB node.
    lifecycle_details str
    Additional information about the current lifecycle state.
    memory_size_in_gbs float
    The total memory in gigabytes (GB) on the DB node.
    state str
    The current lifecycle state of the cloud DB node.
    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 node was created.
    time_updated str
    The date and time the cloud DB node was last updated.
    additionalDetails Map<String>
    The additional details of the cloud DB node defined in {"key": "value"} format. Example: {"bar-key": "value"}
    cloudConnectorId String
    The OCID of the cloud connector.
    cloudDbNodeId String
    cloudDbSystemId String
    The OCID of the cloud DB system.
    compartmentId String
    The OCID of the compartment.
    componentName String
    The name of the cloud DB node.
    cpuCoreCount Number
    The number of CPU cores available on the DB node.
    dbaasId String
    The OCID of the cloud DB node in DBaas service.
    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"}
    displayName String
    A filter to only return the resources that match the entire display name.
    domainName String
    Name of the domain.
    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"}
    hostName String
    The host name for the DB node.
    id String
    The OCID of the cloud DB node.
    lifecycleDetails String
    Additional information about the current lifecycle state.
    memorySizeInGbs Number
    The total memory in gigabytes (GB) on the DB node.
    state String
    The current lifecycle state of the cloud DB node.
    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 node was created.
    timeUpdated String
    The date and time the cloud DB node was last updated.

    GetCloudDbNodesFilter

    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