Viewing docs for tencentcloud 1.83.23
published on Friday, Aug 14, 2026 by tencentcloudstack
published on Friday, Aug 14, 2026 by tencentcloudstack
Viewing docs for tencentcloud 1.83.23
published on Friday, Aug 14, 2026 by tencentcloudstack
published on Friday, Aug 14, 2026 by tencentcloudstack
Use this data source to query detailed information of DB Custom cluster nodes from TencentCloud DBDC product.
Example Usage
Query dbdc db custom cluster nodes by cluster_id
import * as pulumi from "@pulumi/pulumi";
import * as tencentcloud from "@pulumi/tencentcloud";
const example = tencentcloud.getDbdcDbCustomClusterNodes({
clusterId: "dbcc-nmtmsew8",
});
import pulumi
import pulumi_tencentcloud as tencentcloud
example = tencentcloud.get_dbdc_db_custom_cluster_nodes(cluster_id="dbcc-nmtmsew8")
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.GetDbdcDbCustomClusterNodes(ctx, &tencentcloud.GetDbdcDbCustomClusterNodesArgs{
ClusterId: "dbcc-nmtmsew8",
}, 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.GetDbdcDbCustomClusterNodes.Invoke(new()
{
ClusterId = "dbcc-nmtmsew8",
});
});
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.GetDbdcDbCustomClusterNodesArgs;
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.getDbdcDbCustomClusterNodes(GetDbdcDbCustomClusterNodesArgs.builder()
.clusterId("dbcc-nmtmsew8")
.build());
}
}
variables:
example:
fn::invoke:
function: tencentcloud:getDbdcDbCustomClusterNodes
arguments:
clusterId: dbcc-nmtmsew8
Example coming soon!
Query dbdc db custom cluster nodes by filters
import * as pulumi from "@pulumi/pulumi";
import * as tencentcloud from "@pulumi/tencentcloud";
const example = tencentcloud.getDbdcDbCustomClusterNodes({
clusterId: "dbcc-nmtmsew8",
filters: [{
name: "node-name",
values: ["tf-example"],
}],
});
import pulumi
import pulumi_tencentcloud as tencentcloud
example = tencentcloud.get_dbdc_db_custom_cluster_nodes(cluster_id="dbcc-nmtmsew8",
filters=[{
"name": "node-name",
"values": ["tf-example"],
}])
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.GetDbdcDbCustomClusterNodes(ctx, &tencentcloud.GetDbdcDbCustomClusterNodesArgs{
ClusterId: "dbcc-nmtmsew8",
Filters: []tencentcloud.GetDbdcDbCustomClusterNodesFilter{
{
Name: "node-name",
Values: []string{
"tf-example",
},
},
},
}, 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.GetDbdcDbCustomClusterNodes.Invoke(new()
{
ClusterId = "dbcc-nmtmsew8",
Filters = new[]
{
new Tencentcloud.Inputs.GetDbdcDbCustomClusterNodesFilterInputArgs
{
Name = "node-name",
Values = new[]
{
"tf-example",
},
},
},
});
});
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.GetDbdcDbCustomClusterNodesArgs;
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.getDbdcDbCustomClusterNodes(GetDbdcDbCustomClusterNodesArgs.builder()
.clusterId("dbcc-nmtmsew8")
.filters(GetDbdcDbCustomClusterNodesFilterArgs.builder()
.name("node-name")
.values("tf-example")
.build())
.build());
}
}
variables:
example:
fn::invoke:
function: tencentcloud:getDbdcDbCustomClusterNodes
arguments:
clusterId: dbcc-nmtmsew8
filters:
- name: node-name
values:
- tf-example
Example coming soon!
Using getDbdcDbCustomClusterNodes
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 getDbdcDbCustomClusterNodes(args: GetDbdcDbCustomClusterNodesArgs, opts?: InvokeOptions): Promise<GetDbdcDbCustomClusterNodesResult>
function getDbdcDbCustomClusterNodesOutput(args: GetDbdcDbCustomClusterNodesOutputArgs, opts?: InvokeOptions): Output<GetDbdcDbCustomClusterNodesResult>def get_dbdc_db_custom_cluster_nodes(cluster_id: Optional[str] = None,
filters: Optional[Sequence[GetDbdcDbCustomClusterNodesFilter]] = None,
id: Optional[str] = None,
result_output_file: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetDbdcDbCustomClusterNodesResult
def get_dbdc_db_custom_cluster_nodes_output(cluster_id: pulumi.Input[Optional[str]] = None,
filters: pulumi.Input[Optional[Sequence[pulumi.Input[GetDbdcDbCustomClusterNodesFilterArgs]]]] = None,
id: pulumi.Input[Optional[str]] = None,
result_output_file: pulumi.Input[Optional[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetDbdcDbCustomClusterNodesResult]func GetDbdcDbCustomClusterNodes(ctx *Context, args *GetDbdcDbCustomClusterNodesArgs, opts ...InvokeOption) (*GetDbdcDbCustomClusterNodesResult, error)
func GetDbdcDbCustomClusterNodesOutput(ctx *Context, args *GetDbdcDbCustomClusterNodesOutputArgs, opts ...InvokeOption) GetDbdcDbCustomClusterNodesResultOutput> Note: This function is named GetDbdcDbCustomClusterNodes in the Go SDK.
public static class GetDbdcDbCustomClusterNodes
{
public static Task<GetDbdcDbCustomClusterNodesResult> InvokeAsync(GetDbdcDbCustomClusterNodesArgs args, InvokeOptions? opts = null)
public static Output<GetDbdcDbCustomClusterNodesResult> Invoke(GetDbdcDbCustomClusterNodesInvokeArgs args, InvokeOptions? opts = null)
}public static CompletableFuture<GetDbdcDbCustomClusterNodesResult> getDbdcDbCustomClusterNodes(GetDbdcDbCustomClusterNodesArgs args, InvokeOptions options)
public static Output<GetDbdcDbCustomClusterNodesResult> getDbdcDbCustomClusterNodes(GetDbdcDbCustomClusterNodesArgs args, InvokeOptions options)
fn::invoke:
function: tencentcloud:index/getDbdcDbCustomClusterNodes:getDbdcDbCustomClusterNodes
arguments:
# arguments dictionarydata "tencentcloud_get_dbdc_db_custom_cluster_nodes" "name" {
# arguments
}The following arguments are supported:
- Cluster
Id string - DB Custom cluster ID.
- Filters
List<Get
Dbdc Db Custom Cluster Nodes Filter> - Filter conditions. Supported filter names: node-name (DB Custom node name).
- Id string
- Result
Output stringFile - Used to save results.
- Cluster
Id string - DB Custom cluster ID.
- Filters
[]Get
Dbdc Db Custom Cluster Nodes Filter - Filter conditions. Supported filter names: node-name (DB Custom node name).
- Id string
- Result
Output stringFile - Used to save results.
- cluster_
id string - DB Custom cluster ID.
- filters list(object)
- Filter conditions. Supported filter names: node-name (DB Custom node name).
- id string
- result_
output_ stringfile - Used to save results.
- cluster
Id String - DB Custom cluster ID.
- filters
List<Get
Dbdc Db Custom Cluster Nodes Filter> - Filter conditions. Supported filter names: node-name (DB Custom node name).
- id String
- result
Output StringFile - Used to save results.
- cluster
Id string - DB Custom cluster ID.
- filters
Get
Dbdc Db Custom Cluster Nodes Filter[] - Filter conditions. Supported filter names: node-name (DB Custom node name).
- id string
- result
Output stringFile - Used to save results.
- cluster_
id str - DB Custom cluster ID.
- filters
Sequence[Get
Dbdc Db Custom Cluster Nodes Filter] - Filter conditions. Supported filter names: node-name (DB Custom node name).
- id str
- result_
output_ strfile - Used to save results.
- cluster
Id String - DB Custom cluster ID.
- filters List<Property Map>
- Filter conditions. Supported filter names: node-name (DB Custom node name).
- id String
- result
Output StringFile - Used to save results.
getDbdcDbCustomClusterNodes Result
The following output properties are available:
- Cluster
Id string - Id string
- Node
Sets List<GetDbdc Db Custom Cluster Nodes Node Set> - DB Custom cluster node list.
- Filters
List<Get
Dbdc Db Custom Cluster Nodes Filter> - Result
Output stringFile
- Cluster
Id string - Id string
- Node
Sets []GetDbdc Db Custom Cluster Nodes Node Set - DB Custom cluster node list.
- Filters
[]Get
Dbdc Db Custom Cluster Nodes Filter - Result
Output stringFile
- cluster_
id string - id string
- node_
sets list(object) - DB Custom cluster node list.
- filters list(object)
- result_
output_ stringfile
- cluster
Id String - id String
- node
Sets List<GetDbdc Db Custom Cluster Nodes Node Set> - DB Custom cluster node list.
- filters
List<Get
Dbdc Db Custom Cluster Nodes Filter> - result
Output StringFile
- cluster
Id string - id string
- node
Sets GetDbdc Db Custom Cluster Nodes Node Set[] - DB Custom cluster node list.
- filters
Get
Dbdc Db Custom Cluster Nodes Filter[] - result
Output stringFile
- cluster_
id str - id str
- node_
sets Sequence[GetDbdc Db Custom Cluster Nodes Node Set] - DB Custom cluster node list.
- filters
Sequence[Get
Dbdc Db Custom Cluster Nodes Filter] - result_
output_ strfile
- cluster
Id String - id String
- node
Sets List<Property Map> - DB Custom cluster node list.
- filters List<Property Map>
- result
Output StringFile
Supporting Types
GetDbdcDbCustomClusterNodesFilter
GetDbdcDbCustomClusterNodesNodeSet
- Eni
Ip string - When the network mode is
cross_tenant_eni, the accessible IP address of the node. - Lan
Ip string - Node internal IP address.
- Network
Mode string - Network mode. Valid values:
privatelink(L4 network connectivity, opens SSH channel),cross_tenant_eni(L3 network connectivity, dual-network-card mode). - Node
Id string - Node ID.
- Node
Name string - Node name.
- Node
Type string - Node type.
- Ssh
Endpoint string - Node SSH access endpoint. Format: IP:Port.
- Status string
- Node instance status in the cluster.
- Zone string
- Node region.
- Eni
Ip string - When the network mode is
cross_tenant_eni, the accessible IP address of the node. - Lan
Ip string - Node internal IP address.
- Network
Mode string - Network mode. Valid values:
privatelink(L4 network connectivity, opens SSH channel),cross_tenant_eni(L3 network connectivity, dual-network-card mode). - Node
Id string - Node ID.
- Node
Name string - Node name.
- Node
Type string - Node type.
- Ssh
Endpoint string - Node SSH access endpoint. Format: IP:Port.
- Status string
- Node instance status in the cluster.
- Zone string
- Node region.
- eni_
ip string - When the network mode is
cross_tenant_eni, the accessible IP address of the node. - lan_
ip string - Node internal IP address.
- network_
mode string - Network mode. Valid values:
privatelink(L4 network connectivity, opens SSH channel),cross_tenant_eni(L3 network connectivity, dual-network-card mode). - node_
id string - Node ID.
- node_
name string - Node name.
- node_
type string - Node type.
- ssh_
endpoint string - Node SSH access endpoint. Format: IP:Port.
- status string
- Node instance status in the cluster.
- zone string
- Node region.
- eni
Ip String - When the network mode is
cross_tenant_eni, the accessible IP address of the node. - lan
Ip String - Node internal IP address.
- network
Mode String - Network mode. Valid values:
privatelink(L4 network connectivity, opens SSH channel),cross_tenant_eni(L3 network connectivity, dual-network-card mode). - node
Id String - Node ID.
- node
Name String - Node name.
- node
Type String - Node type.
- ssh
Endpoint String - Node SSH access endpoint. Format: IP:Port.
- status String
- Node instance status in the cluster.
- zone String
- Node region.
- eni
Ip string - When the network mode is
cross_tenant_eni, the accessible IP address of the node. - lan
Ip string - Node internal IP address.
- network
Mode string - Network mode. Valid values:
privatelink(L4 network connectivity, opens SSH channel),cross_tenant_eni(L3 network connectivity, dual-network-card mode). - node
Id string - Node ID.
- node
Name string - Node name.
- node
Type string - Node type.
- ssh
Endpoint string - Node SSH access endpoint. Format: IP:Port.
- status string
- Node instance status in the cluster.
- zone string
- Node region.
- eni_
ip str - When the network mode is
cross_tenant_eni, the accessible IP address of the node. - lan_
ip str - Node internal IP address.
- network_
mode str - Network mode. Valid values:
privatelink(L4 network connectivity, opens SSH channel),cross_tenant_eni(L3 network connectivity, dual-network-card mode). - node_
id str - Node ID.
- node_
name str - Node name.
- node_
type str - Node type.
- ssh_
endpoint str - Node SSH access endpoint. Format: IP:Port.
- status str
- Node instance status in the cluster.
- zone str
- Node region.
- eni
Ip String - When the network mode is
cross_tenant_eni, the accessible IP address of the node. - lan
Ip String - Node internal IP address.
- network
Mode String - Network mode. Valid values:
privatelink(L4 network connectivity, opens SSH channel),cross_tenant_eni(L3 network connectivity, dual-network-card mode). - node
Id String - Node ID.
- node
Name String - Node name.
- node
Type String - Node type.
- ssh
Endpoint String - Node SSH access endpoint. Format: IP:Port.
- status String
- Node instance status in the cluster.
- zone String
- Node region.
Package Details
- Repository
- tencentcloud tencentcloudstack/terraform-provider-tencentcloud
- License
- Notes
- This Pulumi package is based on the
tencentcloudTerraform Provider.
Viewing docs for tencentcloud 1.83.23
published on Friday, Aug 14, 2026 by tencentcloudstack
published on Friday, Aug 14, 2026 by tencentcloudstack