published on Monday, Jun 15, 2026 by Volcengine
published on Monday, Jun 15, 2026 by Volcengine
List of connection address information
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as volcenginecc from "@volcengine/pulumi-volcenginecc";
const mongoDBEndpointDemo = new volcenginecc.mongodb.Endpoint("MongoDBEndpointDemo", {
eipIds: [
"eip-****",
"eip-****",
],
instanceId: "mongo-replica-****",
networkType: "Public",
});
import pulumi
import pulumi_volcenginecc as volcenginecc
mongo_db_endpoint_demo = volcenginecc.mongodb.Endpoint("MongoDBEndpointDemo",
eip_ids=[
"eip-****",
"eip-****",
],
instance_id="mongo-replica-****",
network_type="Public")
package main
import (
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
"github.com/volcengine/pulumi-volcenginecc/sdk/go/volcenginecc/mongodb"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := mongodb.NewEndpoint(ctx, "MongoDBEndpointDemo", &mongodb.EndpointArgs{
EipIds: pulumi.StringArray{
pulumi.String("eip-****"),
pulumi.String("eip-****"),
},
InstanceId: pulumi.String("mongo-replica-****"),
NetworkType: pulumi.String("Public"),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Volcenginecc = Volcengine.Pulumi.Volcenginecc;
return await Deployment.RunAsync(() =>
{
var mongoDBEndpointDemo = new Volcenginecc.Mongodb.Endpoint("MongoDBEndpointDemo", new()
{
EipIds = new[]
{
"eip-****",
"eip-****",
},
InstanceId = "mongo-replica-****",
NetworkType = "Public",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.volcengine.volcenginecc.mongodb.Endpoint;
import com.volcengine.volcenginecc.mongodb.EndpointArgs;
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) {
var mongoDBEndpointDemo = new Endpoint("mongoDBEndpointDemo", EndpointArgs.builder()
.eipIds(
"eip-****",
"eip-****")
.instanceId("mongo-replica-****")
.networkType("Public")
.build());
}
}
resources:
mongoDBEndpointDemo:
type: volcenginecc:mongodb:Endpoint
name: MongoDBEndpointDemo
properties:
eipIds:
- eip-****
- eip-****
instanceId: mongo-replica-****
networkType: Public
Example coming soon!
Create Endpoint Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Endpoint(name: string, args: EndpointArgs, opts?: CustomResourceOptions);@overload
def Endpoint(resource_name: str,
args: EndpointArgs,
opts: Optional[ResourceOptions] = None)
@overload
def Endpoint(resource_name: str,
opts: Optional[ResourceOptions] = None,
instance_id: Optional[str] = None,
eip_ids: Optional[Sequence[str]] = None,
mongos_node_ids: Optional[Sequence[str]] = None,
network_type: Optional[str] = None,
object_id: Optional[str] = None)func NewEndpoint(ctx *Context, name string, args EndpointArgs, opts ...ResourceOption) (*Endpoint, error)public Endpoint(string name, EndpointArgs args, CustomResourceOptions? opts = null)
public Endpoint(String name, EndpointArgs args)
public Endpoint(String name, EndpointArgs args, CustomResourceOptions options)
type: volcenginecc:mongodb:Endpoint
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
resource "volcenginecc_mongodb_endpoint" "name" {
# resource properties
}Parameters
- name string
- The unique name of the resource.
- args EndpointArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args EndpointArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args EndpointArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args EndpointArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args EndpointArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var volcengineccEndpointResource = new Volcenginecc.Mongodb.Endpoint("volcengineccEndpointResource", new()
{
InstanceId = "string",
EipIds = new[]
{
"string",
},
MongosNodeIds = new[]
{
"string",
},
NetworkType = "string",
ObjectId = "string",
});
example, err := mongodb.NewEndpoint(ctx, "volcengineccEndpointResource", &mongodb.EndpointArgs{
InstanceId: pulumi.String("string"),
EipIds: pulumi.StringArray{
pulumi.String("string"),
},
MongosNodeIds: pulumi.StringArray{
pulumi.String("string"),
},
NetworkType: pulumi.String("string"),
ObjectId: pulumi.String("string"),
})
resource "volcenginecc_mongodb_endpoint" "volcengineccEndpointResource" {
instance_id = "string"
eip_ids = ["string"]
mongos_node_ids = ["string"]
network_type = "string"
object_id = "string"
}
var volcengineccEndpointResource = new com.volcengine.volcenginecc.mongodb.Endpoint("volcengineccEndpointResource", com.volcengine.volcenginecc.mongodb.EndpointArgs.builder()
.instanceId("string")
.eipIds("string")
.mongosNodeIds("string")
.networkType("string")
.objectId("string")
.build());
volcenginecc_endpoint_resource = volcenginecc.mongodb.Endpoint("volcengineccEndpointResource",
instance_id="string",
eip_ids=["string"],
mongos_node_ids=["string"],
network_type="string",
object_id="string")
const volcengineccEndpointResource = new volcenginecc.mongodb.Endpoint("volcengineccEndpointResource", {
instanceId: "string",
eipIds: ["string"],
mongosNodeIds: ["string"],
networkType: "string",
objectId: "string",
});
type: volcenginecc:mongodb:Endpoint
properties:
eipIds:
- string
instanceId: string
mongosNodeIds:
- string
networkType: string
objectId: string
Endpoint Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The Endpoint resource accepts the following input properties:
- Instance
Id string - Instance ID
- Eip
Ids List<string> - List of EIP IDs to bind when applying for a public address
- Mongos
Node List<string>Ids - ID of the Mongos node that requires a public connection address
- Network
Type string - Network type of the connection address. Possible values: -
Private: Private connection address -Public: Public connection address - Object
Id string - ID of the component associated with the current connection address Note: This parameter is returned only when
EndpointTypeis set toMongos,ConfigServer, orShard.
- Instance
Id string - Instance ID
- Eip
Ids []string - List of EIP IDs to bind when applying for a public address
- Mongos
Node []stringIds - ID of the Mongos node that requires a public connection address
- Network
Type string - Network type of the connection address. Possible values: -
Private: Private connection address -Public: Public connection address - Object
Id string - ID of the component associated with the current connection address Note: This parameter is returned only when
EndpointTypeis set toMongos,ConfigServer, orShard.
- instance_
id string - Instance ID
- eip_
ids list(string) - List of EIP IDs to bind when applying for a public address
- mongos_
node_ list(string)ids - ID of the Mongos node that requires a public connection address
- network_
type string - Network type of the connection address. Possible values: -
Private: Private connection address -Public: Public connection address - object_
id string - ID of the component associated with the current connection address Note: This parameter is returned only when
EndpointTypeis set toMongos,ConfigServer, orShard.
- instance
Id String - Instance ID
- eip
Ids List<String> - List of EIP IDs to bind when applying for a public address
- mongos
Node List<String>Ids - ID of the Mongos node that requires a public connection address
- network
Type String - Network type of the connection address. Possible values: -
Private: Private connection address -Public: Public connection address - object
Id String - ID of the component associated with the current connection address Note: This parameter is returned only when
EndpointTypeis set toMongos,ConfigServer, orShard.
- instance
Id string - Instance ID
- eip
Ids string[] - List of EIP IDs to bind when applying for a public address
- mongos
Node string[]Ids - ID of the Mongos node that requires a public connection address
- network
Type string - Network type of the connection address. Possible values: -
Private: Private connection address -Public: Public connection address - object
Id string - ID of the component associated with the current connection address Note: This parameter is returned only when
EndpointTypeis set toMongos,ConfigServer, orShard.
- instance_
id str - Instance ID
- eip_
ids Sequence[str] - List of EIP IDs to bind when applying for a public address
- mongos_
node_ Sequence[str]ids - ID of the Mongos node that requires a public connection address
- network_
type str - Network type of the connection address. Possible values: -
Private: Private connection address -Public: Public connection address - object_
id str - ID of the component associated with the current connection address Note: This parameter is returned only when
EndpointTypeis set toMongos,ConfigServer, orShard.
- instance
Id String - Instance ID
- eip
Ids List<String> - List of EIP IDs to bind when applying for a public address
- mongos
Node List<String>Ids - ID of the Mongos node that requires a public connection address
- network
Type String - Network type of the connection address. Possible values: -
Private: Private connection address -Public: Public connection address - object
Id String - ID of the component associated with the current connection address Note: This parameter is returned only when
EndpointTypeis set toMongos,ConfigServer, orShard.
Outputs
All input properties are implicitly available as output properties. Additionally, the Endpoint resource produces the following output properties:
- Db
Addresses List<Volcengine.Endpoint Db Address> - Endpoint
Id string - Connection address ID
- Endpoint
Str string - String information of the connection address.
- Endpoint
Type string - Node type corresponding to the connection address. Possible values: - Replica set instances only support the
ReplicaSet(replica set) connection address type - Sharded cluster instances support three connection address types:Mongos(Mongos node),ConfigServer(ConfigServer node), andShard(Shard node) - Id string
- The provider-assigned unique ID for this managed resource.
- Subnet
Id string - Subnet ID of the current instance
- Vpc
Id string - VPC ID of the current instance
- Db
Addresses []EndpointDb Address - Endpoint
Id string - Connection address ID
- Endpoint
Str string - String information of the connection address.
- Endpoint
Type string - Node type corresponding to the connection address. Possible values: - Replica set instances only support the
ReplicaSet(replica set) connection address type - Sharded cluster instances support three connection address types:Mongos(Mongos node),ConfigServer(ConfigServer node), andShard(Shard node) - Id string
- The provider-assigned unique ID for this managed resource.
- Subnet
Id string - Subnet ID of the current instance
- Vpc
Id string - VPC ID of the current instance
- db_
addresses list(object) - endpoint_
id string - Connection address ID
- endpoint_
str string - String information of the connection address.
- endpoint_
type string - Node type corresponding to the connection address. Possible values: - Replica set instances only support the
ReplicaSet(replica set) connection address type - Sharded cluster instances support three connection address types:Mongos(Mongos node),ConfigServer(ConfigServer node), andShard(Shard node) - id string
- The provider-assigned unique ID for this managed resource.
- subnet_
id string - Subnet ID of the current instance
- vpc_
id string - VPC ID of the current instance
- db
Addresses List<EndpointDb Address> - endpoint
Id String - Connection address ID
- endpoint
Str String - String information of the connection address.
- endpoint
Type String - Node type corresponding to the connection address. Possible values: - Replica set instances only support the
ReplicaSet(replica set) connection address type - Sharded cluster instances support three connection address types:Mongos(Mongos node),ConfigServer(ConfigServer node), andShard(Shard node) - id String
- The provider-assigned unique ID for this managed resource.
- subnet
Id String - Subnet ID of the current instance
- vpc
Id String - VPC ID of the current instance
- db
Addresses EndpointDb Address[] - endpoint
Id string - Connection address ID
- endpoint
Str string - String information of the connection address.
- endpoint
Type string - Node type corresponding to the connection address. Possible values: - Replica set instances only support the
ReplicaSet(replica set) connection address type - Sharded cluster instances support three connection address types:Mongos(Mongos node),ConfigServer(ConfigServer node), andShard(Shard node) - id string
- The provider-assigned unique ID for this managed resource.
- subnet
Id string - Subnet ID of the current instance
- vpc
Id string - VPC ID of the current instance
- db_
addresses Sequence[EndpointDb Address] - endpoint_
id str - Connection address ID
- endpoint_
str str - String information of the connection address.
- endpoint_
type str - Node type corresponding to the connection address. Possible values: - Replica set instances only support the
ReplicaSet(replica set) connection address type - Sharded cluster instances support three connection address types:Mongos(Mongos node),ConfigServer(ConfigServer node), andShard(Shard node) - id str
- The provider-assigned unique ID for this managed resource.
- subnet_
id str - Subnet ID of the current instance
- vpc_
id str - VPC ID of the current instance
- db
Addresses List<Property Map> - endpoint
Id String - Connection address ID
- endpoint
Str String - String information of the connection address.
- endpoint
Type String - Node type corresponding to the connection address. Possible values: - Replica set instances only support the
ReplicaSet(replica set) connection address type - Sharded cluster instances support three connection address types:Mongos(Mongos node),ConfigServer(ConfigServer node), andShard(Shard node) - id String
- The provider-assigned unique ID for this managed resource.
- subnet
Id String - Subnet ID of the current instance
- vpc
Id String - VPC ID of the current instance
Look up Existing Endpoint Resource
Get an existing Endpoint resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: EndpointState, opts?: CustomResourceOptions): Endpoint@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
db_addresses: Optional[Sequence[EndpointDbAddressArgs]] = None,
eip_ids: Optional[Sequence[str]] = None,
endpoint_id: Optional[str] = None,
endpoint_str: Optional[str] = None,
endpoint_type: Optional[str] = None,
instance_id: Optional[str] = None,
mongos_node_ids: Optional[Sequence[str]] = None,
network_type: Optional[str] = None,
object_id: Optional[str] = None,
subnet_id: Optional[str] = None,
vpc_id: Optional[str] = None) -> Endpointfunc GetEndpoint(ctx *Context, name string, id IDInput, state *EndpointState, opts ...ResourceOption) (*Endpoint, error)public static Endpoint Get(string name, Input<string> id, EndpointState? state, CustomResourceOptions? opts = null)public static Endpoint get(String name, Output<String> id, EndpointState state, CustomResourceOptions options)resources: _: type: volcenginecc:mongodb:Endpoint get: id: ${id}import {
to = volcenginecc_mongodb_endpoint.example
id = "${id}"
}
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Db
Addresses List<Volcengine.Endpoint Db Address> - Eip
Ids List<string> - List of EIP IDs to bind when applying for a public address
- Endpoint
Id string - Connection address ID
- Endpoint
Str string - String information of the connection address.
- Endpoint
Type string - Node type corresponding to the connection address. Possible values: - Replica set instances only support the
ReplicaSet(replica set) connection address type - Sharded cluster instances support three connection address types:Mongos(Mongos node),ConfigServer(ConfigServer node), andShard(Shard node) - Instance
Id string - Instance ID
- Mongos
Node List<string>Ids - ID of the Mongos node that requires a public connection address
- Network
Type string - Network type of the connection address. Possible values: -
Private: Private connection address -Public: Public connection address - Object
Id string - ID of the component associated with the current connection address Note: This parameter is returned only when
EndpointTypeis set toMongos,ConfigServer, orShard. - Subnet
Id string - Subnet ID of the current instance
- Vpc
Id string - VPC ID of the current instance
- Db
Addresses []EndpointDb Address Args - Eip
Ids []string - List of EIP IDs to bind when applying for a public address
- Endpoint
Id string - Connection address ID
- Endpoint
Str string - String information of the connection address.
- Endpoint
Type string - Node type corresponding to the connection address. Possible values: - Replica set instances only support the
ReplicaSet(replica set) connection address type - Sharded cluster instances support three connection address types:Mongos(Mongos node),ConfigServer(ConfigServer node), andShard(Shard node) - Instance
Id string - Instance ID
- Mongos
Node []stringIds - ID of the Mongos node that requires a public connection address
- Network
Type string - Network type of the connection address. Possible values: -
Private: Private connection address -Public: Public connection address - Object
Id string - ID of the component associated with the current connection address Note: This parameter is returned only when
EndpointTypeis set toMongos,ConfigServer, orShard. - Subnet
Id string - Subnet ID of the current instance
- Vpc
Id string - VPC ID of the current instance
- db_
addresses list(object) - eip_
ids list(string) - List of EIP IDs to bind when applying for a public address
- endpoint_
id string - Connection address ID
- endpoint_
str string - String information of the connection address.
- endpoint_
type string - Node type corresponding to the connection address. Possible values: - Replica set instances only support the
ReplicaSet(replica set) connection address type - Sharded cluster instances support three connection address types:Mongos(Mongos node),ConfigServer(ConfigServer node), andShard(Shard node) - instance_
id string - Instance ID
- mongos_
node_ list(string)ids - ID of the Mongos node that requires a public connection address
- network_
type string - Network type of the connection address. Possible values: -
Private: Private connection address -Public: Public connection address - object_
id string - ID of the component associated with the current connection address Note: This parameter is returned only when
EndpointTypeis set toMongos,ConfigServer, orShard. - subnet_
id string - Subnet ID of the current instance
- vpc_
id string - VPC ID of the current instance
- db
Addresses List<EndpointDb Address> - eip
Ids List<String> - List of EIP IDs to bind when applying for a public address
- endpoint
Id String - Connection address ID
- endpoint
Str String - String information of the connection address.
- endpoint
Type String - Node type corresponding to the connection address. Possible values: - Replica set instances only support the
ReplicaSet(replica set) connection address type - Sharded cluster instances support three connection address types:Mongos(Mongos node),ConfigServer(ConfigServer node), andShard(Shard node) - instance
Id String - Instance ID
- mongos
Node List<String>Ids - ID of the Mongos node that requires a public connection address
- network
Type String - Network type of the connection address. Possible values: -
Private: Private connection address -Public: Public connection address - object
Id String - ID of the component associated with the current connection address Note: This parameter is returned only when
EndpointTypeis set toMongos,ConfigServer, orShard. - subnet
Id String - Subnet ID of the current instance
- vpc
Id String - VPC ID of the current instance
- db
Addresses EndpointDb Address[] - eip
Ids string[] - List of EIP IDs to bind when applying for a public address
- endpoint
Id string - Connection address ID
- endpoint
Str string - String information of the connection address.
- endpoint
Type string - Node type corresponding to the connection address. Possible values: - Replica set instances only support the
ReplicaSet(replica set) connection address type - Sharded cluster instances support three connection address types:Mongos(Mongos node),ConfigServer(ConfigServer node), andShard(Shard node) - instance
Id string - Instance ID
- mongos
Node string[]Ids - ID of the Mongos node that requires a public connection address
- network
Type string - Network type of the connection address. Possible values: -
Private: Private connection address -Public: Public connection address - object
Id string - ID of the component associated with the current connection address Note: This parameter is returned only when
EndpointTypeis set toMongos,ConfigServer, orShard. - subnet
Id string - Subnet ID of the current instance
- vpc
Id string - VPC ID of the current instance
- db_
addresses Sequence[EndpointDb Address Args] - eip_
ids Sequence[str] - List of EIP IDs to bind when applying for a public address
- endpoint_
id str - Connection address ID
- endpoint_
str str - String information of the connection address.
- endpoint_
type str - Node type corresponding to the connection address. Possible values: - Replica set instances only support the
ReplicaSet(replica set) connection address type - Sharded cluster instances support three connection address types:Mongos(Mongos node),ConfigServer(ConfigServer node), andShard(Shard node) - instance_
id str - Instance ID
- mongos_
node_ Sequence[str]ids - ID of the Mongos node that requires a public connection address
- network_
type str - Network type of the connection address. Possible values: -
Private: Private connection address -Public: Public connection address - object_
id str - ID of the component associated with the current connection address Note: This parameter is returned only when
EndpointTypeis set toMongos,ConfigServer, orShard. - subnet_
id str - Subnet ID of the current instance
- vpc_
id str - VPC ID of the current instance
- db
Addresses List<Property Map> - eip
Ids List<String> - List of EIP IDs to bind when applying for a public address
- endpoint
Id String - Connection address ID
- endpoint
Str String - String information of the connection address.
- endpoint
Type String - Node type corresponding to the connection address. Possible values: - Replica set instances only support the
ReplicaSet(replica set) connection address type - Sharded cluster instances support three connection address types:Mongos(Mongos node),ConfigServer(ConfigServer node), andShard(Shard node) - instance
Id String - Instance ID
- mongos
Node List<String>Ids - ID of the Mongos node that requires a public connection address
- network
Type String - Network type of the connection address. Possible values: -
Private: Private connection address -Public: Public connection address - object
Id String - ID of the component associated with the current connection address Note: This parameter is returned only when
EndpointTypeis set toMongos,ConfigServer, orShard. - subnet
Id String - Subnet ID of the current instance
- vpc
Id String - VPC ID of the current instance
Supporting Types
EndpointDbAddress, EndpointDbAddressArgs
- Address
Domain string - Domain name of the connection address
- Address
Ip string - IP corresponding to the connection address
- Address
Port string - Port number of the connection address
- Address
Type string Connection address type of the node. Possible values:
Primary: Primary node connection address Secondary: Secondary node connection address Hidden: Hidden node connection address ReadOnly: Read-only node connection address
Note: Hidden node connection address information is returned only when the connection address type is a private connection address (that is, when
NetworkTypeis set toPrivate).- Eip
Id string EIP ID bound to the instance's public address
Note: This parameter is returned only when the connection address type is a public connection address (that is, when
NetworkTypeis set toPublic).- Node
Id string - Node ID associated with the connection address
- Zone
Id string - AZ of the node; all nodes are consistent for single-AZ instances, while nodes differ for multi-AZ instances
- Address
Domain string - Domain name of the connection address
- Address
Ip string - IP corresponding to the connection address
- Address
Port string - Port number of the connection address
- Address
Type string Connection address type of the node. Possible values:
Primary: Primary node connection address Secondary: Secondary node connection address Hidden: Hidden node connection address ReadOnly: Read-only node connection address
Note: Hidden node connection address information is returned only when the connection address type is a private connection address (that is, when
NetworkTypeis set toPrivate).- Eip
Id string EIP ID bound to the instance's public address
Note: This parameter is returned only when the connection address type is a public connection address (that is, when
NetworkTypeis set toPublic).- Node
Id string - Node ID associated with the connection address
- Zone
Id string - AZ of the node; all nodes are consistent for single-AZ instances, while nodes differ for multi-AZ instances
- address_
domain string - Domain name of the connection address
- address_
ip string - IP corresponding to the connection address
- address_
port string - Port number of the connection address
- address_
type string Connection address type of the node. Possible values:
Primary: Primary node connection address Secondary: Secondary node connection address Hidden: Hidden node connection address ReadOnly: Read-only node connection address
Note: Hidden node connection address information is returned only when the connection address type is a private connection address (that is, when
NetworkTypeis set toPrivate).- eip_
id string EIP ID bound to the instance's public address
Note: This parameter is returned only when the connection address type is a public connection address (that is, when
NetworkTypeis set toPublic).- node_
id string - Node ID associated with the connection address
- zone_
id string - AZ of the node; all nodes are consistent for single-AZ instances, while nodes differ for multi-AZ instances
- address
Domain String - Domain name of the connection address
- address
Ip String - IP corresponding to the connection address
- address
Port String - Port number of the connection address
- address
Type String Connection address type of the node. Possible values:
Primary: Primary node connection address Secondary: Secondary node connection address Hidden: Hidden node connection address ReadOnly: Read-only node connection address
Note: Hidden node connection address information is returned only when the connection address type is a private connection address (that is, when
NetworkTypeis set toPrivate).- eip
Id String EIP ID bound to the instance's public address
Note: This parameter is returned only when the connection address type is a public connection address (that is, when
NetworkTypeis set toPublic).- node
Id String - Node ID associated with the connection address
- zone
Id String - AZ of the node; all nodes are consistent for single-AZ instances, while nodes differ for multi-AZ instances
- address
Domain string - Domain name of the connection address
- address
Ip string - IP corresponding to the connection address
- address
Port string - Port number of the connection address
- address
Type string Connection address type of the node. Possible values:
Primary: Primary node connection address Secondary: Secondary node connection address Hidden: Hidden node connection address ReadOnly: Read-only node connection address
Note: Hidden node connection address information is returned only when the connection address type is a private connection address (that is, when
NetworkTypeis set toPrivate).- eip
Id string EIP ID bound to the instance's public address
Note: This parameter is returned only when the connection address type is a public connection address (that is, when
NetworkTypeis set toPublic).- node
Id string - Node ID associated with the connection address
- zone
Id string - AZ of the node; all nodes are consistent for single-AZ instances, while nodes differ for multi-AZ instances
- address_
domain str - Domain name of the connection address
- address_
ip str - IP corresponding to the connection address
- address_
port str - Port number of the connection address
- address_
type str Connection address type of the node. Possible values:
Primary: Primary node connection address Secondary: Secondary node connection address Hidden: Hidden node connection address ReadOnly: Read-only node connection address
Note: Hidden node connection address information is returned only when the connection address type is a private connection address (that is, when
NetworkTypeis set toPrivate).- eip_
id str EIP ID bound to the instance's public address
Note: This parameter is returned only when the connection address type is a public connection address (that is, when
NetworkTypeis set toPublic).- node_
id str - Node ID associated with the connection address
- zone_
id str - AZ of the node; all nodes are consistent for single-AZ instances, while nodes differ for multi-AZ instances
- address
Domain String - Domain name of the connection address
- address
Ip String - IP corresponding to the connection address
- address
Port String - Port number of the connection address
- address
Type String Connection address type of the node. Possible values:
Primary: Primary node connection address Secondary: Secondary node connection address Hidden: Hidden node connection address ReadOnly: Read-only node connection address
Note: Hidden node connection address information is returned only when the connection address type is a private connection address (that is, when
NetworkTypeis set toPrivate).- eip
Id String EIP ID bound to the instance's public address
Note: This parameter is returned only when the connection address type is a public connection address (that is, when
NetworkTypeis set toPublic).- node
Id String - Node ID associated with the connection address
- zone
Id String - AZ of the node; all nodes are consistent for single-AZ instances, while nodes differ for multi-AZ instances
Import
$ pulumi import volcenginecc:mongodb/endpoint:Endpoint example "instance_id|endpoint_id"
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- volcenginecc volcengine/pulumi-volcenginecc
- License
- MPL-2.0
- Notes
- This Pulumi package is based on the
volcengineccTerraform Provider.
published on Monday, Jun 15, 2026 by Volcengine