1. Packages
  2. Alibaba Cloud Provider
  3. API Docs
  4. gwlb
  5. LoadBalancer
Alibaba Cloud v3.75.0 published on Friday, Mar 7, 2025 by Pulumi

alicloud.gwlb.LoadBalancer

Explore with Pulumi AI

alicloud logo
Alibaba Cloud v3.75.0 published on Friday, Mar 7, 2025 by Pulumi

    Provides a GWLB Load Balancer resource.

    For information about GWLB Load Balancer and how to use it, see What is Load Balancer.

    NOTE: Available since v1.234.0.

    Create LoadBalancer Resource

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

    Constructor syntax

    new LoadBalancer(name: string, args: LoadBalancerArgs, opts?: CustomResourceOptions);
    @overload
    def LoadBalancer(resource_name: str,
                     args: LoadBalancerArgs,
                     opts: Optional[ResourceOptions] = None)
    
    @overload
    def LoadBalancer(resource_name: str,
                     opts: Optional[ResourceOptions] = None,
                     vpc_id: Optional[str] = None,
                     zone_mappings: Optional[Sequence[LoadBalancerZoneMappingArgs]] = None,
                     address_ip_version: Optional[str] = None,
                     dry_run: Optional[bool] = None,
                     load_balancer_name: Optional[str] = None,
                     resource_group_id: Optional[str] = None,
                     tags: Optional[Mapping[str, str]] = None)
    func NewLoadBalancer(ctx *Context, name string, args LoadBalancerArgs, opts ...ResourceOption) (*LoadBalancer, error)
    public LoadBalancer(string name, LoadBalancerArgs args, CustomResourceOptions? opts = null)
    public LoadBalancer(String name, LoadBalancerArgs args)
    public LoadBalancer(String name, LoadBalancerArgs args, CustomResourceOptions options)
    
    type: alicloud:gwlb:LoadBalancer
    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 LoadBalancerArgs
    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 LoadBalancerArgs
    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 LoadBalancerArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args LoadBalancerArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args LoadBalancerArgs
    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 exampleloadBalancerResourceResourceFromGwlbloadBalancer = new AliCloud.Gwlb.LoadBalancer("exampleloadBalancerResourceResourceFromGwlbloadBalancer", new()
    {
        VpcId = "string",
        ZoneMappings = new[]
        {
            new AliCloud.Gwlb.Inputs.LoadBalancerZoneMappingArgs
            {
                VswitchId = "string",
                ZoneId = "string",
                LoadBalancerAddresses = new[]
                {
                    new AliCloud.Gwlb.Inputs.LoadBalancerZoneMappingLoadBalancerAddressArgs
                    {
                        EniId = "string",
                        PrivateIpv4Address = "string",
                    },
                },
            },
        },
        AddressIpVersion = "string",
        DryRun = false,
        LoadBalancerName = "string",
        ResourceGroupId = "string",
        Tags = 
        {
            { "string", "string" },
        },
    });
    
    example, err := gwlb.NewLoadBalancer(ctx, "exampleloadBalancerResourceResourceFromGwlbloadBalancer", &gwlb.LoadBalancerArgs{
    	VpcId: pulumi.String("string"),
    	ZoneMappings: gwlb.LoadBalancerZoneMappingArray{
    		&gwlb.LoadBalancerZoneMappingArgs{
    			VswitchId: pulumi.String("string"),
    			ZoneId:    pulumi.String("string"),
    			LoadBalancerAddresses: gwlb.LoadBalancerZoneMappingLoadBalancerAddressArray{
    				&gwlb.LoadBalancerZoneMappingLoadBalancerAddressArgs{
    					EniId:              pulumi.String("string"),
    					PrivateIpv4Address: pulumi.String("string"),
    				},
    			},
    		},
    	},
    	AddressIpVersion: pulumi.String("string"),
    	DryRun:           pulumi.Bool(false),
    	LoadBalancerName: pulumi.String("string"),
    	ResourceGroupId:  pulumi.String("string"),
    	Tags: pulumi.StringMap{
    		"string": pulumi.String("string"),
    	},
    })
    
    var exampleloadBalancerResourceResourceFromGwlbloadBalancer = new LoadBalancer("exampleloadBalancerResourceResourceFromGwlbloadBalancer", LoadBalancerArgs.builder()
        .vpcId("string")
        .zoneMappings(LoadBalancerZoneMappingArgs.builder()
            .vswitchId("string")
            .zoneId("string")
            .loadBalancerAddresses(LoadBalancerZoneMappingLoadBalancerAddressArgs.builder()
                .eniId("string")
                .privateIpv4Address("string")
                .build())
            .build())
        .addressIpVersion("string")
        .dryRun(false)
        .loadBalancerName("string")
        .resourceGroupId("string")
        .tags(Map.of("string", "string"))
        .build());
    
    exampleload_balancer_resource_resource_from_gwlbload_balancer = alicloud.gwlb.LoadBalancer("exampleloadBalancerResourceResourceFromGwlbloadBalancer",
        vpc_id="string",
        zone_mappings=[{
            "vswitch_id": "string",
            "zone_id": "string",
            "load_balancer_addresses": [{
                "eni_id": "string",
                "private_ipv4_address": "string",
            }],
        }],
        address_ip_version="string",
        dry_run=False,
        load_balancer_name="string",
        resource_group_id="string",
        tags={
            "string": "string",
        })
    
    const exampleloadBalancerResourceResourceFromGwlbloadBalancer = new alicloud.gwlb.LoadBalancer("exampleloadBalancerResourceResourceFromGwlbloadBalancer", {
        vpcId: "string",
        zoneMappings: [{
            vswitchId: "string",
            zoneId: "string",
            loadBalancerAddresses: [{
                eniId: "string",
                privateIpv4Address: "string",
            }],
        }],
        addressIpVersion: "string",
        dryRun: false,
        loadBalancerName: "string",
        resourceGroupId: "string",
        tags: {
            string: "string",
        },
    });
    
    type: alicloud:gwlb:LoadBalancer
    properties:
        addressIpVersion: string
        dryRun: false
        loadBalancerName: string
        resourceGroupId: string
        tags:
            string: string
        vpcId: string
        zoneMappings:
            - loadBalancerAddresses:
                - eniId: string
                  privateIpv4Address: string
              vswitchId: string
              zoneId: string
    

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

    VpcId string
    The virtual private cloud (VPC) ID.
    ZoneMappings List<Pulumi.AliCloud.Gwlb.Inputs.LoadBalancerZoneMapping>
    The mappings between zones and vSwitches. You must specify at least one zone. You can specify at most 20 zones. If the region supports two or more zones, we recommend that you select two or more zones. See zone_mappings below.
    AddressIpVersion string
    The IP version. Valid values:

    • Ipv4: IPv4 (default)
    DryRun bool
    Specifies whether to perform a dry run, without performing the actual request. Valid values:
    LoadBalancerName string

    The GWLB instance name.

    The name must be 2 to 128 characters in length, and can contain letters, digits, periods (.), underscores (_), and hyphens (-). The name must start with a letter.

    ResourceGroupId string
    The ID of the resource group.
    Tags Dictionary<string, string>
    The tag keys. You can specify at most 20 tags in each call.
    VpcId string
    The virtual private cloud (VPC) ID.
    ZoneMappings []LoadBalancerZoneMappingArgs
    The mappings between zones and vSwitches. You must specify at least one zone. You can specify at most 20 zones. If the region supports two or more zones, we recommend that you select two or more zones. See zone_mappings below.
    AddressIpVersion string
    The IP version. Valid values:

    • Ipv4: IPv4 (default)
    DryRun bool
    Specifies whether to perform a dry run, without performing the actual request. Valid values:
    LoadBalancerName string

    The GWLB instance name.

    The name must be 2 to 128 characters in length, and can contain letters, digits, periods (.), underscores (_), and hyphens (-). The name must start with a letter.

    ResourceGroupId string
    The ID of the resource group.
    Tags map[string]string
    The tag keys. You can specify at most 20 tags in each call.
    vpcId String
    The virtual private cloud (VPC) ID.
    zoneMappings List<LoadBalancerZoneMapping>
    The mappings between zones and vSwitches. You must specify at least one zone. You can specify at most 20 zones. If the region supports two or more zones, we recommend that you select two or more zones. See zone_mappings below.
    addressIpVersion String
    The IP version. Valid values:

    • Ipv4: IPv4 (default)
    dryRun Boolean
    Specifies whether to perform a dry run, without performing the actual request. Valid values:
    loadBalancerName String

    The GWLB instance name.

    The name must be 2 to 128 characters in length, and can contain letters, digits, periods (.), underscores (_), and hyphens (-). The name must start with a letter.

    resourceGroupId String
    The ID of the resource group.
    tags Map<String,String>
    The tag keys. You can specify at most 20 tags in each call.
    vpcId string
    The virtual private cloud (VPC) ID.
    zoneMappings LoadBalancerZoneMapping[]
    The mappings between zones and vSwitches. You must specify at least one zone. You can specify at most 20 zones. If the region supports two or more zones, we recommend that you select two or more zones. See zone_mappings below.
    addressIpVersion string
    The IP version. Valid values:

    • Ipv4: IPv4 (default)
    dryRun boolean
    Specifies whether to perform a dry run, without performing the actual request. Valid values:
    loadBalancerName string

    The GWLB instance name.

    The name must be 2 to 128 characters in length, and can contain letters, digits, periods (.), underscores (_), and hyphens (-). The name must start with a letter.

    resourceGroupId string
    The ID of the resource group.
    tags {[key: string]: string}
    The tag keys. You can specify at most 20 tags in each call.
    vpc_id str
    The virtual private cloud (VPC) ID.
    zone_mappings Sequence[LoadBalancerZoneMappingArgs]
    The mappings between zones and vSwitches. You must specify at least one zone. You can specify at most 20 zones. If the region supports two or more zones, we recommend that you select two or more zones. See zone_mappings below.
    address_ip_version str
    The IP version. Valid values:

    • Ipv4: IPv4 (default)
    dry_run bool
    Specifies whether to perform a dry run, without performing the actual request. Valid values:
    load_balancer_name str

    The GWLB instance name.

    The name must be 2 to 128 characters in length, and can contain letters, digits, periods (.), underscores (_), and hyphens (-). The name must start with a letter.

    resource_group_id str
    The ID of the resource group.
    tags Mapping[str, str]
    The tag keys. You can specify at most 20 tags in each call.
    vpcId String
    The virtual private cloud (VPC) ID.
    zoneMappings List<Property Map>
    The mappings between zones and vSwitches. You must specify at least one zone. You can specify at most 20 zones. If the region supports two or more zones, we recommend that you select two or more zones. See zone_mappings below.
    addressIpVersion String
    The IP version. Valid values:

    • Ipv4: IPv4 (default)
    dryRun Boolean
    Specifies whether to perform a dry run, without performing the actual request. Valid values:
    loadBalancerName String

    The GWLB instance name.

    The name must be 2 to 128 characters in length, and can contain letters, digits, periods (.), underscores (_), and hyphens (-). The name must start with a letter.

    resourceGroupId String
    The ID of the resource group.
    tags Map<String>
    The tag keys. You can specify at most 20 tags in each call.

    Outputs

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

    CreateTime string
    The time when the resource was created. The time follows the ISO 8601 standard in the yyyy-MM-ddTHH:mm:ssZ format. The time is displayed in UTC.
    Id string
    The provider-assigned unique ID for this managed resource.
    Status string
    The GWLB instance status.
    CreateTime string
    The time when the resource was created. The time follows the ISO 8601 standard in the yyyy-MM-ddTHH:mm:ssZ format. The time is displayed in UTC.
    Id string
    The provider-assigned unique ID for this managed resource.
    Status string
    The GWLB instance status.
    createTime String
    The time when the resource was created. The time follows the ISO 8601 standard in the yyyy-MM-ddTHH:mm:ssZ format. The time is displayed in UTC.
    id String
    The provider-assigned unique ID for this managed resource.
    status String
    The GWLB instance status.
    createTime string
    The time when the resource was created. The time follows the ISO 8601 standard in the yyyy-MM-ddTHH:mm:ssZ format. The time is displayed in UTC.
    id string
    The provider-assigned unique ID for this managed resource.
    status string
    The GWLB instance status.
    create_time str
    The time when the resource was created. The time follows the ISO 8601 standard in the yyyy-MM-ddTHH:mm:ssZ format. The time is displayed in UTC.
    id str
    The provider-assigned unique ID for this managed resource.
    status str
    The GWLB instance status.
    createTime String
    The time when the resource was created. The time follows the ISO 8601 standard in the yyyy-MM-ddTHH:mm:ssZ format. The time is displayed in UTC.
    id String
    The provider-assigned unique ID for this managed resource.
    status String
    The GWLB instance status.

    Look up Existing LoadBalancer Resource

    Get an existing LoadBalancer 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?: LoadBalancerState, opts?: CustomResourceOptions): LoadBalancer
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            address_ip_version: Optional[str] = None,
            create_time: Optional[str] = None,
            dry_run: Optional[bool] = None,
            load_balancer_name: Optional[str] = None,
            resource_group_id: Optional[str] = None,
            status: Optional[str] = None,
            tags: Optional[Mapping[str, str]] = None,
            vpc_id: Optional[str] = None,
            zone_mappings: Optional[Sequence[LoadBalancerZoneMappingArgs]] = None) -> LoadBalancer
    func GetLoadBalancer(ctx *Context, name string, id IDInput, state *LoadBalancerState, opts ...ResourceOption) (*LoadBalancer, error)
    public static LoadBalancer Get(string name, Input<string> id, LoadBalancerState? state, CustomResourceOptions? opts = null)
    public static LoadBalancer get(String name, Output<String> id, LoadBalancerState state, CustomResourceOptions options)
    resources:  _:    type: alicloud:gwlb:LoadBalancer    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:
    AddressIpVersion string
    The IP version. Valid values:

    • Ipv4: IPv4 (default)
    CreateTime string
    The time when the resource was created. The time follows the ISO 8601 standard in the yyyy-MM-ddTHH:mm:ssZ format. The time is displayed in UTC.
    DryRun bool
    Specifies whether to perform a dry run, without performing the actual request. Valid values:
    LoadBalancerName string

    The GWLB instance name.

    The name must be 2 to 128 characters in length, and can contain letters, digits, periods (.), underscores (_), and hyphens (-). The name must start with a letter.

    ResourceGroupId string
    The ID of the resource group.
    Status string
    The GWLB instance status.
    Tags Dictionary<string, string>
    The tag keys. You can specify at most 20 tags in each call.
    VpcId string
    The virtual private cloud (VPC) ID.
    ZoneMappings List<Pulumi.AliCloud.Gwlb.Inputs.LoadBalancerZoneMapping>
    The mappings between zones and vSwitches. You must specify at least one zone. You can specify at most 20 zones. If the region supports two or more zones, we recommend that you select two or more zones. See zone_mappings below.
    AddressIpVersion string
    The IP version. Valid values:

    • Ipv4: IPv4 (default)
    CreateTime string
    The time when the resource was created. The time follows the ISO 8601 standard in the yyyy-MM-ddTHH:mm:ssZ format. The time is displayed in UTC.
    DryRun bool
    Specifies whether to perform a dry run, without performing the actual request. Valid values:
    LoadBalancerName string

    The GWLB instance name.

    The name must be 2 to 128 characters in length, and can contain letters, digits, periods (.), underscores (_), and hyphens (-). The name must start with a letter.

    ResourceGroupId string
    The ID of the resource group.
    Status string
    The GWLB instance status.
    Tags map[string]string
    The tag keys. You can specify at most 20 tags in each call.
    VpcId string
    The virtual private cloud (VPC) ID.
    ZoneMappings []LoadBalancerZoneMappingArgs
    The mappings between zones and vSwitches. You must specify at least one zone. You can specify at most 20 zones. If the region supports two or more zones, we recommend that you select two or more zones. See zone_mappings below.
    addressIpVersion String
    The IP version. Valid values:

    • Ipv4: IPv4 (default)
    createTime String
    The time when the resource was created. The time follows the ISO 8601 standard in the yyyy-MM-ddTHH:mm:ssZ format. The time is displayed in UTC.
    dryRun Boolean
    Specifies whether to perform a dry run, without performing the actual request. Valid values:
    loadBalancerName String

    The GWLB instance name.

    The name must be 2 to 128 characters in length, and can contain letters, digits, periods (.), underscores (_), and hyphens (-). The name must start with a letter.

    resourceGroupId String
    The ID of the resource group.
    status String
    The GWLB instance status.
    tags Map<String,String>
    The tag keys. You can specify at most 20 tags in each call.
    vpcId String
    The virtual private cloud (VPC) ID.
    zoneMappings List<LoadBalancerZoneMapping>
    The mappings between zones and vSwitches. You must specify at least one zone. You can specify at most 20 zones. If the region supports two or more zones, we recommend that you select two or more zones. See zone_mappings below.
    addressIpVersion string
    The IP version. Valid values:

    • Ipv4: IPv4 (default)
    createTime string
    The time when the resource was created. The time follows the ISO 8601 standard in the yyyy-MM-ddTHH:mm:ssZ format. The time is displayed in UTC.
    dryRun boolean
    Specifies whether to perform a dry run, without performing the actual request. Valid values:
    loadBalancerName string

    The GWLB instance name.

    The name must be 2 to 128 characters in length, and can contain letters, digits, periods (.), underscores (_), and hyphens (-). The name must start with a letter.

    resourceGroupId string
    The ID of the resource group.
    status string
    The GWLB instance status.
    tags {[key: string]: string}
    The tag keys. You can specify at most 20 tags in each call.
    vpcId string
    The virtual private cloud (VPC) ID.
    zoneMappings LoadBalancerZoneMapping[]
    The mappings between zones and vSwitches. You must specify at least one zone. You can specify at most 20 zones. If the region supports two or more zones, we recommend that you select two or more zones. See zone_mappings below.
    address_ip_version str
    The IP version. Valid values:

    • Ipv4: IPv4 (default)
    create_time str
    The time when the resource was created. The time follows the ISO 8601 standard in the yyyy-MM-ddTHH:mm:ssZ format. The time is displayed in UTC.
    dry_run bool
    Specifies whether to perform a dry run, without performing the actual request. Valid values:
    load_balancer_name str

    The GWLB instance name.

    The name must be 2 to 128 characters in length, and can contain letters, digits, periods (.), underscores (_), and hyphens (-). The name must start with a letter.

    resource_group_id str
    The ID of the resource group.
    status str
    The GWLB instance status.
    tags Mapping[str, str]
    The tag keys. You can specify at most 20 tags in each call.
    vpc_id str
    The virtual private cloud (VPC) ID.
    zone_mappings Sequence[LoadBalancerZoneMappingArgs]
    The mappings between zones and vSwitches. You must specify at least one zone. You can specify at most 20 zones. If the region supports two or more zones, we recommend that you select two or more zones. See zone_mappings below.
    addressIpVersion String
    The IP version. Valid values:

    • Ipv4: IPv4 (default)
    createTime String
    The time when the resource was created. The time follows the ISO 8601 standard in the yyyy-MM-ddTHH:mm:ssZ format. The time is displayed in UTC.
    dryRun Boolean
    Specifies whether to perform a dry run, without performing the actual request. Valid values:
    loadBalancerName String

    The GWLB instance name.

    The name must be 2 to 128 characters in length, and can contain letters, digits, periods (.), underscores (_), and hyphens (-). The name must start with a letter.

    resourceGroupId String
    The ID of the resource group.
    status String
    The GWLB instance status.
    tags Map<String>
    The tag keys. You can specify at most 20 tags in each call.
    vpcId String
    The virtual private cloud (VPC) ID.
    zoneMappings List<Property Map>
    The mappings between zones and vSwitches. You must specify at least one zone. You can specify at most 20 zones. If the region supports two or more zones, we recommend that you select two or more zones. See zone_mappings below.

    Supporting Types

    LoadBalancerZoneMapping, LoadBalancerZoneMappingArgs

    VswitchId string
    The ID of the vSwitch in the zone. You can specify only one vSwitch (subnet) in each zone of a GWLB instance.
    ZoneId string
    The zone ID. You can call the DescribeZones operation to query the most recent zone list.
    LoadBalancerAddresses List<Pulumi.AliCloud.Gwlb.Inputs.LoadBalancerZoneMappingLoadBalancerAddress>
    The information about the IP addresses used by the GWLB instance.
    VswitchId string
    The ID of the vSwitch in the zone. You can specify only one vSwitch (subnet) in each zone of a GWLB instance.
    ZoneId string
    The zone ID. You can call the DescribeZones operation to query the most recent zone list.
    LoadBalancerAddresses []LoadBalancerZoneMappingLoadBalancerAddress
    The information about the IP addresses used by the GWLB instance.
    vswitchId String
    The ID of the vSwitch in the zone. You can specify only one vSwitch (subnet) in each zone of a GWLB instance.
    zoneId String
    The zone ID. You can call the DescribeZones operation to query the most recent zone list.
    loadBalancerAddresses List<LoadBalancerZoneMappingLoadBalancerAddress>
    The information about the IP addresses used by the GWLB instance.
    vswitchId string
    The ID of the vSwitch in the zone. You can specify only one vSwitch (subnet) in each zone of a GWLB instance.
    zoneId string
    The zone ID. You can call the DescribeZones operation to query the most recent zone list.
    loadBalancerAddresses LoadBalancerZoneMappingLoadBalancerAddress[]
    The information about the IP addresses used by the GWLB instance.
    vswitch_id str
    The ID of the vSwitch in the zone. You can specify only one vSwitch (subnet) in each zone of a GWLB instance.
    zone_id str
    The zone ID. You can call the DescribeZones operation to query the most recent zone list.
    load_balancer_addresses Sequence[LoadBalancerZoneMappingLoadBalancerAddress]
    The information about the IP addresses used by the GWLB instance.
    vswitchId String
    The ID of the vSwitch in the zone. You can specify only one vSwitch (subnet) in each zone of a GWLB instance.
    zoneId String
    The zone ID. You can call the DescribeZones operation to query the most recent zone list.
    loadBalancerAddresses List<Property Map>
    The information about the IP addresses used by the GWLB instance.

    LoadBalancerZoneMappingLoadBalancerAddress, LoadBalancerZoneMappingLoadBalancerAddressArgs

    EniId string
    The ID of the elastic network interface (ENI) used by the GWLB instance.
    PrivateIpv4Address string
    The private IPv4 address.
    EniId string
    The ID of the elastic network interface (ENI) used by the GWLB instance.
    PrivateIpv4Address string
    The private IPv4 address.
    eniId String
    The ID of the elastic network interface (ENI) used by the GWLB instance.
    privateIpv4Address String
    The private IPv4 address.
    eniId string
    The ID of the elastic network interface (ENI) used by the GWLB instance.
    privateIpv4Address string
    The private IPv4 address.
    eni_id str
    The ID of the elastic network interface (ENI) used by the GWLB instance.
    private_ipv4_address str
    The private IPv4 address.
    eniId String
    The ID of the elastic network interface (ENI) used by the GWLB instance.
    privateIpv4Address String
    The private IPv4 address.

    Import

    GWLB Load Balancer can be imported using the id, e.g.

    $ pulumi import alicloud:gwlb/loadBalancer:LoadBalancer example <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.75.0 published on Friday, Mar 7, 2025 by Pulumi