Viewing docs for OVHCloud v2.12.0
published on Thursday, Mar 12, 2026 by OVHcloud
published on Thursday, Mar 12, 2026 by OVHcloud
Viewing docs for OVHCloud v2.12.0
published on Thursday, Mar 12, 2026 by OVHcloud
published on Thursday, Mar 12, 2026 by OVHcloud
Use this data source to get the list of databases of a database cluster associated with a public cloud project.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as ovh from "@ovhcloud/pulumi-ovh";
const databases = ovh.CloudProjectDatabase.getDatabaseInstances({
serviceName: "XXXX",
engine: "YYYY",
clusterId: "ZZZ",
});
export const databaseIds = databases.then(databases => databases.databaseIds);
import pulumi
import pulumi_ovh as ovh
databases = ovh.CloudProjectDatabase.get_database_instances(service_name="XXXX",
engine="YYYY",
cluster_id="ZZZ")
pulumi.export("databaseIds", databases.database_ids)
package main
import (
"github.com/ovh/pulumi-ovh/sdk/v2/go/ovh/cloudprojectdatabase"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
databases, err := cloudprojectdatabase.GetDatabaseInstances(ctx, &cloudprojectdatabase.GetDatabaseInstancesArgs{
ServiceName: "XXXX",
Engine: "YYYY",
ClusterId: "ZZZ",
}, nil)
if err != nil {
return err
}
ctx.Export("databaseIds", databases.DatabaseIds)
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Ovh = Pulumi.Ovh;
return await Deployment.RunAsync(() =>
{
var databases = Ovh.CloudProjectDatabase.GetDatabaseInstances.Invoke(new()
{
ServiceName = "XXXX",
Engine = "YYYY",
ClusterId = "ZZZ",
});
return new Dictionary<string, object?>
{
["databaseIds"] = databases.Apply(getDatabaseInstancesResult => getDatabaseInstancesResult.DatabaseIds),
};
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.ovh.CloudProjectDatabase.CloudProjectDatabaseFunctions;
import com.pulumi.ovh.CloudProjectDatabase.inputs.GetDatabaseInstancesArgs;
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 databases = CloudProjectDatabaseFunctions.getDatabaseInstances(GetDatabaseInstancesArgs.builder()
.serviceName("XXXX")
.engine("YYYY")
.clusterId("ZZZ")
.build());
ctx.export("databaseIds", databases.databaseIds());
}
}
variables:
databases:
fn::invoke:
function: ovh:CloudProjectDatabase:getDatabaseInstances
arguments:
serviceName: XXXX
engine: YYYY
clusterId: ZZZ
outputs:
databaseIds: ${databases.databaseIds}
Using getDatabaseInstances
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 getDatabaseInstances(args: GetDatabaseInstancesArgs, opts?: InvokeOptions): Promise<GetDatabaseInstancesResult>
function getDatabaseInstancesOutput(args: GetDatabaseInstancesOutputArgs, opts?: InvokeOptions): Output<GetDatabaseInstancesResult>def get_database_instances(cluster_id: Optional[str] = None,
engine: Optional[str] = None,
service_name: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetDatabaseInstancesResult
def get_database_instances_output(cluster_id: Optional[pulumi.Input[str]] = None,
engine: Optional[pulumi.Input[str]] = None,
service_name: Optional[pulumi.Input[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetDatabaseInstancesResult]func GetDatabaseInstances(ctx *Context, args *GetDatabaseInstancesArgs, opts ...InvokeOption) (*GetDatabaseInstancesResult, error)
func GetDatabaseInstancesOutput(ctx *Context, args *GetDatabaseInstancesOutputArgs, opts ...InvokeOption) GetDatabaseInstancesResultOutput> Note: This function is named GetDatabaseInstances in the Go SDK.
public static class GetDatabaseInstances
{
public static Task<GetDatabaseInstancesResult> InvokeAsync(GetDatabaseInstancesArgs args, InvokeOptions? opts = null)
public static Output<GetDatabaseInstancesResult> Invoke(GetDatabaseInstancesInvokeArgs args, InvokeOptions? opts = null)
}public static CompletableFuture<GetDatabaseInstancesResult> getDatabaseInstances(GetDatabaseInstancesArgs args, InvokeOptions options)
public static Output<GetDatabaseInstancesResult> getDatabaseInstances(GetDatabaseInstancesArgs args, InvokeOptions options)
fn::invoke:
function: ovh:CloudProjectDatabase/getDatabaseInstances:getDatabaseInstances
arguments:
# arguments dictionaryThe following arguments are supported:
- Cluster
Id string - Cluster ID
- Engine string
- The engine of the database cluster you want to list databases. To get a full list of available engine visit: public documentation. Available engines:
- Service
Name string - The id of the public cloud project. If omitted, the
OVH_CLOUD_PROJECT_SERVICEenvironment variable is used.
- Cluster
Id string - Cluster ID
- Engine string
- The engine of the database cluster you want to list databases. To get a full list of available engine visit: public documentation. Available engines:
- Service
Name string - The id of the public cloud project. If omitted, the
OVH_CLOUD_PROJECT_SERVICEenvironment variable is used.
- cluster
Id String - Cluster ID
- engine String
- The engine of the database cluster you want to list databases. To get a full list of available engine visit: public documentation. Available engines:
- service
Name String - The id of the public cloud project. If omitted, the
OVH_CLOUD_PROJECT_SERVICEenvironment variable is used.
- cluster
Id string - Cluster ID
- engine string
- The engine of the database cluster you want to list databases. To get a full list of available engine visit: public documentation. Available engines:
- service
Name string - The id of the public cloud project. If omitted, the
OVH_CLOUD_PROJECT_SERVICEenvironment variable is used.
- cluster_
id str - Cluster ID
- engine str
- The engine of the database cluster you want to list databases. To get a full list of available engine visit: public documentation. Available engines:
- service_
name str - The id of the public cloud project. If omitted, the
OVH_CLOUD_PROJECT_SERVICEenvironment variable is used.
- cluster
Id String - Cluster ID
- engine String
- The engine of the database cluster you want to list databases. To get a full list of available engine visit: public documentation. Available engines:
- service
Name String - The id of the public cloud project. If omitted, the
OVH_CLOUD_PROJECT_SERVICEenvironment variable is used.
getDatabaseInstances Result
The following output properties are available:
- Cluster
Id string - See Argument Reference above.
- Database
Ids List<string> - The list of databases ids of the database cluster associated with the project.
- Engine string
- See Argument Reference above.
- Id string
- The provider-assigned unique ID for this managed resource.
- Service
Name string - See Argument Reference above.
- Cluster
Id string - See Argument Reference above.
- Database
Ids []string - The list of databases ids of the database cluster associated with the project.
- Engine string
- See Argument Reference above.
- Id string
- The provider-assigned unique ID for this managed resource.
- Service
Name string - See Argument Reference above.
- cluster
Id String - See Argument Reference above.
- database
Ids List<String> - The list of databases ids of the database cluster associated with the project.
- engine String
- See Argument Reference above.
- id String
- The provider-assigned unique ID for this managed resource.
- service
Name String - See Argument Reference above.
- cluster
Id string - See Argument Reference above.
- database
Ids string[] - The list of databases ids of the database cluster associated with the project.
- engine string
- See Argument Reference above.
- id string
- The provider-assigned unique ID for this managed resource.
- service
Name string - See Argument Reference above.
- cluster_
id str - See Argument Reference above.
- database_
ids Sequence[str] - The list of databases ids of the database cluster associated with the project.
- engine str
- See Argument Reference above.
- id str
- The provider-assigned unique ID for this managed resource.
- service_
name str - See Argument Reference above.
- cluster
Id String - See Argument Reference above.
- database
Ids List<String> - The list of databases ids of the database cluster associated with the project.
- engine String
- See Argument Reference above.
- id String
- The provider-assigned unique ID for this managed resource.
- service
Name String - See Argument Reference above.
Package Details
- Repository
- ovh ovh/pulumi-ovh
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
ovhTerraform Provider.
Viewing docs for OVHCloud v2.12.0
published on Thursday, Mar 12, 2026 by OVHcloud
published on Thursday, Mar 12, 2026 by OVHcloud
