1. Packages
  2. Alibaba Cloud Provider
  3. API Docs
  4. sae
  5. LoadBalancerInternet
Alibaba Cloud v3.76.0 published on Tuesday, Apr 8, 2025 by Pulumi

alicloud.sae.LoadBalancerInternet

Explore with Pulumi AI

Provides an Alicloud Serverless App Engine (SAE) Application Load Balancer Attachment resource.

For information about Serverless App Engine (SAE) Load Balancer Internet Attachment and how to use it, see alicloud.sae.LoadBalancerInternet.

NOTE: Available since v1.164.0.

Example Usage

Basic Usage

import * as pulumi from "@pulumi/pulumi";
import * as alicloud from "@pulumi/alicloud";
import * as random from "@pulumi/random";

const config = new pulumi.Config();
const name = config.get("name") || "tf-example";
const _default = alicloud.getRegions({
    current: true,
});
const defaultInteger = new random.index.Integer("default", {
    max: 99999,
    min: 10000,
});
const defaultGetZones = alicloud.getZones({
    availableResourceCreation: "VSwitch",
});
const defaultNetwork = new alicloud.vpc.Network("default", {
    vpcName: name,
    cidrBlock: "10.4.0.0/16",
});
const defaultSwitch = new alicloud.vpc.Switch("default", {
    vswitchName: name,
    cidrBlock: "10.4.0.0/24",
    vpcId: defaultNetwork.id,
    zoneId: defaultGetZones.then(defaultGetZones => defaultGetZones.zones?.[0]?.id),
});
const defaultSecurityGroup = new alicloud.ecs.SecurityGroup("default", {vpcId: defaultNetwork.id});
const defaultNamespace = new alicloud.sae.Namespace("default", {
    namespaceId: _default.then(_default => `${_default.regions?.[0]?.id}:example${defaultInteger.result}`),
    namespaceName: name,
    namespaceDescription: name,
    enableMicroRegistration: false,
});
const defaultApplication = new alicloud.sae.Application("default", {
    appDescription: name,
    appName: `${name}-${defaultInteger.result}`,
    namespaceId: defaultNamespace.id,
    imageUrl: "registry-vpc.cn-hangzhou.aliyuncs.com/lxepoo/apache-php5",
    packageType: "Image",
    jdk: "Open JDK 8",
    securityGroupId: defaultSecurityGroup.id,
    vpcId: defaultNetwork.id,
    vswitchId: defaultSwitch.id,
    timezone: "Asia/Beijing",
    replicas: 5,
    cpu: 500,
    memory: 2048,
    microRegistration: "0",
});
const defaultApplicationLoadBalancer = new alicloud.slb.ApplicationLoadBalancer("default", {
    loadBalancerName: name,
    vswitchId: defaultSwitch.id,
    loadBalancerSpec: "slb.s2.small",
    addressType: "internet",
});
const defaultLoadBalancerInternet = new alicloud.sae.LoadBalancerInternet("default", {
    appId: defaultApplication.id,
    internetSlbId: defaultApplicationLoadBalancer.id,
    internets: [{
        protocol: "TCP",
        port: 80,
        targetPort: 8080,
    }],
});
Copy
import pulumi
import pulumi_alicloud as alicloud
import pulumi_random as random

config = pulumi.Config()
name = config.get("name")
if name is None:
    name = "tf-example"
default = alicloud.get_regions(current=True)
default_integer = random.index.Integer("default",
    max=99999,
    min=10000)
default_get_zones = alicloud.get_zones(available_resource_creation="VSwitch")
default_network = alicloud.vpc.Network("default",
    vpc_name=name,
    cidr_block="10.4.0.0/16")
default_switch = alicloud.vpc.Switch("default",
    vswitch_name=name,
    cidr_block="10.4.0.0/24",
    vpc_id=default_network.id,
    zone_id=default_get_zones.zones[0].id)
default_security_group = alicloud.ecs.SecurityGroup("default", vpc_id=default_network.id)
default_namespace = alicloud.sae.Namespace("default",
    namespace_id=f"{default.regions[0].id}:example{default_integer['result']}",
    namespace_name=name,
    namespace_description=name,
    enable_micro_registration=False)
