opentelekomcloud.TaurusdbMysqlQuotaV3
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:
- Enterprise
Project stringId - Specifies the enterprise project ID. Changing this parameter will create a new resource.
- Enterprise
Project stringName - Indicates the enterprise project name.
- Instance
Quota 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.
- Ram
Quota 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.
- Taurusdb
Mysql stringQuota V3Id - Indicates the resource ID. The value is
enterprise_project_id. - Vcpus
Quota 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.
- Enterprise
Project stringId - Specifies the enterprise project ID. Changing this parameter will create a new resource.
- Enterprise
Project stringName - Indicates the enterprise project name.
- Instance
Quota 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.
- Ram
Quota 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.
- Taurusdb
Mysql stringQuota V3Id - Indicates the resource ID. The value is
enterprise_project_id. - Vcpus
Quota 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.
- enterprise
Project StringId - Specifies the enterprise project ID. Changing this parameter will create a new resource.
- enterprise
Project StringName - Indicates the enterprise project name.
- instance
Quota 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.
- ram
Quota 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.
- taurusdb
Mysql StringQuota V3Id - Indicates the resource ID. The value is
enterprise_project_id. - vcpus
Quota 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.
- enterprise
Project stringId - Specifies the enterprise project ID. Changing this parameter will create a new resource.
- enterprise
Project stringName - Indicates the enterprise project name.
- instance
Quota 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.
- ram
Quota 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.
- taurusdb
Mysql stringQuota V3Id - Indicates the resource ID. The value is
enterprise_project_id. - vcpus
Quota 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_ strid - Specifies the enterprise project ID. Changing this parameter will create a new resource.
- enterprise_
project_ strname - 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_ strquota_ v3_ id - 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.
- enterprise
Project StringId - Specifies the enterprise project ID. Changing this parameter will create a new resource.
- enterprise
Project StringName - Indicates the enterprise project name.
- instance
Quota 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.
- ram
Quota 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.
- taurusdb
Mysql StringQuota V3Id - Indicates the resource ID. The value is
enterprise_project_id. - vcpus
Quota 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:
- Availability
Instance doubleQuota - Indicates the remaining instance quota.
- Availability
Ram doubleQuota - Indicates the remaining memory quota.
- Availability
Vcpus doubleQuota - 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 float64Quota - Indicates the remaining instance quota.
- Availability
Ram float64Quota - Indicates the remaining memory quota.
- Availability
Vcpus float64Quota - 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 DoubleQuota - Indicates the remaining instance quota.
- availability
Ram DoubleQuota - Indicates the remaining memory quota.
- availability
Vcpus DoubleQuota - 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 numberQuota - Indicates the remaining instance quota.
- availability
Ram numberQuota - Indicates the remaining memory quota.
- availability
Vcpus numberQuota - 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_ floatquota - Indicates the remaining instance quota.
- availability_
ram_ floatquota - Indicates the remaining memory quota.
- availability_
vcpus_ floatquota - 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.
- availability
Instance NumberQuota - Indicates the remaining instance quota.
- availability
Ram NumberQuota - Indicates the remaining memory quota.
- availability
Vcpus NumberQuota - 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) -> TaurusdbMysqlQuotaV3func 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.
- Availability
Instance doubleQuota - Indicates the remaining instance quota.
- Availability
Ram doubleQuota - Indicates the remaining memory quota.
- Availability
Vcpus doubleQuota - Indicates the remaining vCPU quota.
- Enterprise
Project stringId - Specifies the enterprise project ID. Changing this parameter will create a new resource.
- Enterprise
Project stringName - Indicates the enterprise project name.
- Instance
Quota 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.
- Ram
Quota 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.
- Taurusdb
Mysql stringQuota V3Id - Indicates the resource ID. The value is
enterprise_project_id. - Vcpus
Quota 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.
- Availability
Instance float64Quota - Indicates the remaining instance quota.
- Availability
Ram float64Quota - Indicates the remaining memory quota.
- Availability
Vcpus float64Quota - Indicates the remaining vCPU quota.
- Enterprise
Project stringId - Specifies the enterprise project ID. Changing this parameter will create a new resource.
- Enterprise
Project stringName - Indicates the enterprise project name.
- Instance
Quota 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.
- Ram
Quota 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.
- Taurusdb
Mysql stringQuota V3Id - Indicates the resource ID. The value is
enterprise_project_id. - Vcpus
Quota 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.
- availability
Instance DoubleQuota - Indicates the remaining instance quota.
- availability
Ram DoubleQuota - Indicates the remaining memory quota.
- availability
Vcpus DoubleQuota - Indicates the remaining vCPU quota.
- enterprise
Project StringId - Specifies the enterprise project ID. Changing this parameter will create a new resource.
- enterprise
Project StringName - Indicates the enterprise project name.
- instance
Quota 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.
- ram
Quota 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.
- taurusdb
Mysql StringQuota V3Id - Indicates the resource ID. The value is
enterprise_project_id. - vcpus
Quota 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.
- availability
Instance numberQuota - Indicates the remaining instance quota.
- availability
Ram numberQuota - Indicates the remaining memory quota.
- availability
Vcpus numberQuota - Indicates the remaining vCPU quota.
- enterprise
Project stringId - Specifies the enterprise project ID. Changing this parameter will create a new resource.
- enterprise
Project stringName - Indicates the enterprise project name.
- instance
Quota 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.
- ram
Quota 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.
- taurusdb
Mysql stringQuota V3Id - Indicates the resource ID. The value is
enterprise_project_id. - vcpus
Quota 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_ floatquota - Indicates the remaining instance quota.
- availability_
ram_ floatquota - Indicates the remaining memory quota.
- availability_
vcpus_ floatquota - Indicates the remaining vCPU quota.
- enterprise_
project_ strid - Specifies the enterprise project ID. Changing this parameter will create a new resource.
- enterprise_
project_ strname - 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_ strquota_ v3_ id - 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.
- availability
Instance NumberQuota - Indicates the remaining instance quota.
- availability
Ram NumberQuota - Indicates the remaining memory quota.
- availability
Vcpus NumberQuota - Indicates the remaining vCPU quota.
- enterprise
Project StringId - Specifies the enterprise project ID. Changing this parameter will create a new resource.
- enterprise
Project StringName - Indicates the enterprise project name.
- instance
Quota 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.
- ram
Quota 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.
- taurusdb
Mysql StringQuota V3Id - Indicates the resource ID. The value is
enterprise_project_id. - vcpus
Quota 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
opentelekomcloudTerraform Provider.
