1. Packages
  2. Opentelekomcloud Provider
  3. API Docs
  4. TaurusdbMysqlQuotaV3
opentelekomcloud 1.36.51 published on Thursday, Oct 23, 2025 by opentelekomcloud

opentelekomcloud.TaurusdbMysqlQuotaV3

Get Started
opentelekomcloud logo
opentelekomcloud 1.36.51 published on Thursday, Oct 23, 2025 by opentelekomcloud

    Manages a TaurusDB MySQL quota resource within OpenTelekomCloud.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as opentelekomcloud from "@pulumi/opentelekomcloud";
    
    const config = new pulumi.Config();
    const enterpriseProjectId = config.requireObject("enterpriseProjectId");
    const test = new opentelekomcloud.TaurusdbMysqlQuotaV3("test", {
        enterpriseProjectId: enterpriseProjectId,
        instanceQuota: 10,
        vcpusQuota: 0,
        ramQuota: 30,
    });
    
    import pulumi
    import pulumi_opentelekomcloud as opentelekomcloud
    
    config = pulumi.Config()
    enterprise_project_id = config.require_object("enterpriseProjectId")
    test = opentelekomcloud.TaurusdbMysqlQuotaV3("test",
        enterprise_project_id=enterprise_project_id,
        instance_quota=10,
        vcpus_quota=0,
        ram_quota=30)
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-terraform-provider/sdks/go/opentelekomcloud/opentelekomcloud"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi/config"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		cfg := config.New(ctx, "")
    		enterpriseProjectId := cfg.RequireObject("enterpriseProjectId")
    		_, err := opentelekomcloud.NewTaurusdbMysqlQuotaV3(ctx, "test", &opentelekomcloud.TaurusdbMysqlQuotaV3Args{
    			EnterpriseProjectId: pulumi.Any(enterpriseProjectId),
    			InstanceQuota:       pulumi.Float64(10),
    			VcpusQuota:          pulumi.Float64(0),
    			RamQuota:            pulumi.Float64(30),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Opentelekomcloud = Pulumi.Opentelekomcloud;
    
    return await Deployment.RunAsync(() => 
    {
        var config = new Config();
        var enterpriseProjectId = config.RequireObject<dynamic>("enterpriseProjectId");
        var test = new Opentelekomcloud.TaurusdbMysqlQuotaV3("test", new()
        {
            EnterpriseProjectId = enterpriseProjectId,
            InstanceQuota = 10,
            VcpusQuota = 0,
            RamQuota = 30,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.opentelekomcloud.TaurusdbMysqlQuotaV3;
    import com.pulumi.opentelekomcloud.TaurusdbMysqlQuotaV3Args;
    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 config = ctx.config();
            final var enterpriseProjectId = config.get("enterpriseProjectId");
            var test = new TaurusdbMysqlQuotaV3("test", TaurusdbMysqlQuotaV3Args.builder()
                .enterpriseProjectId(enterpriseProjectId)
                .instanceQuota(10)
                .vcpusQuota(0)
                .ramQuota(30)
                .build());
    
        }
    }
    
    configuration:
      enterpriseProjectId:
        type: dynamic
    resources:
      test:
        type: opentelekomcloud:TaurusdbMysqlQuotaV3
        properties:
          enterpriseProjectId: ${enterpriseProjectId}
          instanceQuota: 10
          vcpusQuota: 0
          ramQuota: 30
    

    Create TaurusdbMysqlQuotaV3 Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new TaurusdbMysqlQuotaV3(name: string, args: TaurusdbMysqlQuotaV3Args, opts?: CustomResourceOptions);
    @overload
    def TaurusdbMysqlQuotaV3(resource_name: str,
                             args: TaurusdbMysqlQuotaV3Args,
                             opts: Optional[ResourceOptions] = None)
    
    @overload
    def TaurusdbMysqlQuotaV3(resource_name: str,
                             opts: Optional[ResourceOptions] = None,
                             enterprise_project_id: Optional[str] = None,
                             enterprise_project_name: Optional[str] = None,
                             instance_quota: Optional[float] = None,
                             ram_quota: Optional[float] = None,
                             taurusdb_mysql_quota_v3_id: Optional[str] = None,
                             vcpus_quota: Optional[float] = None)
    func NewTaurusdbMysqlQuotaV3(ctx *Context, name string, args TaurusdbMysqlQuotaV3Args, opts ...ResourceOption) (*TaurusdbMysqlQuotaV3, error)
    public TaurusdbMysqlQuotaV3(string name, TaurusdbMysqlQuotaV3Args args, CustomResourceOptions? opts = null)
    public TaurusdbMysqlQuotaV3(String name, TaurusdbMysqlQuotaV3Args args)
    public TaurusdbMysqlQuotaV3(String name, TaurusdbMysqlQuotaV3Args args, CustomResourceOptions options)
    
    type: opentelekomcloud:TaurusdbMysqlQuotaV3
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

    name string
    The unique name of the resource.
    args TaurusdbMysqlQuotaV3Args
    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 TaurusdbMysqlQuotaV3Args
    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 TaurusdbMysqlQuotaV3Args
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args TaurusdbMysqlQuotaV3Args
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args TaurusdbMysqlQuotaV3Args
    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 taurusdbMysqlQuotaV3Resource = new Opentelekomcloud.TaurusdbMysqlQuotaV3("taurusdbMysqlQuotaV3Resource", new()
    {
        EnterpriseProjectId = "string",
        EnterpriseProjectName = "string",
        InstanceQuota = 0,
        RamQuota = 0,
        TaurusdbMysqlQuotaV3Id = "string",
        VcpusQuota = 0,
    });
    
    example, err := opentelekomcloud.NewTaurusdbMysqlQuotaV3(ctx, "taurusdbMysqlQuotaV3Resource", &opentelekomcloud.TaurusdbMysqlQuotaV3Args{
    	EnterpriseProjectId:    pulumi.String("string"),
    	EnterpriseProjectName:  pulumi.String("string"),
    	InstanceQuota:          pulumi.Float64(0),
    	RamQuota:               pulumi.Float64(0),
    	TaurusdbMysqlQuotaV3Id: pulumi.String("string"),
    	VcpusQuota:             pulumi.Float64(0),
    })
    
    var taurusdbMysqlQuotaV3Resource = new TaurusdbMysqlQuotaV3("taurusdbMysqlQuotaV3Resource", TaurusdbMysqlQuotaV3Args.builder()
        .enterpriseProjectId("string")
        .enterpriseProjectName("string")
        .instanceQuota(0.0)
        .ramQuota(0.0)
        .taurusdbMysqlQuotaV3Id("string")
        .vcpusQuota(0.0)
        .build());
    
    taurusdb_mysql_quota_v3_resource = opentelekomcloud.TaurusdbMysqlQuotaV3("taurusdbMysqlQuotaV3Resource",
        enterprise_project_id="string",
        enterprise_project_name="string",
        instance_quota=0,
        ram_quota=0,
        taurusdb_mysql_quota_v3_id="string",
        vcpus_quota=0)
    
    const taurusdbMysqlQuotaV3Resource = new opentelekomcloud.TaurusdbMysqlQuotaV3("taurusdbMysqlQuotaV3Resource", {
        enterpriseProjectId: "string",
        enterpriseProjectName: "string",
        instanceQuota: 0,
        ramQuota: 0,
        taurusdbMysqlQuotaV3Id: "string",
        vcpusQuota: 0,
    });
    
    type: opentelekomcloud:TaurusdbMysqlQuotaV3
    properties:
        enterpriseProjectId: string
        enterpriseProjectName: string
        instanceQuota: 0
        ramQuota: 0
        taurusdbMysqlQuotaV3Id: string
        vcpusQuota: 0
    

    TaurusdbMysqlQuotaV3 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 TaurusdbMysqlQuotaV3 resource accepts the following input properties:

    EnterpriseProjectId string
    Specifies the enterprise project ID. Changing this parameter will create a new resource.
    EnterpriseProjectName string
    Indicates the enterprise project name.
    InstanceQuota double
    Specifies the instance quantity quota. Value range: -1 to 100000. The value -1 indicates no limit. If there are already instances created, this parameter value must be greater than the number of existing instances. Defaults to -1.
    RamQuota double
    Specifies the memory quota in GB. Value range: -1 to 2147483646. The value -1 indicates no limit. If there are already instances created, this parameter value must be greater than the used memory size. Defaults to -1.
    TaurusdbMysqlQuotaV3Id string
    Indicates the resource ID. The value is enterprise_project_id.
    VcpusQuota double
    Specifies the vCPU quota. Value range: -1 to 2147483646. The value -1 indicates no limit. If there are already instances created, this parameter value must be greater than the number of used vCPUs. Defaults to -1.
    EnterpriseProjectId string
    Specifies the enterprise project ID. Changing this parameter will create a new resource.
    EnterpriseProjectName string
    Indicates the enterprise project name.
    InstanceQuota float64
    Specifies the instance quantity quota. Value range: -1 to 100000. The value -1 indicates no limit. If there are already instances created, this parameter value must be greater than the number of existing instances. Defaults to -1.
    RamQuota float64
    Specifies the memory quota in GB. Value range: -1 to 2147483646. The value -1 indicates no limit. If there are already instances created, this parameter value must be greater than the used memory size. Defaults to -1.
    TaurusdbMysqlQuotaV3Id string
    Indicates the resource ID. The value is enterprise_project_id.
    VcpusQuota float64
    Specifies the vCPU quota. Value range: -1 to 2147483646. The value -1 indicates no limit. If there are already instances created, this parameter value must be greater than the number of used vCPUs. Defaults to -1.
    enterpriseProjectId String
    Specifies the enterprise project ID. Changing this parameter will create a new resource.
    enterpriseProjectName String
    Indicates the enterprise project name.
    instanceQuota Double
    Specifies the instance quantity quota. Value range: -1 to 100000. The value -1 indicates no limit. If there are already instances created, this parameter value must be greater than the number of existing instances. Defaults to -1.
    ramQuota Double
    Specifies the memory quota in GB. Value range: -1 to 2147483646. The value -1 indicates no limit. If there are already instances created, this parameter value must be greater than the used memory size. Defaults to -1.
    taurusdbMysqlQuotaV3Id String
    Indicates the resource ID. The value is enterprise_project_id.
    vcpusQuota Double
    Specifies the vCPU quota. Value range: -1 to 2147483646. The value -1 indicates no limit. If there are already instances created, this parameter value must be greater than the number of used vCPUs. Defaults to -1.
    enterpriseProjectId string
    Specifies the enterprise project ID. Changing this parameter will create a new resource.
    enterpriseProjectName string
    Indicates the enterprise project name.
    instanceQuota number
    Specifies the instance quantity quota. Value range: -1 to 100000. The value -1 indicates no limit. If there are already instances created, this parameter value must be greater than the number of existing instances. Defaults to -1.
    ramQuota number
    Specifies the memory quota in GB. Value range: -1 to 2147483646. The value -1 indicates no limit. If there are already instances created, this parameter value must be greater than the used memory size. Defaults to -1.
    taurusdbMysqlQuotaV3Id string
    Indicates the resource ID. The value is enterprise_project_id.
    vcpusQuota number
    Specifies the vCPU quota. Value range: -1 to 2147483646. The value -1 indicates no limit. If there are already instances created, this parameter value must be greater than the number of used vCPUs. Defaults to -1.
    enterprise_project_id str
    Specifies the enterprise project ID. Changing this parameter will create a new resource.
    enterprise_project_name str
    Indicates the enterprise project name.
    instance_quota float
    Specifies the instance quantity quota. Value range: -1 to 100000. The value -1 indicates no limit. If there are already instances created, this parameter value must be greater than the number of existing instances. Defaults to -1.
    ram_quota float
    Specifies the memory quota in GB. Value range: -1 to 2147483646. The value -1 indicates no limit. If there are already instances created, this parameter value must be greater than the used memory size. Defaults to -1.
    taurusdb_mysql_quota_v3_id str
    Indicates the resource ID. The value is enterprise_project_id.
    vcpus_quota float
    Specifies the vCPU quota. Value range: -1 to 2147483646. The value -1 indicates no limit. If there are already instances created, this parameter value must be greater than the number of used vCPUs. Defaults to -1.
    enterpriseProjectId String
    Specifies the enterprise project ID. Changing this parameter will create a new resource.
    enterpriseProjectName String
    Indicates the enterprise project name.
    instanceQuota Number
    Specifies the instance quantity quota. Value range: -1 to 100000. The value -1 indicates no limit. If there are already instances created, this parameter value must be greater than the number of existing instances. Defaults to -1.
    ramQuota Number
    Specifies the memory quota in GB. Value range: -1 to 2147483646. The value -1 indicates no limit. If there are already instances created, this parameter value must be greater than the used memory size. Defaults to -1.
    taurusdbMysqlQuotaV3Id String
    Indicates the resource ID. The value is enterprise_project_id.
    vcpusQuota Number
    Specifies the vCPU quota. Value range: -1 to 2147483646. The value -1 indicates no limit. If there are already instances created, this parameter value must be greater than the number of used vCPUs. Defaults to -1.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the TaurusdbMysqlQuotaV3 resource produces the following output properties:

    AvailabilityInstanceQuota double
    Indicates the remaining instance quota.
    AvailabilityRamQuota double
    Indicates the remaining memory quota.
    AvailabilityVcpusQuota double
    Indicates the remaining vCPU quota.
    Id string
    The provider-assigned unique ID for this managed resource.
    Region string
    Indicates the region in which to create the resource.
    AvailabilityInstanceQuota float64
    Indicates the remaining instance quota.
    AvailabilityRamQuota float64
    Indicates the remaining memory quota.
    AvailabilityVcpusQuota float64
    Indicates the remaining vCPU quota.
    Id string
    The provider-assigned unique ID for this managed resource.
    Region string
    Indicates the region in which to create the resource.
    availabilityInstanceQuota Double
    Indicates the remaining instance quota.
    availabilityRamQuota Double
    Indicates the remaining memory quota.
    availabilityVcpusQuota Double
    Indicates the remaining vCPU quota.
    id String
    The provider-assigned unique ID for this managed resource.
    region String
    Indicates the region in which to create the resource.
    availabilityInstanceQuota number
    Indicates the remaining instance quota.
    availabilityRamQuota number
    Indicates the remaining memory quota.
    availabilityVcpusQuota number
    Indicates the remaining vCPU quota.
    id string
    The provider-assigned unique ID for this managed resource.
    region string
    Indicates the region in which to create the resource.
    availability_instance_quota float
    Indicates the remaining instance quota.
    availability_ram_quota float
    Indicates the remaining memory quota.
    availability_vcpus_quota float
    Indicates the remaining vCPU quota.
    id str
    The provider-assigned unique ID for this managed resource.
    region str
    Indicates the region in which to create the resource.
    availabilityInstanceQuota Number
    Indicates the remaining instance quota.
    availabilityRamQuota Number
    Indicates the remaining memory quota.
    availabilityVcpusQuota Number
    Indicates the remaining vCPU quota.
    id String
    The provider-assigned unique ID for this managed resource.
    region String
    Indicates the region in which to create the resource.

    Look up Existing TaurusdbMysqlQuotaV3 Resource

    Get an existing TaurusdbMysqlQuotaV3 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?: TaurusdbMysqlQuotaV3State, opts?: CustomResourceOptions): TaurusdbMysqlQuotaV3
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            availability_instance_quota: Optional[float] = None,
            availability_ram_quota: Optional[float] = None,
            availability_vcpus_quota: Optional[float] = None,
            enterprise_project_id: Optional[str] = None,
            enterprise_project_name: Optional[str] = None,
            instance_quota: Optional[float] = None,
            ram_quota: Optional[float] = None,
            region: Optional[str] = None,
            taurusdb_mysql_quota_v3_id: Optional[str] = None,
            vcpus_quota: Optional[float] = None) -> TaurusdbMysqlQuotaV3
    func GetTaurusdbMysqlQuotaV3(ctx *Context, name string, id IDInput, state *TaurusdbMysqlQuotaV3State, opts ...ResourceOption) (*TaurusdbMysqlQuotaV3, error)
    public static TaurusdbMysqlQuotaV3 Get(string name, Input<string> id, TaurusdbMysqlQuotaV3State? state, CustomResourceOptions? opts = null)
    public static TaurusdbMysqlQuotaV3 get(String name, Output<String> id, TaurusdbMysqlQuotaV3State state, CustomResourceOptions options)
    resources:  _:    type: opentelekomcloud:TaurusdbMysqlQuotaV3    get:      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.
    The following state arguments are supported:
    AvailabilityInstanceQuota double
    Indicates the remaining instance quota.
    AvailabilityRamQuota double
    Indicates the remaining memory quota.
    AvailabilityVcpusQuota double
    Indicates the remaining vCPU quota.
    EnterpriseProjectId string
    Specifies the enterprise project ID. Changing this parameter will create a new resource.
    EnterpriseProjectName string
    Indicates the enterprise project name.
    InstanceQuota double
    Specifies the instance quantity quota. Value range: -1 to 100000. The value -1 indicates no limit. If there are already instances created, this parameter value must be greater than the number of existing instances. Defaults to -1.
    RamQuota double
    Specifies the memory quota in GB. Value range: -1 to 2147483646. The value -1 indicates no limit. If there are already instances created, this parameter value must be greater than the used memory size. Defaults to -1.
    Region string
    Indicates the region in which to create the resource.
    TaurusdbMysqlQuotaV3Id string
    Indicates the resource ID. The value is enterprise_project_id.
    VcpusQuota double
    Specifies the vCPU quota. Value range: -1 to 2147483646. The value -1 indicates no limit. If there are already instances created, this parameter value must be greater than the number of used vCPUs. Defaults to -1.
    AvailabilityInstanceQuota float64
    Indicates the remaining instance quota.
    AvailabilityRamQuota float64
    Indicates the remaining memory quota.
    AvailabilityVcpusQuota float64
    Indicates the remaining vCPU quota.
    EnterpriseProjectId string
    Specifies the enterprise project ID. Changing this parameter will create a new resource.
    EnterpriseProjectName string
    Indicates the enterprise project name.
    InstanceQuota float64
    Specifies the instance quantity quota. Value range: -1 to 100000. The value -1 indicates no limit. If there are already instances created, this parameter value must be greater than the number of existing instances. Defaults to -1.
    RamQuota float64
    Specifies the memory quota in GB. Value range: -1 to 2147483646. The value -1 indicates no limit. If there are already instances created, this parameter value must be greater than the used memory size. Defaults to -1.
    Region string
    Indicates the region in which to create the resource.
    TaurusdbMysqlQuotaV3Id string
    Indicates the resource ID. The value is enterprise_project_id.
    VcpusQuota float64
    Specifies the vCPU quota. Value range: -1 to 2147483646. The value -1 indicates no limit. If there are already instances created, this parameter value must be greater than the number of used vCPUs. Defaults to -1.
    availabilityInstanceQuota Double
    Indicates the remaining instance quota.
    availabilityRamQuota Double
    Indicates the remaining memory quota.
    availabilityVcpusQuota Double
    Indicates the remaining vCPU quota.
    enterpriseProjectId String
    Specifies the enterprise project ID. Changing this parameter will create a new resource.
    enterpriseProjectName String
    Indicates the enterprise project name.
    instanceQuota Double
    Specifies the instance quantity quota. Value range: -1 to 100000. The value -1 indicates no limit. If there are already instances created, this parameter value must be greater than the number of existing instances. Defaults to -1.
    ramQuota Double
    Specifies the memory quota in GB. Value range: -1 to 2147483646. The value -1 indicates no limit. If there are already instances created, this parameter value must be greater than the used memory size. Defaults to -1.
    region String
    Indicates the region in which to create the resource.
    taurusdbMysqlQuotaV3Id String
    Indicates the resource ID. The value is enterprise_project_id.
    vcpusQuota Double
    Specifies the vCPU quota. Value range: -1 to 2147483646. The value -1 indicates no limit. If there are already instances created, this parameter value must be greater than the number of used vCPUs. Defaults to -1.
    availabilityInstanceQuota number
    Indicates the remaining instance quota.
    availabilityRamQuota number
    Indicates the remaining memory quota.
    availabilityVcpusQuota number
    Indicates the remaining vCPU quota.
    enterpriseProjectId string
    Specifies the enterprise project ID. Changing this parameter will create a new resource.
    enterpriseProjectName string
    Indicates the enterprise project name.
    instanceQuota number
    Specifies the instance quantity quota. Value range: -1 to 100000. The value -1 indicates no limit. If there are already instances created, this parameter value must be greater than the number of existing instances. Defaults to -1.
    ramQuota number
    Specifies the memory quota in GB. Value range: -1 to 2147483646. The value -1 indicates no limit. If there are already instances created, this parameter value must be greater than the used memory size. Defaults to -1.
    region string
    Indicates the region in which to create the resource.
    taurusdbMysqlQuotaV3Id string
    Indicates the resource ID. The value is enterprise_project_id.
    vcpusQuota number
    Specifies the vCPU quota. Value range: -1 to 2147483646. The value -1 indicates no limit. If there are already instances created, this parameter value must be greater than the number of used vCPUs. Defaults to -1.
    availability_instance_quota float
    Indicates the remaining instance quota.
    availability_ram_quota float
    Indicates the remaining memory quota.
    availability_vcpus_quota float
    Indicates the remaining vCPU quota.
    enterprise_project_id str
    Specifies the enterprise project ID. Changing this parameter will create a new resource.
    enterprise_project_name str
    Indicates the enterprise project name.
    instance_quota float
    Specifies the instance quantity quota. Value range: -1 to 100000. The value -1 indicates no limit. If there are already instances created, this parameter value must be greater than the number of existing instances. Defaults to -1.
    ram_quota float
    Specifies the memory quota in GB. Value range: -1 to 2147483646. The value -1 indicates no limit. If there are already instances created, this parameter value must be greater than the used memory size. Defaults to -1.
    region str
    Indicates the region in which to create the resource.
    taurusdb_mysql_quota_v3_id str
    Indicates the resource ID. The value is enterprise_project_id.
    vcpus_quota float
    Specifies the vCPU quota. Value range: -1 to 2147483646. The value -1 indicates no limit. If there are already instances created, this parameter value must be greater than the number of used vCPUs. Defaults to -1.
    availabilityInstanceQuota Number
    Indicates the remaining instance quota.
    availabilityRamQuota Number
    Indicates the remaining memory quota.
    availabilityVcpusQuota Number
    Indicates the remaining vCPU quota.
    enterpriseProjectId String
    Specifies the enterprise project ID. Changing this parameter will create a new resource.
    enterpriseProjectName String
    Indicates the enterprise project name.
    instanceQuota Number
    Specifies the instance quantity quota. Value range: -1 to 100000. The value -1 indicates no limit. If there are already instances created, this parameter value must be greater than the number of existing instances. Defaults to -1.
    ramQuota Number
    Specifies the memory quota in GB. Value range: -1 to 2147483646. The value -1 indicates no limit. If there are already instances created, this parameter value must be greater than the used memory size. Defaults to -1.
    region String
    Indicates the region in which to create the resource.
    taurusdbMysqlQuotaV3Id String
    Indicates the resource ID. The value is enterprise_project_id.
    vcpusQuota Number
    Specifies the vCPU quota. Value range: -1 to 2147483646. The value -1 indicates no limit. If there are already instances created, this parameter value must be greater than the number of used vCPUs. Defaults to -1.

    Import

    The TaurusDB MySQL quota can be imported using the id, e.g.

    bash

    $ pulumi import opentelekomcloud:index/taurusdbMysqlQuotaV3:TaurusdbMysqlQuotaV3 test <id>
    

    To learn more about importing existing cloud resources, see Importing resources.

    Package Details

    Repository
    opentelekomcloud opentelekomcloud/terraform-provider-opentelekomcloud
    License
    Notes
    This Pulumi package is based on the opentelekomcloud Terraform Provider.
    opentelekomcloud logo
    opentelekomcloud 1.36.51 published on Thursday, Oct 23, 2025 by opentelekomcloud
      Meet Neo: Your AI Platform Teammate