default_application = alicloud.sae.Application("default",
    app_description=name,
    app_name=f"{name}-{default_integer['result']}",
    namespace_id=default_namespace.id,
    image_url="registry-vpc.cn-hangzhou.aliyuncs.com/lxepoo/apache-php5",
    package_type="Image",
    jdk="Open JDK 8",
    security_group_id=default_security_group.id,
    vpc_id=default_network.id,
    vswitch_id=default_switch.id,
    timezone="Asia/Beijing",
    replicas=5,
    cpu=500,
    memory=2048,
    micro_registration="0")
default_application_load_balancer = alicloud.slb.ApplicationLoadBalancer("default",
    load_balancer_name=name,
    vswitch_id=default_switch.id,
    load_balancer_spec="slb.s2.small",
    address_type="internet")
default_load_balancer_internet = alicloud.sae.LoadBalancerInternet("default",
    app_id=default_application.id,
    internet_slb_id=default_application_load_balancer.id,
    internets=[{
        "protocol": "TCP",
        "port": 80,
        "target_port": 8080,
    }])
Copy
package main

import (
	"fmt"

	"github.com/pulumi/pulumi-alicloud/sdk/v3/go/alicloud"
	"github.com/pulumi/pulumi-alicloud/sdk/v3/go/alicloud/ecs"
	"github.com/pulumi/pulumi-alicloud/sdk/v3/go/alicloud/sae"
	"github.com/pulumi/pulumi-alicloud/sdk/v3/go/alicloud/slb"
	"github.com/pulumi/pulumi-alicloud/sdk/v3/go/alicloud/vpc"
	"github.com/pulumi/pulumi-random/sdk/v4/go/random"
	"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 := "tf-example"
		if param := cfg.Get("name"); param != "" {
			name = param
		}
		_default, err := alicloud.GetRegions(ctx, &alicloud.GetRegionsArgs{
			Current: pulumi.BoolRef(true),
		}, nil)
		if err != nil {
			return err
		}
		defaultInteger, err := random.NewInteger(ctx, "default", &random.IntegerArgs{
			Max: 99999,
			Min: 10000,
		})
		if err != nil {
			return err
		}
		defaultGetZones, err := alicloud.GetZones(ctx, &alicloud.GetZonesArgs{
			AvailableResourceCreation: pulumi.StringRef("VSwitch"),
		}, nil)
		if err != nil {
			return err
		}
		defaultNetwork, err := vpc.NewNetwork(ctx, "default", &vpc.NetworkArgs{
			VpcName:   pulumi.String(name),
			CidrBlock: pulumi.String("10.4.0.0/16"),
		})
		if err != nil {
			return err
		}
		defaultSwitch, err := vpc.NewSwitch(ctx, "default", &vpc.SwitchArgs{
			VswitchName: pulumi.String(name),
			CidrBlock:   pulumi.String("10.4.0.0/24"),
			VpcId:       defaultNetwork.ID(),
			ZoneId:      pulumi.String(defaultGetZones.Zones[0].Id),
		})
		if err != nil {
			return err
		}
		defaultSecurityGroup, err := ecs.NewSecurityGroup(ctx, "default", &ecs.SecurityGroupArgs{
			VpcId: defaultNetwork.ID(),
		})
		if err != nil {
			return err
		}
		defaultNamespace, err := sae.NewNamespace(ctx, "default", &sae.NamespaceArgs{
			NamespaceId:             pulumi.Sprintf("%v:example%v", _default.Regions[0].Id, defaultInteger.Result),
			NamespaceName:           pulumi.String(name),
			NamespaceDescription:    pulumi.String(name),
			EnableMicroRegistration: pulumi.Bool(false),
		})
		if err != nil {
			return err
		}
		defaultApplication, err := sae.NewApplication(ctx, "default", &sae.ApplicationArgs{
			AppDescription:    pulumi.String(name),
			AppName:           pulumi.Sprintf("%v-%v", name, defaultInteger.Result),
			NamespaceId:       defaultNamespace.ID(),
			ImageUrl:          pulumi.String("registry-vpc.cn-hangzhou.aliyuncs.com/lxepoo/apache-php5"),
			PackageType:       pulumi.String("Image"),
			Jdk:               pulumi.String("Open JDK 8"),
			SecurityGroupId:   defaultSecurityGroup.ID(),
			VpcId:             defaultNetwork.ID(),
			VswitchId:         defaultSwitch.ID(),
			Timezone:          pulumi.String("Asia/Beijing"),
			Replicas:          pulumi.Int(5),
			Cpu:               pulumi.Int(500),
			Memory:            pulumi.Int(2048),
			MicroRegistration: pulumi.String("0"),
		})
		if err != nil {
			return err
		}
		defaultApplicationLoadBalancer, err := slb.NewApplicationLoadBalancer(ctx, "default", &slb.ApplicationLoadBalancerArgs{
			LoadBalancerName: pulumi.String(name),
			VswitchId:        defaultSwitch.ID(),
			LoadBalancerSpec: pulumi.String("slb.s2.small"),
			AddressType:      pulumi.String("internet"),
		})
		if err != nil {
			return err
		}
		_, err = sae.NewLoadBalancerInternet(ctx, "default", &sae.LoadBalancerInternetArgs{
			AppId:         defaultApplication.ID(),
			InternetSlbId: defaultApplicationLoadBalancer.ID(),
			Internets: sae.LoadBalancerInternetInternetArray{
				&sae.LoadBalancerInternetInternetArgs{
					Protocol:   pulumi.String("TCP"),
					Port:       pulumi.Int(80),
					TargetPort: pulumi.Int(8080),
				},
			},
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AliCloud = Pulumi.AliCloud;
using Random = Pulumi.Random;

return await Deployment.RunAsync(() => 
{
    var config = new Config();
    var name = config.Get("name") ?? "tf-example";
    var @default = AliCloud.GetRegions.Invoke(new()
    {
        Current = true,
    });

    var defaultInteger = new Random.Index.Integer("default", new()
    {
        Max = 99999,
        Min = 10000,
    });

    var defaultGetZones = AliCloud.GetZones.Invoke(new()
    {
        AvailableResourceCreation = "VSwitch",
    });

    var defaultNetwork = new AliCloud.Vpc.Network("default", new()
    {
        VpcName = name,
        CidrBlock = "10.4.0.0/16",
    });

    var defaultSwitch = new AliCloud.Vpc.Switch("default", new()
    {
        VswitchName = name,
        CidrBlock = "10.4.0.0/24",
        VpcId = defaultNetwork.Id,
        ZoneId = defaultGetZones.Apply(getZonesResult => getZonesResult.Zones[0]?.Id),
    });

    var defaultSecurityGroup = new AliCloud.Ecs.SecurityGroup("default", new()
    {
        VpcId = defaultNetwork.Id,
    });

    var defaultNamespace = new AliCloud.Sae.Namespace("default", new()
    {
        NamespaceId = @default.Apply(@default => $"{@default.Apply(getRegionsResult => getRegionsResult.Regions[0]?.Id)}:example{defaultInteger.Result}"),
        NamespaceName = name,
        NamespaceDescription = name,
        EnableMicroRegistration = false,
    });

    var defaultApplication = new AliCloud.Sae.Application("default", new()
    {
        AppDescription = name,
        AppName = $"{name}-{defaultInteger.Result}",
        NamespaceId = defaultNamespace.Id,
        ImageUrl = "registry-vpc.cn-hangzhou.aliyuncs.com/lxepoo/apache-php5",
        PackageType = "Image",
        Jdk = "Open JDK 8",
        SecurityGroupId = defaultSecurityGroup.Id,
        VpcId = defaultNetwork.Id,
        VswitchId = defaultSwitch.Id,
        Timezone = "Asia/Beijing",
        Replicas = 5,
        Cpu = 500,
        Memory = 2048,
        MicroRegistration = "0",
    });

    var defaultApplicationLoadBalancer = new AliCloud.Slb.ApplicationLoadBalancer("default", new()
    {
        LoadBalancerName = name,
        VswitchId = defaultSwitch.Id,
        LoadBalancerSpec = "slb.s2.small",
        AddressType = "internet",
    });

    var defaultLoadBalancerInternet = new AliCloud.Sae.LoadBalancerInternet("default", new()
    {
        AppId = defaultApplication.Id,
        InternetSlbId = defaultApplicationLoadBalancer.Id,
        Internets = new[]
        {
            new AliCloud.Sae.Inputs.LoadBalancerInternetInternetArgs
            {
                Protocol = "TCP",
                Port = 80,
                TargetPort = 8080,
            },
        },
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.alicloud.AlicloudFunctions;
import com.pulumi.alicloud.inputs.GetRegionsArgs;
import com.pulumi.random.integer;
import com.pulumi.random.IntegerArgs;
import com.pulumi.alicloud.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.ecs.SecurityGroup;
import com.pulumi.alicloud.ecs.SecurityGroupArgs;
import com.pulumi.alicloud.sae.Namespace;
import com.pulumi.alicloud.sae.NamespaceArgs;
import com.pulumi.alicloud.sae.Application;
import com.pulumi.alicloud.sae.ApplicationArgs;
import com.pulumi.alicloud.slb.ApplicationLoadBalancer;
import com.pulumi.alicloud.slb.ApplicationLoadBalancerArgs;
import com.pulumi.alicloud.sae.LoadBalancerInternet;
import com.pulumi.alicloud.sae.LoadBalancerInternetArgs;
import com.pulumi.alicloud.sae.inputs.LoadBalancerInternetInternetArgs;
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("tf-example");
        final var default = AlicloudFunctions.getRegions(GetRegionsArgs.builder()
            .current(true)
            .build());

        var defaultInteger = new Integer("defaultInteger", IntegerArgs.builder()
            .max(99999)
            .min(10000)
            .build());

        final var defaultGetZones = AlicloudFunctions.getZones(GetZonesArgs.builder()
            .availableResourceCreation("VSwitch")
            .build());

        var defaultNetwork = new Network("defaultNetwork", NetworkArgs.builder()
            .vpcName(name)
            .cidrBlock("10.4.0.0/16")
            .build());

        var defaultSwitch = new Switch("defaultSwitch", SwitchArgs.builder()
            .vswitchName(name)
            .cidrBlock("10.4.0.0/24")
            .vpcId(defaultNetwork.id())
            .zoneId(defaultGetZones.applyValue(getZonesResult -> getZonesResult.zones()[0].id()))
            .build());

        var defaultSecurityGroup = new SecurityGroup("defaultSecurityGroup", SecurityGroupArgs.builder()
            .vpcId(defaultNetwork.id())
            .build());

        var defaultNamespace = new Namespace("defaultNamespace", NamespaceArgs.builder()
            .namespaceId(String.format("%s:example%s", default_.regions()[0].id(),defaultInteger.result()))
            .namespaceName(name)
            .namespaceDescription(name)
            .enableMicroRegistration(false)
            .build());

        var defaultApplication = new Application("defaultApplication", ApplicationArgs.builder()
            .appDescription(name)
            .appName(String.format("%s-%s", name,defaultInteger.result()))
            .namespaceId(defaultNamespace.id())
            .imageUrl("registry-vpc.cn-hangzhou.aliyuncs.com/lxepoo/apache-php5")
            .packageType("Image")
            .jdk("Open JDK 8")
            .securityGroupId(defaultSecurityGroup.id())
            .vpcId(defaultNetwork.id())
            .vswitchId(defaultSwitch.id())
            .timezone("Asia/Beijing")
            .replicas("5")
            .cpu("500")
            .memory("2048")
            .microRegistration("0")
            .build());

        var defaultApplicationLoadBalancer = new ApplicationLoadBalancer("defaultApplicationLoadBalancer", ApplicationLoadBalancerArgs.builder()
            .loadBalancerName(name)
            .vswitchId(defaultSwitch.id())
            .loadBalancerSpec("slb.s2.small")
            .addressType("internet")
            .build());

        var defaultLoadBalancerInternet = new LoadBalancerInternet("defaultLoadBalancerInternet", LoadBalancerInternetArgs.builder()
            .appId(defaultApplication.id())
            .internetSlbId(defaultApplicationLoadBalancer.id())
            .internets(LoadBalancerInternetInternetArgs.builder()
                .protocol("TCP")
                .port(80)
                .targetPort(8080)
                .build())
            .build());

    }
}
Copy
configuration:
  name:
    type: string
    default: tf-example
resources:
  defaultInteger:
    type: random:integer
    name: default
    properties:
      max: 99999
      min: 10000
  defaultNetwork:
    type: alicloud:vpc:Network
    name: default
    properties:
      vpcName: ${name}
      cidrBlock: 10.4.0.0/16
  defaultSwitch:
    type: alicloud:vpc:Switch
    name: default
    properties:
      vswitchName: ${name}
      cidrBlock: 10.4.0.0/24
      vpcId: ${defaultNetwork.id}
      zoneId: ${defaultGetZones.zones[0].id}
  defaultSecurityGroup:
    type: alicloud:ecs:SecurityGroup
    name: default
    properties:
      vpcId: ${defaultNetwork.id}
  defaultNamespace:
    type: alicloud:sae:Namespace
    name: default
    properties:
      namespaceId: ${default.regions[0].id}:example${defaultInteger.result}
      namespaceName: ${name}
      namespaceDescription: ${name}
      enableMicroRegistration: false
  defaultApplication:
    type: alicloud:sae:Application
    name: default
    properties:
      appDescription: ${name}
      appName: ${name}-${defaultInteger.result}
      namespaceId: ${defaultNamespace.id}
      imageUrl: registry-vpc.cn-hangzhou.aliyuncs.com/lxepoo/apache-php5
      packageType: Image
      jdk: Open JDK 8
      securityGroupId: ${defaultSecurityGroup.id}
      vpcId: ${defaultNetwork.id}
      vswitchId: ${defaultSwitch.id}
      timezone: Asia/Beijing
      replicas: '5'
      cpu: '500'
      memory: '2048'
      microRegistration: '0'
  defaultApplicationLoadBalancer:
    type: alicloud:slb:ApplicationLoadBalancer
    name: default
    properties:
      loadBalancerName: ${name}
      vswitchId: ${defaultSwitch.id}
      loadBalancerSpec: slb.s2.small
      addressType: internet
  defaultLoadBalancerInternet:
    type: alicloud:sae:LoadBalancerInternet
    name: default
    properties:
      appId: ${defaultApplication.id}
      internetSlbId: ${defaultApplicationLoadBalancer.id}
      internets:
        - protocol: TCP
          port: 80
          targetPort: 8080
variables:
  default:
    fn::invoke:
      function: alicloud:getRegions
      arguments:
        current: true
  defaultGetZones:
    fn::invoke:
      function: alicloud:getZones
      arguments:
        availableResourceCreation: VSwitch
Copy

Create LoadBalancerInternet Resource

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

Constructor syntax

new LoadBalancerInternet(name: string, args: LoadBalancerInternetArgs, opts?: CustomResourceOptions);
@overload
def LoadBalancerInternet(resource_name: str,
                         args: LoadBalancerInternetArgs,
                         opts: Optional[ResourceOptions] = None)

@overload
def LoadBalancerInternet(resource_name: str,
                         opts: Optional[ResourceOptions] = None,
                         app_id: Optional[str] = None,
                         internets: Optional[Sequence[LoadBalancerInternetInternetArgs]] = None,
                         internet_slb_id: Optional[str] = None)
func NewLoadBalancerInternet(ctx *Context, name string, args LoadBalancerInternetArgs, opts ...ResourceOption) (*LoadBalancerInternet, error)
public LoadBalancerInternet(string name, LoadBalancerInternetArgs args, CustomResourceOptions? opts = null)
public LoadBalancerInternet(String name, LoadBalancerInternetArgs args)
public LoadBalancerInternet(String name, LoadBalancerInternetArgs args, CustomResourceOptions options)
type: alicloud:sae:LoadBalancerInternet
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. LoadBalancerInternetArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. LoadBalancerInternetArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. LoadBalancerInternetArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. LoadBalancerInternetArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. LoadBalancerInternetArgs
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 loadBalancerInternetResource = new AliCloud.Sae.LoadBalancerInternet("loadBalancerInternetResource", new()
{
    AppId = "string",
    Internets = new[]
    {
        new AliCloud.Sae.Inputs.LoadBalancerInternetInternetArgs
        {
            HttpsCertId = "string",
            Port = 0,
            Protocol = "string",
            TargetPort = 0,
        },
    },
    InternetSlbId = "string",
});
Copy
example, err := sae.NewLoadBalancerInternet(ctx, "loadBalancerInternetResource", &sae.LoadBalancerInternetArgs{
	AppId: pulumi.String("string"),
	Internets: sae.LoadBalancerInternetInternetArray{
		&sae.LoadBalancerInternetInternetArgs{
			HttpsCertId: pulumi.String("string"),
			Port:        pulumi.Int(0),
			Protocol:    pulumi.String("string"),
			TargetPort:  pulumi.Int(0),
		},
	},
	InternetSlbId: pulumi.String("string"),
})
Copy
var loadBalancerInternetResource = new LoadBalancerInternet("loadBalancerInternetResource", LoadBalancerInternetArgs.builder()
    .appId("string")
    .internets(LoadBalancerInternetInternetArgs.builder()
        .httpsCertId("string")
        .port(0)
        .protocol("string")
        .targetPort(0)
        .build())
    .internetSlbId("string")
    .build());
Copy
load_balancer_internet_resource = alicloud.sae.LoadBalancerInternet("loadBalancerInternetResource",
    app_id="string",
    internets=[{
        "https_cert_id": "string",
        "port": 0,
        "protocol": "string",
        "target_port": 0,
    }],
    internet_slb_id="string")
Copy
const loadBalancerInternetResource = new alicloud.sae.LoadBalancerInternet("loadBalancerInternetResource", {
    appId: "string",
    internets: [{
        httpsCertId: "string",
        port: 0,
        protocol: "string",
        targetPort: 0,
    }],
    internetSlbId: "string",
});
Copy
type: alicloud:sae:LoadBalancerInternet
properties:
    appId: string
    internetSlbId: string
    internets:
        - httpsCertId: string
          port: 0
          protocol: string
          targetPort: 0
Copy

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

AppId This property is required. string
The target application ID that needs to be bound to the SLB.
Internets This property is required. List<Pulumi.AliCloud.Sae.Inputs.LoadBalancerInternetInternet>
The bound private network SLB. See internet below.
InternetSlbId string
The internet SLB ID.
AppId This property is required. string
The target application ID that needs to be bound to the SLB.
Internets This property is required. []LoadBalancerInternetInternetArgs
The bound private network SLB. See internet below.
InternetSlbId string
The internet SLB ID.
appId This property is required. String
The target application ID that needs to be bound to the SLB.
internets This property is required. List<LoadBalancerInternetInternet>
The bound private network SLB. See internet below.
internetSlbId String
The internet SLB ID.
appId This property is required. string
The target application ID that needs to be bound to the SLB.
internets This property is required. LoadBalancerInternetInternet[]
The bound private network SLB. See internet below.
internetSlbId string
The internet SLB ID.
app_id This property is required. str
The target application ID that needs to be bound to the SLB.
internets This property is required. Sequence[LoadBalancerInternetInternetArgs]
The bound private network SLB. See internet below.
internet_slb_id str
The internet SLB ID.
appId This property is required. String
The target application ID that needs to be bound to the SLB.
internets This property is required. List<Property Map>
The bound private network SLB. See internet below.
internetSlbId String
The internet SLB ID.

Outputs

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

Id string
The provider-assigned unique ID for this managed resource.
InternetIp string
Use designated public network SLBs that have been purchased to support non-shared instances.
Id string
The provider-assigned unique ID for this managed resource.
InternetIp string
Use designated public network SLBs that have been purchased to support non-shared instances.
id String
The provider-assigned unique ID for this managed resource.
internetIp String
Use designated public network SLBs that have been purchased to support non-shared instances.
id string
The provider-assigned unique ID for this managed resource.
internetIp string
Use designated public network SLBs that have been purchased to support non-shared instances.
id str
The provider-assigned unique ID for this managed resource.
internet_ip str
Use designated public network SLBs that have been purchased to support non-shared instances.
id String
The provider-assigned unique ID for this managed resource.
internetIp String
Use designated public network SLBs that have been purchased to support non-shared instances.

Look up Existing LoadBalancerInternet Resource

Get an existing LoadBalancerInternet 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?: LoadBalancerInternetState, opts?: CustomResourceOptions): LoadBalancerInternet
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        app_id: Optional[str] = None,
        internet_ip: Optional[str] = None,
        internet_slb_id: Optional[str] = None,
        internets: Optional[Sequence[LoadBalancerInternetInternetArgs]] = None) -> LoadBalancerInternet
func GetLoadBalancerInternet(ctx *Context, name string, id IDInput, state *LoadBalancerInternetState, opts ...ResourceOption) (*LoadBalancerInternet, error)
public static LoadBalancerInternet Get(string name, Input<string> id, LoadBalancerInternetState? state, CustomResourceOptions? opts = null)
public static LoadBalancerInternet get(String name, Output<String> id, LoadBalancerInternetState state, CustomResourceOptions options)
resources:  _:    type: alicloud:sae:LoadBalancerInternet    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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:
AppId string
The target application ID that needs to be bound to the SLB.
InternetIp string
Use designated public network SLBs that have been purchased to support non-shared instances.
InternetSlbId string
The internet SLB ID.
Internets List<Pulumi.AliCloud.Sae.Inputs.LoadBalancerInternetInternet>
The bound private network SLB. See internet below.
AppId string
The target application ID that needs to be bound to the SLB.
InternetIp string
Use designated public network SLBs that have been purchased to support non-shared instances.
InternetSlbId string
The internet SLB ID.
Internets []LoadBalancerInternetInternetArgs
The bound private network SLB. See internet below.
appId String
The target application ID that needs to be bound to the SLB.
internetIp String
Use designated public network SLBs that have been purchased to support non-shared instances.
internetSlbId String
The internet SLB ID.
internets List<LoadBalancerInternetInternet>
The bound private network SLB. See internet below.
appId string
The target application ID that needs to be bound to the SLB.
internetIp string
Use designated public network SLBs that have been purchased to support non-shared instances.
internetSlbId string
The internet SLB ID.
internets LoadBalancerInternetInternet[]
The bound private network SLB. See internet below.
app_id str
The target application ID that needs to be bound to the SLB.
internet_ip str
Use designated public network SLBs that have been purchased to support non-shared instances.
internet_slb_id str
The internet SLB ID.
internets Sequence[LoadBalancerInternetInternetArgs]
The bound private network SLB. See internet below.
appId String
The target application ID that needs to be bound to the SLB.
internetIp String
Use designated public network SLBs that have been purchased to support non-shared instances.
internetSlbId String
The internet SLB ID.
internets List<Property Map>
The bound private network SLB. See internet below.

Supporting Types

LoadBalancerInternetInternet
, LoadBalancerInternetInternetArgs

HttpsCertId string
The SSL certificate. https_cert_id is required when HTTPS is selected
Port int
The SLB Port.
Protocol string
The Network protocol. Valid values: TCP ,HTTP,HTTPS.
TargetPort int
The Container port.
HttpsCertId string
The SSL certificate. https_cert_id is required when HTTPS is selected
Port int
The SLB Port.
Protocol string
The Network protocol. Valid values: TCP ,HTTP,HTTPS.
TargetPort int
The Container port.
httpsCertId String
The SSL certificate. https_cert_id is required when HTTPS is selected
port Integer
The SLB Port.
protocol String
The Network protocol. Valid values: TCP ,HTTP,HTTPS.
targetPort Integer
The Container port.
httpsCertId string
The SSL certificate. https_cert_id is required when HTTPS is selected
port number
The SLB Port.
protocol string
The Network protocol. Valid values: TCP ,HTTP,HTTPS.
targetPort number
The Container port.
https_cert_id str
The SSL certificate. https_cert_id is required when HTTPS is selected
port int
The SLB Port.
protocol str
The Network protocol. Valid values: TCP ,HTTP,HTTPS.
target_port int
The Container port.
httpsCertId String
The SSL certificate. https_cert_id is required when HTTPS is selected
port Number
The SLB Port.
protocol String
The Network protocol. Valid values: TCP ,HTTP,HTTPS.
targetPort Number
The Container port.

Import

The resource can be imported using the id, e.g.

$ pulumi import alicloud:sae/loadBalancerInternet:LoadBalancerInternet example <id>
Copy

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.