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

opentelekomcloud.getTaurusdbMysqlProxiesV3

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

    Use this data source to get the list of TaurusDB MySQL proxies.

    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 test = opentelekomcloud.getTaurusdbMysqlProxiesV3({
        instanceId: instanceId,
    });
    
    import pulumi
    import pulumi_opentelekomcloud as opentelekomcloud
    
    config = pulumi.Config()
    instance_id = config.require_object("instanceId")
    test = opentelekomcloud.get_taurusdb_mysql_proxies_v3(instance_id=instance_id)
    
    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")
    		_, err := opentelekomcloud.GetTaurusdbMysqlProxiesV3(ctx, &opentelekomcloud.GetTaurusdbMysqlProxiesV3Args{
    			InstanceId: instanceId,
    		}, nil)
    		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 test = Opentelekomcloud.GetTaurusdbMysqlProxiesV3.Invoke(new()
        {
            InstanceId = instanceId,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.opentelekomcloud.OpentelekomcloudFunctions;
    import com.pulumi.opentelekomcloud.inputs.GetTaurusdbMysqlProxiesV3Args;
    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 test = OpentelekomcloudFunctions.getTaurusdbMysqlProxiesV3(GetTaurusdbMysqlProxiesV3Args.builder()
                .instanceId(instanceId)
                .build());
    
        }
    }
    
    configuration:
      instanceId:
        type: dynamic
    variables:
      test:
        fn::invoke:
          function: opentelekomcloud:getTaurusdbMysqlProxiesV3
          arguments:
            instanceId: ${instanceId}
    

    Using getTaurusdbMysqlProxiesV3

    Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.

    function getTaurusdbMysqlProxiesV3(args: GetTaurusdbMysqlProxiesV3Args, opts?: InvokeOptions): Promise<GetTaurusdbMysqlProxiesV3Result>
    function getTaurusdbMysqlProxiesV3Output(args: GetTaurusdbMysqlProxiesV3OutputArgs, opts?: InvokeOptions): Output<GetTaurusdbMysqlProxiesV3Result>
    def get_taurusdb_mysql_proxies_v3(id: Optional[str] = None,
                                      instance_id: Optional[str] = None,
                                      opts: Optional[InvokeOptions] = None) -> GetTaurusdbMysqlProxiesV3Result
    def get_taurusdb_mysql_proxies_v3_output(id: Optional[pulumi.Input[str]] = None,
                                      instance_id: Optional[pulumi.Input[str]] = None,
                                      opts: Optional[InvokeOptions] = None) -> Output[GetTaurusdbMysqlProxiesV3Result]
    func GetTaurusdbMysqlProxiesV3(ctx *Context, args *GetTaurusdbMysqlProxiesV3Args, opts ...InvokeOption) (*GetTaurusdbMysqlProxiesV3Result, error)
    func GetTaurusdbMysqlProxiesV3Output(ctx *Context, args *GetTaurusdbMysqlProxiesV3OutputArgs, opts ...InvokeOption) GetTaurusdbMysqlProxiesV3ResultOutput

    > Note: This function is named GetTaurusdbMysqlProxiesV3 in the Go SDK.

    public static class GetTaurusdbMysqlProxiesV3 
    {
        public static Task<GetTaurusdbMysqlProxiesV3Result> InvokeAsync(GetTaurusdbMysqlProxiesV3Args args, InvokeOptions? opts = null)
        public static Output<GetTaurusdbMysqlProxiesV3Result> Invoke(GetTaurusdbMysqlProxiesV3InvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetTaurusdbMysqlProxiesV3Result> getTaurusdbMysqlProxiesV3(GetTaurusdbMysqlProxiesV3Args args, InvokeOptions options)
    public static Output<GetTaurusdbMysqlProxiesV3Result> getTaurusdbMysqlProxiesV3(GetTaurusdbMysqlProxiesV3Args args, InvokeOptions options)
    
    fn::invoke:
      function: opentelekomcloud:index/getTaurusdbMysqlProxiesV3:getTaurusdbMysqlProxiesV3
      arguments:
        # arguments dictionary

    The following arguments are supported:

    InstanceId string
    Specifies the ID of the TaurusDB MySQL instance.
    Id string
    Indicates the node ID.
    InstanceId string
    Specifies the ID of the TaurusDB MySQL instance.
    Id string
    Indicates the node ID.
    instanceId String
    Specifies the ID of the TaurusDB MySQL instance.
    id String
    Indicates the node ID.
    instanceId string
    Specifies the ID of the TaurusDB MySQL instance.
    id string
    Indicates the node ID.
    instance_id str
    Specifies the ID of the TaurusDB MySQL instance.
    id str
    Indicates the node ID.
    instanceId String
    Specifies the ID of the TaurusDB MySQL instance.
    id String
    Indicates the node ID.

    getTaurusdbMysqlProxiesV3 Result

    The following output properties are available:

    Id string
    Indicates the node ID.
    InstanceId string
    ProxyLists List<GetTaurusdbMysqlProxiesV3ProxyList>
    Indicates the list of proxies. The proxy_list structure is documented below.
    Region string
    The region in which to query the resource.
    Id string
    Indicates the node ID.
    InstanceId string
    ProxyLists []GetTaurusdbMysqlProxiesV3ProxyList
    Indicates the list of proxies. The proxy_list structure is documented below.
    Region string
    The region in which to query the resource.
    id String
    Indicates the node ID.
    instanceId String
    proxyLists List<GetTaurusdbMysqlProxiesV3ProxyList>
    Indicates the list of proxies. The proxy_list structure is documented below.
    region String
    The region in which to query the resource.
    id string
    Indicates the node ID.
    instanceId string
    proxyLists GetTaurusdbMysqlProxiesV3ProxyList[]
    Indicates the list of proxies. The proxy_list structure is documented below.
    region string
    The region in which to query the resource.
    id str
    Indicates the node ID.
    instance_id str
    proxy_lists Sequence[GetTaurusdbMysqlProxiesV3ProxyList]
    Indicates the list of proxies. The proxy_list structure is documented below.
    region str
    The region in which to query the resource.
    id String
    Indicates the node ID.
    instanceId String
    proxyLists List<Property Map>
    Indicates the list of proxies. The proxy_list structure is documented below.
    region String
    The region in which to query the resource.

    Supporting Types

    GetTaurusdbMysqlProxiesV3ProxyList

    Address string
    Indicates the address of the proxy.
    DelayThresholdInSeconds double
    Indicates the delay threshold in seconds.
    ElbVip string
    Indicates the virtual IP address in ELB mode.
    Flavor string
    Indicates the flavor of the proxy.
    Id string
    Indicates the node ID.
    MasterNodeWeights List<GetTaurusdbMysqlProxiesV3ProxyListMasterNodeWeight>
    Indicates the read weight of the master node. The master_node_weight structure is documented below.
    Mode string
    Indicates the proxy mode.
    Name string
    Indicates the node name.
    NodeNum double
    Indicates the number of proxy nodes.
    Nodes List<GetTaurusdbMysqlProxiesV3ProxyListNode>
    Indicates the node information of the proxy. The nodes structure is documented below.
    Port double
    Indicates the proxy port.
    Ram string
    Indicates the memory size of the proxy.
    ReadonlyNodesWeights List<GetTaurusdbMysqlProxiesV3ProxyListReadonlyNodesWeight>
    Indicates the read weight of the read-only node. The readonly_nodes_weight structure is documented below.
    Status string
    Indicates the proxy node status.
    TransactionSplit string
    Indicates whether the proxy transaction splitting is enabled.
    Vcpus string
    Indicates the number of vCPUs of the proxy.
    Address string
    Indicates the address of the proxy.
    DelayThresholdInSeconds float64
    Indicates the delay threshold in seconds.
    ElbVip string
    Indicates the virtual IP address in ELB mode.
    Flavor string
    Indicates the flavor of the proxy.
    Id string
    Indicates the node ID.
    MasterNodeWeights []GetTaurusdbMysqlProxiesV3ProxyListMasterNodeWeight
    Indicates the read weight of the master node. The master_node_weight structure is documented below.
    Mode string
    Indicates the proxy mode.
    Name string
    Indicates the node name.
    NodeNum float64
    Indicates the number of proxy nodes.
    Nodes []GetTaurusdbMysqlProxiesV3ProxyListNode
    Indicates the node information of the proxy. The nodes structure is documented below.
    Port float64
    Indicates the proxy port.
    Ram string
    Indicates the memory size of the proxy.
    ReadonlyNodesWeights []GetTaurusdbMysqlProxiesV3ProxyListReadonlyNodesWeight
    Indicates the read weight of the read-only node. The readonly_nodes_weight structure is documented below.
    Status string
    Indicates the proxy node status.
    TransactionSplit string
    Indicates whether the proxy transaction splitting is enabled.
    Vcpus string
    Indicates the number of vCPUs of the proxy.
    address String
    Indicates the address of the proxy.
    delayThresholdInSeconds Double
    Indicates the delay threshold in seconds.
    elbVip String
    Indicates the virtual IP address in ELB mode.
    flavor String
    Indicates the flavor of the proxy.
    id String
    Indicates the node ID.
    masterNodeWeights List<GetTaurusdbMysqlProxiesV3ProxyListMasterNodeWeight>
    Indicates the read weight of the master node. The master_node_weight structure is documented below.
    mode String
    Indicates the proxy mode.
    name String
    Indicates the node name.
    nodeNum Double
    Indicates the number of proxy nodes.
    nodes List<GetTaurusdbMysqlProxiesV3ProxyListNode>
    Indicates the node information of the proxy. The nodes structure is documented below.
    port Double
    Indicates the proxy port.
    ram String
    Indicates the memory size of the proxy.
    readonlyNodesWeights List<GetTaurusdbMysqlProxiesV3ProxyListReadonlyNodesWeight>
    Indicates the read weight of the read-only node. The readonly_nodes_weight structure is documented below.
    status String
    Indicates the proxy node status.
    transactionSplit String
    Indicates whether the proxy transaction splitting is enabled.
    vcpus String
    Indicates the number of vCPUs of the proxy.
    address string
    Indicates the address of the proxy.
    delayThresholdInSeconds number
    Indicates the delay threshold in seconds.
    elbVip string
    Indicates the virtual IP address in ELB mode.
    flavor string
    Indicates the flavor of the proxy.
    id string
    Indicates the node ID.
    masterNodeWeights GetTaurusdbMysqlProxiesV3ProxyListMasterNodeWeight[]
    Indicates the read weight of the master node. The master_node_weight structure is documented below.
    mode string
    Indicates the proxy mode.
    name string
    Indicates the node name.
    nodeNum number
    Indicates the number of proxy nodes.
    nodes GetTaurusdbMysqlProxiesV3ProxyListNode[]
    Indicates the node information of the proxy. The nodes structure is documented below.
    port number
    Indicates the proxy port.
    ram string
    Indicates the memory size of the proxy.
    readonlyNodesWeights GetTaurusdbMysqlProxiesV3ProxyListReadonlyNodesWeight[]
    Indicates the read weight of the read-only node. The readonly_nodes_weight structure is documented below.
    status string
    Indicates the proxy node status.
    transactionSplit string
    Indicates whether the proxy transaction splitting is enabled.
    vcpus string
    Indicates the number of vCPUs of the proxy.
    address str
    Indicates the address of the proxy.
    delay_threshold_in_seconds float
    Indicates the delay threshold in seconds.
    elb_vip str
    Indicates the virtual IP address in ELB mode.
    flavor str
    Indicates the flavor of the proxy.
    id str
    Indicates the node ID.
    master_node_weights Sequence[GetTaurusdbMysqlProxiesV3ProxyListMasterNodeWeight]
    Indicates the read weight of the master node. The master_node_weight structure is documented below.
    mode str
    Indicates the proxy mode.
    name str
    Indicates the node name.
    node_num float
    Indicates the number of proxy nodes.
    nodes Sequence[GetTaurusdbMysqlProxiesV3ProxyListNode]
    Indicates the node information of the proxy. The nodes structure is documented below.
    port float
    Indicates the proxy port.
    ram str
    Indicates the memory size of the proxy.
    readonly_nodes_weights Sequence[GetTaurusdbMysqlProxiesV3ProxyListReadonlyNodesWeight]
    Indicates the read weight of the read-only node. The readonly_nodes_weight structure is documented below.
    status str
    Indicates the proxy node status.
    transaction_split str
    Indicates whether the proxy transaction splitting is enabled.
    vcpus str
    Indicates the number of vCPUs of the proxy.
    address String
    Indicates the address of the proxy.
    delayThresholdInSeconds Number
    Indicates the delay threshold in seconds.
    elbVip String
    Indicates the virtual IP address in ELB mode.
    flavor String
    Indicates the flavor of the proxy.
    id String
    Indicates the node ID.
    masterNodeWeights List<Property Map>
    Indicates the read weight of the master node. The master_node_weight structure is documented below.
    mode String
    Indicates the proxy mode.
    name String
    Indicates the node name.
    nodeNum Number
    Indicates the number of proxy nodes.
    nodes List<Property Map>
    Indicates the node information of the proxy. The nodes structure is documented below.
    port Number
    Indicates the proxy port.
    ram String
    Indicates the memory size of the proxy.
    readonlyNodesWeights List<Property Map>
    Indicates the read weight of the read-only node. The readonly_nodes_weight structure is documented below.
    status String
    Indicates the proxy node status.
    transactionSplit String
    Indicates whether the proxy transaction splitting is enabled.
    vcpus String
    Indicates the number of vCPUs of the proxy.

    GetTaurusdbMysqlProxiesV3ProxyListMasterNodeWeight

    Id string
    Indicates the node ID.
    Name string
    Indicates the node name.
    Weight double
    Indicates the weight assigned to the node.
    Id string
    Indicates the node ID.
    Name string
    Indicates the node name.
    Weight float64
    Indicates the weight assigned to the node.
    id String
    Indicates the node ID.
    name String
    Indicates the node name.
    weight Double
    Indicates the weight assigned to the node.
    id string
    Indicates the node ID.
    name string
    Indicates the node name.
    weight number
    Indicates the weight assigned to the node.
    id str
    Indicates the node ID.
    name str
    Indicates the node name.
    weight float
    Indicates the weight assigned to the node.
    id String
    Indicates the node ID.
    name String
    Indicates the node name.
    weight Number
    Indicates the weight assigned to the node.

    GetTaurusdbMysqlProxiesV3ProxyListNode

    AzCode string
    Indicates the proxy node AZ.
    FrozenFlag double
    Indicates whether the proxy node is frozen.
    Id string
    Indicates the node ID.
    Name string
    Indicates the node name.
    Role string
    Indicates the proxy node role.
    Status string
    Indicates the proxy node status.
    AzCode string
    Indicates the proxy node AZ.
    FrozenFlag float64
    Indicates whether the proxy node is frozen.
    Id string
    Indicates the node ID.
    Name string
    Indicates the node name.
    Role string
    Indicates the proxy node role.
    Status string
    Indicates the proxy node status.
    azCode String
    Indicates the proxy node AZ.
    frozenFlag Double
    Indicates whether the proxy node is frozen.
    id String
    Indicates the node ID.
    name String
    Indicates the node name.
    role String
    Indicates the proxy node role.
    status String
    Indicates the proxy node status.
    azCode string
    Indicates the proxy node AZ.
    frozenFlag number
    Indicates whether the proxy node is frozen.
    id string
    Indicates the node ID.
    name string
    Indicates the node name.
    role string
    Indicates the proxy node role.
    status string
    Indicates the proxy node status.
    az_code str
    Indicates the proxy node AZ.
    frozen_flag float
    Indicates whether the proxy node is frozen.
    id str
    Indicates the node ID.
    name str
    Indicates the node name.
    role str
    Indicates the proxy node role.
    status str
    Indicates the proxy node status.
    azCode String
    Indicates the proxy node AZ.
    frozenFlag Number
    Indicates whether the proxy node is frozen.
    id String
    Indicates the node ID.
    name String
    Indicates the node name.
    role String
    Indicates the proxy node role.
    status String
    Indicates the proxy node status.

    GetTaurusdbMysqlProxiesV3ProxyListReadonlyNodesWeight

    Id string
    Indicates the node ID.
    Name string
    Indicates the node name.
    Weight double
    Indicates the weight assigned to the node.
    Id string
    Indicates the node ID.
    Name string
    Indicates the node name.
    Weight float64
    Indicates the weight assigned to the node.
    id String
    Indicates the node ID.
    name String
    Indicates the node name.
    weight Double
    Indicates the weight assigned to the node.
    id string
    Indicates the node ID.
    name string
    Indicates the node name.
    weight number
    Indicates the weight assigned to the node.
    id str
    Indicates the node ID.
    name str
    Indicates the node name.
    weight float
    Indicates the weight assigned to the node.
    id String
    Indicates the node ID.
    name String
    Indicates the node name.
    weight Number
    Indicates the weight assigned to the node.

    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