1. Packages
  2. Packages
  3. Tencentcloud Provider
  4. API Docs
  5. getDbdcDbCustomClusterNodeConfigList
Viewing docs for tencentcloud 1.83.23
published on Friday, Aug 14, 2026 by tencentcloudstack
Viewing docs for tencentcloud 1.83.23
published on Friday, Aug 14, 2026 by tencentcloudstack

    Use this data source to query the Kubernetes scheduling configuration (labels and taints) of nodes inside a DB Custom cluster from TencentCloud DBDC product.

    Example Usage

    Query dbdc db custom cluster node config list by cluster id and node ids

    import * as pulumi from "@pulumi/pulumi";
    import * as tencentcloud from "@pulumi/tencentcloud";
    
    const example = tencentcloud.getDbdcDbCustomClusterNodeConfigList({
        clusterId: "dbcc-b2arjlee",
        nodeIds: ["dbcn-vvkg2xls"],
    });
    
    import pulumi
    import pulumi_tencentcloud as tencentcloud
    
    example = tencentcloud.get_dbdc_db_custom_cluster_node_config_list(cluster_id="dbcc-b2arjlee",
        node_ids=["dbcn-vvkg2xls"])
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-terraform-provider/sdks/go/tencentcloud/tencentcloud"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := tencentcloud.GetDbdcDbCustomClusterNodeConfigList(ctx, &tencentcloud.GetDbdcDbCustomClusterNodeConfigListArgs{
    			ClusterId: "dbcc-b2arjlee",
    			NodeIds: []string{
    				"dbcn-vvkg2xls",
    			},
    		}, nil)
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Tencentcloud = Pulumi.Tencentcloud;
    
    return await Deployment.RunAsync(() => 
    {
        var example = Tencentcloud.GetDbdcDbCustomClusterNodeConfigList.Invoke(new()
        {
            ClusterId = "dbcc-b2arjlee",
            NodeIds = new[]
            {
                "dbcn-vvkg2xls",
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.tencentcloud.TencentcloudFunctions;
    import com.pulumi.tencentcloud.inputs.GetDbdcDbCustomClusterNodeConfigListArgs;
    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 example = TencentcloudFunctions.getDbdcDbCustomClusterNodeConfigList(GetDbdcDbCustomClusterNodeConfigListArgs.builder()
                .clusterId("dbcc-b2arjlee")
                .nodeIds("dbcn-vvkg2xls")
                .build());
    
        }
    }
    
    variables:
      example:
        fn::invoke:
          function: tencentcloud:getDbdcDbCustomClusterNodeConfigList
          arguments:
            clusterId: dbcc-b2arjlee
            nodeIds:
              - dbcn-vvkg2xls
    
    Example coming soon!
    

    Using getDbdcDbCustomClusterNodeConfigList

    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 getDbdcDbCustomClusterNodeConfigList(args: GetDbdcDbCustomClusterNodeConfigListArgs, opts?: InvokeOptions): Promise<GetDbdcDbCustomClusterNodeConfigListResult>
    function getDbdcDbCustomClusterNodeConfigListOutput(args: GetDbdcDbCustomClusterNodeConfigListOutputArgs, opts?: InvokeOptions): Output<GetDbdcDbCustomClusterNodeConfigListResult>
    def get_dbdc_db_custom_cluster_node_config_list(cluster_id: Optional[str] = None,
                                                    id: Optional[str] = None,
                                                    node_ids: Optional[Sequence[str]] = None,
                                                    result_output_file: Optional[str] = None,
                                                    opts: Optional[InvokeOptions] = None) -> GetDbdcDbCustomClusterNodeConfigListResult
    def get_dbdc_db_custom_cluster_node_config_list_output(cluster_id: pulumi.Input[Optional[str]] = None,
                                                    id: pulumi.Input[Optional[str]] = None,
                                                    node_ids: pulumi.Input[Optional[Sequence[pulumi.Input[str]]]] = None,
                                                    result_output_file: pulumi.Input[Optional[str]] = None,
                                                    opts: Optional[InvokeOptions] = None) -> Output[GetDbdcDbCustomClusterNodeConfigListResult]
    func GetDbdcDbCustomClusterNodeConfigList(ctx *Context, args *GetDbdcDbCustomClusterNodeConfigListArgs, opts ...InvokeOption) (*GetDbdcDbCustomClusterNodeConfigListResult, error)
    func GetDbdcDbCustomClusterNodeConfigListOutput(ctx *Context, args *GetDbdcDbCustomClusterNodeConfigListOutputArgs, opts ...InvokeOption) GetDbdcDbCustomClusterNodeConfigListResultOutput

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

    public static class GetDbdcDbCustomClusterNodeConfigList 
    {
        public static Task<GetDbdcDbCustomClusterNodeConfigListResult> InvokeAsync(GetDbdcDbCustomClusterNodeConfigListArgs args, InvokeOptions? opts = null)
        public static Output<GetDbdcDbCustomClusterNodeConfigListResult> Invoke(GetDbdcDbCustomClusterNodeConfigListInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetDbdcDbCustomClusterNodeConfigListResult> getDbdcDbCustomClusterNodeConfigList(GetDbdcDbCustomClusterNodeConfigListArgs args, InvokeOptions options)
    public static Output<GetDbdcDbCustomClusterNodeConfigListResult> getDbdcDbCustomClusterNodeConfigList(GetDbdcDbCustomClusterNodeConfigListArgs args, InvokeOptions options)
    
    fn::invoke:
      function: tencentcloud:index/getDbdcDbCustomClusterNodeConfigList:getDbdcDbCustomClusterNodeConfigList
      arguments:
        # arguments dictionary
    data "tencentcloud_get_dbdc_db_custom_cluster_node_config_list" "name" {
        # arguments
    }

    The following arguments are supported:

    ClusterId string
    DB Custom cluster ID.
    NodeIds List<string>
    Specifies the NodeId list to query. Up to 100 NodeIds per request.
    Id string
    ResultOutputFile string
    Used to save results.
    ClusterId string
    DB Custom cluster ID.
    NodeIds []string
    Specifies the NodeId list to query. Up to 100 NodeIds per request.
    Id string
    ResultOutputFile string
    Used to save results.
    cluster_id string
    DB Custom cluster ID.
    node_ids list(string)
    Specifies the NodeId list to query. Up to 100 NodeIds per request.
    id string
    result_output_file string
    Used to save results.
    clusterId String
    DB Custom cluster ID.
    nodeIds List<String>
    Specifies the NodeId list to query. Up to 100 NodeIds per request.
    id String
    resultOutputFile String
    Used to save results.
    clusterId string
    DB Custom cluster ID.
    nodeIds string[]
    Specifies the NodeId list to query. Up to 100 NodeIds per request.
    id string
    resultOutputFile string
    Used to save results.
    cluster_id str
    DB Custom cluster ID.
    node_ids Sequence[str]
    Specifies the NodeId list to query. Up to 100 NodeIds per request.
    id str
    result_output_file str
    Used to save results.
    clusterId String
    DB Custom cluster ID.
    nodeIds List<String>
    Specifies the NodeId list to query. Up to 100 NodeIds per request.
    id String
    resultOutputFile String
    Used to save results.

    getDbdcDbCustomClusterNodeConfigList Result

    The following output properties are available:

    ClusterId string
    Id string
    NodeIds List<string>
    NodeSets List<GetDbdcDbCustomClusterNodeConfigListNodeSet>
    DB Custom cluster node config list.
    ResultOutputFile string
    ClusterId string
    Id string
    NodeIds []string
    NodeSets []GetDbdcDbCustomClusterNodeConfigListNodeSet
    DB Custom cluster node config list.
    ResultOutputFile string
    cluster_id string
    id string
    node_ids list(string)
    node_sets list(object)
    DB Custom cluster node config list.
    result_output_file string
    clusterId String
    id String
    nodeIds List<String>
    nodeSets List<GetDbdcDbCustomClusterNodeConfigListNodeSet>
    DB Custom cluster node config list.
    resultOutputFile String
    clusterId string
    id string
    nodeIds string[]
    nodeSets GetDbdcDbCustomClusterNodeConfigListNodeSet[]
    DB Custom cluster node config list.
    resultOutputFile string
    clusterId String
    id String
    nodeIds List<String>
    nodeSets List<Property Map>
    DB Custom cluster node config list.
    resultOutputFile String

    Supporting Types

    GetDbdcDbCustomClusterNodeConfigListNodeSet

    labels list(object)
    Node labels.
    node_id string
    Node ID.
    taints list(object)
    Node taints.
    labels List<Property Map>
    Node labels.
    nodeId String
    Node ID.
    taints List<Property Map>
    Node taints.

    GetDbdcDbCustomClusterNodeConfigListNodeSetLabel

    Key string
    Taint key.
    Value string
    Taint value.
    Key string
    Taint key.
    Value string
    Taint value.
    key string
    Taint key.
    value string
    Taint value.
    key String
    Taint key.
    value String
    Taint value.
    key string
    Taint key.
    value string
    Taint value.
    key str
    Taint key.
    value str
    Taint value.
    key String
    Taint key.
    value String
    Taint value.

    GetDbdcDbCustomClusterNodeConfigListNodeSetTaint

    Effect string
    Taint effect. Valid values: NoSchedule, PreferNoSchedule, NoExecute.
    Key string
    Taint key.
    Value string
    Taint value.
    Effect string
    Taint effect. Valid values: NoSchedule, PreferNoSchedule, NoExecute.
    Key string
    Taint key.
    Value string
    Taint value.
    effect string
    Taint effect. Valid values: NoSchedule, PreferNoSchedule, NoExecute.
    key string
    Taint key.
    value string
    Taint value.
    effect String
    Taint effect. Valid values: NoSchedule, PreferNoSchedule, NoExecute.
    key String
    Taint key.
    value String
    Taint value.
    effect string
    Taint effect. Valid values: NoSchedule, PreferNoSchedule, NoExecute.
    key string
    Taint key.
    value string
    Taint value.
    effect str
    Taint effect. Valid values: NoSchedule, PreferNoSchedule, NoExecute.
    key str
    Taint key.
    value str
    Taint value.
    effect String
    Taint effect. Valid values: NoSchedule, PreferNoSchedule, NoExecute.
    key String
    Taint key.
    value String
    Taint value.

    Package Details

    Repository
    tencentcloud tencentcloudstack/terraform-provider-tencentcloud
    License
    Notes
    This Pulumi package is based on the tencentcloud Terraform Provider.
    Viewing docs for tencentcloud 1.83.23
    published on Friday, Aug 14, 2026 by tencentcloudstack

      Try Pulumi Cloud free.
      Your team will thank you.

      Start free trial