Viewing docs for tencentcloud 1.83.2
published on Monday, Jun 15, 2026 by tencentcloudstack
published on Monday, Jun 15, 2026 by tencentcloudstack
Viewing docs for tencentcloud 1.83.2
published on Monday, Jun 15, 2026 by tencentcloudstack
published on Monday, Jun 15, 2026 by tencentcloudstack
Use this data source to query detailed information of MongoDB (mongodb) DB instance node property
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as tencentcloud from "@pulumi/tencentcloud";
const example = tencentcloud.getMongodbDbInstanceNodeProperty({
instanceId: "cmgo-5aqo4yf7",
});
import pulumi
import pulumi_tencentcloud as tencentcloud
example = tencentcloud.get_mongodb_db_instance_node_property(instance_id="cmgo-5aqo4yf7")
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.GetMongodbDbInstanceNodeProperty(ctx, &tencentcloud.GetMongodbDbInstanceNodePropertyArgs{
InstanceId: "cmgo-5aqo4yf7",
}, 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.GetMongodbDbInstanceNodeProperty.Invoke(new()
{
InstanceId = "cmgo-5aqo4yf7",
});
});
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.GetMongodbDbInstanceNodePropertyArgs;
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.getMongodbDbInstanceNodeProperty(GetMongodbDbInstanceNodePropertyArgs.builder()
.instanceId("cmgo-5aqo4yf7")
.build());
}
}
variables:
example:
fn::invoke:
function: tencentcloud:getMongodbDbInstanceNodeProperty
arguments:
instanceId: cmgo-5aqo4yf7
Example coming soon!
Example Usage with filters
import * as pulumi from "@pulumi/pulumi";
import * as tencentcloud from "@pulumi/tencentcloud";
const example = tencentcloud.getMongodbDbInstanceNodeProperty({
instanceId: "cmgo-5aqo4yf7",
roles: [
"PRIMARY",
"SECONDARY",
],
onlyHidden: false,
priority: 1,
votes: 1,
tags: [{
tagKey: "env",
tagValue: "prod",
}],
});
import pulumi
import pulumi_tencentcloud as tencentcloud
example = tencentcloud.get_mongodb_db_instance_node_property(instance_id="cmgo-5aqo4yf7",
roles=[
"PRIMARY",
"SECONDARY",
],
only_hidden=False,
priority=1,
votes=1,
tags=[{
"tag_key": "env",
"tag_value": "prod",
}])
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.GetMongodbDbInstanceNodeProperty(ctx, &tencentcloud.GetMongodbDbInstanceNodePropertyArgs{
InstanceId: "cmgo-5aqo4yf7",
Roles: []string{
"PRIMARY",
"SECONDARY",
},
OnlyHidden: pulumi.BoolRef(false),
Priority: pulumi.Float64Ref(1),
Votes: pulumi.Float64Ref(1),
Tags: []tencentcloud.GetMongodbDbInstanceNodePropertyTag{
{
TagKey: pulumi.StringRef("env"),
TagValue: pulumi.StringRef("prod"),
},
},
}, 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.GetMongodbDbInstanceNodeProperty.Invoke(new()
{
InstanceId = "cmgo-5aqo4yf7",
Roles = new[]
{
"PRIMARY",
"SECONDARY",
},
OnlyHidden = false,
Priority = 1,
Votes = 1,
Tags = new[]
{
new Tencentcloud.Inputs.GetMongodbDbInstanceNodePropertyTagInputArgs
{
TagKey = "env",
TagValue = "prod",
},
},
});
});
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.GetMongodbDbInstanceNodePropertyArgs;
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.getMongodbDbInstanceNodeProperty(GetMongodbDbInstanceNodePropertyArgs.builder()
.instanceId("cmgo-5aqo4yf7")
.roles(
"PRIMARY",
"SECONDARY")
.onlyHidden(false)
.priority(1)
.votes(1)
.tags(GetMongodbDbInstanceNodePropertyTagArgs.builder()
.tagKey("env")
.tagValue("prod")
.build())
.build());
}
}
variables:
example:
fn::invoke:
function: tencentcloud:getMongodbDbInstanceNodeProperty
arguments:
instanceId: cmgo-5aqo4yf7
roles:
- PRIMARY
- SECONDARY
onlyHidden: false
priority: 1
votes: 1
tags:
- tagKey: env
tagValue: prod
Example coming soon!
Using getMongodbDbInstanceNodeProperty
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 getMongodbDbInstanceNodeProperty(args: GetMongodbDbInstanceNodePropertyArgs, opts?: InvokeOptions): Promise<GetMongodbDbInstanceNodePropertyResult>
function getMongodbDbInstanceNodePropertyOutput(args: GetMongodbDbInstanceNodePropertyOutputArgs, opts?: InvokeOptions): Output<GetMongodbDbInstanceNodePropertyResult>def get_mongodb_db_instance_node_property(id: Optional[str] = None,
instance_id: Optional[str] = None,
node_ids: Optional[Sequence[str]] = None,
only_hidden: Optional[bool] = None,
priority: Optional[float] = None,
result_output_file: Optional[str] = None,
roles: Optional[Sequence[str]] = None,
tags: Optional[Sequence[GetMongodbDbInstanceNodePropertyTag]] = None,
votes: Optional[float] = None,
opts: Optional[InvokeOptions] = None) -> GetMongodbDbInstanceNodePropertyResult
def get_mongodb_db_instance_node_property_output(id: pulumi.Input[Optional[str]] = None,
instance_id: pulumi.Input[Optional[str]] = None,
node_ids: pulumi.Input[Optional[Sequence[pulumi.Input[str]]]] = None,
only_hidden: pulumi.Input[Optional[bool]] = None,
priority: pulumi.Input[Optional[float]] = None,
result_output_file: pulumi.Input[Optional[str]] = None,
roles: pulumi.Input[Optional[Sequence[pulumi.Input[str]]]] = None,
tags: pulumi.Input[Optional[Sequence[pulumi.Input[GetMongodbDbInstanceNodePropertyTagArgs]]]] = None,
votes: pulumi.Input[Optional[float]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetMongodbDbInstanceNodePropertyResult]func GetMongodbDbInstanceNodeProperty(ctx *Context, args *GetMongodbDbInstanceNodePropertyArgs, opts ...InvokeOption) (*GetMongodbDbInstanceNodePropertyResult, error)
func GetMongodbDbInstanceNodePropertyOutput(ctx *Context, args *GetMongodbDbInstanceNodePropertyOutputArgs, opts ...InvokeOption) GetMongodbDbInstanceNodePropertyResultOutput> Note: This function is named GetMongodbDbInstanceNodeProperty in the Go SDK.
public static class GetMongodbDbInstanceNodeProperty
{
public static Task<GetMongodbDbInstanceNodePropertyResult> InvokeAsync(GetMongodbDbInstanceNodePropertyArgs args, InvokeOptions? opts = null)
public static Output<GetMongodbDbInstanceNodePropertyResult> Invoke(GetMongodbDbInstanceNodePropertyInvokeArgs args, InvokeOptions? opts = null)
}public static CompletableFuture<GetMongodbDbInstanceNodePropertyResult> getMongodbDbInstanceNodeProperty(GetMongodbDbInstanceNodePropertyArgs args, InvokeOptions options)
public static Output<GetMongodbDbInstanceNodePropertyResult> getMongodbDbInstanceNodeProperty(GetMongodbDbInstanceNodePropertyArgs args, InvokeOptions options)
fn::invoke:
function: tencentcloud:index/getMongodbDbInstanceNodeProperty:getMongodbDbInstanceNodeProperty
arguments:
# arguments dictionarydata "tencentcloud_getmongodbdbinstancenodeproperty" "name" {
# arguments
}The following arguments are supported:
- Instance
Id string - Instance ID.
- Id string
- Node
Ids List<string> - Node ID list.
- bool
- Whether to query only Hidden nodes. Default is false.
- Priority double
- Node priority. Value range: [0, 100].
- Result
Output stringFile - Used to save results.
- Roles List<string>
- Node role list. Valid values: PRIMARY, SECONDARY, READONLY, ARBITER.
-
List<Get
Mongodb Db Instance Node Property Tag> - Node tags for filtering.
- Votes double
- Node votes. 1: has votes; 0: no votes.
- Instance
Id string - Instance ID.
- Id string
- Node
Ids []string - Node ID list.
- bool
- Whether to query only Hidden nodes. Default is false.
- Priority float64
- Node priority. Value range: [0, 100].
- Result
Output stringFile - Used to save results.
- Roles []string
- Node role list. Valid values: PRIMARY, SECONDARY, READONLY, ARBITER.
-
[]Get
Mongodb Db Instance Node Property Tag - Node tags for filtering.
- Votes float64
- Node votes. 1: has votes; 0: no votes.
- instance_
id string - Instance ID.
- id string
- node_
ids list(string) - Node ID list.
- bool
- Whether to query only Hidden nodes. Default is false.
- priority number
- Node priority. Value range: [0, 100].
- result_
output_ stringfile - Used to save results.
- roles list(string)
- Node role list. Valid values: PRIMARY, SECONDARY, READONLY, ARBITER.
- list(object)
- Node tags for filtering.
- votes number
- Node votes. 1: has votes; 0: no votes.
- instance
Id String - Instance ID.
- id String
- node
Ids List<String> - Node ID list.
- Boolean
- Whether to query only Hidden nodes. Default is false.
- priority Double
- Node priority. Value range: [0, 100].
- result
Output StringFile - Used to save results.
- roles List<String>
- Node role list. Valid values: PRIMARY, SECONDARY, READONLY, ARBITER.
-
List<Get
Mongodb Db Instance Node Property Tag> - Node tags for filtering.
- votes Double
- Node votes. 1: has votes; 0: no votes.
- instance
Id string - Instance ID.
- id string
- node
Ids string[] - Node ID list.
- boolean
- Whether to query only Hidden nodes. Default is false.
- priority number
- Node priority. Value range: [0, 100].
- result
Output stringFile - Used to save results.
- roles string[]
- Node role list. Valid values: PRIMARY, SECONDARY, READONLY, ARBITER.
-
Get
Mongodb Db Instance Node Property Tag[] - Node tags for filtering.
- votes number
- Node votes. 1: has votes; 0: no votes.
- instance_
id str - Instance ID.
- id str
- node_
ids Sequence[str] - Node ID list.
- bool
- Whether to query only Hidden nodes. Default is false.
- priority float
- Node priority. Value range: [0, 100].
- result_
output_ strfile - Used to save results.
- roles Sequence[str]
- Node role list. Valid values: PRIMARY, SECONDARY, READONLY, ARBITER.
-
Sequence[Get
Mongodb Db Instance Node Property Tag] - Node tags for filtering.
- votes float
- Node votes. 1: has votes; 0: no votes.
- instance
Id String - Instance ID.
- id String
- node
Ids List<String> - Node ID list.
- Boolean
- Whether to query only Hidden nodes. Default is false.
- priority Number
- Node priority. Value range: [0, 100].
- result
Output StringFile - Used to save results.
- roles List<String>
- Node role list. Valid values: PRIMARY, SECONDARY, READONLY, ARBITER.
- List<Property Map>
- Node tags for filtering.
- votes Number
- Node votes. 1: has votes; 0: no votes.
getMongodbDbInstanceNodeProperty Result
The following output properties are available:
- Id string
- Instance
Id string - Mongos
List<Get
Mongodb Db Instance Node Property Mongo> - Mongos node property list.
- Replicate
Sets List<GetMongodb Db Instance Node Property Replicate Set> - Replica set node info list.
- Node
Ids List<string> - bool
- Priority double
- Node priority. Value range: [0, 100].
- Result
Output stringFile - Roles List<string>
-
List<Get
Mongodb Db Instance Node Property Tag> - Node tags.
- Votes double
- Node votes. 1: has votes; 0: no votes.
- Id string
- Instance
Id string - Mongos
[]Get
Mongodb Db Instance Node Property Mongo - Mongos node property list.
- Replicate
Sets []GetMongodb Db Instance Node Property Replicate Set - Replica set node info list.
- Node
Ids []string - bool
- Priority float64
- Node priority. Value range: [0, 100].
- Result
Output stringFile - Roles []string
-
[]Get
Mongodb Db Instance Node Property Tag - Node tags.
- Votes float64
- Node votes. 1: has votes; 0: no votes.
- id string
- instance_
id string - mongos list(object)
- Mongos node property list.
- replicate_
sets list(object) - Replica set node info list.
- node_
ids list(string) - bool
- priority number
- Node priority. Value range: [0, 100].
- result_
output_ stringfile - roles list(string)
- list(object)
- Node tags.
- votes number
- Node votes. 1: has votes; 0: no votes.
- id String
- instance
Id String - mongos
List<Get
Mongodb Db Instance Node Property Mongo> - Mongos node property list.
- replicate
Sets List<GetMongodb Db Instance Node Property Replicate Set> - Replica set node info list.
- node
Ids List<String> - Boolean
- priority Double
- Node priority. Value range: [0, 100].
- result
Output StringFile - roles List<String>
-
List<Get
Mongodb Db Instance Node Property Tag> - Node tags.
- votes Double
- Node votes. 1: has votes; 0: no votes.
- id string
- instance
Id string - mongos
Get
Mongodb Db Instance Node Property Mongo[] - Mongos node property list.
- replicate
Sets GetMongodb Db Instance Node Property Replicate Set[] - Replica set node info list.
- node
Ids string[] - boolean
- priority number
- Node priority. Value range: [0, 100].
- result
Output stringFile - roles string[]
-
Get
Mongodb Db Instance Node Property Tag[] - Node tags.
- votes number
- Node votes. 1: has votes; 0: no votes.
- id str
- instance_
id str - mongos
Sequence[Get
Mongodb Db Instance Node Property Mongo] - Mongos node property list.
- replicate_
sets Sequence[GetMongodb Db Instance Node Property Replicate Set] - Replica set node info list.
- node_
ids Sequence[str] - bool
- priority float
- Node priority. Value range: [0, 100].
- result_
output_ strfile - roles Sequence[str]
-
Sequence[Get
Mongodb Db Instance Node Property Tag] - Node tags.
- votes float
- Node votes. 1: has votes; 0: no votes.
- id String
- instance
Id String - mongos List<Property Map>
- Mongos node property list.
- replicate
Sets List<Property Map> - Replica set node info list.
- node
Ids List<String> - Boolean
- priority Number
- Node priority. Value range: [0, 100].
- result
Output StringFile - roles List<String>
- List<Property Map>
- Node tags.
- votes Number
- Node votes. 1: has votes; 0: no votes.
Supporting Types
GetMongodbDbInstanceNodePropertyMongo
- Address string
- Node access address.
- bool
- Whether the node is a Hidden node.
- Node
Name string - Node name.
- Priority double
- Node priority. Value range: [0, 100].
- Replicate
Set stringId - Replica set ID.
- Role string
- Node role. Valid values: PRIMARY, SECONDARY, READONLY, ARBITER.
- Slave
Delay double - Primary-secondary sync delay in seconds.
- Status string
- Node status. Valid values: NORMAL, STARTUP, STARTUP2, RECOVERING, DOWN, UNKNOWN, ROLLBACK, REMOVED.
-
List<Get
Mongodb Db Instance Node Property Mongo Tag> - Node tags for filtering.
- Votes double
- Node votes. 1: has votes; 0: no votes.
- Wan
Service stringAddress - Node public network access address (IP or domain name).
- Zone string
- The availability zone where the node is located.
- Address string
- Node access address.
- bool
- Whether the node is a Hidden node.
- Node
Name string - Node name.
- Priority float64
- Node priority. Value range: [0, 100].
- Replicate
Set stringId - Replica set ID.
- Role string
- Node role. Valid values: PRIMARY, SECONDARY, READONLY, ARBITER.
- Slave
Delay float64 - Primary-secondary sync delay in seconds.
- Status string
- Node status. Valid values: NORMAL, STARTUP, STARTUP2, RECOVERING, DOWN, UNKNOWN, ROLLBACK, REMOVED.
-
[]Get
Mongodb Db Instance Node Property Mongo Tag - Node tags for filtering.
- Votes float64
- Node votes. 1: has votes; 0: no votes.
- Wan
Service stringAddress - Node public network access address (IP or domain name).
- Zone string
- The availability zone where the node is located.
- address string
- Node access address.
- bool
- Whether the node is a Hidden node.
- node_
name string - Node name.
- priority number
- Node priority. Value range: [0, 100].
- replicate_
set_ stringid - Replica set ID.
- role string
- Node role. Valid values: PRIMARY, SECONDARY, READONLY, ARBITER.
- slave_
delay number - Primary-secondary sync delay in seconds.
- status string
- Node status. Valid values: NORMAL, STARTUP, STARTUP2, RECOVERING, DOWN, UNKNOWN, ROLLBACK, REMOVED.
- list(object)
- Node tags for filtering.
- votes number
- Node votes. 1: has votes; 0: no votes.
- wan_
service_ stringaddress - Node public network access address (IP or domain name).
- zone string
- The availability zone where the node is located.
- address String
- Node access address.
- Boolean
- Whether the node is a Hidden node.
- node
Name String - Node name.
- priority Double
- Node priority. Value range: [0, 100].
- replicate
Set StringId - Replica set ID.
- role String
- Node role. Valid values: PRIMARY, SECONDARY, READONLY, ARBITER.
- slave
Delay Double - Primary-secondary sync delay in seconds.
- status String
- Node status. Valid values: NORMAL, STARTUP, STARTUP2, RECOVERING, DOWN, UNKNOWN, ROLLBACK, REMOVED.
-
List<Get
Mongodb Db Instance Node Property Mongo Tag> - Node tags for filtering.
- votes Double
- Node votes. 1: has votes; 0: no votes.
- wan
Service StringAddress - Node public network access address (IP or domain name).
- zone String
- The availability zone where the node is located.
- address string
- Node access address.
- boolean
- Whether the node is a Hidden node.
- node
Name string - Node name.
- priority number
- Node priority. Value range: [0, 100].
- replicate
Set stringId - Replica set ID.
- role string
- Node role. Valid values: PRIMARY, SECONDARY, READONLY, ARBITER.
- slave
Delay number - Primary-secondary sync delay in seconds.
- status string
- Node status. Valid values: NORMAL, STARTUP, STARTUP2, RECOVERING, DOWN, UNKNOWN, ROLLBACK, REMOVED.
-
Get
Mongodb Db Instance Node Property Mongo Tag[] - Node tags for filtering.
- votes number
- Node votes. 1: has votes; 0: no votes.
- wan
Service stringAddress - Node public network access address (IP or domain name).
- zone string
- The availability zone where the node is located.
- address str
- Node access address.
- bool
- Whether the node is a Hidden node.
- node_
name str - Node name.
- priority float
- Node priority. Value range: [0, 100].
- replicate_
set_ strid - Replica set ID.
- role str
- Node role. Valid values: PRIMARY, SECONDARY, READONLY, ARBITER.
- slave_
delay float - Primary-secondary sync delay in seconds.
- status str
- Node status. Valid values: NORMAL, STARTUP, STARTUP2, RECOVERING, DOWN, UNKNOWN, ROLLBACK, REMOVED.
-
Sequence[Get
Mongodb Db Instance Node Property Mongo Tag] - Node tags for filtering.
- votes float
- Node votes. 1: has votes; 0: no votes.
- wan_
service_ straddress - Node public network access address (IP or domain name).
- zone str
- The availability zone where the node is located.
- address String
- Node access address.
- Boolean
- Whether the node is a Hidden node.
- node
Name String - Node name.
- priority Number
- Node priority. Value range: [0, 100].
- replicate
Set StringId - Replica set ID.
- role String
- Node role. Valid values: PRIMARY, SECONDARY, READONLY, ARBITER.
- slave
Delay Number - Primary-secondary sync delay in seconds.
- status String
- Node status. Valid values: NORMAL, STARTUP, STARTUP2, RECOVERING, DOWN, UNKNOWN, ROLLBACK, REMOVED.
- List<Property Map>
- Node tags for filtering.
- votes Number
- Node votes. 1: has votes; 0: no votes.
- wan
Service StringAddress - Node public network access address (IP or domain name).
- zone String
- The availability zone where the node is located.
GetMongodbDbInstanceNodePropertyMongoTag
GetMongodbDbInstanceNodePropertyReplicateSet
- Nodes
List<Get
Mongodb Db Instance Node Property Replicate Set Node> - Node property list in the replica set.
- Nodes
[]Get
Mongodb Db Instance Node Property Replicate Set Node - Node property list in the replica set.
- nodes list(object)
- Node property list in the replica set.
- nodes
List<Get
Mongodb Db Instance Node Property Replicate Set Node> - Node property list in the replica set.
- nodes
Get
Mongodb Db Instance Node Property Replicate Set Node[] - Node property list in the replica set.
- nodes
Sequence[Get
Mongodb Db Instance Node Property Replicate Set Node] - Node property list in the replica set.
- nodes List<Property Map>
- Node property list in the replica set.
GetMongodbDbInstanceNodePropertyReplicateSetNode
- Address string
- Node access address.
- bool
- Whether the node is a Hidden node.
- Node
Name string - Node name.
- Priority double
- Node priority. Value range: [0, 100].
- Replicate
Set stringId - Replica set ID.
- Role string
- Node role. Valid values: PRIMARY, SECONDARY, READONLY, ARBITER.
- Slave
Delay double - Primary-secondary sync delay in seconds.
- Status string
- Node status. Valid values: NORMAL, STARTUP, STARTUP2, RECOVERING, DOWN, UNKNOWN, ROLLBACK, REMOVED.
-
List<Get
Mongodb Db Instance Node Property Replicate Set Node Tag> - Node tags for filtering.
- Votes double
- Node votes. 1: has votes; 0: no votes.
- Wan
Service stringAddress - Node public network access address (IP or domain name).
- Zone string
- The availability zone where the node is located.
- Address string
- Node access address.
- bool
- Whether the node is a Hidden node.
- Node
Name string - Node name.
- Priority float64
- Node priority. Value range: [0, 100].
- Replicate
Set stringId - Replica set ID.
- Role string
- Node role. Valid values: PRIMARY, SECONDARY, READONLY, ARBITER.
- Slave
Delay float64 - Primary-secondary sync delay in seconds.
- Status string
- Node status. Valid values: NORMAL, STARTUP, STARTUP2, RECOVERING, DOWN, UNKNOWN, ROLLBACK, REMOVED.
-
[]Get
Mongodb Db Instance Node Property Replicate Set Node Tag - Node tags for filtering.
- Votes float64
- Node votes. 1: has votes; 0: no votes.
- Wan
Service stringAddress - Node public network access address (IP or domain name).
- Zone string
- The availability zone where the node is located.
- address string
- Node access address.
- bool
- Whether the node is a Hidden node.
- node_
name string - Node name.
- priority number
- Node priority. Value range: [0, 100].
- replicate_
set_ stringid - Replica set ID.
- role string
- Node role. Valid values: PRIMARY, SECONDARY, READONLY, ARBITER.
- slave_
delay number - Primary-secondary sync delay in seconds.
- status string
- Node status. Valid values: NORMAL, STARTUP, STARTUP2, RECOVERING, DOWN, UNKNOWN, ROLLBACK, REMOVED.
- list(object)
- Node tags for filtering.
- votes number
- Node votes. 1: has votes; 0: no votes.
- wan_
service_ stringaddress - Node public network access address (IP or domain name).
- zone string
- The availability zone where the node is located.
- address String
- Node access address.
- Boolean
- Whether the node is a Hidden node.
- node
Name String - Node name.
- priority Double
- Node priority. Value range: [0, 100].
- replicate
Set StringId - Replica set ID.
- role String
- Node role. Valid values: PRIMARY, SECONDARY, READONLY, ARBITER.
- slave
Delay Double - Primary-secondary sync delay in seconds.
- status String
- Node status. Valid values: NORMAL, STARTUP, STARTUP2, RECOVERING, DOWN, UNKNOWN, ROLLBACK, REMOVED.
-
List<Get
Mongodb Db Instance Node Property Replicate Set Node Tag> - Node tags for filtering.
- votes Double
- Node votes. 1: has votes; 0: no votes.
- wan
Service StringAddress - Node public network access address (IP or domain name).
- zone String
- The availability zone where the node is located.
- address string
- Node access address.
- boolean
- Whether the node is a Hidden node.
- node
Name string - Node name.
- priority number
- Node priority. Value range: [0, 100].
- replicate
Set stringId - Replica set ID.
- role string
- Node role. Valid values: PRIMARY, SECONDARY, READONLY, ARBITER.
- slave
Delay number - Primary-secondary sync delay in seconds.
- status string
- Node status. Valid values: NORMAL, STARTUP, STARTUP2, RECOVERING, DOWN, UNKNOWN, ROLLBACK, REMOVED.
-
Get
Mongodb Db Instance Node Property Replicate Set Node Tag[] - Node tags for filtering.
- votes number
- Node votes. 1: has votes; 0: no votes.
- wan
Service stringAddress - Node public network access address (IP or domain name).
- zone string
- The availability zone where the node is located.
- address str
- Node access address.
- bool
- Whether the node is a Hidden node.
- node_
name str - Node name.
- priority float
- Node priority. Value range: [0, 100].
- replicate_
set_ strid - Replica set ID.
- role str
- Node role. Valid values: PRIMARY, SECONDARY, READONLY, ARBITER.
- slave_
delay float - Primary-secondary sync delay in seconds.
- status str
- Node status. Valid values: NORMAL, STARTUP, STARTUP2, RECOVERING, DOWN, UNKNOWN, ROLLBACK, REMOVED.
-
Sequence[Get
Mongodb Db Instance Node Property Replicate Set Node Tag] - Node tags for filtering.
- votes float
- Node votes. 1: has votes; 0: no votes.
- wan_
service_ straddress - Node public network access address (IP or domain name).
- zone str
- The availability zone where the node is located.
- address String
- Node access address.
- Boolean
- Whether the node is a Hidden node.
- node
Name String - Node name.
- priority Number
- Node priority. Value range: [0, 100].
- replicate
Set StringId - Replica set ID.
- role String
- Node role. Valid values: PRIMARY, SECONDARY, READONLY, ARBITER.
- slave
Delay Number - Primary-secondary sync delay in seconds.
- status String
- Node status. Valid values: NORMAL, STARTUP, STARTUP2, RECOVERING, DOWN, UNKNOWN, ROLLBACK, REMOVED.
- List<Property Map>
- Node tags for filtering.
- votes Number
- Node votes. 1: has votes; 0: no votes.
- wan
Service StringAddress - Node public network access address (IP or domain name).
- zone String
- The availability zone where the node is located.
GetMongodbDbInstanceNodePropertyReplicateSetNodeTag
GetMongodbDbInstanceNodePropertyTag
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.2
published on Monday, Jun 15, 2026 by tencentcloudstack
published on Monday, Jun 15, 2026 by tencentcloudstack