published on Tuesday, Jun 16, 2026 by edge-center
published on Tuesday, Jun 16, 2026 by edge-center
Represent DBaaS cluster resource.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as edgecenter from "@pulumi/edgecenter";
const example = new edgecenter.DbaasCluster("example", {
name: "cluster-example",
projectId: 1,
regionId: 1,
flavor: "db-g2-standard-2-4-30",
highAvailability: false,
dbms: {
type: "POSTGRESQL",
version: "17.5",
},
volume: {
volumeSize: 30,
volumeType: "db_standard",
},
"interface": {
networkId: "6bf878c1-1ce4-47c3-a39b-6b5f1d79bf25",
subnetId: "dc3a3ea9-86ae-47ad-a8e8-79df0ce04839",
},
});
import pulumi
import pulumi_edgecenter as edgecenter
example = edgecenter.DbaasCluster("example",
name="cluster-example",
project_id=1,
region_id=1,
flavor="db-g2-standard-2-4-30",
high_availability=False,
dbms={
"type": "POSTGRESQL",
"version": "17.5",
},
volume={
"volume_size": 30,
"volume_type": "db_standard",
},
interface={
"network_id": "6bf878c1-1ce4-47c3-a39b-6b5f1d79bf25",
"subnet_id": "dc3a3ea9-86ae-47ad-a8e8-79df0ce04839",
})
package main
import (
"github.com/pulumi/pulumi-terraform-provider/sdks/go/edgecenter/edgecenter"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := edgecenter.NewDbaasCluster(ctx, "example", &edgecenter.DbaasClusterArgs{
Name: pulumi.String("cluster-example"),
ProjectId: pulumi.Float64(1),
RegionId: pulumi.Float64(1),
Flavor: pulumi.String("db-g2-standard-2-4-30"),
HighAvailability: pulumi.Bool(false),
Dbms: &edgecenter.DbaasClusterDbmsArgs{
Type: pulumi.String("POSTGRESQL"),
Version: pulumi.String("17.5"),
},
Volume: &edgecenter.DbaasClusterVolumeArgs{
VolumeSize: pulumi.Float64(30),
VolumeType: pulumi.String("db_standard"),
},
Interface: &edgecenter.DbaasClusterInterfaceArgs{
NetworkId: pulumi.String("6bf878c1-1ce4-47c3-a39b-6b5f1d79bf25"),
SubnetId: pulumi.String("dc3a3ea9-86ae-47ad-a8e8-79df0ce04839"),
},
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Edgecenter = Pulumi.Edgecenter;
return await Deployment.RunAsync(() =>
{
var example = new Edgecenter.DbaasCluster("example", new()
{
Name = "cluster-example",
ProjectId = 1,
RegionId = 1,
Flavor = "db-g2-standard-2-4-30",
HighAvailability = false,
Dbms = new Edgecenter.Inputs.DbaasClusterDbmsArgs
{
Type = "POSTGRESQL",
Version = "17.5",
},
Volume = new Edgecenter.Inputs.DbaasClusterVolumeArgs
{
VolumeSize = 30,
VolumeType = "db_standard",
},
Interface = new Edgecenter.Inputs.DbaasClusterInterfaceArgs
{
NetworkId = "6bf878c1-1ce4-47c3-a39b-6b5f1d79bf25",
SubnetId = "dc3a3ea9-86ae-47ad-a8e8-79df0ce04839",
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.edgecenter.DbaasCluster;
import com.pulumi.edgecenter.DbaasClusterArgs;
import com.pulumi.edgecenter.inputs.DbaasClusterDbmsArgs;
import com.pulumi.edgecenter.inputs.DbaasClusterVolumeArgs;
import com.pulumi.edgecenter.inputs.DbaasClusterInterfaceArgs;
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) {
var example = new DbaasCluster("example", DbaasClusterArgs.builder()
.name("cluster-example")
.projectId(1.0)
.regionId(1.0)
.flavor("db-g2-standard-2-4-30")
.highAvailability(false)
.dbms(DbaasClusterDbmsArgs.builder()
.type("POSTGRESQL")
.version("17.5")
.build())
.volume(DbaasClusterVolumeArgs.builder()
.volumeSize(30.0)
.volumeType("db_standard")
.build())
.interface_(DbaasClusterInterfaceArgs.builder()
.networkId("6bf878c1-1ce4-47c3-a39b-6b5f1d79bf25")
.subnetId("dc3a3ea9-86ae-47ad-a8e8-79df0ce04839")
.build())
.build());
}
}
resources:
example:
type: edgecenter:DbaasCluster
properties:
name: cluster-example
projectId: 1
regionId: 1
flavor: db-g2-standard-2-4-30
highAvailability: false
dbms:
type: POSTGRESQL
version: '17.5'
volume:
volumeSize: 30
volumeType: db_standard
interface:
networkId: 6bf878c1-1ce4-47c3-a39b-6b5f1d79bf25
subnetId: dc3a3ea9-86ae-47ad-a8e8-79df0ce04839
Example coming soon!
Create DbaasCluster Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new DbaasCluster(name: string, args: DbaasClusterArgs, opts?: CustomResourceOptions);@overload
def DbaasCluster(resource_name: str,
args: DbaasClusterArgs,
opts: Optional[ResourceOptions] = None)
@overload
def DbaasCluster(resource_name: str,
opts: Optional[ResourceOptions] = None,
interface: Optional[DbaasClusterInterfaceArgs] = None,
dbms: Optional[DbaasClusterDbmsArgs] = None,
volume: Optional[DbaasClusterVolumeArgs] = None,
flavor: Optional[str] = None,
name: Optional[str] = None,
high_availability: Optional[bool] = None,
dbaas_cluster_id: Optional[str] = None,
project_id: Optional[float] = None,
project_name: Optional[str] = None,
region_id: Optional[float] = None,
region_name: Optional[str] = None,
timeouts: Optional[DbaasClusterTimeoutsArgs] = None,
description: Optional[str] = None)func NewDbaasCluster(ctx *Context, name string, args DbaasClusterArgs, opts ...ResourceOption) (*DbaasCluster, error)public DbaasCluster(string name, DbaasClusterArgs args, CustomResourceOptions? opts = null)
public DbaasCluster(String name, DbaasClusterArgs args)
public DbaasCluster(String name, DbaasClusterArgs args, CustomResourceOptions options)
type: edgecenter:DbaasCluster
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
resource "edgecenter_dbaascluster" "name" {
# resource properties
}Parameters
- name string
- The unique name of the resource.
- args DbaasClusterArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args DbaasClusterArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args DbaasClusterArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args DbaasClusterArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args DbaasClusterArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var dbaasClusterResource = new Edgecenter.DbaasCluster("dbaasClusterResource", new()
{
Interface = new Edgecenter.Inputs.DbaasClusterInterfaceArgs
{
NetworkId = "string",
SubnetId = "string",
},
Dbms = new Edgecenter.Inputs.DbaasClusterDbmsArgs
{
Type = "string",
Version = "string",
},
Volume = new Edgecenter.Inputs.DbaasClusterVolumeArgs
{
VolumeSize = 0,
VolumeType = "string",
},
Flavor = "string",
Name = "string",
HighAvailability = false,
DbaasClusterId = "string",
ProjectId = 0,
ProjectName = "string",
RegionId = 0,
RegionName = "string",
Timeouts = new Edgecenter.Inputs.DbaasClusterTimeoutsArgs
{
Create = "string",
Delete = "string",
Read = "string",
Update = "string",
},
Description = "string",
});
example, err := edgecenter.NewDbaasCluster(ctx, "dbaasClusterResource", &edgecenter.DbaasClusterArgs{
Interface: &edgecenter.DbaasClusterInterfaceArgs{
NetworkId: pulumi.String("string"),
SubnetId: pulumi.String("string"),
},
Dbms: &edgecenter.DbaasClusterDbmsArgs{
Type: pulumi.String("string"),
Version: pulumi.String("string"),
},
Volume: &edgecenter.DbaasClusterVolumeArgs{
VolumeSize: pulumi.Float64(0),
VolumeType: pulumi.String("string"),
},
Flavor: pulumi.String("string"),
Name: pulumi.String("string"),
HighAvailability: pulumi.Bool(false),
DbaasClusterId: pulumi.String("string"),
ProjectId: pulumi.Float64(0),
ProjectName: pulumi.String("string"),
RegionId: pulumi.Float64(0),
RegionName: pulumi.String("string"),
Timeouts: &edgecenter.DbaasClusterTimeoutsArgs{
Create: pulumi.String("string"),
Delete: pulumi.String("string"),
Read: pulumi.String("string"),
Update: pulumi.String("string"),
},
Description: pulumi.String("string"),
})
resource "edgecenter_dbaascluster" "dbaasClusterResource" {
interface = {
network_id = "string"
subnet_id = "string"
}
dbms = {
type = "string"
version = "string"
}
volume = {
volume_size = 0
volume_type = "string"
}
flavor = "string"
name = "string"
high_availability = false
dbaas_cluster_id = "string"
project_id = 0
project_name = "string"
region_id = 0
region_name = "string"
timeouts = {
create = "string"
delete = "string"
read = "string"
update = "string"
}
description = "string"
}
var dbaasClusterResource = new DbaasCluster("dbaasClusterResource", DbaasClusterArgs.builder()
.interface_(DbaasClusterInterfaceArgs.builder()
.networkId("string")
.subnetId("string")
.build())
.dbms(DbaasClusterDbmsArgs.builder()
.type("string")
.version("string")
.build())
.volume(DbaasClusterVolumeArgs.builder()
.volumeSize(0.0)
.volumeType("string")
.build())
.flavor("string")
.name("string")
.highAvailability(false)
.dbaasClusterId("string")
.projectId(0.0)
.projectName("string")
.regionId(0.0)
.regionName("string")
.timeouts(DbaasClusterTimeoutsArgs.builder()
.create("string")
.delete("string")
.read("string")
.update("string")
.build())
.description("string")
.build());
dbaas_cluster_resource = edgecenter.DbaasCluster("dbaasClusterResource",
interface={
"network_id": "string",
"subnet_id": "string",
},
dbms={
"type": "string",
"version": "string",
},
volume={
"volume_size": float(0),
"volume_type": "string",
},
flavor="string",
name="string",
high_availability=False,
dbaas_cluster_id="string",
project_id=float(0),
project_name="string",
region_id=float(0),
region_name="string",
timeouts={
"create": "string",
"delete": "string",
"read": "string",
"update": "string",
},
description="string")
const dbaasClusterResource = new edgecenter.DbaasCluster("dbaasClusterResource", {
"interface": {
networkId: "string",
subnetId: "string",
},
dbms: {
type: "string",
version: "string",
},
volume: {
volumeSize: 0,
volumeType: "string",
},
flavor: "string",
name: "string",
highAvailability: false,
dbaasClusterId: "string",
projectId: 0,
projectName: "string",
regionId: 0,
regionName: "string",
timeouts: {
create: "string",
"delete": "string",
read: "string",
update: "string",
},
description: "string",
});
type: edgecenter:DbaasCluster
properties:
dbaasClusterId: string
dbms:
type: string
version: string
description: string
flavor: string
highAvailability: false
interface:
networkId: string
subnetId: string
name: string
projectId: 0
projectName: string
regionId: 0
regionName: string
timeouts:
create: string
delete: string
read: string
update: string
volume:
volumeSize: 0
volumeType: string
DbaasCluster Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The DbaasCluster resource accepts the following input properties:
- Dbms
Dbaas
Cluster Dbms - Flavor string
- The flavor of the DBaaS cluster.
- Interface
Dbaas
Cluster Interface - Volume
Dbaas
Cluster Volume - Dbaas
Cluster stringId - The ID of this resource.
- Description string
- The description of the DBaaS cluster.
- High
Availability bool - Enable high availability for the cluster.
- Name string
- The name of the DBaaS cluster.
- Project
Id double - The uuid of the project. Either 'projectid' or 'projectname' must be specified.
- Project
Name string - The name of the project. Either 'projectid' or 'projectname' must be specified.
- Region
Id double - The uuid of the region. Either 'regionid' or 'regionname' must be specified.
- Region
Name string - The name of the region. Either 'regionid' or 'regionname' must be specified.
- Timeouts
Dbaas
Cluster Timeouts
- Dbms
Dbaas
Cluster Dbms Args - Flavor string
- The flavor of the DBaaS cluster.
- Interface
Dbaas
Cluster Interface Args - Volume
Dbaas
Cluster Volume Args - Dbaas
Cluster stringId - The ID of this resource.
- Description string
- The description of the DBaaS cluster.
- High
Availability bool - Enable high availability for the cluster.
- Name string
- The name of the DBaaS cluster.
- Project
Id float64 - The uuid of the project. Either 'projectid' or 'projectname' must be specified.
- Project
Name string - The name of the project. Either 'projectid' or 'projectname' must be specified.
- Region
Id float64 - The uuid of the region. Either 'regionid' or 'regionname' must be specified.
- Region
Name string - The name of the region. Either 'regionid' or 'regionname' must be specified.
- Timeouts
Dbaas
Cluster Timeouts Args
- dbms object
- flavor string
- The flavor of the DBaaS cluster.
- interface object
- volume object
- dbaas_
cluster_ stringid - The ID of this resource.
- description string
- The description of the DBaaS cluster.
- high_
availability bool - Enable high availability for the cluster.
- name string
- The name of the DBaaS cluster.
- project_
id number - The uuid of the project. Either 'projectid' or 'projectname' must be specified.
- project_
name string - The name of the project. Either 'projectid' or 'projectname' must be specified.
- region_
id number - The uuid of the region. Either 'regionid' or 'regionname' must be specified.
- region_
name string - The name of the region. Either 'regionid' or 'regionname' must be specified.
- timeouts object
- dbms
Dbaas
Cluster Dbms - flavor String
- The flavor of the DBaaS cluster.
- interface_
Dbaas
Cluster Interface - volume
Dbaas
Cluster Volume - dbaas
Cluster StringId - The ID of this resource.
- description String
- The description of the DBaaS cluster.
- high
Availability Boolean - Enable high availability for the cluster.
- name String
- The name of the DBaaS cluster.
- project
Id Double - The uuid of the project. Either 'projectid' or 'projectname' must be specified.
- project
Name String - The name of the project. Either 'projectid' or 'projectname' must be specified.
- region
Id Double - The uuid of the region. Either 'regionid' or 'regionname' must be specified.
- region
Name String - The name of the region. Either 'regionid' or 'regionname' must be specified.
- timeouts
Dbaas
Cluster Timeouts
- dbms
Dbaas
Cluster Dbms - flavor string
- The flavor of the DBaaS cluster.
- interface
Dbaas
Cluster Interface - volume
Dbaas
Cluster Volume - dbaas
Cluster stringId - The ID of this resource.
- description string
- The description of the DBaaS cluster.
- high
Availability boolean - Enable high availability for the cluster.
- name string
- The name of the DBaaS cluster.
- project
Id number - The uuid of the project. Either 'projectid' or 'projectname' must be specified.
- project
Name string - The name of the project. Either 'projectid' or 'projectname' must be specified.
- region
Id number - The uuid of the region. Either 'regionid' or 'regionname' must be specified.
- region
Name string - The name of the region. Either 'regionid' or 'regionname' must be specified.
- timeouts
Dbaas
Cluster Timeouts
- dbms
Dbaas
Cluster Dbms Args - flavor str
- The flavor of the DBaaS cluster.
- interface
Dbaas
Cluster Interface Args - volume
Dbaas
Cluster Volume Args - dbaas_
cluster_ strid - The ID of this resource.
- description str
- The description of the DBaaS cluster.
- high_
availability bool - Enable high availability for the cluster.
- name str
- The name of the DBaaS cluster.
- project_
id float - The uuid of the project. Either 'projectid' or 'projectname' must be specified.
- project_
name str - The name of the project. Either 'projectid' or 'projectname' must be specified.
- region_
id float - The uuid of the region. Either 'regionid' or 'regionname' must be specified.
- region_
name str - The name of the region. Either 'regionid' or 'regionname' must be specified.
- timeouts
Dbaas
Cluster Timeouts Args
- dbms Property Map
- flavor String
- The flavor of the DBaaS cluster.
- interface Property Map
- volume Property Map
- dbaas
Cluster StringId - The ID of this resource.
- description String
- The description of the DBaaS cluster.
- high
Availability Boolean - Enable high availability for the cluster.
- name String
- The name of the DBaaS cluster.
- project
Id Number - The uuid of the project. Either 'projectid' or 'projectname' must be specified.
- project
Name String - The name of the project. Either 'projectid' or 'projectname' must be specified.
- region
Id Number - The uuid of the region. Either 'regionid' or 'regionname' must be specified.
- region
Name String - The name of the region. Either 'regionid' or 'regionname' must be specified.
- timeouts Property Map
Outputs
All input properties are implicitly available as output properties. Additionally, the DbaasCluster resource produces the following output properties:
- Connection
Infos List<DbaasCluster Connection Info> - Created
At string - Id string
- The provider-assigned unique ID for this managed resource.
- Status string
- Task
Id string - Updated
At string
- Connection
Infos []DbaasCluster Connection Info - Created
At string - Id string
- The provider-assigned unique ID for this managed resource.
- Status string
- Task
Id string - Updated
At string
- connection_
infos list(object) - created_
at string - id string
- The provider-assigned unique ID for this managed resource.
- status string
- task_
id string - updated_
at string
- connection
Infos List<DbaasCluster Connection Info> - created
At String - id String
- The provider-assigned unique ID for this managed resource.
- status String
- task
Id String - updated
At String
- connection
Infos DbaasCluster Connection Info[] - created
At string - id string
- The provider-assigned unique ID for this managed resource.
- status string
- task
Id string - updated
At string
- connection_
infos Sequence[DbaasCluster Connection Info] - created_
at str - id str
- The provider-assigned unique ID for this managed resource.
- status str
- task_
id str - updated_
at str
- connection
Infos List<Property Map> - created
At String - id String
- The provider-assigned unique ID for this managed resource.
- status String
- task
Id String - updated
At String
Look up Existing DbaasCluster Resource
Get an existing DbaasCluster resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: DbaasClusterState, opts?: CustomResourceOptions): DbaasCluster@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
connection_infos: Optional[Sequence[DbaasClusterConnectionInfoArgs]] = None,
created_at: Optional[str] = None,
dbaas_cluster_id: Optional[str] = None,
dbms: Optional[DbaasClusterDbmsArgs] = None,
description: Optional[str] = None,
flavor: Optional[str] = None,
high_availability: Optional[bool] = None,
interface: Optional[DbaasClusterInterfaceArgs] = None,
name: Optional[str] = None,
project_id: Optional[float] = None,
project_name: Optional[str] = None,
region_id: Optional[float] = None,
region_name: Optional[str] = None,
status: Optional[str] = None,
task_id: Optional[str] = None,
timeouts: Optional[DbaasClusterTimeoutsArgs] = None,
updated_at: Optional[str] = None,
volume: Optional[DbaasClusterVolumeArgs] = None) -> DbaasClusterfunc GetDbaasCluster(ctx *Context, name string, id IDInput, state *DbaasClusterState, opts ...ResourceOption) (*DbaasCluster, error)public static DbaasCluster Get(string name, Input<string> id, DbaasClusterState? state, CustomResourceOptions? opts = null)public static DbaasCluster get(String name, Output<String> id, DbaasClusterState state, CustomResourceOptions options)resources: _: type: edgecenter:DbaasCluster get: id: ${id}import {
to = edgecenter_dbaascluster.example
id = "${id}"
}
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Connection
Infos List<DbaasCluster Connection Info> - Created
At string - Dbaas
Cluster stringId - The ID of this resource.
- Dbms
Dbaas
Cluster Dbms - Description string
- The description of the DBaaS cluster.
- Flavor string
- The flavor of the DBaaS cluster.
- High
Availability bool - Enable high availability for the cluster.
- Interface
Dbaas
Cluster Interface - Name string
- The name of the DBaaS cluster.
- Project
Id double - The uuid of the project. Either 'projectid' or 'projectname' must be specified.
- Project
Name string - The name of the project. Either 'projectid' or 'projectname' must be specified.
- Region
Id double - The uuid of the region. Either 'regionid' or 'regionname' must be specified.
- Region
Name string - The name of the region. Either 'regionid' or 'regionname' must be specified.
- Status string
- Task
Id string - Timeouts
Dbaas
Cluster Timeouts - Updated
At string - Volume
Dbaas
Cluster Volume
- Connection
Infos []DbaasCluster Connection Info Args - Created
At string - Dbaas
Cluster stringId - The ID of this resource.
- Dbms
Dbaas
Cluster Dbms Args - Description string
- The description of the DBaaS cluster.
- Flavor string
- The flavor of the DBaaS cluster.
- High
Availability bool - Enable high availability for the cluster.
- Interface
Dbaas
Cluster Interface Args - Name string
- The name of the DBaaS cluster.
- Project
Id float64 - The uuid of the project. Either 'projectid' or 'projectname' must be specified.
- Project
Name string - The name of the project. Either 'projectid' or 'projectname' must be specified.
- Region
Id float64 - The uuid of the region. Either 'regionid' or 'regionname' must be specified.
- Region
Name string - The name of the region. Either 'regionid' or 'regionname' must be specified.
- Status string
- Task
Id string - Timeouts
Dbaas
Cluster Timeouts Args - Updated
At string - Volume
Dbaas
Cluster Volume Args
- connection_
infos list(object) - created_
at string - dbaas_
cluster_ stringid - The ID of this resource.
- dbms object
- description string
- The description of the DBaaS cluster.
- flavor string
- The flavor of the DBaaS cluster.
- high_
availability bool - Enable high availability for the cluster.
- interface object
- name string
- The name of the DBaaS cluster.
- project_
id number - The uuid of the project. Either 'projectid' or 'projectname' must be specified.
- project_
name string - The name of the project. Either 'projectid' or 'projectname' must be specified.
- region_
id number - The uuid of the region. Either 'regionid' or 'regionname' must be specified.
- region_
name string - The name of the region. Either 'regionid' or 'regionname' must be specified.
- status string
- task_
id string - timeouts object
- updated_
at string - volume object
- connection
Infos List<DbaasCluster Connection Info> - created
At String - dbaas
Cluster StringId - The ID of this resource.
- dbms
Dbaas
Cluster Dbms - description String
- The description of the DBaaS cluster.
- flavor String
- The flavor of the DBaaS cluster.
- high
Availability Boolean - Enable high availability for the cluster.
- interface_
Dbaas
Cluster Interface - name String
- The name of the DBaaS cluster.
- project
Id Double - The uuid of the project. Either 'projectid' or 'projectname' must be specified.
- project
Name String - The name of the project. Either 'projectid' or 'projectname' must be specified.
- region
Id Double - The uuid of the region. Either 'regionid' or 'regionname' must be specified.
- region
Name String - The name of the region. Either 'regionid' or 'regionname' must be specified.
- status String
- task
Id String - timeouts
Dbaas
Cluster Timeouts - updated
At String - volume
Dbaas
Cluster Volume
- connection
Infos DbaasCluster Connection Info[] - created
At string - dbaas
Cluster stringId - The ID of this resource.
- dbms
Dbaas
Cluster Dbms - description string
- The description of the DBaaS cluster.
- flavor string
- The flavor of the DBaaS cluster.
- high
Availability boolean - Enable high availability for the cluster.
- interface
Dbaas
Cluster Interface - name string
- The name of the DBaaS cluster.
- project
Id number - The uuid of the project. Either 'projectid' or 'projectname' must be specified.
- project
Name string - The name of the project. Either 'projectid' or 'projectname' must be specified.
- region
Id number - The uuid of the region. Either 'regionid' or 'regionname' must be specified.
- region
Name string - The name of the region. Either 'regionid' or 'regionname' must be specified.
- status string
- task
Id string - timeouts
Dbaas
Cluster Timeouts - updated
At string - volume
Dbaas
Cluster Volume
- connection_
infos Sequence[DbaasCluster Connection Info Args] - created_
at str - dbaas_
cluster_ strid - The ID of this resource.
- dbms
Dbaas
Cluster Dbms Args - description str
- The description of the DBaaS cluster.
- flavor str
- The flavor of the DBaaS cluster.
- high_
availability bool - Enable high availability for the cluster.
- interface
Dbaas
Cluster Interface Args - name str
- The name of the DBaaS cluster.
- project_
id float - The uuid of the project. Either 'projectid' or 'projectname' must be specified.
- project_
name str - The name of the project. Either 'projectid' or 'projectname' must be specified.
- region_
id float - The uuid of the region. Either 'regionid' or 'regionname' must be specified.
- region_
name str - The name of the region. Either 'regionid' or 'regionname' must be specified.
- status str
- task_
id str - timeouts
Dbaas
Cluster Timeouts Args - updated_
at str - volume
Dbaas
Cluster Volume Args
- connection
Infos List<Property Map> - created
At String - dbaas
Cluster StringId - The ID of this resource.
- dbms Property Map
- description String
- The description of the DBaaS cluster.
- flavor String
- The flavor of the DBaaS cluster.
- high
Availability Boolean - Enable high availability for the cluster.
- interface Property Map
- name String
- The name of the DBaaS cluster.
- project
Id Number - The uuid of the project. Either 'projectid' or 'projectname' must be specified.
- project
Name String - The name of the project. Either 'projectid' or 'projectname' must be specified.
- region
Id Number - The uuid of the region. Either 'regionid' or 'regionname' must be specified.
- region
Name String - The name of the region. Either 'regionid' or 'regionname' must be specified.
- status String
- task
Id String - timeouts Property Map
- updated
At String - volume Property Map
Supporting Types
DbaasClusterConnectionInfo, DbaasClusterConnectionInfoArgs
DbaasClusterDbms, DbaasClusterDbmsArgs
DbaasClusterInterface, DbaasClusterInterfaceArgs
- network_
id string - The network ID for the cluster.
- subnet_
id string - The subnet ID for the cluster.
- network_
id str - The network ID for the cluster.
- subnet_
id str - The subnet ID for the cluster.
DbaasClusterTimeouts, DbaasClusterTimeoutsArgs
DbaasClusterVolume, DbaasClusterVolumeArgs
- Volume
Size double - The size of the volume in GB.
- Volume
Type string - The type of the volume (e.g., db_standard).
- Volume
Size float64 - The size of the volume in GB.
- Volume
Type string - The type of the volume (e.g., db_standard).
- volume_
size number - The size of the volume in GB.
- volume_
type string - The type of the volume (e.g., db_standard).
- volume
Size Double - The size of the volume in GB.
- volume
Type String - The type of the volume (e.g., db_standard).
- volume
Size number - The size of the volume in GB.
- volume
Type string - The type of the volume (e.g., db_standard).
- volume_
size float - The size of the volume in GB.
- volume_
type str - The type of the volume (e.g., db_standard).
- volume
Size Number - The size of the volume in GB.
- volume
Type String - The type of the volume (e.g., db_standard).
Import
import using <project_id>:<region_id>:<cluster_id> format
$ pulumi import edgecenter:index/dbaasCluster:DbaasCluster example 1:1:080bbca5-1234-1234-1234-0bccd6f8f1b0
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- edgecenter edge-center/terraform-provider-edgecenter
- License
- Notes
- This Pulumi package is based on the
edgecenterTerraform Provider.
published on Tuesday, Jun 16, 2026 by edge-center