Viewing docs for tencentcloud 1.83.7
published on Tuesday, Jun 30, 2026 by tencentcloudstack
published on Tuesday, Jun 30, 2026 by tencentcloudstack
Viewing docs for tencentcloud 1.83.7
published on Tuesday, Jun 30, 2026 by tencentcloudstack
published on Tuesday, Jun 30, 2026 by tencentcloudstack
Use this data source to query DB Custom node list from TencentCloud DBDC product.
Example Usage
Query all dbdc db custom nodes
import * as pulumi from "@pulumi/pulumi";
import * as tencentcloud from "@pulumi/tencentcloud";
const example = tencentcloud.getDbdcDbCustomNodes({});
import pulumi
import pulumi_tencentcloud as tencentcloud
example = tencentcloud.get_dbdc_db_custom_nodes()
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.GetDbdcDbCustomNodes(ctx, &tencentcloud.GetDbdcDbCustomNodesArgs{}, 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.GetDbdcDbCustomNodes.Invoke();
});
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.GetDbdcDbCustomNodesArgs;
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.getDbdcDbCustomNodes(GetDbdcDbCustomNodesArgs.builder()
.build());
}
}
variables:
example:
fn::invoke:
function: tencentcloud:getDbdcDbCustomNodes
arguments: {}
Example coming soon!
Query dbdc db custom nodes by node_ids
import * as pulumi from "@pulumi/pulumi";
import * as tencentcloud from "@pulumi/tencentcloud";
const example = tencentcloud.getDbdcDbCustomNodes({
nodeIds: [
"dbcn-wamuy21e",
"dbcn-hjuz19sx",
],
});
import pulumi
import pulumi_tencentcloud as tencentcloud
example = tencentcloud.get_dbdc_db_custom_nodes(node_ids=[
"dbcn-wamuy21e",
"dbcn-hjuz19sx",
])
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.GetDbdcDbCustomNodes(ctx, &tencentcloud.GetDbdcDbCustomNodesArgs{
NodeIds: []string{
"dbcn-wamuy21e",
"dbcn-hjuz19sx",
},
}, 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.GetDbdcDbCustomNodes.Invoke(new()
{
NodeIds = new[]
{
"dbcn-wamuy21e",
"dbcn-hjuz19sx",
},
});
});
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.GetDbdcDbCustomNodesArgs;
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.getDbdcDbCustomNodes(GetDbdcDbCustomNodesArgs.builder()
.nodeIds(
"dbcn-wamuy21e",
"dbcn-hjuz19sx")
.build());
}
}
variables:
example:
fn::invoke:
function: tencentcloud:getDbdcDbCustomNodes
arguments:
nodeIds:
- dbcn-wamuy21e
- dbcn-hjuz19sx
Example coming soon!
Query dbdc db custom nodes by filters
import * as pulumi from "@pulumi/pulumi";
import * as tencentcloud from "@pulumi/tencentcloud";
const example = tencentcloud.getDbdcDbCustomNodes({
filters: [
{
name: "cluster-id",
values: ["dbcc-nmtmsew8"],
},
{
name: "status",
values: ["Running"],
},
],
});
import pulumi
import pulumi_tencentcloud as tencentcloud
example = tencentcloud.get_dbdc_db_custom_nodes(filters=[
{
"name": "cluster-id",
"values": ["dbcc-nmtmsew8"],
},
{
"name": "status",
"values": ["Running"],
},
])
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.GetDbdcDbCustomNodes(ctx, &tencentcloud.GetDbdcDbCustomNodesArgs{
Filters: []tencentcloud.GetDbdcDbCustomNodesFilter{
{
Name: "cluster-id",
Values: []string{
"dbcc-nmtmsew8",
},
},
{
Name: "status",
Values: []string{
"Running",
},
},
},
}, 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.GetDbdcDbCustomNodes.Invoke(new()
{
Filters = new[]
{
new Tencentcloud.Inputs.GetDbdcDbCustomNodesFilterInputArgs
{
Name = "cluster-id",
Values = new[]
{
"dbcc-nmtmsew8",
},
},
new Tencentcloud.Inputs.GetDbdcDbCustomNodesFilterInputArgs
{
Name = "status",
Values = new[]
{
"Running",
},
},
},
});
});
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.GetDbdcDbCustomNodesArgs;
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.getDbdcDbCustomNodes(GetDbdcDbCustomNodesArgs.builder()
.filters(
GetDbdcDbCustomNodesFilterArgs.builder()
.name("cluster-id")
.values("dbcc-nmtmsew8")
.build(),
GetDbdcDbCustomNodesFilterArgs.builder()
.name("status")
.values("Running")
.build())
.build());
}
}
variables:
example:
fn::invoke:
function: tencentcloud:getDbdcDbCustomNodes
arguments:
filters:
- name: cluster-id
values:
- dbcc-nmtmsew8
- name: status
values:
- Running
Example coming soon!
Query dbdc db custom nodes by tags
import * as pulumi from "@pulumi/pulumi";
import * as tencentcloud from "@pulumi/tencentcloud";
const example = tencentcloud.getDbdcDbCustomNodes({
tags: [{
key: "env",
value: "production",
}],
});
import pulumi
import pulumi_tencentcloud as tencentcloud
example = tencentcloud.get_dbdc_db_custom_nodes(tags=[{
"key": "env",
"value": "production",
}])
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.GetDbdcDbCustomNodes(ctx, &tencentcloud.GetDbdcDbCustomNodesArgs{
Tags: []tencentcloud.GetDbdcDbCustomNodesTag{
{
Key: "env",
Value: "production",
},
},
}, 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.GetDbdcDbCustomNodes.Invoke(new()
{
Tags = new[]
{
new Tencentcloud.Inputs.GetDbdcDbCustomNodesTagInputArgs
{
Key = "env",
Value = "production",
},
},
});
});
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.GetDbdcDbCustomNodesArgs;
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.getDbdcDbCustomNodes(GetDbdcDbCustomNodesArgs.builder()
.tags(GetDbdcDbCustomNodesTagArgs.builder()
.key("env")
.value("production")
.build())
.build());
}
}
variables:
example:
fn::invoke:
function: tencentcloud:getDbdcDbCustomNodes
arguments:
tags:
- key: env
value: production
Example coming soon!
Using getDbdcDbCustomNodes
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 getDbdcDbCustomNodes(args: GetDbdcDbCustomNodesArgs, opts?: InvokeOptions): Promise<GetDbdcDbCustomNodesResult>
function getDbdcDbCustomNodesOutput(args: GetDbdcDbCustomNodesOutputArgs, opts?: InvokeOptions): Output<GetDbdcDbCustomNodesResult>def get_dbdc_db_custom_nodes(filters: Optional[Sequence[GetDbdcDbCustomNodesFilter]] = None,
id: Optional[str] = None,
node_ids: Optional[Sequence[str]] = None,
result_output_file: Optional[str] = None,
tags: Optional[Sequence[GetDbdcDbCustomNodesTag]] = None,
opts: Optional[InvokeOptions] = None) -> GetDbdcDbCustomNodesResult
def get_dbdc_db_custom_nodes_output(filters: pulumi.Input[Optional[Sequence[pulumi.Input[GetDbdcDbCustomNodesFilterArgs]]]] = 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,
tags: pulumi.Input[Optional[Sequence[pulumi.Input[GetDbdcDbCustomNodesTagArgs]]]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetDbdcDbCustomNodesResult]func GetDbdcDbCustomNodes(ctx *Context, args *GetDbdcDbCustomNodesArgs, opts ...InvokeOption) (*GetDbdcDbCustomNodesResult, error)
func GetDbdcDbCustomNodesOutput(ctx *Context, args *GetDbdcDbCustomNodesOutputArgs, opts ...InvokeOption) GetDbdcDbCustomNodesResultOutput> Note: This function is named GetDbdcDbCustomNodes in the Go SDK.
public static class GetDbdcDbCustomNodes
{
public static Task<GetDbdcDbCustomNodesResult> InvokeAsync(GetDbdcDbCustomNodesArgs args, InvokeOptions? opts = null)
public static Output<GetDbdcDbCustomNodesResult> Invoke(GetDbdcDbCustomNodesInvokeArgs args, InvokeOptions? opts = null)
}public static CompletableFuture<GetDbdcDbCustomNodesResult> getDbdcDbCustomNodes(GetDbdcDbCustomNodesArgs args, InvokeOptions options)
public static Output<GetDbdcDbCustomNodesResult> getDbdcDbCustomNodes(GetDbdcDbCustomNodesArgs args, InvokeOptions options)
fn::invoke:
function: tencentcloud:index/getDbdcDbCustomNodes:getDbdcDbCustomNodes
arguments:
# arguments dictionarydata "tencentcloud_getdbdcdbcustomnodes" "name" {
# arguments
}The following arguments are supported:
- Filters
List<Get
Dbdc Db Custom Nodes Filter> - Filter conditions. Supported filter names: cluster-id, node-name (exact match), status (Creating, Running, Isolating, Isolated, Activating, Destroying), zone.
- Id string
- Node
Ids List<string> - Query by one or more Node IDs. Maximum 100 IDs per request.
- Result
Output stringFile - Used to save results.
-
List<Get
Dbdc Db Custom Nodes Tag> - Filter by tag Key and Value.
- Filters
[]Get
Dbdc Db Custom Nodes Filter - Filter conditions. Supported filter names: cluster-id, node-name (exact match), status (Creating, Running, Isolating, Isolated, Activating, Destroying), zone.
- Id string
- Node
Ids []string - Query by one or more Node IDs. Maximum 100 IDs per request.
- Result
Output stringFile - Used to save results.
-
[]Get
Dbdc Db Custom Nodes Tag - Filter by tag Key and Value.
- filters list(object)
- Filter conditions. Supported filter names: cluster-id, node-name (exact match), status (Creating, Running, Isolating, Isolated, Activating, Destroying), zone.
- id string
- node_
ids list(string) - Query by one or more Node IDs. Maximum 100 IDs per request.
- result_
output_ stringfile - Used to save results.
- list(object)
- Filter by tag Key and Value.
- filters
List<Get
Dbdc Db Custom Nodes Filter> - Filter conditions. Supported filter names: cluster-id, node-name (exact match), status (Creating, Running, Isolating, Isolated, Activating, Destroying), zone.
- id String
- node
Ids List<String> - Query by one or more Node IDs. Maximum 100 IDs per request.
- result
Output StringFile - Used to save results.
-
List<Get
Dbdc Db Custom Nodes Tag> - Filter by tag Key and Value.
- filters
Get
Dbdc Db Custom Nodes Filter[] - Filter conditions. Supported filter names: cluster-id, node-name (exact match), status (Creating, Running, Isolating, Isolated, Activating, Destroying), zone.
- id string
- node
Ids string[] - Query by one or more Node IDs. Maximum 100 IDs per request.
- result
Output stringFile - Used to save results.
-
Get
Dbdc Db Custom Nodes Tag[] - Filter by tag Key and Value.
- filters
Sequence[Get
Dbdc Db Custom Nodes Filter] - Filter conditions. Supported filter names: cluster-id, node-name (exact match), status (Creating, Running, Isolating, Isolated, Activating, Destroying), zone.
- id str
- node_
ids Sequence[str] - Query by one or more Node IDs. Maximum 100 IDs per request.
- result_
output_ strfile - Used to save results.
-
Sequence[Get
Dbdc Db Custom Nodes Tag] - Filter by tag Key and Value.
- filters List<Property Map>
- Filter conditions. Supported filter names: cluster-id, node-name (exact match), status (Creating, Running, Isolating, Isolated, Activating, Destroying), zone.
- id String
- node
Ids List<String> - Query by one or more Node IDs. Maximum 100 IDs per request.
- result
Output StringFile - Used to save results.
- List<Property Map>
- Filter by tag Key and Value.
getDbdcDbCustomNodes Result
The following output properties are available:
- Id string
- Node
Sets List<GetDbdc Db Custom Nodes Node Set> - DB Custom node list.
- Filters
List<Get
Dbdc Db Custom Nodes Filter> - Node
Ids List<string> - Result
Output stringFile -
List<Get
Dbdc Db Custom Nodes Tag> - Node tag information. Note: This field may return null, indicating that no valid value can be obtained.
- Id string
- Node
Sets []GetDbdc Db Custom Nodes Node Set - DB Custom node list.
- Filters
[]Get
Dbdc Db Custom Nodes Filter - Node
Ids []string - Result
Output stringFile -
[]Get
Dbdc Db Custom Nodes Tag - Node tag information. Note: This field may return null, indicating that no valid value can be obtained.
- id string
- node_
sets list(object) - DB Custom node list.
- filters list(object)
- node_
ids list(string) - result_
output_ stringfile - list(object)
- Node tag information. Note: This field may return null, indicating that no valid value can be obtained.
- id String
- node
Sets List<GetDbdc Db Custom Nodes Node Set> - DB Custom node list.
- filters
List<Get
Dbdc Db Custom Nodes Filter> - node
Ids List<String> - result
Output StringFile -
List<Get
Dbdc Db Custom Nodes Tag> - Node tag information. Note: This field may return null, indicating that no valid value can be obtained.
- id string
- node
Sets GetDbdc Db Custom Nodes Node Set[] - DB Custom node list.
- filters
Get
Dbdc Db Custom Nodes Filter[] - node
Ids string[] - result
Output stringFile -
Get
Dbdc Db Custom Nodes Tag[] - Node tag information. Note: This field may return null, indicating that no valid value can be obtained.
- id str
- node_
sets Sequence[GetDbdc Db Custom Nodes Node Set] - DB Custom node list.
- filters
Sequence[Get
Dbdc Db Custom Nodes Filter] - node_
ids Sequence[str] - result_
output_ strfile -
Sequence[Get
Dbdc Db Custom Nodes Tag] - Node tag information. Note: This field may return null, indicating that no valid value can be obtained.
- id String
- node
Sets List<Property Map> - DB Custom node list.
- filters List<Property Map>
- node
Ids List<String> - result
Output StringFile - List<Property Map>
- Node tag information. Note: This field may return null, indicating that no valid value can be obtained.
Supporting Types
GetDbdcDbCustomNodesFilter
GetDbdcDbCustomNodesNodeSet
- Auto
Renew double - Auto-renew flag. 1=auto renew, 0=no auto renew.
- Charge
Type string - Payment type.
- Cluster
Id string - Cluster ID the node belongs to.
- Cpu double
- Node CPU size in cores.
- Created
Time string - Node creation time.
- Data
Disks List<GetDbdc Db Custom Nodes Node Set Data Disk> - Data disk list. Note: This field may return null, indicating that no valid value can be obtained.
- Expire
Time string - Node expiration time.
- Host
Ip string - Host IP.
- Image
Id string - Node OS image ID.
- Isolated
Time string - Node isolation time.
- Lan
Ip string - Internal network IP address of the node.
- Memory double
- Node memory size in GiB.
- Node
Id string - Node ID.
- Node
Name string - Node name.
- Node
Type string - Node type/spec.
- Os
Name string - Node OS name.
- Rack
Id string - Rack ID.
- Ssh
Endpoint string - SSH endpoint for accessing the node, format: IP:Port.
- Status string
- Node status.
- Subnet
Id string - Subnet ID the node SSH endpoint belongs to.
- Switch
Id string - Switch ID.
- System
Disks List<GetDbdc Db Custom Nodes Node Set System Disk> - System disk info. Note: This field may return null, indicating that no valid value can be obtained.
-
List<Get
Dbdc Db Custom Nodes Node Set Tag> - Filter by tag Key and Value.
- Vpc
Id string - VPC ID the node SSH endpoint belongs to.
- Zone string
- Availability zone the node belongs to.
- Auto
Renew float64 - Auto-renew flag. 1=auto renew, 0=no auto renew.
- Charge
Type string - Payment type.
- Cluster
Id string - Cluster ID the node belongs to.
- Cpu float64
- Node CPU size in cores.
- Created
Time string - Node creation time.
- Data
Disks []GetDbdc Db Custom Nodes Node Set Data Disk - Data disk list. Note: This field may return null, indicating that no valid value can be obtained.
- Expire
Time string - Node expiration time.
- Host
Ip string - Host IP.
- Image
Id string - Node OS image ID.
- Isolated
Time string - Node isolation time.
- Lan
Ip string - Internal network IP address of the node.
- Memory float64
- Node memory size in GiB.
- Node
Id string - Node ID.
- Node
Name string - Node name.
- Node
Type string - Node type/spec.
- Os
Name string - Node OS name.
- Rack
Id string - Rack ID.
- Ssh
Endpoint string - SSH endpoint for accessing the node, format: IP:Port.
- Status string
- Node status.
- Subnet
Id string - Subnet ID the node SSH endpoint belongs to.
- Switch
Id string - Switch ID.
- System
Disks []GetDbdc Db Custom Nodes Node Set System Disk - System disk info. Note: This field may return null, indicating that no valid value can be obtained.
-
[]Get
Dbdc Db Custom Nodes Node Set Tag - Filter by tag Key and Value.
- Vpc
Id string - VPC ID the node SSH endpoint belongs to.
- Zone string
- Availability zone the node belongs to.
- auto_
renew number - Auto-renew flag. 1=auto renew, 0=no auto renew.
- charge_
type string - Payment type.
- cluster_
id string - Cluster ID the node belongs to.
- cpu number
- Node CPU size in cores.
- created_
time string - Node creation time.
- data_
disks list(object) - Data disk list. Note: This field may return null, indicating that no valid value can be obtained.
- expire_
time string - Node expiration time.
- host_
ip string - Host IP.
- image_
id string - Node OS image ID.
- isolated_
time string - Node isolation time.
- lan_
ip string - Internal network IP address of the node.
- memory number
- Node memory size in GiB.
- node_
id string - Node ID.
- node_
name string - Node name.
- node_
type string - Node type/spec.
- os_
name string - Node OS name.
- rack_
id string - Rack ID.
- ssh_
endpoint string - SSH endpoint for accessing the node, format: IP:Port.
- status string
- Node status.
- subnet_
id string - Subnet ID the node SSH endpoint belongs to.
- switch_
id string - Switch ID.
- system_
disks list(object) - System disk info. Note: This field may return null, indicating that no valid value can be obtained.
- list(object)
- Filter by tag Key and Value.
- vpc_
id string - VPC ID the node SSH endpoint belongs to.
- zone string
- Availability zone the node belongs to.
- auto
Renew Double - Auto-renew flag. 1=auto renew, 0=no auto renew.
- charge
Type String - Payment type.
- cluster
Id String - Cluster ID the node belongs to.
- cpu Double
- Node CPU size in cores.
- created
Time String - Node creation time.
- data
Disks List<GetDbdc Db Custom Nodes Node Set Data Disk> - Data disk list. Note: This field may return null, indicating that no valid value can be obtained.
- expire
Time String - Node expiration time.
- host
Ip String - Host IP.
- image
Id String - Node OS image ID.
- isolated
Time String - Node isolation time.
- lan
Ip String - Internal network IP address of the node.
- memory Double
- Node memory size in GiB.
- node
Id String - Node ID.
- node
Name String - Node name.
- node
Type String - Node type/spec.
- os
Name String - Node OS name.
- rack
Id String - Rack ID.
- ssh
Endpoint String - SSH endpoint for accessing the node, format: IP:Port.
- status String
- Node status.
- subnet
Id String - Subnet ID the node SSH endpoint belongs to.
- switch
Id String - Switch ID.
- system
Disks List<GetDbdc Db Custom Nodes Node Set System Disk> - System disk info. Note: This field may return null, indicating that no valid value can be obtained.
-
List<Get
Dbdc Db Custom Nodes Node Set Tag> - Filter by tag Key and Value.
- vpc
Id String - VPC ID the node SSH endpoint belongs to.
- zone String
- Availability zone the node belongs to.
- auto
Renew number - Auto-renew flag. 1=auto renew, 0=no auto renew.
- charge
Type string - Payment type.
- cluster
Id string - Cluster ID the node belongs to.
- cpu number
- Node CPU size in cores.
- created
Time string - Node creation time.
- data
Disks GetDbdc Db Custom Nodes Node Set Data Disk[] - Data disk list. Note: This field may return null, indicating that no valid value can be obtained.
- expire
Time string - Node expiration time.
- host
Ip string - Host IP.
- image
Id string - Node OS image ID.
- isolated
Time string - Node isolation time.
- lan
Ip string - Internal network IP address of the node.
- memory number
- Node memory size in GiB.
- node
Id string - Node ID.
- node
Name string - Node name.
- node
Type string - Node type/spec.
- os
Name string - Node OS name.
- rack
Id string - Rack ID.
- ssh
Endpoint string - SSH endpoint for accessing the node, format: IP:Port.
- status string
- Node status.
- subnet
Id string - Subnet ID the node SSH endpoint belongs to.
- switch
Id string - Switch ID.
- system
Disks GetDbdc Db Custom Nodes Node Set System Disk[] - System disk info. Note: This field may return null, indicating that no valid value can be obtained.
-
Get
Dbdc Db Custom Nodes Node Set Tag[] - Filter by tag Key and Value.
- vpc
Id string - VPC ID the node SSH endpoint belongs to.
- zone string
- Availability zone the node belongs to.
- auto_
renew float - Auto-renew flag. 1=auto renew, 0=no auto renew.
- charge_
type str - Payment type.
- cluster_
id str - Cluster ID the node belongs to.
- cpu float
- Node CPU size in cores.
- created_
time str - Node creation time.
- data_
disks Sequence[GetDbdc Db Custom Nodes Node Set Data Disk] - Data disk list. Note: This field may return null, indicating that no valid value can be obtained.
- expire_
time str - Node expiration time.
- host_
ip str - Host IP.
- image_
id str - Node OS image ID.
- isolated_
time str - Node isolation time.
- lan_
ip str - Internal network IP address of the node.
- memory float
- Node memory size in GiB.
- node_
id str - Node ID.
- node_
name str - Node name.
- node_
type str - Node type/spec.
- os_
name str - Node OS name.
- rack_
id str - Rack ID.
- ssh_
endpoint str - SSH endpoint for accessing the node, format: IP:Port.
- status str
- Node status.
- subnet_
id str - Subnet ID the node SSH endpoint belongs to.
- switch_
id str - Switch ID.
- system_
disks Sequence[GetDbdc Db Custom Nodes Node Set System Disk] - System disk info. Note: This field may return null, indicating that no valid value can be obtained.
-
Sequence[Get
Dbdc Db Custom Nodes Node Set Tag] - Filter by tag Key and Value.
- vpc_
id str - VPC ID the node SSH endpoint belongs to.
- zone str
- Availability zone the node belongs to.
- auto
Renew Number - Auto-renew flag. 1=auto renew, 0=no auto renew.
- charge
Type String - Payment type.
- cluster
Id String - Cluster ID the node belongs to.
- cpu Number
- Node CPU size in cores.
- created
Time String - Node creation time.
- data
Disks List<Property Map> - Data disk list. Note: This field may return null, indicating that no valid value can be obtained.
- expire
Time String - Node expiration time.
- host
Ip String - Host IP.
- image
Id String - Node OS image ID.
- isolated
Time String - Node isolation time.
- lan
Ip String - Internal network IP address of the node.
- memory Number
- Node memory size in GiB.
- node
Id String - Node ID.
- node
Name String - Node name.
- node
Type String - Node type/spec.
- os
Name String - Node OS name.
- rack
Id String - Rack ID.
- ssh
Endpoint String - SSH endpoint for accessing the node, format: IP:Port.
- status String
- Node status.
- subnet
Id String - Subnet ID the node SSH endpoint belongs to.
- switch
Id String - Switch ID.
- system
Disks List<Property Map> - System disk info. Note: This field may return null, indicating that no valid value can be obtained.
- List<Property Map>
- Filter by tag Key and Value.
- vpc
Id String - VPC ID the node SSH endpoint belongs to.
- zone String
- Availability zone the node belongs to.
GetDbdcDbCustomNodesNodeSetDataDisk
GetDbdcDbCustomNodesNodeSetSystemDisk
GetDbdcDbCustomNodesNodeSetTag
GetDbdcDbCustomNodesTag
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.7
published on Tuesday, Jun 30, 2026 by tencentcloudstack
published on Tuesday, Jun 30, 2026 by tencentcloudstack