1. Packages
  2. Alibaba Cloud
  3. API Docs
  4. sae
  5. LoadBalancerInternet
Alibaba Cloud v3.51.0 published on Saturday, Mar 23, 2024 by Pulumi

alicloud.sae.LoadBalancerInternet

Explore with Pulumi AI

alicloud logo
Alibaba Cloud v3.51.0 published on Saturday, Mar 23, 2024 by Pulumi

    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 defaultRegions = alicloud.getRegions({
        current: true,
    });
    const defaultRandomInteger = new random.RandomInteger("defaultRandomInteger", {
        max: 99999,
        min: 10000,
    });
    const defaultZones = alicloud.getZones({
        availableResourceCreation: "VSwitch",
    });
    const defaultNetwork = new alicloud.vpc.Network("defaultNetwork", {
        vpcName: name,
        cidrBlock: "10.4.0.0/16",
    });
    const defaultSwitch = new alicloud.vpc.Switch("defaultSwitch", {
        vswitchName: name,
        cidrBlock: "10.4.0.0/24",
        vpcId: defaultNetwork.id,
        zoneId: defaultZones.then(defaultZones => defaultZones.zones?.[0]?.id),
    });
    const defaultSecurityGroup = new alicloud.ecs.SecurityGroup("defaultSecurityGroup", {vpcId: defaultNetwork.id});
    const defaultNamespace = new alicloud.sae.Namespace("defaultNamespace", {
        namespaceId: pulumi.all([defaultRegions, defaultRandomInteger.result]).apply(([defaultRegions, result]) => `${defaultRegions.regions?.[0]?.id}:example${result}`),
        namespaceName: name,
        namespaceDescription: name,
        enableMicroRegistration: false,
    });
    const defaultApplication = new alicloud.sae.Application("defaultApplication", {
        appDescription: name,
        appName: pulumi.interpolate`${name}-${defaultRandomInteger.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,
    });
    const defaultApplicationLoadBalancer = new alicloud.slb.ApplicationLoadBalancer("defaultApplicationLoadBalancer", {
        loadBalancerName: name,
        vswitchId: defaultSwitch.id,
        loadBalancerSpec: "slb.s2.small",
        addressType: "internet",
    });
    const defaultLoadBalancerInternet = new alicloud.sae.LoadBalancerInternet("defaultLoadBalancerInternet", {
        appId: defaultApplication.id,
        internetSlbId: defaultApplicationLoadBalancer.id,
        internets: [{
            protocol: "TCP",
            port: 80,
            targetPort: 8080,
        }],
    });
    
    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_regions = alicloud.get_regions(current=True)
    default_random_integer = random.RandomInteger("defaultRandomInteger",
        max=99999,
        min=10000)
    default_zones = alicloud.get_zones(available_resource_creation="VSwitch")
    default_network = alicloud.vpc.Network("defaultNetwork",
        vpc_name=name,
        cidr_block="10.4.0.0/16")
    default_switch = alicloud.vpc.Switch("defaultSwitch",
        vswitch_name=name,
        cidr_block="10.4.0.0/24",
        vpc_id=default_network.id,
        zone_id=default_zones.zones[0].id)
    default_security_group = alicloud.ecs.SecurityGroup("defaultSecurityGroup", vpc_id=default_network.id)
    default_namespace = alicloud.sae.Namespace("defaultNamespace",
        namespace_id=default_random_integer.result.apply(lambda result: f"{default_regions.regions[0].id}:example{result}"),
        namespace_name=name,
        namespace_description=name,
        enable_micro_registration=False)
    default_application = alicloud.sae.Application("defaultApplication",
        app_description=name,
        app_name=default_random_integer.result.apply(lambda result: f"{name}-{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)
    default_application_load_balancer = alicloud.slb.ApplicationLoadBalancer("defaultApplicationLoadBalancer",
        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("defaultLoadBalancerInternet",
        app_id=default_application.id,
        internet_slb_id=default_application_load_balancer.id,
        internets=[alicloud.sae.LoadBalancerInternetInternetArgs(
            protocol="TCP",
            port=80,
            target_port=8080,
        )])
    
    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
    		}
    		defaultRegions, err := alicloud.GetRegions(ctx, &alicloud.GetRegionsArgs{
    			Current: pulumi.BoolRef(true),
    		}, nil)
    		if err != nil {
    			return err
    		}
    		defaultRandomInteger, err := random.NewRandomInteger(ctx, "defaultRandomInteger", &random.RandomIntegerArgs{
    			Max: pulumi.Int(99999),
    			Min: pulumi.Int(10000),
    		})
    		if err != nil {
    			return err
    		}
    		defaultZones, err := alicloud.GetZones(ctx, &alicloud.GetZonesArgs{
    			AvailableResourceCreation: pulumi.StringRef("VSwitch"),
    		}, nil)
    		if err != nil {
    			return err
    		}
    		defaultNetwork, err := vpc.NewNetwork(ctx, "defaultNetwork", &vpc.NetworkArgs{
    			VpcName:   pulumi.String(name),
    			CidrBlock: pulumi.String("10.4.0.0/16"),
    		})
    		if err != nil {
    			return err
    		}
    		defaultSwitch, err := vpc.NewSwitch(ctx, "defaultSwitch", &vpc.SwitchArgs{
    			VswitchName: pulumi.String(name),
    			CidrBlock:   pulumi.String("10.4.0.0/24"),
    			VpcId:       defaultNetwork.ID(),
    			ZoneId:      pulumi.String(defaultZones.Zones[0].Id),
    		})
    		if err != nil {
    			return err
    		}
    		defaultSecurityGroup, err := ecs.NewSecurityGroup(ctx, "defaultSecurityGroup", &ecs.SecurityGroupArgs{
    			VpcId: defaultNetwork.ID(),
    		})
    		if err != nil {
    			return err
    		}
    		defaultNamespace, err := sae.NewNamespace(ctx, "defaultNamespace", &sae.NamespaceArgs{
    			NamespaceId: defaultRandomInteger.Result.ApplyT(func(result int) (string, error) {
    				return fmt.Sprintf("%v:example%v", defaultRegions.Regions[0].Id, result), nil
    			}).(pulumi.StringOutput),
    			NamespaceName:           pulumi.String(name),
    			NamespaceDescription:    pulumi.String(name),
    			EnableMicroRegistration: pulumi.Bool(false),
    		})
    		if err != nil {
    			return err
    		}
    		defaultApplication, err := sae.NewApplication(ctx, "defaultApplication", &sae.ApplicationArgs{
    			AppDescription: pulumi.String(name),
    			AppName: defaultRandomInteger.Result.ApplyT(func(result int) (string, error) {
    				return fmt.Sprintf("%v-%v", name, result), nil
    			}).(pulumi.StringOutput),
    			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),
    		})
    		if err != nil {
    			return err
    		}
    		defaultApplicationLoadBalancer, err := slb.NewApplicationLoadBalancer(ctx, "defaultApplicationLoadBalancer", &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, "defaultLoadBalancerInternet", &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
    	})
    }
    
    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 defaultRegions = AliCloud.GetRegions.Invoke(new()
        {
            Current = true,
        });
    
        var defaultRandomInteger = new Random.RandomInteger("defaultRandomInteger", new()
        {
            Max = 99999,
            Min = 10000,
        });
    
        var defaultZones = AliCloud.GetZones.Invoke(new()
        {
            AvailableResourceCreation = "VSwitch",
        });
    
        var defaultNetwork = new AliCloud.Vpc.Network("defaultNetwork", new()
        {
            VpcName = name,
            CidrBlock = "10.4.0.0/16",
        });
    
        var defaultSwitch = new AliCloud.Vpc.Switch("defaultSwitch", new()
        {
            VswitchName = name,
            CidrBlock = "10.4.0.0/24",
            VpcId = defaultNetwork.Id,
            ZoneId = defaultZones.Apply(getZonesResult => getZonesResult.Zones[0]?.Id),
        });
    
        var defaultSecurityGroup = new AliCloud.Ecs.SecurityGroup("defaultSecurityGroup", new()
        {
            VpcId = defaultNetwork.Id,
        });
    
        var defaultNamespace = new AliCloud.Sae.Namespace("defaultNamespace", new()
        {
            NamespaceId = Output.Tuple(defaultRegions, defaultRandomInteger.Result).Apply(values =>
            {
                var defaultRegions = values.Item1;
                var result = values.Item2;
                return $"{defaultRegions.Apply(getRegionsResult => getRegionsResult.Regions[0]?.Id)}:example{result}";
            }),
            NamespaceName = name,
            NamespaceDescription = name,
            EnableMicroRegistration = false,
        });
    
        var defaultApplication = new AliCloud.Sae.Application("defaultApplication", new()
        {
            AppDescription = name,
            AppName = defaultRandomInteger.Result.Apply(result => $"{name}-{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,
        });
    
        var defaultApplicationLoadBalancer = new AliCloud.Slb.ApplicationLoadBalancer("defaultApplicationLoadBalancer", new()
        {
            LoadBalancerName = name,
            VswitchId = defaultSwitch.Id,
            LoadBalancerSpec = "slb.s2.small",
            AddressType = "internet",
        });
    
        var defaultLoadBalancerInternet = new AliCloud.Sae.LoadBalancerInternet("defaultLoadBalancerInternet", new()
        {
            AppId = defaultApplication.Id,
            InternetSlbId = defaultApplicationLoadBalancer.Id,
            Internets = new[]
            {
                new AliCloud.Sae.Inputs.LoadBalancerInternetInternetArgs
                {
                    Protocol = "TCP",
                    Port = 80,
                    TargetPort = 8080,
                },
            },
        });
    
    });
    
    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.RandomInteger;
    import com.pulumi.random.RandomIntegerArgs;
    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 defaultRegions = AlicloudFunctions.getRegions(GetRegionsArgs.builder()
                .current(true)
                .build());
    
            var defaultRandomInteger = new RandomInteger("defaultRandomInteger", RandomIntegerArgs.builder()        
                .max(99999)
                .min(10000)
                .build());
    
            final var defaultZones = 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(defaultZones.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(defaultRandomInteger.result().applyValue(result -> String.format("%s:example%s", defaultRegions.applyValue(getRegionsResult -> getRegionsResult.regions()[0].id()),result)))
                .namespaceName(name)
                .namespaceDescription(name)
                .enableMicroRegistration(false)
                .build());
    
            var defaultApplication = new Application("defaultApplication", ApplicationArgs.builder()        
                .appDescription(name)
                .appName(defaultRandomInteger.result().applyValue(result -> String.format("%s-%s", name,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")
                .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());
    
        }
    }
    
    configuration:
      name:
        type: string
        default: tf-example
    resources:
      defaultRandomInteger:
        type: random:RandomInteger
        properties:
          max: 99999
          min: 10000
      defaultNetwork:
        type: alicloud:vpc:Network
        properties:
          vpcName: ${name}
          cidrBlock: 10.4.0.0/16
      defaultSwitch:
        type: alicloud:vpc:Switch
        properties:
          vswitchName: ${name}
          cidrBlock: 10.4.0.0/24
          vpcId: ${defaultNetwork.id}
          zoneId: ${defaultZones.zones[0].id}
      defaultSecurityGroup:
        type: alicloud:ecs:SecurityGroup
        properties:
          vpcId: ${defaultNetwork.id}
      defaultNamespace:
        type: alicloud:sae:Namespace
        properties:
          namespaceId: ${defaultRegions.regions[0].id}:example${defaultRandomInteger.result}
          namespaceName: ${name}
          namespaceDescription: ${name}
          enableMicroRegistration: false
      defaultApplication:
        type: alicloud:sae:Application
        properties:
          appDescription: ${name}
          appName: ${name}-${defaultRandomInteger.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'
      defaultApplicationLoadBalancer:
        type: alicloud:slb:ApplicationLoadBalancer
        properties:
          loadBalancerName: ${name}
          vswitchId: ${defaultSwitch.id}
          loadBalancerSpec: slb.s2.small
          addressType: internet
      defaultLoadBalancerInternet:
        type: alicloud:sae:LoadBalancerInternet
        properties:
          appId: ${defaultApplication.id}
          internetSlbId: ${defaultApplicationLoadBalancer.id}
          internets:
            - protocol: TCP
              port: 80
              targetPort: 8080
    variables:
      defaultRegions:
        fn::invoke:
          Function: alicloud:getRegions
          Arguments:
            current: true
      defaultZones:
        fn::invoke:
          Function: alicloud:getZones
          Arguments:
            availableResourceCreation: VSwitch
    

    Create LoadBalancerInternet Resource

    new LoadBalancerInternet(name: string, args: LoadBalancerInternetArgs, opts?: CustomResourceOptions);
    @overload
    def LoadBalancerInternet(resource_name: str,
                             opts: Optional[ResourceOptions] = None,
                             app_id: Optional[str] = None,
                             internet_slb_id: Optional[str] = None,
                             internets: Optional[Sequence[LoadBalancerInternetInternetArgs]] = None)
    @overload
    def LoadBalancerInternet(resource_name: str,
                             args: LoadBalancerInternetArgs,
                             opts: Optional[ResourceOptions] = 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.
    
    
    name string
    The unique name of the resource.
    args LoadBalancerInternetArgs
    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 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 string
    The unique name of the resource.
    args LoadBalancerInternetArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args LoadBalancerInternetArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args LoadBalancerInternetArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    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

    The LoadBalancerInternet resource accepts the following input properties:

    AppId string
    The target application ID that needs to be bound to the SLB.
    Internets List<Pulumi.AliCloud.Sae.Inputs.LoadBalancerInternetInternet>
    The bound private network SLB. See internet below.
    InternetSlbId string
    The internet SLB ID.
    AppId string
    The target application ID that needs to be bound to the SLB.
    Internets []LoadBalancerInternetInternetArgs
    The bound private network SLB. See internet below.
    InternetSlbId string
    The internet SLB ID.
    appId String
    The target application ID that needs to be bound to the SLB.
    internets List<LoadBalancerInternetInternet>
    The bound private network SLB. See internet below.
    internetSlbId String
    The internet SLB ID.
    appId string
    The target application ID that needs to be bound to the SLB.
    internets LoadBalancerInternetInternet[]
    The bound private network SLB. See internet below.
    internetSlbId string
    The internet SLB ID.
    app_id str
    The target application ID that needs to be bound to the SLB.
    internets Sequence[LoadBalancerInternetInternetArgs]
    The bound private network SLB. See internet below.
    internet_slb_id str
    The internet SLB ID.
    appId String
    The target application ID that needs to be bound to the SLB.
    internets 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)
    Resource lookup is not supported in YAML
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    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>
    

    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.51.0 published on Saturday, Mar 23, 2024 by Pulumi