1. Packages
  2. Volcengine
  3. API Docs
  4. clb
  5. ServerGroupServer
Volcengine v0.0.45 published on Tuesday, Feb 10, 2026 by Volcengine
volcengine logo
Volcengine v0.0.45 published on Tuesday, Feb 10, 2026 by Volcengine

    Provides a resource to manage server group server

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as volcengine from "@pulumi/volcengine";
    import * as volcengine from "@volcengine/pulumi";
    
    const fooZones = volcengine.ecs.getZones({});
    const fooVpc = new volcengine.vpc.Vpc("fooVpc", {
        vpcName: "acc-test-vpc",
        cidrBlock: "172.16.0.0/16",
    });
    const fooSubnet = new volcengine.vpc.Subnet("fooSubnet", {
        subnetName: "acc-test-subnet",
        cidrBlock: "172.16.0.0/24",
        zoneId: fooZones.then(fooZones => fooZones.zones?.[0]?.id),
        vpcId: fooVpc.id,
    });
    const fooClb = new volcengine.clb.Clb("fooClb", {
        type: "public",
        subnetId: fooSubnet.id,
        loadBalancerSpec: "small_1",
        description: "acc0Demo",
        loadBalancerName: "acc-test-create",
        eipBillingConfig: {
            isp: "BGP",
            eipBillingType: "PostPaidByBandwidth",
            bandwidth: 1,
        },
    });
    const fooServerGroup = new volcengine.clb.ServerGroup("fooServerGroup", {
        loadBalancerId: fooClb.id,
        serverGroupName: "acc-test-create",
        description: "hello demo11",
        type: "instance",
    });
    const fooIpServerGroup = new volcengine.clb.ServerGroup("fooIpServerGroup", {
        loadBalancerId: fooClb.id,
        serverGroupName: "acc-test-create-ip",
        description: "hello demo ip server group",
        type: "ip",
    });
    const fooSecurityGroup = new volcengine.vpc.SecurityGroup("fooSecurityGroup", {
        vpcId: fooVpc.id,
        securityGroupName: "acc-test-security-group",
    });
    const fooInstance = new volcengine.ecs.Instance("fooInstance", {
        imageId: "image-ycjwwciuzy5pkh54xx8f",
        instanceType: "ecs.c3i.large",
        instanceName: "acc-test-ecs-name",
        password: "93f0cb0614Aab12",
        instanceChargeType: "PostPaid",
        systemVolumeType: "ESSD_PL0",
        systemVolumeSize: 40,
        subnetId: fooSubnet.id,
        securityGroupIds: [fooSecurityGroup.id],
    });
    const fooServerGroupServer = new volcengine.clb.ServerGroupServer("fooServerGroupServer", {
        serverGroupId: fooServerGroup.id,
        instanceId: fooInstance.id,
        type: "ecs",
        weight: 100,
        port: 80,
        description: "This is a acc test server",
    });
    const fooEni = new volcengine.clb.ServerGroupServer("fooEni", {
        serverGroupId: fooServerGroup.id,
        instanceId: "eni-btgpz5my7ta85h0b2ur*****",
        type: "eni",
        weight: 100,
        port: 8080,
        description: "This is a acc test server use eni",
    });
    const fooIpServerGroupServer = new volcengine.clb.ServerGroupServer("fooIpServerGroupServer", {
        serverGroupId: fooIpServerGroup.id,
        instanceId: "192.168.*.*",
        ip: "192.168.*.*",
        type: "ip",
        weight: 80,
        port: 400,
        description: "This is a acc test server use ip",
    });
    
    import pulumi
    import pulumi_volcengine as volcengine
    
    foo_zones = volcengine.ecs.get_zones()
    foo_vpc = volcengine.vpc.Vpc("fooVpc",
        vpc_name="acc-test-vpc",
        cidr_block="172.16.0.0/16")
    foo_subnet = volcengine.vpc.Subnet("fooSubnet",
        subnet_name="acc-test-subnet",
        cidr_block="172.16.0.0/24",
        zone_id=foo_zones.zones[0].id,
        vpc_id=foo_vpc.id)
    foo_clb = volcengine.clb.Clb("fooClb",
        type="public",
        subnet_id=foo_subnet.id,
        load_balancer_spec="small_1",
        description="acc0Demo",
        load_balancer_name="acc-test-create",
        eip_billing_config=volcengine.clb.ClbEipBillingConfigArgs(
            isp="BGP",
            eip_billing_type="PostPaidByBandwidth",
            bandwidth=1,
        ))
    foo_server_group = volcengine.clb.ServerGroup("fooServerGroup",
        load_balancer_id=foo_clb.id,
        server_group_name="acc-test-create",
        description="hello demo11",
        type="instance")
    foo_ip_server_group = volcengine.clb.ServerGroup("fooIpServerGroup",
        load_balancer_id=foo_clb.id,
        server_group_name="acc-test-create-ip",
        description="hello demo ip server group",
        type="ip")
    foo_security_group = volcengine.vpc.SecurityGroup("fooSecurityGroup",
        vpc_id=foo_vpc.id,
        security_group_name="acc-test-security-group")
    foo_instance = volcengine.ecs.Instance("fooInstance",
        image_id="image-ycjwwciuzy5pkh54xx8f",
        instance_type="ecs.c3i.large",
        instance_name="acc-test-ecs-name",
        password="93f0cb0614Aab12",
        instance_charge_type="PostPaid",
        system_volume_type="ESSD_PL0",
        system_volume_size=40,
        subnet_id=foo_subnet.id,
        security_group_ids=[foo_security_group.id])
    foo_server_group_server = volcengine.clb.ServerGroupServer("fooServerGroupServer",
        server_group_id=foo_server_group.id,
        instance_id=foo_instance.id,
        type="ecs",
        weight=100,
        port=80,
        description="This is a acc test server")
    foo_eni = volcengine.clb.ServerGroupServer("fooEni",
        server_group_id=foo_server_group.id,
        instance_id="eni-btgpz5my7ta85h0b2ur*****",
        type="eni",
        weight=100,
        port=8080,
        description="This is a acc test server use eni")
    foo_ip_server_group_server = volcengine.clb.ServerGroupServer("fooIpServerGroupServer",
        server_group_id=foo_ip_server_group.id,
        instance_id="192.168.*.*",
        ip="192.168.*.*",
        type="ip",
        weight=80,
        port=400,
        description="This is a acc test server use ip")
    
    package main
    
    import (
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    	"github.com/volcengine/pulumi-volcengine/sdk/go/volcengine/clb"
    	"github.com/volcengine/pulumi-volcengine/sdk/go/volcengine/ecs"
    	"github.com/volcengine/pulumi-volcengine/sdk/go/volcengine/vpc"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		fooZones, err := ecs.GetZones(ctx, nil, nil)
    		if err != nil {
    			return err
    		}
    		fooVpc, err := vpc.NewVpc(ctx, "fooVpc", &vpc.VpcArgs{
    			VpcName:   pulumi.String("acc-test-vpc"),
    			CidrBlock: pulumi.String("172.16.0.0/16"),
    		})
    		if err != nil {
    			return err
    		}
    		fooSubnet, err := vpc.NewSubnet(ctx, "fooSubnet", &vpc.SubnetArgs{
    			SubnetName: pulumi.String("acc-test-subnet"),
    			CidrBlock:  pulumi.String("172.16.0.0/24"),
    			ZoneId:     pulumi.String(fooZones.Zones[0].Id),
    			VpcId:      fooVpc.ID(),
    		})
    		if err != nil {
    			return err
    		}
    		fooClb, err := clb.NewClb(ctx, "fooClb", &clb.ClbArgs{
    			Type:             pulumi.String("public"),
    			SubnetId:         fooSubnet.ID(),
    			LoadBalancerSpec: pulumi.String("small_1"),
    			Description:      pulumi.String("acc0Demo"),
    			LoadBalancerName: pulumi.String("acc-test-create"),
    			EipBillingConfig: &clb.ClbEipBillingConfigArgs{
    				Isp:            pulumi.String("BGP"),
    				EipBillingType: pulumi.String("PostPaidByBandwidth"),
    				Bandwidth:      pulumi.Int(1),
    			},
    		})
    		if err != nil {
    			return err
    		}
    		fooServerGroup, err := clb.NewServerGroup(ctx, "fooServerGroup", &clb.ServerGroupArgs{
    			LoadBalancerId:  fooClb.ID(),
    			ServerGroupName: pulumi.String("acc-test-create"),
    			Description:     pulumi.String("hello demo11"),
    			Type:            pulumi.String("instance"),
    		})
    		if err != nil {
    			return err
    		}
    		fooIpServerGroup, err := clb.NewServerGroup(ctx, "fooIpServerGroup", &clb.ServerGroupArgs{
    			LoadBalancerId:  fooClb.ID(),
    			ServerGroupName: pulumi.String("acc-test-create-ip"),
    			Description:     pulumi.String("hello demo ip server group"),
    			Type:            pulumi.String("ip"),
    		})
    		if err != nil {
    			return err
    		}
    		fooSecurityGroup, err := vpc.NewSecurityGroup(ctx, "fooSecurityGroup", &vpc.SecurityGroupArgs{
    			VpcId:             fooVpc.ID(),
    			SecurityGroupName: pulumi.String("acc-test-security-group"),
    		})
    		if err != nil {
    			return err
    		}
    		fooInstance, err := ecs.NewInstance(ctx, "fooInstance", &ecs.InstanceArgs{
    			ImageId:            pulumi.String("image-ycjwwciuzy5pkh54xx8f"),
    			InstanceType:       pulumi.String("ecs.c3i.large"),
    			InstanceName:       pulumi.String("acc-test-ecs-name"),
    			Password:           pulumi.String("93f0cb0614Aab12"),
    			InstanceChargeType: pulumi.String("PostPaid"),
    			SystemVolumeType:   pulumi.String("ESSD_PL0"),
    			SystemVolumeSize:   pulumi.Int(40),
    			SubnetId:           fooSubnet.ID(),
    			SecurityGroupIds: pulumi.StringArray{
    				fooSecurityGroup.ID(),
    			},
    		})
    		if err != nil {
    			return err
    		}
    		_, err = clb.NewServerGroupServer(ctx, "fooServerGroupServer", &clb.ServerGroupServerArgs{
    			ServerGroupId: fooServerGroup.ID(),
    			InstanceId:    fooInstance.ID(),
    			Type:          pulumi.String("ecs"),
    			Weight:        pulumi.Int(100),
    			Port:          pulumi.Int(80),
    			Description:   pulumi.String("This is a acc test server"),
    		})
    		if err != nil {
    			return err
    		}
    		_, err = clb.NewServerGroupServer(ctx, "fooEni", &clb.ServerGroupServerArgs{
    			ServerGroupId: fooServerGroup.ID(),
    			InstanceId:    pulumi.String("eni-btgpz5my7ta85h0b2ur*****"),
    			Type:          pulumi.String("eni"),
    			Weight:        pulumi.Int(100),
    			Port:          pulumi.Int(8080),
    			Description:   pulumi.String("This is a acc test server use eni"),
    		})
    		if err != nil {
    			return err
    		}
    		_, err = clb.NewServerGroupServer(ctx, "fooIpServerGroupServer", &clb.ServerGroupServerArgs{
    			ServerGroupId: fooIpServerGroup.ID(),
    			InstanceId:    pulumi.String("192.168.*.*"),
    			Ip:            pulumi.String("192.168.*.*"),
    			Type:          pulumi.String("ip"),
    			Weight:        pulumi.Int(80),
    			Port:          pulumi.Int(400),
    			Description:   pulumi.String("This is a acc test server use ip"),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Volcengine = Pulumi.Volcengine;
    
    return await Deployment.RunAsync(() => 
    {
        var fooZones = Volcengine.Ecs.GetZones.Invoke();
    
        var fooVpc = new Volcengine.Vpc.Vpc("fooVpc", new()
        {
            VpcName = "acc-test-vpc",
            CidrBlock = "172.16.0.0/16",
        });
    
        var fooSubnet = new Volcengine.Vpc.Subnet("fooSubnet", new()
        {
            SubnetName = "acc-test-subnet",
            CidrBlock = "172.16.0.0/24",
            ZoneId = fooZones.Apply(getZonesResult => getZonesResult.Zones[0]?.Id),
            VpcId = fooVpc.Id,
        });
    
        var fooClb = new Volcengine.Clb.Clb("fooClb", new()
        {
            Type = "public",
            SubnetId = fooSubnet.Id,
            LoadBalancerSpec = "small_1",
            Description = "acc0Demo",
            LoadBalancerName = "acc-test-create",
            EipBillingConfig = new Volcengine.Clb.Inputs.ClbEipBillingConfigArgs
            {
                Isp = "BGP",
                EipBillingType = "PostPaidByBandwidth",
                Bandwidth = 1,
            },
        });
    
        var fooServerGroup = new Volcengine.Clb.ServerGroup("fooServerGroup", new()
        {
            LoadBalancerId = fooClb.Id,
            ServerGroupName = "acc-test-create",
            Description = "hello demo11",
            Type = "instance",
        });
    
        var fooIpServerGroup = new Volcengine.Clb.ServerGroup("fooIpServerGroup", new()
        {
            LoadBalancerId = fooClb.Id,
            ServerGroupName = "acc-test-create-ip",
            Description = "hello demo ip server group",
            Type = "ip",
        });
    
        var fooSecurityGroup = new Volcengine.Vpc.SecurityGroup("fooSecurityGroup", new()
        {
            VpcId = fooVpc.Id,
            SecurityGroupName = "acc-test-security-group",
        });
    
        var fooInstance = new Volcengine.Ecs.Instance("fooInstance", new()
        {
            ImageId = "image-ycjwwciuzy5pkh54xx8f",
            InstanceType = "ecs.c3i.large",
            InstanceName = "acc-test-ecs-name",
            Password = "93f0cb0614Aab12",
            InstanceChargeType = "PostPaid",
            SystemVolumeType = "ESSD_PL0",
            SystemVolumeSize = 40,
            SubnetId = fooSubnet.Id,
            SecurityGroupIds = new[]
            {
                fooSecurityGroup.Id,
            },
        });
    
        var fooServerGroupServer = new Volcengine.Clb.ServerGroupServer("fooServerGroupServer", new()
        {
            ServerGroupId = fooServerGroup.Id,
            InstanceId = fooInstance.Id,
            Type = "ecs",
            Weight = 100,
            Port = 80,
            Description = "This is a acc test server",
        });
    
        var fooEni = new Volcengine.Clb.ServerGroupServer("fooEni", new()
        {
            ServerGroupId = fooServerGroup.Id,
            InstanceId = "eni-btgpz5my7ta85h0b2ur*****",
            Type = "eni",
            Weight = 100,
            Port = 8080,
            Description = "This is a acc test server use eni",
        });
    
        var fooIpServerGroupServer = new Volcengine.Clb.ServerGroupServer("fooIpServerGroupServer", new()
        {
            ServerGroupId = fooIpServerGroup.Id,
            InstanceId = "192.168.*.*",
            Ip = "192.168.*.*",
            Type = "ip",
            Weight = 80,
            Port = 400,
            Description = "This is a acc test server use ip",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.volcengine.ecs.EcsFunctions;
    import com.pulumi.volcengine.ecs.inputs.GetZonesArgs;
    import com.pulumi.volcengine.vpc.Vpc;
    import com.pulumi.volcengine.vpc.VpcArgs;
    import com.pulumi.volcengine.vpc.Subnet;
    import com.pulumi.volcengine.vpc.SubnetArgs;
    import com.pulumi.volcengine.clb.Clb;
    import com.pulumi.volcengine.clb.ClbArgs;
    import com.pulumi.volcengine.clb.inputs.ClbEipBillingConfigArgs;
    import com.pulumi.volcengine.clb.ServerGroup;
    import com.pulumi.volcengine.clb.ServerGroupArgs;
    import com.pulumi.volcengine.vpc.SecurityGroup;
    import com.pulumi.volcengine.vpc.SecurityGroupArgs;
    import com.pulumi.volcengine.ecs.Instance;
    import com.pulumi.volcengine.ecs.InstanceArgs;
    import com.pulumi.volcengine.clb.ServerGroupServer;
    import com.pulumi.volcengine.clb.ServerGroupServerArgs;
    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 fooZones = EcsFunctions.getZones();
    
            var fooVpc = new Vpc("fooVpc", VpcArgs.builder()        
                .vpcName("acc-test-vpc")
                .cidrBlock("172.16.0.0/16")
                .build());
    
            var fooSubnet = new Subnet("fooSubnet", SubnetArgs.builder()        
                .subnetName("acc-test-subnet")
                .cidrBlock("172.16.0.0/24")
                .zoneId(fooZones.applyValue(getZonesResult -> getZonesResult.zones()[0].id()))
                .vpcId(fooVpc.id())
                .build());
    
            var fooClb = new Clb("fooClb", ClbArgs.builder()        
                .type("public")
                .subnetId(fooSubnet.id())
                .loadBalancerSpec("small_1")
                .description("acc0Demo")
                .loadBalancerName("acc-test-create")
                .eipBillingConfig(ClbEipBillingConfigArgs.builder()
                    .isp("BGP")
                    .eipBillingType("PostPaidByBandwidth")
                    .bandwidth(1)
                    .build())
                .build());
    
            var fooServerGroup = new ServerGroup("fooServerGroup", ServerGroupArgs.builder()        
                .loadBalancerId(fooClb.id())
                .serverGroupName("acc-test-create")
                .description("hello demo11")
                .type("instance")
                .build());
    
            var fooIpServerGroup = new ServerGroup("fooIpServerGroup", ServerGroupArgs.builder()        
                .loadBalancerId(fooClb.id())
                .serverGroupName("acc-test-create-ip")
                .description("hello demo ip server group")
                .type("ip")
                .build());
    
            var fooSecurityGroup = new SecurityGroup("fooSecurityGroup", SecurityGroupArgs.builder()        
                .vpcId(fooVpc.id())
                .securityGroupName("acc-test-security-group")
                .build());
    
            var fooInstance = new Instance("fooInstance", InstanceArgs.builder()        
                .imageId("image-ycjwwciuzy5pkh54xx8f")
                .instanceType("ecs.c3i.large")
                .instanceName("acc-test-ecs-name")
                .password("93f0cb0614Aab12")
                .instanceChargeType("PostPaid")
                .systemVolumeType("ESSD_PL0")
                .systemVolumeSize(40)
                .subnetId(fooSubnet.id())
                .securityGroupIds(fooSecurityGroup.id())
                .build());
    
            var fooServerGroupServer = new ServerGroupServer("fooServerGroupServer", ServerGroupServerArgs.builder()        
                .serverGroupId(fooServerGroup.id())
                .instanceId(fooInstance.id())
                .type("ecs")
                .weight(100)
                .port(80)
                .description("This is a acc test server")
                .build());
    
            var fooEni = new ServerGroupServer("fooEni", ServerGroupServerArgs.builder()        
                .serverGroupId(fooServerGroup.id())
                .instanceId("eni-btgpz5my7ta85h0b2ur*****")
                .type("eni")
                .weight(100)
                .port(8080)
                .description("This is a acc test server use eni")
                .build());
    
            var fooIpServerGroupServer = new ServerGroupServer("fooIpServerGroupServer", ServerGroupServerArgs.builder()        
                .serverGroupId(fooIpServerGroup.id())
                .instanceId("192.168.*.*")
                .ip("192.168.*.*")
                .type("ip")
                .weight(80)
                .port(400)
                .description("This is a acc test server use ip")
                .build());
    
        }
    }
    
    resources:
      fooVpc:
        type: volcengine:vpc:Vpc
        properties:
          vpcName: acc-test-vpc
          cidrBlock: 172.16.0.0/16
      fooSubnet:
        type: volcengine:vpc:Subnet
        properties:
          subnetName: acc-test-subnet
          cidrBlock: 172.16.0.0/24
          zoneId: ${fooZones.zones[0].id}
          vpcId: ${fooVpc.id}
      fooClb:
        type: volcengine:clb:Clb
        properties:
          type: public
          subnetId: ${fooSubnet.id}
          loadBalancerSpec: small_1
          description: acc0Demo
          loadBalancerName: acc-test-create
          eipBillingConfig:
            isp: BGP
            eipBillingType: PostPaidByBandwidth
            bandwidth: 1
      fooServerGroup:
        type: volcengine:clb:ServerGroup
        properties:
          loadBalancerId: ${fooClb.id}
          serverGroupName: acc-test-create
          description: hello demo11
          type: instance
      fooIpServerGroup:
        type: volcengine:clb:ServerGroup
        properties:
          loadBalancerId: ${fooClb.id}
          serverGroupName: acc-test-create-ip
          description: hello demo ip server group
          type: ip
      fooSecurityGroup:
        type: volcengine:vpc:SecurityGroup
        properties:
          vpcId: ${fooVpc.id}
          securityGroupName: acc-test-security-group
      fooInstance:
        type: volcengine:ecs:Instance
        properties:
          imageId: image-ycjwwciuzy5pkh54xx8f
          instanceType: ecs.c3i.large
          instanceName: acc-test-ecs-name
          password: 93f0cb0614Aab12
          instanceChargeType: PostPaid
          systemVolumeType: ESSD_PL0
          systemVolumeSize: 40
          subnetId: ${fooSubnet.id}
          securityGroupIds:
            - ${fooSecurityGroup.id}
      fooServerGroupServer:
        type: volcengine:clb:ServerGroupServer
        properties:
          serverGroupId: ${fooServerGroup.id}
          instanceId: ${fooInstance.id}
          type: ecs
          weight: 100
          port: 80
          description: This is a acc test server
      fooEni:
        type: volcengine:clb:ServerGroupServer
        properties:
          serverGroupId: ${fooServerGroup.id}
          instanceId: eni-btgpz5my7ta85h0b2ur*****
          type: eni
          weight: 100
          port: 8080
          description: This is a acc test server use eni
      fooIpServerGroupServer:
        type: volcengine:clb:ServerGroupServer
        properties:
          serverGroupId: ${fooIpServerGroup.id}
          instanceId: 192.168.*.*
          ip: 192.168.*.*
          type: ip
          weight: 80
          port: 400
          description: This is a acc test server use ip
    variables:
      fooZones:
        fn::invoke:
          Function: volcengine:ecs:getZones
          Arguments: {}
    

    Create ServerGroupServer Resource

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

    Constructor syntax

    new ServerGroupServer(name: string, args: ServerGroupServerArgs, opts?: CustomResourceOptions);
    @overload
    def ServerGroupServer(resource_name: str,
                          args: ServerGroupServerArgs,
                          opts: Optional[ResourceOptions] = None)
    
    @overload
    def ServerGroupServer(resource_name: str,
                          opts: Optional[ResourceOptions] = None,
                          instance_id: Optional[str] = None,
                          port: Optional[int] = None,
                          server_group_id: Optional[str] = None,
                          type: Optional[str] = None,
                          description: Optional[str] = None,
                          ip: Optional[str] = None,
                          weight: Optional[int] = None)
    func NewServerGroupServer(ctx *Context, name string, args ServerGroupServerArgs, opts ...ResourceOption) (*ServerGroupServer, error)
    public ServerGroupServer(string name, ServerGroupServerArgs args, CustomResourceOptions? opts = null)
    public ServerGroupServer(String name, ServerGroupServerArgs args)
    public ServerGroupServer(String name, ServerGroupServerArgs args, CustomResourceOptions options)
    
    type: volcengine:clb:ServerGroupServer
    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 ServerGroupServerArgs
    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 ServerGroupServerArgs
    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 ServerGroupServerArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ServerGroupServerArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ServerGroupServerArgs
    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 volcengineServerGroupServerResource = new Volcengine.Clb.ServerGroupServer("volcengineServerGroupServerResource", new()
    {
        InstanceId = "string",
        Port = 0,
        ServerGroupId = "string",
        Type = "string",
        Description = "string",
        Ip = "string",
        Weight = 0,
    });
    
    example, err := clb.NewServerGroupServer(ctx, "volcengineServerGroupServerResource", &clb.ServerGroupServerArgs{
    	InstanceId:    pulumi.String("string"),
    	Port:          pulumi.Int(0),
    	ServerGroupId: pulumi.String("string"),
    	Type:          pulumi.String("string"),
    	Description:   pulumi.String("string"),
    	Ip:            pulumi.String("string"),
    	Weight:        pulumi.Int(0),
    })
    
    var volcengineServerGroupServerResource = new com.pulumi.volcengine.clb.ServerGroupServer("volcengineServerGroupServerResource", com.pulumi.volcengine.clb.ServerGroupServerArgs.builder()
        .instanceId("string")
        .port(0)
        .serverGroupId("string")
        .type("string")
        .description("string")
        .ip("string")
        .weight(0)
        .build());
    
    volcengine_server_group_server_resource = volcengine.clb.ServerGroupServer("volcengineServerGroupServerResource",
        instance_id="string",
        port=0,
        server_group_id="string",
        type="string",
        description="string",
        ip="string",
        weight=0)
    
    const volcengineServerGroupServerResource = new volcengine.clb.ServerGroupServer("volcengineServerGroupServerResource", {
        instanceId: "string",
        port: 0,
        serverGroupId: "string",
        type: "string",
        description: "string",
        ip: "string",
        weight: 0,
    });
    
    type: volcengine:clb:ServerGroupServer
    properties:
        description: string
        instanceId: string
        ip: string
        port: 0
        serverGroupId: string
        type: string
        weight: 0
    

    ServerGroupServer 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 ServerGroupServer resource accepts the following input properties:

    InstanceId string
    The ID of ecs instance or the network card bound to ecs instance. When the type is ip, this parameter is an IP address.
    Port int
    The port receiving request.
    ServerGroupId string
    The ID of the ServerGroup.
    Type string
    The type of instance. Optional choice contains ecs, eni, ip. When the type of server_group_id is ip, only ip is supported.
    Description string
    The description of the instance.
    Ip string
    The private ip of the instance.
    Weight int
    The weight of the instance, range in 0~100.
    InstanceId string
    The ID of ecs instance or the network card bound to ecs instance. When the type is ip, this parameter is an IP address.
    Port int
    The port receiving request.
    ServerGroupId string
    The ID of the ServerGroup.
    Type string
    The type of instance. Optional choice contains ecs, eni, ip. When the type of server_group_id is ip, only ip is supported.
    Description string
    The description of the instance.
    Ip string
    The private ip of the instance.
    Weight int
    The weight of the instance, range in 0~100.
    instanceId String
    The ID of ecs instance or the network card bound to ecs instance. When the type is ip, this parameter is an IP address.
    port Integer
    The port receiving request.
    serverGroupId String
    The ID of the ServerGroup.
    type String
    The type of instance. Optional choice contains ecs, eni, ip. When the type of server_group_id is ip, only ip is supported.
    description String
    The description of the instance.
    ip String
    The private ip of the instance.
    weight Integer
    The weight of the instance, range in 0~100.
    instanceId string
    The ID of ecs instance or the network card bound to ecs instance. When the type is ip, this parameter is an IP address.
    port number
    The port receiving request.
    serverGroupId string
    The ID of the ServerGroup.
    type string
    The type of instance. Optional choice contains ecs, eni, ip. When the type of server_group_id is ip, only ip is supported.
    description string
    The description of the instance.
    ip string
    The private ip of the instance.
    weight number
    The weight of the instance, range in 0~100.
    instance_id str
    The ID of ecs instance or the network card bound to ecs instance. When the type is ip, this parameter is an IP address.
    port int
    The port receiving request.
    server_group_id str
    The ID of the ServerGroup.
    type str
    The type of instance. Optional choice contains ecs, eni, ip. When the type of server_group_id is ip, only ip is supported.
    description str
    The description of the instance.
    ip str
    The private ip of the instance.
    weight int
    The weight of the instance, range in 0~100.
    instanceId String
    The ID of ecs instance or the network card bound to ecs instance. When the type is ip, this parameter is an IP address.
    port Number
    The port receiving request.
    serverGroupId String
    The ID of the ServerGroup.
    type String
    The type of instance. Optional choice contains ecs, eni, ip. When the type of server_group_id is ip, only ip is supported.
    description String
    The description of the instance.
    ip String
    The private ip of the instance.
    weight Number
    The weight of the instance, range in 0~100.

    Outputs

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

    Id string
    The provider-assigned unique ID for this managed resource.
    ServerId string
    The server id of instance in ServerGroup.
    Id string
    The provider-assigned unique ID for this managed resource.
    ServerId string
    The server id of instance in ServerGroup.
    id String
    The provider-assigned unique ID for this managed resource.
    serverId String
    The server id of instance in ServerGroup.
    id string
    The provider-assigned unique ID for this managed resource.
    serverId string
    The server id of instance in ServerGroup.
    id str
    The provider-assigned unique ID for this managed resource.
    server_id str
    The server id of instance in ServerGroup.
    id String
    The provider-assigned unique ID for this managed resource.
    serverId String
    The server id of instance in ServerGroup.

    Look up Existing ServerGroupServer Resource

    Get an existing ServerGroupServer 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?: ServerGroupServerState, opts?: CustomResourceOptions): ServerGroupServer
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            description: Optional[str] = None,
            instance_id: Optional[str] = None,
            ip: Optional[str] = None,
            port: Optional[int] = None,
            server_group_id: Optional[str] = None,
            server_id: Optional[str] = None,
            type: Optional[str] = None,
            weight: Optional[int] = None) -> ServerGroupServer
    func GetServerGroupServer(ctx *Context, name string, id IDInput, state *ServerGroupServerState, opts ...ResourceOption) (*ServerGroupServer, error)
    public static ServerGroupServer Get(string name, Input<string> id, ServerGroupServerState? state, CustomResourceOptions? opts = null)
    public static ServerGroupServer get(String name, Output<String> id, ServerGroupServerState state, CustomResourceOptions options)
    resources:  _:    type: volcengine:clb:ServerGroupServer    get:      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.
    The following state arguments are supported:
    Description string
    The description of the instance.
    InstanceId string
    The ID of ecs instance or the network card bound to ecs instance. When the type is ip, this parameter is an IP address.
    Ip string
    The private ip of the instance.
    Port int
    The port receiving request.
    ServerGroupId string
    The ID of the ServerGroup.
    ServerId string
    The server id of instance in ServerGroup.
    Type string
    The type of instance. Optional choice contains ecs, eni, ip. When the type of server_group_id is ip, only ip is supported.
    Weight int
    The weight of the instance, range in 0~100.
    Description string
    The description of the instance.
    InstanceId string
    The ID of ecs instance or the network card bound to ecs instance. When the type is ip, this parameter is an IP address.
    Ip string
    The private ip of the instance.
    Port int
    The port receiving request.
    ServerGroupId string
    The ID of the ServerGroup.
    ServerId string
    The server id of instance in ServerGroup.
    Type string
    The type of instance. Optional choice contains ecs, eni, ip. When the type of server_group_id is ip, only ip is supported.
    Weight int
    The weight of the instance, range in 0~100.
    description String
    The description of the instance.
    instanceId String
    The ID of ecs instance or the network card bound to ecs instance. When the type is ip, this parameter is an IP address.
    ip String
    The private ip of the instance.
    port Integer
    The port receiving request.
    serverGroupId String
    The ID of the ServerGroup.
    serverId String
    The server id of instance in ServerGroup.
    type String
    The type of instance. Optional choice contains ecs, eni, ip. When the type of server_group_id is ip, only ip is supported.
    weight Integer
    The weight of the instance, range in 0~100.
    description string
    The description of the instance.
    instanceId string
    The ID of ecs instance or the network card bound to ecs instance. When the type is ip, this parameter is an IP address.
    ip string
    The private ip of the instance.
    port number
    The port receiving request.
    serverGroupId string
    The ID of the ServerGroup.
    serverId string
    The server id of instance in ServerGroup.
    type string
    The type of instance. Optional choice contains ecs, eni, ip. When the type of server_group_id is ip, only ip is supported.
    weight number
    The weight of the instance, range in 0~100.
    description str
    The description of the instance.
    instance_id str
    The ID of ecs instance or the network card bound to ecs instance. When the type is ip, this parameter is an IP address.
    ip str
    The private ip of the instance.
    port int
    The port receiving request.
    server_group_id str
    The ID of the ServerGroup.
    server_id str
    The server id of instance in ServerGroup.
    type str
    The type of instance. Optional choice contains ecs, eni, ip. When the type of server_group_id is ip, only ip is supported.
    weight int
    The weight of the instance, range in 0~100.
    description String
    The description of the instance.
    instanceId String
    The ID of ecs instance or the network card bound to ecs instance. When the type is ip, this parameter is an IP address.
    ip String
    The private ip of the instance.
    port Number
    The port receiving request.
    serverGroupId String
    The ID of the ServerGroup.
    serverId String
    The server id of instance in ServerGroup.
    type String
    The type of instance. Optional choice contains ecs, eni, ip. When the type of server_group_id is ip, only ip is supported.
    weight Number
    The weight of the instance, range in 0~100.

    Import

    ServerGroupServer can be imported using the id, e.g.

    $ pulumi import volcengine:clb/serverGroupServer:ServerGroupServer default rsp-274xltv2*****8tlv3q3s:rs-3ciynux6i1x4w****rszh49sj
    

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

    Package Details

    Repository
    volcengine volcengine/pulumi-volcengine
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the volcengine Terraform Provider.
    volcengine logo
    Volcengine v0.0.45 published on Tuesday, Feb 10, 2026 by Volcengine
      Meet Neo: Your AI Platform Teammate