Volcengine v0.0.37 published on Wednesday, Oct 22, 2025 by Volcengine
volcengine.rds.getDatabases
(Deprecated! Recommend use volcengine_rds_mysql_*** replace) Use this data source to query detailed information of rds databases
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as volcengine from "@pulumi/volcengine";
const default = volcengine.rds.getDatabases({
    instanceId: "mysql-0fdd3bab2e7c",
});
import pulumi
import pulumi_volcengine as volcengine
default = volcengine.rds.get_databases(instance_id="mysql-0fdd3bab2e7c")
package main
import (
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
	"github.com/volcengine/pulumi-volcengine/sdk/go/volcengine/rds"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := rds.GetDatabases(ctx, &rds.GetDatabasesArgs{
			InstanceId: "mysql-0fdd3bab2e7c",
		}, nil)
		if err != nil {
			return err
		}
		return nil
	})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Volcengine = Pulumi.Volcengine;
return await Deployment.RunAsync(() => 
{
    var @default = Volcengine.Rds.GetDatabases.Invoke(new()
    {
        InstanceId = "mysql-0fdd3bab2e7c",
    });
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.volcengine.rds.RdsFunctions;
import com.pulumi.volcengine.rds.inputs.GetDatabasesArgs;
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 default = RdsFunctions.getDatabases(GetDatabasesArgs.builder()
            .instanceId("mysql-0fdd3bab2e7c")
            .build());
    }
}
variables:
  default:
    fn::invoke:
      Function: volcengine:rds:getDatabases
      Arguments:
        instanceId: mysql-0fdd3bab2e7c
Using getDatabases
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 getDatabases(args: GetDatabasesArgs, opts?: InvokeOptions): Promise<GetDatabasesResult>
function getDatabasesOutput(args: GetDatabasesOutputArgs, opts?: InvokeOptions): Output<GetDatabasesResult>def get_databases(db_status: Optional[str] = None,
                  instance_id: Optional[str] = None,
                  name_regex: Optional[str] = None,
                  output_file: Optional[str] = None,
                  opts: Optional[InvokeOptions] = None) -> GetDatabasesResult
def get_databases_output(db_status: Optional[pulumi.Input[str]] = None,
                  instance_id: Optional[pulumi.Input[str]] = None,
                  name_regex: Optional[pulumi.Input[str]] = None,
                  output_file: Optional[pulumi.Input[str]] = None,
                  opts: Optional[InvokeOptions] = None) -> Output[GetDatabasesResult]func GetDatabases(ctx *Context, args *GetDatabasesArgs, opts ...InvokeOption) (*GetDatabasesResult, error)
func GetDatabasesOutput(ctx *Context, args *GetDatabasesOutputArgs, opts ...InvokeOption) GetDatabasesResultOutput> Note: This function is named GetDatabases in the Go SDK.
public static class GetDatabases 
{
    public static Task<GetDatabasesResult> InvokeAsync(GetDatabasesArgs args, InvokeOptions? opts = null)
    public static Output<GetDatabasesResult> Invoke(GetDatabasesInvokeArgs args, InvokeOptions? opts = null)
}public static CompletableFuture<GetDatabasesResult> getDatabases(GetDatabasesArgs args, InvokeOptions options)
public static Output<GetDatabasesResult> getDatabases(GetDatabasesArgs args, InvokeOptions options)
fn::invoke:
  function: volcengine:rds/getDatabases:getDatabases
  arguments:
    # arguments dictionaryThe following arguments are supported:
