1. Packages
  2. Alibaba Cloud
  3. API Docs
  4. mongodb
  5. ShardingNetworkPrivateAddress
Alibaba Cloud v3.53.0 published on Wednesday, Apr 17, 2024 by Pulumi

alicloud.mongodb.ShardingNetworkPrivateAddress

Explore with Pulumi AI

alicloud logo
Alibaba Cloud v3.53.0 published on Wednesday, Apr 17, 2024 by Pulumi

    Provides a MongoDB Sharding Network Private Address resource.

    For information about MongoDB Sharding Network Private Address and how to use it, see What is Sharding Network Private Address.

    NOTE: Available since v1.157.0.

    Example Usage

    Basic Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as alicloud from "@pulumi/alicloud";
    
    const config = new pulumi.Config();
    const name = config.get("name") || "terraform-example";
    const defaultZones = alicloud.mongodb.getZones({});
    const index = defaultZones.then(defaultZones => defaultZones.zones).length.then(length => length - 1);
    const zoneId = defaultZones.then(defaultZones => defaultZones.zones[index].id);
    const defaultNetwork = new alicloud.vpc.Network("defaultNetwork", {
        vpcName: name,
        cidrBlock: "172.17.3.0/24",
    });
    const defaultSwitch = new alicloud.vpc.Switch("defaultSwitch", {
        vswitchName: name,
        cidrBlock: "172.17.3.0/24",
        vpcId: defaultNetwork.id,
        zoneId: zoneId,
    });
    const defaultShardingInstance = new alicloud.mongodb.ShardingInstance("defaultShardingInstance", {
        zoneId: zoneId,
        vswitchId: defaultSwitch.id,
        engineVersion: "4.2",
        shardLists: [
            {
                nodeClass: "dds.shard.mid",
                nodeStorage: 10,
            },
            {
                nodeClass: "dds.shard.standard",
                nodeStorage: 20,
                readonlyReplicas: 1,
            },
        ],
        mongoLists: [
            {
                nodeClass: "dds.mongos.mid",
            },
            {
                nodeClass: "dds.mongos.mid",
            },
        ],
    });
    const defaultShardingNetworkPrivateAddress = new alicloud.mongodb.ShardingNetworkPrivateAddress("defaultShardingNetworkPrivateAddress", {
        dbInstanceId: defaultShardingInstance.id,
        nodeId: defaultShardingInstance.shardLists.apply(shardLists => shardLists[0].nodeId),
        zoneId: defaultShardingInstance.zoneId,
        accountName: "example",
        accountPassword: "Example_123",
    });
    
    import pulumi
    import pulumi_alicloud as alicloud
    
    config = pulumi.Config()
    name = config.get("name")
    if name is None:
        name = "terraform-example"
    default_zones = alicloud.mongodb.get_zones()
    index = len(default_zones.zones) - 1
    zone_id = default_zones.zones[index].id
    default_network = alicloud.vpc.Network("defaultNetwork",
        vpc_name=name,
        cidr_block="172.17.3.0/24")
    default_switch = alicloud.vpc.Switch("defaultSwitch",
        vswitch_name=name,
        cidr_block="172.17.3.0/24",
        vpc_id=default_network.id,
        zone_id=zone_id)
    default_sharding_instance = alicloud.mongodb.ShardingInstance("defaultShardingInstance",
        zone_id=zone_id,
        vswitch_id=default_switch.id,
        engine_version="4.2",
        shard_lists=[
            alicloud.mongodb.ShardingInstanceShardListArgs(
                node_class="dds.shard.mid",
                node_storage=10,
            ),
            alicloud.mongodb.ShardingInstanceShardListArgs(
                node_class="dds.shard.standard",
                node_storage=20,
                readonly_replicas=1,
            ),
        ],
        mongo_lists=[
            alicloud.mongodb.ShardingInstanceMongoListArgs(
                node_class="dds.mongos.mid",
            ),
            alicloud.mongodb.ShardingInstanceMongoListArgs(
                node_class="dds.mongos.mid",
            ),
        ])
    default_sharding_network_private_address = alicloud.mongodb.ShardingNetworkPrivateAddress("defaultShardingNetworkPrivateAddress",
        db_instance_id=default_sharding_instance.id,
        node_id=default_sharding_instance.shard_lists[0].node_id,
        zone_id=default_sharding_instance.zone_id,
        account_name="example",
        account_password="Example_123")
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-alicloud/sdk/v3/go/alicloud/mongodb"
    	"github.com/pulumi/pulumi-alicloud/sdk/v3/go/alicloud/vpc"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi/config"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		cfg := config.New(ctx, "")
    		name := "terraform-example"
    		if param := cfg.Get("name"); param != "" {
    			name = param
    		}
    		defaultZones, err := mongodb.GetZones(ctx, nil, nil)
    		if err != nil {
    			return err
    		}
    		index := len(defaultZones.Zones) - 1
    		zoneId := defaultZones.Zones[index].Id
    		defaultNetwork, err := vpc.NewNetwork(ctx, "defaultNetwork", &vpc.NetworkArgs{
    			VpcName:   pulumi.String(name),
    			CidrBlock: pulumi.String("172.17.3.0/24"),
    		})
    		if err != nil {
    			return err
    		}
    		defaultSwitch, err := vpc.NewSwitch(ctx, "defaultSwitch", &vpc.SwitchArgs{
    			VswitchName: pulumi.String(name),
    			CidrBlock:   pulumi.String("172.17.3.0/24"),
    			VpcId:       defaultNetwork.ID(),
    			ZoneId:      pulumi.String(zoneId),
    		})
    		if err != nil {
    			return err
    		}
    		defaultShardingInstance, err := mongodb.NewShardingInstance(ctx, "defaultShardingInstance", &mongodb.ShardingInstanceArgs{
    			ZoneId:        pulumi.String(zoneId),
    			VswitchId:     defaultSwitch.ID(),
    			EngineVersion: pulumi.String("4.2"),
    			ShardLists: mongodb.ShardingInstanceShardListArray{
    				&mongodb.ShardingInstanceShardListArgs{
    					NodeClass:   pulumi.String("dds.shard.mid"),
    					NodeStorage: pulumi.Int(10),
    				},
    				&mongodb.ShardingInstanceShardListArgs{
    					NodeClass:        pulumi.String("dds.shard.standard"),
    					NodeStorage:      pulumi.Int(20),
    					ReadonlyReplicas: pulumi.Int(1),
    				},
    			},
    			MongoLists: mongodb.ShardingInstanceMongoListArray{
    				&mongodb.ShardingInstanceMongoListArgs{
    					NodeClass: pulumi.String("dds.mongos.mid"),
    				},
    				&mongodb.ShardingInstanceMongoListArgs{
    					NodeClass: pulumi.String("dds.mongos.mid"),
    				},
    			},
    		})
    		if err != nil {
    			return err
    		}
    		_, err = mongodb.NewShardingNetworkPrivateAddress(ctx, "defaultShardingNetworkPrivateAddress", &mongodb.ShardingNetworkPrivateAddressArgs{
    			DbInstanceId: defaultShardingInstance.ID(),
    			NodeId: defaultShardingInstance.ShardLists.ApplyT(func(shardLists []mongodb.ShardingInstanceShardList) (*string, error) {
    				return &shardLists[0].NodeId, nil
    			}).(pulumi.StringPtrOutput),
    			ZoneId:          defaultShardingInstance.ZoneId,
    			AccountName:     pulumi.String("example"),
    			AccountPassword: pulumi.String("Example_123"),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using AliCloud = Pulumi.AliCloud;
    
    return await Deployment.RunAsync(() => 
    {
        var config = new Config();
        var name = config.Get("name") ?? "terraform-example";
        var defaultZones = AliCloud.MongoDB.GetZones.Invoke();
    
        var index = defaultZones.Apply(getZonesResult => getZonesResult.Zones).Length.Apply(length => length - 1);
    
        var zoneId = defaultZones.Apply(getZonesResult => getZonesResult.Zones)[index].Id;
    
        var defaultNetwork = new AliCloud.Vpc.Network("defaultNetwork", new()
        {
            VpcName = name,
            CidrBlock = "172.17.3.0/24",
        });
    
        var defaultSwitch = new AliCloud.Vpc.Switch("defaultSwitch", new()
        {
            VswitchName = name,
            CidrBlock = "172.17.3.0/24",
            VpcId = defaultNetwork.Id,
            ZoneId = zoneId,
        });
    
        var defaultShardingInstance = new AliCloud.MongoDB.ShardingInstance("defaultShardingInstance", new()
        {
            ZoneId = zoneId,
            VswitchId = defaultSwitch.Id,
            EngineVersion = "4.2",
            ShardLists = new[]
            {
                new AliCloud.MongoDB.Inputs.ShardingInstanceShardListArgs
                {
                    NodeClass = "dds.shard.mid",
                    NodeStorage = 10,
                },
                new AliCloud.MongoDB.Inputs.ShardingInstanceShardListArgs
                {
                    NodeClass = "dds.shard.standard",
                    NodeStorage = 20,
                    ReadonlyReplicas = 1,
                },
            },
            MongoLists = new[]
            {
                new AliCloud.MongoDB.Inputs.ShardingInstanceMongoListArgs
                {
                    NodeClass = "dds.mongos.mid",
                },
                new AliCloud.MongoDB.Inputs.ShardingInstanceMongoListArgs
                {
                    NodeClass = "dds.mongos.mid",
                },
            },
        });
    
        var defaultShardingNetworkPrivateAddress = new AliCloud.MongoDB.ShardingNetworkPrivateAddress("defaultShardingNetworkPrivateAddress", new()
        {
            DbInstanceId = defaultShardingInstance.Id,
            NodeId = defaultShardingInstance.ShardLists.Apply(shardLists => shardLists[0].NodeId),
            ZoneId = defaultShardingInstance.ZoneId,
            AccountName = "example",
            AccountPassword = "Example_123",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.alicloud.mongodb.MongodbFunctions;
    import com.pulumi.alicloud.mongodb.inputs.GetZonesArgs;
    import com.pulumi.alicloud.vpc.Network;
    import com.pulumi.alicloud.vpc.NetworkArgs;
    import com.pulumi.alicloud.vpc.Switch;
    import com.pulumi.alicloud.vpc.SwitchArgs;
    import com.pulumi.alicloud.mongodb.ShardingInstance;
    import com.pulumi.alicloud.mongodb.ShardingInstanceArgs;
    import com.pulumi.alicloud.mongodb.inputs.ShardingInstanceShardListArgs;
    import com.pulumi.alicloud.mongodb.inputs.ShardingInstanceMongoListArgs;
    import com.pulumi.alicloud.mongodb.ShardingNetworkPrivateAddress;
    import com.pulumi.alicloud.mongodb.ShardingNetworkPrivateAddressArgs;
    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 config = ctx.config();
            final var name = config.get("name").orElse("terraform-example");
            final var defaultZones = MongodbFunctions.getZones();
    
            final var index = defaultZones.applyValue(getZonesResult -> getZonesResult.zones()).length() - 1;
    
            final var zoneId = defaultZones.applyValue(getZonesResult -> getZonesResult.zones())[index].id();
    
            var defaultNetwork = new Network("defaultNetwork", NetworkArgs.builder()        
                .vpcName(name)
                .cidrBlock("172.17.3.0/24")
                .build());
    
            var defaultSwitch = new Switch("defaultSwitch", SwitchArgs.builder()        
                .vswitchName(name)
                .cidrBlock("172.17.3.0/24")
                .vpcId(defaultNetwork.id())
                .zoneId(zoneId)
                .build());
    
            var defaultShardingInstance = new ShardingInstance("defaultShardingInstance", ShardingInstanceArgs.builder()        
                .zoneId(zoneId)
                .vswitchId(defaultSwitch.id())
                .engineVersion("4.2")
                .shardLists(            
                    ShardingInstanceShardListArgs.builder()
                        .nodeClass("dds.shard.mid")
                        .nodeStorage("10")
                        .build(),
                    ShardingInstanceShardListArgs.builder()
                        .nodeClass("dds.shard.standard")
                        .nodeStorage("20")
                        .readonlyReplicas("1")
                        .build())
                .mongoLists(            
                    ShardingInstanceMongoListArgs.builder()
                        .nodeClass("dds.mongos.mid")
                        .build(),
                    ShardingInstanceMongoListArgs.builder()
                        .nodeClass("dds.mongos.mid")
                        .build())
                .build());
    
            var defaultShardingNetworkPrivateAddress = new ShardingNetworkPrivateAddress("defaultShardingNetworkPrivateAddress", ShardingNetworkPrivateAddressArgs.builder()        
                .dbInstanceId(defaultShardingInstance.id())
                .nodeId(defaultShardingInstance.shardLists().applyValue(shardLists -> shardLists[0].nodeId()))
                .zoneId(defaultShardingInstance.zoneId())
                .accountName("example")
                .accountPassword("Example_123")
                .build());
    
        }
    }
    
    Coming soon!
    

    Create ShardingNetworkPrivateAddress Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new ShardingNetworkPrivateAddress(name: string, args: ShardingNetworkPrivateAddressArgs, opts?: CustomResourceOptions);
    @overload
    def ShardingNetworkPrivateAddress(resource_name: str,
                                      args: ShardingNetworkPrivateAddressArgs,
                                      opts: Optional[ResourceOptions] = None)
    
    @overload
    def ShardingNetworkPrivateAddress(resource_name: str,
                                      opts: Optional[ResourceOptions] = None,
                                      db_instance_id: Optional[str] = None,
                                      node_id: Optional[str] = None,
                                      zone_id: Optional[str] = None,
                                      account_name: Optional[str] = None,
                                      account_password: Optional[str] = None)
    func NewShardingNetworkPrivateAddress(ctx *Context, name string, args ShardingNetworkPrivateAddressArgs, opts ...ResourceOption) (*ShardingNetworkPrivateAddress, error)
    public ShardingNetworkPrivateAddress(string name, ShardingNetworkPrivateAddressArgs args, CustomResourceOptions? opts = null)
    public ShardingNetworkPrivateAddress(String name, ShardingNetworkPrivateAddressArgs args)
    public ShardingNetworkPrivateAddress(String name, ShardingNetworkPrivateAddressArgs args, CustomResourceOptions options)
    
    type: alicloud:mongodb:ShardingNetworkPrivateAddress
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

    name string
    The unique name of the resource.
    args ShardingNetworkPrivateAddressArgs
    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 ShardingNetworkPrivateAddressArgs
    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 ShardingNetworkPrivateAddressArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ShardingNetworkPrivateAddressArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ShardingNetworkPrivateAddressArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Example

    The following reference example uses placeholder values for all input properties.

    var shardingNetworkPrivateAddressResource = new AliCloud.MongoDB.ShardingNetworkPrivateAddress("shardingNetworkPrivateAddressResource", new()
    {
        DbInstanceId = "string",
        NodeId = "string",
        ZoneId = "string",
        AccountName = "string",
        AccountPassword = "string",
    });
    
    example, err := mongodb.NewShardingNetworkPrivateAddress(ctx, "shardingNetworkPrivateAddressResource", &mongodb.ShardingNetworkPrivateAddressArgs{
    	DbInstanceId:    pulumi.String("string"),
    	NodeId:          pulumi.String("string"),
    	ZoneId:          pulumi.String("string"),
    	AccountName:     pulumi.String("string"),
    	AccountPassword: pulumi.String("string"),
    })
    
    var shardingNetworkPrivateAddressResource = new ShardingNetworkPrivateAddress("shardingNetworkPrivateAddressResource", ShardingNetworkPrivateAddressArgs.builder()        
        .dbInstanceId("string")
        .nodeId("string")
        .zoneId("string")
        .accountName("string")
        .accountPassword("string")
        .build());
    
    sharding_network_private_address_resource = alicloud.mongodb.ShardingNetworkPrivateAddress("shardingNetworkPrivateAddressResource",
        db_instance_id="string",
        node_id="string",
        zone_id="string",
        account_name="string",
        account_password="string")
    
    const shardingNetworkPrivateAddressResource = new alicloud.mongodb.ShardingNetworkPrivateAddress("shardingNetworkPrivateAddressResource", {
        dbInstanceId: "string",
        nodeId: "string",
        zoneId: "string",
        accountName: "string",
        accountPassword: "string",
    });
    
    type: alicloud:mongodb:ShardingNetworkPrivateAddress
    properties:
        accountName: string
        accountPassword: string
        dbInstanceId: string
        nodeId: string
        zoneId: string
    

    ShardingNetworkPrivateAddress Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    The ShardingNetworkPrivateAddress resource accepts the following input properties:

    DbInstanceId string
    The db instance id.
    NodeId string
    The ID of the Shard node or the ConfigServer node.
    ZoneId string
    The zone ID of the instance.
    AccountName string
    The name of the account.

    • The name must be 4 to 16 characters in length and can contain lowercase letters, digits, and underscores (_). It must start with a lowercase letter.
    • You need to set the account name and password only when you apply for an endpoint for a shard or Configserver node for the first time. In this case, the account name and password are used for all shard and Configserver nodes.
    • The permissions of this account are fixed to read-only.
    AccountPassword string
    Account password.

    • The password must contain at least three of the following character types: uppercase letters, lowercase letters, digits, and special characters. Special characters include !#$%^&*()_+-=.
    • The password must be 8 to 32 characters in length.
    DbInstanceId string
    The db instance id.
    NodeId string
    The ID of the Shard node or the ConfigServer node.
    ZoneId string
    The zone ID of the instance.
    AccountName string
    The name of the account.

    • The name must be 4 to 16 characters in length and can contain lowercase letters, digits, and underscores (_). It must start with a lowercase letter.
    • You need to set the account name and password only when you apply for an endpoint for a shard or Configserver node for the first time. In this case, the account name and password are used for all shard and Configserver nodes.
    • The permissions of this account are fixed to read-only.
    AccountPassword string
    Account password.

    • The password must contain at least three of the following character types: uppercase letters, lowercase letters, digits, and special characters. Special characters include !#$%^&*()_+-=.
    • The password must be 8 to 32 characters in length.
    dbInstanceId String
    The db instance id.
    nodeId String
    The ID of the Shard node or the ConfigServer node.
    zoneId String
    The zone ID of the instance.
    accountName String
    The name of the account.

    • The name must be 4 to 16 characters in length and can contain lowercase letters, digits, and underscores (_). It must start with a lowercase letter.
    • You need to set the account name and password only when you apply for an endpoint for a shard or Configserver node for the first time. In this case, the account name and password are used for all shard and Configserver nodes.
    • The permissions of this account are fixed to read-only.
    accountPassword String
    Account password.

    • The password must contain at least three of the following character types: uppercase letters, lowercase letters, digits, and special characters. Special characters include !#$%^&*()_+-=.
    • The password must be 8 to 32 characters in length.
    dbInstanceId string
    The db instance id.
    nodeId string
    The ID of the Shard node or the ConfigServer node.
    zoneId string
    The zone ID of the instance.
    accountName string
    The name of the account.

    • The name must be 4 to 16 characters in length and can contain lowercase letters, digits, and underscores (_). It must start with a lowercase letter.
    • You need to set the account name and password only when you apply for an endpoint for a shard or Configserver node for the first time. In this case, the account name and password are used for all shard and Configserver nodes.
    • The permissions of this account are fixed to read-only.
    accountPassword string
    Account password.

    • The password must contain at least three of the following character types: uppercase letters, lowercase letters, digits, and special characters. Special characters include !#$%^&*()_+-=.
    • The password must be 8 to 32 characters in length.
    db_instance_id str
    The db instance id.
    node_id str
    The ID of the Shard node or the ConfigServer node.
    zone_id str
    The zone ID of the instance.
    account_name str
    The name of the account.

    • The name must be 4 to 16 characters in length and can contain lowercase letters, digits, and underscores (_). It must start with a lowercase letter.
    • You need to set the account name and password only when you apply for an endpoint for a shard or Configserver node for the first time. In this case, the account name and password are used for all shard and Configserver nodes.
    • The permissions of this account are fixed to read-only.
    account_password str
    Account password.

    • The password must contain at least three of the following character types: uppercase letters, lowercase letters, digits, and special characters. Special characters include !#$%^&*()_+-=.
    • The password must be 8 to 32 characters in length.
    dbInstanceId String
    The db instance id.
    nodeId String
    The ID of the Shard node or the ConfigServer node.
    zoneId String
    The zone ID of the instance.
    accountName String
    The name of the account.

    • The name must be 4 to 16 characters in length and can contain lowercase letters, digits, and underscores (_). It must start with a lowercase letter.
    • You need to set the account name and password only when you apply for an endpoint for a shard or Configserver node for the first time. In this case, the account name and password are used for all shard and Configserver nodes.
    • The permissions of this account are fixed to read-only.
    accountPassword String
    Account password.

    • The password must contain at least three of the following character types: uppercase letters, lowercase letters, digits, and special characters. Special characters include !#$%^&*()_+-=.
    • The password must be 8 to 32 characters in length.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the ShardingNetworkPrivateAddress resource produces the following output properties:

    Id string
    The provider-assigned unique ID for this managed resource.
    NetworkAddresses List<Pulumi.AliCloud.MongoDB.Outputs.ShardingNetworkPrivateAddressNetworkAddress>
    The endpoint of the instance.
    Id string
    The provider-assigned unique ID for this managed resource.
    NetworkAddresses []ShardingNetworkPrivateAddressNetworkAddress
    The endpoint of the instance.
    id String
    The provider-assigned unique ID for this managed resource.
    networkAddresses List<ShardingNetworkPrivateAddressNetworkAddress>
    The endpoint of the instance.
    id string
    The provider-assigned unique ID for this managed resource.
    networkAddresses ShardingNetworkPrivateAddressNetworkAddress[]
    The endpoint of the instance.
    id str
    The provider-assigned unique ID for this managed resource.
    network_addresses Sequence[ShardingNetworkPrivateAddressNetworkAddress]
    The endpoint of the instance.
    id String
    The provider-assigned unique ID for this managed resource.
    networkAddresses List<Property Map>
    The endpoint of the instance.

    Look up Existing ShardingNetworkPrivateAddress Resource

    Get an existing ShardingNetworkPrivateAddress 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?: ShardingNetworkPrivateAddressState, opts?: CustomResourceOptions): ShardingNetworkPrivateAddress
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            account_name: Optional[str] = None,
            account_password: Optional[str] = None,
            db_instance_id: Optional[str] = None,
            network_addresses: Optional[Sequence[ShardingNetworkPrivateAddressNetworkAddressArgs]] = None,
            node_id: Optional[str] = None,
            zone_id: Optional[str] = None) -> ShardingNetworkPrivateAddress
    func GetShardingNetworkPrivateAddress(ctx *Context, name string, id IDInput, state *ShardingNetworkPrivateAddressState, opts ...ResourceOption) (*ShardingNetworkPrivateAddress, error)
    public static ShardingNetworkPrivateAddress Get(string name, Input<string> id, ShardingNetworkPrivateAddressState? state, CustomResourceOptions? opts = null)
    public static ShardingNetworkPrivateAddress get(String name, Output<String> id, ShardingNetworkPrivateAddressState state, CustomResourceOptions options)
    Resource lookup is not supported in YAML
    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.
    The following state arguments are supported:
    AccountName string
    The name of the account.

    • The name must be 4 to 16 characters in length and can contain lowercase letters, digits, and underscores (_). It must start with a lowercase letter.
    • You need to set the account name and password only when you apply for an endpoint for a shard or Configserver node for the first time. In this case, the account name and password are used for all shard and Configserver nodes.
    • The permissions of this account are fixed to read-only.
    AccountPassword string
    Account password.

    • The password must contain at least three of the following character types: uppercase letters, lowercase letters, digits, and special characters. Special characters include !#$%^&*()_+-=.
    • The password must be 8 to 32 characters in length.
    DbInstanceId string
    The db instance id.
    NetworkAddresses List<Pulumi.AliCloud.MongoDB.Inputs.ShardingNetworkPrivateAddressNetworkAddress>
    The endpoint of the instance.
    NodeId string
    The ID of the Shard node or the ConfigServer node.
    ZoneId string
    The zone ID of the instance.
    AccountName string
    The name of the account.

    • The name must be 4 to 16 characters in length and can contain lowercase letters, digits, and underscores (_). It must start with a lowercase letter.
    • You need to set the account name and password only when you apply for an endpoint for a shard or Configserver node for the first time. In this case, the account name and password are used for all shard and Configserver nodes.
    • The permissions of this account are fixed to read-only.
    AccountPassword string
    Account password.

    • The password must contain at least three of the following character types: uppercase letters, lowercase letters, digits, and special characters. Special characters include !#$%^&*()_+-=.
    • The password must be 8 to 32 characters in length.
    DbInstanceId string
    The db instance id.
    NetworkAddresses []ShardingNetworkPrivateAddressNetworkAddressArgs
    The endpoint of the instance.
    NodeId string
    The ID of the Shard node or the ConfigServer node.
    ZoneId string
    The zone ID of the instance.
    accountName String
    The name of the account.

    • The name must be 4 to 16 characters in length and can contain lowercase letters, digits, and underscores (_). It must start with a lowercase letter.
    • You need to set the account name and password only when you apply for an endpoint for a shard or Configserver node for the first time. In this case, the account name and password are used for all shard and Configserver nodes.
    • The permissions of this account are fixed to read-only.
    accountPassword String
    Account password.

    • The password must contain at least three of the following character types: uppercase letters, lowercase letters, digits, and special characters. Special characters include !#$%^&*()_+-=.
    • The password must be 8 to 32 characters in length.
    dbInstanceId String
    The db instance id.
    networkAddresses List<ShardingNetworkPrivateAddressNetworkAddress>
    The endpoint of the instance.
    nodeId String
    The ID of the Shard node or the ConfigServer node.
    zoneId String
    The zone ID of the instance.
    accountName string
    The name of the account.

    • The name must be 4 to 16 characters in length and can contain lowercase letters, digits, and underscores (_). It must start with a lowercase letter.
    • You need to set the account name and password only when you apply for an endpoint for a shard or Configserver node for the first time. In this case, the account name and password are used for all shard and Configserver nodes.
    • The permissions of this account are fixed to read-only.
    accountPassword string
    Account password.

    • The password must contain at least three of the following character types: uppercase letters, lowercase letters, digits, and special characters. Special characters include !#$%^&*()_+-=.
    • The password must be 8 to 32 characters in length.
    dbInstanceId string
    The db instance id.
    networkAddresses ShardingNetworkPrivateAddressNetworkAddress[]
    The endpoint of the instance.
    nodeId string
    The ID of the Shard node or the ConfigServer node.
    zoneId string
    The zone ID of the instance.
    account_name str
    The name of the account.

    • The name must be 4 to 16 characters in length and can contain lowercase letters, digits, and underscores (_). It must start with a lowercase letter.
    • You need to set the account name and password only when you apply for an endpoint for a shard or Configserver node for the first time. In this case, the account name and password are used for all shard and Configserver nodes.
    • The permissions of this account are fixed to read-only.
    account_password str
    Account password.

    • The password must contain at least three of the following character types: uppercase letters, lowercase letters, digits, and special characters. Special characters include !#$%^&*()_+-=.
    • The password must be 8 to 32 characters in length.
    db_instance_id str
    The db instance id.
    network_addresses Sequence[ShardingNetworkPrivateAddressNetworkAddressArgs]
    The endpoint of the instance.
    node_id str
    The ID of the Shard node or the ConfigServer node.
    zone_id str
    The zone ID of the instance.
    accountName String
    The name of the account.

    • The name must be 4 to 16 characters in length and can contain lowercase letters, digits, and underscores (_). It must start with a lowercase letter.
    • You need to set the account name and password only when you apply for an endpoint for a shard or Configserver node for the first time. In this case, the account name and password are used for all shard and Configserver nodes.
    • The permissions of this account are fixed to read-only.
    accountPassword String
    Account password.

    • The password must contain at least three of the following character types: uppercase letters, lowercase letters, digits, and special characters. Special characters include !#$%^&*()_+-=.
    • The password must be 8 to 32 characters in length.
    dbInstanceId String
    The db instance id.
    networkAddresses List<Property Map>
    The endpoint of the instance.
    nodeId String
    The ID of the Shard node or the ConfigServer node.
    zoneId String
    The zone ID of the instance.

    Supporting Types

    ShardingNetworkPrivateAddressNetworkAddress, ShardingNetworkPrivateAddressNetworkAddressArgs

    ExpiredTime string
    The remaining duration of the classic network address. Unit: seconds.
    IpAddress string
    The IP address of the instance.
    NetworkAddress string
    The endpoint of the instance.
    NetworkType string
    The network type.
    NodeId string
    The ID of the Shard node or the ConfigServer node.
    NodeType string
    The type of the node.
    Port string
    The port number.
    Role string
    The role of the node.
    VpcId string
    The ID of the VPC.
    VswitchId string
    The vSwitch ID of the VPC.
    ExpiredTime string
    The remaining duration of the classic network address. Unit: seconds.
    IpAddress string
    The IP address of the instance.
    NetworkAddress string
    The endpoint of the instance.
    NetworkType string
    The network type.
    NodeId string
    The ID of the Shard node or the ConfigServer node.
    NodeType string
    The type of the node.
    Port string
    The port number.
    Role string
    The role of the node.
    VpcId string
    The ID of the VPC.
    VswitchId string
    The vSwitch ID of the VPC.
    expiredTime String
    The remaining duration of the classic network address. Unit: seconds.
    ipAddress String
    The IP address of the instance.
    networkAddress String
    The endpoint of the instance.
    networkType String
    The network type.
    nodeId String
    The ID of the Shard node or the ConfigServer node.
    nodeType String
    The type of the node.
    port String
    The port number.
    role String
    The role of the node.
    vpcId String
    The ID of the VPC.
    vswitchId String
    The vSwitch ID of the VPC.
    expiredTime string
    The remaining duration of the classic network address. Unit: seconds.
    ipAddress string
    The IP address of the instance.
    networkAddress string
    The endpoint of the instance.
    networkType string
    The network type.
    nodeId string
    The ID of the Shard node or the ConfigServer node.
    nodeType string
    The type of the node.
    port string
    The port number.
    role string
    The role of the node.
    vpcId string
    The ID of the VPC.
    vswitchId string
    The vSwitch ID of the VPC.
    expired_time str
    The remaining duration of the classic network address. Unit: seconds.
    ip_address str
    The IP address of the instance.
    network_address str
    The endpoint of the instance.
    network_type str
    The network type.
    node_id str
    The ID of the Shard node or the ConfigServer node.
    node_type str
    The type of the node.
    port str
    The port number.
    role str
    The role of the node.
    vpc_id str
    The ID of the VPC.
    vswitch_id str
    The vSwitch ID of the VPC.
    expiredTime String
    The remaining duration of the classic network address. Unit: seconds.
    ipAddress String
    The IP address of the instance.
    networkAddress String
    The endpoint of the instance.
    networkType String
    The network type.
    nodeId String
    The ID of the Shard node or the ConfigServer node.
    nodeType String
    The type of the node.
    port String
    The port number.
    role String
    The role of the node.
    vpcId String
    The ID of the VPC.
    vswitchId String
    The vSwitch ID of the VPC.

    Import

    MongoDB Sharding Network Private Address can be imported using the id, e.g.

    $ pulumi import alicloud:mongodb/shardingNetworkPrivateAddress:ShardingNetworkPrivateAddress example <db_instance_id>:<node_id>
    

    To learn more about importing existing cloud resources, see Importing resources.

    Package Details

    Repository
    Alibaba Cloud pulumi/pulumi-alicloud
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the alicloud Terraform Provider.
    alicloud logo
    Alibaba Cloud v3.53.0 published on Wednesday, Apr 17, 2024 by Pulumi