opentelekomcloud.TaurusdbMysqlSqlControlRuleV3
Manages a TaurusDB MySQL SQL concurrency control rule resource within OpenTelekomCloud.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as opentelekomcloud from "@pulumi/opentelekomcloud";
const config = new pulumi.Config();
const instanceId = config.requireObject("instanceId");
const nodeId = config.requireObject("nodeId");
const test = new opentelekomcloud.TaurusdbMysqlSqlControlRuleV3("test", {
instanceId: instanceId,
nodeId: nodeId,
sqlType: "SELECT",
pattern: "select~from~t1",
maxConcurrency: 20,
});
import pulumi
import pulumi_opentelekomcloud as opentelekomcloud
config = pulumi.Config()
instance_id = config.require_object("instanceId")
node_id = config.require_object("nodeId")
test = opentelekomcloud.TaurusdbMysqlSqlControlRuleV3("test",
instance_id=instance_id,
node_id=node_id,
sql_type="SELECT",
pattern="select~from~t1",
max_concurrency=20)
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, "")
instanceId := cfg.RequireObject("instanceId")
nodeId := cfg.RequireObject("nodeId")
_, err := opentelekomcloud.NewTaurusdbMysqlSqlControlRuleV3(ctx, "test", &opentelekomcloud.TaurusdbMysqlSqlControlRuleV3Args{
InstanceId: pulumi.Any(instanceId),
NodeId: pulumi.Any(nodeId),
SqlType: pulumi.String("SELECT"),
Pattern: pulumi.String("select~from~t1"),
MaxConcurrency: pulumi.Float64(20),
})
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 instanceId = config.RequireObject<dynamic>("instanceId");
var nodeId = config.RequireObject<dynamic>("nodeId");
var test = new Opentelekomcloud.TaurusdbMysqlSqlControlRuleV3("test", new()
{
InstanceId = instanceId,
NodeId = nodeId,
SqlType = "SELECT",
Pattern = "select~from~t1",
MaxConcurrency = 20,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.opentelekomcloud.TaurusdbMysqlSqlControlRuleV3;
import com.pulumi.opentelekomcloud.TaurusdbMysqlSqlControlRuleV3Args;
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 instanceId = config.get("instanceId");
final var nodeId = config.get("nodeId");
var test = new TaurusdbMysqlSqlControlRuleV3("test", TaurusdbMysqlSqlControlRuleV3Args.builder()
.instanceId(instanceId)
.nodeId(nodeId)
.sqlType("SELECT")
.pattern("select~from~t1")
.maxConcurrency(20)
.build());
}
}
configuration:
instanceId:
type: dynamic
nodeId:
type: dynamic
resources:
test:
type: opentelekomcloud:TaurusdbMysqlSqlControlRuleV3
properties:
instanceId: ${instanceId}
nodeId: ${nodeId}
sqlType: SELECT
pattern: select~from~t1
maxConcurrency: 20
Create TaurusdbMysqlSqlControlRuleV3 Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new TaurusdbMysqlSqlControlRuleV3(name: string, args: TaurusdbMysqlSqlControlRuleV3Args, opts?: CustomResourceOptions);@overload
def TaurusdbMysqlSqlControlRuleV3(resource_name: str,
args: TaurusdbMysqlSqlControlRuleV3Args,
opts: Optional[ResourceOptions] = None)
@overload
def TaurusdbMysqlSqlControlRuleV3(resource_name: str,
opts: Optional[ResourceOptions] = None,
instance_id: Optional[str] = None,
max_concurrency: Optional[float] = None,
node_id: Optional[str] = None,
pattern: Optional[str] = None,
sql_type: Optional[str] = None,
taurusdb_mysql_sql_control_rule_v3_id: Optional[str] = None,
timeouts: Optional[TaurusdbMysqlSqlControlRuleV3TimeoutsArgs] = None)func NewTaurusdbMysqlSqlControlRuleV3(ctx *Context, name string, args TaurusdbMysqlSqlControlRuleV3Args, opts ...ResourceOption) (*TaurusdbMysqlSqlControlRuleV3, error)public TaurusdbMysqlSqlControlRuleV3(string name, TaurusdbMysqlSqlControlRuleV3Args args, CustomResourceOptions? opts = null)
public TaurusdbMysqlSqlControlRuleV3(String name, TaurusdbMysqlSqlControlRuleV3Args args)
public TaurusdbMysqlSqlControlRuleV3(String name, TaurusdbMysqlSqlControlRuleV3Args args, CustomResourceOptions options)
type: opentelekomcloud:TaurusdbMysqlSqlControlRuleV3
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 TaurusdbMysqlSqlControlRuleV3Args
- 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 TaurusdbMysqlSqlControlRuleV3Args
- 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 TaurusdbMysqlSqlControlRuleV3Args
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args TaurusdbMysqlSqlControlRuleV3Args
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args TaurusdbMysqlSqlControlRuleV3Args
- 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 taurusdbMysqlSqlControlRuleV3Resource = new Opentelekomcloud.TaurusdbMysqlSqlControlRuleV3("taurusdbMysqlSqlControlRuleV3Resource", new()
{
InstanceId = "string",
MaxConcurrency = 0,
NodeId = "string",
Pattern = "string",
SqlType = "string",
TaurusdbMysqlSqlControlRuleV3Id = "string",
Timeouts = new Opentelekomcloud.Inputs.TaurusdbMysqlSqlControlRuleV3TimeoutsArgs
{
Create = "string",
Delete = "string",
Update = "string",
},
});
example, err := opentelekomcloud.NewTaurusdbMysqlSqlControlRuleV3(ctx, "taurusdbMysqlSqlControlRuleV3Resource", &opentelekomcloud.TaurusdbMysqlSqlControlRuleV3Args{
InstanceId: pulumi.String("string"),
MaxConcurrency: pulumi.Float64(0),
NodeId: pulumi.String("string"),
Pattern: pulumi.String("string"),
SqlType: pulumi.String("string"),
TaurusdbMysqlSqlControlRuleV3Id: pulumi.String("string"),
Timeouts: &opentelekomcloud.TaurusdbMysqlSqlControlRuleV3TimeoutsArgs{
Create: pulumi.String("string"),
Delete: pulumi.String("string"),
Update: pulumi.String("string"),
},
})
var taurusdbMysqlSqlControlRuleV3Resource = new TaurusdbMysqlSqlControlRuleV3("taurusdbMysqlSqlControlRuleV3Resource", TaurusdbMysqlSqlControlRuleV3Args.builder()
.instanceId("string")
.maxConcurrency(0.0)
.nodeId("string")
.pattern("string")
.sqlType("string")
.taurusdbMysqlSqlControlRuleV3Id("string")
.timeouts(TaurusdbMysqlSqlControlRuleV3TimeoutsArgs.builder()
.create("string")
.delete("string")
.update("string")
.build())
.build());
taurusdb_mysql_sql_control_rule_v3_resource = opentelekomcloud.TaurusdbMysqlSqlControlRuleV3("taurusdbMysqlSqlControlRuleV3Resource",
instance_id="string",
max_concurrency=0,
node_id="string",
pattern="string",
sql_type="string",
taurusdb_mysql_sql_control_rule_v3_id="string",
timeouts={
"create": "string",
"delete": "string",
"update": "string",
})
const taurusdbMysqlSqlControlRuleV3Resource = new opentelekomcloud.TaurusdbMysqlSqlControlRuleV3("taurusdbMysqlSqlControlRuleV3Resource", {
instanceId: "string",
maxConcurrency: 0,
nodeId: "string",
pattern: "string",
sqlType: "string",
taurusdbMysqlSqlControlRuleV3Id: "string",
timeouts: {
create: "string",
"delete": "string",
update: "string",
},
});
type: opentelekomcloud:TaurusdbMysqlSqlControlRuleV3
properties:
instanceId: string
maxConcurrency: 0
nodeId: string
pattern: string
sqlType: string
taurusdbMysqlSqlControlRuleV3Id: string
timeouts:
create: string
delete: string
update: string
TaurusdbMysqlSqlControlRuleV3 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 TaurusdbMysqlSqlControlRuleV3 resource accepts the following input properties:
- Instance
Id string - Specifies the ID of the TaurusDB MySQL instance. Changing this parameter will create a new resource.
- Max
Concurrency double - Specifies the maximum number of concurrent SQL statements. Value: a non-negative integer.
- Node
Id string - Specifies the ID of the TaurusDB MySQL node. Changing this parameter will create a new resource.
- Pattern string
- Specifies the concurrency control rule of SQL statements. A rule can consist of up to 128 keywords. The keywords are separated by tildes (~), for example, select~from~t1. The rule cannot contain backslashes (), commas (,), or double tildes (~~). It cannot end with tildes (~). Changing this parameter will create a new resource.
- Sql
Type string - Specifies the SQL statement type. Value options: SELECT, UPDATE, DELETE. Changing this parameter will create a new resource.
- Taurusdb
Mysql stringSql Control Rule V3Id - Indicates the resource ID which is formatted
<instance_id>/<node_id>/<sql_type>/<pattern>. - Timeouts
Taurusdb
Mysql Sql Control Rule V3Timeouts
- Instance
Id string - Specifies the ID of the TaurusDB MySQL instance. Changing this parameter will create a new resource.
- Max
Concurrency float64 - Specifies the maximum number of concurrent SQL statements. Value: a non-negative integer.
- Node
Id string - Specifies the ID of the TaurusDB MySQL node. Changing this parameter will create a new resource.
- Pattern string
- Specifies the concurrency control rule of SQL statements. A rule can consist of up to 128 keywords. The keywords are separated by tildes (~), for example, select~from~t1. The rule cannot contain backslashes (), commas (,), or double tildes (~~). It cannot end with tildes (~). Changing this parameter will create a new resource.
- Sql
Type string - Specifies the SQL statement type. Value options: SELECT, UPDATE, DELETE. Changing this parameter will create a new resource.
- Taurusdb
Mysql stringSql Control Rule V3Id - Indicates the resource ID which is formatted
<instance_id>/<node_id>/<sql_type>/<pattern>. - Timeouts
Taurusdb
Mysql Sql Control Rule V3Timeouts Args
- instance
Id String - Specifies the ID of the TaurusDB MySQL instance. Changing this parameter will create a new resource.
- max
Concurrency Double - Specifies the maximum number of concurrent SQL statements. Value: a non-negative integer.
- node
Id String - Specifies the ID of the TaurusDB MySQL node. Changing this parameter will create a new resource.
- pattern String
- Specifies the concurrency control rule of SQL statements. A rule can consist of up to 128 keywords. The keywords are separated by tildes (~), for example, select~from~t1. The rule cannot contain backslashes (), commas (,), or double tildes (~~). It cannot end with tildes (~). Changing this parameter will create a new resource.
- sql
Type String - Specifies the SQL statement type. Value options: SELECT, UPDATE, DELETE. Changing this parameter will create a new resource.
- taurusdb
Mysql StringSql Control Rule V3Id - Indicates the resource ID which is formatted
<instance_id>/<node_id>/<sql_type>/<pattern>. - timeouts
Taurusdb
Mysql Sql Control Rule V3Timeouts
- instance
Id string - Specifies the ID of the TaurusDB MySQL instance. Changing this parameter will create a new resource.
- max
Concurrency number - Specifies the maximum number of concurrent SQL statements. Value: a non-negative integer.
- node
Id string - Specifies the ID of the TaurusDB MySQL node. Changing this parameter will create a new resource.
- pattern string
- Specifies the concurrency control rule of SQL statements. A rule can consist of up to 128 keywords. The keywords are separated by tildes (~), for example, select~from~t1. The rule cannot contain backslashes (), commas (,), or double tildes (~~). It cannot end with tildes (~). Changing this parameter will create a new resource.
- sql
Type string - Specifies the SQL statement type. Value options: SELECT, UPDATE, DELETE. Changing this parameter will create a new resource.
- taurusdb
Mysql stringSql Control Rule V3Id - Indicates the resource ID which is formatted
<instance_id>/<node_id>/<sql_type>/<pattern>. - timeouts
Taurusdb
Mysql Sql Control Rule V3Timeouts
- instance_
id str - Specifies the ID of the TaurusDB MySQL instance. Changing this parameter will create a new resource.
- max_
concurrency float - Specifies the maximum number of concurrent SQL statements. Value: a non-negative integer.
- node_
id str - Specifies the ID of the TaurusDB MySQL node. Changing this parameter will create a new resource.
- pattern str
- Specifies the concurrency control rule of SQL statements. A rule can consist of up to 128 keywords. The keywords are separated by tildes (~), for example, select~from~t1. The rule cannot contain backslashes (), commas (,), or double tildes (~~). It cannot end with tildes (~). Changing this parameter will create a new resource.
- sql_
type str - Specifies the SQL statement type. Value options: SELECT, UPDATE, DELETE. Changing this parameter will create a new resource.
- taurusdb_
mysql_ strsql_ control_ rule_ v3_ id - Indicates the resource ID which is formatted
<instance_id>/<node_id>/<sql_type>/<pattern>. - timeouts
Taurusdb
Mysql Sql Control Rule V3Timeouts Args
- instance
Id String - Specifies the ID of the TaurusDB MySQL instance. Changing this parameter will create a new resource.
- max
Concurrency Number - Specifies the maximum number of concurrent SQL statements. Value: a non-negative integer.
- node
Id String - Specifies the ID of the TaurusDB MySQL node. Changing this parameter will create a new resource.
- pattern String
- Specifies the concurrency control rule of SQL statements. A rule can consist of up to 128 keywords. The keywords are separated by tildes (~), for example, select~from~t1. The rule cannot contain backslashes (), commas (,), or double tildes (~~). It cannot end with tildes (~). Changing this parameter will create a new resource.
- sql
Type String - Specifies the SQL statement type. Value options: SELECT, UPDATE, DELETE. Changing this parameter will create a new resource.
- taurusdb
Mysql StringSql Control Rule V3Id - Indicates the resource ID which is formatted
<instance_id>/<node_id>/<sql_type>/<pattern>. - timeouts Property Map
Outputs
All input properties are implicitly available as output properties. Additionally, the TaurusdbMysqlSqlControlRuleV3 resource produces the following output properties:
Look up Existing TaurusdbMysqlSqlControlRuleV3 Resource
Get an existing TaurusdbMysqlSqlControlRuleV3 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?: TaurusdbMysqlSqlControlRuleV3State, opts?: CustomResourceOptions): TaurusdbMysqlSqlControlRuleV3@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
instance_id: Optional[str] = None,
max_concurrency: Optional[float] = None,
node_id: Optional[str] = None,
pattern: Optional[str] = None,
region: Optional[str] = None,
sql_type: Optional[str] = None,
taurusdb_mysql_sql_control_rule_v3_id: Optional[str] = None,
timeouts: Optional[TaurusdbMysqlSqlControlRuleV3TimeoutsArgs] = None) -> TaurusdbMysqlSqlControlRuleV3func GetTaurusdbMysqlSqlControlRuleV3(ctx *Context, name string, id IDInput, state *TaurusdbMysqlSqlControlRuleV3State, opts ...ResourceOption) (*TaurusdbMysqlSqlControlRuleV3, error)public static TaurusdbMysqlSqlControlRuleV3 Get(string name, Input<string> id, TaurusdbMysqlSqlControlRuleV3State? state, CustomResourceOptions? opts = null)public static TaurusdbMysqlSqlControlRuleV3 get(String name, Output<String> id, TaurusdbMysqlSqlControlRuleV3State state, CustomResourceOptions options)resources: _: type: opentelekomcloud:TaurusdbMysqlSqlControlRuleV3 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.
- Instance
Id string - Specifies the ID of the TaurusDB MySQL instance. Changing this parameter will create a new resource.
- Max
Concurrency double - Specifies the maximum number of concurrent SQL statements. Value: a non-negative integer.
- Node
Id string - Specifies the ID of the TaurusDB MySQL node. Changing this parameter will create a new resource.
- Pattern string
- Specifies the concurrency control rule of SQL statements. A rule can consist of up to 128 keywords. The keywords are separated by tildes (~), for example, select~from~t1. The rule cannot contain backslashes (), commas (,), or double tildes (~~). It cannot end with tildes (~). Changing this parameter will create a new resource.
- Region string
- Indicates the region in which to create the resource.
- Sql
Type string - Specifies the SQL statement type. Value options: SELECT, UPDATE, DELETE. Changing this parameter will create a new resource.
- Taurusdb
Mysql stringSql Control Rule V3Id - Indicates the resource ID which is formatted
<instance_id>/<node_id>/<sql_type>/<pattern>. - Timeouts
Taurusdb
Mysql Sql Control Rule V3Timeouts
- Instance
Id string - Specifies the ID of the TaurusDB MySQL instance. Changing this parameter will create a new resource.
- Max
Concurrency float64 - Specifies the maximum number of concurrent SQL statements. Value: a non-negative integer.
- Node
Id string - Specifies the ID of the TaurusDB MySQL node. Changing this parameter will create a new resource.
- Pattern string
- Specifies the concurrency control rule of SQL statements. A rule can consist of up to 128 keywords. The keywords are separated by tildes (~), for example, select~from~t1. The rule cannot contain backslashes (), commas (,), or double tildes (~~). It cannot end with tildes (~). Changing this parameter will create a new resource.
- Region string
- Indicates the region in which to create the resource.
- Sql
Type string - Specifies the SQL statement type. Value options: SELECT, UPDATE, DELETE. Changing this parameter will create a new resource.
- Taurusdb
Mysql stringSql Control Rule V3Id - Indicates the resource ID which is formatted
<instance_id>/<node_id>/<sql_type>/<pattern>. - Timeouts
Taurusdb
Mysql Sql Control Rule V3Timeouts Args
- instance
Id String - Specifies the ID of the TaurusDB MySQL instance. Changing this parameter will create a new resource.
- max
Concurrency Double - Specifies the maximum number of concurrent SQL statements. Value: a non-negative integer.
- node
Id String - Specifies the ID of the TaurusDB MySQL node. Changing this parameter will create a new resource.
- pattern String
- Specifies the concurrency control rule of SQL statements. A rule can consist of up to 128 keywords. The keywords are separated by tildes (~), for example, select~from~t1. The rule cannot contain backslashes (), commas (,), or double tildes (~~). It cannot end with tildes (~). Changing this parameter will create a new resource.
- region String
- Indicates the region in which to create the resource.
- sql
Type String - Specifies the SQL statement type. Value options: SELECT, UPDATE, DELETE. Changing this parameter will create a new resource.
- taurusdb
Mysql StringSql Control Rule V3Id - Indicates the resource ID which is formatted
<instance_id>/<node_id>/<sql_type>/<pattern>. - timeouts
Taurusdb
Mysql Sql Control Rule V3Timeouts
- instance
Id string - Specifies the ID of the TaurusDB MySQL instance. Changing this parameter will create a new resource.
- max
Concurrency number - Specifies the maximum number of concurrent SQL statements. Value: a non-negative integer.
- node
Id string - Specifies the ID of the TaurusDB MySQL node. Changing this parameter will create a new resource.
- pattern string
- Specifies the concurrency control rule of SQL statements. A rule can consist of up to 128 keywords. The keywords are separated by tildes (~), for example, select~from~t1. The rule cannot contain backslashes (), commas (,), or double tildes (~~). It cannot end with tildes (~). Changing this parameter will create a new resource.
- region string
- Indicates the region in which to create the resource.
- sql
Type string - Specifies the SQL statement type. Value options: SELECT, UPDATE, DELETE. Changing this parameter will create a new resource.
- taurusdb
Mysql stringSql Control Rule V3Id - Indicates the resource ID which is formatted
<instance_id>/<node_id>/<sql_type>/<pattern>. - timeouts
Taurusdb
Mysql Sql Control Rule V3Timeouts
- instance_
id str - Specifies the ID of the TaurusDB MySQL instance. Changing this parameter will create a new resource.
- max_
concurrency float - Specifies the maximum number of concurrent SQL statements. Value: a non-negative integer.
- node_
id str - Specifies the ID of the TaurusDB MySQL node. Changing this parameter will create a new resource.
- pattern str
- Specifies the concurrency control rule of SQL statements. A rule can consist of up to 128 keywords. The keywords are separated by tildes (~), for example, select~from~t1. The rule cannot contain backslashes (), commas (,), or double tildes (~~). It cannot end with tildes (~). Changing this parameter will create a new resource.
- region str
- Indicates the region in which to create the resource.
- sql_
type str - Specifies the SQL statement type. Value options: SELECT, UPDATE, DELETE. Changing this parameter will create a new resource.
- taurusdb_
mysql_ strsql_ control_ rule_ v3_ id - Indicates the resource ID which is formatted
<instance_id>/<node_id>/<sql_type>/<pattern>. - timeouts
Taurusdb
Mysql Sql Control Rule V3Timeouts Args
- instance
Id String - Specifies the ID of the TaurusDB MySQL instance. Changing this parameter will create a new resource.
- max
Concurrency Number - Specifies the maximum number of concurrent SQL statements. Value: a non-negative integer.
- node
Id String - Specifies the ID of the TaurusDB MySQL node. Changing this parameter will create a new resource.
- pattern String
- Specifies the concurrency control rule of SQL statements. A rule can consist of up to 128 keywords. The keywords are separated by tildes (~), for example, select~from~t1. The rule cannot contain backslashes (), commas (,), or double tildes (~~). It cannot end with tildes (~). Changing this parameter will create a new resource.
- region String
- Indicates the region in which to create the resource.
- sql
Type String - Specifies the SQL statement type. Value options: SELECT, UPDATE, DELETE. Changing this parameter will create a new resource.
- taurusdb
Mysql StringSql Control Rule V3Id - Indicates the resource ID which is formatted
<instance_id>/<node_id>/<sql_type>/<pattern>. - timeouts Property Map
Supporting Types
TaurusdbMysqlSqlControlRuleV3Timeouts, TaurusdbMysqlSqlControlRuleV3TimeoutsArgs
Import
The TaurusDB MySQL SQL concurrency control rule can be imported using the instance_id, node_id, sql_type and
pattern separated by slashes, e.g.
bash
$ pulumi import opentelekomcloud:index/taurusdbMysqlSqlControlRuleV3:TaurusdbMysqlSqlControlRuleV3 test <instance_id>/<node_id>/<sql_type>/<pattern>
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.