- InstanceId string
- The id of the RDS instance.
- DbStatus string
- The status of the RDS database.
- NameRegex string
- A Name Regex of RDS database.
- OutputFile string
- File name where to save data source results.
- InstanceId string
- The id of the RDS instance.
- DbStatus string
- The status of the RDS database.
- NameRegex string
- A Name Regex of RDS database.
- OutputFile string
- File name where to save data source results.
- instanceId String
- The id of the RDS instance.
- dbStatus String
- The status of the RDS database.
- nameRegex String
- A Name Regex of RDS database.
- outputFile String
- File name where to save data source results.
- instanceId string
- The id of the RDS instance.
- dbStatus string
- The status of the RDS database.
- nameRegex string
- A Name Regex of RDS database.
- outputFile string
- File name where to save data source results.
- instance_id str
- The id of the RDS instance.
- db_status str
- The status of the RDS database.
- name_regex str
- A Name Regex of RDS database.
- output_file str
- File name where to save data source results.
- instanceId String
- The id of the RDS instance.
- dbStatus String
- The status of the RDS database.
- nameRegex String
- A Name Regex of RDS database.
- outputFile String
- File name where to save data source results.
getDatabases Result
The following output properties are available:
- Id string
- The provider-assigned unique ID for this managed resource.
- InstanceId string
- RdsDatabases List<GetDatabases Rds Database> 
- The collection of RDS instance account query.
- TotalCount int
- The total count of RDS database query.
- DbStatus string
- The status of the RDS database.
- NameRegex string
- OutputFile string
- Id string
- The provider-assigned unique ID for this managed resource.
- InstanceId string
- RdsDatabases []GetDatabases Rds Database 
- The collection of RDS instance account query.
- TotalCount int
- The total count of RDS database query.
- DbStatus string
- The status of the RDS database.
- NameRegex string
- OutputFile string
- id String
- The provider-assigned unique ID for this managed resource.
- instanceId String
- rdsDatabases List<GetDatabases Rds Database> 
- The collection of RDS instance account query.
- totalCount Integer
- The total count of RDS database query.
- dbStatus String
- The status of the RDS database.
- nameRegex String
- outputFile String
- id string
- The provider-assigned unique ID for this managed resource.
- instanceId string
- rdsDatabases GetDatabases Rds Database[] 
- The collection of RDS instance account query.
- totalCount number
- The total count of RDS database query.
- dbStatus string
- The status of the RDS database.
- nameRegex string
- outputFile string
- id str
- The provider-assigned unique ID for this managed resource.
- instance_id str
- rds_databases Sequence[GetDatabases Rds Database] 
- The collection of RDS instance account query.
- total_count int
- The total count of RDS database query.
- db_status str
- The status of the RDS database.
- name_regex str
- output_file str
- id String
- The provider-assigned unique ID for this managed resource.
- instanceId String
- rdsDatabases List<Property Map>
- The collection of RDS instance account query.
- totalCount Number
- The total count of RDS database query.
- dbStatus String
- The status of the RDS database.
- nameRegex String
- outputFile String
Supporting Types
GetDatabasesRdsDatabase   
- AccountNames string
- The account names of the RDS database.
- CharacterSet stringName 
- The character set of the RDS database.
- DbName string
- The name of the RDS database.
- DbStatus string
- The status of the RDS database.
- Id string
- The ID of the RDS database.
- AccountNames string
- The account names of the RDS database.
- CharacterSet stringName 
- The character set of the RDS database.
- DbName string
- The name of the RDS database.
- DbStatus string
- The status of the RDS database.
- Id string
- The ID of the RDS database.
- accountNames String
- The account names of the RDS database.
- characterSet StringName 
- The character set of the RDS database.
- dbName String
- The name of the RDS database.
- dbStatus String
- The status of the RDS database.
- id String
- The ID of the RDS database.
- accountNames string
- The account names of the RDS database.
- characterSet stringName 
- The character set of the RDS database.
- dbName string
- The name of the RDS database.
- dbStatus string
- The status of the RDS database.
- id string
- The ID of the RDS database.
- account_names str
- The account names of the RDS database.
- character_set_ strname 
- The character set of the RDS database.
- db_name str
- The name of the RDS database.
- db_status str
- The status of the RDS database.
- id str
- The ID of the RDS database.
- accountNames String
- The account names of the RDS database.
- characterSet StringName 
- The character set of the RDS database.
- dbName String
- The name of the RDS database.
- dbStatus String
- The status of the RDS database.
- id String
- The ID of the RDS database.
Package Details
- Repository
- volcengine volcengine/pulumi-volcengine
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the volcengineTerraform Provider.
